diff -u linux-kvm-4.4.0/Makefile linux-kvm-4.4.0/Makefile --- linux-kvm-4.4.0/Makefile +++ linux-kvm-4.4.0/Makefile @@ -1,6 +1,6 @@ VERSION = 4 PATCHLEVEL = 4 -SUBLEVEL = 76 +SUBLEVEL = 83 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-kvm-4.4.0/arch/arm/boot/dts/armada-388-gp.dts linux-kvm-4.4.0/arch/arm/boot/dts/armada-388-gp.dts --- linux-kvm-4.4.0/arch/arm/boot/dts/armada-388-gp.dts +++ linux-kvm-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-kvm-4.4.0/arch/arm/kvm/mmu.c linux-kvm-4.4.0/arch/arm/kvm/mmu.c --- linux-kvm-4.4.0/arch/arm/kvm/mmu.c +++ linux-kvm-4.4.0/arch/arm/kvm/mmu.c @@ -1629,12 +1629,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-kvm-4.4.0/arch/arm64/include/asm/elf.h linux-kvm-4.4.0/arch/arm64/include/asm/elf.h --- linux-kvm-4.4.0/arch/arm64/include/asm/elf.h +++ linux-kvm-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 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 (2 * TASK_SIZE_64 / 3) +#define ELF_ET_DYN_BASE 0x100000000UL /* * 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-kvm-4.4.0/arch/arm64/mm/fault.c linux-kvm-4.4.0/arch/arm64/mm/fault.c --- linux-kvm-4.4.0/arch/arm64/mm/fault.c +++ linux-kvm-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 diff -u linux-kvm-4.4.0/arch/mips/kernel/branch.c linux-kvm-4.4.0/arch/mips/kernel/branch.c --- linux-kvm-4.4.0/arch/mips/kernel/branch.c +++ linux-kvm-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-kvm-4.4.0/arch/mips/kernel/ptrace.c linux-kvm-4.4.0/arch/mips/kernel/ptrace.c --- linux-kvm-4.4.0/arch/mips/kernel/ptrace.c +++ linux-kvm-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-kvm-4.4.0/arch/mips/kernel/scall64-n32.S linux-kvm-4.4.0/arch/mips/kernel/scall64-n32.S --- linux-kvm-4.4.0/arch/mips/kernel/scall64-n32.S +++ linux-kvm-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-kvm-4.4.0/arch/mips/kernel/scall64-o32.S linux-kvm-4.4.0/arch/mips/kernel/scall64-o32.S --- linux-kvm-4.4.0/arch/mips/kernel/scall64-o32.S +++ linux-kvm-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-kvm-4.4.0/arch/mips/math-emu/cp1emu.c linux-kvm-4.4.0/arch/mips/math-emu/cp1emu.c --- linux-kvm-4.4.0/arch/mips/math-emu/cp1emu.c +++ linux-kvm-4.4.0/arch/mips/math-emu/cp1emu.c @@ -2496,6 +2496,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 +2610,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-kvm-4.4.0/arch/parisc/mm/fault.c linux-kvm-4.4.0/arch/parisc/mm/fault.c --- linux-kvm-4.4.0/arch/parisc/mm/fault.c +++ linux-kvm-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-kvm-4.4.0/arch/powerpc/include/asm/atomic.h linux-kvm-4.4.0/arch/powerpc/include/asm/atomic.h --- linux-kvm-4.4.0/arch/powerpc/include/asm/atomic.h +++ linux-kvm-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-kvm-4.4.0/arch/powerpc/include/asm/reg.h linux-kvm-4.4.0/arch/powerpc/include/asm/reg.h --- linux-kvm-4.4.0/arch/powerpc/include/asm/reg.h +++ linux-kvm-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-kvm-4.4.0/arch/powerpc/include/asm/topology.h +++ linux-kvm-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-kvm-4.4.0/arch/powerpc/kernel/setup_64.c linux-kvm-4.4.0/arch/powerpc/kernel/setup_64.c --- linux-kvm-4.4.0/arch/powerpc/kernel/setup_64.c +++ linux-kvm-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-kvm-4.4.0/arch/powerpc/kvm/book3s_hv.c linux-kvm-4.4.0/arch/powerpc/kvm/book3s_hv.c --- linux-kvm-4.4.0/arch/powerpc/kvm/book3s_hv.c +++ linux-kvm-4.4.0/arch/powerpc/kvm/book3s_hv.c @@ -2688,6 +2688,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 +2712,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 +2742,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 +2774,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-kvm-4.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S linux-kvm-4.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S --- linux-kvm-4.4.0/arch/powerpc/kvm/book3s_hv_rmhandlers.S +++ linux-kvm-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) @@ -667,6 +674,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 */ @@ -1290,8 +1307,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 +1323,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 +1465,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 @@ -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-kvm-4.4.0/arch/powerpc/lib/sstep.c linux-kvm-4.4.0/arch/powerpc/lib/sstep.c --- linux-kvm-4.4.0/arch/powerpc/lib/sstep.c +++ linux-kvm-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-kvm-4.4.0/arch/s390/net/bpf_jit_comp.c linux-kvm-4.4.0/arch/s390/net/bpf_jit_comp.c --- linux-kvm-4.4.0/arch/s390/net/bpf_jit_comp.c +++ linux-kvm-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-kvm-4.4.0/arch/sparc/include/asm/mmu_context_64.h linux-kvm-4.4.0/arch/sparc/include/asm/mmu_context_64.h --- linux-kvm-4.4.0/arch/sparc/include/asm/mmu_context_64.h +++ linux-kvm-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-kvm-4.4.0/arch/sparc/kernel/smp_64.c linux-kvm-4.4.0/arch/sparc/kernel/smp_64.c --- linux-kvm-4.4.0/arch/sparc/kernel/smp_64.c +++ linux-kvm-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); diff -u linux-kvm-4.4.0/arch/sparc/kernel/traps_64.c linux-kvm-4.4.0/arch/sparc/kernel/traps_64.c --- linux-kvm-4.4.0/arch/sparc/kernel/traps_64.c +++ linux-kvm-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-kvm-4.4.0/arch/sparc/kernel/tsb.S linux-kvm-4.4.0/arch/sparc/kernel/tsb.S --- linux-kvm-4.4.0/arch/sparc/kernel/tsb.S +++ linux-kvm-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-kvm-4.4.0/arch/x86/include/asm/elf.h linux-kvm-4.4.0/arch/x86/include/asm/elf.h --- linux-kvm-4.4.0/arch/x86/include/asm/elf.h +++ linux-kvm-4.4.0/arch/x86/include/asm/elf.h @@ -245,12 +245,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 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 (mmap_is_ia32() ? 0x000400000UL : \ + 0x100000000UL) /* 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-kvm-4.4.0/arch/x86/include/asm/msr-index.h linux-kvm-4.4.0/arch/x86/include/asm/msr-index.h --- linux-kvm-4.4.0/arch/x86/include/asm/msr-index.h +++ linux-kvm-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-kvm-4.4.0/arch/x86/include/asm/pat.h linux-kvm-4.4.0/arch/x86/include/asm/pat.h --- linux-kvm-4.4.0/arch/x86/include/asm/pat.h +++ linux-kvm-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-kvm-4.4.0/arch/x86/kernel/acpi/boot.c linux-kvm-4.4.0/arch/x86/kernel/acpi/boot.c --- linux-kvm-4.4.0/arch/x86/kernel/acpi/boot.c +++ linux-kvm-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-kvm-4.4.0/arch/x86/kernel/apic/io_apic.c linux-kvm-4.4.0/arch/x86/kernel/apic/io_apic.c --- linux-kvm-4.4.0/arch/x86/kernel/apic/io_apic.c +++ linux-kvm-4.4.0/arch/x86/kernel/apic/io_apic.c @@ -2121,7 +2121,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-kvm-4.4.0/arch/x86/kernel/cpu/mcheck/mce_amd.c linux-kvm-4.4.0/arch/x86/kernel/cpu/mcheck/mce_amd.c --- linux-kvm-4.4.0/arch/x86/kernel/cpu/mcheck/mce_amd.c +++ linux-kvm-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-kvm-4.4.0/arch/x86/kernel/kvm.c linux-kvm-4.4.0/arch/x86/kernel/kvm.c --- linux-kvm-4.4.0/arch/x86/kernel/kvm.c +++ linux-kvm-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-kvm-4.4.0/arch/x86/kernel/setup.c linux-kvm-4.4.0/arch/x86/kernel/setup.c --- linux-kvm-4.4.0/arch/x86/kernel/setup.c +++ linux-kvm-4.4.0/arch/x86/kernel/setup.c @@ -1048,6 +1048,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-kvm-4.4.0/arch/x86/kvm/cpuid.c linux-kvm-4.4.0/arch/x86/kvm/cpuid.c --- linux-kvm-4.4.0/arch/x86/kvm/cpuid.c +++ linux-kvm-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-kvm-4.4.0/arch/x86/kvm/vmx.c linux-kvm-4.4.0/arch/x86/kvm/vmx.c --- linux-kvm-4.4.0/arch/x86/kvm/vmx.c +++ linux-kvm-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, @@ -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: @@ -6260,7 +6264,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); @@ -10268,7 +10271,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); diff -u linux-kvm-4.4.0/arch/x86/lib/copy_user_64.S linux-kvm-4.4.0/arch/x86/lib/copy_user_64.S --- linux-kvm-4.4.0/arch/x86/lib/copy_user_64.S +++ linux-kvm-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-kvm-4.4.0/arch/x86/mm/pat.c linux-kvm-4.4.0/arch/x86/mm/pat.c --- linux-kvm-4.4.0/arch/x86/mm/pat.c +++ linux-kvm-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-kvm-4.4.0/block/blk-mq.c linux-kvm-4.4.0/block/blk-mq.c --- linux-kvm-4.4.0/block/blk-mq.c +++ linux-kvm-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; reverted: --- linux-kvm-4.4.0/debian.kvm/abi/4.4.0-1003.8/abiname +++ linux-kvm-4.4.0.orig/debian.kvm/abi/4.4.0-1003.8/abiname @@ -1 +0,0 @@ -1003 reverted: --- linux-kvm-4.4.0/debian.kvm/abi/4.4.0-1003.8/amd64/kvm +++ linux-kvm-4.4.0.orig/debian.kvm/abi/4.4.0-1003.8/amd64/kvm @@ -1,6165 +0,0 @@ -EXPORT_SYMBOL crypto/crct10dif_common 0x00000000 crc_t10dif_generic -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_bbe -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_free_64k -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_init_4k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_init_4k_lle -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_init_64k_bbe -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_init_64k_lle -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_lle -EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_x_ble -EXPORT_SYMBOL crypto/sha256_generic 0x00000000 crypto_sha256_finup -EXPORT_SYMBOL crypto/sha256_generic 0x00000000 crypto_sha256_update -EXPORT_SYMBOL crypto/xor 0x00000000 xor_blocks -EXPORT_SYMBOL drivers/block/loop 0x00000000 loop_backing_file -EXPORT_SYMBOL drivers/block/loop 0x00000000 loop_register_transfer -EXPORT_SYMBOL drivers/block/loop 0x00000000 loop_unregister_transfer -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_consume_args -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_get_device -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_io -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_io_client_create -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_io_client_destroy -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_client_create -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_client_destroy -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_copy -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_do_callback -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_prepare_callback -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_zero -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_put_device -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_put_table_device -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_ratelimit_state -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_read_arg -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_read_arg_group -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_register_target -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_shift_arg -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_table_event -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_table_get_md -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_table_get_mode -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_table_get_size -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_table_run_md_queue_async -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_unregister_target -EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_vcalloc -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_close_sync -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_cond_end_sync -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_end_sync -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_endwrite -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_start_sync -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_startwrite -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_unplug -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_check_no_bitmap -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_check_recovery -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_cluster_mod -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_cluster_ops -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_done_sync -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_error -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_finish_reshape -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_flush_request -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_integrity_add_rdev -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_integrity_register -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_reap_sync_thread -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_register_thread -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_reload_sb -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_set_array_sectors -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_unplug -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_unregister_thread -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_update_sb -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_wait_for_blocked_rdev -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_wakeup_thread -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_write_end -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_write_start -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 register_md_cluster_operations -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 register_md_personality -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 unregister_md_cluster_operations -EXPORT_SYMBOL drivers/md/md-mod 0x00000000 unregister_md_personality -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x00000000 do_map_probe -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x00000000 map_destroy -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x00000000 register_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x00000000 unregister_mtd_chip_driver -EXPORT_SYMBOL drivers/mtd/mtd 0x00000000 mtd_concat_create -EXPORT_SYMBOL drivers/mtd/mtd 0x00000000 mtd_concat_destroy -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_auto_detect_ver -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_dev_fini -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_dev_init -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_end_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_execute_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_execute_request_async -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_finalize_request -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_add_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_add_get_attr_page -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_add_set_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_create_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_create_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_decode_get_attr_list -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_decode_sense_full -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_flush_collection -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_flush_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_flush_obsd -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_flush_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_format -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_get_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_list_collection_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_list_dev_partitions -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_list_partition_collections -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_list_partition_objects -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_read -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_read_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_read_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_read_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_remove_object -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_remove_partition -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_set_attributes -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_write -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_write_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_write_sg -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_write_sg_kern -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_sec_init_nosec_doall_caps -EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_start_request -EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_device_info -EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_device_same -EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_info_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_path_lookup -EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_put_device -EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_register_test -EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_unregister_test -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 __transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_allocate_nexus_loss_ua -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_alua_check_nonop_delay -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tmr_alloc_req -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_check_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_deregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_get_initiator_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_set_initiator_node_queue_depth -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_set_initiator_node_tag -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 passthrough_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 passthrough_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_attrib_attrs -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_dif_copy_prot -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_dif_verify -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_get_device_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_get_write_same_sectors -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 spc_emulate_evpd_83 -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 spc_emulate_inquiry_std -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 spc_emulate_report_luns -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 spc_parse_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_alloc_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_backend_unregister -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_complete_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_complete_cmd_with_length -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_configure_unmap_from_queue -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_depend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_execute_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_get_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_get_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_lun_is_rdonly -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_nacl_find_deve -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_put_nacl -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_put_sess_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_put_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_register_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_sess_cmd_list_set_waiting -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_setup_cmd_from_cdb -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_show_dynamic_sessions -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_submit_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_submit_cmd_map_sgls -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_submit_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_to_linux_sector -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_tpg_has_node_acl -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_undepend_item -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_unregister_template -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_wait_for_sess_cmds -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_alloc_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_backend_register -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_check_aborted_status -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_deregister_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_deregister_session_configfs -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_free_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_generic_free_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_generic_handle_tmr -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_generic_new_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_generic_request_failure -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_handle_cdb_direct -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_init_se_cmd -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_init_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_init_session_tags -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_kmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_kunmap_data_sg -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_lookup_cmd_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_lookup_tmr_lun -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_register_session -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_send_check_condition_and_sense -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_set_vpd_assoc -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_set_vpd_ident -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_set_vpd_ident_type -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_set_vpd_proto_id -EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_wait_for_tasks -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_group_find_item -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_group_init -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_group_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_item_get -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_item_init_type_name -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_item_put -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_item_set_name -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_depend_item -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_register_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_register_group -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_register_subsystem -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_undepend_item -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_unregister_default_group -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_unregister_group -EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_unregister_subsystem -EXPORT_SYMBOL fs/exofs/libore 0x00000000 extract_attr_from_ios -EXPORT_SYMBOL fs/exofs/libore 0x00000000 g_attr_logical_length -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_calc_stripe_info -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_check_io -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_create -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_get_io_state -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_get_rw_state -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_put_io_state -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_read -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_remove -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_truncate -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_verify_layout -EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_write -EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_global_heartbeat_active -EXPORT_SYMBOL fs/quota/quota_tree 0x00000000 qtree_delete_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x00000000 qtree_entry_unused -EXPORT_SYMBOL fs/quota/quota_tree 0x00000000 qtree_read_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x00000000 qtree_release_dquot -EXPORT_SYMBOL fs/quota/quota_tree 0x00000000 qtree_write_dquot -EXPORT_SYMBOL lib/crc-itu-t 0x00000000 crc_itu_t -EXPORT_SYMBOL lib/crc-itu-t 0x00000000 crc_itu_t_table -EXPORT_SYMBOL lib/crc-t10dif 0x00000000 crc_t10dif -EXPORT_SYMBOL lib/crc-t10dif 0x00000000 crc_t10dif_update -EXPORT_SYMBOL lib/libcrc32c 0x00000000 crc32c -EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_empty_zero_page -EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfexi -EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfexp -EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfinv -EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfmul -EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_vgfmul -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_attach -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_begin_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_cb -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_clunk -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_create -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_create_dotl -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_destroy -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_disconnect -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_fcreate -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_fsync -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_getattr_dotl -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_getlock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_link -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_lock_dotl -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_mkdir_dotl -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_mknod_dotl -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_open -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_read -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_readdir -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_readlink -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_remove -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_rename -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_renameat -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_setattr -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_stat -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_statfs -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_symlink -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_unlinkat -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_walk -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_write -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_wstat -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_error_init -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_errstr2errno -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_idpool_check -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_idpool_create -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_idpool_destroy -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_idpool_get -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_idpool_put -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_is_proto_dotl -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_is_proto_dotu -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_parse_header -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_release_pages -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_tag_lookup -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9dirent_read -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9stat_free -EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9stat_read -EXPORT_SYMBOL net/9p/9pnet 0x00000000 v9fs_get_default_trans -EXPORT_SYMBOL net/9p/9pnet 0x00000000 v9fs_get_trans_by_name -EXPORT_SYMBOL net/9p/9pnet 0x00000000 v9fs_register_trans -EXPORT_SYMBOL net/9p/9pnet 0x00000000 v9fs_unregister_trans -EXPORT_SYMBOL net/ceph/libceph 0x00000000 __ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_alloc_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_create_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_destroy_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_invalidate_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_is_authenticated -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_update_authorizer -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_verify_authorizer_reply -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_buffer_new -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_buffer_release -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_calc_file_object_mapping -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_calc_pg_primary -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_caps_for_mode -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_check_fsid -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_client_id -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_compare_options -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_con_close -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_con_init -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_con_keepalive -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_con_open -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_con_send -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_copy_from_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_copy_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_copy_user_to_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_create_client -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_create_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_debugfs_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_debugfs_init -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_destroy_client -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_destroy_options -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_file_part -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_flags_to_mode -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_get_direct_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_get_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_messenger_fini -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_messenger_init -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_do_get_version -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_do_statfs -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_got_mdsmap -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_init -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_open_session -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_request_next_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_stop -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_validate_auth -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_wait_osdmap -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_data_add_bio -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_data_add_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_data_add_pages -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_dump -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_get -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_new -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_put -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_type_name -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msgr_exit -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msgr_flush -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msgr_init -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_oloc_oid_to_pg -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_open_session -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_alloc_request -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_build_request -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_cancel_event -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_cancel_request -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_cleanup -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_create_event -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_flush_notifies -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_get_request -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_new_request -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_put_event -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_put_request -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_readpages -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_set_request_linger -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_setup -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_start_request -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_sync -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_wait_request -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_writepages -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_append -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_free_reserve -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_release -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_reserve -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_set_cursor -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_truncate -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_parse_ips -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_parse_options -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pg_pool_name_by_id -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pg_poolid_by_name -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pr_addr -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_print_client_options -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_put_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_put_snap_context -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_release_page_vector -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_str_hash -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_str_hash_name -EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_zero_page_vector_range -EXPORT_SYMBOL net/ceph/libceph 0x00000000 libceph_compatible -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_alloc_hint_init -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_cls_init -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_cls_request_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_cls_request_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_cls_response_data -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_cls_response_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_init -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_osd_data -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_osd_data_bio -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_osd_data_pagelist -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_osd_data_pages -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_update -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_init -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_raw_data_in_pages -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_watch_init -EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_xattr_init -EXPORT_SYMBOL net/dns_resolver/dns_resolver 0x00000000 dns_query -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 key_type_rxrpc -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_get_null_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_get_server_data_key -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_abort_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_accept_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_begin_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_data_delivered -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_end_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_free_skb -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_get_abort_code -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_get_error_number -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_intercept_rx_messages -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_is_data_last -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_reject_call -EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_send_data -EXPORT_SYMBOL net/sunrpc/sunrpc 0x00000000 svc_pool_stats_open -EXPORT_SYMBOL net/sunrpc/sunrpc 0x00000000 xdr_restrict_buflen -EXPORT_SYMBOL net/sunrpc/sunrpc 0x00000000 xdr_truncate_encode -EXPORT_SYMBOL security/keys/encrypted-keys/encrypted-keys 0x00000000 ecryptfs_fill_auth_tok -EXPORT_SYMBOL security/keys/encrypted-keys/encrypted-keys 0x00000000 ecryptfs_get_auth_tok_key -EXPORT_SYMBOL security/keys/encrypted-keys/encrypted-keys 0x00000000 ecryptfs_get_versions -EXPORT_SYMBOL vmlinux 0x00000000 IO_APIC_get_PCI_irq_vector -EXPORT_SYMBOL vmlinux 0x00000000 I_BDEV -EXPORT_SYMBOL vmlinux 0x00000000 PDE_DATA -EXPORT_SYMBOL vmlinux 0x00000000 ___pskb_trim -EXPORT_SYMBOL vmlinux 0x00000000 ___ratelimit -EXPORT_SYMBOL vmlinux 0x00000000 __alloc_page_frag -EXPORT_SYMBOL vmlinux 0x00000000 __alloc_pages_nodemask -EXPORT_SYMBOL vmlinux 0x00000000 __alloc_skb -EXPORT_SYMBOL vmlinux 0x00000000 __bdevname -EXPORT_SYMBOL vmlinux 0x00000000 __bforget -EXPORT_SYMBOL vmlinux 0x00000000 __bio_clone_fast -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_and -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_andnot -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_complement -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_equal -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_intersects -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_or -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_parse -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_shift_left -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_shift_right -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_subset -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_weight -EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_xor -EXPORT_SYMBOL vmlinux 0x00000000 __blk_end_request -EXPORT_SYMBOL vmlinux 0x00000000 __blk_end_request_all -EXPORT_SYMBOL vmlinux 0x00000000 __blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x00000000 __blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0x00000000 __blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x00000000 __blk_run_queue -EXPORT_SYMBOL vmlinux 0x00000000 __blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x00000000 __block_write_begin -EXPORT_SYMBOL vmlinux 0x00000000 __blockdev_direct_IO -EXPORT_SYMBOL vmlinux 0x00000000 __bread_gfp -EXPORT_SYMBOL vmlinux 0x00000000 __breadahead -EXPORT_SYMBOL vmlinux 0x00000000 __break_lease -EXPORT_SYMBOL vmlinux 0x00000000 __brelse -EXPORT_SYMBOL vmlinux 0x00000000 __cachemode2pte_tbl -EXPORT_SYMBOL vmlinux 0x00000000 __cap_empty_set -EXPORT_SYMBOL vmlinux 0x00000000 __check_sticky -EXPORT_SYMBOL vmlinux 0x00000000 __clear_user -EXPORT_SYMBOL vmlinux 0x00000000 __clzdi2 -EXPORT_SYMBOL vmlinux 0x00000000 __clzsi2 -EXPORT_SYMBOL vmlinux 0x00000000 __cond_resched_lock -EXPORT_SYMBOL vmlinux 0x00000000 __cond_resched_softirq -EXPORT_SYMBOL vmlinux 0x00000000 __const_udelay -EXPORT_SYMBOL vmlinux 0x00000000 __copy_user_nocache -EXPORT_SYMBOL vmlinux 0x00000000 __crc32c_le -EXPORT_SYMBOL vmlinux 0x00000000 __crc32c_le_shift -EXPORT_SYMBOL vmlinux 0x00000000 __crypto_memneq -EXPORT_SYMBOL vmlinux 0x00000000 __ctzdi2 -EXPORT_SYMBOL vmlinux 0x00000000 __ctzsi2 -EXPORT_SYMBOL vmlinux 0x00000000 __d_drop -EXPORT_SYMBOL vmlinux 0x00000000 __dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x00000000 __delay -EXPORT_SYMBOL vmlinux 0x00000000 __destroy_inode -EXPORT_SYMBOL vmlinux 0x00000000 __dev_get_by_flags -EXPORT_SYMBOL vmlinux 0x00000000 __dev_get_by_index -EXPORT_SYMBOL vmlinux 0x00000000 __dev_get_by_name -EXPORT_SYMBOL vmlinux 0x00000000 __dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x00000000 __dev_kfree_skb_any -EXPORT_SYMBOL vmlinux 0x00000000 __dev_kfree_skb_irq -EXPORT_SYMBOL vmlinux 0x00000000 __dev_remove_pack -EXPORT_SYMBOL vmlinux 0x00000000 __devm_release_region -EXPORT_SYMBOL vmlinux 0x00000000 __devm_request_region -EXPORT_SYMBOL vmlinux 0x00000000 __do_once_done -EXPORT_SYMBOL vmlinux 0x00000000 __do_once_start -EXPORT_SYMBOL vmlinux 0x00000000 __dquot_alloc_space -EXPORT_SYMBOL vmlinux 0x00000000 __dquot_free_space -EXPORT_SYMBOL vmlinux 0x00000000 __dquot_transfer -EXPORT_SYMBOL vmlinux 0x00000000 __dst_destroy_metrics_generic -EXPORT_SYMBOL vmlinux 0x00000000 __dst_free -EXPORT_SYMBOL vmlinux 0x00000000 __elv_add_request -EXPORT_SYMBOL vmlinux 0x00000000 __ethtool_get_link_ksettings -EXPORT_SYMBOL vmlinux 0x00000000 __ethtool_get_settings -EXPORT_SYMBOL vmlinux 0x00000000 __f_setown -EXPORT_SYMBOL vmlinux 0x00000000 __fdget -EXPORT_SYMBOL vmlinux 0x00000000 __fib6_flush_trees -EXPORT_SYMBOL vmlinux 0x00000000 __find_get_block -EXPORT_SYMBOL vmlinux 0x00000000 __free_page_frag -EXPORT_SYMBOL vmlinux 0x00000000 __free_pages -EXPORT_SYMBOL vmlinux 0x00000000 __generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x00000000 __generic_file_fsync -EXPORT_SYMBOL vmlinux 0x00000000 __generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x00000000 __genl_register_family -EXPORT_SYMBOL vmlinux 0x00000000 __get_free_pages -EXPORT_SYMBOL vmlinux 0x00000000 __get_hash_from_flowi4 -EXPORT_SYMBOL vmlinux 0x00000000 __get_hash_from_flowi6 -EXPORT_SYMBOL vmlinux 0x00000000 __get_page_tail -EXPORT_SYMBOL vmlinux 0x00000000 __get_user_1 -EXPORT_SYMBOL vmlinux 0x00000000 __get_user_2 -EXPORT_SYMBOL vmlinux 0x00000000 __get_user_4 -EXPORT_SYMBOL vmlinux 0x00000000 __get_user_8 -EXPORT_SYMBOL vmlinux 0x00000000 __get_user_pages -EXPORT_SYMBOL vmlinux 0x00000000 __get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x00000000 __getblk_gfp -EXPORT_SYMBOL vmlinux 0x00000000 __getblk_slow -EXPORT_SYMBOL vmlinux 0x00000000 __getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x00000000 __gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_init -EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_sync -EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_sync_dev -EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_unsync -EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_unsync_dev -EXPORT_SYMBOL vmlinux 0x00000000 __inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x00000000 __inet6_lookup_established -EXPORT_SYMBOL vmlinux 0x00000000 __inet_hash -EXPORT_SYMBOL vmlinux 0x00000000 __inet_stream_connect -EXPORT_SYMBOL vmlinux 0x00000000 __init_rwsem -EXPORT_SYMBOL vmlinux 0x00000000 __init_waitqueue_head -EXPORT_SYMBOL vmlinux 0x00000000 __inode_add_bytes -EXPORT_SYMBOL vmlinux 0x00000000 __inode_permission -EXPORT_SYMBOL vmlinux 0x00000000 __inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x00000000 __insert_inode_hash -EXPORT_SYMBOL vmlinux 0x00000000 __invalidate_device -EXPORT_SYMBOL vmlinux 0x00000000 __ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x00000000 __ip_dev_find -EXPORT_SYMBOL vmlinux 0x00000000 __ip_select_ident -EXPORT_SYMBOL vmlinux 0x00000000 __ipv6_addr_type -EXPORT_SYMBOL vmlinux 0x00000000 __kernel_fpu_begin -EXPORT_SYMBOL vmlinux 0x00000000 __kernel_fpu_end -EXPORT_SYMBOL vmlinux 0x00000000 __kernel_write -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_alloc -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_in_finish_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_in_prepare -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_in_prepare_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_out_finish_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_out_prepare -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_out_prepare_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_free -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_from_user -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_from_user_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_in -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_in_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_init -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_len_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_max_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out_peek -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out_peek_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_skip_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_to_user -EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_to_user_r -EXPORT_SYMBOL vmlinux 0x00000000 __kfree_skb -EXPORT_SYMBOL vmlinux 0x00000000 __kmalloc -EXPORT_SYMBOL vmlinux 0x00000000 __krealloc -EXPORT_SYMBOL vmlinux 0x00000000 __local_bh_enable_ip -EXPORT_SYMBOL vmlinux 0x00000000 __lock_buffer -EXPORT_SYMBOL vmlinux 0x00000000 __lock_page -EXPORT_SYMBOL vmlinux 0x00000000 __mark_inode_dirty -EXPORT_SYMBOL vmlinux 0x00000000 __max_logical_packages -EXPORT_SYMBOL vmlinux 0x00000000 __memcpy -EXPORT_SYMBOL vmlinux 0x00000000 __memmove -EXPORT_SYMBOL vmlinux 0x00000000 __memset -EXPORT_SYMBOL vmlinux 0x00000000 __mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x00000000 __module_put_and_exit -EXPORT_SYMBOL vmlinux 0x00000000 __msecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x00000000 __mutex_init -EXPORT_SYMBOL vmlinux 0x00000000 __napi_alloc_skb -EXPORT_SYMBOL vmlinux 0x00000000 __napi_complete -EXPORT_SYMBOL vmlinux 0x00000000 __napi_schedule -EXPORT_SYMBOL vmlinux 0x00000000 __napi_schedule_irqoff -EXPORT_SYMBOL vmlinux 0x00000000 __ndelay -EXPORT_SYMBOL vmlinux 0x00000000 __neigh_create -EXPORT_SYMBOL vmlinux 0x00000000 __neigh_event_send -EXPORT_SYMBOL vmlinux 0x00000000 __neigh_for_each_release -EXPORT_SYMBOL vmlinux 0x00000000 __neigh_set_probe_once -EXPORT_SYMBOL vmlinux 0x00000000 __netdev_alloc_skb -EXPORT_SYMBOL vmlinux 0x00000000 __netif_schedule -EXPORT_SYMBOL vmlinux 0x00000000 __netlink_dump_start -EXPORT_SYMBOL vmlinux 0x00000000 __netlink_kernel_create -EXPORT_SYMBOL vmlinux 0x00000000 __netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x00000000 __nla_put -EXPORT_SYMBOL vmlinux 0x00000000 __nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x00000000 __nla_reserve -EXPORT_SYMBOL vmlinux 0x00000000 __nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x00000000 __nlmsg_put -EXPORT_SYMBOL vmlinux 0x00000000 __page_symlink -EXPORT_SYMBOL vmlinux 0x00000000 __pagevec_lru_add -EXPORT_SYMBOL vmlinux 0x00000000 __pagevec_release -EXPORT_SYMBOL vmlinux 0x00000000 __pci_enable_wake -EXPORT_SYMBOL vmlinux 0x00000000 __pci_register_driver -EXPORT_SYMBOL vmlinux 0x00000000 __per_cpu_offset -EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_add -EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_compare -EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_init -EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_sum -EXPORT_SYMBOL vmlinux 0x00000000 __posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x00000000 __posix_acl_create -EXPORT_SYMBOL vmlinux 0x00000000 __preempt_count -EXPORT_SYMBOL vmlinux 0x00000000 __printk_ratelimit -EXPORT_SYMBOL vmlinux 0x00000000 __pskb_copy_fclone -EXPORT_SYMBOL vmlinux 0x00000000 __pskb_pull_tail -EXPORT_SYMBOL vmlinux 0x00000000 __pte2cachemode_tbl -EXPORT_SYMBOL vmlinux 0x00000000 __put_cred -EXPORT_SYMBOL vmlinux 0x00000000 __put_user_1 -EXPORT_SYMBOL vmlinux 0x00000000 __put_user_2 -EXPORT_SYMBOL vmlinux 0x00000000 __put_user_4 -EXPORT_SYMBOL vmlinux 0x00000000 __put_user_8 -EXPORT_SYMBOL vmlinux 0x00000000 __pv_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x00000000 __quota_error -EXPORT_SYMBOL vmlinux 0x00000000 __rb_erase_color -EXPORT_SYMBOL vmlinux 0x00000000 __rb_insert_augmented -EXPORT_SYMBOL vmlinux 0x00000000 __register_binfmt -EXPORT_SYMBOL vmlinux 0x00000000 __register_chrdev -EXPORT_SYMBOL vmlinux 0x00000000 __register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x00000000 __register_nls -EXPORT_SYMBOL vmlinux 0x00000000 __register_nmi_handler -EXPORT_SYMBOL vmlinux 0x00000000 __release_region -EXPORT_SYMBOL vmlinux 0x00000000 __remove_inode_hash -EXPORT_SYMBOL vmlinux 0x00000000 __request_module -EXPORT_SYMBOL vmlinux 0x00000000 __request_region -EXPORT_SYMBOL vmlinux 0x00000000 __sb_end_write -EXPORT_SYMBOL vmlinux 0x00000000 __sb_start_write -EXPORT_SYMBOL vmlinux 0x00000000 __scm_destroy -EXPORT_SYMBOL vmlinux 0x00000000 __scm_send -EXPORT_SYMBOL vmlinux 0x00000000 __scsi_add_device -EXPORT_SYMBOL vmlinux 0x00000000 __scsi_alloc_queue -EXPORT_SYMBOL vmlinux 0x00000000 __scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x00000000 __scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x00000000 __scsi_format_command -EXPORT_SYMBOL vmlinux 0x00000000 __scsi_iterate_devices -EXPORT_SYMBOL vmlinux 0x00000000 __scsi_print_sense -EXPORT_SYMBOL vmlinux 0x00000000 __secpath_destroy -EXPORT_SYMBOL vmlinux 0x00000000 __seq_open_private -EXPORT_SYMBOL vmlinux 0x00000000 __set_page_dirty_buffers -EXPORT_SYMBOL vmlinux 0x00000000 __set_page_dirty_nobuffers -EXPORT_SYMBOL vmlinux 0x00000000 __sg_alloc_table -EXPORT_SYMBOL vmlinux 0x00000000 __sg_free_table -EXPORT_SYMBOL vmlinux 0x00000000 __sg_page_iter_next -EXPORT_SYMBOL vmlinux 0x00000000 __sg_page_iter_start -EXPORT_SYMBOL vmlinux 0x00000000 __sk_backlog_rcv -EXPORT_SYMBOL vmlinux 0x00000000 __sk_dst_check -EXPORT_SYMBOL vmlinux 0x00000000 __sk_mem_reclaim -EXPORT_SYMBOL vmlinux 0x00000000 __sk_mem_schedule -EXPORT_SYMBOL vmlinux 0x00000000 __skb_checksum -EXPORT_SYMBOL vmlinux 0x00000000 __skb_checksum_complete -EXPORT_SYMBOL vmlinux 0x00000000 __skb_checksum_complete_head -EXPORT_SYMBOL vmlinux 0x00000000 __skb_flow_dissect -EXPORT_SYMBOL vmlinux 0x00000000 __skb_flow_get_ports -EXPORT_SYMBOL vmlinux 0x00000000 __skb_get_hash -EXPORT_SYMBOL vmlinux 0x00000000 __skb_get_hash_flowi4 -EXPORT_SYMBOL vmlinux 0x00000000 __skb_get_hash_flowi6 -EXPORT_SYMBOL vmlinux 0x00000000 __skb_gro_checksum_complete -EXPORT_SYMBOL vmlinux 0x00000000 __skb_gso_segment -EXPORT_SYMBOL vmlinux 0x00000000 __skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x00000000 __skb_tx_hash -EXPORT_SYMBOL vmlinux 0x00000000 __skb_warn_lro_forwarding -EXPORT_SYMBOL vmlinux 0x00000000 __sock_create -EXPORT_SYMBOL vmlinux 0x00000000 __sock_tx_timestamp -EXPORT_SYMBOL vmlinux 0x00000000 __splice_from_pipe -EXPORT_SYMBOL vmlinux 0x00000000 __starget_for_each_device -EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight16 -EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight32 -EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight64 -EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight8 -EXPORT_SYMBOL vmlinux 0x00000000 __sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x00000000 __task_pid_nr_ns -EXPORT_SYMBOL vmlinux 0x00000000 __tasklet_hi_schedule -EXPORT_SYMBOL vmlinux 0x00000000 __tasklet_hi_schedule_first -EXPORT_SYMBOL vmlinux 0x00000000 __tasklet_schedule -EXPORT_SYMBOL vmlinux 0x00000000 __test_set_page_writeback -EXPORT_SYMBOL vmlinux 0x00000000 __tty_alloc_driver -EXPORT_SYMBOL vmlinux 0x00000000 __udelay -EXPORT_SYMBOL vmlinux 0x00000000 __unregister_chrdev -EXPORT_SYMBOL vmlinux 0x00000000 __unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x00000000 __usecs_to_jiffies -EXPORT_SYMBOL vmlinux 0x00000000 __vfs_read -EXPORT_SYMBOL vmlinux 0x00000000 __vfs_write -EXPORT_SYMBOL vmlinux 0x00000000 __virt_addr_valid -EXPORT_SYMBOL vmlinux 0x00000000 __vmalloc -EXPORT_SYMBOL vmlinux 0x00000000 __wait_on_bit -EXPORT_SYMBOL vmlinux 0x00000000 __wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x00000000 __wait_on_buffer -EXPORT_SYMBOL vmlinux 0x00000000 __wake_up -EXPORT_SYMBOL vmlinux 0x00000000 __wake_up_bit -EXPORT_SYMBOL vmlinux 0x00000000 __ww_mutex_lock -EXPORT_SYMBOL vmlinux 0x00000000 __ww_mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_decode_session -EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_init_state -EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_policy_check -EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_route_forward -EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_state_destroy -EXPORT_SYMBOL vmlinux 0x00000000 _atomic_dec_and_lock -EXPORT_SYMBOL vmlinux 0x00000000 _bcd2bin -EXPORT_SYMBOL vmlinux 0x00000000 _bin2bcd -EXPORT_SYMBOL vmlinux 0x00000000 _cond_resched -EXPORT_SYMBOL vmlinux 0x00000000 _copy_from_user -EXPORT_SYMBOL vmlinux 0x00000000 _copy_to_user -EXPORT_SYMBOL vmlinux 0x00000000 _ctype -EXPORT_SYMBOL vmlinux 0x00000000 _dev_info -EXPORT_SYMBOL vmlinux 0x00000000 _kstrtol -EXPORT_SYMBOL vmlinux 0x00000000 _kstrtoul -EXPORT_SYMBOL vmlinux 0x00000000 _local_bh_enable -EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock -EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock_bh -EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock_irq -EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock_irqsave -EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_trylock -EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_unlock_bh -EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock -EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock_bh -EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock_irq -EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock_irqsave -EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_trylock -EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_trylock_bh -EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_unlock_bh -EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock -EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock_bh -EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock_irq -EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock_irqsave -EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_trylock -EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_unlock_bh -EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_unlock_irqrestore -EXPORT_SYMBOL vmlinux 0x00000000 abort_creds -EXPORT_SYMBOL vmlinux 0x00000000 abort_exclusive_wait -EXPORT_SYMBOL vmlinux 0x00000000 account_page_dirtied -EXPORT_SYMBOL vmlinux 0x00000000 account_page_redirty -EXPORT_SYMBOL vmlinux 0x00000000 acl_by_type -EXPORT_SYMBOL vmlinux 0x00000000 acpi_acquire_global_lock -EXPORT_SYMBOL vmlinux 0x00000000 acpi_attach_data -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bios_error -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bios_warning -EXPORT_SYMBOL vmlinux 0x00000000 acpi_buffer_to_resource -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_generate_netlink_event -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_get_device -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_get_status -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_power_manageable -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_private_data_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_register_driver -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_scan -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_set_power -EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_unregister_driver -EXPORT_SYMBOL vmlinux 0x00000000 acpi_check_address_range -EXPORT_SYMBOL vmlinux 0x00000000 acpi_check_dsm -EXPORT_SYMBOL vmlinux 0x00000000 acpi_check_region -EXPORT_SYMBOL vmlinux 0x00000000 acpi_check_resource_conflict -EXPORT_SYMBOL vmlinux 0x00000000 acpi_clear_event -EXPORT_SYMBOL vmlinux 0x00000000 acpi_clear_gpe -EXPORT_SYMBOL vmlinux 0x00000000 acpi_current_gpe_count -EXPORT_SYMBOL vmlinux 0x00000000 acpi_dbg_layer -EXPORT_SYMBOL vmlinux 0x00000000 acpi_dbg_level -EXPORT_SYMBOL vmlinux 0x00000000 acpi_decode_pld_buffer -EXPORT_SYMBOL vmlinux 0x00000000 acpi_detach_data -EXPORT_SYMBOL vmlinux 0x00000000 acpi_device_hid -EXPORT_SYMBOL vmlinux 0x00000000 acpi_device_set_power -EXPORT_SYMBOL vmlinux 0x00000000 acpi_disable -EXPORT_SYMBOL vmlinux 0x00000000 acpi_disable_all_gpes -EXPORT_SYMBOL vmlinux 0x00000000 acpi_disable_event -EXPORT_SYMBOL vmlinux 0x00000000 acpi_disable_gpe -EXPORT_SYMBOL vmlinux 0x00000000 acpi_disabled -EXPORT_SYMBOL vmlinux 0x00000000 acpi_enable -EXPORT_SYMBOL vmlinux 0x00000000 acpi_enable_all_runtime_gpes -EXPORT_SYMBOL vmlinux 0x00000000 acpi_enable_all_wakeup_gpes -EXPORT_SYMBOL vmlinux 0x00000000 acpi_enable_event -EXPORT_SYMBOL vmlinux 0x00000000 acpi_enable_gpe -EXPORT_SYMBOL vmlinux 0x00000000 acpi_enter_sleep_state -EXPORT_SYMBOL vmlinux 0x00000000 acpi_enter_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x00000000 acpi_enter_sleep_state_s4bios -EXPORT_SYMBOL vmlinux 0x00000000 acpi_error -EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_dsm -EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_integer -EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_object -EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_object_typed -EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_ost -EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_reference -EXPORT_SYMBOL vmlinux 0x00000000 acpi_exception -EXPORT_SYMBOL vmlinux 0x00000000 acpi_execute_simple_method -EXPORT_SYMBOL vmlinux 0x00000000 acpi_extract_package -EXPORT_SYMBOL vmlinux 0x00000000 acpi_finish_gpe -EXPORT_SYMBOL vmlinux 0x00000000 acpi_format_exception -EXPORT_SYMBOL vmlinux 0x00000000 acpi_gbl_FADT -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_current_resources -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_data -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_data_full -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_devices -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_event_resources -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_event_status -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_gpe_device -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_gpe_status -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_handle -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_hp_hw_control_from_firmware -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_irq_routing_table -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_name -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_next_object -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_object_info -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_parent -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_physical_device_location -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_possible_resources -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_sleep_type_data -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_table -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_table_by_index -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_table_header -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_table_with_size -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_type -EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_vendor_resource -EXPORT_SYMBOL vmlinux 0x00000000 acpi_gpe_count -EXPORT_SYMBOL vmlinux 0x00000000 acpi_handle_printk -EXPORT_SYMBOL vmlinux 0x00000000 acpi_has_method -EXPORT_SYMBOL vmlinux 0x00000000 acpi_info -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_address_space_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_global_event_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_gpe_block -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_gpe_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_gpe_raw_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_interface -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_interface_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_method -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_notify_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_sci_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_table_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_is_video_device -EXPORT_SYMBOL vmlinux 0x00000000 acpi_leave_sleep_state -EXPORT_SYMBOL vmlinux 0x00000000 acpi_leave_sleep_state_prep -EXPORT_SYMBOL vmlinux 0x00000000 acpi_lid_notifier_register -EXPORT_SYMBOL vmlinux 0x00000000 acpi_lid_notifier_unregister -EXPORT_SYMBOL vmlinux 0x00000000 acpi_lid_open -EXPORT_SYMBOL vmlinux 0x00000000 acpi_load_table -EXPORT_SYMBOL vmlinux 0x00000000 acpi_mark_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x00000000 acpi_match_device_ids -EXPORT_SYMBOL vmlinux 0x00000000 acpi_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x00000000 acpi_os_execute -EXPORT_SYMBOL vmlinux 0x00000000 acpi_os_map_generic_address -EXPORT_SYMBOL vmlinux 0x00000000 acpi_os_read_port -EXPORT_SYMBOL vmlinux 0x00000000 acpi_os_unmap_generic_address -EXPORT_SYMBOL vmlinux 0x00000000 acpi_os_write_port -EXPORT_SYMBOL vmlinux 0x00000000 acpi_osi_is_win8 -EXPORT_SYMBOL vmlinux 0x00000000 acpi_pci_disabled -EXPORT_SYMBOL vmlinux 0x00000000 acpi_pci_osc_control_set -EXPORT_SYMBOL vmlinux 0x00000000 acpi_purge_cached_objects -EXPORT_SYMBOL vmlinux 0x00000000 acpi_read -EXPORT_SYMBOL vmlinux 0x00000000 acpi_read_bit_register -EXPORT_SYMBOL vmlinux 0x00000000 acpi_register_ioapic -EXPORT_SYMBOL vmlinux 0x00000000 acpi_release_global_lock -EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_address_space_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_fixed_event_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_gpe_block -EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_gpe_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_interface -EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_notify_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_sci_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_table_handler -EXPORT_SYMBOL vmlinux 0x00000000 acpi_reset -EXPORT_SYMBOL vmlinux 0x00000000 acpi_resource_to_address64 -EXPORT_SYMBOL vmlinux 0x00000000 acpi_resources_are_enforced -EXPORT_SYMBOL vmlinux 0x00000000 acpi_root_dir -EXPORT_SYMBOL vmlinux 0x00000000 acpi_run_osc -EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_current_resources -EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_firmware_waking_vector -EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_firmware_waking_vector64 -EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_firmware_waking_vectors -EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_gpe -EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_gpe_wake_mask -EXPORT_SYMBOL vmlinux 0x00000000 acpi_setup_gpe_for_wake -EXPORT_SYMBOL vmlinux 0x00000000 acpi_unload_parent_table -EXPORT_SYMBOL vmlinux 0x00000000 acpi_unregister_ioapic -EXPORT_SYMBOL vmlinux 0x00000000 acpi_update_all_gpes -EXPORT_SYMBOL vmlinux 0x00000000 acpi_video_backlight_string -EXPORT_SYMBOL vmlinux 0x00000000 acpi_walk_namespace -EXPORT_SYMBOL vmlinux 0x00000000 acpi_walk_resource_buffer -EXPORT_SYMBOL vmlinux 0x00000000 acpi_walk_resources -EXPORT_SYMBOL vmlinux 0x00000000 acpi_warning -EXPORT_SYMBOL vmlinux 0x00000000 acpi_write -EXPORT_SYMBOL vmlinux 0x00000000 acpi_write_bit_register -EXPORT_SYMBOL vmlinux 0x00000000 add_device_randomness -EXPORT_SYMBOL vmlinux 0x00000000 add_disk -EXPORT_SYMBOL vmlinux 0x00000000 add_random_ready_callback -EXPORT_SYMBOL vmlinux 0x00000000 add_taint -EXPORT_SYMBOL vmlinux 0x00000000 add_timer -EXPORT_SYMBOL vmlinux 0x00000000 add_to_page_cache_locked -EXPORT_SYMBOL vmlinux 0x00000000 add_wait_queue -EXPORT_SYMBOL vmlinux 0x00000000 add_wait_queue_exclusive -EXPORT_SYMBOL vmlinux 0x00000000 address_space_init_once -EXPORT_SYMBOL vmlinux 0x00000000 adjust_managed_page_count -EXPORT_SYMBOL vmlinux 0x00000000 adjust_resource -EXPORT_SYMBOL vmlinux 0x00000000 alloc_anon_inode -EXPORT_SYMBOL vmlinux 0x00000000 alloc_buffer_head -EXPORT_SYMBOL vmlinux 0x00000000 alloc_chrdev_region -EXPORT_SYMBOL vmlinux 0x00000000 alloc_cpu_rmap -EXPORT_SYMBOL vmlinux 0x00000000 alloc_disk -EXPORT_SYMBOL vmlinux 0x00000000 alloc_disk_node -EXPORT_SYMBOL vmlinux 0x00000000 alloc_etherdev_mqs -EXPORT_SYMBOL vmlinux 0x00000000 alloc_file -EXPORT_SYMBOL vmlinux 0x00000000 alloc_netdev_mqs -EXPORT_SYMBOL vmlinux 0x00000000 alloc_pages_exact -EXPORT_SYMBOL vmlinux 0x00000000 alloc_skb_with_frags -EXPORT_SYMBOL vmlinux 0x00000000 allocate_resource -EXPORT_SYMBOL vmlinux 0x00000000 always_delete_dentry -EXPORT_SYMBOL vmlinux 0x00000000 amd_e400_c1e_detected -EXPORT_SYMBOL vmlinux 0x00000000 amd_nb_misc_ids -EXPORT_SYMBOL vmlinux 0x00000000 amd_northbridges -EXPORT_SYMBOL vmlinux 0x00000000 arch_debugfs_dir -EXPORT_SYMBOL vmlinux 0x00000000 arch_dma_alloc_attrs -EXPORT_SYMBOL vmlinux 0x00000000 argv_free -EXPORT_SYMBOL vmlinux 0x00000000 argv_split -EXPORT_SYMBOL vmlinux 0x00000000 arp_create -EXPORT_SYMBOL vmlinux 0x00000000 arp_send -EXPORT_SYMBOL vmlinux 0x00000000 arp_tbl -EXPORT_SYMBOL vmlinux 0x00000000 arp_xmit -EXPORT_SYMBOL vmlinux 0x00000000 atomic_dec_and_mutex_lock -EXPORT_SYMBOL vmlinux 0x00000000 autoremove_wake_function -EXPORT_SYMBOL vmlinux 0x00000000 avail_to_resrv_perfctr_nmi_bit -EXPORT_SYMBOL vmlinux 0x00000000 avenrun -EXPORT_SYMBOL vmlinux 0x00000000 balance_dirty_pages_ratelimited -EXPORT_SYMBOL vmlinux 0x00000000 bd_set_size -EXPORT_SYMBOL vmlinux 0x00000000 bdev_read_only -EXPORT_SYMBOL vmlinux 0x00000000 bdev_stack_limits -EXPORT_SYMBOL vmlinux 0x00000000 bdevname -EXPORT_SYMBOL vmlinux 0x00000000 bdget -EXPORT_SYMBOL vmlinux 0x00000000 bdget_disk -EXPORT_SYMBOL vmlinux 0x00000000 bdgrab -EXPORT_SYMBOL vmlinux 0x00000000 bdi_destroy -EXPORT_SYMBOL vmlinux 0x00000000 bdi_init -EXPORT_SYMBOL vmlinux 0x00000000 bdi_register -EXPORT_SYMBOL vmlinux 0x00000000 bdi_register_dev -EXPORT_SYMBOL vmlinux 0x00000000 bdi_register_owner -EXPORT_SYMBOL vmlinux 0x00000000 bdi_set_max_ratio -EXPORT_SYMBOL vmlinux 0x00000000 bdi_setup_and_register -EXPORT_SYMBOL vmlinux 0x00000000 bdput -EXPORT_SYMBOL vmlinux 0x00000000 bh_submit_read -EXPORT_SYMBOL vmlinux 0x00000000 bh_uptodate_or_lock -EXPORT_SYMBOL vmlinux 0x00000000 bin2hex -EXPORT_SYMBOL vmlinux 0x00000000 bio_add_page -EXPORT_SYMBOL vmlinux 0x00000000 bio_add_pc_page -EXPORT_SYMBOL vmlinux 0x00000000 bio_advance -EXPORT_SYMBOL vmlinux 0x00000000 bio_alloc_bioset -EXPORT_SYMBOL vmlinux 0x00000000 bio_alloc_pages -EXPORT_SYMBOL vmlinux 0x00000000 bio_chain -EXPORT_SYMBOL vmlinux 0x00000000 bio_clone_bioset -EXPORT_SYMBOL vmlinux 0x00000000 bio_clone_fast -EXPORT_SYMBOL vmlinux 0x00000000 bio_copy_data -EXPORT_SYMBOL vmlinux 0x00000000 bio_copy_kern -EXPORT_SYMBOL vmlinux 0x00000000 bio_endio -EXPORT_SYMBOL vmlinux 0x00000000 bio_init -EXPORT_SYMBOL vmlinux 0x00000000 bio_map_kern -EXPORT_SYMBOL vmlinux 0x00000000 bio_phys_segments -EXPORT_SYMBOL vmlinux 0x00000000 bio_put -EXPORT_SYMBOL vmlinux 0x00000000 bio_reset -EXPORT_SYMBOL vmlinux 0x00000000 bio_split -EXPORT_SYMBOL vmlinux 0x00000000 bio_uncopy_user -EXPORT_SYMBOL vmlinux 0x00000000 bio_unmap_user -EXPORT_SYMBOL vmlinux 0x00000000 bioset_create -EXPORT_SYMBOL vmlinux 0x00000000 bioset_create_nobvec -EXPORT_SYMBOL vmlinux 0x00000000 bioset_free -EXPORT_SYMBOL vmlinux 0x00000000 bit_wait -EXPORT_SYMBOL vmlinux 0x00000000 bit_wait_io -EXPORT_SYMBOL vmlinux 0x00000000 bit_waitqueue -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_allocate_region -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_bitremap -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_clear -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_find_free_region -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_find_next_zero_area_off -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_fold -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_from_u32array -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_onto -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_parse_user -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_parselist -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_parselist_user -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_print_to_pagebuf -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_release_region -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_remap -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_set -EXPORT_SYMBOL vmlinux 0x00000000 bitmap_to_u32array -EXPORT_SYMBOL vmlinux 0x00000000 blk_alloc_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_alloc_queue_node -EXPORT_SYMBOL vmlinux 0x00000000 blk_check_plugged -EXPORT_SYMBOL vmlinux 0x00000000 blk_cleanup_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_complete_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_delay_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_dump_rq_flags -EXPORT_SYMBOL vmlinux 0x00000000 blk_end_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_end_request_all -EXPORT_SYMBOL vmlinux 0x00000000 blk_end_request_cur -EXPORT_SYMBOL vmlinux 0x00000000 blk_execute_rq -EXPORT_SYMBOL vmlinux 0x00000000 blk_fetch_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_finish_plug -EXPORT_SYMBOL vmlinux 0x00000000 blk_finish_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_free_tags -EXPORT_SYMBOL vmlinux 0x00000000 blk_get_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_get_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_init_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_init_queue_node -EXPORT_SYMBOL vmlinux 0x00000000 blk_init_tags -EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_complete -EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_disable -EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_enable -EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_init -EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_sched -EXPORT_SYMBOL vmlinux 0x00000000 blk_limits_io_min -EXPORT_SYMBOL vmlinux 0x00000000 blk_limits_io_opt -EXPORT_SYMBOL vmlinux 0x00000000 blk_lookup_devt -EXPORT_SYMBOL vmlinux 0x00000000 blk_make_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_max_low_pfn -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_abort_requeue_list -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_add_to_requeue_list -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_all_tag_busy_iter -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_alloc_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_alloc_tag_set -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_can_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_complete_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_delay_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_end_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_free_tag_set -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_init_allocated_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_init_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_kick_requeue_list -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_map_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_requeue_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_run_hw_queues -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_start_hw_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_start_hw_queues -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_start_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_start_stopped_hw_queues -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_stop_hw_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_stop_hw_queues -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_tag_to_rq -EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_unique_tag -EXPORT_SYMBOL vmlinux 0x00000000 blk_peek_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_put_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_put_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_alignment_offset -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_bounce_limit -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_chunk_sectors -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_dma_alignment -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_dma_pad -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_end_tag -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_find_tag -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_free_tags -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_init_tags -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_invalidate_tags -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_io_min -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_io_opt -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_logical_block_size -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_make_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_discard_sectors -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_hw_sectors -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_segment_size -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_segments -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_write_same_sectors -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_physical_block_size -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_prep_rq -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_resize_tags -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_segment_boundary -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_softirq_done -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_split -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_stack_limits -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_start_tag -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_unprep_rq -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_update_dma_alignment -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_update_dma_pad -EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_virt_boundary -EXPORT_SYMBOL vmlinux 0x00000000 blk_recount_segments -EXPORT_SYMBOL vmlinux 0x00000000 blk_register_region -EXPORT_SYMBOL vmlinux 0x00000000 blk_requeue_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_init -EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_kern -EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_sg -EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_user -EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_user_iov -EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_set_block_pc -EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_unmap_user -EXPORT_SYMBOL vmlinux 0x00000000 blk_run_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_run_queue_async -EXPORT_SYMBOL vmlinux 0x00000000 blk_set_default_limits -EXPORT_SYMBOL vmlinux 0x00000000 blk_set_stacking_limits -EXPORT_SYMBOL vmlinux 0x00000000 blk_stack_limits -EXPORT_SYMBOL vmlinux 0x00000000 blk_start_plug -EXPORT_SYMBOL vmlinux 0x00000000 blk_start_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_start_queue_async -EXPORT_SYMBOL vmlinux 0x00000000 blk_start_request -EXPORT_SYMBOL vmlinux 0x00000000 blk_stop_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_sync_queue -EXPORT_SYMBOL vmlinux 0x00000000 blk_unregister_region -EXPORT_SYMBOL vmlinux 0x00000000 blk_verify_command -EXPORT_SYMBOL vmlinux 0x00000000 blkdev_fsync -EXPORT_SYMBOL vmlinux 0x00000000 blkdev_get -EXPORT_SYMBOL vmlinux 0x00000000 blkdev_get_by_dev -EXPORT_SYMBOL vmlinux 0x00000000 blkdev_get_by_path -EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_discard -EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_flush -EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_write_same -EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_zeroout -EXPORT_SYMBOL vmlinux 0x00000000 blkdev_put -EXPORT_SYMBOL vmlinux 0x00000000 blkdev_reread_part -EXPORT_SYMBOL vmlinux 0x00000000 block_commit_write -EXPORT_SYMBOL vmlinux 0x00000000 block_invalidatepage -EXPORT_SYMBOL vmlinux 0x00000000 block_is_partially_uptodate -EXPORT_SYMBOL vmlinux 0x00000000 block_page_mkwrite -EXPORT_SYMBOL vmlinux 0x00000000 block_read_full_page -EXPORT_SYMBOL vmlinux 0x00000000 block_truncate_page -EXPORT_SYMBOL vmlinux 0x00000000 block_write_begin -EXPORT_SYMBOL vmlinux 0x00000000 block_write_end -EXPORT_SYMBOL vmlinux 0x00000000 block_write_full_page -EXPORT_SYMBOL vmlinux 0x00000000 bmap -EXPORT_SYMBOL vmlinux 0x00000000 boot_cpu_data -EXPORT_SYMBOL vmlinux 0x00000000 boot_option_idle_override -EXPORT_SYMBOL vmlinux 0x00000000 bprm_change_interp -EXPORT_SYMBOL vmlinux 0x00000000 brioctl_set -EXPORT_SYMBOL vmlinux 0x00000000 bsearch -EXPORT_SYMBOL vmlinux 0x00000000 buffer_check_dirty_writeback -EXPORT_SYMBOL vmlinux 0x00000000 build_skb -EXPORT_SYMBOL vmlinux 0x00000000 cad_pid -EXPORT_SYMBOL vmlinux 0x00000000 call_netdevice_notifiers -EXPORT_SYMBOL vmlinux 0x00000000 call_usermodehelper -EXPORT_SYMBOL vmlinux 0x00000000 call_usermodehelper_exec -EXPORT_SYMBOL vmlinux 0x00000000 call_usermodehelper_setup -EXPORT_SYMBOL vmlinux 0x00000000 can_do_mlock -EXPORT_SYMBOL vmlinux 0x00000000 cancel_delayed_work -EXPORT_SYMBOL vmlinux 0x00000000 cancel_delayed_work_sync -EXPORT_SYMBOL vmlinux 0x00000000 cancel_dirty_page -EXPORT_SYMBOL vmlinux 0x00000000 cap_mmap_addr -EXPORT_SYMBOL vmlinux 0x00000000 cap_mmap_file -EXPORT_SYMBOL vmlinux 0x00000000 capable -EXPORT_SYMBOL vmlinux 0x00000000 capable_wrt_inode_uidgid -EXPORT_SYMBOL vmlinux 0x00000000 cdev_add -EXPORT_SYMBOL vmlinux 0x00000000 cdev_alloc -EXPORT_SYMBOL vmlinux 0x00000000 cdev_del -EXPORT_SYMBOL vmlinux 0x00000000 cdev_init -EXPORT_SYMBOL vmlinux 0x00000000 cdrom_check_events -EXPORT_SYMBOL vmlinux 0x00000000 cdrom_get_last_written -EXPORT_SYMBOL vmlinux 0x00000000 cdrom_get_media_event -EXPORT_SYMBOL vmlinux 0x00000000 cdrom_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 cdrom_media_changed -EXPORT_SYMBOL vmlinux 0x00000000 cdrom_mode_select -EXPORT_SYMBOL vmlinux 0x00000000 cdrom_mode_sense -EXPORT_SYMBOL vmlinux 0x00000000 cdrom_number_of_slots -EXPORT_SYMBOL vmlinux 0x00000000 cdrom_open -EXPORT_SYMBOL vmlinux 0x00000000 cdrom_release -EXPORT_SYMBOL vmlinux 0x00000000 check_disk_change -EXPORT_SYMBOL vmlinux 0x00000000 check_disk_size_change -EXPORT_SYMBOL vmlinux 0x00000000 clear_inode -EXPORT_SYMBOL vmlinux 0x00000000 clear_nlink -EXPORT_SYMBOL vmlinux 0x00000000 clear_page -EXPORT_SYMBOL vmlinux 0x00000000 clear_page_dirty_for_io -EXPORT_SYMBOL vmlinux 0x00000000 clear_user -EXPORT_SYMBOL vmlinux 0x00000000 clear_wb_congested -EXPORT_SYMBOL vmlinux 0x00000000 clock_t_to_jiffies -EXPORT_SYMBOL vmlinux 0x00000000 clocksource_change_rating -EXPORT_SYMBOL vmlinux 0x00000000 clocksource_unregister -EXPORT_SYMBOL vmlinux 0x00000000 cmdline_parts_find -EXPORT_SYMBOL vmlinux 0x00000000 cmdline_parts_free -EXPORT_SYMBOL vmlinux 0x00000000 cmdline_parts_parse -EXPORT_SYMBOL vmlinux 0x00000000 cmdline_parts_set -EXPORT_SYMBOL vmlinux 0x00000000 commit_creds -EXPORT_SYMBOL vmlinux 0x00000000 complete -EXPORT_SYMBOL vmlinux 0x00000000 complete_all -EXPORT_SYMBOL vmlinux 0x00000000 complete_and_exit -EXPORT_SYMBOL vmlinux 0x00000000 complete_request_key -EXPORT_SYMBOL vmlinux 0x00000000 completion_done -EXPORT_SYMBOL vmlinux 0x00000000 component_match_add -EXPORT_SYMBOL vmlinux 0x00000000 congestion_wait -EXPORT_SYMBOL vmlinux 0x00000000 console_conditional_schedule -EXPORT_SYMBOL vmlinux 0x00000000 console_lock -EXPORT_SYMBOL vmlinux 0x00000000 console_set_on_cmdline -EXPORT_SYMBOL vmlinux 0x00000000 console_start -EXPORT_SYMBOL vmlinux 0x00000000 console_stop -EXPORT_SYMBOL vmlinux 0x00000000 console_suspend_enabled -EXPORT_SYMBOL vmlinux 0x00000000 console_trylock -EXPORT_SYMBOL vmlinux 0x00000000 console_unlock -EXPORT_SYMBOL vmlinux 0x00000000 consume_skb -EXPORT_SYMBOL vmlinux 0x00000000 cont_write_begin -EXPORT_SYMBOL vmlinux 0x00000000 contig_page_data -EXPORT_SYMBOL vmlinux 0x00000000 convert_art_to_tsc -EXPORT_SYMBOL vmlinux 0x00000000 copy_from_iter -EXPORT_SYMBOL vmlinux 0x00000000 copy_from_iter_nocache -EXPORT_SYMBOL vmlinux 0x00000000 copy_from_user_overflow -EXPORT_SYMBOL vmlinux 0x00000000 copy_in_user -EXPORT_SYMBOL vmlinux 0x00000000 copy_page -EXPORT_SYMBOL vmlinux 0x00000000 copy_page_from_iter -EXPORT_SYMBOL vmlinux 0x00000000 copy_page_to_iter -EXPORT_SYMBOL vmlinux 0x00000000 copy_strings_kernel -EXPORT_SYMBOL vmlinux 0x00000000 copy_to_iter -EXPORT_SYMBOL vmlinux 0x00000000 copy_user_enhanced_fast_string -EXPORT_SYMBOL vmlinux 0x00000000 copy_user_generic_string -EXPORT_SYMBOL vmlinux 0x00000000 copy_user_generic_unrolled -EXPORT_SYMBOL vmlinux 0x00000000 cpu_active_mask -EXPORT_SYMBOL vmlinux 0x00000000 cpu_all_bits -EXPORT_SYMBOL vmlinux 0x00000000 cpu_core_map -EXPORT_SYMBOL vmlinux 0x00000000 cpu_dr7 -EXPORT_SYMBOL vmlinux 0x00000000 cpu_info -EXPORT_SYMBOL vmlinux 0x00000000 cpu_khz -EXPORT_SYMBOL vmlinux 0x00000000 cpu_maps_update_begin -EXPORT_SYMBOL vmlinux 0x00000000 cpu_maps_update_done -EXPORT_SYMBOL vmlinux 0x00000000 cpu_number -EXPORT_SYMBOL vmlinux 0x00000000 cpu_online_mask -EXPORT_SYMBOL vmlinux 0x00000000 cpu_possible_mask -EXPORT_SYMBOL vmlinux 0x00000000 cpu_present_mask -EXPORT_SYMBOL vmlinux 0x00000000 cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x00000000 cpu_rmap_put -EXPORT_SYMBOL vmlinux 0x00000000 cpu_rmap_update -EXPORT_SYMBOL vmlinux 0x00000000 cpu_sibling_map -EXPORT_SYMBOL vmlinux 0x00000000 cpu_tss -EXPORT_SYMBOL vmlinux 0x00000000 cpumask_local_spread -EXPORT_SYMBOL vmlinux 0x00000000 cpumask_next_and -EXPORT_SYMBOL vmlinux 0x00000000 crc16 -EXPORT_SYMBOL vmlinux 0x00000000 crc16_table -EXPORT_SYMBOL vmlinux 0x00000000 crc32_be -EXPORT_SYMBOL vmlinux 0x00000000 crc32_le -EXPORT_SYMBOL vmlinux 0x00000000 crc32_le_shift -EXPORT_SYMBOL vmlinux 0x00000000 create_empty_buffers -EXPORT_SYMBOL vmlinux 0x00000000 crypto_sha512_finup -EXPORT_SYMBOL vmlinux 0x00000000 crypto_sha512_update -EXPORT_SYMBOL vmlinux 0x00000000 csum_and_copy_from_iter -EXPORT_SYMBOL vmlinux 0x00000000 csum_and_copy_to_iter -EXPORT_SYMBOL vmlinux 0x00000000 csum_ipv6_magic -EXPORT_SYMBOL vmlinux 0x00000000 csum_partial -EXPORT_SYMBOL vmlinux 0x00000000 csum_partial_copy_from_user -EXPORT_SYMBOL vmlinux 0x00000000 csum_partial_copy_nocheck -EXPORT_SYMBOL vmlinux 0x00000000 csum_partial_copy_to_user -EXPORT_SYMBOL vmlinux 0x00000000 current_fs_time -EXPORT_SYMBOL vmlinux 0x00000000 current_kernel_time64 -EXPORT_SYMBOL vmlinux 0x00000000 current_task -EXPORT_SYMBOL vmlinux 0x00000000 current_umask -EXPORT_SYMBOL vmlinux 0x00000000 d_add_ci -EXPORT_SYMBOL vmlinux 0x00000000 d_alloc -EXPORT_SYMBOL vmlinux 0x00000000 d_alloc_name -EXPORT_SYMBOL vmlinux 0x00000000 d_alloc_pseudo -EXPORT_SYMBOL vmlinux 0x00000000 d_delete -EXPORT_SYMBOL vmlinux 0x00000000 d_drop -EXPORT_SYMBOL vmlinux 0x00000000 d_find_alias -EXPORT_SYMBOL vmlinux 0x00000000 d_find_any_alias -EXPORT_SYMBOL vmlinux 0x00000000 d_genocide -EXPORT_SYMBOL vmlinux 0x00000000 d_hash_and_lookup -EXPORT_SYMBOL vmlinux 0x00000000 d_instantiate -EXPORT_SYMBOL vmlinux 0x00000000 d_instantiate_no_diralias -EXPORT_SYMBOL vmlinux 0x00000000 d_instantiate_unique -EXPORT_SYMBOL vmlinux 0x00000000 d_invalidate -EXPORT_SYMBOL vmlinux 0x00000000 d_lookup -EXPORT_SYMBOL vmlinux 0x00000000 d_make_root -EXPORT_SYMBOL vmlinux 0x00000000 d_move -EXPORT_SYMBOL vmlinux 0x00000000 d_obtain_alias -EXPORT_SYMBOL vmlinux 0x00000000 d_obtain_root -EXPORT_SYMBOL vmlinux 0x00000000 d_path -EXPORT_SYMBOL vmlinux 0x00000000 d_prune_aliases -EXPORT_SYMBOL vmlinux 0x00000000 d_rehash -EXPORT_SYMBOL vmlinux 0x00000000 d_set_d_op -EXPORT_SYMBOL vmlinux 0x00000000 d_set_fallthru -EXPORT_SYMBOL vmlinux 0x00000000 d_splice_alias -EXPORT_SYMBOL vmlinux 0x00000000 d_tmpfile -EXPORT_SYMBOL vmlinux 0x00000000 d_walk -EXPORT_SYMBOL vmlinux 0x00000000 datagram_poll -EXPORT_SYMBOL vmlinux 0x00000000 dcache_dir_close -EXPORT_SYMBOL vmlinux 0x00000000 dcache_dir_lseek -EXPORT_SYMBOL vmlinux 0x00000000 dcache_dir_open -EXPORT_SYMBOL vmlinux 0x00000000 dcache_readdir -EXPORT_SYMBOL vmlinux 0x00000000 deactivate_locked_super -EXPORT_SYMBOL vmlinux 0x00000000 deactivate_super -EXPORT_SYMBOL vmlinux 0x00000000 debugfs_create_automount -EXPORT_SYMBOL vmlinux 0x00000000 dec_zone_page_state -EXPORT_SYMBOL vmlinux 0x00000000 default_file_splice_read -EXPORT_SYMBOL vmlinux 0x00000000 default_llseek -EXPORT_SYMBOL vmlinux 0x00000000 default_qdisc_ops -EXPORT_SYMBOL vmlinux 0x00000000 default_wake_function -EXPORT_SYMBOL vmlinux 0x00000000 del_gendisk -EXPORT_SYMBOL vmlinux 0x00000000 del_random_ready_callback -EXPORT_SYMBOL vmlinux 0x00000000 del_timer -EXPORT_SYMBOL vmlinux 0x00000000 del_timer_sync -EXPORT_SYMBOL vmlinux 0x00000000 delayed_work_timer_fn -EXPORT_SYMBOL vmlinux 0x00000000 delete_from_page_cache -EXPORT_SYMBOL vmlinux 0x00000000 dentry_needs_remove_privs -EXPORT_SYMBOL vmlinux 0x00000000 dentry_open -EXPORT_SYMBOL vmlinux 0x00000000 dentry_path_raw -EXPORT_SYMBOL vmlinux 0x00000000 dentry_unhash -EXPORT_SYMBOL vmlinux 0x00000000 dentry_update_name_case -EXPORT_SYMBOL vmlinux 0x00000000 dev_activate -EXPORT_SYMBOL vmlinux 0x00000000 dev_add_offload -EXPORT_SYMBOL vmlinux 0x00000000 dev_add_pack -EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_add -EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_del -EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_flush -EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_init -EXPORT_SYMBOL vmlinux 0x00000000 dev_alert -EXPORT_SYMBOL vmlinux 0x00000000 dev_alloc_name -EXPORT_SYMBOL vmlinux 0x00000000 dev_base_lock -EXPORT_SYMBOL vmlinux 0x00000000 dev_change_carrier -EXPORT_SYMBOL vmlinux 0x00000000 dev_change_flags -EXPORT_SYMBOL vmlinux 0x00000000 dev_change_proto_down -EXPORT_SYMBOL vmlinux 0x00000000 dev_close -EXPORT_SYMBOL vmlinux 0x00000000 dev_close_many -EXPORT_SYMBOL vmlinux 0x00000000 dev_crit -EXPORT_SYMBOL vmlinux 0x00000000 dev_deactivate -EXPORT_SYMBOL vmlinux 0x00000000 dev_disable_lro -EXPORT_SYMBOL vmlinux 0x00000000 dev_driver_string -EXPORT_SYMBOL vmlinux 0x00000000 dev_emerg -EXPORT_SYMBOL vmlinux 0x00000000 dev_err -EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_index -EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_index_rcu -EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_name -EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_name_rcu -EXPORT_SYMBOL vmlinux 0x00000000 dev_get_flags -EXPORT_SYMBOL vmlinux 0x00000000 dev_get_iflink -EXPORT_SYMBOL vmlinux 0x00000000 dev_get_nest_level -EXPORT_SYMBOL vmlinux 0x00000000 dev_get_phys_port_id -EXPORT_SYMBOL vmlinux 0x00000000 dev_get_phys_port_name -EXPORT_SYMBOL vmlinux 0x00000000 dev_get_stats -EXPORT_SYMBOL vmlinux 0x00000000 dev_getbyhwaddr_rcu -EXPORT_SYMBOL vmlinux 0x00000000 dev_getfirstbyhwtype -EXPORT_SYMBOL vmlinux 0x00000000 dev_graft_qdisc -EXPORT_SYMBOL vmlinux 0x00000000 dev_load -EXPORT_SYMBOL vmlinux 0x00000000 dev_loopback_xmit -EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_add -EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_add_excl -EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_add_global -EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_del -EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_del_global -EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_flush -EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_init -EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_sync -EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_sync_multiple -EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_unsync -EXPORT_SYMBOL vmlinux 0x00000000 dev_notice -EXPORT_SYMBOL vmlinux 0x00000000 dev_open -EXPORT_SYMBOL vmlinux 0x00000000 dev_printk -EXPORT_SYMBOL vmlinux 0x00000000 dev_printk_emit -EXPORT_SYMBOL vmlinux 0x00000000 dev_queue_xmit -EXPORT_SYMBOL vmlinux 0x00000000 dev_queue_xmit_accel -EXPORT_SYMBOL vmlinux 0x00000000 dev_remove_offload -EXPORT_SYMBOL vmlinux 0x00000000 dev_remove_pack -EXPORT_SYMBOL vmlinux 0x00000000 dev_set_allmulti -EXPORT_SYMBOL vmlinux 0x00000000 dev_set_group -EXPORT_SYMBOL vmlinux 0x00000000 dev_set_mac_address -EXPORT_SYMBOL vmlinux 0x00000000 dev_set_mtu -EXPORT_SYMBOL vmlinux 0x00000000 dev_set_promiscuity -EXPORT_SYMBOL vmlinux 0x00000000 dev_trans_start -EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_add -EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_add_excl -EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_del -EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_flush -EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_init -EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_sync -EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_sync_multiple -EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_unsync -EXPORT_SYMBOL vmlinux 0x00000000 dev_valid_name -EXPORT_SYMBOL vmlinux 0x00000000 dev_vprintk_emit -EXPORT_SYMBOL vmlinux 0x00000000 dev_warn -EXPORT_SYMBOL vmlinux 0x00000000 device_get_mac_address -EXPORT_SYMBOL vmlinux 0x00000000 devm_free_irq -EXPORT_SYMBOL vmlinux 0x00000000 devm_input_allocate_device -EXPORT_SYMBOL vmlinux 0x00000000 devm_ioport_map -EXPORT_SYMBOL vmlinux 0x00000000 devm_ioport_unmap -EXPORT_SYMBOL vmlinux 0x00000000 devm_ioremap -EXPORT_SYMBOL vmlinux 0x00000000 devm_ioremap_nocache -EXPORT_SYMBOL vmlinux 0x00000000 devm_ioremap_resource -EXPORT_SYMBOL vmlinux 0x00000000 devm_ioremap_wc -EXPORT_SYMBOL vmlinux 0x00000000 devm_iounmap -EXPORT_SYMBOL vmlinux 0x00000000 devm_kvasprintf -EXPORT_SYMBOL vmlinux 0x00000000 devm_memremap -EXPORT_SYMBOL vmlinux 0x00000000 devm_memunmap -EXPORT_SYMBOL vmlinux 0x00000000 devm_release_resource -EXPORT_SYMBOL vmlinux 0x00000000 devm_request_any_context_irq -EXPORT_SYMBOL vmlinux 0x00000000 devm_request_resource -EXPORT_SYMBOL vmlinux 0x00000000 devm_request_threaded_irq -EXPORT_SYMBOL vmlinux 0x00000000 dget_parent -EXPORT_SYMBOL vmlinux 0x00000000 disable_irq -EXPORT_SYMBOL vmlinux 0x00000000 disable_irq_nosync -EXPORT_SYMBOL vmlinux 0x00000000 disk_stack_limits -EXPORT_SYMBOL vmlinux 0x00000000 dlci_ioctl_set -EXPORT_SYMBOL vmlinux 0x00000000 dm_kobject_release -EXPORT_SYMBOL vmlinux 0x00000000 dma_common_get_sgtable -EXPORT_SYMBOL vmlinux 0x00000000 dma_common_mmap -EXPORT_SYMBOL vmlinux 0x00000000 dma_ops -EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_alloc -EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_create -EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_destroy -EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_free -EXPORT_SYMBOL vmlinux 0x00000000 dma_supported -EXPORT_SYMBOL vmlinux 0x00000000 dmam_alloc_coherent -EXPORT_SYMBOL vmlinux 0x00000000 dmam_alloc_noncoherent -EXPORT_SYMBOL vmlinux 0x00000000 dmam_free_coherent -EXPORT_SYMBOL vmlinux 0x00000000 dmam_free_noncoherent -EXPORT_SYMBOL vmlinux 0x00000000 dmam_pool_create -EXPORT_SYMBOL vmlinux 0x00000000 dmam_pool_destroy -EXPORT_SYMBOL vmlinux 0x00000000 do_SAK -EXPORT_SYMBOL vmlinux 0x00000000 do_gettimeofday -EXPORT_SYMBOL vmlinux 0x00000000 do_settimeofday64 -EXPORT_SYMBOL vmlinux 0x00000000 do_splice_direct -EXPORT_SYMBOL vmlinux 0x00000000 do_splice_from -EXPORT_SYMBOL vmlinux 0x00000000 do_splice_to -EXPORT_SYMBOL vmlinux 0x00000000 do_truncate -EXPORT_SYMBOL vmlinux 0x00000000 done_path_create -EXPORT_SYMBOL vmlinux 0x00000000 down -EXPORT_SYMBOL vmlinux 0x00000000 down_interruptible -EXPORT_SYMBOL vmlinux 0x00000000 down_killable -EXPORT_SYMBOL vmlinux 0x00000000 down_read -EXPORT_SYMBOL vmlinux 0x00000000 down_read_trylock -EXPORT_SYMBOL vmlinux 0x00000000 down_timeout -EXPORT_SYMBOL vmlinux 0x00000000 down_trylock -EXPORT_SYMBOL vmlinux 0x00000000 down_write -EXPORT_SYMBOL vmlinux 0x00000000 down_write_trylock -EXPORT_SYMBOL vmlinux 0x00000000 downgrade_write -EXPORT_SYMBOL vmlinux 0x00000000 dput -EXPORT_SYMBOL vmlinux 0x00000000 dq_data_lock -EXPORT_SYMBOL vmlinux 0x00000000 dqget -EXPORT_SYMBOL vmlinux 0x00000000 dql_completed -EXPORT_SYMBOL vmlinux 0x00000000 dql_init -EXPORT_SYMBOL vmlinux 0x00000000 dql_reset -EXPORT_SYMBOL vmlinux 0x00000000 dqput -EXPORT_SYMBOL vmlinux 0x00000000 dqstats -EXPORT_SYMBOL vmlinux 0x00000000 dquot_acquire -EXPORT_SYMBOL vmlinux 0x00000000 dquot_alloc -EXPORT_SYMBOL vmlinux 0x00000000 dquot_alloc_inode -EXPORT_SYMBOL vmlinux 0x00000000 dquot_claim_space_nodirty -EXPORT_SYMBOL vmlinux 0x00000000 dquot_commit -EXPORT_SYMBOL vmlinux 0x00000000 dquot_commit_info -EXPORT_SYMBOL vmlinux 0x00000000 dquot_destroy -EXPORT_SYMBOL vmlinux 0x00000000 dquot_disable -EXPORT_SYMBOL vmlinux 0x00000000 dquot_drop -EXPORT_SYMBOL vmlinux 0x00000000 dquot_enable -EXPORT_SYMBOL vmlinux 0x00000000 dquot_file_open -EXPORT_SYMBOL vmlinux 0x00000000 dquot_free_inode -EXPORT_SYMBOL vmlinux 0x00000000 dquot_get_dqblk -EXPORT_SYMBOL vmlinux 0x00000000 dquot_get_state -EXPORT_SYMBOL vmlinux 0x00000000 dquot_initialize -EXPORT_SYMBOL vmlinux 0x00000000 dquot_mark_dquot_dirty -EXPORT_SYMBOL vmlinux 0x00000000 dquot_operations -EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_off -EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_on -EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_on_mount -EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_sync -EXPORT_SYMBOL vmlinux 0x00000000 dquot_quotactl_ops -EXPORT_SYMBOL vmlinux 0x00000000 dquot_quotactl_sysfile_ops -EXPORT_SYMBOL vmlinux 0x00000000 dquot_reclaim_space_nodirty -EXPORT_SYMBOL vmlinux 0x00000000 dquot_release -EXPORT_SYMBOL vmlinux 0x00000000 dquot_resume -EXPORT_SYMBOL vmlinux 0x00000000 dquot_scan_active -EXPORT_SYMBOL vmlinux 0x00000000 dquot_set_dqblk -EXPORT_SYMBOL vmlinux 0x00000000 dquot_set_dqinfo -EXPORT_SYMBOL vmlinux 0x00000000 dquot_transfer -EXPORT_SYMBOL vmlinux 0x00000000 dquot_writeback_dquots -EXPORT_SYMBOL vmlinux 0x00000000 drop_nlink -EXPORT_SYMBOL vmlinux 0x00000000 drop_super -EXPORT_SYMBOL vmlinux 0x00000000 dst_alloc -EXPORT_SYMBOL vmlinux 0x00000000 dst_cow_metrics_generic -EXPORT_SYMBOL vmlinux 0x00000000 dst_destroy -EXPORT_SYMBOL vmlinux 0x00000000 dst_discard_out -EXPORT_SYMBOL vmlinux 0x00000000 dst_init -EXPORT_SYMBOL vmlinux 0x00000000 dst_release -EXPORT_SYMBOL vmlinux 0x00000000 dump_page -EXPORT_SYMBOL vmlinux 0x00000000 dump_stack -EXPORT_SYMBOL vmlinux 0x00000000 dump_trace -EXPORT_SYMBOL vmlinux 0x00000000 dup_iter -EXPORT_SYMBOL vmlinux 0x00000000 ec_get_handle -EXPORT_SYMBOL vmlinux 0x00000000 ec_read -EXPORT_SYMBOL vmlinux 0x00000000 ec_transaction -EXPORT_SYMBOL vmlinux 0x00000000 ec_write -EXPORT_SYMBOL vmlinux 0x00000000 efi -EXPORT_SYMBOL vmlinux 0x00000000 elevator_alloc -EXPORT_SYMBOL vmlinux 0x00000000 elevator_change -EXPORT_SYMBOL vmlinux 0x00000000 elevator_exit -EXPORT_SYMBOL vmlinux 0x00000000 elevator_init -EXPORT_SYMBOL vmlinux 0x00000000 elv_add_request -EXPORT_SYMBOL vmlinux 0x00000000 elv_dispatch_add_tail -EXPORT_SYMBOL vmlinux 0x00000000 elv_dispatch_sort -EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_add -EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_del -EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_find -EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_former_request -EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_latter_request -EXPORT_SYMBOL vmlinux 0x00000000 elv_register_queue -EXPORT_SYMBOL vmlinux 0x00000000 elv_rq_merge_ok -EXPORT_SYMBOL vmlinux 0x00000000 elv_unregister_queue -EXPORT_SYMBOL vmlinux 0x00000000 empty_aops -EXPORT_SYMBOL vmlinux 0x00000000 empty_zero_page -EXPORT_SYMBOL vmlinux 0x00000000 enable_irq -EXPORT_SYMBOL vmlinux 0x00000000 end_buffer_async_write -EXPORT_SYMBOL vmlinux 0x00000000 end_buffer_read_sync -EXPORT_SYMBOL vmlinux 0x00000000 end_buffer_write_sync -EXPORT_SYMBOL vmlinux 0x00000000 end_page_writeback -EXPORT_SYMBOL vmlinux 0x00000000 eth_change_mtu -EXPORT_SYMBOL vmlinux 0x00000000 eth_commit_mac_addr_change -EXPORT_SYMBOL vmlinux 0x00000000 eth_get_headlen -EXPORT_SYMBOL vmlinux 0x00000000 eth_gro_complete -EXPORT_SYMBOL vmlinux 0x00000000 eth_gro_receive -EXPORT_SYMBOL vmlinux 0x00000000 eth_header -EXPORT_SYMBOL vmlinux 0x00000000 eth_header_cache -EXPORT_SYMBOL vmlinux 0x00000000 eth_header_cache_update -EXPORT_SYMBOL vmlinux 0x00000000 eth_header_parse -EXPORT_SYMBOL vmlinux 0x00000000 eth_mac_addr -EXPORT_SYMBOL vmlinux 0x00000000 eth_platform_get_mac_address -EXPORT_SYMBOL vmlinux 0x00000000 eth_prepare_mac_addr_change -EXPORT_SYMBOL vmlinux 0x00000000 eth_type_trans -EXPORT_SYMBOL vmlinux 0x00000000 eth_validate_addr -EXPORT_SYMBOL vmlinux 0x00000000 ether_setup -EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_get_link -EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_get_ts_info -EXPORT_SYMBOL vmlinux 0x00000000 f_setown -EXPORT_SYMBOL vmlinux 0x00000000 fasync_helper -EXPORT_SYMBOL vmlinux 0x00000000 fb_register_client -EXPORT_SYMBOL vmlinux 0x00000000 fb_unregister_client -EXPORT_SYMBOL vmlinux 0x00000000 fd_install -EXPORT_SYMBOL vmlinux 0x00000000 fget -EXPORT_SYMBOL vmlinux 0x00000000 fget_raw -EXPORT_SYMBOL vmlinux 0x00000000 fiemap_check_flags -EXPORT_SYMBOL vmlinux 0x00000000 fiemap_fill_next_extent -EXPORT_SYMBOL vmlinux 0x00000000 file_ns_capable -EXPORT_SYMBOL vmlinux 0x00000000 file_open_root -EXPORT_SYMBOL vmlinux 0x00000000 file_path -EXPORT_SYMBOL vmlinux 0x00000000 file_remove_privs -EXPORT_SYMBOL vmlinux 0x00000000 file_update_time -EXPORT_SYMBOL vmlinux 0x00000000 filemap_fault -EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawait -EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawait_range -EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawrite -EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawrite_range -EXPORT_SYMBOL vmlinux 0x00000000 filemap_flush -EXPORT_SYMBOL vmlinux 0x00000000 filemap_map_pages -EXPORT_SYMBOL vmlinux 0x00000000 filemap_page_mkwrite -EXPORT_SYMBOL vmlinux 0x00000000 filemap_write_and_wait -EXPORT_SYMBOL vmlinux 0x00000000 filemap_write_and_wait_range -EXPORT_SYMBOL vmlinux 0x00000000 filp_close -EXPORT_SYMBOL vmlinux 0x00000000 filp_open -EXPORT_SYMBOL vmlinux 0x00000000 find_first_bit -EXPORT_SYMBOL vmlinux 0x00000000 find_first_zero_bit -EXPORT_SYMBOL vmlinux 0x00000000 find_get_entry -EXPORT_SYMBOL vmlinux 0x00000000 find_get_pages_contig -EXPORT_SYMBOL vmlinux 0x00000000 find_get_pages_tag -EXPORT_SYMBOL vmlinux 0x00000000 find_inode_nowait -EXPORT_SYMBOL vmlinux 0x00000000 find_last_bit -EXPORT_SYMBOL vmlinux 0x00000000 find_lock_entry -EXPORT_SYMBOL vmlinux 0x00000000 find_next_bit -EXPORT_SYMBOL vmlinux 0x00000000 find_next_zero_bit -EXPORT_SYMBOL vmlinux 0x00000000 find_vma -EXPORT_SYMBOL vmlinux 0x00000000 finish_no_open -EXPORT_SYMBOL vmlinux 0x00000000 finish_open -EXPORT_SYMBOL vmlinux 0x00000000 finish_wait -EXPORT_SYMBOL vmlinux 0x00000000 first_ec -EXPORT_SYMBOL vmlinux 0x00000000 fixed_size_llseek -EXPORT_SYMBOL vmlinux 0x00000000 flex_array_alloc -EXPORT_SYMBOL vmlinux 0x00000000 flex_array_clear -EXPORT_SYMBOL vmlinux 0x00000000 flex_array_free -EXPORT_SYMBOL vmlinux 0x00000000 flex_array_free_parts -EXPORT_SYMBOL vmlinux 0x00000000 flex_array_get -EXPORT_SYMBOL vmlinux 0x00000000 flex_array_get_ptr -EXPORT_SYMBOL vmlinux 0x00000000 flex_array_prealloc -EXPORT_SYMBOL vmlinux 0x00000000 flex_array_put -EXPORT_SYMBOL vmlinux 0x00000000 flex_array_shrink -EXPORT_SYMBOL vmlinux 0x00000000 flow_cache_fini -EXPORT_SYMBOL vmlinux 0x00000000 flow_cache_init -EXPORT_SYMBOL vmlinux 0x00000000 flow_cache_lookup -EXPORT_SYMBOL vmlinux 0x00000000 flow_get_u32_dst -EXPORT_SYMBOL vmlinux 0x00000000 flow_get_u32_src -EXPORT_SYMBOL vmlinux 0x00000000 flow_hash_from_keys -EXPORT_SYMBOL vmlinux 0x00000000 flow_keys_dissector -EXPORT_SYMBOL vmlinux 0x00000000 flush_delayed_work -EXPORT_SYMBOL vmlinux 0x00000000 flush_old_exec -EXPORT_SYMBOL vmlinux 0x00000000 flush_signals -EXPORT_SYMBOL vmlinux 0x00000000 flush_workqueue -EXPORT_SYMBOL vmlinux 0x00000000 follow_down -EXPORT_SYMBOL vmlinux 0x00000000 follow_down_one -EXPORT_SYMBOL vmlinux 0x00000000 follow_pfn -EXPORT_SYMBOL vmlinux 0x00000000 follow_up -EXPORT_SYMBOL vmlinux 0x00000000 force_sig -EXPORT_SYMBOL vmlinux 0x00000000 forget_all_cached_acls -EXPORT_SYMBOL vmlinux 0x00000000 forget_cached_acl -EXPORT_SYMBOL vmlinux 0x00000000 fput -EXPORT_SYMBOL vmlinux 0x00000000 free_anon_bdev -EXPORT_SYMBOL vmlinux 0x00000000 free_buffer_head -EXPORT_SYMBOL vmlinux 0x00000000 free_cgroup_ns -EXPORT_SYMBOL vmlinux 0x00000000 free_inode_nonrcu -EXPORT_SYMBOL vmlinux 0x00000000 free_irq -EXPORT_SYMBOL vmlinux 0x00000000 free_irq_cpu_rmap -EXPORT_SYMBOL vmlinux 0x00000000 free_netdev -EXPORT_SYMBOL vmlinux 0x00000000 free_page_put_link -EXPORT_SYMBOL vmlinux 0x00000000 free_pages -EXPORT_SYMBOL vmlinux 0x00000000 free_pages_exact -EXPORT_SYMBOL vmlinux 0x00000000 free_reserved_area -EXPORT_SYMBOL vmlinux 0x00000000 free_task -EXPORT_SYMBOL vmlinux 0x00000000 freeze_bdev -EXPORT_SYMBOL vmlinux 0x00000000 freeze_super -EXPORT_SYMBOL vmlinux 0x00000000 from_kqid -EXPORT_SYMBOL vmlinux 0x00000000 from_kqid_munged -EXPORT_SYMBOL vmlinux 0x00000000 fs_bio_set -EXPORT_SYMBOL vmlinux 0x00000000 fs_overflowgid -EXPORT_SYMBOL vmlinux 0x00000000 fs_overflowuid -EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_add_mark -EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_alloc_group -EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_destroy_mark -EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_get_group -EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_init_mark -EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_put_group -EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_put_mark -EXPORT_SYMBOL vmlinux 0x00000000 fsync_bdev -EXPORT_SYMBOL vmlinux 0x00000000 full_name_hash -EXPORT_SYMBOL vmlinux 0x00000000 gen_estimator_active -EXPORT_SYMBOL vmlinux 0x00000000 gen_kill_estimator -EXPORT_SYMBOL vmlinux 0x00000000 gen_new_estimator -EXPORT_SYMBOL vmlinux 0x00000000 gen_replace_estimator -EXPORT_SYMBOL vmlinux 0x00000000 generate_random_uuid -EXPORT_SYMBOL vmlinux 0x00000000 generic_block_bmap -EXPORT_SYMBOL vmlinux 0x00000000 generic_block_fiemap -EXPORT_SYMBOL vmlinux 0x00000000 generic_check_addressable -EXPORT_SYMBOL vmlinux 0x00000000 generic_cont_expand_simple -EXPORT_SYMBOL vmlinux 0x00000000 generic_delete_inode -EXPORT_SYMBOL vmlinux 0x00000000 generic_end_io_acct -EXPORT_SYMBOL vmlinux 0x00000000 generic_error_remove_page -EXPORT_SYMBOL vmlinux 0x00000000 generic_file_direct_write -EXPORT_SYMBOL vmlinux 0x00000000 generic_file_fsync -EXPORT_SYMBOL vmlinux 0x00000000 generic_file_llseek -EXPORT_SYMBOL vmlinux 0x00000000 generic_file_llseek_size -EXPORT_SYMBOL vmlinux 0x00000000 generic_file_mmap -EXPORT_SYMBOL vmlinux 0x00000000 generic_file_open -EXPORT_SYMBOL vmlinux 0x00000000 generic_file_read_iter -EXPORT_SYMBOL vmlinux 0x00000000 generic_file_readonly_mmap -EXPORT_SYMBOL vmlinux 0x00000000 generic_file_splice_read -EXPORT_SYMBOL vmlinux 0x00000000 generic_file_write_iter -EXPORT_SYMBOL vmlinux 0x00000000 generic_fillattr -EXPORT_SYMBOL vmlinux 0x00000000 generic_getxattr -EXPORT_SYMBOL vmlinux 0x00000000 generic_key_instantiate -EXPORT_SYMBOL vmlinux 0x00000000 generic_listxattr -EXPORT_SYMBOL vmlinux 0x00000000 generic_make_request -EXPORT_SYMBOL vmlinux 0x00000000 generic_perform_write -EXPORT_SYMBOL vmlinux 0x00000000 generic_permission -EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_confirm -EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_get -EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_release -EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_steal -EXPORT_SYMBOL vmlinux 0x00000000 generic_read_dir -EXPORT_SYMBOL vmlinux 0x00000000 generic_readlink -EXPORT_SYMBOL vmlinux 0x00000000 generic_removexattr -EXPORT_SYMBOL vmlinux 0x00000000 generic_ro_fops -EXPORT_SYMBOL vmlinux 0x00000000 generic_setlease -EXPORT_SYMBOL vmlinux 0x00000000 generic_setxattr -EXPORT_SYMBOL vmlinux 0x00000000 generic_show_options -EXPORT_SYMBOL vmlinux 0x00000000 generic_shutdown_super -EXPORT_SYMBOL vmlinux 0x00000000 generic_splice_sendpage -EXPORT_SYMBOL vmlinux 0x00000000 generic_start_io_acct -EXPORT_SYMBOL vmlinux 0x00000000 generic_update_time -EXPORT_SYMBOL vmlinux 0x00000000 generic_write_checks -EXPORT_SYMBOL vmlinux 0x00000000 generic_write_end -EXPORT_SYMBOL vmlinux 0x00000000 generic_writepages -EXPORT_SYMBOL vmlinux 0x00000000 genl_lock -EXPORT_SYMBOL vmlinux 0x00000000 genl_notify -EXPORT_SYMBOL vmlinux 0x00000000 genl_unlock -EXPORT_SYMBOL vmlinux 0x00000000 genl_unregister_family -EXPORT_SYMBOL vmlinux 0x00000000 genlmsg_multicast_allns -EXPORT_SYMBOL vmlinux 0x00000000 genlmsg_put -EXPORT_SYMBOL vmlinux 0x00000000 get_acl -EXPORT_SYMBOL vmlinux 0x00000000 get_anon_bdev -EXPORT_SYMBOL vmlinux 0x00000000 get_cached_acl -EXPORT_SYMBOL vmlinux 0x00000000 get_cached_acl_rcu -EXPORT_SYMBOL vmlinux 0x00000000 get_disk -EXPORT_SYMBOL vmlinux 0x00000000 get_empty_filp -EXPORT_SYMBOL vmlinux 0x00000000 get_fs_type -EXPORT_SYMBOL vmlinux 0x00000000 get_gendisk -EXPORT_SYMBOL vmlinux 0x00000000 get_ibs_caps -EXPORT_SYMBOL vmlinux 0x00000000 get_io_context -EXPORT_SYMBOL vmlinux 0x00000000 get_mm_exe_file -EXPORT_SYMBOL vmlinux 0x00000000 get_next_ino -EXPORT_SYMBOL vmlinux 0x00000000 get_option -EXPORT_SYMBOL vmlinux 0x00000000 get_options -EXPORT_SYMBOL vmlinux 0x00000000 get_random_bytes -EXPORT_SYMBOL vmlinux 0x00000000 get_random_bytes_arch -EXPORT_SYMBOL vmlinux 0x00000000 get_random_int -EXPORT_SYMBOL vmlinux 0x00000000 get_random_long -EXPORT_SYMBOL vmlinux 0x00000000 get_seconds -EXPORT_SYMBOL vmlinux 0x00000000 get_super -EXPORT_SYMBOL vmlinux 0x00000000 get_super_thawed -EXPORT_SYMBOL vmlinux 0x00000000 get_task_exe_file -EXPORT_SYMBOL vmlinux 0x00000000 get_task_io_context -EXPORT_SYMBOL vmlinux 0x00000000 get_unmapped_area -EXPORT_SYMBOL vmlinux 0x00000000 get_unused_fd_flags -EXPORT_SYMBOL vmlinux 0x00000000 get_user_pages -EXPORT_SYMBOL vmlinux 0x00000000 get_user_pages_locked -EXPORT_SYMBOL vmlinux 0x00000000 get_user_pages_unlocked -EXPORT_SYMBOL vmlinux 0x00000000 get_zeroed_page -EXPORT_SYMBOL vmlinux 0x00000000 getnstimeofday64 -EXPORT_SYMBOL vmlinux 0x00000000 getrawmonotonic64 -EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_app -EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_basic -EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_queue -EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_rate_est -EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_finish_copy -EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_start_copy -EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_start_copy_compat -EXPORT_SYMBOL vmlinux 0x00000000 grab_cache_page_write_begin -EXPORT_SYMBOL vmlinux 0x00000000 gro_find_complete_by_type -EXPORT_SYMBOL vmlinux 0x00000000 gro_find_receive_by_type -EXPORT_SYMBOL vmlinux 0x00000000 groups_alloc -EXPORT_SYMBOL vmlinux 0x00000000 groups_free -EXPORT_SYMBOL vmlinux 0x00000000 half_md4_transform -EXPORT_SYMBOL vmlinux 0x00000000 handle_edge_irq -EXPORT_SYMBOL vmlinux 0x00000000 have_submounts -EXPORT_SYMBOL vmlinux 0x00000000 hex2bin -EXPORT_SYMBOL vmlinux 0x00000000 hex_asc -EXPORT_SYMBOL vmlinux 0x00000000 hex_asc_upper -EXPORT_SYMBOL vmlinux 0x00000000 hex_dump_to_buffer -EXPORT_SYMBOL vmlinux 0x00000000 hex_to_bin -EXPORT_SYMBOL vmlinux 0x00000000 high_memory -EXPORT_SYMBOL vmlinux 0x00000000 i8253_lock -EXPORT_SYMBOL vmlinux 0x00000000 icmp_err_convert -EXPORT_SYMBOL vmlinux 0x00000000 icmp_global_allow -EXPORT_SYMBOL vmlinux 0x00000000 icmp_send -EXPORT_SYMBOL vmlinux 0x00000000 icmpv6_err_convert -EXPORT_SYMBOL vmlinux 0x00000000 icmpv6_send -EXPORT_SYMBOL vmlinux 0x00000000 ida_destroy -EXPORT_SYMBOL vmlinux 0x00000000 ida_get_new_above -EXPORT_SYMBOL vmlinux 0x00000000 ida_init -EXPORT_SYMBOL vmlinux 0x00000000 ida_pre_get -EXPORT_SYMBOL vmlinux 0x00000000 ida_remove -EXPORT_SYMBOL vmlinux 0x00000000 ida_simple_get -EXPORT_SYMBOL vmlinux 0x00000000 ida_simple_remove -EXPORT_SYMBOL vmlinux 0x00000000 idr_alloc_cyclic -EXPORT_SYMBOL vmlinux 0x00000000 idr_destroy -EXPORT_SYMBOL vmlinux 0x00000000 idr_find_slowpath -EXPORT_SYMBOL vmlinux 0x00000000 idr_for_each -EXPORT_SYMBOL vmlinux 0x00000000 idr_get_next -EXPORT_SYMBOL vmlinux 0x00000000 idr_init -EXPORT_SYMBOL vmlinux 0x00000000 idr_is_empty -EXPORT_SYMBOL vmlinux 0x00000000 idr_preload -EXPORT_SYMBOL vmlinux 0x00000000 idr_remove -EXPORT_SYMBOL vmlinux 0x00000000 idr_replace -EXPORT_SYMBOL vmlinux 0x00000000 iget5_locked -EXPORT_SYMBOL vmlinux 0x00000000 iget_failed -EXPORT_SYMBOL vmlinux 0x00000000 iget_locked -EXPORT_SYMBOL vmlinux 0x00000000 igrab -EXPORT_SYMBOL vmlinux 0x00000000 ihold -EXPORT_SYMBOL vmlinux 0x00000000 ilookup -EXPORT_SYMBOL vmlinux 0x00000000 ilookup5 -EXPORT_SYMBOL vmlinux 0x00000000 ilookup5_nowait -EXPORT_SYMBOL vmlinux 0x00000000 import_iovec -EXPORT_SYMBOL vmlinux 0x00000000 in4_pton -EXPORT_SYMBOL vmlinux 0x00000000 in6_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x00000000 in6_pton -EXPORT_SYMBOL vmlinux 0x00000000 in6addr_any -EXPORT_SYMBOL vmlinux 0x00000000 in6addr_interfacelocal_allnodes -EXPORT_SYMBOL vmlinux 0x00000000 in6addr_interfacelocal_allrouters -EXPORT_SYMBOL vmlinux 0x00000000 in6addr_linklocal_allnodes -EXPORT_SYMBOL vmlinux 0x00000000 in6addr_linklocal_allrouters -EXPORT_SYMBOL vmlinux 0x00000000 in6addr_loopback -EXPORT_SYMBOL vmlinux 0x00000000 in6addr_sitelocal_allrouters -EXPORT_SYMBOL vmlinux 0x00000000 in_aton -EXPORT_SYMBOL vmlinux 0x00000000 in_dev_finish_destroy -EXPORT_SYMBOL vmlinux 0x00000000 in_egroup_p -EXPORT_SYMBOL vmlinux 0x00000000 in_group_p -EXPORT_SYMBOL vmlinux 0x00000000 in_lock_functions -EXPORT_SYMBOL vmlinux 0x00000000 inc_nlink -EXPORT_SYMBOL vmlinux 0x00000000 inc_zone_page_state -EXPORT_SYMBOL vmlinux 0x00000000 inet6_add_offload -EXPORT_SYMBOL vmlinux 0x00000000 inet6_add_protocol -EXPORT_SYMBOL vmlinux 0x00000000 inet6_bind -EXPORT_SYMBOL vmlinux 0x00000000 inet6_csk_route_req -EXPORT_SYMBOL vmlinux 0x00000000 inet6_del_offload -EXPORT_SYMBOL vmlinux 0x00000000 inet6_del_protocol -EXPORT_SYMBOL vmlinux 0x00000000 inet6_getname -EXPORT_SYMBOL vmlinux 0x00000000 inet6_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 inet6_offloads -EXPORT_SYMBOL vmlinux 0x00000000 inet6_protos -EXPORT_SYMBOL vmlinux 0x00000000 inet6_register_icmp_sender -EXPORT_SYMBOL vmlinux 0x00000000 inet6_register_protosw -EXPORT_SYMBOL vmlinux 0x00000000 inet6_release -EXPORT_SYMBOL vmlinux 0x00000000 inet6_unregister_icmp_sender -EXPORT_SYMBOL vmlinux 0x00000000 inet6_unregister_protosw -EXPORT_SYMBOL vmlinux 0x00000000 inet6addr_notifier_call_chain -EXPORT_SYMBOL vmlinux 0x00000000 inet_accept -EXPORT_SYMBOL vmlinux 0x00000000 inet_add_offload -EXPORT_SYMBOL vmlinux 0x00000000 inet_add_protocol -EXPORT_SYMBOL vmlinux 0x00000000 inet_addr_type -EXPORT_SYMBOL vmlinux 0x00000000 inet_addr_type_dev_table -EXPORT_SYMBOL vmlinux 0x00000000 inet_addr_type_table -EXPORT_SYMBOL vmlinux 0x00000000 inet_bind -EXPORT_SYMBOL vmlinux 0x00000000 inet_confirm_addr -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_accept -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_clear_xmit_timers -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_complete_hashdance -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_delete_keepalive_timer -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_destroy_sock -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_init_xmit_timers -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_prepare_forced_close -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_reqsk_queue_add -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_reqsk_queue_drop -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_reqsk_queue_drop_and_put -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_reset_keepalive_timer -EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_timer_bug_msg -EXPORT_SYMBOL vmlinux 0x00000000 inet_del_offload -EXPORT_SYMBOL vmlinux 0x00000000 inet_del_protocol -EXPORT_SYMBOL vmlinux 0x00000000 inet_dev_addr_type -EXPORT_SYMBOL vmlinux 0x00000000 inet_dgram_connect -EXPORT_SYMBOL vmlinux 0x00000000 inet_dgram_ops -EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_destroy -EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_find -EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_kill -EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_maybe_warn_overflow -EXPORT_SYMBOL vmlinux 0x00000000 inet_frags_exit_net -EXPORT_SYMBOL vmlinux 0x00000000 inet_frags_fini -EXPORT_SYMBOL vmlinux 0x00000000 inet_frags_init -EXPORT_SYMBOL vmlinux 0x00000000 inet_get_local_port_range -EXPORT_SYMBOL vmlinux 0x00000000 inet_getname -EXPORT_SYMBOL vmlinux 0x00000000 inet_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 inet_listen -EXPORT_SYMBOL vmlinux 0x00000000 inet_offloads -EXPORT_SYMBOL vmlinux 0x00000000 inet_peer_xrlim_allow -EXPORT_SYMBOL vmlinux 0x00000000 inet_proto_csum_replace16 -EXPORT_SYMBOL vmlinux 0x00000000 inet_proto_csum_replace4 -EXPORT_SYMBOL vmlinux 0x00000000 inet_proto_csum_replace_by_diff -EXPORT_SYMBOL vmlinux 0x00000000 inet_put_port -EXPORT_SYMBOL vmlinux 0x00000000 inet_recvmsg -EXPORT_SYMBOL vmlinux 0x00000000 inet_register_protosw -EXPORT_SYMBOL vmlinux 0x00000000 inet_release -EXPORT_SYMBOL vmlinux 0x00000000 inet_reqsk_alloc -EXPORT_SYMBOL vmlinux 0x00000000 inet_rtx_syn_ack -EXPORT_SYMBOL vmlinux 0x00000000 inet_select_addr -EXPORT_SYMBOL vmlinux 0x00000000 inet_sendmsg -EXPORT_SYMBOL vmlinux 0x00000000 inet_sendpage -EXPORT_SYMBOL vmlinux 0x00000000 inet_shutdown -EXPORT_SYMBOL vmlinux 0x00000000 inet_sk_rebuild_header -EXPORT_SYMBOL vmlinux 0x00000000 inet_sk_rx_dst_set -EXPORT_SYMBOL vmlinux 0x00000000 inet_sock_destruct -EXPORT_SYMBOL vmlinux 0x00000000 inet_stream_connect -EXPORT_SYMBOL vmlinux 0x00000000 inet_stream_ops -EXPORT_SYMBOL vmlinux 0x00000000 inet_twsk_deschedule_put -EXPORT_SYMBOL vmlinux 0x00000000 inet_unregister_protosw -EXPORT_SYMBOL vmlinux 0x00000000 inetdev_by_index -EXPORT_SYMBOL vmlinux 0x00000000 inetpeer_invalidate_tree -EXPORT_SYMBOL vmlinux 0x00000000 init_buffer -EXPORT_SYMBOL vmlinux 0x00000000 init_cdrom_command -EXPORT_SYMBOL vmlinux 0x00000000 init_net -EXPORT_SYMBOL vmlinux 0x00000000 init_special_inode -EXPORT_SYMBOL vmlinux 0x00000000 init_task -EXPORT_SYMBOL vmlinux 0x00000000 init_timer_key -EXPORT_SYMBOL vmlinux 0x00000000 inode_add_bytes -EXPORT_SYMBOL vmlinux 0x00000000 inode_add_rsv_space -EXPORT_SYMBOL vmlinux 0x00000000 inode_change_ok -EXPORT_SYMBOL vmlinux 0x00000000 inode_claim_rsv_space -EXPORT_SYMBOL vmlinux 0x00000000 inode_dio_wait -EXPORT_SYMBOL vmlinux 0x00000000 inode_get_bytes -EXPORT_SYMBOL vmlinux 0x00000000 inode_init_always -EXPORT_SYMBOL vmlinux 0x00000000 inode_init_once -EXPORT_SYMBOL vmlinux 0x00000000 inode_init_owner -EXPORT_SYMBOL vmlinux 0x00000000 inode_needs_sync -EXPORT_SYMBOL vmlinux 0x00000000 inode_newsize_ok -EXPORT_SYMBOL vmlinux 0x00000000 inode_owner_or_capable -EXPORT_SYMBOL vmlinux 0x00000000 inode_permission -EXPORT_SYMBOL vmlinux 0x00000000 inode_reclaim_rsv_space -EXPORT_SYMBOL vmlinux 0x00000000 inode_set_bytes -EXPORT_SYMBOL vmlinux 0x00000000 inode_set_flags -EXPORT_SYMBOL vmlinux 0x00000000 inode_sub_bytes -EXPORT_SYMBOL vmlinux 0x00000000 inode_sub_rsv_space -EXPORT_SYMBOL vmlinux 0x00000000 input_alloc_absinfo -EXPORT_SYMBOL vmlinux 0x00000000 input_allocate_device -EXPORT_SYMBOL vmlinux 0x00000000 input_close_device -EXPORT_SYMBOL vmlinux 0x00000000 input_enable_softrepeat -EXPORT_SYMBOL vmlinux 0x00000000 input_event -EXPORT_SYMBOL vmlinux 0x00000000 input_flush_device -EXPORT_SYMBOL vmlinux 0x00000000 input_free_device -EXPORT_SYMBOL vmlinux 0x00000000 input_free_minor -EXPORT_SYMBOL vmlinux 0x00000000 input_get_keycode -EXPORT_SYMBOL vmlinux 0x00000000 input_get_new_minor -EXPORT_SYMBOL vmlinux 0x00000000 input_grab_device -EXPORT_SYMBOL vmlinux 0x00000000 input_handler_for_each_handle -EXPORT_SYMBOL vmlinux 0x00000000 input_inject_event -EXPORT_SYMBOL vmlinux 0x00000000 input_mt_assign_slots -EXPORT_SYMBOL vmlinux 0x00000000 input_mt_destroy_slots -EXPORT_SYMBOL vmlinux 0x00000000 input_mt_drop_unused -EXPORT_SYMBOL vmlinux 0x00000000 input_mt_get_slot_by_key -EXPORT_SYMBOL vmlinux 0x00000000 input_mt_init_slots -EXPORT_SYMBOL vmlinux 0x00000000 input_mt_report_finger_count -EXPORT_SYMBOL vmlinux 0x00000000 input_mt_report_pointer_emulation -EXPORT_SYMBOL vmlinux 0x00000000 input_mt_report_slot_state -EXPORT_SYMBOL vmlinux 0x00000000 input_mt_sync_frame -EXPORT_SYMBOL vmlinux 0x00000000 input_open_device -EXPORT_SYMBOL vmlinux 0x00000000 input_register_device -EXPORT_SYMBOL vmlinux 0x00000000 input_register_handle -EXPORT_SYMBOL vmlinux 0x00000000 input_register_handler -EXPORT_SYMBOL vmlinux 0x00000000 input_release_device -EXPORT_SYMBOL vmlinux 0x00000000 input_reset_device -EXPORT_SYMBOL vmlinux 0x00000000 input_scancode_to_scalar -EXPORT_SYMBOL vmlinux 0x00000000 input_set_abs_params -EXPORT_SYMBOL vmlinux 0x00000000 input_set_capability -EXPORT_SYMBOL vmlinux 0x00000000 input_set_keycode -EXPORT_SYMBOL vmlinux 0x00000000 input_unregister_device -EXPORT_SYMBOL vmlinux 0x00000000 input_unregister_handle -EXPORT_SYMBOL vmlinux 0x00000000 input_unregister_handler -EXPORT_SYMBOL vmlinux 0x00000000 insert_inode_locked -EXPORT_SYMBOL vmlinux 0x00000000 insert_inode_locked4 -EXPORT_SYMBOL vmlinux 0x00000000 install_exec_creds -EXPORT_SYMBOL vmlinux 0x00000000 int_sqrt -EXPORT_SYMBOL vmlinux 0x00000000 int_to_scsilun -EXPORT_SYMBOL vmlinux 0x00000000 invalidate_bdev -EXPORT_SYMBOL vmlinux 0x00000000 invalidate_inode_buffers -EXPORT_SYMBOL vmlinux 0x00000000 invalidate_mapping_pages -EXPORT_SYMBOL vmlinux 0x00000000 invalidate_partition -EXPORT_SYMBOL vmlinux 0x00000000 io_schedule_timeout -EXPORT_SYMBOL vmlinux 0x00000000 ioc_lookup_icq -EXPORT_SYMBOL vmlinux 0x00000000 ioctl_by_bdev -EXPORT_SYMBOL vmlinux 0x00000000 iomem_resource -EXPORT_SYMBOL vmlinux 0x00000000 iommu_area_alloc -EXPORT_SYMBOL vmlinux 0x00000000 iommu_tbl_pool_init -EXPORT_SYMBOL vmlinux 0x00000000 iommu_tbl_range_alloc -EXPORT_SYMBOL vmlinux 0x00000000 iommu_tbl_range_free -EXPORT_SYMBOL vmlinux 0x00000000 ioport_map -EXPORT_SYMBOL vmlinux 0x00000000 ioport_resource -EXPORT_SYMBOL vmlinux 0x00000000 ioport_unmap -EXPORT_SYMBOL vmlinux 0x00000000 ioread16 -EXPORT_SYMBOL vmlinux 0x00000000 ioread16_rep -EXPORT_SYMBOL vmlinux 0x00000000 ioread16be -EXPORT_SYMBOL vmlinux 0x00000000 ioread32 -EXPORT_SYMBOL vmlinux 0x00000000 ioread32_rep -EXPORT_SYMBOL vmlinux 0x00000000 ioread32be -EXPORT_SYMBOL vmlinux 0x00000000 ioread8 -EXPORT_SYMBOL vmlinux 0x00000000 ioread8_rep -EXPORT_SYMBOL vmlinux 0x00000000 ioremap_cache -EXPORT_SYMBOL vmlinux 0x00000000 ioremap_nocache -EXPORT_SYMBOL vmlinux 0x00000000 ioremap_prot -EXPORT_SYMBOL vmlinux 0x00000000 ioremap_wc -EXPORT_SYMBOL vmlinux 0x00000000 ioremap_wt -EXPORT_SYMBOL vmlinux 0x00000000 iounmap -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_advance -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_alignment -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_bvec -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_copy_from_user_atomic -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_fault_in_readable -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_get_pages -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_get_pages_alloc -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_init -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_kvec -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_npages -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_single_seg_count -EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_zero -EXPORT_SYMBOL vmlinux 0x00000000 iov_shorten -EXPORT_SYMBOL vmlinux 0x00000000 iowrite16 -EXPORT_SYMBOL vmlinux 0x00000000 iowrite16_rep -EXPORT_SYMBOL vmlinux 0x00000000 iowrite16be -EXPORT_SYMBOL vmlinux 0x00000000 iowrite32 -EXPORT_SYMBOL vmlinux 0x00000000 iowrite32_rep -EXPORT_SYMBOL vmlinux 0x00000000 iowrite32be -EXPORT_SYMBOL vmlinux 0x00000000 iowrite8 -EXPORT_SYMBOL vmlinux 0x00000000 iowrite8_rep -EXPORT_SYMBOL vmlinux 0x00000000 ip4_datagram_connect -EXPORT_SYMBOL vmlinux 0x00000000 ip6_dst_hoplimit -EXPORT_SYMBOL vmlinux 0x00000000 ip6_expire_frag_queue -EXPORT_SYMBOL vmlinux 0x00000000 ip6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x00000000 ip6_frag_init -EXPORT_SYMBOL vmlinux 0x00000000 ip6_frag_match -EXPORT_SYMBOL vmlinux 0x00000000 ip6_xmit -EXPORT_SYMBOL vmlinux 0x00000000 ip_check_defrag -EXPORT_SYMBOL vmlinux 0x00000000 ip_cmsg_recv_offset -EXPORT_SYMBOL vmlinux 0x00000000 ip_compute_csum -EXPORT_SYMBOL vmlinux 0x00000000 ip_defrag -EXPORT_SYMBOL vmlinux 0x00000000 ip_do_fragment -EXPORT_SYMBOL vmlinux 0x00000000 ip_frag_ecn_table -EXPORT_SYMBOL vmlinux 0x00000000 ip_generic_getfrag -EXPORT_SYMBOL vmlinux 0x00000000 ip_getsockopt -EXPORT_SYMBOL vmlinux 0x00000000 ip_idents_reserve -EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_check_igmp -EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_dec_group -EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_inc_group -EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_join_group -EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_leave_group -EXPORT_SYMBOL vmlinux 0x00000000 ip_options_compile -EXPORT_SYMBOL vmlinux 0x00000000 ip_options_rcv_srr -EXPORT_SYMBOL vmlinux 0x00000000 ip_queue_xmit -EXPORT_SYMBOL vmlinux 0x00000000 ip_route_input_noref -EXPORT_SYMBOL vmlinux 0x00000000 ip_send_check -EXPORT_SYMBOL vmlinux 0x00000000 ip_setsockopt -EXPORT_SYMBOL vmlinux 0x00000000 ip_tos2prio -EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_dst_reset_all -EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_encap -EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_encap_add_ops -EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_encap_del_ops -EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_get_iflink -EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_get_link_net -EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_metadata_cnt -EXPORT_SYMBOL vmlinux 0x00000000 iput -EXPORT_SYMBOL vmlinux 0x00000000 ipv4_specific -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_chk_addr -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_chk_addr_and_flags -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_chk_custom_prefix -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_chk_prefix -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_dev_get_saddr -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_ext_hdr -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_find_hdr -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_getsockopt -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_mc_check_mld -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_push_nfrag_opts -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_select_ident -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_setsockopt -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_skip_exthdr -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_sock_mc_drop -EXPORT_SYMBOL vmlinux 0x00000000 ipv6_sock_mc_join -EXPORT_SYMBOL vmlinux 0x00000000 irq_cpu_rmap_add -EXPORT_SYMBOL vmlinux 0x00000000 irq_fpu_usable -EXPORT_SYMBOL vmlinux 0x00000000 irq_regs -EXPORT_SYMBOL vmlinux 0x00000000 irq_set_chip -EXPORT_SYMBOL vmlinux 0x00000000 irq_set_chip_data -EXPORT_SYMBOL vmlinux 0x00000000 irq_set_handler_data -EXPORT_SYMBOL vmlinux 0x00000000 irq_set_irq_type -EXPORT_SYMBOL vmlinux 0x00000000 irq_set_irq_wake -EXPORT_SYMBOL vmlinux 0x00000000 irq_stat -EXPORT_SYMBOL vmlinux 0x00000000 irq_to_desc -EXPORT_SYMBOL vmlinux 0x00000000 is_bad_inode -EXPORT_SYMBOL vmlinux 0x00000000 isa_dma_bridge_buggy -EXPORT_SYMBOL vmlinux 0x00000000 iter_div_u64_rem -EXPORT_SYMBOL vmlinux 0x00000000 iter_file_splice_write -EXPORT_SYMBOL vmlinux 0x00000000 iterate_dir -EXPORT_SYMBOL vmlinux 0x00000000 iterate_fd -EXPORT_SYMBOL vmlinux 0x00000000 iterate_mounts -EXPORT_SYMBOL vmlinux 0x00000000 iterate_supers_type -EXPORT_SYMBOL vmlinux 0x00000000 iunique -EXPORT_SYMBOL vmlinux 0x00000000 jbd2__journal_restart -EXPORT_SYMBOL vmlinux 0x00000000 jbd2__journal_start -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_complete_transaction -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_inode_cache -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_abort -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_ack_err -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_begin_ordered_truncate -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_blocks_per_page -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_check_available_features -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_check_used_features -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_clear_err -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_clear_features -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_destroy -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_dirty_metadata -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_errno -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_extend -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_file_inode -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_flush -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_force_commit -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_force_commit_nested -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_forget -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_free_reserved -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_get_create_access -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_get_undo_access -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_get_write_access -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_init_dev -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_init_inode -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_init_jbd_inode -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_invalidatepage -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_load -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_lock_updates -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_release_jbd_inode -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_restart -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_revoke -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_set_features -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_set_triggers -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_start -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_start_commit -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_start_reserved -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_stop -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_unlock_updates -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_update_sb_errno -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_wipe -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_log_start_commit -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_log_wait_commit -EXPORT_SYMBOL vmlinux 0x00000000 jbd2_trans_will_send_data_barrier -EXPORT_SYMBOL vmlinux 0x00000000 jiffies -EXPORT_SYMBOL vmlinux 0x00000000 jiffies_64 -EXPORT_SYMBOL vmlinux 0x00000000 jiffies_64_to_clock_t -EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_clock_t -EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_msecs -EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_timespec64 -EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_timeval -EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_usecs -EXPORT_SYMBOL vmlinux 0x00000000 kasprintf -EXPORT_SYMBOL vmlinux 0x00000000 kblockd_schedule_delayed_work -EXPORT_SYMBOL vmlinux 0x00000000 kblockd_schedule_delayed_work_on -EXPORT_SYMBOL vmlinux 0x00000000 kblockd_schedule_work -EXPORT_SYMBOL vmlinux 0x00000000 kern_path -EXPORT_SYMBOL vmlinux 0x00000000 kern_path_create -EXPORT_SYMBOL vmlinux 0x00000000 kern_path_mountpoint -EXPORT_SYMBOL vmlinux 0x00000000 kern_unmount -EXPORT_SYMBOL vmlinux 0x00000000 kernel_accept -EXPORT_SYMBOL vmlinux 0x00000000 kernel_bind -EXPORT_SYMBOL vmlinux 0x00000000 kernel_connect -EXPORT_SYMBOL vmlinux 0x00000000 kernel_cpustat -EXPORT_SYMBOL vmlinux 0x00000000 kernel_getpeername -EXPORT_SYMBOL vmlinux 0x00000000 kernel_getsockname -EXPORT_SYMBOL vmlinux 0x00000000 kernel_getsockopt -EXPORT_SYMBOL vmlinux 0x00000000 kernel_listen -EXPORT_SYMBOL vmlinux 0x00000000 kernel_param_lock -EXPORT_SYMBOL vmlinux 0x00000000 kernel_param_unlock -EXPORT_SYMBOL vmlinux 0x00000000 kernel_read -EXPORT_SYMBOL vmlinux 0x00000000 kernel_recvmsg -EXPORT_SYMBOL vmlinux 0x00000000 kernel_sendmsg -EXPORT_SYMBOL vmlinux 0x00000000 kernel_sendpage -EXPORT_SYMBOL vmlinux 0x00000000 kernel_setsockopt -EXPORT_SYMBOL vmlinux 0x00000000 kernel_sigaction -EXPORT_SYMBOL vmlinux 0x00000000 kernel_sock_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 kernel_sock_shutdown -EXPORT_SYMBOL vmlinux 0x00000000 kernel_write -EXPORT_SYMBOL vmlinux 0x00000000 key_alloc -EXPORT_SYMBOL vmlinux 0x00000000 key_create_or_update -EXPORT_SYMBOL vmlinux 0x00000000 key_instantiate_and_link -EXPORT_SYMBOL vmlinux 0x00000000 key_invalidate -EXPORT_SYMBOL vmlinux 0x00000000 key_link -EXPORT_SYMBOL vmlinux 0x00000000 key_payload_reserve -EXPORT_SYMBOL vmlinux 0x00000000 key_put -EXPORT_SYMBOL vmlinux 0x00000000 key_reject_and_link -EXPORT_SYMBOL vmlinux 0x00000000 key_revoke -EXPORT_SYMBOL vmlinux 0x00000000 key_task_permission -EXPORT_SYMBOL vmlinux 0x00000000 key_type_keyring -EXPORT_SYMBOL vmlinux 0x00000000 key_unlink -EXPORT_SYMBOL vmlinux 0x00000000 key_update -EXPORT_SYMBOL vmlinux 0x00000000 key_validate -EXPORT_SYMBOL vmlinux 0x00000000 keyring_alloc -EXPORT_SYMBOL vmlinux 0x00000000 keyring_clear -EXPORT_SYMBOL vmlinux 0x00000000 keyring_search -EXPORT_SYMBOL vmlinux 0x00000000 kfree -EXPORT_SYMBOL vmlinux 0x00000000 kfree_const -EXPORT_SYMBOL vmlinux 0x00000000 kfree_put_link -EXPORT_SYMBOL vmlinux 0x00000000 kfree_skb -EXPORT_SYMBOL vmlinux 0x00000000 kfree_skb_list -EXPORT_SYMBOL vmlinux 0x00000000 kfree_skb_partial -EXPORT_SYMBOL vmlinux 0x00000000 kill_anon_super -EXPORT_SYMBOL vmlinux 0x00000000 kill_bdev -EXPORT_SYMBOL vmlinux 0x00000000 kill_block_super -EXPORT_SYMBOL vmlinux 0x00000000 kill_fasync -EXPORT_SYMBOL vmlinux 0x00000000 kill_litter_super -EXPORT_SYMBOL vmlinux 0x00000000 kill_pgrp -EXPORT_SYMBOL vmlinux 0x00000000 kill_pid -EXPORT_SYMBOL vmlinux 0x00000000 km_is_alive -EXPORT_SYMBOL vmlinux 0x00000000 km_new_mapping -EXPORT_SYMBOL vmlinux 0x00000000 km_policy_expired -EXPORT_SYMBOL vmlinux 0x00000000 km_policy_notify -EXPORT_SYMBOL vmlinux 0x00000000 km_query -EXPORT_SYMBOL vmlinux 0x00000000 km_report -EXPORT_SYMBOL vmlinux 0x00000000 km_state_expired -EXPORT_SYMBOL vmlinux 0x00000000 km_state_notify -EXPORT_SYMBOL vmlinux 0x00000000 kmalloc_caches -EXPORT_SYMBOL vmlinux 0x00000000 kmalloc_order -EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_alloc -EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_alloc_bulk -EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_create -EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_destroy -EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_free -EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_free_bulk -EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_shrink -EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_size -EXPORT_SYMBOL vmlinux 0x00000000 kmemdup -EXPORT_SYMBOL vmlinux 0x00000000 kobject_add -EXPORT_SYMBOL vmlinux 0x00000000 kobject_del -EXPORT_SYMBOL vmlinux 0x00000000 kobject_get -EXPORT_SYMBOL vmlinux 0x00000000 kobject_get_unless_zero -EXPORT_SYMBOL vmlinux 0x00000000 kobject_init -EXPORT_SYMBOL vmlinux 0x00000000 kobject_put -EXPORT_SYMBOL vmlinux 0x00000000 kobject_set_name -EXPORT_SYMBOL vmlinux 0x00000000 krealloc -EXPORT_SYMBOL vmlinux 0x00000000 kset_register -EXPORT_SYMBOL vmlinux 0x00000000 kset_unregister -EXPORT_SYMBOL vmlinux 0x00000000 ksize -EXPORT_SYMBOL vmlinux 0x00000000 kstat -EXPORT_SYMBOL vmlinux 0x00000000 kstrdup -EXPORT_SYMBOL vmlinux 0x00000000 kstrdup_const -EXPORT_SYMBOL vmlinux 0x00000000 kstrndup -EXPORT_SYMBOL vmlinux 0x00000000 kstrtobool -EXPORT_SYMBOL vmlinux 0x00000000 kstrtobool_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kstrtoint -EXPORT_SYMBOL vmlinux 0x00000000 kstrtoint_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kstrtol_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kstrtoll -EXPORT_SYMBOL vmlinux 0x00000000 kstrtoll_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kstrtos16 -EXPORT_SYMBOL vmlinux 0x00000000 kstrtos16_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kstrtos8 -EXPORT_SYMBOL vmlinux 0x00000000 kstrtos8_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kstrtou16 -EXPORT_SYMBOL vmlinux 0x00000000 kstrtou16_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kstrtou8 -EXPORT_SYMBOL vmlinux 0x00000000 kstrtou8_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kstrtouint -EXPORT_SYMBOL vmlinux 0x00000000 kstrtouint_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kstrtoul_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kstrtoull -EXPORT_SYMBOL vmlinux 0x00000000 kstrtoull_from_user -EXPORT_SYMBOL vmlinux 0x00000000 kthread_bind -EXPORT_SYMBOL vmlinux 0x00000000 kthread_create_on_node -EXPORT_SYMBOL vmlinux 0x00000000 kthread_should_stop -EXPORT_SYMBOL vmlinux 0x00000000 kthread_stop -EXPORT_SYMBOL vmlinux 0x00000000 kvasprintf -EXPORT_SYMBOL vmlinux 0x00000000 kvasprintf_const -EXPORT_SYMBOL vmlinux 0x00000000 kvfree -EXPORT_SYMBOL vmlinux 0x00000000 kzfree -EXPORT_SYMBOL vmlinux 0x00000000 laptop_mode -EXPORT_SYMBOL vmlinux 0x00000000 lease_get_mtime -EXPORT_SYMBOL vmlinux 0x00000000 lease_modify -EXPORT_SYMBOL vmlinux 0x00000000 lg_global_lock -EXPORT_SYMBOL vmlinux 0x00000000 lg_global_unlock -EXPORT_SYMBOL vmlinux 0x00000000 lg_local_lock -EXPORT_SYMBOL vmlinux 0x00000000 lg_local_lock_cpu -EXPORT_SYMBOL vmlinux 0x00000000 lg_local_unlock -EXPORT_SYMBOL vmlinux 0x00000000 lg_local_unlock_cpu -EXPORT_SYMBOL vmlinux 0x00000000 lg_lock_init -EXPORT_SYMBOL vmlinux 0x00000000 linkwatch_fire_event -EXPORT_SYMBOL vmlinux 0x00000000 list_sort -EXPORT_SYMBOL vmlinux 0x00000000 ll_rw_block -EXPORT_SYMBOL vmlinux 0x00000000 load_nls -EXPORT_SYMBOL vmlinux 0x00000000 load_nls_default -EXPORT_SYMBOL vmlinux 0x00000000 lock_rename -EXPORT_SYMBOL vmlinux 0x00000000 lock_sock_fast -EXPORT_SYMBOL vmlinux 0x00000000 lock_sock_nested -EXPORT_SYMBOL vmlinux 0x00000000 lock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x00000000 lockref_get -EXPORT_SYMBOL vmlinux 0x00000000 lockref_get_not_dead -EXPORT_SYMBOL vmlinux 0x00000000 lockref_get_not_zero -EXPORT_SYMBOL vmlinux 0x00000000 lockref_get_or_lock -EXPORT_SYMBOL vmlinux 0x00000000 lockref_mark_dead -EXPORT_SYMBOL vmlinux 0x00000000 lockref_put_or_lock -EXPORT_SYMBOL vmlinux 0x00000000 lockref_put_return -EXPORT_SYMBOL vmlinux 0x00000000 locks_copy_conflock -EXPORT_SYMBOL vmlinux 0x00000000 locks_copy_lock -EXPORT_SYMBOL vmlinux 0x00000000 locks_free_lock -EXPORT_SYMBOL vmlinux 0x00000000 locks_init_lock -EXPORT_SYMBOL vmlinux 0x00000000 locks_lock_inode_wait -EXPORT_SYMBOL vmlinux 0x00000000 locks_mandatory_area -EXPORT_SYMBOL vmlinux 0x00000000 locks_remove_posix -EXPORT_SYMBOL vmlinux 0x00000000 lookup_bdev -EXPORT_SYMBOL vmlinux 0x00000000 lookup_one_len -EXPORT_SYMBOL vmlinux 0x00000000 loops_per_jiffy -EXPORT_SYMBOL vmlinux 0x00000000 lru_cache_add_file -EXPORT_SYMBOL vmlinux 0x00000000 mac_pton -EXPORT_SYMBOL vmlinux 0x00000000 make_bad_inode -EXPORT_SYMBOL vmlinux 0x00000000 make_flow_keys_digest -EXPORT_SYMBOL vmlinux 0x00000000 mangle_path -EXPORT_SYMBOL vmlinux 0x00000000 mapping_tagged -EXPORT_SYMBOL vmlinux 0x00000000 mark_buffer_async_write -EXPORT_SYMBOL vmlinux 0x00000000 mark_buffer_dirty -EXPORT_SYMBOL vmlinux 0x00000000 mark_buffer_dirty_inode -EXPORT_SYMBOL vmlinux 0x00000000 mark_info_dirty -EXPORT_SYMBOL vmlinux 0x00000000 mark_page_accessed -EXPORT_SYMBOL vmlinux 0x00000000 match_hex -EXPORT_SYMBOL vmlinux 0x00000000 match_int -EXPORT_SYMBOL vmlinux 0x00000000 match_octal -EXPORT_SYMBOL vmlinux 0x00000000 match_strdup -EXPORT_SYMBOL vmlinux 0x00000000 match_strlcpy -EXPORT_SYMBOL vmlinux 0x00000000 match_token -EXPORT_SYMBOL vmlinux 0x00000000 match_wildcard -EXPORT_SYMBOL vmlinux 0x00000000 max_mapnr -EXPORT_SYMBOL vmlinux 0x00000000 may_umount -EXPORT_SYMBOL vmlinux 0x00000000 may_umount_tree -EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_create -EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_destroy -EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_alloc -EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_find_first -EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_find_next -EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_free -EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_get -EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_insert -EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_release -EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_shrink -EXPORT_SYMBOL vmlinux 0x00000000 md5_transform -EXPORT_SYMBOL vmlinux 0x00000000 mem_map -EXPORT_SYMBOL vmlinux 0x00000000 mem_section -EXPORT_SYMBOL vmlinux 0x00000000 memchr -EXPORT_SYMBOL vmlinux 0x00000000 memchr_inv -EXPORT_SYMBOL vmlinux 0x00000000 memcmp -EXPORT_SYMBOL vmlinux 0x00000000 memcpy -EXPORT_SYMBOL vmlinux 0x00000000 memdup_user -EXPORT_SYMBOL vmlinux 0x00000000 memmove -EXPORT_SYMBOL vmlinux 0x00000000 memory_read_from_buffer -EXPORT_SYMBOL vmlinux 0x00000000 memparse -EXPORT_SYMBOL vmlinux 0x00000000 mempool_alloc -EXPORT_SYMBOL vmlinux 0x00000000 mempool_alloc_pages -EXPORT_SYMBOL vmlinux 0x00000000 mempool_alloc_slab -EXPORT_SYMBOL vmlinux 0x00000000 mempool_create -EXPORT_SYMBOL vmlinux 0x00000000 mempool_create_node -EXPORT_SYMBOL vmlinux 0x00000000 mempool_destroy -EXPORT_SYMBOL vmlinux 0x00000000 mempool_free -EXPORT_SYMBOL vmlinux 0x00000000 mempool_free_pages -EXPORT_SYMBOL vmlinux 0x00000000 mempool_free_slab -EXPORT_SYMBOL vmlinux 0x00000000 mempool_kfree -EXPORT_SYMBOL vmlinux 0x00000000 mempool_kmalloc -EXPORT_SYMBOL vmlinux 0x00000000 mempool_resize -EXPORT_SYMBOL vmlinux 0x00000000 memremap -EXPORT_SYMBOL vmlinux 0x00000000 memscan -EXPORT_SYMBOL vmlinux 0x00000000 memset -EXPORT_SYMBOL vmlinux 0x00000000 memunmap -EXPORT_SYMBOL vmlinux 0x00000000 memweight -EXPORT_SYMBOL vmlinux 0x00000000 memzero_explicit -EXPORT_SYMBOL vmlinux 0x00000000 misc_deregister -EXPORT_SYMBOL vmlinux 0x00000000 misc_register -EXPORT_SYMBOL vmlinux 0x00000000 mktime64 -EXPORT_SYMBOL vmlinux 0x00000000 mnt_drop_write_file -EXPORT_SYMBOL vmlinux 0x00000000 mnt_set_expiry -EXPORT_SYMBOL vmlinux 0x00000000 mntget -EXPORT_SYMBOL vmlinux 0x00000000 mntput -EXPORT_SYMBOL vmlinux 0x00000000 mod_timer -EXPORT_SYMBOL vmlinux 0x00000000 mod_timer_pending -EXPORT_SYMBOL vmlinux 0x00000000 mod_timer_pinned -EXPORT_SYMBOL vmlinux 0x00000000 mod_zone_page_state -EXPORT_SYMBOL vmlinux 0x00000000 mount_bdev -EXPORT_SYMBOL vmlinux 0x00000000 mount_nodev -EXPORT_SYMBOL vmlinux 0x00000000 mount_ns -EXPORT_SYMBOL vmlinux 0x00000000 mount_pseudo -EXPORT_SYMBOL vmlinux 0x00000000 mount_single -EXPORT_SYMBOL vmlinux 0x00000000 mount_subtree -EXPORT_SYMBOL vmlinux 0x00000000 movable_zone -EXPORT_SYMBOL vmlinux 0x00000000 mpage_readpage -EXPORT_SYMBOL vmlinux 0x00000000 mpage_readpages -EXPORT_SYMBOL vmlinux 0x00000000 mpage_writepage -EXPORT_SYMBOL vmlinux 0x00000000 mpage_writepages -EXPORT_SYMBOL vmlinux 0x00000000 msi_desc_to_pci_dev -EXPORT_SYMBOL vmlinux 0x00000000 msleep -EXPORT_SYMBOL vmlinux 0x00000000 msleep_interruptible -EXPORT_SYMBOL vmlinux 0x00000000 msrs_alloc -EXPORT_SYMBOL vmlinux 0x00000000 msrs_free -EXPORT_SYMBOL vmlinux 0x00000000 mutex_lock -EXPORT_SYMBOL vmlinux 0x00000000 mutex_lock_interruptible -EXPORT_SYMBOL vmlinux 0x00000000 mutex_lock_killable -EXPORT_SYMBOL vmlinux 0x00000000 mutex_trylock -EXPORT_SYMBOL vmlinux 0x00000000 mutex_unlock -EXPORT_SYMBOL vmlinux 0x00000000 n_tty_ioctl_helper -EXPORT_SYMBOL vmlinux 0x00000000 names_cachep -EXPORT_SYMBOL vmlinux 0x00000000 napi_alloc_frag -EXPORT_SYMBOL vmlinux 0x00000000 napi_complete_done -EXPORT_SYMBOL vmlinux 0x00000000 napi_consume_skb -EXPORT_SYMBOL vmlinux 0x00000000 napi_disable -EXPORT_SYMBOL vmlinux 0x00000000 napi_get_frags -EXPORT_SYMBOL vmlinux 0x00000000 napi_gro_flush -EXPORT_SYMBOL vmlinux 0x00000000 napi_gro_frags -EXPORT_SYMBOL vmlinux 0x00000000 napi_gro_receive -EXPORT_SYMBOL vmlinux 0x00000000 native_io_delay -EXPORT_SYMBOL vmlinux 0x00000000 native_queued_spin_lock_slowpath -EXPORT_SYMBOL vmlinux 0x00000000 ndisc_mc_map -EXPORT_SYMBOL vmlinux 0x00000000 ndo_dflt_fdb_add -EXPORT_SYMBOL vmlinux 0x00000000 ndo_dflt_fdb_del -EXPORT_SYMBOL vmlinux 0x00000000 ndo_dflt_fdb_dump -EXPORT_SYMBOL vmlinux 0x00000000 neigh_app_ns -EXPORT_SYMBOL vmlinux 0x00000000 neigh_changeaddr -EXPORT_SYMBOL vmlinux 0x00000000 neigh_connected_output -EXPORT_SYMBOL vmlinux 0x00000000 neigh_destroy -EXPORT_SYMBOL vmlinux 0x00000000 neigh_direct_output -EXPORT_SYMBOL vmlinux 0x00000000 neigh_event_ns -EXPORT_SYMBOL vmlinux 0x00000000 neigh_for_each -EXPORT_SYMBOL vmlinux 0x00000000 neigh_ifdown -EXPORT_SYMBOL vmlinux 0x00000000 neigh_lookup -EXPORT_SYMBOL vmlinux 0x00000000 neigh_lookup_nodev -EXPORT_SYMBOL vmlinux 0x00000000 neigh_parms_alloc -EXPORT_SYMBOL vmlinux 0x00000000 neigh_parms_release -EXPORT_SYMBOL vmlinux 0x00000000 neigh_proc_dointvec -EXPORT_SYMBOL vmlinux 0x00000000 neigh_proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x00000000 neigh_proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x00000000 neigh_rand_reach_time -EXPORT_SYMBOL vmlinux 0x00000000 neigh_resolve_output -EXPORT_SYMBOL vmlinux 0x00000000 neigh_seq_next -EXPORT_SYMBOL vmlinux 0x00000000 neigh_seq_start -EXPORT_SYMBOL vmlinux 0x00000000 neigh_seq_stop -EXPORT_SYMBOL vmlinux 0x00000000 neigh_sysctl_register -EXPORT_SYMBOL vmlinux 0x00000000 neigh_sysctl_unregister -EXPORT_SYMBOL vmlinux 0x00000000 neigh_table_clear -EXPORT_SYMBOL vmlinux 0x00000000 neigh_table_init -EXPORT_SYMBOL vmlinux 0x00000000 neigh_update -EXPORT_SYMBOL vmlinux 0x00000000 neigh_xmit -EXPORT_SYMBOL vmlinux 0x00000000 net_disable_timestamp -EXPORT_SYMBOL vmlinux 0x00000000 net_enable_timestamp -EXPORT_SYMBOL vmlinux 0x00000000 net_ratelimit -EXPORT_SYMBOL vmlinux 0x00000000 netdev_adjacent_get_private -EXPORT_SYMBOL vmlinux 0x00000000 netdev_alert -EXPORT_SYMBOL vmlinux 0x00000000 netdev_all_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x00000000 netdev_alloc_frag -EXPORT_SYMBOL vmlinux 0x00000000 netdev_bonding_info_change -EXPORT_SYMBOL vmlinux 0x00000000 netdev_boot_setup_check -EXPORT_SYMBOL vmlinux 0x00000000 netdev_change_features -EXPORT_SYMBOL vmlinux 0x00000000 netdev_class_create_file_ns -EXPORT_SYMBOL vmlinux 0x00000000 netdev_class_remove_file_ns -EXPORT_SYMBOL vmlinux 0x00000000 netdev_crit -EXPORT_SYMBOL vmlinux 0x00000000 netdev_emerg -EXPORT_SYMBOL vmlinux 0x00000000 netdev_err -EXPORT_SYMBOL vmlinux 0x00000000 netdev_features_change -EXPORT_SYMBOL vmlinux 0x00000000 netdev_has_upper_dev -EXPORT_SYMBOL vmlinux 0x00000000 netdev_increment_features -EXPORT_SYMBOL vmlinux 0x00000000 netdev_info -EXPORT_SYMBOL vmlinux 0x00000000 netdev_lower_dev_get_private -EXPORT_SYMBOL vmlinux 0x00000000 netdev_lower_get_first_private_rcu -EXPORT_SYMBOL vmlinux 0x00000000 netdev_lower_get_next -EXPORT_SYMBOL vmlinux 0x00000000 netdev_lower_get_next_private -EXPORT_SYMBOL vmlinux 0x00000000 netdev_lower_get_next_private_rcu -EXPORT_SYMBOL vmlinux 0x00000000 netdev_master_upper_dev_get -EXPORT_SYMBOL vmlinux 0x00000000 netdev_master_upper_dev_get_rcu -EXPORT_SYMBOL vmlinux 0x00000000 netdev_master_upper_dev_link -EXPORT_SYMBOL vmlinux 0x00000000 netdev_master_upper_dev_link_private -EXPORT_SYMBOL vmlinux 0x00000000 netdev_max_backlog -EXPORT_SYMBOL vmlinux 0x00000000 netdev_notice -EXPORT_SYMBOL vmlinux 0x00000000 netdev_notify_peers -EXPORT_SYMBOL vmlinux 0x00000000 netdev_printk -EXPORT_SYMBOL vmlinux 0x00000000 netdev_refcnt_read -EXPORT_SYMBOL vmlinux 0x00000000 netdev_rss_key_fill -EXPORT_SYMBOL vmlinux 0x00000000 netdev_state_change -EXPORT_SYMBOL vmlinux 0x00000000 netdev_stats_to_stats64 -EXPORT_SYMBOL vmlinux 0x00000000 netdev_update_features -EXPORT_SYMBOL vmlinux 0x00000000 netdev_upper_dev_link -EXPORT_SYMBOL vmlinux 0x00000000 netdev_upper_dev_unlink -EXPORT_SYMBOL vmlinux 0x00000000 netdev_upper_get_next_dev_rcu -EXPORT_SYMBOL vmlinux 0x00000000 netdev_warn -EXPORT_SYMBOL vmlinux 0x00000000 netif_carrier_off -EXPORT_SYMBOL vmlinux 0x00000000 netif_carrier_on -EXPORT_SYMBOL vmlinux 0x00000000 netif_device_attach -EXPORT_SYMBOL vmlinux 0x00000000 netif_device_detach -EXPORT_SYMBOL vmlinux 0x00000000 netif_get_num_default_rss_queues -EXPORT_SYMBOL vmlinux 0x00000000 netif_napi_add -EXPORT_SYMBOL vmlinux 0x00000000 netif_napi_del -EXPORT_SYMBOL vmlinux 0x00000000 netif_receive_skb -EXPORT_SYMBOL vmlinux 0x00000000 netif_rx -EXPORT_SYMBOL vmlinux 0x00000000 netif_rx_ni -EXPORT_SYMBOL vmlinux 0x00000000 netif_schedule_queue -EXPORT_SYMBOL vmlinux 0x00000000 netif_set_real_num_rx_queues -EXPORT_SYMBOL vmlinux 0x00000000 netif_set_real_num_tx_queues -EXPORT_SYMBOL vmlinux 0x00000000 netif_set_xps_queue -EXPORT_SYMBOL vmlinux 0x00000000 netif_skb_features -EXPORT_SYMBOL vmlinux 0x00000000 netif_stacked_transfer_operstate -EXPORT_SYMBOL vmlinux 0x00000000 netif_tx_stop_all_queues -EXPORT_SYMBOL vmlinux 0x00000000 netif_tx_wake_queue -EXPORT_SYMBOL vmlinux 0x00000000 netif_wake_subqueue -EXPORT_SYMBOL vmlinux 0x00000000 netlink_ack -EXPORT_SYMBOL vmlinux 0x00000000 netlink_broadcast -EXPORT_SYMBOL vmlinux 0x00000000 netlink_broadcast_filtered -EXPORT_SYMBOL vmlinux 0x00000000 netlink_capable -EXPORT_SYMBOL vmlinux 0x00000000 netlink_kernel_release -EXPORT_SYMBOL vmlinux 0x00000000 netlink_net_capable -EXPORT_SYMBOL vmlinux 0x00000000 netlink_ns_capable -EXPORT_SYMBOL vmlinux 0x00000000 netlink_rcv_skb -EXPORT_SYMBOL vmlinux 0x00000000 netlink_register_notifier -EXPORT_SYMBOL vmlinux 0x00000000 netlink_set_err -EXPORT_SYMBOL vmlinux 0x00000000 netlink_unicast -EXPORT_SYMBOL vmlinux 0x00000000 netlink_unregister_notifier -EXPORT_SYMBOL vmlinux 0x00000000 new_inode -EXPORT_SYMBOL vmlinux 0x00000000 nla_append -EXPORT_SYMBOL vmlinux 0x00000000 nla_find -EXPORT_SYMBOL vmlinux 0x00000000 nla_memcmp -EXPORT_SYMBOL vmlinux 0x00000000 nla_memcpy -EXPORT_SYMBOL vmlinux 0x00000000 nla_parse -EXPORT_SYMBOL vmlinux 0x00000000 nla_policy_len -EXPORT_SYMBOL vmlinux 0x00000000 nla_put -EXPORT_SYMBOL vmlinux 0x00000000 nla_put_nohdr -EXPORT_SYMBOL vmlinux 0x00000000 nla_reserve -EXPORT_SYMBOL vmlinux 0x00000000 nla_reserve_nohdr -EXPORT_SYMBOL vmlinux 0x00000000 nla_strcmp -EXPORT_SYMBOL vmlinux 0x00000000 nla_strlcpy -EXPORT_SYMBOL vmlinux 0x00000000 nla_validate -EXPORT_SYMBOL vmlinux 0x00000000 nlmsg_notify -EXPORT_SYMBOL vmlinux 0x00000000 no_llseek -EXPORT_SYMBOL vmlinux 0x00000000 no_pci_devices -EXPORT_SYMBOL vmlinux 0x00000000 nobh_truncate_page -EXPORT_SYMBOL vmlinux 0x00000000 nobh_write_begin -EXPORT_SYMBOL vmlinux 0x00000000 nobh_write_end -EXPORT_SYMBOL vmlinux 0x00000000 nobh_writepage -EXPORT_SYMBOL vmlinux 0x00000000 node_states -EXPORT_SYMBOL vmlinux 0x00000000 nonseekable_open -EXPORT_SYMBOL vmlinux 0x00000000 noop_fsync -EXPORT_SYMBOL vmlinux 0x00000000 noop_llseek -EXPORT_SYMBOL vmlinux 0x00000000 noop_qdisc -EXPORT_SYMBOL vmlinux 0x00000000 nosteal_pipe_buf_ops -EXPORT_SYMBOL vmlinux 0x00000000 notify_change -EXPORT_SYMBOL vmlinux 0x00000000 nr_cpu_ids -EXPORT_SYMBOL vmlinux 0x00000000 ns_capable -EXPORT_SYMBOL vmlinux 0x00000000 ns_capable_noaudit -EXPORT_SYMBOL vmlinux 0x00000000 ns_to_timespec -EXPORT_SYMBOL vmlinux 0x00000000 ns_to_timeval -EXPORT_SYMBOL vmlinux 0x00000000 nsecs_to_jiffies64 -EXPORT_SYMBOL vmlinux 0x00000000 on_each_cpu -EXPORT_SYMBOL vmlinux 0x00000000 on_each_cpu_cond -EXPORT_SYMBOL vmlinux 0x00000000 on_each_cpu_mask -EXPORT_SYMBOL vmlinux 0x00000000 oops_in_progress -EXPORT_SYMBOL vmlinux 0x00000000 open_check_o_direct -EXPORT_SYMBOL vmlinux 0x00000000 open_exec -EXPORT_SYMBOL vmlinux 0x00000000 out_of_line_wait_on_atomic_t -EXPORT_SYMBOL vmlinux 0x00000000 out_of_line_wait_on_bit -EXPORT_SYMBOL vmlinux 0x00000000 out_of_line_wait_on_bit_lock -EXPORT_SYMBOL vmlinux 0x00000000 overflowgid -EXPORT_SYMBOL vmlinux 0x00000000 overflowuid -EXPORT_SYMBOL vmlinux 0x00000000 override_creds -EXPORT_SYMBOL vmlinux 0x00000000 page_cache_next_hole -EXPORT_SYMBOL vmlinux 0x00000000 page_cache_prev_hole -EXPORT_SYMBOL vmlinux 0x00000000 page_follow_link_light -EXPORT_SYMBOL vmlinux 0x00000000 page_put_link -EXPORT_SYMBOL vmlinux 0x00000000 page_readlink -EXPORT_SYMBOL vmlinux 0x00000000 page_symlink -EXPORT_SYMBOL vmlinux 0x00000000 page_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x00000000 page_waitqueue -EXPORT_SYMBOL vmlinux 0x00000000 page_zero_new_buffers -EXPORT_SYMBOL vmlinux 0x00000000 pagecache_get_page -EXPORT_SYMBOL vmlinux 0x00000000 pagecache_isize_extended -EXPORT_SYMBOL vmlinux 0x00000000 pagecache_write_begin -EXPORT_SYMBOL vmlinux 0x00000000 pagecache_write_end -EXPORT_SYMBOL vmlinux 0x00000000 pagevec_lookup -EXPORT_SYMBOL vmlinux 0x00000000 pagevec_lookup_tag -EXPORT_SYMBOL vmlinux 0x00000000 panic -EXPORT_SYMBOL vmlinux 0x00000000 panic_blink -EXPORT_SYMBOL vmlinux 0x00000000 panic_notifier_list -EXPORT_SYMBOL vmlinux 0x00000000 param_array_ops -EXPORT_SYMBOL vmlinux 0x00000000 param_free_charp -EXPORT_SYMBOL vmlinux 0x00000000 param_get_bool -EXPORT_SYMBOL vmlinux 0x00000000 param_get_byte -EXPORT_SYMBOL vmlinux 0x00000000 param_get_charp -EXPORT_SYMBOL vmlinux 0x00000000 param_get_int -EXPORT_SYMBOL vmlinux 0x00000000 param_get_invbool -EXPORT_SYMBOL vmlinux 0x00000000 param_get_long -EXPORT_SYMBOL vmlinux 0x00000000 param_get_short -EXPORT_SYMBOL vmlinux 0x00000000 param_get_string -EXPORT_SYMBOL vmlinux 0x00000000 param_get_uint -EXPORT_SYMBOL vmlinux 0x00000000 param_get_ullong -EXPORT_SYMBOL vmlinux 0x00000000 param_get_ulong -EXPORT_SYMBOL vmlinux 0x00000000 param_get_ushort -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_bint -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_bool -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_byte -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_charp -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_int -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_invbool -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_long -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_short -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_string -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_uint -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_ullong -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_ulong -EXPORT_SYMBOL vmlinux 0x00000000 param_ops_ushort -EXPORT_SYMBOL vmlinux 0x00000000 param_set_bint -EXPORT_SYMBOL vmlinux 0x00000000 param_set_bool -EXPORT_SYMBOL vmlinux 0x00000000 param_set_byte -EXPORT_SYMBOL vmlinux 0x00000000 param_set_charp -EXPORT_SYMBOL vmlinux 0x00000000 param_set_copystring -EXPORT_SYMBOL vmlinux 0x00000000 param_set_int -EXPORT_SYMBOL vmlinux 0x00000000 param_set_invbool -EXPORT_SYMBOL vmlinux 0x00000000 param_set_long -EXPORT_SYMBOL vmlinux 0x00000000 param_set_short -EXPORT_SYMBOL vmlinux 0x00000000 param_set_uint -EXPORT_SYMBOL vmlinux 0x00000000 param_set_ullong -EXPORT_SYMBOL vmlinux 0x00000000 param_set_ulong -EXPORT_SYMBOL vmlinux 0x00000000 param_set_ushort -EXPORT_SYMBOL vmlinux 0x00000000 paravirt_ticketlocks_enabled -EXPORT_SYMBOL vmlinux 0x00000000 passthru_features_check -EXPORT_SYMBOL vmlinux 0x00000000 path_get -EXPORT_SYMBOL vmlinux 0x00000000 path_is_under -EXPORT_SYMBOL vmlinux 0x00000000 path_noexec -EXPORT_SYMBOL vmlinux 0x00000000 path_nosuid -EXPORT_SYMBOL vmlinux 0x00000000 path_put -EXPORT_SYMBOL vmlinux 0x00000000 pci_add_new_bus -EXPORT_SYMBOL vmlinux 0x00000000 pci_add_resource -EXPORT_SYMBOL vmlinux 0x00000000 pci_add_resource_offset -EXPORT_SYMBOL vmlinux 0x00000000 pci_alloc_dev -EXPORT_SYMBOL vmlinux 0x00000000 pci_assign_resource -EXPORT_SYMBOL vmlinux 0x00000000 pci_back_from_sleep -EXPORT_SYMBOL vmlinux 0x00000000 pci_biosrom_size -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_add_devices -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_alloc_resource -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_assign_resources -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_find_capability -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_get -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_put -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_read_config_byte -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_read_config_dword -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_read_config_word -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_read_dev_vendor_id -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_set_ops -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_size_bridges -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_type -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_write_config_byte -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_write_config_dword -EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_write_config_word -EXPORT_SYMBOL vmlinux 0x00000000 pci_choose_state -EXPORT_SYMBOL vmlinux 0x00000000 pci_claim_resource -EXPORT_SYMBOL vmlinux 0x00000000 pci_clear_master -EXPORT_SYMBOL vmlinux 0x00000000 pci_clear_mwi -EXPORT_SYMBOL vmlinux 0x00000000 pci_dev_driver -EXPORT_SYMBOL vmlinux 0x00000000 pci_dev_get -EXPORT_SYMBOL vmlinux 0x00000000 pci_dev_present -EXPORT_SYMBOL vmlinux 0x00000000 pci_dev_put -EXPORT_SYMBOL vmlinux 0x00000000 pci_disable_device -EXPORT_SYMBOL vmlinux 0x00000000 pci_disable_msi -EXPORT_SYMBOL vmlinux 0x00000000 pci_disable_msix -EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_device -EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_device_io -EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_device_mem -EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_msi_range -EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_msix -EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_msix_range -EXPORT_SYMBOL vmlinux 0x00000000 pci_find_bus -EXPORT_SYMBOL vmlinux 0x00000000 pci_find_capability -EXPORT_SYMBOL vmlinux 0x00000000 pci_find_next_bus -EXPORT_SYMBOL vmlinux 0x00000000 pci_find_parent_resource -EXPORT_SYMBOL vmlinux 0x00000000 pci_find_pcie_root_port -EXPORT_SYMBOL vmlinux 0x00000000 pci_fixup_cardbus -EXPORT_SYMBOL vmlinux 0x00000000 pci_free_resource_list -EXPORT_SYMBOL vmlinux 0x00000000 pci_get_class -EXPORT_SYMBOL vmlinux 0x00000000 pci_get_device -EXPORT_SYMBOL vmlinux 0x00000000 pci_get_domain_bus_and_slot -EXPORT_SYMBOL vmlinux 0x00000000 pci_get_slot -EXPORT_SYMBOL vmlinux 0x00000000 pci_get_subsys -EXPORT_SYMBOL vmlinux 0x00000000 pci_iomap -EXPORT_SYMBOL vmlinux 0x00000000 pci_iomap_range -EXPORT_SYMBOL vmlinux 0x00000000 pci_iounmap -EXPORT_SYMBOL vmlinux 0x00000000 pci_lost_interrupt -EXPORT_SYMBOL vmlinux 0x00000000 pci_map_biosrom -EXPORT_SYMBOL vmlinux 0x00000000 pci_map_rom -EXPORT_SYMBOL vmlinux 0x00000000 pci_match_id -EXPORT_SYMBOL vmlinux 0x00000000 pci_mem_start -EXPORT_SYMBOL vmlinux 0x00000000 pci_msi_enabled -EXPORT_SYMBOL vmlinux 0x00000000 pci_msi_vec_count -EXPORT_SYMBOL vmlinux 0x00000000 pci_msix_vec_count -EXPORT_SYMBOL vmlinux 0x00000000 pci_pci_problems -EXPORT_SYMBOL vmlinux 0x00000000 pci_platform_rom -EXPORT_SYMBOL vmlinux 0x00000000 pci_pme_active -EXPORT_SYMBOL vmlinux 0x00000000 pci_pme_capable -EXPORT_SYMBOL vmlinux 0x00000000 pci_prepare_to_sleep -EXPORT_SYMBOL vmlinux 0x00000000 pci_read_vpd -EXPORT_SYMBOL vmlinux 0x00000000 pci_reenable_device -EXPORT_SYMBOL vmlinux 0x00000000 pci_release_region -EXPORT_SYMBOL vmlinux 0x00000000 pci_release_regions -EXPORT_SYMBOL vmlinux 0x00000000 pci_release_selected_regions -EXPORT_SYMBOL vmlinux 0x00000000 pci_remove_bus -EXPORT_SYMBOL vmlinux 0x00000000 pci_request_region -EXPORT_SYMBOL vmlinux 0x00000000 pci_request_region_exclusive -EXPORT_SYMBOL vmlinux 0x00000000 pci_request_regions -EXPORT_SYMBOL vmlinux 0x00000000 pci_request_regions_exclusive -EXPORT_SYMBOL vmlinux 0x00000000 pci_request_selected_regions -EXPORT_SYMBOL vmlinux 0x00000000 pci_request_selected_regions_exclusive -EXPORT_SYMBOL vmlinux 0x00000000 pci_restore_state -EXPORT_SYMBOL vmlinux 0x00000000 pci_root_buses -EXPORT_SYMBOL vmlinux 0x00000000 pci_save_state -EXPORT_SYMBOL vmlinux 0x00000000 pci_scan_bridge -EXPORT_SYMBOL vmlinux 0x00000000 pci_scan_bus -EXPORT_SYMBOL vmlinux 0x00000000 pci_scan_root_bus -EXPORT_SYMBOL vmlinux 0x00000000 pci_scan_single_device -EXPORT_SYMBOL vmlinux 0x00000000 pci_scan_slot -EXPORT_SYMBOL vmlinux 0x00000000 pci_select_bars -EXPORT_SYMBOL vmlinux 0x00000000 pci_set_dma_max_seg_size -EXPORT_SYMBOL vmlinux 0x00000000 pci_set_dma_seg_boundary -EXPORT_SYMBOL vmlinux 0x00000000 pci_set_master -EXPORT_SYMBOL vmlinux 0x00000000 pci_set_mwi -EXPORT_SYMBOL vmlinux 0x00000000 pci_set_power_state -EXPORT_SYMBOL vmlinux 0x00000000 pci_setup_cardbus -EXPORT_SYMBOL vmlinux 0x00000000 pci_stop_and_remove_bus_device -EXPORT_SYMBOL vmlinux 0x00000000 pci_try_set_mwi -EXPORT_SYMBOL vmlinux 0x00000000 pci_unmap_biosrom -EXPORT_SYMBOL vmlinux 0x00000000 pci_unmap_rom -EXPORT_SYMBOL vmlinux 0x00000000 pci_unregister_driver -EXPORT_SYMBOL vmlinux 0x00000000 pci_wait_for_pending_transaction -EXPORT_SYMBOL vmlinux 0x00000000 pci_wake_from_d3 -EXPORT_SYMBOL vmlinux 0x00000000 pci_write_vpd -EXPORT_SYMBOL vmlinux 0x00000000 pcibios_align_resource -EXPORT_SYMBOL vmlinux 0x00000000 pcibios_bus_to_resource -EXPORT_SYMBOL vmlinux 0x00000000 pcibios_resource_to_bus -EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_clear_and_set_dword -EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_clear_and_set_word -EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_read_dword -EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_read_word -EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_write_dword -EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_write_word -EXPORT_SYMBOL vmlinux 0x00000000 pcie_get_minimum_link -EXPORT_SYMBOL vmlinux 0x00000000 pcie_get_mps -EXPORT_SYMBOL vmlinux 0x00000000 pcie_get_readrq -EXPORT_SYMBOL vmlinux 0x00000000 pcie_set_mps -EXPORT_SYMBOL vmlinux 0x00000000 pcie_set_readrq -EXPORT_SYMBOL vmlinux 0x00000000 pcim_enable_device -EXPORT_SYMBOL vmlinux 0x00000000 pcim_iomap -EXPORT_SYMBOL vmlinux 0x00000000 pcim_iomap_regions -EXPORT_SYMBOL vmlinux 0x00000000 pcim_iomap_regions_request_all -EXPORT_SYMBOL vmlinux 0x00000000 pcim_iomap_table -EXPORT_SYMBOL vmlinux 0x00000000 pcim_iounmap -EXPORT_SYMBOL vmlinux 0x00000000 pcim_iounmap_regions -EXPORT_SYMBOL vmlinux 0x00000000 pcim_pin_device -EXPORT_SYMBOL vmlinux 0x00000000 pcix_get_max_mmrbc -EXPORT_SYMBOL vmlinux 0x00000000 pcix_get_mmrbc -EXPORT_SYMBOL vmlinux 0x00000000 pcix_set_mmrbc -EXPORT_SYMBOL vmlinux 0x00000000 peernet2id_alloc -EXPORT_SYMBOL vmlinux 0x00000000 percpu_counter_batch -EXPORT_SYMBOL vmlinux 0x00000000 percpu_counter_destroy -EXPORT_SYMBOL vmlinux 0x00000000 percpu_counter_set -EXPORT_SYMBOL vmlinux 0x00000000 phys_base -EXPORT_SYMBOL vmlinux 0x00000000 pid_task -EXPORT_SYMBOL vmlinux 0x00000000 ping_prot -EXPORT_SYMBOL vmlinux 0x00000000 pipe_lock -EXPORT_SYMBOL vmlinux 0x00000000 pipe_unlock -EXPORT_SYMBOL vmlinux 0x00000000 pm_power_off -EXPORT_SYMBOL vmlinux 0x00000000 pneigh_enqueue -EXPORT_SYMBOL vmlinux 0x00000000 pneigh_lookup -EXPORT_SYMBOL vmlinux 0x00000000 pnp_activate_dev -EXPORT_SYMBOL vmlinux 0x00000000 pnp_device_attach -EXPORT_SYMBOL vmlinux 0x00000000 pnp_device_detach -EXPORT_SYMBOL vmlinux 0x00000000 pnp_disable_dev -EXPORT_SYMBOL vmlinux 0x00000000 pnp_get_resource -EXPORT_SYMBOL vmlinux 0x00000000 pnp_is_active -EXPORT_SYMBOL vmlinux 0x00000000 pnp_platform_devices -EXPORT_SYMBOL vmlinux 0x00000000 pnp_possible_config -EXPORT_SYMBOL vmlinux 0x00000000 pnp_range_reserved -EXPORT_SYMBOL vmlinux 0x00000000 pnp_register_card_driver -EXPORT_SYMBOL vmlinux 0x00000000 pnp_register_driver -EXPORT_SYMBOL vmlinux 0x00000000 pnp_release_card_device -EXPORT_SYMBOL vmlinux 0x00000000 pnp_request_card_device -EXPORT_SYMBOL vmlinux 0x00000000 pnp_start_dev -EXPORT_SYMBOL vmlinux 0x00000000 pnp_stop_dev -EXPORT_SYMBOL vmlinux 0x00000000 pnp_unregister_card_driver -EXPORT_SYMBOL vmlinux 0x00000000 pnp_unregister_driver -EXPORT_SYMBOL vmlinux 0x00000000 pnpacpi_protocol -EXPORT_SYMBOL vmlinux 0x00000000 poll_freewait -EXPORT_SYMBOL vmlinux 0x00000000 poll_initwait -EXPORT_SYMBOL vmlinux 0x00000000 poll_schedule_timeout -EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_alloc -EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_chmod -EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_equiv_mode -EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_fix_xattr_userns -EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_from_mode -EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_from_xattr -EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_init -EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_to_xattr -EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_update_mode -EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_valid -EXPORT_SYMBOL vmlinux 0x00000000 posix_lock_file -EXPORT_SYMBOL vmlinux 0x00000000 posix_test_lock -EXPORT_SYMBOL vmlinux 0x00000000 posix_unblock_lock -EXPORT_SYMBOL vmlinux 0x00000000 prandom_bytes -EXPORT_SYMBOL vmlinux 0x00000000 prandom_bytes_state -EXPORT_SYMBOL vmlinux 0x00000000 prandom_seed -EXPORT_SYMBOL vmlinux 0x00000000 prandom_u32 -EXPORT_SYMBOL vmlinux 0x00000000 prandom_u32_state -EXPORT_SYMBOL vmlinux 0x00000000 prepare_binprm -EXPORT_SYMBOL vmlinux 0x00000000 prepare_creds -EXPORT_SYMBOL vmlinux 0x00000000 prepare_kernel_cred -EXPORT_SYMBOL vmlinux 0x00000000 prepare_to_wait -EXPORT_SYMBOL vmlinux 0x00000000 prepare_to_wait_event -EXPORT_SYMBOL vmlinux 0x00000000 prepare_to_wait_exclusive -EXPORT_SYMBOL vmlinux 0x00000000 print_hex_dump -EXPORT_SYMBOL vmlinux 0x00000000 print_hex_dump_bytes -EXPORT_SYMBOL vmlinux 0x00000000 printk -EXPORT_SYMBOL vmlinux 0x00000000 printk_emit -EXPORT_SYMBOL vmlinux 0x00000000 printk_timed_ratelimit -EXPORT_SYMBOL vmlinux 0x00000000 probe_irq_mask -EXPORT_SYMBOL vmlinux 0x00000000 probe_irq_off -EXPORT_SYMBOL vmlinux 0x00000000 probe_irq_on -EXPORT_SYMBOL vmlinux 0x00000000 proc_create_data -EXPORT_SYMBOL vmlinux 0x00000000 proc_create_mount_point -EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec -EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_jiffies -EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_minmax -EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_ms_jiffies -EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_userhz_jiffies -EXPORT_SYMBOL vmlinux 0x00000000 proc_dostring -EXPORT_SYMBOL vmlinux 0x00000000 proc_douintvec -EXPORT_SYMBOL vmlinux 0x00000000 proc_doulongvec_minmax -EXPORT_SYMBOL vmlinux 0x00000000 proc_doulongvec_ms_jiffies_minmax -EXPORT_SYMBOL vmlinux 0x00000000 proc_mkdir -EXPORT_SYMBOL vmlinux 0x00000000 proc_mkdir_mode -EXPORT_SYMBOL vmlinux 0x00000000 proc_remove -EXPORT_SYMBOL vmlinux 0x00000000 proc_set_size -EXPORT_SYMBOL vmlinux 0x00000000 proc_set_user -EXPORT_SYMBOL vmlinux 0x00000000 proc_symlink -EXPORT_SYMBOL vmlinux 0x00000000 processors -EXPORT_SYMBOL vmlinux 0x00000000 profile_pc -EXPORT_SYMBOL vmlinux 0x00000000 proto_register -EXPORT_SYMBOL vmlinux 0x00000000 proto_unregister -EXPORT_SYMBOL vmlinux 0x00000000 psched_ratecfg_precompute -EXPORT_SYMBOL vmlinux 0x00000000 pskb_expand_head -EXPORT_SYMBOL vmlinux 0x00000000 put_cmsg -EXPORT_SYMBOL vmlinux 0x00000000 put_disk -EXPORT_SYMBOL vmlinux 0x00000000 put_filp -EXPORT_SYMBOL vmlinux 0x00000000 put_io_context -EXPORT_SYMBOL vmlinux 0x00000000 put_page -EXPORT_SYMBOL vmlinux 0x00000000 put_pages_list -EXPORT_SYMBOL vmlinux 0x00000000 put_tty_driver -EXPORT_SYMBOL vmlinux 0x00000000 put_unused_fd -EXPORT_SYMBOL vmlinux 0x00000000 pv_cpu_ops -EXPORT_SYMBOL vmlinux 0x00000000 pv_irq_ops -EXPORT_SYMBOL vmlinux 0x00000000 pv_lock_ops -EXPORT_SYMBOL vmlinux 0x00000000 pv_mmu_ops -EXPORT_SYMBOL vmlinux 0x00000000 qdisc_create_dflt -EXPORT_SYMBOL vmlinux 0x00000000 qdisc_destroy -EXPORT_SYMBOL vmlinux 0x00000000 qdisc_reset -EXPORT_SYMBOL vmlinux 0x00000000 qid_eq -EXPORT_SYMBOL vmlinux 0x00000000 qid_lt -EXPORT_SYMBOL vmlinux 0x00000000 qid_valid -EXPORT_SYMBOL vmlinux 0x00000000 queue_delayed_work_on -EXPORT_SYMBOL vmlinux 0x00000000 queue_work_on -EXPORT_SYMBOL vmlinux 0x00000000 queued_read_lock_slowpath -EXPORT_SYMBOL vmlinux 0x00000000 queued_spin_unlock_wait -EXPORT_SYMBOL vmlinux 0x00000000 queued_write_lock_slowpath -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_delete -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_delete_item -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup_slot -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup_tag -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup_tag_slot -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_insert -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_lookup -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_lookup_slot -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_maybe_preload -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_next_chunk -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_preload -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_range_tag_if_tagged -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tag_clear -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tag_get -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tag_set -EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tagged -EXPORT_SYMBOL vmlinux 0x00000000 rb_erase -EXPORT_SYMBOL vmlinux 0x00000000 rb_first -EXPORT_SYMBOL vmlinux 0x00000000 rb_first_postorder -EXPORT_SYMBOL vmlinux 0x00000000 rb_insert_color -EXPORT_SYMBOL vmlinux 0x00000000 rb_last -EXPORT_SYMBOL vmlinux 0x00000000 rb_next -EXPORT_SYMBOL vmlinux 0x00000000 rb_next_postorder -EXPORT_SYMBOL vmlinux 0x00000000 rb_prev -EXPORT_SYMBOL vmlinux 0x00000000 rb_replace_node -EXPORT_SYMBOL vmlinux 0x00000000 rdmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 rdmsr_on_cpus -EXPORT_SYMBOL vmlinux 0x00000000 rdmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 rdmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x00000000 rdmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 rdmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 rdmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 read_cache_page -EXPORT_SYMBOL vmlinux 0x00000000 read_cache_page_gfp -EXPORT_SYMBOL vmlinux 0x00000000 read_cache_pages -EXPORT_SYMBOL vmlinux 0x00000000 read_code -EXPORT_SYMBOL vmlinux 0x00000000 read_dev_sector -EXPORT_SYMBOL vmlinux 0x00000000 readlink_copy -EXPORT_SYMBOL vmlinux 0x00000000 recalc_sigpending -EXPORT_SYMBOL vmlinux 0x00000000 recalibrate_cpu_khz -EXPORT_SYMBOL vmlinux 0x00000000 reciprocal_value -EXPORT_SYMBOL vmlinux 0x00000000 redirty_page_for_writepage -EXPORT_SYMBOL vmlinux 0x00000000 register_acpi_notifier -EXPORT_SYMBOL vmlinux 0x00000000 register_blkdev -EXPORT_SYMBOL vmlinux 0x00000000 register_cdrom -EXPORT_SYMBOL vmlinux 0x00000000 register_chrdev_region -EXPORT_SYMBOL vmlinux 0x00000000 register_console -EXPORT_SYMBOL vmlinux 0x00000000 register_cpu_notifier -EXPORT_SYMBOL vmlinux 0x00000000 register_filesystem -EXPORT_SYMBOL vmlinux 0x00000000 register_gifconf -EXPORT_SYMBOL vmlinux 0x00000000 register_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x00000000 register_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0x00000000 register_key_type -EXPORT_SYMBOL vmlinux 0x00000000 register_module_notifier -EXPORT_SYMBOL vmlinux 0x00000000 register_netdev -EXPORT_SYMBOL vmlinux 0x00000000 register_netdevice -EXPORT_SYMBOL vmlinux 0x00000000 register_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x00000000 register_quota_format -EXPORT_SYMBOL vmlinux 0x00000000 register_reboot_notifier -EXPORT_SYMBOL vmlinux 0x00000000 register_restart_handler -EXPORT_SYMBOL vmlinux 0x00000000 register_shrinker -EXPORT_SYMBOL vmlinux 0x00000000 register_sysctl -EXPORT_SYMBOL vmlinux 0x00000000 register_sysctl_paths -EXPORT_SYMBOL vmlinux 0x00000000 register_sysctl_table -EXPORT_SYMBOL vmlinux 0x00000000 release_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x00000000 release_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x00000000 release_pages -EXPORT_SYMBOL vmlinux 0x00000000 release_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x00000000 release_resource -EXPORT_SYMBOL vmlinux 0x00000000 release_sock -EXPORT_SYMBOL vmlinux 0x00000000 remap_pfn_range -EXPORT_SYMBOL vmlinux 0x00000000 remap_vmalloc_range -EXPORT_SYMBOL vmlinux 0x00000000 remap_vmalloc_range_partial -EXPORT_SYMBOL vmlinux 0x00000000 remove_arg_zero -EXPORT_SYMBOL vmlinux 0x00000000 remove_proc_entry -EXPORT_SYMBOL vmlinux 0x00000000 remove_proc_subtree -EXPORT_SYMBOL vmlinux 0x00000000 remove_wait_queue -EXPORT_SYMBOL vmlinux 0x00000000 rename_lock -EXPORT_SYMBOL vmlinux 0x00000000 replace_mount_options -EXPORT_SYMBOL vmlinux 0x00000000 request_key -EXPORT_SYMBOL vmlinux 0x00000000 request_key_async -EXPORT_SYMBOL vmlinux 0x00000000 request_key_async_with_auxdata -EXPORT_SYMBOL vmlinux 0x00000000 request_key_with_auxdata -EXPORT_SYMBOL vmlinux 0x00000000 request_resource -EXPORT_SYMBOL vmlinux 0x00000000 request_threaded_irq -EXPORT_SYMBOL vmlinux 0x00000000 reserve_evntsel_nmi -EXPORT_SYMBOL vmlinux 0x00000000 reserve_perfctr_nmi -EXPORT_SYMBOL vmlinux 0x00000000 reset_devices -EXPORT_SYMBOL vmlinux 0x00000000 resource_list_create_entry -EXPORT_SYMBOL vmlinux 0x00000000 resource_list_free -EXPORT_SYMBOL vmlinux 0x00000000 revalidate_disk -EXPORT_SYMBOL vmlinux 0x00000000 revert_creds -EXPORT_SYMBOL vmlinux 0x00000000 rps_cpu_mask -EXPORT_SYMBOL vmlinux 0x00000000 rps_may_expire_flow -EXPORT_SYMBOL vmlinux 0x00000000 rps_sock_flow_table -EXPORT_SYMBOL vmlinux 0x00000000 rt6_lookup -EXPORT_SYMBOL vmlinux 0x00000000 rtc_cmos_read -EXPORT_SYMBOL vmlinux 0x00000000 rtc_cmos_write -EXPORT_SYMBOL vmlinux 0x00000000 rtc_lock -EXPORT_SYMBOL vmlinux 0x00000000 rtc_month_days -EXPORT_SYMBOL vmlinux 0x00000000 rtc_time64_to_tm -EXPORT_SYMBOL vmlinux 0x00000000 rtc_tm_to_time64 -EXPORT_SYMBOL vmlinux 0x00000000 rtc_valid_tm -EXPORT_SYMBOL vmlinux 0x00000000 rtc_year_days -EXPORT_SYMBOL vmlinux 0x00000000 rtmsg_ifinfo -EXPORT_SYMBOL vmlinux 0x00000000 rtnetlink_put_metrics -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_configure_link -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_create_link -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_is_locked -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_link_get_net -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_lock -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_nla_parse_ifla -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_notify -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_set_sk_err -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_trylock -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_unicast -EXPORT_SYMBOL vmlinux 0x00000000 rtnl_unlock -EXPORT_SYMBOL vmlinux 0x00000000 rwsem_down_read_failed -EXPORT_SYMBOL vmlinux 0x00000000 rwsem_down_write_failed -EXPORT_SYMBOL vmlinux 0x00000000 rwsem_downgrade_wake -EXPORT_SYMBOL vmlinux 0x00000000 rwsem_wake -EXPORT_SYMBOL vmlinux 0x00000000 save_mount_options -EXPORT_SYMBOL vmlinux 0x00000000 sb_min_blocksize -EXPORT_SYMBOL vmlinux 0x00000000 sb_set_blocksize -EXPORT_SYMBOL vmlinux 0x00000000 schedule -EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout -EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout_interruptible -EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout_killable -EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout_uninterruptible -EXPORT_SYMBOL vmlinux 0x00000000 scm_detach_fds -EXPORT_SYMBOL vmlinux 0x00000000 scm_fp_dup -EXPORT_SYMBOL vmlinux 0x00000000 scmd_printk -EXPORT_SYMBOL vmlinux 0x00000000 scnprintf -EXPORT_SYMBOL vmlinux 0x00000000 screen_info -EXPORT_SYMBOL vmlinux 0x00000000 scsi_add_device -EXPORT_SYMBOL vmlinux 0x00000000 scsi_add_host_with_dma -EXPORT_SYMBOL vmlinux 0x00000000 scsi_bios_ptable -EXPORT_SYMBOL vmlinux 0x00000000 scsi_block_requests -EXPORT_SYMBOL vmlinux 0x00000000 scsi_block_when_processing_errors -EXPORT_SYMBOL vmlinux 0x00000000 scsi_build_sense_buffer -EXPORT_SYMBOL vmlinux 0x00000000 scsi_change_queue_depth -EXPORT_SYMBOL vmlinux 0x00000000 scsi_cmd_blk_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 scsi_cmd_get_serial -EXPORT_SYMBOL vmlinux 0x00000000 scsi_cmd_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 scsi_command_normalize_sense -EXPORT_SYMBOL vmlinux 0x00000000 scsi_command_size_tbl -EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_add_list -EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_list_add_keyed -EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_list_del_keyed -EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_remove_list -EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_get -EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_lookup -EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_lookup_by_target -EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_put -EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_quiesce -EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_resume -EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_set_state -EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_type -EXPORT_SYMBOL vmlinux 0x00000000 scsi_dma_map -EXPORT_SYMBOL vmlinux 0x00000000 scsi_dma_unmap -EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_finish_cmd -EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_flush_done_q -EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_prep_cmnd -EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_restore_cmnd -EXPORT_SYMBOL vmlinux 0x00000000 scsi_execute -EXPORT_SYMBOL vmlinux 0x00000000 scsi_execute_req_flags -EXPORT_SYMBOL vmlinux 0x00000000 scsi_free_host_dev -EXPORT_SYMBOL vmlinux 0x00000000 scsi_get_device_flags_keyed -EXPORT_SYMBOL vmlinux 0x00000000 scsi_get_host_dev -EXPORT_SYMBOL vmlinux 0x00000000 scsi_get_sense_info_fld -EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_alloc -EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_get -EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_lookup -EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_put -EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_set_state -EXPORT_SYMBOL vmlinux 0x00000000 scsi_init_io -EXPORT_SYMBOL vmlinux 0x00000000 scsi_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 scsi_ioctl_reset -EXPORT_SYMBOL vmlinux 0x00000000 scsi_is_host_device -EXPORT_SYMBOL vmlinux 0x00000000 scsi_is_sdev_device -EXPORT_SYMBOL vmlinux 0x00000000 scsi_is_target_device -EXPORT_SYMBOL vmlinux 0x00000000 scsi_kmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x00000000 scsi_kunmap_atomic_sg -EXPORT_SYMBOL vmlinux 0x00000000 scsi_mode_sense -EXPORT_SYMBOL vmlinux 0x00000000 scsi_normalize_sense -EXPORT_SYMBOL vmlinux 0x00000000 scsi_partsize -EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_command -EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_result -EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_sense -EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_sense_hdr -EXPORT_SYMBOL vmlinux 0x00000000 scsi_register -EXPORT_SYMBOL vmlinux 0x00000000 scsi_register_driver -EXPORT_SYMBOL vmlinux 0x00000000 scsi_register_interface -EXPORT_SYMBOL vmlinux 0x00000000 scsi_remove_device -EXPORT_SYMBOL vmlinux 0x00000000 scsi_remove_host -EXPORT_SYMBOL vmlinux 0x00000000 scsi_remove_target -EXPORT_SYMBOL vmlinux 0x00000000 scsi_report_bus_reset -EXPORT_SYMBOL vmlinux 0x00000000 scsi_report_device_reset -EXPORT_SYMBOL vmlinux 0x00000000 scsi_report_opcode -EXPORT_SYMBOL vmlinux 0x00000000 scsi_rescan_device -EXPORT_SYMBOL vmlinux 0x00000000 scsi_scan_host -EXPORT_SYMBOL vmlinux 0x00000000 scsi_scan_target -EXPORT_SYMBOL vmlinux 0x00000000 scsi_sd_pm_domain -EXPORT_SYMBOL vmlinux 0x00000000 scsi_sd_probe_domain -EXPORT_SYMBOL vmlinux 0x00000000 scsi_sense_desc_find -EXPORT_SYMBOL vmlinux 0x00000000 scsi_set_medium_removal -EXPORT_SYMBOL vmlinux 0x00000000 scsi_set_sense_information -EXPORT_SYMBOL vmlinux 0x00000000 scsi_target_quiesce -EXPORT_SYMBOL vmlinux 0x00000000 scsi_target_resume -EXPORT_SYMBOL vmlinux 0x00000000 scsi_test_unit_ready -EXPORT_SYMBOL vmlinux 0x00000000 scsi_track_queue_full -EXPORT_SYMBOL vmlinux 0x00000000 scsi_unblock_requests -EXPORT_SYMBOL vmlinux 0x00000000 scsi_unregister -EXPORT_SYMBOL vmlinux 0x00000000 scsi_verify_blk_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 scsi_vpd_lun_id -EXPORT_SYMBOL vmlinux 0x00000000 scsi_vpd_tpg_id -EXPORT_SYMBOL vmlinux 0x00000000 scsicam_bios_param -EXPORT_SYMBOL vmlinux 0x00000000 scsilun_to_int -EXPORT_SYMBOL vmlinux 0x00000000 sdev_disable_disk_events -EXPORT_SYMBOL vmlinux 0x00000000 sdev_enable_disk_events -EXPORT_SYMBOL vmlinux 0x00000000 sdev_prefix_printk -EXPORT_SYMBOL vmlinux 0x00000000 search_binary_handler -EXPORT_SYMBOL vmlinux 0x00000000 secpath_dup -EXPORT_SYMBOL vmlinux 0x00000000 secure_ipv6_port_ephemeral -EXPORT_SYMBOL vmlinux 0x00000000 secure_modules -EXPORT_SYMBOL vmlinux 0x00000000 secure_tcpv6_sequence_number -EXPORT_SYMBOL vmlinux 0x00000000 send_sig -EXPORT_SYMBOL vmlinux 0x00000000 send_sig_info -EXPORT_SYMBOL vmlinux 0x00000000 seq_dentry -EXPORT_SYMBOL vmlinux 0x00000000 seq_escape -EXPORT_SYMBOL vmlinux 0x00000000 seq_file_path -EXPORT_SYMBOL vmlinux 0x00000000 seq_hex_dump -EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_next -EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_next_percpu -EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_next_rcu -EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start -EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_head -EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_head_rcu -EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_percpu -EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_rcu -EXPORT_SYMBOL vmlinux 0x00000000 seq_list_next -EXPORT_SYMBOL vmlinux 0x00000000 seq_list_start -EXPORT_SYMBOL vmlinux 0x00000000 seq_list_start_head -EXPORT_SYMBOL vmlinux 0x00000000 seq_lseek -EXPORT_SYMBOL vmlinux 0x00000000 seq_open -EXPORT_SYMBOL vmlinux 0x00000000 seq_open_private -EXPORT_SYMBOL vmlinux 0x00000000 seq_pad -EXPORT_SYMBOL vmlinux 0x00000000 seq_path -EXPORT_SYMBOL vmlinux 0x00000000 seq_printf -EXPORT_SYMBOL vmlinux 0x00000000 seq_put_decimal_ll -EXPORT_SYMBOL vmlinux 0x00000000 seq_put_decimal_ull -EXPORT_SYMBOL vmlinux 0x00000000 seq_putc -EXPORT_SYMBOL vmlinux 0x00000000 seq_puts -EXPORT_SYMBOL vmlinux 0x00000000 seq_read -EXPORT_SYMBOL vmlinux 0x00000000 seq_release -EXPORT_SYMBOL vmlinux 0x00000000 seq_release_private -EXPORT_SYMBOL vmlinux 0x00000000 seq_vprintf -EXPORT_SYMBOL vmlinux 0x00000000 seq_write -EXPORT_SYMBOL vmlinux 0x00000000 serial8250_do_pm -EXPORT_SYMBOL vmlinux 0x00000000 serial8250_do_set_termios -EXPORT_SYMBOL vmlinux 0x00000000 serial8250_register_8250_port -EXPORT_SYMBOL vmlinux 0x00000000 serial8250_resume_port -EXPORT_SYMBOL vmlinux 0x00000000 serial8250_set_isa_configurator -EXPORT_SYMBOL vmlinux 0x00000000 serial8250_suspend_port -EXPORT_SYMBOL vmlinux 0x00000000 serial8250_unregister_port -EXPORT_SYMBOL vmlinux 0x00000000 set_anon_super -EXPORT_SYMBOL vmlinux 0x00000000 set_bh_page -EXPORT_SYMBOL vmlinux 0x00000000 set_binfmt -EXPORT_SYMBOL vmlinux 0x00000000 set_blocksize -EXPORT_SYMBOL vmlinux 0x00000000 set_cached_acl -EXPORT_SYMBOL vmlinux 0x00000000 set_create_files_as -EXPORT_SYMBOL vmlinux 0x00000000 set_current_groups -EXPORT_SYMBOL vmlinux 0x00000000 set_device_ro -EXPORT_SYMBOL vmlinux 0x00000000 set_disk_ro -EXPORT_SYMBOL vmlinux 0x00000000 set_groups -EXPORT_SYMBOL vmlinux 0x00000000 set_memory_array_uc -EXPORT_SYMBOL vmlinux 0x00000000 set_memory_array_wb -EXPORT_SYMBOL vmlinux 0x00000000 set_memory_array_wc -EXPORT_SYMBOL vmlinux 0x00000000 set_memory_nx -EXPORT_SYMBOL vmlinux 0x00000000 set_memory_uc -EXPORT_SYMBOL vmlinux 0x00000000 set_memory_wb -EXPORT_SYMBOL vmlinux 0x00000000 set_memory_wc -EXPORT_SYMBOL vmlinux 0x00000000 set_memory_x -EXPORT_SYMBOL vmlinux 0x00000000 set_nlink -EXPORT_SYMBOL vmlinux 0x00000000 set_normalized_timespec -EXPORT_SYMBOL vmlinux 0x00000000 set_page_dirty -EXPORT_SYMBOL vmlinux 0x00000000 set_page_dirty_lock -EXPORT_SYMBOL vmlinux 0x00000000 set_pages_array_uc -EXPORT_SYMBOL vmlinux 0x00000000 set_pages_array_wb -EXPORT_SYMBOL vmlinux 0x00000000 set_pages_array_wc -EXPORT_SYMBOL vmlinux 0x00000000 set_pages_nx -EXPORT_SYMBOL vmlinux 0x00000000 set_pages_uc -EXPORT_SYMBOL vmlinux 0x00000000 set_pages_wb -EXPORT_SYMBOL vmlinux 0x00000000 set_pages_x -EXPORT_SYMBOL vmlinux 0x00000000 set_posix_acl -EXPORT_SYMBOL vmlinux 0x00000000 set_security_override -EXPORT_SYMBOL vmlinux 0x00000000 set_security_override_from_ctx -EXPORT_SYMBOL vmlinux 0x00000000 set_user_nice -EXPORT_SYMBOL vmlinux 0x00000000 set_wb_congested -EXPORT_SYMBOL vmlinux 0x00000000 setattr_copy -EXPORT_SYMBOL vmlinux 0x00000000 setup_arg_pages -EXPORT_SYMBOL vmlinux 0x00000000 setup_max_cpus -EXPORT_SYMBOL vmlinux 0x00000000 setup_new_exec -EXPORT_SYMBOL vmlinux 0x00000000 sg_alloc_table -EXPORT_SYMBOL vmlinux 0x00000000 sg_alloc_table_from_pages -EXPORT_SYMBOL vmlinux 0x00000000 sg_copy_buffer -EXPORT_SYMBOL vmlinux 0x00000000 sg_copy_from_buffer -EXPORT_SYMBOL vmlinux 0x00000000 sg_copy_to_buffer -EXPORT_SYMBOL vmlinux 0x00000000 sg_free_table -EXPORT_SYMBOL vmlinux 0x00000000 sg_init_one -EXPORT_SYMBOL vmlinux 0x00000000 sg_init_table -EXPORT_SYMBOL vmlinux 0x00000000 sg_last -EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_next -EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_skip -EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_start -EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_stop -EXPORT_SYMBOL vmlinux 0x00000000 sg_nents -EXPORT_SYMBOL vmlinux 0x00000000 sg_nents_for_len -EXPORT_SYMBOL vmlinux 0x00000000 sg_next -EXPORT_SYMBOL vmlinux 0x00000000 sg_pcopy_from_buffer -EXPORT_SYMBOL vmlinux 0x00000000 sg_pcopy_to_buffer -EXPORT_SYMBOL vmlinux 0x00000000 sget -EXPORT_SYMBOL vmlinux 0x00000000 sget_userns -EXPORT_SYMBOL vmlinux 0x00000000 sha_init -EXPORT_SYMBOL vmlinux 0x00000000 sha_transform -EXPORT_SYMBOL vmlinux 0x00000000 should_remove_suid -EXPORT_SYMBOL vmlinux 0x00000000 shrink_dcache_parent -EXPORT_SYMBOL vmlinux 0x00000000 shrink_dcache_sb -EXPORT_SYMBOL vmlinux 0x00000000 si_meminfo -EXPORT_SYMBOL vmlinux 0x00000000 sigprocmask -EXPORT_SYMBOL vmlinux 0x00000000 simple_dentry_operations -EXPORT_SYMBOL vmlinux 0x00000000 simple_dir_inode_operations -EXPORT_SYMBOL vmlinux 0x00000000 simple_dir_operations -EXPORT_SYMBOL vmlinux 0x00000000 simple_dname -EXPORT_SYMBOL vmlinux 0x00000000 simple_empty -EXPORT_SYMBOL vmlinux 0x00000000 simple_fill_super -EXPORT_SYMBOL vmlinux 0x00000000 simple_follow_link -EXPORT_SYMBOL vmlinux 0x00000000 simple_getattr -EXPORT_SYMBOL vmlinux 0x00000000 simple_link -EXPORT_SYMBOL vmlinux 0x00000000 simple_lookup -EXPORT_SYMBOL vmlinux 0x00000000 simple_nosetlease -EXPORT_SYMBOL vmlinux 0x00000000 simple_open -EXPORT_SYMBOL vmlinux 0x00000000 simple_pin_fs -EXPORT_SYMBOL vmlinux 0x00000000 simple_read_from_buffer -EXPORT_SYMBOL vmlinux 0x00000000 simple_readpage -EXPORT_SYMBOL vmlinux 0x00000000 simple_release_fs -EXPORT_SYMBOL vmlinux 0x00000000 simple_rename -EXPORT_SYMBOL vmlinux 0x00000000 simple_rmdir -EXPORT_SYMBOL vmlinux 0x00000000 simple_setattr -EXPORT_SYMBOL vmlinux 0x00000000 simple_statfs -EXPORT_SYMBOL vmlinux 0x00000000 simple_strtol -EXPORT_SYMBOL vmlinux 0x00000000 simple_strtoll -EXPORT_SYMBOL vmlinux 0x00000000 simple_strtoul -EXPORT_SYMBOL vmlinux 0x00000000 simple_strtoull -EXPORT_SYMBOL vmlinux 0x00000000 simple_symlink_inode_operations -EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_get -EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_read -EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_release -EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_set -EXPORT_SYMBOL vmlinux 0x00000000 simple_unlink -EXPORT_SYMBOL vmlinux 0x00000000 simple_write_begin -EXPORT_SYMBOL vmlinux 0x00000000 simple_write_end -EXPORT_SYMBOL vmlinux 0x00000000 simple_write_to_buffer -EXPORT_SYMBOL vmlinux 0x00000000 single_open -EXPORT_SYMBOL vmlinux 0x00000000 single_open_size -EXPORT_SYMBOL vmlinux 0x00000000 single_release -EXPORT_SYMBOL vmlinux 0x00000000 single_task_running -EXPORT_SYMBOL vmlinux 0x00000000 sk_alloc -EXPORT_SYMBOL vmlinux 0x00000000 sk_capable -EXPORT_SYMBOL vmlinux 0x00000000 sk_common_release -EXPORT_SYMBOL vmlinux 0x00000000 sk_dst_check -EXPORT_SYMBOL vmlinux 0x00000000 sk_filter_trim_cap -EXPORT_SYMBOL vmlinux 0x00000000 sk_free -EXPORT_SYMBOL vmlinux 0x00000000 sk_mc_loop -EXPORT_SYMBOL vmlinux 0x00000000 sk_net_capable -EXPORT_SYMBOL vmlinux 0x00000000 sk_ns_capable -EXPORT_SYMBOL vmlinux 0x00000000 sk_page_frag_refill -EXPORT_SYMBOL vmlinux 0x00000000 sk_prot_clear_portaddr_nulls -EXPORT_SYMBOL vmlinux 0x00000000 sk_receive_skb -EXPORT_SYMBOL vmlinux 0x00000000 sk_reset_timer -EXPORT_SYMBOL vmlinux 0x00000000 sk_send_sigurg -EXPORT_SYMBOL vmlinux 0x00000000 sk_stop_timer -EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_error -EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_kill_queues -EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_wait_close -EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_wait_connect -EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_wait_memory -EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_write_space -EXPORT_SYMBOL vmlinux 0x00000000 sk_wait_data -EXPORT_SYMBOL vmlinux 0x00000000 skb_abort_seq_read -EXPORT_SYMBOL vmlinux 0x00000000 skb_add_rx_frag -EXPORT_SYMBOL vmlinux 0x00000000 skb_append -EXPORT_SYMBOL vmlinux 0x00000000 skb_append_datato_frags -EXPORT_SYMBOL vmlinux 0x00000000 skb_checksum -EXPORT_SYMBOL vmlinux 0x00000000 skb_checksum_help -EXPORT_SYMBOL vmlinux 0x00000000 skb_checksum_setup -EXPORT_SYMBOL vmlinux 0x00000000 skb_checksum_trimmed -EXPORT_SYMBOL vmlinux 0x00000000 skb_clone -EXPORT_SYMBOL vmlinux 0x00000000 skb_clone_sk -EXPORT_SYMBOL vmlinux 0x00000000 skb_coalesce_rx_frag -EXPORT_SYMBOL vmlinux 0x00000000 skb_copy -EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_and_csum_bits -EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_and_csum_datagram_msg -EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_and_csum_dev -EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_bits -EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_datagram_from_iter -EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_datagram_iter -EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_expand -EXPORT_SYMBOL vmlinux 0x00000000 skb_dequeue -EXPORT_SYMBOL vmlinux 0x00000000 skb_dequeue_tail -EXPORT_SYMBOL vmlinux 0x00000000 skb_ensure_writable -EXPORT_SYMBOL vmlinux 0x00000000 skb_find_text -EXPORT_SYMBOL vmlinux 0x00000000 skb_flow_dissector_init -EXPORT_SYMBOL vmlinux 0x00000000 skb_free_datagram -EXPORT_SYMBOL vmlinux 0x00000000 skb_free_datagram_locked -EXPORT_SYMBOL vmlinux 0x00000000 skb_get_hash_perturb -EXPORT_SYMBOL vmlinux 0x00000000 skb_insert -EXPORT_SYMBOL vmlinux 0x00000000 skb_kill_datagram -EXPORT_SYMBOL vmlinux 0x00000000 skb_mac_gso_segment -EXPORT_SYMBOL vmlinux 0x00000000 skb_orphan_partial -EXPORT_SYMBOL vmlinux 0x00000000 skb_pad -EXPORT_SYMBOL vmlinux 0x00000000 skb_page_frag_refill -EXPORT_SYMBOL vmlinux 0x00000000 skb_prepare_seq_read -EXPORT_SYMBOL vmlinux 0x00000000 skb_pull -EXPORT_SYMBOL vmlinux 0x00000000 skb_push -EXPORT_SYMBOL vmlinux 0x00000000 skb_put -EXPORT_SYMBOL vmlinux 0x00000000 skb_queue_head -EXPORT_SYMBOL vmlinux 0x00000000 skb_queue_purge -EXPORT_SYMBOL vmlinux 0x00000000 skb_queue_tail -EXPORT_SYMBOL vmlinux 0x00000000 skb_realloc_headroom -EXPORT_SYMBOL vmlinux 0x00000000 skb_recv_datagram -EXPORT_SYMBOL vmlinux 0x00000000 skb_seq_read -EXPORT_SYMBOL vmlinux 0x00000000 skb_set_owner_w -EXPORT_SYMBOL vmlinux 0x00000000 skb_split -EXPORT_SYMBOL vmlinux 0x00000000 skb_store_bits -EXPORT_SYMBOL vmlinux 0x00000000 skb_trim -EXPORT_SYMBOL vmlinux 0x00000000 skb_try_coalesce -EXPORT_SYMBOL vmlinux 0x00000000 skb_tx_error -EXPORT_SYMBOL vmlinux 0x00000000 skb_unlink -EXPORT_SYMBOL vmlinux 0x00000000 skb_vlan_pop -EXPORT_SYMBOL vmlinux 0x00000000 skb_vlan_push -EXPORT_SYMBOL vmlinux 0x00000000 skb_vlan_untag -EXPORT_SYMBOL vmlinux 0x00000000 skip_spaces -EXPORT_SYMBOL vmlinux 0x00000000 smp_call_function -EXPORT_SYMBOL vmlinux 0x00000000 smp_call_function_many -EXPORT_SYMBOL vmlinux 0x00000000 smp_call_function_single -EXPORT_SYMBOL vmlinux 0x00000000 smp_num_siblings -EXPORT_SYMBOL vmlinux 0x00000000 snprintf -EXPORT_SYMBOL vmlinux 0x00000000 sock_alloc_file -EXPORT_SYMBOL vmlinux 0x00000000 sock_alloc_send_pskb -EXPORT_SYMBOL vmlinux 0x00000000 sock_alloc_send_skb -EXPORT_SYMBOL vmlinux 0x00000000 sock_cmsg_send -EXPORT_SYMBOL vmlinux 0x00000000 sock_common_getsockopt -EXPORT_SYMBOL vmlinux 0x00000000 sock_common_recvmsg -EXPORT_SYMBOL vmlinux 0x00000000 sock_common_setsockopt -EXPORT_SYMBOL vmlinux 0x00000000 sock_create -EXPORT_SYMBOL vmlinux 0x00000000 sock_create_kern -EXPORT_SYMBOL vmlinux 0x00000000 sock_create_lite -EXPORT_SYMBOL vmlinux 0x00000000 sock_dequeue_err_skb -EXPORT_SYMBOL vmlinux 0x00000000 sock_diag_put_filterinfo -EXPORT_SYMBOL vmlinux 0x00000000 sock_edemux -EXPORT_SYMBOL vmlinux 0x00000000 sock_efree -EXPORT_SYMBOL vmlinux 0x00000000 sock_from_file -EXPORT_SYMBOL vmlinux 0x00000000 sock_get_timestamp -EXPORT_SYMBOL vmlinux 0x00000000 sock_get_timestampns -EXPORT_SYMBOL vmlinux 0x00000000 sock_i_ino -EXPORT_SYMBOL vmlinux 0x00000000 sock_i_uid -EXPORT_SYMBOL vmlinux 0x00000000 sock_init_data -EXPORT_SYMBOL vmlinux 0x00000000 sock_kfree_s -EXPORT_SYMBOL vmlinux 0x00000000 sock_kmalloc -EXPORT_SYMBOL vmlinux 0x00000000 sock_kzfree_s -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_accept -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_bind -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_connect -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_getname -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_getsockopt -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_listen -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_mmap -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_poll -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_recvmsg -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_sendmsg -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_sendpage -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_setsockopt -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_shutdown -EXPORT_SYMBOL vmlinux 0x00000000 sock_no_socketpair -EXPORT_SYMBOL vmlinux 0x00000000 sock_queue_err_skb -EXPORT_SYMBOL vmlinux 0x00000000 sock_queue_rcv_skb -EXPORT_SYMBOL vmlinux 0x00000000 sock_recv_errqueue -EXPORT_SYMBOL vmlinux 0x00000000 sock_recvmsg -EXPORT_SYMBOL vmlinux 0x00000000 sock_register -EXPORT_SYMBOL vmlinux 0x00000000 sock_release -EXPORT_SYMBOL vmlinux 0x00000000 sock_rfree -EXPORT_SYMBOL vmlinux 0x00000000 sock_sendmsg -EXPORT_SYMBOL vmlinux 0x00000000 sock_setsockopt -EXPORT_SYMBOL vmlinux 0x00000000 sock_unregister -EXPORT_SYMBOL vmlinux 0x00000000 sock_wake_async -EXPORT_SYMBOL vmlinux 0x00000000 sock_wfree -EXPORT_SYMBOL vmlinux 0x00000000 sock_wmalloc -EXPORT_SYMBOL vmlinux 0x00000000 sockfd_lookup -EXPORT_SYMBOL vmlinux 0x00000000 softnet_data -EXPORT_SYMBOL vmlinux 0x00000000 sort -EXPORT_SYMBOL vmlinux 0x00000000 splice_direct_to_actor -EXPORT_SYMBOL vmlinux 0x00000000 sprintf -EXPORT_SYMBOL vmlinux 0x00000000 sscanf -EXPORT_SYMBOL vmlinux 0x00000000 starget_for_each_device -EXPORT_SYMBOL vmlinux 0x00000000 start_tty -EXPORT_SYMBOL vmlinux 0x00000000 stop_tty -EXPORT_SYMBOL vmlinux 0x00000000 strcasecmp -EXPORT_SYMBOL vmlinux 0x00000000 strcat -EXPORT_SYMBOL vmlinux 0x00000000 strchr -EXPORT_SYMBOL vmlinux 0x00000000 strchrnul -EXPORT_SYMBOL vmlinux 0x00000000 strcmp -EXPORT_SYMBOL vmlinux 0x00000000 strcpy -EXPORT_SYMBOL vmlinux 0x00000000 strcspn -EXPORT_SYMBOL vmlinux 0x00000000 strim -EXPORT_SYMBOL vmlinux 0x00000000 string_escape_mem -EXPORT_SYMBOL vmlinux 0x00000000 string_get_size -EXPORT_SYMBOL vmlinux 0x00000000 string_unescape -EXPORT_SYMBOL vmlinux 0x00000000 strlcat -EXPORT_SYMBOL vmlinux 0x00000000 strlcpy -EXPORT_SYMBOL vmlinux 0x00000000 strlen -EXPORT_SYMBOL vmlinux 0x00000000 strlen_user -EXPORT_SYMBOL vmlinux 0x00000000 strncasecmp -EXPORT_SYMBOL vmlinux 0x00000000 strncat -EXPORT_SYMBOL vmlinux 0x00000000 strnchr -EXPORT_SYMBOL vmlinux 0x00000000 strncmp -EXPORT_SYMBOL vmlinux 0x00000000 strncpy -EXPORT_SYMBOL vmlinux 0x00000000 strncpy_from_user -EXPORT_SYMBOL vmlinux 0x00000000 strndup_user -EXPORT_SYMBOL vmlinux 0x00000000 strnlen -EXPORT_SYMBOL vmlinux 0x00000000 strnlen_user -EXPORT_SYMBOL vmlinux 0x00000000 strnstr -EXPORT_SYMBOL vmlinux 0x00000000 strpbrk -EXPORT_SYMBOL vmlinux 0x00000000 strrchr -EXPORT_SYMBOL vmlinux 0x00000000 strreplace -EXPORT_SYMBOL vmlinux 0x00000000 strscpy -EXPORT_SYMBOL vmlinux 0x00000000 strsep -EXPORT_SYMBOL vmlinux 0x00000000 strspn -EXPORT_SYMBOL vmlinux 0x00000000 strstr -EXPORT_SYMBOL vmlinux 0x00000000 submit_bh -EXPORT_SYMBOL vmlinux 0x00000000 submit_bio -EXPORT_SYMBOL vmlinux 0x00000000 submit_bio_wait -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_alloc_coherent -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_dma_mapping_error -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_dma_supported -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_free_coherent -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_map_sg -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_map_sg_attrs -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_sync_sg_for_cpu -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_sync_sg_for_device -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_sync_single_for_cpu -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_sync_single_for_device -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_unmap_sg -EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_unmap_sg_attrs -EXPORT_SYMBOL vmlinux 0x00000000 sync_blockdev -EXPORT_SYMBOL vmlinux 0x00000000 sync_dirty_buffer -EXPORT_SYMBOL vmlinux 0x00000000 sync_filesystem -EXPORT_SYMBOL vmlinux 0x00000000 sync_inode -EXPORT_SYMBOL vmlinux 0x00000000 sync_inode_metadata -EXPORT_SYMBOL vmlinux 0x00000000 sync_inodes_sb -EXPORT_SYMBOL vmlinux 0x00000000 sync_mapping_buffers -EXPORT_SYMBOL vmlinux 0x00000000 synchronize_hardirq -EXPORT_SYMBOL vmlinux 0x00000000 synchronize_irq -EXPORT_SYMBOL vmlinux 0x00000000 synchronize_net -EXPORT_SYMBOL vmlinux 0x00000000 sys_close -EXPORT_SYMBOL vmlinux 0x00000000 sys_tz -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_ip_default_ttl -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_ip_early_demux -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_max_skb_frags -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_max_syn_backlog -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_optmem_max -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_rmem_max -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_adv_win_scale -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_low_latency -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_mem -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_notsent_lowat -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_reordering -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_rmem -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_syncookies -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_wmem -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_udp_mem -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_udp_rmem_min -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_udp_wmem_min -EXPORT_SYMBOL vmlinux 0x00000000 sysctl_wmem_max -EXPORT_SYMBOL vmlinux 0x00000000 sysfs_format_mac -EXPORT_SYMBOL vmlinux 0x00000000 sysfs_streq -EXPORT_SYMBOL vmlinux 0x00000000 system_state -EXPORT_SYMBOL vmlinux 0x00000000 system_wq -EXPORT_SYMBOL vmlinux 0x00000000 tag_pages_for_writeback -EXPORT_SYMBOL vmlinux 0x00000000 take_dentry_name_snapshot -EXPORT_SYMBOL vmlinux 0x00000000 task_tgid_nr_ns -EXPORT_SYMBOL vmlinux 0x00000000 tasklet_init -EXPORT_SYMBOL vmlinux 0x00000000 tasklet_kill -EXPORT_SYMBOL vmlinux 0x00000000 tcp_check_req -EXPORT_SYMBOL vmlinux 0x00000000 tcp_child_process -EXPORT_SYMBOL vmlinux 0x00000000 tcp_close -EXPORT_SYMBOL vmlinux 0x00000000 tcp_conn_request -EXPORT_SYMBOL vmlinux 0x00000000 tcp_connect -EXPORT_SYMBOL vmlinux 0x00000000 tcp_create_openreq_child -EXPORT_SYMBOL vmlinux 0x00000000 tcp_disconnect -EXPORT_SYMBOL vmlinux 0x00000000 tcp_enter_cwr -EXPORT_SYMBOL vmlinux 0x00000000 tcp_enter_memory_pressure -EXPORT_SYMBOL vmlinux 0x00000000 tcp_filter -EXPORT_SYMBOL vmlinux 0x00000000 tcp_getsockopt -EXPORT_SYMBOL vmlinux 0x00000000 tcp_gro_complete -EXPORT_SYMBOL vmlinux 0x00000000 tcp_hashinfo -EXPORT_SYMBOL vmlinux 0x00000000 tcp_init_sock -EXPORT_SYMBOL vmlinux 0x00000000 tcp_initialize_rcv_mss -EXPORT_SYMBOL vmlinux 0x00000000 tcp_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 tcp_make_synack -EXPORT_SYMBOL vmlinux 0x00000000 tcp_memory_allocated -EXPORT_SYMBOL vmlinux 0x00000000 tcp_memory_pressure -EXPORT_SYMBOL vmlinux 0x00000000 tcp_mtup_init -EXPORT_SYMBOL vmlinux 0x00000000 tcp_openreq_init_rwin -EXPORT_SYMBOL vmlinux 0x00000000 tcp_parse_options -EXPORT_SYMBOL vmlinux 0x00000000 tcp_poll -EXPORT_SYMBOL vmlinux 0x00000000 tcp_prequeue -EXPORT_SYMBOL vmlinux 0x00000000 tcp_proc_register -EXPORT_SYMBOL vmlinux 0x00000000 tcp_proc_unregister -EXPORT_SYMBOL vmlinux 0x00000000 tcp_prot -EXPORT_SYMBOL vmlinux 0x00000000 tcp_rcv_established -EXPORT_SYMBOL vmlinux 0x00000000 tcp_rcv_state_process -EXPORT_SYMBOL vmlinux 0x00000000 tcp_read_sock -EXPORT_SYMBOL vmlinux 0x00000000 tcp_recvmsg -EXPORT_SYMBOL vmlinux 0x00000000 tcp_release_cb -EXPORT_SYMBOL vmlinux 0x00000000 tcp_req_err -EXPORT_SYMBOL vmlinux 0x00000000 tcp_rtx_synack -EXPORT_SYMBOL vmlinux 0x00000000 tcp_select_initial_window -EXPORT_SYMBOL vmlinux 0x00000000 tcp_sendmsg -EXPORT_SYMBOL vmlinux 0x00000000 tcp_sendpage -EXPORT_SYMBOL vmlinux 0x00000000 tcp_seq_open -EXPORT_SYMBOL vmlinux 0x00000000 tcp_setsockopt -EXPORT_SYMBOL vmlinux 0x00000000 tcp_shutdown -EXPORT_SYMBOL vmlinux 0x00000000 tcp_simple_retransmit -EXPORT_SYMBOL vmlinux 0x00000000 tcp_sockets_allocated -EXPORT_SYMBOL vmlinux 0x00000000 tcp_splice_read -EXPORT_SYMBOL vmlinux 0x00000000 tcp_syn_ack_timeout -EXPORT_SYMBOL vmlinux 0x00000000 tcp_sync_mss -EXPORT_SYMBOL vmlinux 0x00000000 tcp_timewait_state_process -EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_conn_request -EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_connect -EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_destroy_sock -EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_do_rcv -EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_mtu_reduced -EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_send_check -EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_syn_recv_sock -EXPORT_SYMBOL vmlinux 0x00000000 test_taint -EXPORT_SYMBOL vmlinux 0x00000000 thaw_bdev -EXPORT_SYMBOL vmlinux 0x00000000 thaw_super -EXPORT_SYMBOL vmlinux 0x00000000 this_cpu_off -EXPORT_SYMBOL vmlinux 0x00000000 time_to_tm -EXPORT_SYMBOL vmlinux 0x00000000 timekeeping_inject_offset -EXPORT_SYMBOL vmlinux 0x00000000 timespec64_to_jiffies -EXPORT_SYMBOL vmlinux 0x00000000 timespec_trunc -EXPORT_SYMBOL vmlinux 0x00000000 timeval_to_jiffies -EXPORT_SYMBOL vmlinux 0x00000000 topology_phys_to_logical_pkg -EXPORT_SYMBOL vmlinux 0x00000000 totalram_pages -EXPORT_SYMBOL vmlinux 0x00000000 touch_atime -EXPORT_SYMBOL vmlinux 0x00000000 touch_buffer -EXPORT_SYMBOL vmlinux 0x00000000 truncate_inode_pages -EXPORT_SYMBOL vmlinux 0x00000000 truncate_inode_pages_final -EXPORT_SYMBOL vmlinux 0x00000000 truncate_inode_pages_range -EXPORT_SYMBOL vmlinux 0x00000000 truncate_pagecache -EXPORT_SYMBOL vmlinux 0x00000000 truncate_pagecache_range -EXPORT_SYMBOL vmlinux 0x00000000 truncate_setsize -EXPORT_SYMBOL vmlinux 0x00000000 try_to_del_timer_sync -EXPORT_SYMBOL vmlinux 0x00000000 try_to_free_buffers -EXPORT_SYMBOL vmlinux 0x00000000 try_to_release_page -EXPORT_SYMBOL vmlinux 0x00000000 try_to_writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x00000000 try_to_writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x00000000 try_wait_for_completion -EXPORT_SYMBOL vmlinux 0x00000000 tsc_khz -EXPORT_SYMBOL vmlinux 0x00000000 tso_build_data -EXPORT_SYMBOL vmlinux 0x00000000 tso_build_hdr -EXPORT_SYMBOL vmlinux 0x00000000 tso_count_descs -EXPORT_SYMBOL vmlinux 0x00000000 tso_start -EXPORT_SYMBOL vmlinux 0x00000000 tty_chars_in_buffer -EXPORT_SYMBOL vmlinux 0x00000000 tty_check_change -EXPORT_SYMBOL vmlinux 0x00000000 tty_devnum -EXPORT_SYMBOL vmlinux 0x00000000 tty_do_resize -EXPORT_SYMBOL vmlinux 0x00000000 tty_driver_flush_buffer -EXPORT_SYMBOL vmlinux 0x00000000 tty_driver_kref_put -EXPORT_SYMBOL vmlinux 0x00000000 tty_flip_buffer_push -EXPORT_SYMBOL vmlinux 0x00000000 tty_free_termios -EXPORT_SYMBOL vmlinux 0x00000000 tty_hangup -EXPORT_SYMBOL vmlinux 0x00000000 tty_hung_up_p -EXPORT_SYMBOL vmlinux 0x00000000 tty_insert_flip_string_fixed_flag -EXPORT_SYMBOL vmlinux 0x00000000 tty_insert_flip_string_flags -EXPORT_SYMBOL vmlinux 0x00000000 tty_kref_put -EXPORT_SYMBOL vmlinux 0x00000000 tty_lock -EXPORT_SYMBOL vmlinux 0x00000000 tty_mutex -EXPORT_SYMBOL vmlinux 0x00000000 tty_name -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_alloc_xmit_buf -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_block_til_ready -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_carrier_raised -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_close -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_close_end -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_close_start -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_destroy -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_free_xmit_buf -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_hangup -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_init -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_lower_dtr_rts -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_open -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_put -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_raise_dtr_rts -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_tty_get -EXPORT_SYMBOL vmlinux 0x00000000 tty_port_tty_set -EXPORT_SYMBOL vmlinux 0x00000000 tty_register_device -EXPORT_SYMBOL vmlinux 0x00000000 tty_register_driver -EXPORT_SYMBOL vmlinux 0x00000000 tty_register_ldisc -EXPORT_SYMBOL vmlinux 0x00000000 tty_schedule_flip -EXPORT_SYMBOL vmlinux 0x00000000 tty_set_operations -EXPORT_SYMBOL vmlinux 0x00000000 tty_std_termios -EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_baud_rate -EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_copy_hw -EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_hw_change -EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_input_baud_rate -EXPORT_SYMBOL vmlinux 0x00000000 tty_throttle -EXPORT_SYMBOL vmlinux 0x00000000 tty_unlock -EXPORT_SYMBOL vmlinux 0x00000000 tty_unregister_device -EXPORT_SYMBOL vmlinux 0x00000000 tty_unregister_driver -EXPORT_SYMBOL vmlinux 0x00000000 tty_unregister_ldisc -EXPORT_SYMBOL vmlinux 0x00000000 tty_unthrottle -EXPORT_SYMBOL vmlinux 0x00000000 tty_vhangup -EXPORT_SYMBOL vmlinux 0x00000000 tty_wait_until_sent -EXPORT_SYMBOL vmlinux 0x00000000 tty_write_room -EXPORT_SYMBOL vmlinux 0x00000000 uart_add_one_port -EXPORT_SYMBOL vmlinux 0x00000000 uart_get_baud_rate -EXPORT_SYMBOL vmlinux 0x00000000 uart_get_divisor -EXPORT_SYMBOL vmlinux 0x00000000 uart_match_port -EXPORT_SYMBOL vmlinux 0x00000000 uart_register_driver -EXPORT_SYMBOL vmlinux 0x00000000 uart_remove_one_port -EXPORT_SYMBOL vmlinux 0x00000000 uart_resume_port -EXPORT_SYMBOL vmlinux 0x00000000 uart_suspend_port -EXPORT_SYMBOL vmlinux 0x00000000 uart_unregister_driver -EXPORT_SYMBOL vmlinux 0x00000000 uart_update_timeout -EXPORT_SYMBOL vmlinux 0x00000000 uart_write_wakeup -EXPORT_SYMBOL vmlinux 0x00000000 ucs2_as_utf8 -EXPORT_SYMBOL vmlinux 0x00000000 ucs2_strlen -EXPORT_SYMBOL vmlinux 0x00000000 ucs2_strncmp -EXPORT_SYMBOL vmlinux 0x00000000 ucs2_strnlen -EXPORT_SYMBOL vmlinux 0x00000000 ucs2_strsize -EXPORT_SYMBOL vmlinux 0x00000000 ucs2_utf8size -EXPORT_SYMBOL vmlinux 0x00000000 udp6_csum_init -EXPORT_SYMBOL vmlinux 0x00000000 udp6_set_csum -EXPORT_SYMBOL vmlinux 0x00000000 udp_add_offload -EXPORT_SYMBOL vmlinux 0x00000000 udp_del_offload -EXPORT_SYMBOL vmlinux 0x00000000 udp_disconnect -EXPORT_SYMBOL vmlinux 0x00000000 udp_encap_enable -EXPORT_SYMBOL vmlinux 0x00000000 udp_flow_hashrnd -EXPORT_SYMBOL vmlinux 0x00000000 udp_flush_pending_frames -EXPORT_SYMBOL vmlinux 0x00000000 udp_ioctl -EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_get_port -EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_getsockopt -EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_rehash -EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_setsockopt -EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_unhash -EXPORT_SYMBOL vmlinux 0x00000000 udp_memory_allocated -EXPORT_SYMBOL vmlinux 0x00000000 udp_poll -EXPORT_SYMBOL vmlinux 0x00000000 udp_proc_register -EXPORT_SYMBOL vmlinux 0x00000000 udp_proc_unregister -EXPORT_SYMBOL vmlinux 0x00000000 udp_prot -EXPORT_SYMBOL vmlinux 0x00000000 udp_push_pending_frames -EXPORT_SYMBOL vmlinux 0x00000000 udp_sendmsg -EXPORT_SYMBOL vmlinux 0x00000000 udp_seq_open -EXPORT_SYMBOL vmlinux 0x00000000 udp_set_csum -EXPORT_SYMBOL vmlinux 0x00000000 udp_table -EXPORT_SYMBOL vmlinux 0x00000000 udplite_prot -EXPORT_SYMBOL vmlinux 0x00000000 udplite_table -EXPORT_SYMBOL vmlinux 0x00000000 udpv6_encap_enable -EXPORT_SYMBOL vmlinux 0x00000000 unload_nls -EXPORT_SYMBOL vmlinux 0x00000000 unlock_buffer -EXPORT_SYMBOL vmlinux 0x00000000 unlock_new_inode -EXPORT_SYMBOL vmlinux 0x00000000 unlock_page -EXPORT_SYMBOL vmlinux 0x00000000 unlock_rename -EXPORT_SYMBOL vmlinux 0x00000000 unlock_two_nondirectories -EXPORT_SYMBOL vmlinux 0x00000000 unmap_mapping_range -EXPORT_SYMBOL vmlinux 0x00000000 unmap_underlying_metadata -EXPORT_SYMBOL vmlinux 0x00000000 unregister_acpi_notifier -EXPORT_SYMBOL vmlinux 0x00000000 unregister_binfmt -EXPORT_SYMBOL vmlinux 0x00000000 unregister_blkdev -EXPORT_SYMBOL vmlinux 0x00000000 unregister_cdrom -EXPORT_SYMBOL vmlinux 0x00000000 unregister_chrdev_region -EXPORT_SYMBOL vmlinux 0x00000000 unregister_console -EXPORT_SYMBOL vmlinux 0x00000000 unregister_cpu_notifier -EXPORT_SYMBOL vmlinux 0x00000000 unregister_filesystem -EXPORT_SYMBOL vmlinux 0x00000000 unregister_inet6addr_notifier -EXPORT_SYMBOL vmlinux 0x00000000 unregister_inetaddr_notifier -EXPORT_SYMBOL vmlinux 0x00000000 unregister_key_type -EXPORT_SYMBOL vmlinux 0x00000000 unregister_module_notifier -EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdev -EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdevice_many -EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdevice_notifier -EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdevice_queue -EXPORT_SYMBOL vmlinux 0x00000000 unregister_nls -EXPORT_SYMBOL vmlinux 0x00000000 unregister_quota_format -EXPORT_SYMBOL vmlinux 0x00000000 unregister_reboot_notifier -EXPORT_SYMBOL vmlinux 0x00000000 unregister_restart_handler -EXPORT_SYMBOL vmlinux 0x00000000 unregister_shrinker -EXPORT_SYMBOL vmlinux 0x00000000 unregister_sysctl_table -EXPORT_SYMBOL vmlinux 0x00000000 up -EXPORT_SYMBOL vmlinux 0x00000000 up_read -EXPORT_SYMBOL vmlinux 0x00000000 up_write -EXPORT_SYMBOL vmlinux 0x00000000 user_path_at_empty -EXPORT_SYMBOL vmlinux 0x00000000 user_path_create -EXPORT_SYMBOL vmlinux 0x00000000 user_revoke -EXPORT_SYMBOL vmlinux 0x00000000 usleep_range -EXPORT_SYMBOL vmlinux 0x00000000 utf16s_to_utf8s -EXPORT_SYMBOL vmlinux 0x00000000 utf32_to_utf8 -EXPORT_SYMBOL vmlinux 0x00000000 utf8_to_utf32 -EXPORT_SYMBOL vmlinux 0x00000000 utf8s_to_utf16s -EXPORT_SYMBOL vmlinux 0x00000000 verify_spi_info -EXPORT_SYMBOL vmlinux 0x00000000 vfree -EXPORT_SYMBOL vmlinux 0x00000000 vfs_create -EXPORT_SYMBOL vmlinux 0x00000000 vfs_fstat -EXPORT_SYMBOL vmlinux 0x00000000 vfs_fstatat -EXPORT_SYMBOL vmlinux 0x00000000 vfs_fsync -EXPORT_SYMBOL vmlinux 0x00000000 vfs_fsync_range -EXPORT_SYMBOL vmlinux 0x00000000 vfs_getattr -EXPORT_SYMBOL vmlinux 0x00000000 vfs_getattr_nosec -EXPORT_SYMBOL vmlinux 0x00000000 vfs_getxattr_alloc -EXPORT_SYMBOL vmlinux 0x00000000 vfs_iter_read -EXPORT_SYMBOL vmlinux 0x00000000 vfs_iter_write -EXPORT_SYMBOL vmlinux 0x00000000 vfs_link -EXPORT_SYMBOL vmlinux 0x00000000 vfs_llseek -EXPORT_SYMBOL vmlinux 0x00000000 vfs_lstat -EXPORT_SYMBOL vmlinux 0x00000000 vfs_mkdir -EXPORT_SYMBOL vmlinux 0x00000000 vfs_mknod -EXPORT_SYMBOL vmlinux 0x00000000 vfs_path_lookup -EXPORT_SYMBOL vmlinux 0x00000000 vfs_read -EXPORT_SYMBOL vmlinux 0x00000000 vfs_readf -EXPORT_SYMBOL vmlinux 0x00000000 vfs_readv -EXPORT_SYMBOL vmlinux 0x00000000 vfs_rename -EXPORT_SYMBOL vmlinux 0x00000000 vfs_rmdir -EXPORT_SYMBOL vmlinux 0x00000000 vfs_setpos -EXPORT_SYMBOL vmlinux 0x00000000 vfs_stat -EXPORT_SYMBOL vmlinux 0x00000000 vfs_statfs -EXPORT_SYMBOL vmlinux 0x00000000 vfs_symlink -EXPORT_SYMBOL vmlinux 0x00000000 vfs_unlink -EXPORT_SYMBOL vmlinux 0x00000000 vfs_whiteout -EXPORT_SYMBOL vmlinux 0x00000000 vfs_write -EXPORT_SYMBOL vmlinux 0x00000000 vfs_writef -EXPORT_SYMBOL vmlinux 0x00000000 vfs_writev -EXPORT_SYMBOL vmlinux 0x00000000 vlan_ioctl_set -EXPORT_SYMBOL vmlinux 0x00000000 vm_brk -EXPORT_SYMBOL vmlinux 0x00000000 vm_get_page_prot -EXPORT_SYMBOL vmlinux 0x00000000 vm_insert_mixed -EXPORT_SYMBOL vmlinux 0x00000000 vm_insert_page -EXPORT_SYMBOL vmlinux 0x00000000 vm_insert_pfn -EXPORT_SYMBOL vmlinux 0x00000000 vm_iomap_memory -EXPORT_SYMBOL vmlinux 0x00000000 vm_map_ram -EXPORT_SYMBOL vmlinux 0x00000000 vm_mmap -EXPORT_SYMBOL vmlinux 0x00000000 vm_munmap -EXPORT_SYMBOL vmlinux 0x00000000 vm_stat -EXPORT_SYMBOL vmlinux 0x00000000 vm_unmap_ram -EXPORT_SYMBOL vmlinux 0x00000000 vmalloc -EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_32 -EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_32_user -EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_node -EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_to_page -EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_to_pfn -EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_user -EXPORT_SYMBOL vmlinux 0x00000000 vmap -EXPORT_SYMBOL vmlinux 0x00000000 vprintk -EXPORT_SYMBOL vmlinux 0x00000000 vprintk_emit -EXPORT_SYMBOL vmlinux 0x00000000 vscnprintf -EXPORT_SYMBOL vmlinux 0x00000000 vsnprintf -EXPORT_SYMBOL vmlinux 0x00000000 vsprintf -EXPORT_SYMBOL vmlinux 0x00000000 vsscanf -EXPORT_SYMBOL vmlinux 0x00000000 vunmap -EXPORT_SYMBOL vmlinux 0x00000000 vzalloc -EXPORT_SYMBOL vmlinux 0x00000000 vzalloc_node -EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion -EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_interruptible -EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_interruptible_timeout -EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_io -EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_io_timeout -EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_killable -EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_killable_timeout -EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_timeout -EXPORT_SYMBOL vmlinux 0x00000000 wait_for_key_construction -EXPORT_SYMBOL vmlinux 0x00000000 wait_iff_congested -EXPORT_SYMBOL vmlinux 0x00000000 wait_on_page_bit -EXPORT_SYMBOL vmlinux 0x00000000 wait_woken -EXPORT_SYMBOL vmlinux 0x00000000 wake_bit_function -EXPORT_SYMBOL vmlinux 0x00000000 wake_up_atomic_t -EXPORT_SYMBOL vmlinux 0x00000000 wake_up_bit -EXPORT_SYMBOL vmlinux 0x00000000 wake_up_process -EXPORT_SYMBOL vmlinux 0x00000000 wbinvd_on_all_cpus -EXPORT_SYMBOL vmlinux 0x00000000 wbinvd_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 woken_wake_function -EXPORT_SYMBOL vmlinux 0x00000000 would_dump -EXPORT_SYMBOL vmlinux 0x00000000 write_cache_pages -EXPORT_SYMBOL vmlinux 0x00000000 write_dirty_buffer -EXPORT_SYMBOL vmlinux 0x00000000 write_inode_now -EXPORT_SYMBOL vmlinux 0x00000000 write_one_page -EXPORT_SYMBOL vmlinux 0x00000000 writeback_inodes_sb -EXPORT_SYMBOL vmlinux 0x00000000 writeback_inodes_sb_nr -EXPORT_SYMBOL vmlinux 0x00000000 wrmsr_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 wrmsr_on_cpus -EXPORT_SYMBOL vmlinux 0x00000000 wrmsr_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 wrmsr_safe_regs -EXPORT_SYMBOL vmlinux 0x00000000 wrmsr_safe_regs_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 wrmsrl_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 wrmsrl_safe_on_cpu -EXPORT_SYMBOL vmlinux 0x00000000 ww_mutex_unlock -EXPORT_SYMBOL vmlinux 0x00000000 x86_bios_cpu_apicid -EXPORT_SYMBOL vmlinux 0x00000000 x86_cpu_to_apicid -EXPORT_SYMBOL vmlinux 0x00000000 x86_dma_fallback_dev -EXPORT_SYMBOL vmlinux 0x00000000 x86_hyper -EXPORT_SYMBOL vmlinux 0x00000000 x86_hyper_ms_hyperv -EXPORT_SYMBOL vmlinux 0x00000000 x86_hyper_vmware -EXPORT_SYMBOL vmlinux 0x00000000 x86_match_cpu -EXPORT_SYMBOL vmlinux 0x00000000 xattr_full_name -EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_prepare_output -EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_protocol_deregister -EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_protocol_init -EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_protocol_register -EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_rcv -EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_rcv_cb -EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_rcv_encap -EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_tunnel_deregister -EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_tunnel_register -EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_find_1stfragopt -EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_input_addr -EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_prepare_output -EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_protocol_deregister -EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_protocol_register -EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_rcv -EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_rcv_cb -EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_rcv_spi -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_alloc_spi -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_dst_ifdown -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_find_acq -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_find_acq_byseq -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_garbage_collect -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_get_acqseq -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_init_replay -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_init_state -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_input -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_input_register_afinfo -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_input_resume -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_input_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_lookup -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_lookup_route -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_alloc -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_byid -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_bysel_ctx -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_delete -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_destroy -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_flush -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_hash_rebuild -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_insert -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_register_afinfo -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_walk -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_walk_done -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_walk_init -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_prepare_input -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_register_km -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_register_mode -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_register_type -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_sad_getinfo -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_spd_getinfo -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_add -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_alloc -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_check_expire -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_delete -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_delete_tunnel -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_flush -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_insert -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_lookup -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_lookup_byaddr -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_lookup_byspi -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_register_afinfo -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_unregister_afinfo -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_update -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_walk -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_walk_done -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_walk_init -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_stateonly_find -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_unregister_km -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_unregister_mode -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_unregister_type -EXPORT_SYMBOL vmlinux 0x00000000 xfrm_user_policy -EXPORT_SYMBOL vmlinux 0x00000000 xmit_recursion -EXPORT_SYMBOL vmlinux 0x00000000 yield -EXPORT_SYMBOL vmlinux 0x00000000 zero_fill_bio -EXPORT_SYMBOL vmlinux 0x00000000 zero_pfn -EXPORT_SYMBOL vmlinux 0x00000000 zerocopy_sg_from_iter -EXPORT_SYMBOL vmlinux 0x00000000 zlib_deflate -EXPORT_SYMBOL vmlinux 0x00000000 zlib_deflateEnd -EXPORT_SYMBOL vmlinux 0x00000000 zlib_deflateInit2 -EXPORT_SYMBOL vmlinux 0x00000000 zlib_deflateReset -EXPORT_SYMBOL vmlinux 0x00000000 zlib_deflate_workspacesize -EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflate -EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateEnd -EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateIncomp -EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateInit2 -EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateReset -EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflate_blob -EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflate_workspacesize -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x00000000 async_gen_syndrome -EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x00000000 async_syndrome_val -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00000000 async_trigger_callback -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00000000 async_tx_quiesce -EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00000000 async_tx_submit -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x00000000 async_xor -EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x00000000 async_xor_val -EXPORT_SYMBOL_GPL crypto/des_generic 0x00000000 __des3_ede_setkey -EXPORT_SYMBOL_GPL crypto/des_generic 0x00000000 des_ekey -EXPORT_SYMBOL_GPL crypto/xts 0x00000000 xts_crypt -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_accept_partial_bio -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_device_name -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_disk -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_dev_t -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_md -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_queue_limits -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_reserved_bio_based_ios -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_reserved_rq_based_ios -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_rq_mapinfo -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_table_device -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_hold -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_internal_resume -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_internal_resume_fast -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_internal_suspend_fast -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_internal_suspend_noflush -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_noflush_suspending -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_put -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_set_target_max_io_len -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_suspended -EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_table_add_target_callbacks -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bio_alloc_mddev -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bio_clone_mddev -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bitmap_copy_from_slot -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bitmap_load -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bitmap_resize -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_ack_all_badblocks -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_allow_write -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_do_sync -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_find_rdev_nr_rcu -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_is_badblock -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_kick_rdev_from_array -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_new_event -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_rdev_clear -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_rdev_init -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_run -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_stop -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_stop_writes -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_congested -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_init -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_resume -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_suspend -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_unlock -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 rdev_clear_badblocks -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 rdev_set_badblocks -EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 sync_page_io -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 __get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 __mtd_next_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 __put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 deregister_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 get_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 get_mtd_device_nm -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 kill_mtd_super -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mount_mtd -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_add_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_block_isbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_block_isreserved -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_block_markbad -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_del_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_device_parse_register -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_device_unregister -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_erase -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_erase_callback -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_get_device_size -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_get_fact_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_get_unmapped_area -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_get_user_prot_info -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_is_locked -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_is_partition -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_kmalloc_up_to -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_lock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_lock_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_panic_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_point -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_read -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_read_fact_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_read_oob -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_read_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_table_mutex -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_unlock -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_unpoint -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_write -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_write_user_prot_reg -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_writev -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 put_mtd_device -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 register_mtd_parser -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 register_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 unregister_mtd_user -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_close_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_do_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_flush -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_get_device_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_get_volume_info -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_is_mapped -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_change -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_erase -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_map -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_read -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_read_sg -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_unmap -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_write -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_open_volume -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_open_volume_nm -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_open_volume_path -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_register_volume_notifier -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_sync -EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_unregister_volume_notifier -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 __fat_fs_error -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_add_entries -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_alloc_new_dir -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_attach -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_build_inode -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_detach -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_dir_empty -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_fill_super -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_flush_inodes -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_free_clusters -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_get_dotdot_entry -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_getattr -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_remove_entries -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_scan -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_search_long -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_setattr -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_sync_inode -EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_time_unix2fat -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_abort_conn -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_conn_get -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_conn_init -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_conn_put -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_dev_alloc -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_dev_free -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_dev_operations -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_dev_release -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_direct_io -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_do_ioctl -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_do_open -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_file_poll -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_get_req -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_get_req_for_background -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_put_request -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_request_alloc -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_request_send -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_request_send_background -EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_sync_release -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 lockd_down -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 lockd_up -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmclnt_done -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmclnt_init -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmclnt_proc -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmsvc_ops -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmsvc_unlock_all_by_ip -EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmsvc_unlock_all_by_sb -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 alloc_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 get_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_access_add_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_access_set_mask -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_access_zap_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_alloc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_alloc_fattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_alloc_fhandle -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_alloc_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_alloc_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_auth_info_match -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_check_flags -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_clear_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_clone_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_clone_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_close_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commit_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commitdata_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commitdata_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_create -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_create_rpc_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_create_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_dentry_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_destroy_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_direct_set_resched_writes -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_do_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_dreq_bytes_left -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_drop_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fattr_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fhget -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_fsync_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_llseek -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_mmap -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_operations -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_release -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_set_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_splice_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_flock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_force_lookup_revalidate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_free_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_free_server -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fs_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fs_mount_common -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fs_type -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_generic_pg_test -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_generic_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_get_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_get_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_getattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_inc_attr_generation_counter -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_cinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_server_rpcclient -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_timeout_values -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_initiate_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_initiate_pgio -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_inode_attach_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_instantiate -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_invalidate_atime -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_kill_super -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_link -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_lock -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_lookup -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_mark_client_ready -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_may_open -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_mkdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_mknod -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_net_id -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_init_read -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_init_write -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_resend -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_reset_read_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_reset_write_mds -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_permission -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pgheader_init -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pgio_current_mirror -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pgio_data_destroy -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pgio_header_alloc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pgio_header_free -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_post_op_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_post_op_update_inode_force_wcc -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_probe_fsinfo -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_put_client -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_put_lock_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_refresh_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_remount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_rename -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_request_add_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_request_add_commit_list_locked -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_request_remove_commit_list -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_retry_commit -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_revalidate_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_rmdir -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_sb_active -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_sb_deactive -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_server_copy_userdata -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_server_insert_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_server_remove_lists -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_set_sb_security -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_setattr -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_setattr_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_setsecurity -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_show_devname -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_show_options -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_show_path -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_show_stats -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_sops -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_statfs -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_submount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_symlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_sync_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_try_mount -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_umount_begin -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_unlink -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_wait_bit_killable -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_wait_client_init_complete -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_wb_all -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_write_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_writeback_update_inode -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_zap_acl_cache -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfsiod_workqueue -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 put_nfs_open_context -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 register_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 unregister_nfs_version -EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x00000000 nfs3_set_ds_client -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x00000000 locks_end_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x00000000 locks_in_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x00000000 locks_start_grace -EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x00000000 opens_in_grace -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 __mlog_printk -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 mlog_and_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 mlog_not_bits -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_check_local_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_check_node_heartbeating -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_check_node_heartbeating_from_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_check_node_heartbeating_no_sem -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_get_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_register_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_setup_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_stop_all_regions -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_unregister_callback -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2net_fill_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2net_register_handler -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2net_send_message -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2net_send_message_vec -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2net_unregister_handler_list -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_configured_node_map -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_get_node_by_ip -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_get_node_by_num -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_node_get -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_node_put -EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_errmsg -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_errname -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_print_one_lock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_register_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_register_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_setup_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_unregister_domain -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_unregister_eviction_cb -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlmlock -EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlmunlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_cluster_connect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_cluster_connect_agnostic -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_cluster_disconnect -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_cluster_hangup -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_cluster_this_node -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_dump_lksb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_lock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_lock_status -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_lvb -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_lvb_valid -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_unlock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_is_o2cb_active -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_plock -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_stack_glue_register -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_stack_glue_set_max_proto_version -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_stack_glue_unregister -EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_stack_supports_plocks -EXPORT_SYMBOL_GPL lib/lzo/lzo_compress 0x00000000 lzo1x_1_compress -EXPORT_SYMBOL_GPL lib/lzo/lzo_decompress 0x00000000 lzo1x_decompress_safe -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x00000000 raid6_2data_recov -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x00000000 raid6_call -EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x00000000 raid6_datap_recov -EXPORT_SYMBOL_GPL net/9p/9pnet 0x00000000 p9_client_xattrcreate -EXPORT_SYMBOL_GPL net/9p/9pnet 0x00000000 p9_client_xattrwalk -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x00000000 rxrpc_register_security -EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x00000000 rxrpc_unregister_security -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 __rpc_wait_for_completion_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 _copy_from_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 auth_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 auth_domain_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 auth_domain_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_check -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_create_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_destroy_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_flush -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_register_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_seq_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_seq_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_seq_stop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_unregister_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 csum_partial_copy_to_xdr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 gssd_running -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 nfs_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 nfsd_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 nlm_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 put_rpccred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 qword_add -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 qword_addhex -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 qword_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 read_bytes_from_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_add_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_alloc_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_bind_new_program -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_calc_rto -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_null -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_start -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_sync -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_clone_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_clone_client_set_auth -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_count_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_count_iostats_metrics -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_d_lookup_sb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_debug -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_delay -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_destroy_pipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_destroy_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_exit -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_find_or_alloc_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_force_rebind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_free_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_get_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_get_timeout -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_pipe_dir_head -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_priority_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_wait_queue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_killall_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_localaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_lookup_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_lookup_cred_nonblock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_lookup_machine_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_malloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_mkpipe_data -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_mkpipe_dentry -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_net_ns -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_ntop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_peeraddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_peeraddr2str -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_pipe_generic_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_pipefs_notifier_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_pipefs_notifier_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_print_iostats -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_protocol -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_pton -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_put_sb_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_put_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_put_task_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_queue_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_release_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_remove_pipe_dir_object -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_restart_call -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_restart_call_prepare -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_rmdir -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_run_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_setbufsize -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_shutdown_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_sleep_on -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_sleep_on_priority -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_switch_client_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_task_reset_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_uaddr2sockaddr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_unlink -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_update_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_first -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_next -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_queued_task -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_status -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_cred_key_to_expire -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_destroy_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_generic_bind_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_get_gssinfo -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_get_pseudoflavor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_init_cred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_init_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_key_timeout_notify -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_list_flavors -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_lookup_credcache -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_lookupcred -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_stringify_acceptor -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcb_getport_async -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_lookup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_pipe_upcall -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_register_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_unregister_pipefs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_update -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_destroy_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_init_cache_detail -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_net_id -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_addsock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_alien_sock -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_auth_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_auth_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_authenticate -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_bind -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_close_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_create -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_create_pooled -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_create_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_destroy -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_drop -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_exit_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_find_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_max_payload -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_pool_map -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_pool_map_get -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_pool_map_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_prepare_thread -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_print_addr -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_proc_register -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_proc_unregister -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_process -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_recv -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_reg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_reserve -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_rpcb_cleanup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_rpcb_setup -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_rqst_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_rqst_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_seq_show -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_set_num_threads -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_shutdown_net -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_sock_update_bufs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_unreg_xprt_class -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_wake_up -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_copy_addrs -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_do_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_enqueue -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_init -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_names -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_put -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svcauth_unix_purge -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svcauth_unix_set_client -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 unix_domain_find -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 write_bytes_to_xdr_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_from_iov -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_read_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_subsegment -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_trim -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_commit_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_string_inplace -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_array2 -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_netobj -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_opaque -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_opaque_fixed -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_word -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_enter_page -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_init_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_init_decode_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_init_encode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_inline_decode -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_inline_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_partial_copy_from_skb -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_process_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_read_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_reserve_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_set_scratch_buffer -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_shift_buf -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_skb_read_bits -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_stream_pos -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_terminate_string -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_write_pages -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_adjust_cwnd -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_alloc -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_complete_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_disconnect_done -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_free -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_load_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_lock_and_alloc_slot -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_lookup_rqst -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_register_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_release_rqst_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_release_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_release_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_reserve_xprt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_reserve_xprt_cong -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_set_retrans_timeout_def -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_set_retrans_timeout_rtt -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_unregister_transport -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_wait_for_buffer_space -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_wake_pending_tasks -EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_write_space -EXPORT_SYMBOL_GPL security/keys/encrypted-keys/encrypted-keys 0x00000000 key_type_encrypted -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ablkcipher_walk_complete -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __alloc_percpu_gfp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __alloc_workqueue_key -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blk_put_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blk_run_queue_uncond -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blkdev_driver_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __bpf_call_base -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __class_create -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __class_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __clocksource_register_scale -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __clocksource_update_freq_scale -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __compat_only_sysfs_link_entry_to_kobj -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __fsnotify_inode_delete -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __fsnotify_parent -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __get_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __hrtimer_get_remaining -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __hvc_resize -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_inherit_port -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_lookup_established -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_twsk_hashdance -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_twsk_schedule -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __init_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iowrite32_copy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iowrite64_copy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ip_route_output_key_hash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __irq_alloc_descs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __irq_domain_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __irq_set_handler -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iscsi_complete_pdu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iscsi_get_task -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iscsi_put_task -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __list_lru_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __lock_page_killable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __mmdrop -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __mnt_is_readonly -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __module_address -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __module_text_address -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __netlink_alloc_skb -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pci_complete_power_transition -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pci_hp_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pci_reset_function_locked -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __percpu_ida_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __percpu_init_rwsem -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __platform_create_bundle -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __platform_driver_probe -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __platform_driver_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __platform_register_drivers -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pneigh_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __put_net -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __put_task_struct -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __root_device_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rt_mutex_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sk_attach_filter -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sk_detach_filter -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __skb_get_hash_symmetric -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sock_recv_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sock_recv_ts_and_drops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sock_recv_wifi_status -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __srcu_read_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __srcu_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __static_cpu_has_safe -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __supported_pte_mask -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __symbol_get -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wait_rcu_gp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_locked -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_locked_key -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_sync -EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_sync_key -EXPORT_SYMBOL_GPL vmlinux 0x00000000 _submit_bh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ablkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ablkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bind_one -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_attach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_detach_private_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_get_ejd -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_get_private_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_trim -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_update_power -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_create_platform_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_debugfs_dir -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_filter_resource_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_free_resource_list -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_get_property -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_get_resources -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_irq_flags -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_resource_address_space -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_resource_ext_address_space -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_resource_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_resource_io -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_resource_memory -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_device_modalias -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_device_uevent_modalias -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_device_update_power -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_driver_match_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_ec_add_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_ec_remove_query_handler -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_find_child_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_get_cpuid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_get_pci_dev -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_gsi_to_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_initialize_hp_context -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_is_pnp_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_is_root_bridge -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_kobj -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_lpat_free_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_lpat_get_conversion_table -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_lpat_raw_to_temp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_lpat_temp_to_raw -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_match_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_node_get_property_reference -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_os_get_iomem -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_os_map_iomem -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_os_map_memory -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_os_unmap_iomem -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_os_unmap_memory -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_pci_check_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_pci_detect_ejectable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_pci_find_root -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_register_gsi -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_scan_lock_acquire -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_scan_lock_release -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_str_to_uuid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_unbind_one -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_unregister_gsi -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_walk_dep_device_list -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpiphp_register_attention -EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpiphp_unregister_attention -EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_disk_randomness -EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_hwgenerator_randomness -EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_input_randomness -EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_interrupt_randomness -EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_page_wait_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_timer_on -EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_to_page_cache_lru -EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_uevent_var -EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_exit_geniv -EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_init_geniv -EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_cancel -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_expires_remaining -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_forward -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_forward_now -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_restart -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_start -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_start_relative -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alg_test -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alloc_page_buffers -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alloc_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x00000000 alternatives_patched -EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_cache_northbridges -EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_flush_garts -EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_get_nb_id -EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_get_nodes_per_socket -EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_pmu_disable_virt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_pmu_enable_virt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_inode_getfd -EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_inode_getfile -EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 aout_dump_debugregs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 apic -EXPORT_SYMBOL_GPL vmlinux 0x00000000 apply_to_page_range -EXPORT_SYMBOL_GPL vmlinux 0x00000000 asn1_ber_decoder -EXPORT_SYMBOL_GPL vmlinux 0x00000000 asymmetric_key_generate_id -EXPORT_SYMBOL_GPL vmlinux 0x00000000 asymmetric_key_id_partial -EXPORT_SYMBOL_GPL vmlinux 0x00000000 asymmetric_key_id_same -EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_schedule -EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_schedule_domain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_cookie -EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_cookie_domain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_full -EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_full_domain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_unregister_domain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 atomic_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 atomic_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 atomic_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_classdev_to_container -EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_find_class_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 balloon_page_dequeue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 balloon_page_enqueue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bd_link_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bd_unlink_disk_holder -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bdev_direct_access -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bdev_read_page -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bdev_write_page -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bio_trim -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bit_wait_io_timeout -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bit_wait_timeout -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_abort_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_add_request_payload -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_end_request_err -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_execute_rq_nowait -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_insert_cloned_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_alloc_request_hctx -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_cancel_requeue_work -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_free_hctx_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_free_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_freeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_freeze_queue_start -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_register_disk -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_request_started -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_tags_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_unfreeze_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_bypass_end -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_bypass_start -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_dma_drain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_flush -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_flush_queueable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_lld_busy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_rq_timed_out -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_rq_timeout -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_rq_err_bytes -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_rq_prep_clone -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_rq_unprep_clone -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_set_queue_dying -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_unprep_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_update_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_aead_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_phys -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_virt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_virt_block -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkdev_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkdev_read_iter -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkdev_write_iter -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blockdev_superblock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_chain_cond_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 boot_cpu_physical_apicid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_create -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_create_from_user -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_realloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_select_runtime -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_skb_vlan_pop_proto -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_skb_vlan_push_proto -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_job_done -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_register_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_request_fn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_setup_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_unregister_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_create_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_find_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_find_device_by_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_for_each_dev -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_for_each_drv -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_get_device_klist -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_get_kset -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_rescan_devices -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_sort_breadthfirst -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 byte_rev_table -EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_netevent_notifiers -EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_rcu_sched -EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_srcu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cancel_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cgroup_attach_task_all -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cgroup_path_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cgrp_dfl_root -EXPORT_SYMBOL_GPL vmlinux 0x00000000 check_syslog_permissions -EXPORT_SYMBOL_GPL vmlinux 0x00000000 check_tsc_disabled -EXPORT_SYMBOL_GPL vmlinux 0x00000000 check_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_create_link -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_find_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cleanup_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x00000000 clflush_cache_range -EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevent_delta2ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevents_config_and_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevents_register_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevents_unbind_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 clone_private_mount -EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_bind_all -EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_del -EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_master_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_master_add_child -EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_master_add_with_match -EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_master_del -EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_unbind_all -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cond_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cond_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x00000000 console_drivers -EXPORT_SYMBOL_GPL vmlinux 0x00000000 copy_from_user_nmi -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_bit_bitmap -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_clock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_device_create -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_has_xfeatures -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_is_hotpluggable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_subsys -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_tlbstate -EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_up -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ablkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_aead_setauthsize -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_aead_setkey -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_aes_expand_key -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_aes_set_key -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_final -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_extsize -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_list -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_mod_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_sem -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_tested -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_ablkcipher -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_aead -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_ahash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_base -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_instance -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_instance2 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_rng -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_shash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_tfm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_attr_alg2 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_attr_alg_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_attr_u32 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_blkcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_chain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_check_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_create_tfm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_del_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_dequeue_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_destroy_tfm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_drop_spawn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_enqueue_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_find_alg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_fl_tab -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ft_tab -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_get_attr_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_get_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_get_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_givcipher_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_grab_aead -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_grab_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_grab_spawn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_has_alg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_hash_walk_done -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_hash_walk_first -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_il_tab -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_inc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_ahash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_shash_spawn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_spawn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_spawn2 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_it_tab -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_larval_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_larval_kill -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_larval_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_lookup_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_lookup_template -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_mod_get -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_mod_put -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_probing_notify -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_put_default_null_skcipher -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_put_default_rng -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_aead -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_aeads -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_ahash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_alg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_algs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_rng -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_rngs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_shash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_shashes -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_template -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_remove_final -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_remove_spawns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_rng_reset -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_digest -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_final -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_finup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_setkey -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_update -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shoot_alg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_spawn_tfm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_spawn_tfm2 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_tfm_in_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_aead -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_aeads -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_ahash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_akcipher -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_alg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_algs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_instance -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_pcomp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_rng -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_rngs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_shash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_shashes -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_template -EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_xor -EXPORT_SYMBOL_GPL vmlinux 0x00000000 current_is_async -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debug_locks -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debug_locks_off -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debug_locks_silent -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_atomic_t -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_blob -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_bool -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_devm_seqfile -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_dir -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_file_size -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_regset32 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_size_t -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_symlink -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_u16 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_u32 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_u64 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_u8 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_ulong -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_x16 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_x32 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_x64 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_x8 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_initialized -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_print_regs32 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_read_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_remove -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_remove_recursive -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_rename -EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_write_file_bool -EXPORT_SYMBOL_GPL vmlinux 0x00000000 dequeue_signal -EXPORT_SYMBOL_GPL vmlinux 0x00000000 destroy_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_change_net_namespace -EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_fill_metadata_dst -EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_forward_skb -EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_set_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_add_property_set -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_attach -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_bind_driver -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_vargs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_with_groups -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_del -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_dma_supported -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_find_child -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_for_each_child -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_for_each_child_reverse -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_get_child_node_count -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_get_dma_attr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_get_next_child_node -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_get_phy_mode -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_initialize -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_move -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_present -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_release_driver -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_remove_file_self -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_remove_property_set -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_rename -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_reprobe -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_show_bool -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_show_int -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_show_ulong -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_store_bool -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_store_int -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_store_ulong -EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_add_action -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_get_free_pages -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kasprintf -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kfree -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kmalloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kmemdup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kstrdup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_remove_action -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_alloc_node -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_close_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_find -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_for_each_res -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_get -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_open_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_release -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_release_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_remove -EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 dio_end_io -EXPORT_SYMBOL_GPL vmlinux 0x00000000 dirty_writeback_interval -EXPORT_SYMBOL_GPL vmlinux 0x00000000 disable_hardirq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 disable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_get_part -EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_map_sector_rcu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_part_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_part_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_part_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x00000000 dma_get_required_mask -EXPORT_SYMBOL_GPL vmlinux 0x00000000 do_exit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 do_trace_rcu_torture_read -EXPORT_SYMBOL_GPL vmlinux 0x00000000 drain_workqueue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_attach -EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_create_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_find -EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_find_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_for_each_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_remove_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 dummy_irq_chip -EXPORT_SYMBOL_GPL vmlinux 0x00000000 e820_any_mapped -EXPORT_SYMBOL_GPL vmlinux 0x00000000 each_symbol_section -EXPORT_SYMBOL_GPL vmlinux 0x00000000 edid_info -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efi_query_variable_store -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_delete -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_find -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_get -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_iter -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_iter_begin -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_iter_end -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_remove -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_set -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_set_get_size -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_set_safe -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_size -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_run_worker -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_validate -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_variable_is_removable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_work -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivars_kobject -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivars_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivars_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 elv_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 elv_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 emergency_restart -EXPORT_SYMBOL_GPL vmlinux 0x00000000 enable_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 errata -EXPORT_SYMBOL_GPL vmlinux 0x00000000 execute_in_process_context -EXPORT_SYMBOL_GPL vmlinux 0x00000000 exportfs_decode_fh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 exportfs_encode_fh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 exportfs_encode_inode_fh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fanout_mutex -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fb_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fib_select_path -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fib_table_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 file_ra_state_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_extend_vma -EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_get_pid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_module -EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_symbol -EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_vpid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 firmware_kobj -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fl6_merge_options -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fl6_sock_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fl6_update_dst -EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_kthread_worker -EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_work -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fpstate_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fpu__activate_curr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fpu__restore -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fpu__save -EXPORT_SYMBOL_GPL vmlinux 0x00000000 free_percpu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 free_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 free_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fs_kobj -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsnotify -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsnotify_get_cookie -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsstack_copy_attr_all -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsstack_copy_inode_size -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_handle_put -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_match_string -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_present -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_string -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_string_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_u16_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_u32_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_u64_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_u8_array -EXPORT_SYMBOL_GPL vmlinux 0x00000000 gcd -EXPORT_SYMBOL_GPL vmlinux 0x00000000 gdt_page -EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_access_phys -EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_fh_to_dentry -EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_fh_to_parent -EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 genlmsg_new_unicast -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_cached_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_cpu_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_current_tty -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_device_system_crosststamp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_kernel_page -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_kernel_pages -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_max_files -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_net_ns_by_fd -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_net_ns_by_pid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_pid_task -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_state_synchronize_rcu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_state_synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_task_comm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_task_mm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_task_pid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_user_pages_fast -EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_xsave_addr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 getboottime64 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_bad_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_fasteoi_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_level_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_mm_fault -EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_nested_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_simple_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hash_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hash_digest_size -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_active -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_cancel -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_forward -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_init_sleeper -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_start_range_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_try_to_cancel -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hvc_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hvc_instantiate -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hvc_kick -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hvc_poll -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hvc_remove -EXPORT_SYMBOL_GPL vmlinux 0x00000000 hw_breakpoint_restore -EXPORT_SYMBOL_GPL vmlinux 0x00000000 idle_notifier_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 idle_notifier_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 idr_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_xmit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_destroy_sock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_lookup_listener -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_sk_rebuild_header -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_addr2sockaddr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_bind_conflict -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_get_port -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_listen_start -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_listen_stop -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_reqsk_queue_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_route_child_sock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_route_req -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_ctl_sock_create -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_ehash_locks_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_ehash_nolisten -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_getpeer -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_hash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_hash_connect -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_hashinfo_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_peer_base_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_putpeer -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twsk_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twsk_purge -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twsk_put -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_unhash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_dummy_netdev -EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_srcu_struct -EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_user_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_uts_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 inode_sb_list_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_class -EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_event_from_user -EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_event_to_user -EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_create -EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_effect_from_user -EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_erase -EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_event -EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_upload -EXPORT_SYMBOL_GPL vmlinux 0x00000000 invalidate_bh_lrus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 invalidate_inode_pages2 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 invalidate_inode_pages2_range -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ioremap_page_range -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ioremap_uc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip4_datagram_release_cb -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_append_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_datagram_connect -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_datagram_connect_v6_only -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_datagram_recv_ctl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_datagram_send_ctl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_dst_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_flush_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_local_out -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_push_pending_frames -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_redirect -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_route_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_route_output_flags -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_sk_dst_lookup_flow -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_build_and_send_pkt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_local_out -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_route_output_flow -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_change_mtu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_changelink -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_delete_net -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_dellink -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_encap_setup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_get_stats64 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_init_net -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_need_metadata -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_newlink -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_rcv -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_setup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_uninit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_unneed_metadata -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iptunnel_handle_offloads -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iptunnel_metadata_reply -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iptunnel_pull_header -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iptunnel_xmit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv4_redirect -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv4_sk_redirect -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv4_sk_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv4_update_pmtu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_dup_options -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_find_tlv -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_fixup_options -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_opt_accepted -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_proxy_select_ident -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_recv_error -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_stub -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_chip_ack_parent -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_direct_mapping -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_fwspec_mapping -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_mapping -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_of_mapping -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_strict_mappings -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_dispose_mapping -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_add_legacy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_add_simple -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_alloc_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_associate -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_associate_many -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_free_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_remove -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_simple_ops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_xlate_onecell -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_xlate_onetwocell -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_xlate_twocell -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_find_mapping -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_find_matching_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_free_descs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_get_irq_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_get_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_modify_status -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_affinity_hint -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_affinity_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_chained_handler_and_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_chip_and_handler_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_default_host -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_irqchip_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_vcpu_affinity -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_ts_restore -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_ts_save -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_wake_thread -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_queue_on -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_run -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_sync -EXPORT_SYMBOL_GPL vmlinux 0x00000000 irqd_cfg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 is_hpet_enabled -EXPORT_SYMBOL_GPL vmlinux 0x00000000 is_skb_forwardable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_add_session -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_alloc_session -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_block_scsi_eh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_block_session -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_complete_pdu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_complete_scsi_task -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_bind -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_error_event -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_failure -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_get_addr_param -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_get_param -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_login_event -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_send_pdu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_setup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_start -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_stop -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_teardown -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_conn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_flashnode_conn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_flashnode_sess -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_iface -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_session -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_all_flashnode -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_conn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_flashnode_sess -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_iface -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_session -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_eh_abort -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_eh_device_reset -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_eh_recover_target -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_eh_session_reset -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_eh_target_reset -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_find_flashnode_conn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_find_flashnode_sess -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_flashnode_bus_match -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_free_session -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_get_discovery_parent_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_get_ipaddress_state_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_get_port_speed_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_get_port_state_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_get_router_state_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_for_each_session -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_get_param -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_remove -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_set_param -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_is_flashnode_conn_dev -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_is_session_dev -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_is_session_online -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_itt_to_ctask -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_itt_to_task -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_lookup_endpoint -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_offload_mesg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_ping_comp_event -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_pool_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_pool_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_post_host_event -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_prep_data_out_pdu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_put_task -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_queuecommand -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_recv_pdu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_register_transport -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_remove_session -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_requeue_task -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_scan_finished -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_segment_init_linear -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_segment_seek_sg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_chkready -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_event -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_failure -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_get_param -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_recovery_timedout -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_setup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_teardown -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_set_param -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_suspend_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_suspend_tx -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_switch_str_param -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_target_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_cleanup_task -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_conn_get_stats -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_conn_setup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_conn_teardown -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_dgst_header -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_hdr_recv_prep -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_r2tpool_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_r2tpool_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_recv_segment_is_hdr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_recv_skb -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_segment_done -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_segment_unmap -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_set_max_r2t -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_task_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_task_xmit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_unblock_session -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_unregister_transport -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_update_cmdsn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_verify_itt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kcrypto_wq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kern_mount_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_fpu_begin -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_fpu_end -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_halt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_kobj -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_power_off -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_restart -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_find_and_get_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_get -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_path -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_path_from_node -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_put -EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_being_used_for -EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_set_timeout -EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_type_asymmetric -EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_type_logon -EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_type_user -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kfree_call_rcu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kick_all_cpus_sync -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kick_process -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kill_pid_info_as_cred -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_before -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_behind -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_head -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_tail -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_del -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_iter_init_node -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_next -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_node_attached -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_prev -EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_remove -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_get_line -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_rewind -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobj_sysfs_ops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_get_path -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_init_and_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_move -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_rename -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_uevent -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_uevent_env -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kset_create_and_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_freezable_should_stop -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_park -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_parkme -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_should_park -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_unpark -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_worker_fn -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_add_safe -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_mono_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_raw -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_raw_fast_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_real_seconds -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_resolution_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_seconds -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_snapshot -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_ts64 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_with_offset -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_mono_to_any -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kvm_async_pf_task_wait -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kvm_async_pf_task_wake -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kvm_para_available -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kvm_read_and_reset_pf_reason -EXPORT_SYMBOL_GPL vmlinux 0x00000000 kvm_set_posted_intr_wakeup_handler -EXPORT_SYMBOL_GPL vmlinux 0x00000000 lcm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 lcm_not_zero -EXPORT_SYMBOL_GPL vmlinux 0x00000000 leave_mm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_count_node -EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_count_one -EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_del -EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_isolate -EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_isolate_move -EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_walk_node -EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_walk_one -EXPORT_SYMBOL_GPL vmlinux 0x00000000 llist_add_batch -EXPORT_SYMBOL_GPL vmlinux 0x00000000 llist_del_first -EXPORT_SYMBOL_GPL vmlinux 0x00000000 llist_reverse_order -EXPORT_SYMBOL_GPL vmlinux 0x00000000 local_apic_timer_c2_ok -EXPORT_SYMBOL_GPL vmlinux 0x00000000 local_clock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 local_touch_nmi -EXPORT_SYMBOL_GPL vmlinux 0x00000000 locks_alloc_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 locks_release_private -EXPORT_SYMBOL_GPL vmlinux 0x00000000 look_up_OID -EXPORT_SYMBOL_GPL vmlinux 0x00000000 lookup_address -EXPORT_SYMBOL_GPL vmlinux 0x00000000 map_vm_area -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mark_mounts_for_expiry -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mark_tsc_unstable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 memalloc_socks -EXPORT_SYMBOL_GPL vmlinux 0x00000000 metadata_dst_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 metadata_dst_alloc_percpu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mm_kobj -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mmput -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_clone_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_drop_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_want_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_want_write_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mod_delayed_work_on -EXPORT_SYMBOL_GPL vmlinux 0x00000000 modify_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x00000000 module_mutex -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_cmp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_cmp_ui -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_get_buffer -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_get_nbits -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_powm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_read_buffer -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_read_from_buffer -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_read_raw_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_read_raw_from_sgl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_set_buffer -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_write_to_sgl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ms_hyperv -EXPORT_SYMBOL_GPL vmlinux 0x00000000 msi_desc_to_pci_sysdata -EXPORT_SYMBOL_GPL vmlinux 0x00000000 mxcsr_feature_mask -EXPORT_SYMBOL_GPL vmlinux 0x00000000 n_tty_inherit_ops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 name_to_dev_t -EXPORT_SYMBOL_GPL vmlinux 0x00000000 napi_by_id -EXPORT_SYMBOL_GPL vmlinux 0x00000000 napi_hash_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 napi_hash_del -EXPORT_SYMBOL_GPL vmlinux 0x00000000 nd_tbl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ndo_dflt_bridge_getlink -EXPORT_SYMBOL_GPL vmlinux 0x00000000 net_namespace_list -EXPORT_SYMBOL_GPL vmlinux 0x00000000 net_ns_type_operations -EXPORT_SYMBOL_GPL vmlinux 0x00000000 netdev_is_rx_handler_busy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 netdev_rx_handler_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 netdev_rx_handler_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 netdev_set_default_ethtool_ops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 netlink_add_tap -EXPORT_SYMBOL_GPL vmlinux 0x00000000 netlink_has_listeners -EXPORT_SYMBOL_GPL vmlinux 0x00000000 netlink_remove_tap -EXPORT_SYMBOL_GPL vmlinux 0x00000000 nl_table -EXPORT_SYMBOL_GPL vmlinux 0x00000000 nl_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 no_action -EXPORT_SYMBOL_GPL vmlinux 0x00000000 noop_backing_dev_info -EXPORT_SYMBOL_GPL vmlinux 0x00000000 nr_free_buffer_pages -EXPORT_SYMBOL_GPL vmlinux 0x00000000 nr_irqs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 nsecs_to_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_css -EXPORT_SYMBOL_GPL vmlinux 0x00000000 oops_begin -EXPORT_SYMBOL_GPL vmlinux 0x00000000 orderly_poweroff -EXPORT_SYMBOL_GPL vmlinux 0x00000000 orderly_reboot -EXPORT_SYMBOL_GPL vmlinux 0x00000000 out_of_line_wait_on_bit_timeout -EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_cache_async_readahead -EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_cache_sync_readahead -EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_endio -EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_is_ram -EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_mkclean -EXPORT_SYMBOL_GPL vmlinux 0x00000000 panic_timeout -EXPORT_SYMBOL_GPL vmlinux 0x00000000 param_ops_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x00000000 param_set_bool_enable_only -EXPORT_SYMBOL_GPL vmlinux 0x00000000 part_round_stats -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pat_enabled -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_add_dynid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_assign_unassigned_bridge_resources -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_assign_unassigned_bus_resources -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_bus_add_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_bus_max_busnr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_bus_resource_n -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_bus_sem -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_cfg_access_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_cfg_access_trylock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_cfg_access_unlock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_check_and_mask_intx -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_check_and_unmask_intx -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_common_swizzle -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_create_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_create_slot -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_destroy_slot -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_dev_run_wake -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_device_is_present -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_disable_rom -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_enable_rom -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_find_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_find_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_find_next_capability -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_find_next_ext_capability -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_find_next_ht_capability -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_generic_config_read -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_generic_config_read32 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_generic_config_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_generic_config_write32 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_get_hp_params -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_hp_add_bridge -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_hp_change_slot_info -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_hp_create_module_link -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_hp_deregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_hp_remove_module_link -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_ignore_hotplug -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_intx -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_intx_mask_supported -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_iomap_wc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_iomap_wc_range -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_ioremap_bar -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_ioremap_wc_bar -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_load_and_free_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_load_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_lock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_msi_create_irq_domain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_msi_mask_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_msi_prepare -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_msi_set_desc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_msi_unmask_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_power_names -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_probe_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_probe_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_remove_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_rescan_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_reset_bridge_secondary_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_restore_msi_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_scan_child_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_set_cacheline_size -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_set_pcie_reset_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_slots_kset -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_stop_and_remove_bus_device_locked -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_stop_root_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_store_saved_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_try_reset_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_try_reset_function -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_try_reset_slot -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_unlock_rescan_remove -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_read_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_read_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_read_config_word -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_write_config_byte -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_write_config_dword -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_write_config_word -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_vpd_find_info_keyword -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_vpd_find_tag -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_walk_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_write_msi_msg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pcibios_scan_specific_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pcie_bus_configure_settings -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pcie_update_link_speed -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pcpu_base_addr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_down_read -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_down_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ida_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ida_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ida_for_each_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ida_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ida_free_tags -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ref_exit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ref_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ref_kill_and_confirm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ref_reinit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_up_read -EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_up_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_assign_events -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_check_microcode -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_create_kernel_counter -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_disable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_enable -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_read_value -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_refresh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_release_kernel -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_get_x86_pmu_capability -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_guest_get_msrs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_pmu_migrate_context -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_pmu_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_pmu_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_register_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_swevent_get_recursion_context -EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_unregister_guest_info_callbacks -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pgprot_writecombine -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pgprot_writethrough -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pid_nr_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pid_vnr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_bind -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_close -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_common_sendmsg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_err -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_get_port -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_getfrag -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_hash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_init_sock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_proc_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_proc_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_queue_rcv_skb -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_rcv -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_recvmsg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_seq_fops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_unhash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pingv6_ops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pingv6_prot -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkcs7_free_message -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkcs7_get_content_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkcs7_parse_message -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkcs7_validate_trust -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkcs7_verify -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkey_algo_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkey_id_type_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_add_devices -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_bus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add_properties -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add_resources -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_del -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_put -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_register_full -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_driver_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_irq_byname -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_resource -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_resource_byname -EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_unregister_drivers -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_add_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_add_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_remove_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_remove_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_request_active -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_update_request -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pmc_atom_read -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pmc_atom_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_acl_access_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_acl_create -EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_acl_default_xattr_handler -EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_clock_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_clock_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_timer_event -EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_timers_register_clock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 print_context_stack -EXPORT_SYMBOL_GPL vmlinux 0x00000000 print_context_stack_bp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 probe_kernel_read -EXPORT_SYMBOL_GPL vmlinux 0x00000000 probe_kernel_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 proc_get_parent_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 proc_mkdir_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 process_srcu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pskb_put -EXPORT_SYMBOL_GPL vmlinux 0x00000000 public_key_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 public_key_subtype -EXPORT_SYMBOL_GPL vmlinux 0x00000000 public_key_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x00000000 put_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 put_pid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 put_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pv_apic_ops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pv_info -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pv_time_ops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pvclock_gtod_register_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 pvclock_gtod_unregister_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 queue_kthread_work -EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_hash_sk -EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_next -EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_open -EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_start -EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_stop -EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_unhash_sk -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_all_qs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_barrier_bh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_barrier_sched -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_completed_bh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_completed_sched -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_started -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_started_bh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_started_sched -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_bh_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_expedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_gp_is_expedited -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_idle_enter -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_idle_exit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_is_watching -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_note_context_switch -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_qs_ctr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_sched_force_quiescent_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_scheduler_active -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_unexpedite_gp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcutorture_get_gp_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcutorture_record_progress -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcutorture_record_test_transition -EXPORT_SYMBOL_GPL vmlinux 0x00000000 ref_module -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_net_sysctl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_user_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x00000000 remove_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 replace_page_cache_page -EXPORT_SYMBOL_GPL vmlinux 0x00000000 request_any_context_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 request_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_free_and_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_insert_rehash -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_insert_slow -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_walk_exit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_walk_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_walk_next -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_walk_start -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_walk_stop -EXPORT_SYMBOL_GPL vmlinux 0x00000000 root_device_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies -EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies_relative -EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies_up -EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies_up_relative -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rsa_free_key -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rsa_parse_priv_key -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rsa_parse_pub_key -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rsa_verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_lock_interruptible -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_timed_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_trylock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_unlock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_ktime_to_tm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_tm_to_ktime -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_af_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_af_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_delete_link -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_link_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_link_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_put_cacheinfo -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_unregister_all -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_bytes_sglen -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_copychunks -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_done -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_ffwd -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_map -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_map_and_copy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_start -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_clock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_clock_idle_sleep_event -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_clock_idle_wakeup_event -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_setattr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_setscheduler -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_setscheduler_nocheck -EXPORT_SYMBOL_GPL vmlinux 0x00000000 schedule_hrtimeout -EXPORT_SYMBOL_GPL vmlinux 0x00000000 schedule_hrtimeout_range -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_device_from_queue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_eh_get_sense -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_eh_ready_devs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_flush_work -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_get_vpd_page -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_internal_device_block -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_internal_device_unblock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_ioctl_block_when_processing_errors -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_mode_select -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_queue_work -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_schedule_eh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_target_block -EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_target_unblock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdev_evt_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdev_evt_send -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdev_evt_send_simple -EXPORT_SYMBOL_GPL vmlinux 0x00000000 secure_ipv4_port_ephemeral -EXPORT_SYMBOL_GPL vmlinux 0x00000000 seq_open_net -EXPORT_SYMBOL_GPL vmlinux 0x00000000 seq_release_net -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_clear_and_reinit_fifos -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_do_set_mctrl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_do_shutdown -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_do_startup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_get_port -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_handle_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_init_port -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_modem_status -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_rpm_get -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_rpm_put -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_rx_chars -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_set_defaults -EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_tx_chars -EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_cpus_allowed_ptr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_memory_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_memory_wt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_pages_array_wt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_personality_ia32 -EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_primary_fwnode -EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_task_ioprio -EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_timer_slack -EXPORT_SYMBOL_GPL vmlinux 0x00000000 setup_APIC_eilvt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 setup_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sg_scsi_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_ahash_digest -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_ahash_finup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_ahash_update -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_attr_alg -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_free_instance -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_register_instance -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_add_seals -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_file_setup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_get_seals -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_read_mapping_page_gfp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_truncate_range -EXPORT_SYMBOL_GPL vmlinux 0x00000000 show_class_attr_string -EXPORT_SYMBOL_GPL vmlinux 0x00000000 show_rcu_gp_kthreads -EXPORT_SYMBOL_GPL vmlinux 0x00000000 si_mem_available -EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_open -EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_read -EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_release -EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 single_open_net -EXPORT_SYMBOL_GPL vmlinux 0x00000000 single_release_net -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_clear_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_clone_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_set_memalloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_setup_caps -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_append_pagefrags -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_complete_tx_timestamp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_complete_wifi_ack -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_copy_ubufs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_cow_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_gso_transport_seglen -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_morph -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_partial_csum_set -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_pull_rcsum -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_scrub_packet -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_segment -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_splice_bits -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_to_sgvec -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_to_sgvec_nomark -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_tstamp_tx -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_zerocopy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_zerocopy_headlen -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_alloc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_exit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_free -EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 slow_virt_to_phys -EXPORT_SYMBOL_GPL vmlinux 0x00000000 smp_call_function_any -EXPORT_SYMBOL_GPL vmlinux 0x00000000 smp_call_function_single_async -EXPORT_SYMBOL_GPL vmlinux 0x00000000 smp_ops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 smpboot_register_percpu_thread_cpumask -EXPORT_SYMBOL_GPL vmlinux 0x00000000 smpboot_unregister_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x00000000 smpboot_update_cpumask_percpu_thread -EXPORT_SYMBOL_GPL vmlinux 0x00000000 snmp_fold_field -EXPORT_SYMBOL_GPL vmlinux 0x00000000 snmp_get_cpu_field -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_check_cookie -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_put_meminfo -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_register_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_save_cookie -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_unregister_inet_compat -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_gen_put -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_prot_inuse_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_prot_inuse_get -EXPORT_SYMBOL_GPL vmlinux 0x00000000 splice_to_pipe -EXPORT_SYMBOL_GPL vmlinux 0x00000000 split_page -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sprint_OID -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sprint_oid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_barrier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_batches_completed -EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_init_notifier_head -EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_notifier_call_chain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_notifier_chain_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_notifier_chain_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 static_key_initialized -EXPORT_SYMBOL_GPL vmlinux 0x00000000 stop_machine -EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_dev_iter_exit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_dev_iter_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_dev_iter_next -EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_find_device_by_id -EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_interface_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_interface_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_system_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_virtual_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_map_page -EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_nr_tbl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_tbl_map_single -EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_tbl_sync_single -EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_tbl_unmap_single -EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_unmap_page -EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_rcu_bh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_rcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_sched -EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_sched_expedited -EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_srcu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_srcu_expedited -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysctl_vfs_cache_pressure -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_add_file_to_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_add_link_to_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_chmod_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_files -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_groups -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_link -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_merge_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_notify -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_bin_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_file_from_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_file_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_files -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_groups -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_link -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_link_from_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_mount_point -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_rename_link_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_unmerge_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_update_group -EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_freezable_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_freezable_wq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_highpri_wq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_long_wq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_power_efficient_wq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_trusted_keyring -EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_unbound_wq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_verify_data -EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_active_pid_ns -EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_cgroup_path -EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_cputime_adjusted -EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_user_regset_view -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tasklet_hrtimer_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_ca_get_key_by_name -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_ca_get_name_by_key -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_ca_openreq_child -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_cong_avoid_ai -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_death_row -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_done -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_fetch_timewait_stamp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_get_info -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_orphan_count -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_peer_is_proven -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_register_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_reno_cong_avoid -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_reno_ssthresh -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_send_ack -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_set_state -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_slow_start -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_twsk_destructor -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_twsk_unique -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_unregister_congestion_control -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tick_broadcast_control -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tick_broadcast_oneshot_control -EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecounter_cyc2time -EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecounter_init -EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecounter_read -EXPORT_SYMBOL_GPL vmlinux 0x00000000 timerqueue_add -EXPORT_SYMBOL_GPL vmlinux 0x00000000 timerqueue_del -EXPORT_SYMBOL_GPL vmlinux 0x00000000 timerqueue_iterate_next -EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_add_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_class_register -EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_class_unregister -EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_configure_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_destroy_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_remove_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_setup_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_lock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_request_room -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_set_limit -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_space_avail -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_unlock_exclusive -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_get_pgrp -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_init_termios -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_deref -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_flush -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_ref -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_ref_wait -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_mode_ioctl -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_perform_flush -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_install -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_link_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_register_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_tty_hangup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_prepare_flip_string -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_put_char -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_register_device_attr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_set_termios -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_standard_install -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_termios_encode_baud_rate -EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_wakeup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_console_write -EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_handle_cts_change -EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_handle_dcd_change -EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_insert_char -EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_parse_earlycon -EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_parse_options -EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_set_options -EXPORT_SYMBOL_GPL vmlinux 0x00000000 udp4_hwcsum -EXPORT_SYMBOL_GPL vmlinux 0x00000000 udp4_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 udp6_lib_lookup -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unix_inq_len -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unix_outq_len -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unix_peer_get -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unix_socket_table -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unix_table_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unmap_kernel_range -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unmap_kernel_range_noflush -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_acpi_bus_type -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_asymmetric_key_parser -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_die_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_net_sysctl_table -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_netevent_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_nmi_handler -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_oom_notifier -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_pernet_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_pernet_subsys -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_syscore_ops -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_virtio_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_virtio_driver -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_wide_hw_breakpoint -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unshare_fs_struct -EXPORT_SYMBOL_GPL vmlinux 0x00000000 unuse_mm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 use_mm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 used_vectors -EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_describe -EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_destroy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_free_preparse -EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_preparse -EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_read -EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_update -EXPORT_SYMBOL_GPL vmlinux 0x00000000 usermodehelper_read_lock_wait -EXPORT_SYMBOL_GPL vmlinux 0x00000000 usermodehelper_read_trylock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 usermodehelper_read_unlock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 uuid_be_gen -EXPORT_SYMBOL_GPL vmlinux 0x00000000 uuid_le_gen -EXPORT_SYMBOL_GPL vmlinux 0x00000000 validate_xmit_skb_list -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vector_used_by_percpu_irq -EXPORT_SYMBOL_GPL vmlinux 0x00000000 verify_signature -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_cancel_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_fallocate -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_getxattr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_kern_mount -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_listxattr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_lock_file -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_removexattr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_setlease -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_setxattr -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_submount -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_test_lock -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_truncate -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtio_break_device -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtio_check_driver_offered_feature -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtio_config_changed -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_add_inbuf -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_add_outbuf -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_add_sgs -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_detach_unused_buf -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_disable_cb -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_enable_cb -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_enable_cb_delayed -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_enable_cb_prepare -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_get_avail -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_get_buf -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_get_used -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_get_vring_size -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_is_broken -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_kick -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_kick_prepare -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_notify -EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_poll -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vm_memory_committed -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vm_unmap_aliases -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vprintk_default -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vring_del_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vring_interrupt -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vring_new_virtqueue -EXPORT_SYMBOL_GPL vmlinux 0x00000000 vring_transport_features -EXPORT_SYMBOL_GPL vmlinux 0x00000000 wait_for_device_probe -EXPORT_SYMBOL_GPL vmlinux 0x00000000 wait_for_stable_page -EXPORT_SYMBOL_GPL vmlinux 0x00000000 wait_on_page_bit_killable_timeout -EXPORT_SYMBOL_GPL vmlinux 0x00000000 wake_up_all_idle_cpus -EXPORT_SYMBOL_GPL vmlinux 0x00000000 wakeme_after_rcu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 wb_writeout_inc -EXPORT_SYMBOL_GPL vmlinux 0x00000000 work_busy -EXPORT_SYMBOL_GPL vmlinux 0x00000000 work_on_cpu -EXPORT_SYMBOL_GPL vmlinux 0x00000000 workqueue_congested -EXPORT_SYMBOL_GPL vmlinux 0x00000000 workqueue_set_max_active -EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_cert_parse -EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_check_signature -EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_decode_time -EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_free_certificate -EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_get_sig_params -EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_request_asymmetric_key -EXPORT_SYMBOL_GPL vmlinux 0x00000000 x86_hyper_kvm -EXPORT_SYMBOL_GPL vmlinux 0x00000000 x86_platform -EXPORT_SYMBOL_GPL vmlinux 0x00000000 x86_vector_domain -EXPORT_SYMBOL_GPL vmlinux 0x00000000 xattr_getsecurity -EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_inner_extract_output -EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_local_error -EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_output -EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_output_resume -EXPORT_SYMBOL_GPL vmlinux 0x00000000 xstate_size -EXPORT_SYMBOL_GPL vmlinux 0x00000000 yield_to -EXPORT_SYMBOL_GPL vmlinux 0x00000000 zap_vma_ptes reverted: --- linux-kvm-4.4.0/debian.kvm/abi/4.4.0-1003.8/amd64/kvm.compiler +++ linux-kvm-4.4.0.orig/debian.kvm/abi/4.4.0-1003.8/amd64/kvm.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.kvm/abi/4.4.0-1003.8/amd64/kvm.modules +++ linux-kvm-4.4.0.orig/debian.kvm/abi/4.4.0-1003.8/amd64/kvm.modules @@ -1,160 +0,0 @@ -9p -9pnet -adfs -affs -af-rxrpc -arc4 -async_pq -async_tx -async_xor -aufs -befs -bfs -btrfs -cbc -ceph -chipreg -cifs -coda -configfs -crc-itu-t -crc-t10dif -crct10dif_common -crct10dif_generic -cryptoloop -ctr -cts -deflate -des_generic -dm-mod -dns_resolver -drbg -ecb -ecryptfs -efivarfs -efs -encrypted-keys -exofs -f2fs -fat -freevxfs -fuse -gf128mul -gfs2 -grace -hfs -hfsplus -hmac -hpfs -jffs2 -jfs -jitterentropy_rng -kafs -libceph -libcrc32c -libore -libosd -lockd -loop -lzo -lzo_compress -lzo_decompress -mac-celtic -mac-centeuro -mac-croatian -mac-cyrillic -mac-gaelic -mac-greek -mac-iceland -mac-inuit -mac-roman -mac-romanian -mac-turkish -md4 -md-mod -minix -msdos -mtd -ncpfs -nfs -nfsv2 -nfsv3 -nilfs2 -nls_ascii -nls_cp1250 -nls_cp1251 -nls_cp1255 -nls_cp437 -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-1 -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 -ntfs -ocfs2 -ocfs2_dlm -ocfs2_dlmfs -ocfs2_nodemanager -ocfs2_stackglue -ocfs2_stack_o2cb -omfs -osd -overlay -pkcs7_test_key -qnx4 -qnx6 -quota_tree -raid6_pq -reiserfs -romfs -seqiv -sha256_generic -spl -splat -sunrpc -sysv -target_core_mod -ubi -ubifs -udf -ufs -vfat -xfs -xor -xts -zavl -zcommon -zfs -znvpair -zpios -zunicode diff -u linux-kvm-4.4.0/debian.kvm/changelog linux-kvm-4.4.0/debian.kvm/changelog --- linux-kvm-4.4.0/debian.kvm/changelog +++ linux-kvm-4.4.0/debian.kvm/changelog @@ -1,3 +1,540 @@ +linux-kvm (4.4.0-1005.10) xenial; urgency=low + + * linux-kvm: 4.4.0-1005.10 -proposed tracker (LP: #1713469) + + * Include Broadcom GPL modules in Xenial Kernel (LP: #1665783) + - [config] update config for master changes + + * Backport more recent Broadcom bnxt_en driver (LP: #1711056) + - [config] update config for master changes + + [ 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 + + [ 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 Wed, 30 Aug 2017 10:15:28 +0200 + linux-kvm (4.4.0-1004.9) xenial; urgency=low * linux-kvm: 4.4.0-1004.9 -proposed tracker (LP: #1712881) diff -u linux-kvm-4.4.0/debian.kvm/config/config.common.ubuntu linux-kvm-4.4.0/debian.kvm/config/config.common.ubuntu --- linux-kvm-4.4.0/debian.kvm/config/config.common.ubuntu +++ linux-kvm-4.4.0/debian.kvm/config/config.common.ubuntu @@ -1,1619 +1,1108 @@ # -# Automatically generated file; DO NOT EDIT. -# Linux/x86_64 4.4.0-1001-kvm Kernel Configuration +# Common config options automatically generated by splitconfig.pl # CONFIG_64BIT=y -CONFIG_X86_64=y -CONFIG_X86=y -CONFIG_INSTRUCTION_DECODER=y -CONFIG_PERF_EVENTS_INTEL_UNCORE=y -CONFIG_OUTPUT_FORMAT="elf64-x86-64" +# CONFIG_6LOWPAN is not set +CONFIG_9P_FS=m +# CONFIG_9P_FS_POSIX_ACL is not set +# CONFIG_9P_FS_SECURITY is not set +# CONFIG_ABX500_CORE is not set +# CONFIG_ACCESSIBILITY is not set +CONFIG_ACPI=y +# CONFIG_ACPI_AC is not set +# CONFIG_ACPI_APEI is not set +# CONFIG_ACPI_BATTERY is not set +# CONFIG_ACPI_BGRT is not set +CONFIG_ACPI_BUTTON=y +# CONFIG_ACPI_CONTAINER is not set +# CONFIG_ACPI_CUSTOM_DSDT is not set +CONFIG_ACPI_CUSTOM_DSDT_FILE="" +# CONFIG_ACPI_CUSTOM_METHOD is not set +# CONFIG_ACPI_DEBUG is not set +# CONFIG_ACPI_DEBUGGER is not set +# CONFIG_ACPI_DOCK is not set +# CONFIG_ACPI_EC_DEBUGFS is not set +# CONFIG_ACPI_HED is not set +CONFIG_ACPI_HOTPLUG_IOAPIC=y +# CONFIG_ACPI_INITRD_TABLE_OVERRIDE is not set +CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y +# CONFIG_ACPI_NFIT is not set +# CONFIG_ACPI_PCI_SLOT is not set +# CONFIG_ACPI_PROCESSOR is not set +# CONFIG_ACPI_PROCFS_POWER is not set +# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set +# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set +# CONFIG_ACPI_SBS is not set +CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y +CONFIG_ADFS_FS=m +# CONFIG_ADFS_FS_RW is not set +# CONFIG_ADVISE_SYSCALLS is not set +CONFIG_AFFS_FS=m +# CONFIG_AFS_DEBUG is not set +CONFIG_AFS_FS=m +CONFIG_AF_RXRPC=m +# CONFIG_AF_RXRPC_DEBUG is not set +# CONFIG_AGP is not set +# CONFIG_AIO is not set +# CONFIG_ALLOW_DEV_COREDUMP is not set +CONFIG_AMD_NB=y +# CONFIG_ANDROID is not set +CONFIG_ANON_INODES=y +# CONFIG_APPLICOM is not set +CONFIG_ARCH_CLOCKSOURCE_DATA=y CONFIG_ARCH_DEFCONFIG="arch/x86/configs/x86_64_defconfig" -CONFIG_LOCKDEP_SUPPORT=y -CONFIG_STACKTRACE_SUPPORT=y -CONFIG_HAVE_LATENCYTOP_SUPPORT=y -CONFIG_MMU=y -CONFIG_NEED_DMA_MAP_STATE=y -CONFIG_NEED_SG_DMA_LENGTH=y -CONFIG_GENERIC_HWEIGHT=y -CONFIG_RWSEM_XCHGADD_ALGORITHM=y -CONFIG_GENERIC_CALIBRATE_DELAY=y -CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_DISCARD_MEMBLOCK=y +CONFIG_ARCH_DMA_ADDR_T_64BIT=y +CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y +CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y +CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y CONFIG_ARCH_HAS_CACHE_LINE_SIZE=y -CONFIG_HAVE_SETUP_PER_CPU_AREA=y -CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y -CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_ARCH_HAS_CPU_RELAX=y +CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y +CONFIG_ARCH_HAS_ELF_RANDOMIZE=y +CONFIG_ARCH_HAS_FAST_MULTIPLIER=y +CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y +CONFIG_ARCH_HAS_MMIO_FLUSH=y +CONFIG_ARCH_HAS_PMEM_API=y +CONFIG_ARCH_HAS_SG_CHAIN=y +CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y CONFIG_ARCH_HIBERNATION_POSSIBLE=y +CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11" +CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y +CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y +CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set +CONFIG_ARCH_PHYS_ADDR_T_64BIT=y +# CONFIG_ARCH_RANDOM is not set +CONFIG_ARCH_SELECT_MEMORY_MODEL=y +CONFIG_ARCH_SPARSEMEM_DEFAULT=y +CONFIG_ARCH_SPARSEMEM_ENABLE=y +CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y +CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y +CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y +CONFIG_ARCH_SUPPORTS_INT128=y +CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y +CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y +CONFIG_ARCH_SUPPORTS_UPROBES=y CONFIG_ARCH_SUSPEND_POSSIBLE=y -CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_USE_BUILTIN_BSWAP=y +CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y +CONFIG_ARCH_USE_QUEUED_RWLOCKS=y +CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y +CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y +CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y +CONFIG_ARCH_WANT_FRAME_POINTERS=y CONFIG_ARCH_WANT_GENERAL_HUGETLB=y -CONFIG_ZONE_DMA32=y +CONFIG_ARCH_WANT_HUGE_PMD_SHARE=y +CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y +# CONFIG_ARCNET is not set +CONFIG_ASN1=y +CONFIG_ASSOCIATIVE_ARRAY=y +CONFIG_ASYMMETRIC_KEY_TYPE=y +CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y +CONFIG_ASYNC_CORE=m +CONFIG_ASYNC_PQ=m +CONFIG_ASYNC_XOR=m +# CONFIG_ATA is not set +# CONFIG_ATALK is not set +# CONFIG_ATA_OVER_ETH is not set +# CONFIG_ATM is not set +# CONFIG_ATMEL_PIT is not set +# CONFIG_ATOMIC64_SELFTEST is not set +# CONFIG_AUDIT is not set CONFIG_AUDIT_ARCH=y -CONFIG_ARCH_SUPPORTS_OPTIMIZED_INLINING=y -CONFIG_ARCH_SUPPORTS_DEBUG_PAGEALLOC=y -CONFIG_X86_64_SMP=y -CONFIG_ARCH_HWEIGHT_CFLAGS="-fcall-saved-rdi -fcall-saved-rsi -fcall-saved-rdx -fcall-saved-rcx -fcall-saved-r8 -fcall-saved-r9 -fcall-saved-r10 -fcall-saved-r11" -CONFIG_ARCH_SUPPORTS_UPROBES=y -CONFIG_FIX_EARLYCON_MEM=y -CONFIG_PGTABLE_LEVELS=4 -CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" -CONFIG_IRQ_WORK=y +# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set +CONFIG_AUFS_BDEV_LOOP=y +# CONFIG_AUFS_BRANCH_MAX_1023 is not set +CONFIG_AUFS_BRANCH_MAX_127=y +# CONFIG_AUFS_BRANCH_MAX_32767 is not set +# CONFIG_AUFS_BRANCH_MAX_511 is not set +# CONFIG_AUFS_BR_FUSE is not set +CONFIG_AUFS_BR_HFSPLUS=y +# CONFIG_AUFS_BR_RAMFS is not set +# CONFIG_AUFS_DEBUG is not set +# CONFIG_AUFS_EXPORT is not set +# CONFIG_AUFS_FHSM is not set +CONFIG_AUFS_FS=m +# CONFIG_AUFS_HNOTIFY is not set +# CONFIG_AUFS_RDU is not set +CONFIG_AUFS_SBILIST=y +# CONFIG_AUFS_SHWH is not set +# CONFIG_AUFS_XATTR is not set +CONFIG_AUTOFS4_FS=y +# CONFIG_AUXDISPLAY is not set +# CONFIG_BACKLIGHT_LCD_SUPPORT is not set +# CONFIG_BACKTRACE_SELF_TEST is not set +# CONFIG_BASE_FULL is not set +CONFIG_BASE_SMALL=1 +# CONFIG_BATMAN_ADV is not set +# CONFIG_BCACHE is not set +# CONFIG_BCMA is not set +CONFIG_BCMA_POSSIBLE=y +# CONFIG_BCM_KONA_USB2_PHY is not set +# CONFIG_BE2ISCSI is not set +# CONFIG_BEFS_DEBUG is not set +CONFIG_BEFS_FS=m +CONFIG_BFS_FS=m +# CONFIG_BIG_KEYS is not set +# CONFIG_BINARY_PRINTF is not set +CONFIG_BINFMT_ELF=y +# CONFIG_BINFMT_MISC is not set +CONFIG_BINFMT_SCRIPT=y +CONFIG_BITREVERSE=y +# CONFIG_BLK_CGROUP is not set +CONFIG_BLK_CMDLINE_PARSER=y +# CONFIG_BLK_CPQ_CISS_DA is not set +CONFIG_BLK_DEV=y +# CONFIG_BLK_DEV_3W_XXXX_RAID is not set +CONFIG_BLK_DEV_BSG=y +CONFIG_BLK_DEV_BSGLIB=y +# CONFIG_BLK_DEV_COW_COMMON is not set +CONFIG_BLK_DEV_CRYPTOLOOP=m +# CONFIG_BLK_DEV_DAC960 is not set +CONFIG_BLK_DEV_DM=m +CONFIG_BLK_DEV_DM_BUILTIN=y +# CONFIG_BLK_DEV_DRBD is not set +# CONFIG_BLK_DEV_HD is not set +CONFIG_BLK_DEV_INITRD=y +# CONFIG_BLK_DEV_INTEGRITY is not set +CONFIG_BLK_DEV_LOOP=m +CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 +CONFIG_BLK_DEV_MD=m +# CONFIG_BLK_DEV_NBD is not set +# CONFIG_BLK_DEV_NULL_BLK is not set +# CONFIG_BLK_DEV_NVME is not set +# CONFIG_BLK_DEV_OSD is not set +# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set +# CONFIG_BLK_DEV_RAM is not set +# CONFIG_BLK_DEV_RBD is not set +# CONFIG_BLK_DEV_RSXX is not set +# CONFIG_BLK_DEV_SD is not set +# CONFIG_BLK_DEV_SKD is not set +CONFIG_BLK_DEV_SR=y +# CONFIG_BLK_DEV_SR_VENDOR is not set +# CONFIG_BLK_DEV_SX8 is not set +# CONFIG_BLK_DEV_UMEM is not set +CONFIG_BLOCK=y +# CONFIG_BNXT_BPO is not set +# CONFIG_BONDING is not set +# CONFIG_BOOT_PRINTK_DELAY is not set +CONFIG_BPF=y +# CONFIG_BPF_JIT is not set +# CONFIG_BPF_SYSCALL is not set +CONFIG_BQL=y +# CONFIG_BRIDGE is not set +# CONFIG_BSD_PROCESS_ACCT is not set +# CONFIG_BT is not set +# CONFIG_BTRFS_ASSERT is not set +# CONFIG_BTRFS_DEBUG is not set +CONFIG_BTRFS_FS=m +# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set +# CONFIG_BTRFS_FS_POSIX_ACL is not set +# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set +# CONFIG_BUG is not set CONFIG_BUILDTIME_EXTABLE_SORT=y - -# -# General setup -# -CONFIG_INIT_ENV_ARG_LIMIT=32 -CONFIG_CROSS_COMPILE="" -# CONFIG_COMPILE_TEST is not set -CONFIG_LOCALVERSION="" -# CONFIG_LOCALVERSION_AUTO is not set -CONFIG_HAVE_KERNEL_GZIP=y -CONFIG_HAVE_KERNEL_BZIP2=y -CONFIG_HAVE_KERNEL_LZMA=y -CONFIG_HAVE_KERNEL_XZ=y -CONFIG_HAVE_KERNEL_LZO=y -CONFIG_HAVE_KERNEL_LZ4=y -CONFIG_KERNEL_GZIP=y -# CONFIG_KERNEL_BZIP2 is not set -# CONFIG_KERNEL_LZMA is not set -# CONFIG_KERNEL_XZ is not set -# CONFIG_KERNEL_LZO is not set -# CONFIG_KERNEL_LZ4 is not set -CONFIG_DEFAULT_HOSTNAME="(none)" -CONFIG_VERSION_SIGNATURE="Ubuntu 4.4.0-1001.1-kvm 4.4.73" -# CONFIG_SWAP is not set -CONFIG_SYSVIPC=y -CONFIG_SYSVIPC_SYSCTL=y -# CONFIG_POSIX_MQUEUE is not set -# CONFIG_CROSS_MEMORY_ATTACH is not set -CONFIG_FHANDLE=y -# CONFIG_USELIB is not set -# CONFIG_AUDIT is not set -CONFIG_HAVE_ARCH_AUDITSYSCALL=y - -# -# IRQ subsystem -# -CONFIG_GENERIC_IRQ_PROBE=y -CONFIG_GENERIC_IRQ_SHOW=y -CONFIG_GENERIC_PENDING_IRQ=y -CONFIG_IRQ_DOMAIN=y -CONFIG_IRQ_DOMAIN_HIERARCHY=y -CONFIG_GENERIC_MSI_IRQ=y -CONFIG_GENERIC_MSI_IRQ_DOMAIN=y -# CONFIG_IRQ_DOMAIN_DEBUG is not set -CONFIG_IRQ_FORCED_THREADING=y -# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set -CONFIG_SPARSE_IRQ=y -CONFIG_CLOCKSOURCE_WATCHDOG=y -CONFIG_ARCH_CLOCKSOURCE_DATA=y -CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y -CONFIG_GENERIC_TIME_VSYSCALL=y -CONFIG_GENERIC_CLOCKEVENTS=y -CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y -CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y -CONFIG_GENERIC_CMOS_UPDATE=y - -# -# Timers subsystem -# -CONFIG_HZ_PERIODIC=y -# CONFIG_NO_HZ_IDLE is not set -# CONFIG_NO_HZ_FULL is not set -# CONFIG_NO_HZ is not set -# CONFIG_HIGH_RES_TIMERS is not set - -# -# CPU/Task time and stats accounting -# -CONFIG_TICK_CPU_ACCOUNTING=y -# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set -# CONFIG_IRQ_TIME_ACCOUNTING is not set -# CONFIG_BSD_PROCESS_ACCT is not set -# CONFIG_TASKSTATS is not set - -# -# RCU Subsystem -# -CONFIG_TREE_RCU=y -# CONFIG_RCU_EXPERT is not set -CONFIG_SRCU=y -# CONFIG_TASKS_RCU is not set -CONFIG_RCU_STALL_COMMON=y -# CONFIG_TREE_RCU_TRACE is not set -# CONFIG_RCU_EXPEDITE_BOOT is not set # CONFIG_BUILD_BIN2C is not set -# CONFIG_IKCONFIG is not set -CONFIG_LOG_BUF_SHIFT=17 -CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 -CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y -CONFIG_ARCH_SUPPORTS_NUMA_BALANCING=y -CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH=y -CONFIG_ARCH_SUPPORTS_INT128=y +# CONFIG_C2PORT is not set +# CONFIG_CAIF is not set +# CONFIG_CALGARY_IOMMU is not set +# CONFIG_CAN is not set +# CONFIG_CB710_CORE is not set +# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set +# CONFIG_CC_STACKPROTECTOR is not set +CONFIG_CC_STACKPROTECTOR_NONE=y +# CONFIG_CC_STACKPROTECTOR_REGULAR is not set +# CONFIG_CC_STACKPROTECTOR_STRONG is not set +# CONFIG_CDROM_PKTCDVD is not set +CONFIG_CEPH_FS=m +# CONFIG_CEPH_FS_POSIX_ACL is not set +CONFIG_CEPH_LIB=m +# CONFIG_CEPH_LIB_PRETTYDEBUG is not set +# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set CONFIG_CGROUPS=y +# CONFIG_CGROUP_CPUACCT is not set # CONFIG_CGROUP_DEBUG is not set -# CONFIG_CGROUP_FREEZER is not set -# CONFIG_CGROUP_PIDS is not set # CONFIG_CGROUP_DEVICE is not set -# CONFIG_CPUSETS is not set -# CONFIG_CGROUP_CPUACCT is not set -# CONFIG_MEMCG is not set +# CONFIG_CGROUP_FREEZER is not set +# CONFIG_CGROUP_NET_CLASSID is not set +# CONFIG_CGROUP_NET_PRIO is not set # CONFIG_CGROUP_PERF is not set +# CONFIG_CGROUP_PIDS is not set # CONFIG_CGROUP_SCHED is not set -# CONFIG_BLK_CGROUP is not set # CONFIG_CHECKPOINT_RESTORE is not set -CONFIG_NAMESPACES=y -CONFIG_UTS_NS=y -CONFIG_IPC_NS=y -# CONFIG_USER_NS is not set -CONFIG_PID_NS=y -CONFIG_NET_NS=y -# CONFIG_SCHED_AUTOGROUP is not set -# CONFIG_SYSFS_DEPRECATED is not set -# CONFIG_RELAY is not set -CONFIG_BLK_DEV_INITRD=y -CONFIG_INITRAMFS_SOURCE="" -CONFIG_RD_GZIP=y -# CONFIG_RD_BZIP2 is not set -# CONFIG_RD_LZMA is not set -# CONFIG_RD_XZ is not set -# CONFIG_RD_LZO is not set -# CONFIG_RD_LZ4 is not set -# CONFIG_CC_OPTIMIZE_FOR_SIZE is not set -CONFIG_SYSCTL=y -CONFIG_ANON_INODES=y -CONFIG_SYSCTL_EXCEPTION_TRACE=y -CONFIG_HAVE_PCSPKR_PLATFORM=y -CONFIG_BPF=y -CONFIG_EXPERT=y -CONFIG_MULTIUSER=y -# CONFIG_SGETMASK_SYSCALL is not set -# CONFIG_SYSFS_SYSCALL is not set -# CONFIG_SYSCTL_SYSCALL is not set -# CONFIG_KALLSYMS is not set -CONFIG_PRINTK=y -# CONFIG_BUG is not set -# CONFIG_PCSPKR_PLATFORM is not set -# CONFIG_BASE_FULL is not set -CONFIG_FUTEX=y -CONFIG_EPOLL=y -CONFIG_SIGNALFD=y -CONFIG_TIMERFD=y -# CONFIG_EVENTFD is not set -# CONFIG_BPF_SYSCALL is not set -CONFIG_SHMEM=y -# CONFIG_AIO is not set -# CONFIG_ADVISE_SYSCALLS is not set -# CONFIG_USERFAULTFD is not set -# CONFIG_PCI_QUIRKS is not set -# CONFIG_MEMBARRIER is not set -CONFIG_EMBEDDED=y -CONFIG_HAVE_PERF_EVENTS=y - -# -# Kernel Performance Events And Counters -# -CONFIG_PERF_EVENTS=y -# CONFIG_DEBUG_PERF_USE_VMALLOC is not set -# CONFIG_VM_EVENT_COUNTERS is not set -# CONFIG_SLUB_DEBUG is not set +# CONFIG_CHROME_PLATFORMS is not set +# CONFIG_CHR_DEV_OSST is not set +# CONFIG_CHR_DEV_SCH is not set +# CONFIG_CHR_DEV_SG is not set +# CONFIG_CHR_DEV_ST is not set +CONFIG_CIFS=m +CONFIG_CIFS_DEBUG=y +# CONFIG_CIFS_DEBUG2 is not set +# CONFIG_CIFS_DFS_UPCALL is not set +# CONFIG_CIFS_SMB2 is not set +# CONFIG_CIFS_STATS is not set +# CONFIG_CIFS_UPCALL is not set +# CONFIG_CIFS_WEAK_PW_HASH is not set +# CONFIG_CIFS_XATTR is not set +# CONFIG_CLEANCACHE is not set +CONFIG_CLKBLD_I8253=y +CONFIG_CLKEVT_I8253=y +CONFIG_CLOCKSOURCE_VALIDATE_LAST_CYCLE=y +CONFIG_CLOCKSOURCE_WATCHDOG=y +CONFIG_CLZ_TAB=y +# CONFIG_CMA is not set +# CONFIG_CMDLINE_BOOL is not set +CONFIG_CODA_FS=m +# CONFIG_COMPACTION is not set # CONFIG_COMPAT_BRK is not set -# CONFIG_SLAB is not set -CONFIG_SLUB=y -# CONFIG_SLOB is not set -CONFIG_SLUB_CPU_PARTIAL=y -CONFIG_SYSTEM_DATA_VERIFICATION=y -# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set -# CONFIG_PROFILING is not set -CONFIG_HAVE_OPROFILE=y -CONFIG_OPROFILE_NMI_TIMER=y -# CONFIG_KPROBES is not set -# CONFIG_JUMP_LABEL is not set -# CONFIG_UPROBES is not set -# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set -CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y -CONFIG_ARCH_USE_BUILTIN_BSWAP=y -CONFIG_HAVE_IOREMAP_PROT=y -CONFIG_HAVE_KPROBES=y -CONFIG_HAVE_KRETPROBES=y -CONFIG_HAVE_OPTPROBES=y -CONFIG_HAVE_KPROBES_ON_FTRACE=y -CONFIG_HAVE_ARCH_TRACEHOOK=y -CONFIG_HAVE_DMA_ATTRS=y -CONFIG_HAVE_DMA_CONTIGUOUS=y -CONFIG_GENERIC_SMP_IDLE_THREAD=y -CONFIG_ARCH_WANTS_DYNAMIC_TASK_STRUCT=y -CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y -CONFIG_HAVE_DMA_API_DEBUG=y -CONFIG_HAVE_HW_BREAKPOINT=y -CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y -CONFIG_HAVE_USER_RETURN_NOTIFIER=y -CONFIG_HAVE_PERF_EVENTS_NMI=y -CONFIG_HAVE_PERF_REGS=y -CONFIG_HAVE_PERF_USER_STACK_DUMP=y -CONFIG_HAVE_ARCH_JUMP_LABEL=y -CONFIG_ARCH_HAVE_NMI_SAFE_CMPXCHG=y -CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y -CONFIG_HAVE_CMPXCHG_LOCAL=y -CONFIG_HAVE_CMPXCHG_DOUBLE=y -CONFIG_HAVE_ARCH_SECCOMP_FILTER=y -CONFIG_SECCOMP_FILTER=y -CONFIG_HAVE_CC_STACKPROTECTOR=y -# CONFIG_CC_STACKPROTECTOR is not set -CONFIG_CC_STACKPROTECTOR_NONE=y -# CONFIG_CC_STACKPROTECTOR_REGULAR is not set -# CONFIG_CC_STACKPROTECTOR_STRONG is not set -CONFIG_HAVE_CONTEXT_TRACKING=y -CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y -CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y -CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y -CONFIG_HAVE_ARCH_HUGE_VMAP=y -CONFIG_HAVE_ARCH_SOFT_DIRTY=y -CONFIG_MODULES_USE_ELF_RELA=y -CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y -CONFIG_ARCH_HAS_ELF_RANDOMIZE=y -CONFIG_HAVE_COPY_THREAD_TLS=y - -# -# GCOV-based kernel profiling -# -# CONFIG_GCOV_KERNEL is not set -CONFIG_ARCH_HAS_GCOV_PROFILE_ALL=y -# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set -CONFIG_RT_MUTEXES=y -CONFIG_BASE_SMALL=1 -CONFIG_MODULES=y -# CONFIG_MODULE_FORCE_LOAD is not set -# CONFIG_MODULE_UNLOAD is not set -# CONFIG_MODVERSIONS is not set -# CONFIG_MODULE_SRCVERSION_ALL is not set -CONFIG_MODULE_SIG=y -# CONFIG_MODULE_SIG_FORCE is not set -CONFIG_MODULE_SIG_ALL=y -# CONFIG_MODULE_SIG_SHA1 is not set -# CONFIG_MODULE_SIG_SHA224 is not set -# CONFIG_MODULE_SIG_SHA256 is not set -# CONFIG_MODULE_SIG_SHA384 is not set -CONFIG_MODULE_SIG_SHA512=y -CONFIG_MODULE_SIG_HASH="sha512" -# CONFIG_MODULE_COMPRESS is not set -CONFIG_MODULES_TREE_LOOKUP=y -CONFIG_BLOCK=y -CONFIG_BLK_DEV_BSG=y -CONFIG_BLK_DEV_BSGLIB=y -# CONFIG_BLK_DEV_INTEGRITY is not set -CONFIG_BLK_CMDLINE_PARSER=y - -# -# Partition Types -# -# CONFIG_PARTITION_ADVANCED is not set -CONFIG_MSDOS_PARTITION=y -CONFIG_EFI_PARTITION=y - -# -# IO Schedulers -# -CONFIG_IOSCHED_NOOP=y -# CONFIG_IOSCHED_DEADLINE is not set -# CONFIG_IOSCHED_CFQ is not set -CONFIG_DEFAULT_NOOP=y -CONFIG_DEFAULT_IOSCHED="noop" -CONFIG_ASN1=y -CONFIG_INLINE_SPIN_UNLOCK_IRQ=y -CONFIG_INLINE_READ_UNLOCK=y -CONFIG_INLINE_READ_UNLOCK_IRQ=y -CONFIG_INLINE_WRITE_UNLOCK=y -CONFIG_INLINE_WRITE_UNLOCK_IRQ=y -CONFIG_ARCH_SUPPORTS_ATOMIC_RMW=y -CONFIG_MUTEX_SPIN_ON_OWNER=y -CONFIG_RWSEM_SPIN_ON_OWNER=y -CONFIG_LOCK_SPIN_ON_OWNER=y -CONFIG_ARCH_USE_QUEUED_SPINLOCKS=y -CONFIG_QUEUED_SPINLOCKS=y -CONFIG_ARCH_USE_QUEUED_RWLOCKS=y -CONFIG_QUEUED_RWLOCKS=y -# CONFIG_FREEZER is not set - -# -# Processor type and features -# -# CONFIG_ZONE_DMA is not set -CONFIG_SMP=y -CONFIG_X86_FEATURE_NAMES=y -# CONFIG_X86_X2APIC is not set -CONFIG_X86_MPPARSE=y -# CONFIG_X86_EXTENDED_PLATFORM is not set -# CONFIG_X86_INTEL_LPSS is not set -# CONFIG_X86_AMD_PLATFORM_DEVICE is not set -# CONFIG_IOSF_MBI is not set -# CONFIG_SCHED_OMIT_FRAME_POINTER is not set -CONFIG_HYPERVISOR_GUEST=y -CONFIG_PARAVIRT=y -# CONFIG_PARAVIRT_DEBUG is not set -CONFIG_PARAVIRT_SPINLOCKS=y -# CONFIG_XEN is not set -CONFIG_KVM_GUEST=y -CONFIG_KVM_DEBUG_FS=y -# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set -CONFIG_PARAVIRT_CLOCK=y -CONFIG_NO_BOOTMEM=y -# CONFIG_MK8 is not set -# CONFIG_MPSC is not set -CONFIG_MCORE2=y -# CONFIG_MATOM is not set -# CONFIG_GENERIC_CPU is not set -CONFIG_X86_INTERNODE_CACHE_SHIFT=6 -CONFIG_X86_L1_CACHE_SHIFT=6 -CONFIG_X86_INTEL_USERCOPY=y -CONFIG_X86_USE_PPRO_CHECKSUM=y -CONFIG_X86_P6_NOP=y -CONFIG_X86_TSC=y -CONFIG_X86_CMPXCHG64=y -CONFIG_X86_CMOV=y -CONFIG_X86_MINIMUM_CPU_FAMILY=64 -CONFIG_X86_DEBUGCTLMSR=y -# CONFIG_PROCESSOR_SELECT is not set -CONFIG_CPU_SUP_INTEL=y +# CONFIG_COMPILE_TEST is not set +CONFIG_CONFIGFS_FS=m +# CONFIG_CONNECTOR is not set +# CONFIG_CORDIC is not set +# CONFIG_COREDUMP is not set +# CONFIG_CPA_DEBUG is not set +# CONFIG_CPUSETS is not set +# CONFIG_CPU_FREQ is not set +# CONFIG_CPU_IDLE is not set +CONFIG_CPU_RMAP=y CONFIG_CPU_SUP_AMD=y CONFIG_CPU_SUP_CENTAUR=y -CONFIG_HPET_TIMER=y -# CONFIG_DMI is not set -# CONFIG_GART_IOMMU is not set -# CONFIG_CALGARY_IOMMU is not set -CONFIG_SWIOTLB=y -CONFIG_IOMMU_HELPER=y -# CONFIG_MAXSMP is not set -CONFIG_NR_CPUS=64 -# CONFIG_SCHED_SMT is not set -CONFIG_SCHED_MC=y -CONFIG_PREEMPT_NONE=y -# CONFIG_PREEMPT_VOLUNTARY is not set -# CONFIG_PREEMPT is not set -CONFIG_X86_LOCAL_APIC=y -CONFIG_X86_IO_APIC=y -# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set -# CONFIG_X86_MCE is not set -# CONFIG_VM86 is not set -# CONFIG_X86_VSYSCALL_EMULATION is not set -# CONFIG_I8K is not set -# CONFIG_MICROCODE is not set -# CONFIG_X86_MSR is not set -# CONFIG_X86_CPUID is not set -CONFIG_ARCH_PHYS_ADDR_T_64BIT=y -CONFIG_ARCH_DMA_ADDR_T_64BIT=y -CONFIG_X86_DIRECT_GBPAGES=y -# CONFIG_NUMA is not set -CONFIG_ARCH_SPARSEMEM_ENABLE=y -CONFIG_ARCH_SPARSEMEM_DEFAULT=y -CONFIG_ARCH_SELECT_MEMORY_MODEL=y -CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 -CONFIG_SELECT_MEMORY_MODEL=y -CONFIG_SPARSEMEM_MANUAL=y -CONFIG_SPARSEMEM=y -CONFIG_HAVE_MEMORY_PRESENT=y -CONFIG_SPARSEMEM_EXTREME=y -CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y -CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y -# CONFIG_SPARSEMEM_VMEMMAP is not set -CONFIG_HAVE_MEMBLOCK=y -CONFIG_HAVE_MEMBLOCK_NODE_MAP=y -CONFIG_ARCH_DISCARD_MEMBLOCK=y -# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set -# CONFIG_MEMORY_HOTPLUG is not set -CONFIG_SPLIT_PTLOCK_CPUS=4 -CONFIG_ARCH_ENABLE_SPLIT_PMD_PTLOCK=y -CONFIG_MEMORY_BALLOON=y -# CONFIG_COMPACTION is not set -CONFIG_PHYS_ADDR_T_64BIT=y -CONFIG_ZONE_DMA_FLAG=0 -CONFIG_VIRT_TO_BUS=y -# CONFIG_KSM is not set -CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 -# CONFIG_TRANSPARENT_HUGEPAGE is not set -# CONFIG_CLEANCACHE is not set -# CONFIG_CMA is not set -# CONFIG_ZPOOL is not set -# CONFIG_ZBUD is not set -# CONFIG_ZSMALLOC is not set -CONFIG_GENERIC_EARLY_IOREMAP=y -CONFIG_ARCH_SUPPORTS_DEFERRED_STRUCT_PAGE_INIT=y -# CONFIG_IDLE_PAGE_TRACKING is not set -# CONFIG_X86_PMEM_LEGACY is not set -# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set -CONFIG_X86_RESERVE_LOW=64 -# CONFIG_MTRR is not set -# CONFIG_ARCH_RANDOM is not set -# CONFIG_X86_SMAP is not set -# CONFIG_X86_INTEL_MPX is not set -CONFIG_EFI=y -# CONFIG_EFI_STUB is not set -# CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE is not set -CONFIG_SECCOMP=y -# CONFIG_HZ_100 is not set -CONFIG_HZ_250=y -# CONFIG_HZ_300 is not set -# CONFIG_HZ_1000 is not set -CONFIG_HZ=250 -# CONFIG_SCHED_HRTICK is not set -# CONFIG_KEXEC is not set +CONFIG_CPU_SUP_INTEL=y +# CONFIG_CRAMFS is not set # CONFIG_CRASH_DUMP is not set -CONFIG_PHYSICAL_START=0x1000000 -# CONFIG_RELOCATABLE is not set -CONFIG_PHYSICAL_ALIGN=0x200000 -# CONFIG_HOTPLUG_CPU is not set -# CONFIG_LEGACY_VSYSCALL_NATIVE is not set -CONFIG_LEGACY_VSYSCALL_EMULATE=y -# CONFIG_LEGACY_VSYSCALL_NONE is not set -# CONFIG_CMDLINE_BOOL is not set -# CONFIG_MODIFY_LDT_SYSCALL is not set -CONFIG_HAVE_LIVEPATCH=y -CONFIG_ARCH_ENABLE_MEMORY_HOTPLUG=y - -# -# Power management and ACPI options -# -# CONFIG_SUSPEND is not set -# CONFIG_PM is not set -CONFIG_ACPI=y -CONFIG_ACPI_LEGACY_TABLES_LOOKUP=y -CONFIG_ARCH_MIGHT_HAVE_ACPI_PDC=y -CONFIG_ACPI_SYSTEM_POWER_STATES_SUPPORT=y -# CONFIG_ACPI_DEBUGGER is not set -# CONFIG_ACPI_PROCFS_POWER is not set -# CONFIG_ACPI_REV_OVERRIDE_POSSIBLE is not set -# CONFIG_ACPI_EC_DEBUGFS is not set -# CONFIG_ACPI_AC is not set -# CONFIG_ACPI_BATTERY is not set -CONFIG_ACPI_BUTTON=y -# CONFIG_ACPI_DOCK is not set -# CONFIG_ACPI_PROCESSOR is not set -CONFIG_ACPI_CUSTOM_DSDT_FILE="" -# CONFIG_ACPI_CUSTOM_DSDT is not set -# CONFIG_ACPI_INITRD_TABLE_OVERRIDE is not set -# CONFIG_ACPI_DEBUG is not set -# CONFIG_ACPI_PCI_SLOT is not set -# CONFIG_X86_PM_TIMER is not set -# CONFIG_ACPI_CONTAINER is not set -CONFIG_ACPI_HOTPLUG_IOAPIC=y -# CONFIG_ACPI_SBS is not set -# CONFIG_ACPI_HED is not set -# CONFIG_ACPI_CUSTOM_METHOD is not set -# CONFIG_ACPI_BGRT is not set -# CONFIG_ACPI_REDUCED_HARDWARE_ONLY is not set -# CONFIG_ACPI_NFIT is not set -CONFIG_HAVE_ACPI_APEI=y -CONFIG_HAVE_ACPI_APEI_NMI=y -# CONFIG_ACPI_APEI is not set -# CONFIG_PMIC_OPREGION is not set -# CONFIG_SFI is not set - -# -# CPU Frequency scaling -# -# CONFIG_CPU_FREQ is not set - -# -# CPU Idle -# -# CONFIG_CPU_IDLE is not set -# CONFIG_ARCH_NEEDS_CPU_IDLE_COUPLED is not set - -# -# Memory power savings -# -# CONFIG_I7300_IDLE is not set - -# -# Bus options (PCI etc.) -# -CONFIG_PCI=y -CONFIG_PCI_DIRECT=y -# CONFIG_PCI_MMCONFIG is not set -CONFIG_PCI_DOMAINS=y -# CONFIG_PCI_CNB20LE_QUIRK is not set -# CONFIG_PCIEPORTBUS is not set -CONFIG_PCI_BUS_ADDR_T_64BIT=y -CONFIG_PCI_MSI=y -CONFIG_PCI_MSI_IRQ_DOMAIN=y -# CONFIG_PCI_DEBUG is not set -# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set -# CONFIG_PCI_STUB is not set -# CONFIG_HT_IRQ is not set -# CONFIG_PCI_IOV is not set -# CONFIG_PCI_PRI is not set -# CONFIG_PCI_PASID is not set -CONFIG_PCI_LABEL=y - -# -# PCI host controller drivers -# -# CONFIG_ISA_DMA_API is not set -CONFIG_AMD_NB=y -# CONFIG_PCCARD is not set -CONFIG_HOTPLUG_PCI=y -CONFIG_HOTPLUG_PCI_ACPI=y -# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set -# CONFIG_HOTPLUG_PCI_CPCI is not set -# CONFIG_HOTPLUG_PCI_SHPC is not set -# CONFIG_RAPIDIO is not set -# CONFIG_X86_SYSFB is not set - -# -# Executable file formats / Emulations -# -CONFIG_BINFMT_ELF=y -CONFIG_BINFMT_SCRIPT=y -# CONFIG_HAVE_AOUT is not set -# CONFIG_BINFMT_MISC is not set -# CONFIG_COREDUMP is not set -# CONFIG_IA32_EMULATION is not set -# CONFIG_X86_X32 is not set -CONFIG_X86_DEV_DMA_OPS=y -CONFIG_PMC_ATOM=y -CONFIG_NET=y - -# -# Networking options -# -CONFIG_PACKET=y -# CONFIG_PACKET_DIAG is not set -CONFIG_UNIX=y -# CONFIG_UNIX_DIAG is not set -CONFIG_XFRM=y -# CONFIG_XFRM_USER is not set -# CONFIG_XFRM_SUB_POLICY is not set -# CONFIG_XFRM_MIGRATE is not set -# CONFIG_XFRM_STATISTICS is not set -# CONFIG_NET_KEY is not set -CONFIG_INET=y -# CONFIG_IP_MULTICAST is not set -# CONFIG_IP_ADVANCED_ROUTER is not set -CONFIG_IP_PNP=y -CONFIG_IP_PNP_DHCP=y -# CONFIG_IP_PNP_BOOTP is not set -# CONFIG_IP_PNP_RARP is not set -# CONFIG_NET_IPIP is not set -# CONFIG_NET_IPGRE_DEMUX is not set -CONFIG_NET_IP_TUNNEL=y -# CONFIG_SYN_COOKIES is not set -# CONFIG_NET_UDP_TUNNEL is not set -# CONFIG_NET_FOU is not set -# CONFIG_NET_FOU_IP_TUNNELS is not set -# CONFIG_INET_AH is not set -# CONFIG_INET_ESP is not set -# CONFIG_INET_IPCOMP is not set -# CONFIG_INET_XFRM_TUNNEL is not set -CONFIG_INET_TUNNEL=y -# CONFIG_INET_XFRM_MODE_TRANSPORT is not set -# CONFIG_INET_XFRM_MODE_TUNNEL is not set -# CONFIG_INET_XFRM_MODE_BEET is not set -# CONFIG_INET_LRO is not set -# CONFIG_INET_DIAG is not set -# CONFIG_TCP_CONG_ADVANCED is not set -CONFIG_TCP_CONG_CUBIC=y -CONFIG_DEFAULT_TCP_CONG="cubic" -# CONFIG_TCP_MD5SIG is not set -CONFIG_IPV6=y -# CONFIG_IPV6_ROUTER_PREF is not set -# CONFIG_IPV6_OPTIMISTIC_DAD is not set -# CONFIG_INET6_AH is not set -# CONFIG_INET6_ESP is not set -# CONFIG_INET6_IPCOMP is not set -# CONFIG_IPV6_MIP6 is not set -# CONFIG_IPV6_ILA is not set -# CONFIG_INET6_XFRM_TUNNEL is not set -# CONFIG_INET6_TUNNEL is not set -CONFIG_INET6_XFRM_MODE_TRANSPORT=y -CONFIG_INET6_XFRM_MODE_TUNNEL=y -CONFIG_INET6_XFRM_MODE_BEET=y -# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set -# CONFIG_IPV6_VTI is not set -CONFIG_IPV6_SIT=y -# CONFIG_IPV6_SIT_6RD is not set -CONFIG_IPV6_NDISC_NODETYPE=y -# CONFIG_IPV6_TUNNEL is not set -# CONFIG_IPV6_GRE is not set -# CONFIG_IPV6_MULTIPLE_TABLES is not set -# CONFIG_IPV6_MROUTE is not set -# CONFIG_NETWORK_SECMARK is not set -# CONFIG_NET_PTP_CLASSIFY is not set -# CONFIG_NETWORK_PHY_TIMESTAMPING is not set -# CONFIG_NETFILTER is not set -# CONFIG_IP_DCCP is not set -# CONFIG_IP_SCTP is not set -# CONFIG_RDS is not set -# CONFIG_TIPC is not set -# CONFIG_ATM is not set -# CONFIG_L2TP is not set -# CONFIG_BRIDGE is not set -CONFIG_HAVE_NET_DSA=y -# CONFIG_VLAN_8021Q is not set -# CONFIG_DECNET is not set -# CONFIG_LLC2 is not set -# CONFIG_IPX is not set -# CONFIG_ATALK is not set -# CONFIG_X25 is not set -# CONFIG_LAPB is not set -# CONFIG_PHONET is not set -# CONFIG_6LOWPAN is not set -# CONFIG_IEEE802154 is not set -# CONFIG_NET_SCHED is not set -# CONFIG_DCB is not set -CONFIG_DNS_RESOLVER=m -# CONFIG_BATMAN_ADV is not set -# CONFIG_OPENVSWITCH is not set -# CONFIG_VSOCKETS is not set -# CONFIG_NETLINK_DIAG is not set -# CONFIG_MPLS is not set -# CONFIG_HSR is not set -# CONFIG_NET_SWITCHDEV is not set -# CONFIG_NET_L3_MASTER_DEV is not set -CONFIG_RPS=y -CONFIG_RFS_ACCEL=y -CONFIG_XPS=y -# CONFIG_CGROUP_NET_PRIO is not set -# CONFIG_CGROUP_NET_CLASSID is not set -CONFIG_NET_RX_BUSY_POLL=y -CONFIG_BQL=y -# CONFIG_BPF_JIT is not set -CONFIG_NET_FLOW_LIMIT=y - -# -# Network testing -# -# CONFIG_NET_PKTGEN is not set -# CONFIG_HAMRADIO is not set -# CONFIG_CAN is not set -# CONFIG_IRDA is not set -# CONFIG_BT is not set -CONFIG_AF_RXRPC=m -# CONFIG_AF_RXRPC_DEBUG is not set -# CONFIG_RXKAD is not set -# CONFIG_WIRELESS is not set -# CONFIG_WIMAX is not set -# CONFIG_RFKILL is not set -CONFIG_NET_9P=m -# CONFIG_NET_9P_VIRTIO is not set -# CONFIG_NET_9P_DEBUG is not set -# CONFIG_CAIF is not set -CONFIG_CEPH_LIB=m -# CONFIG_CEPH_LIB_PRETTYDEBUG is not set -# CONFIG_CEPH_LIB_USE_DNS_RESOLVER is not set -# CONFIG_NFC is not set -# CONFIG_LWTUNNEL is not set -CONFIG_HAVE_BPF_JIT=y - -# -# Device Drivers -# - -# -# Generic Driver Options -# -CONFIG_UEVENT_HELPER=y -CONFIG_UEVENT_HELPER_PATH="" -CONFIG_DEVTMPFS=y -CONFIG_DEVTMPFS_MOUNT=y -# CONFIG_STANDALONE is not set -# CONFIG_PREVENT_FIRMWARE_BUILD is not set -# CONFIG_FW_LOADER is not set -# CONFIG_ALLOW_DEV_COREDUMP is not set -# CONFIG_DEBUG_DRIVER is not set -# CONFIG_DEBUG_DEVRES is not set -# CONFIG_SYS_HYPERVISOR is not set -# CONFIG_GENERIC_CPU_DEVICES is not set -CONFIG_GENERIC_CPU_AUTOPROBE=y -# CONFIG_DMA_SHARED_BUFFER is not set - -# -# Bus devices -# -# CONFIG_CONNECTOR is not set -CONFIG_MTD=m -# CONFIG_MTD_TESTS is not set -# CONFIG_MTD_REDBOOT_PARTS is not set -# CONFIG_MTD_CMDLINE_PARTS is not set -# CONFIG_MTD_AR7_PARTS is not set - -# -# User Modules And Translation Layers -# -# CONFIG_MTD_BLOCK is not set -# CONFIG_MTD_BLOCK_RO is not set -# CONFIG_FTL is not set -# CONFIG_NFTL is not set -# CONFIG_INFTL is not set -# CONFIG_RFD_FTL is not set -# CONFIG_SSFDC is not set -# CONFIG_SM_FTL is not set -# CONFIG_MTD_OOPS is not set -# CONFIG_MTD_PARTITIONED_MASTER is not set - -# -# RAM/ROM/Flash chip drivers -# -# CONFIG_MTD_CFI is not set -# CONFIG_MTD_JEDECPROBE is not set -CONFIG_MTD_MAP_BANK_WIDTH_1=y -CONFIG_MTD_MAP_BANK_WIDTH_2=y -CONFIG_MTD_MAP_BANK_WIDTH_4=y -# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set -# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set -# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set -CONFIG_MTD_CFI_I1=y -CONFIG_MTD_CFI_I2=y -# CONFIG_MTD_CFI_I4 is not set -# CONFIG_MTD_CFI_I8 is not set -# CONFIG_MTD_RAM is not set -# CONFIG_MTD_ROM is not set -# CONFIG_MTD_ABSENT is not set - -# -# Mapping drivers for chip access -# -# CONFIG_MTD_COMPLEX_MAPPINGS is not set -# CONFIG_MTD_INTEL_VR_NOR is not set -# CONFIG_MTD_PLATRAM is not set - -# -# Self-contained MTD device drivers -# -# CONFIG_MTD_PMC551 is not set -# CONFIG_MTD_SLRAM is not set -# CONFIG_MTD_PHRAM is not set -# CONFIG_MTD_MTDRAM is not set -# CONFIG_MTD_BLOCK2MTD is not set - -# -# Disk-On-Chip Device Drivers -# -# CONFIG_MTD_DOCG3 is not set -# CONFIG_MTD_NAND is not set -# CONFIG_MTD_ONENAND is not set - -# -# LPDDR & LPDDR2 PCM memory drivers -# -# CONFIG_MTD_LPDDR is not set -# CONFIG_MTD_SPI_NOR is not set -CONFIG_MTD_UBI=m -CONFIG_MTD_UBI_WL_THRESHOLD=4096 -CONFIG_MTD_UBI_BEB_LIMIT=20 -# CONFIG_MTD_UBI_FASTMAP is not set -# CONFIG_MTD_UBI_GLUEBI is not set -# CONFIG_MTD_UBI_BLOCK is not set -# CONFIG_OF is not set -CONFIG_ARCH_MIGHT_HAVE_PC_PARPORT=y -# CONFIG_PARPORT is not set -CONFIG_PNP=y -CONFIG_PNP_DEBUG_MESSAGES=y - -# -# Protocols -# -CONFIG_PNPACPI=y -CONFIG_BLK_DEV=y -# CONFIG_BLK_DEV_NULL_BLK is not set -# CONFIG_BLK_DEV_PCIESSD_MTIP32XX is not set -# CONFIG_BLK_CPQ_CISS_DA is not set -# CONFIG_BLK_DEV_DAC960 is not set -# CONFIG_BLK_DEV_UMEM is not set -# CONFIG_BLK_DEV_COW_COMMON is not set -CONFIG_BLK_DEV_LOOP=m -CONFIG_BLK_DEV_LOOP_MIN_COUNT=8 -CONFIG_BLK_DEV_CRYPTOLOOP=m -# CONFIG_BLK_DEV_DRBD is not set -# CONFIG_BLK_DEV_NBD is not set -# CONFIG_BLK_DEV_SKD is not set -# CONFIG_BLK_DEV_OSD is not set -# CONFIG_BLK_DEV_SX8 is not set -# CONFIG_BLK_DEV_RAM is not set -# CONFIG_CDROM_PKTCDVD is not set -# CONFIG_ATA_OVER_ETH is not set -CONFIG_VIRTIO_BLK=y -# CONFIG_BLK_DEV_HD is not set -# CONFIG_BLK_DEV_RBD is not set -# CONFIG_BLK_DEV_RSXX is not set -# CONFIG_BLK_DEV_NVME is not set - -# -# Misc devices -# -# CONFIG_SENSORS_LIS3LV02D is not set -# CONFIG_DUMMY_IRQ is not set -# CONFIG_IBM_ASM is not set -# CONFIG_PHANTOM is not set -# CONFIG_SGI_IOC4 is not set -# CONFIG_TIFM_CORE is not set -# CONFIG_ENCLOSURE_SERVICES is not set -# CONFIG_HP_ILO is not set -# CONFIG_SRAM is not set -# CONFIG_C2PORT is not set - -# -# EEPROM support -# -# CONFIG_EEPROM_93CX6 is not set -# CONFIG_CB710_CORE is not set - -# -# Texas Instruments shared transport line discipline -# - -# -# Altera FPGA firmware download module -# -# CONFIG_VMWARE_VMCI is not set - -# -# Intel MIC Bus Driver -# -# CONFIG_INTEL_MIC_BUS is not set - -# -# SCIF Bus Driver -# -# CONFIG_SCIF_BUS is not set - -# -# Intel MIC Host Driver -# - -# -# Intel MIC Card Driver -# - -# -# SCIF Driver -# - -# -# Intel MIC Coprocessor State Management (COSM) Drivers -# -# CONFIG_GENWQE is not set -# CONFIG_ECHO is not set +CONFIG_CRC16=y +CONFIG_CRC32=y +# CONFIG_CRC32_BIT is not set +# CONFIG_CRC32_SARWATE is not set +# CONFIG_CRC32_SELFTEST is not set +# CONFIG_CRC32_SLICEBY4 is not set +CONFIG_CRC32_SLICEBY8=y +# CONFIG_CRC7 is not set +# CONFIG_CRC8 is not set +# CONFIG_CRC_CCITT is not set +CONFIG_CRC_ITU_T=m +CONFIG_CRC_T10DIF=m +CONFIG_CROSS_COMPILE="" +# CONFIG_CROSS_MEMORY_ATTACH is not set +CONFIG_CRYPTO=y +# CONFIG_CRYPTO_842 is not set +CONFIG_CRYPTO_AEAD=m +CONFIG_CRYPTO_AEAD2=y +CONFIG_CRYPTO_AES=y +# CONFIG_CRYPTO_AES_NI_INTEL is not set +# CONFIG_CRYPTO_AES_X86_64 is not set +CONFIG_CRYPTO_AKCIPHER=y +CONFIG_CRYPTO_AKCIPHER2=y +CONFIG_CRYPTO_ALGAPI=y +CONFIG_CRYPTO_ALGAPI2=y +# CONFIG_CRYPTO_ANSI_CPRNG is not set +# CONFIG_CRYPTO_ANUBIS is not set +CONFIG_CRYPTO_ARC4=m +# CONFIG_CRYPTO_AUTHENC is not set +CONFIG_CRYPTO_BLKCIPHER=m +CONFIG_CRYPTO_BLKCIPHER2=y +# CONFIG_CRYPTO_BLOWFISH is not set +# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set +# CONFIG_CRYPTO_CAST5 is not set +# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set +# CONFIG_CRYPTO_CAST6 is not set +# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set +CONFIG_CRYPTO_CBC=m +# CONFIG_CRYPTO_CCM is not set +# CONFIG_CRYPTO_CHACHA20 is not set +# CONFIG_CRYPTO_CHACHA20POLY1305 is not set +# CONFIG_CRYPTO_CHACHA20_X86_64 is not set +# CONFIG_CRYPTO_CMAC is not set +# CONFIG_CRYPTO_CRC32 is not set +CONFIG_CRYPTO_CRC32C=y +# CONFIG_CRYPTO_CRC32C_INTEL is not set +# CONFIG_CRYPTO_CRC32_PCLMUL is not set +CONFIG_CRYPTO_CRCT10DIF=m +# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set +# CONFIG_CRYPTO_CRYPTD is not set +CONFIG_CRYPTO_CTR=m +CONFIG_CRYPTO_CTS=m +CONFIG_CRYPTO_DEFLATE=m +CONFIG_CRYPTO_DES=m +# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set +CONFIG_CRYPTO_DRBG=m +# CONFIG_CRYPTO_DRBG_CTR is not set +# CONFIG_CRYPTO_DRBG_HASH is not set +CONFIG_CRYPTO_DRBG_HMAC=y +CONFIG_CRYPTO_DRBG_MENU=m +CONFIG_CRYPTO_ECB=m +# CONFIG_CRYPTO_ECHAINIV is not set +# CONFIG_CRYPTO_FCRYPT is not set +# CONFIG_CRYPTO_GCM is not set +CONFIG_CRYPTO_GF128MUL=m +# CONFIG_CRYPTO_GHASH is not set +# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set +CONFIG_CRYPTO_HASH=y +CONFIG_CRYPTO_HASH2=y +CONFIG_CRYPTO_HASH_INFO=y +CONFIG_CRYPTO_HMAC=m +# CONFIG_CRYPTO_HW is not set +CONFIG_CRYPTO_JITTERENTROPY=m +# CONFIG_CRYPTO_KEYWRAP is not set +# CONFIG_CRYPTO_KHAZAD is not set +# CONFIG_CRYPTO_LRW is not set +# CONFIG_CRYPTO_LZ4 is not set +# CONFIG_CRYPTO_LZ4HC is not set +CONFIG_CRYPTO_LZO=m +CONFIG_CRYPTO_MANAGER=m +CONFIG_CRYPTO_MANAGER2=y +CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y +# CONFIG_CRYPTO_MCRYPTD is not set +CONFIG_CRYPTO_MD4=m +CONFIG_CRYPTO_MD5=y +# CONFIG_CRYPTO_MICHAEL_MIC is not set +CONFIG_CRYPTO_NULL=m +CONFIG_CRYPTO_NULL2=y +# CONFIG_CRYPTO_PCBC is not set +CONFIG_CRYPTO_PCOMP2=y +# CONFIG_CRYPTO_PCRYPT is not set +# CONFIG_CRYPTO_POLY1305 is not set +# CONFIG_CRYPTO_POLY1305_X86_64 is not set +# CONFIG_CRYPTO_RMD128 is not set +# CONFIG_CRYPTO_RMD160 is not set +# CONFIG_CRYPTO_RMD256 is not set +# CONFIG_CRYPTO_RMD320 is not set +CONFIG_CRYPTO_RNG=m +CONFIG_CRYPTO_RNG2=y +CONFIG_CRYPTO_RNG_DEFAULT=m +CONFIG_CRYPTO_RSA=y +# CONFIG_CRYPTO_SALSA20 is not set +# CONFIG_CRYPTO_SALSA20_X86_64 is not set +# CONFIG_CRYPTO_SEED is not set +CONFIG_CRYPTO_SEQIV=m +# CONFIG_CRYPTO_SERPENT is not set +# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set +# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set +# CONFIG_CRYPTO_SHA1 is not set +# CONFIG_CRYPTO_SHA1_MB is not set +# CONFIG_CRYPTO_SHA1_SSSE3 is not set +CONFIG_CRYPTO_SHA256=m +# CONFIG_CRYPTO_SHA256_SSSE3 is not set +CONFIG_CRYPTO_SHA512=y +# CONFIG_CRYPTO_SHA512_SSSE3 is not set +# CONFIG_CRYPTO_TEA is not set +# CONFIG_CRYPTO_TEST is not set +# CONFIG_CRYPTO_TGR192 is not set +# CONFIG_CRYPTO_TWOFISH is not set +# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64 is not set +# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set +# CONFIG_CRYPTO_USER is not set +# CONFIG_CRYPTO_USER_API_AEAD is not set +# CONFIG_CRYPTO_USER_API_HASH is not set +# CONFIG_CRYPTO_USER_API_RNG is not set +# CONFIG_CRYPTO_USER_API_SKCIPHER is not set +# CONFIG_CRYPTO_VMAC is not set +CONFIG_CRYPTO_WORKQUEUE=y +# CONFIG_CRYPTO_WP512 is not set +# CONFIG_CRYPTO_XCBC is not set +CONFIG_CRYPTO_XTS=m +# CONFIG_CRYPTO_ZLIB is not set +# CONFIG_CUSE is not set # CONFIG_CXL_BASE is not set -# CONFIG_CXL_KERNEL_API is not set # CONFIG_CXL_EEH is not set -CONFIG_HAVE_IDE=y -# CONFIG_IDE is not set - -# -# SCSI device support -# -CONFIG_SCSI_MOD=y -# CONFIG_RAID_ATTRS is not set -CONFIG_SCSI=y -CONFIG_SCSI_DMA=y -# CONFIG_SCSI_NETLINK is not set -# CONFIG_SCSI_MQ_DEFAULT is not set -CONFIG_SCSI_PROC_FS=y - -# -# SCSI support type (disk, tape, CD-ROM) -# -# CONFIG_BLK_DEV_SD is not set -# CONFIG_CHR_DEV_ST is not set -# CONFIG_CHR_DEV_OSST is not set -CONFIG_BLK_DEV_SR=y -# CONFIG_BLK_DEV_SR_VENDOR is not set -# CONFIG_CHR_DEV_SG is not set -# CONFIG_CHR_DEV_SCH is not set -# CONFIG_SCSI_CONSTANTS is not set -# CONFIG_SCSI_LOGGING is not set -# CONFIG_SCSI_SCAN_ASYNC is not set - -# -# SCSI Transports -# -# CONFIG_SCSI_SPI_ATTRS is not set -# CONFIG_SCSI_FC_ATTRS is not set -CONFIG_SCSI_ISCSI_ATTRS=y -# CONFIG_SCSI_SAS_ATTRS is not set -# CONFIG_SCSI_SAS_LIBSAS is not set -# CONFIG_SCSI_SRP_ATTRS is not set -CONFIG_SCSI_LOWLEVEL=y -CONFIG_ISCSI_TCP=y -# CONFIG_ISCSI_BOOT_SYSFS is not set -# CONFIG_SCSI_CXGB3_ISCSI is not set -# CONFIG_SCSI_CXGB4_ISCSI is not set -# CONFIG_SCSI_BNX2_ISCSI is not set -# CONFIG_BE2ISCSI is not set -# CONFIG_BLK_DEV_3W_XXXX_RAID is not set -# CONFIG_SCSI_HPSA is not set -# CONFIG_SCSI_3W_9XXX is not set -# CONFIG_SCSI_3W_SAS is not set -# CONFIG_SCSI_ACARD is not set -# CONFIG_SCSI_AACRAID is not set -# CONFIG_SCSI_AIC7XXX is not set -# CONFIG_SCSI_AIC79XX is not set -# CONFIG_SCSI_AIC94XX is not set -# CONFIG_SCSI_MVSAS is not set -# CONFIG_SCSI_MVUMI is not set -# CONFIG_SCSI_DPT_I2O is not set -# CONFIG_SCSI_ADVANSYS is not set -# CONFIG_SCSI_ARCMSR is not set -# CONFIG_SCSI_ESAS2R is not set -# CONFIG_MEGARAID_NEWGEN is not set -# CONFIG_MEGARAID_LEGACY is not set -# CONFIG_MEGARAID_SAS is not set -# CONFIG_SCSI_MPT3SAS is not set -# CONFIG_SCSI_MPT2SAS is not set -# CONFIG_SCSI_UFSHCD is not set -# CONFIG_SCSI_HPTIOP is not set -# CONFIG_VMWARE_PVSCSI is not set -# CONFIG_SCSI_SNIC is not set -# CONFIG_SCSI_DMX3191D is not set -# CONFIG_SCSI_FUTURE_DOMAIN is not set -# CONFIG_SCSI_ISCI is not set -# CONFIG_SCSI_IPS is not set -# CONFIG_SCSI_INITIO is not set -# CONFIG_SCSI_INIA100 is not set -# CONFIG_SCSI_STEX is not set -# CONFIG_SCSI_SYM53C8XX_2 is not set -# CONFIG_SCSI_QLOGIC_1280 is not set -# CONFIG_SCSI_QLA_ISCSI is not set -# CONFIG_SCSI_DC395x is not set -# CONFIG_SCSI_AM53C974 is not set -# CONFIG_SCSI_WD719X is not set -# CONFIG_SCSI_DEBUG is not set -# CONFIG_SCSI_PMCRAID is not set -# CONFIG_SCSI_PM8001 is not set -CONFIG_SCSI_VIRTIO=y -# CONFIG_SCSI_DH is not set -CONFIG_SCSI_OSD_INITIATOR=m -CONFIG_SCSI_OSD_ULD=m -CONFIG_SCSI_OSD_DPRINT_SENSE=1 -# CONFIG_SCSI_OSD_DEBUG is not set -# CONFIG_ATA is not set -CONFIG_MD=y -CONFIG_BLK_DEV_MD=m -# CONFIG_MD_LINEAR is not set -# CONFIG_MD_RAID0 is not set -# CONFIG_MD_RAID1 is not set -# CONFIG_MD_RAID10 is not set -# CONFIG_MD_RAID456 is not set -# CONFIG_MD_MULTIPATH is not set -# CONFIG_MD_FAULTY is not set -# CONFIG_BCACHE is not set -CONFIG_BLK_DEV_DM_BUILTIN=y -CONFIG_BLK_DEV_DM=m -# CONFIG_DM_MQ_DEFAULT is not set -# CONFIG_DM_DEBUG is not set -# CONFIG_DM_CRYPT is not set -# CONFIG_DM_SNAPSHOT is not set -# CONFIG_DM_THIN_PROVISIONING is not set +# CONFIG_CXL_KERNEL_API is not set +CONFIG_DCACHE_WORD_ACCESS=y +# CONFIG_DCB is not set +# CONFIG_DCDBAS is not set +# CONFIG_DDR is not set +# CONFIG_DEBUG_ATOMIC_SLEEP is not set +# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set +# CONFIG_DEBUG_BOOT_PARAMS is not set +# CONFIG_DEBUG_CREDENTIALS is not set +# CONFIG_DEBUG_DEVRES is not set +# CONFIG_DEBUG_DRIVER is not set +# CONFIG_DEBUG_ENTRY is not set +# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set +CONFIG_DEBUG_FS=y +# CONFIG_DEBUG_INFO is not set +CONFIG_DEBUG_KERNEL=y +# CONFIG_DEBUG_KMEMLEAK is not set +# CONFIG_DEBUG_KOBJECT is not set +# CONFIG_DEBUG_LIST is not set +# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set +# CONFIG_DEBUG_LOCK_ALLOC is not set +# CONFIG_DEBUG_MEMORY_INIT is not set +# CONFIG_DEBUG_MUTEXES is not set +# CONFIG_DEBUG_NMI_SELFTEST is not set +# CONFIG_DEBUG_NOTIFIERS is not set +# CONFIG_DEBUG_NX_TEST is not set +# CONFIG_DEBUG_OBJECTS is not set +# CONFIG_DEBUG_PAGEALLOC is not set +# CONFIG_DEBUG_PERF_USE_VMALLOC is not set +# CONFIG_DEBUG_PER_CPU_MAPS is not set +# CONFIG_DEBUG_PI_LIST is not set +# CONFIG_DEBUG_RODATA is not set +# CONFIG_DEBUG_RT_MUTEXES is not set +# CONFIG_DEBUG_SECTION_MISMATCH is not set +# CONFIG_DEBUG_SET_MODULE_RONX is not set +# CONFIG_DEBUG_SG is not set +# CONFIG_DEBUG_SHIRQ is not set +# CONFIG_DEBUG_SPINLOCK is not set +# CONFIG_DEBUG_STACKOVERFLOW is not set +# CONFIG_DEBUG_STACK_USAGE is not set +# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set +# CONFIG_DEBUG_TIMEKEEPING is not set +# CONFIG_DEBUG_TLBFLUSH is not set +# CONFIG_DEBUG_VIRTUAL is not set +# CONFIG_DEBUG_VM is not set +# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set +# CONFIG_DECNET is not set +CONFIG_DECOMPRESS_GZIP=y +CONFIG_DEFAULT_HOSTNAME="(none)" +CONFIG_DEFAULT_IOSCHED="noop" +CONFIG_DEFAULT_IO_DELAY_TYPE=0 +CONFIG_DEFAULT_MMAP_MIN_ADDR=4096 +CONFIG_DEFAULT_NOOP=y +CONFIG_DEFAULT_SECURITY="" +CONFIG_DEFAULT_SECURITY_DAC=y +CONFIG_DEFAULT_TCP_CONG="cubic" +CONFIG_DEFCONFIG_LIST="/lib/modules/$UNAME_RELEASE/.config" +# CONFIG_DELL_RBU is not set +# CONFIG_DETECT_HUNG_TASK is not set +# CONFIG_DEVKMEM is not set +# CONFIG_DEVMEM is not set +CONFIG_DEVPORT=y +# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set +CONFIG_DEVTMPFS=y +CONFIG_DEVTMPFS_MOUNT=y +# CONFIG_DLM is not set +# CONFIG_DMADEVICES is not set +# CONFIG_DMA_API_DEBUG is not set +# CONFIG_DMA_SHARED_BUFFER is not set +# CONFIG_DMI is not set # CONFIG_DM_CACHE is not set +# CONFIG_DM_CRYPT is not set +# CONFIG_DM_DEBUG is not set +# CONFIG_DM_DELAY is not set # CONFIG_DM_ERA is not set +# CONFIG_DM_FLAKEY is not set +# CONFIG_DM_LOG_WRITES is not set # CONFIG_DM_MIRROR is not set -# CONFIG_DM_RAID is not set -# CONFIG_DM_ZERO is not set +# CONFIG_DM_MQ_DEFAULT is not set # CONFIG_DM_MULTIPATH is not set -# CONFIG_DM_DELAY is not set +# CONFIG_DM_RAID is not set +# CONFIG_DM_SNAPSHOT is not set +# CONFIG_DM_SWITCH is not set +# CONFIG_DM_THIN_PROVISIONING is not set # CONFIG_DM_UEVENT is not set -# CONFIG_DM_FLAKEY is not set # CONFIG_DM_VERITY is not set -# CONFIG_DM_SWITCH is not set -# CONFIG_DM_LOG_WRITES is not set -CONFIG_TARGET_CORE=m -# CONFIG_TCM_IBLOCK is not set -# CONFIG_TCM_FILEIO is not set -# CONFIG_TCM_PSCSI is not set -# CONFIG_LOOPBACK_TARGET is not set -# CONFIG_ISCSI_TARGET is not set -# CONFIG_FUSION is not set - -# -# IEEE 1394 (FireWire) support -# -# CONFIG_FIREWIRE is not set -# CONFIG_FIREWIRE_NOSY is not set -# CONFIG_MACINTOSH_DRIVERS is not set -CONFIG_NETDEVICES=y -CONFIG_NET_CORE=y -# CONFIG_BONDING is not set +# CONFIG_DM_ZERO is not set +# CONFIG_DNOTIFY is not set +CONFIG_DNS_RESOLVER=m +# CONFIG_DOUBLEFAULT is not set +CONFIG_DQL=y +# CONFIG_DRM is not set # CONFIG_DUMMY is not set +# CONFIG_DUMMY_IRQ is not set +# CONFIG_DYNAMIC_DEBUG is not set +CONFIG_EARLY_PRINTK=y +# CONFIG_EARLY_PRINTK_DBGP is not set +# CONFIG_EARLY_PRINTK_EFI is not set +# CONFIG_ECHO is not set +CONFIG_ECRYPT_FS=m +# CONFIG_ECRYPT_FS_MESSAGING is not set +# CONFIG_EDAC is not set +CONFIG_EDAC_ATOMIC_SCRUB=y +CONFIG_EDAC_SUPPORT=y +# CONFIG_EDD is not set +# CONFIG_EEPROM_93CX6 is not set +CONFIG_EFI=y +CONFIG_EFIVAR_FS=m +CONFIG_EFI_ESRT=y +# CONFIG_EFI_FAKE_MEMMAP is not set +CONFIG_EFI_PARTITION=y +# CONFIG_EFI_PGT_DUMP is not set +CONFIG_EFI_RUNTIME_WRAPPERS=y +# CONFIG_EFI_SECURE_BOOT_SIG_ENFORCE is not set +CONFIG_EFI_SIGNATURE_LIST_PARSER=y +# CONFIG_EFI_STUB is not set +# CONFIG_EFI_TEST is not set +# CONFIG_EFI_VARS is not set +CONFIG_EFS_FS=m +CONFIG_EMBEDDED=y +# CONFIG_EM_TIMER_STI is not set +# CONFIG_ENABLE_MUST_CHECK is not set +# CONFIG_ENABLE_WARN_DEPRECATED is not set +# CONFIG_ENCLOSURE_SERVICES is not set +CONFIG_ENCRYPTED_KEYS=m +CONFIG_EPOLL=y # CONFIG_EQUALIZER is not set -# CONFIG_NET_FC is not set -# CONFIG_NET_TEAM is not set -# CONFIG_MACVLAN is not set -# CONFIG_IPVLAN is not set -# CONFIG_VXLAN is not set -# CONFIG_NETCONSOLE is not set -# CONFIG_NETPOLL is not set -# CONFIG_NET_POLL_CONTROLLER is not set -# CONFIG_TUN is not set -# CONFIG_TUN_VNET_CROSS_LE is not set -# CONFIG_VETH is not set -CONFIG_VIRTIO_NET=y -# CONFIG_NLMON is not set -# CONFIG_ARCNET is not set - -# -# CAIF transport drivers -# -# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set - -# -# Distributed Switch Architecture drivers -# -# CONFIG_NET_DSA_MV88E6XXX is not set -# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set # CONFIG_ETHERNET is not set +# CONFIG_EVENTFD is not set +# CONFIG_EXOFS_DEBUG is not set +CONFIG_EXOFS_FS=m +CONFIG_EXPERT=y +CONFIG_EXPORTFS=y +# CONFIG_EXT2_FS is not set +# CONFIG_EXT3_FS is not set +# CONFIG_EXT4_DEBUG is not set +CONFIG_EXT4_ENCRYPTION=m +CONFIG_EXT4_FS=y +CONFIG_EXT4_FS_ENCRYPTION=y +# CONFIG_EXT4_FS_POSIX_ACL is not set +# CONFIG_EXT4_FS_SECURITY is not set +CONFIG_EXT4_USE_FOR_EXT2=y +# CONFIG_EXTCON is not set +# CONFIG_F2FS_CHECK_FS is not set +CONFIG_F2FS_FS=m +# CONFIG_F2FS_FS_ENCRYPTION is not set +CONFIG_F2FS_FS_POSIX_ACL=y +# CONFIG_F2FS_FS_SECURITY is not set +CONFIG_F2FS_FS_XATTR=y +CONFIG_F2FS_STAT_FS=y +# CONFIG_FANOTIFY is not set +CONFIG_FAT_DEFAULT_CODEPAGE=437 +CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" +CONFIG_FAT_FS=m +# CONFIG_FAULT_INJECTION is not set +# CONFIG_FB is not set # CONFIG_FDDI is not set -# CONFIG_HIPPI is not set -# CONFIG_NET_SB1000 is not set -# CONFIG_PHYLIB is not set -# CONFIG_PPP is not set -# CONFIG_SLIP is not set - -# -# Host-side USB support is needed for USB Network Adapter support -# -# CONFIG_WLAN is not set - -# -# Enable WiMAX (Networking options) to see the WiMAX drivers -# -# CONFIG_WAN is not set -# CONFIG_VMXNET3 is not set +CONFIG_FHANDLE=y +CONFIG_FILE_LOCKING=y +# CONFIG_FIREWIRE is not set +# CONFIG_FIREWIRE_NOSY is not set +# CONFIG_FIRMWARE_MEMMAP is not set +CONFIG_FIX_EARLYCON_MEM=y +# CONFIG_FMC is not set +# CONFIG_FPGA is not set +# CONFIG_FRAME_POINTER is not set +CONFIG_FRAME_WARN=2048 +# CONFIG_FREEZER is not set +# CONFIG_FSCACHE is not set +CONFIG_FSNOTIFY=y +# CONFIG_FS_DAX is not set +CONFIG_FS_MBCACHE=y +CONFIG_FS_POSIX_ACL=y +# CONFIG_FTL is not set +# CONFIG_FTRACE is not set # CONFIG_FUJITSU_ES is not set -# CONFIG_ISDN is not set -# CONFIG_NVM is not set - -# -# Input device support -# -CONFIG_INPUT=y -# CONFIG_INPUT_FF_MEMLESS is not set -# CONFIG_INPUT_POLLDEV is not set -# CONFIG_INPUT_SPARSEKMAP is not set -# CONFIG_INPUT_MATRIXKMAP is not set - -# -# Userland interfaces -# -# CONFIG_INPUT_MOUSEDEV is not set -# CONFIG_INPUT_JOYDEV is not set -CONFIG_INPUT_EVDEV=y -# CONFIG_INPUT_EVBUG is not set - -# -# Input Device Drivers -# -# CONFIG_INPUT_KEYBOARD is not set -# CONFIG_INPUT_MOUSE is not set -# CONFIG_INPUT_JOYSTICK is not set -# CONFIG_INPUT_TABLET is not set -# CONFIG_INPUT_TOUCHSCREEN is not set -# CONFIG_INPUT_MISC is not set - -# -# Hardware I/O ports -# -# CONFIG_SERIO is not set -CONFIG_ARCH_MIGHT_HAVE_PC_SERIO=y +CONFIG_FUSE_FS=m +# CONFIG_FUSION is not set +CONFIG_FUTEX=y +# CONFIG_FW_LOADER is not set # CONFIG_GAMEPORT is not set - -# -# Character devices -# -CONFIG_TTY=y -# CONFIG_VT is not set -CONFIG_UNIX98_PTYS=y -# CONFIG_DEVPTS_MULTIPLE_INSTANCES is not set -# CONFIG_LEGACY_PTYS is not set -# CONFIG_SERIAL_NONSTANDARD is not set -# CONFIG_NOZOMI is not set -# CONFIG_N_GSM is not set -# CONFIG_TRACE_SINK is not set -# CONFIG_DEVMEM is not set -# CONFIG_DEVKMEM is not set - -# -# Serial drivers -# -CONFIG_SERIAL_EARLYCON=y -CONFIG_SERIAL_8250=y -# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set -CONFIG_SERIAL_8250_PNP=y -CONFIG_SERIAL_8250_CONSOLE=y -# CONFIG_SERIAL_8250_PCI is not set -CONFIG_SERIAL_8250_NR_UARTS=1 -CONFIG_SERIAL_8250_RUNTIME_UARTS=1 -# CONFIG_SERIAL_8250_EXTENDED is not set -# CONFIG_SERIAL_8250_FSL is not set -# CONFIG_SERIAL_8250_DW is not set -# CONFIG_SERIAL_8250_RT288X is not set -# CONFIG_SERIAL_8250_FINTEK is not set -# CONFIG_SERIAL_8250_MID is not set - -# -# Non-8250 serial port support -# -# CONFIG_SERIAL_UARTLITE is not set -CONFIG_SERIAL_CORE=y -CONFIG_SERIAL_CORE_CONSOLE=y -# CONFIG_SERIAL_JSM is not set -# CONFIG_SERIAL_SCCNXP is not set -# CONFIG_SERIAL_ALTERA_JTAGUART is not set -# CONFIG_SERIAL_ALTERA_UART is not set -# CONFIG_SERIAL_ARC is not set -# CONFIG_SERIAL_RP2 is not set -# CONFIG_SERIAL_FSL_LPUART is not set -# CONFIG_TTY_PRINTK is not set -CONFIG_HVC_DRIVER=y -CONFIG_VIRTIO_CONSOLE=y -# CONFIG_IPMI_HANDLER is not set -# CONFIG_HW_RANDOM is not set -# CONFIG_NVRAM is not set -# CONFIG_R3964 is not set -# CONFIG_APPLICOM is not set -# CONFIG_MWAVE is not set -# CONFIG_RAW_DRIVER is not set +# CONFIG_GART_IOMMU is not set +# CONFIG_GCOV_KERNEL is not set +CONFIG_GENERIC_CALIBRATE_DELAY=y +CONFIG_GENERIC_CLOCKEVENTS=y +CONFIG_GENERIC_CLOCKEVENTS_BROADCAST=y +CONFIG_GENERIC_CLOCKEVENTS_MIN_ADJUST=y +CONFIG_GENERIC_CMOS_UPDATE=y +# CONFIG_GENERIC_CPU is not set +CONFIG_GENERIC_CPU_AUTOPROBE=y +# CONFIG_GENERIC_CPU_DEVICES is not set +CONFIG_GENERIC_EARLY_IOREMAP=y +CONFIG_GENERIC_FIND_FIRST_BIT=y +CONFIG_GENERIC_HWEIGHT=y +CONFIG_GENERIC_IO=y +CONFIG_GENERIC_IOMAP=y +CONFIG_GENERIC_IRQ_PROBE=y +CONFIG_GENERIC_IRQ_SHOW=y +CONFIG_GENERIC_MSI_IRQ=y +CONFIG_GENERIC_MSI_IRQ_DOMAIN=y +CONFIG_GENERIC_NET_UTILS=y +CONFIG_GENERIC_PCI_IOMAP=y +CONFIG_GENERIC_PENDING_IRQ=y +# CONFIG_GENERIC_PHY is not set +CONFIG_GENERIC_SMP_IDLE_THREAD=y +CONFIG_GENERIC_STRNCPY_FROM_USER=y +CONFIG_GENERIC_STRNLEN_USER=y +CONFIG_GENERIC_TIME_VSYSCALL=y +# CONFIG_GENWQE is not set +CONFIG_GFS2_FS=m +# CONFIG_GOOGLE_FIRMWARE is not set +# CONFIG_GPIOLIB is not set +CONFIG_GRACE_PERIOD=m +# CONFIG_HAMRADIO is not set +# CONFIG_HANGCHECK_TIMER is not set +CONFIG_HAS_DMA=y +CONFIG_HAS_IOMEM=y +CONFIG_HAS_IOPORT_MAP=y +# CONFIG_HAVE_64BIT_ALIGNED_ACCESS is not set +CONFIG_HAVE_ACPI_APEI=y +CONFIG_HAVE_ACPI_APEI_NMI=y +CONFIG_HAVE_ALIGNED_STRUCT_PAGE=y +# CONFIG_HAVE_AOUT is not set +CONFIG_HAVE_ARCH_AUDITSYSCALL=y +# CONFIG_HAVE_ARCH_BITREVERSE is not set +CONFIG_HAVE_ARCH_HUGE_VMAP=y +CONFIG_HAVE_ARCH_JUMP_LABEL=y +CONFIG_HAVE_ARCH_KGDB=y +CONFIG_HAVE_ARCH_KMEMCHECK=y +CONFIG_HAVE_ARCH_SECCOMP_FILTER=y +CONFIG_HAVE_ARCH_SOFT_DIRTY=y +CONFIG_HAVE_ARCH_TRACEHOOK=y +CONFIG_HAVE_ARCH_TRANSPARENT_HUGEPAGE=y +# CONFIG_HAVE_BOOTMEM_INFO_NODE is not set +CONFIG_HAVE_BPF_JIT=y +CONFIG_HAVE_CC_STACKPROTECTOR=y +CONFIG_HAVE_CMPXCHG_DOUBLE=y +CONFIG_HAVE_CMPXCHG_LOCAL=y +CONFIG_HAVE_CONTEXT_TRACKING=y +CONFIG_HAVE_COPY_THREAD_TLS=y +CONFIG_HAVE_C_RECORDMCOUNT=y +CONFIG_HAVE_DEBUG_KMEMLEAK=y +CONFIG_HAVE_DEBUG_STACKOVERFLOW=y +CONFIG_HAVE_DMA_API_DEBUG=y +CONFIG_HAVE_DMA_ATTRS=y +CONFIG_HAVE_DMA_CONTIGUOUS=y +CONFIG_HAVE_DYNAMIC_FTRACE=y +CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y +CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS=y +CONFIG_HAVE_FENTRY=y +CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y +CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y +CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y +CONFIG_HAVE_FUNCTION_TRACER=y +# CONFIG_HAVE_GENERIC_DMA_COHERENT is not set +CONFIG_HAVE_HW_BREAKPOINT=y +CONFIG_HAVE_IDE=y +CONFIG_HAVE_IOREMAP_PROT=y +CONFIG_HAVE_IRQ_EXIT_ON_IRQ_STACK=y +CONFIG_HAVE_IRQ_TIME_ACCOUNTING=y +CONFIG_HAVE_KERNEL_BZIP2=y +CONFIG_HAVE_KERNEL_GZIP=y +CONFIG_HAVE_KERNEL_LZ4=y +CONFIG_HAVE_KERNEL_LZMA=y +CONFIG_HAVE_KERNEL_LZO=y +CONFIG_HAVE_KERNEL_XZ=y +CONFIG_HAVE_KPROBES=y +CONFIG_HAVE_KPROBES_ON_FTRACE=y +CONFIG_HAVE_KRETPROBES=y +CONFIG_HAVE_KVM=y +CONFIG_HAVE_LATENCYTOP_SUPPORT=y +CONFIG_HAVE_LIVEPATCH=y +CONFIG_HAVE_MEMBLOCK=y +CONFIG_HAVE_MEMBLOCK_NODE_MAP=y +CONFIG_HAVE_MEMORY_PRESENT=y +CONFIG_HAVE_MIXED_BREAKPOINTS_REGS=y +CONFIG_HAVE_MMIOTRACE_SUPPORT=y +CONFIG_HAVE_NET_DSA=y +CONFIG_HAVE_OPROFILE=y +CONFIG_HAVE_OPTPROBES=y +CONFIG_HAVE_PCSPKR_PLATFORM=y +CONFIG_HAVE_PERF_EVENTS=y +CONFIG_HAVE_PERF_EVENTS_NMI=y +CONFIG_HAVE_PERF_REGS=y +CONFIG_HAVE_PERF_USER_STACK_DUMP=y +CONFIG_HAVE_REGS_AND_STACK_ACCESS_API=y +CONFIG_HAVE_SETUP_PER_CPU_AREA=y +CONFIG_HAVE_SYSCALL_TRACEPOINTS=y +CONFIG_HAVE_UNSTABLE_SCHED_CLOCK=y +CONFIG_HAVE_USER_RETURN_NOTIFIER=y +CONFIG_HAVE_VIRT_CPU_ACCOUNTING_GEN=y +# CONFIG_HEADERS_CHECK is not set +CONFIG_HFSPLUS_FS=m +# CONFIG_HFSPLUS_FS_POSIX_ACL is not set +CONFIG_HFS_FS=m +# CONFIG_HID is not set +# CONFIG_HIGH_RES_TIMERS is not set +# CONFIG_HIO is not set +# CONFIG_HIPPI is not set +# CONFIG_HOTPLUG_CPU is not set +CONFIG_HOTPLUG_PCI=y +CONFIG_HOTPLUG_PCI_ACPI=y +# CONFIG_HOTPLUG_PCI_ACPI_IBM is not set +# CONFIG_HOTPLUG_PCI_CPCI is not set +# CONFIG_HOTPLUG_PCI_SHPC is not set # CONFIG_HPET is not set -# CONFIG_HANGCHECK_TIMER is not set -# CONFIG_TCG_TPM is not set -# CONFIG_TELCLOCK is not set -CONFIG_DEVPORT=y -# CONFIG_XILLYBUS is not set - -# -# I2C support -# -# CONFIG_I2C is not set -# CONFIG_SPI is not set -# CONFIG_SPMI is not set +CONFIG_HPET_TIMER=y +CONFIG_HPFS_FS=m +# CONFIG_HP_ILO is not set # CONFIG_HSI is not set - -# -# PPS support -# -# CONFIG_PPS is not set - -# -# PPS generators support -# - -# -# PTP clock support -# -# CONFIG_PTP_1588_CLOCK is not set - -# -# Enable PHYLIB and NETWORK_PHY_TIMESTAMPING to see the additional clocks. -# -CONFIG_ARCH_WANT_OPTIONAL_GPIOLIB=y -# CONFIG_GPIOLIB is not set -# CONFIG_W1 is not set -# CONFIG_POWER_SUPPLY is not set -# CONFIG_POWER_AVS is not set -# CONFIG_HWMON is not set -# CONFIG_THERMAL is not set -# CONFIG_WATCHDOG is not set -CONFIG_SSB_POSSIBLE=y - -# -# Sonics Silicon Backplane -# -# CONFIG_SSB is not set -CONFIG_BCMA_POSSIBLE=y - -# -# Broadcom specific AMBA -# -# CONFIG_BCMA is not set - -# -# Multifunction device drivers -# -# CONFIG_MFD_CORE is not set -# CONFIG_MFD_CROS_EC is not set +# CONFIG_HSR is not set # CONFIG_HTC_PASIC3 is not set -# CONFIG_LPC_ICH is not set -# CONFIG_LPC_SCH is not set -# CONFIG_MFD_INTEL_LPSS_ACPI is not set -# CONFIG_MFD_INTEL_LPSS_PCI is not set -# CONFIG_MFD_JANZ_CMODIO is not set -# CONFIG_MFD_KEMPLD is not set -# CONFIG_MFD_MT6397 is not set -# CONFIG_MFD_RDC321X is not set -# CONFIG_MFD_RTSX_PCI is not set -# CONFIG_MFD_SM501 is not set -# CONFIG_ABX500_CORE is not set -# CONFIG_MFD_SYSCON is not set -# CONFIG_MFD_TI_AM335X_TSCADC is not set -# CONFIG_MFD_TMIO is not set -# CONFIG_MFD_VX855 is not set -# CONFIG_REGULATOR is not set -# CONFIG_MEDIA_SUPPORT is not set - -# -# Graphics support -# -# CONFIG_AGP is not set -# CONFIG_VGA_ARB is not set -# CONFIG_VGA_SWITCHEROO is not set -# CONFIG_DRM is not set - -# -# Frame buffer Devices -# -# CONFIG_FB is not set -# CONFIG_BACKLIGHT_LCD_SUPPORT is not set -# CONFIG_VGASTATE is not set -# CONFIG_SOUND is not set - -# -# HID support -# -# CONFIG_HID is not set -CONFIG_USB_OHCI_LITTLE_ENDIAN=y -# CONFIG_USB_SUPPORT is not set -# CONFIG_UWB is not set -# CONFIG_MMC is not set -# CONFIG_MEMSTICK is not set -# CONFIG_NEW_LEDS is not set -# CONFIG_ACCESSIBILITY is not set -# CONFIG_INFINIBAND is not set -CONFIG_EDAC_ATOMIC_SCRUB=y -CONFIG_EDAC_SUPPORT=y -# CONFIG_EDAC is not set -CONFIG_RTC_LIB=y -# CONFIG_RTC_CLASS is not set -# CONFIG_DMADEVICES is not set -# CONFIG_AUXDISPLAY is not set -# CONFIG_UIO is not set -# CONFIG_VIRT_DRIVERS is not set -CONFIG_VIRTIO=y - -# -# Virtio drivers -# -CONFIG_VIRTIO_PCI=y -CONFIG_VIRTIO_PCI_LEGACY=y -CONFIG_VIRTIO_BALLOON=y -# CONFIG_VIRTIO_INPUT is not set -CONFIG_VIRTIO_MMIO=y -CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y - -# -# Microsoft Hyper-V guest support -# +# CONFIG_HT_IRQ is not set +# CONFIG_HUGETLBFS is not set +# CONFIG_HUGETLB_PAGE is not set +CONFIG_HVC_DRIVER=y +# CONFIG_HWMON is not set +# CONFIG_HW_RANDOM is not set # CONFIG_HYPERV is not set -# CONFIG_STAGING is not set -# CONFIG_X86_PLATFORM_DEVICES is not set -# CONFIG_CHROME_PLATFORMS is not set - -# -# Hardware Spinlock drivers -# - -# -# Clock Source drivers -# -CONFIG_CLKEVT_I8253=y -CONFIG_CLKBLD_I8253=y -# CONFIG_ATMEL_PIT is not set -# CONFIG_SH_TIMER_CMT is not set -# CONFIG_SH_TIMER_MTU2 is not set -# CONFIG_SH_TIMER_TMU is not set -# CONFIG_EM_TIMER_STI is not set -# CONFIG_MAILBOX is not set +CONFIG_HYPERVISOR_GUEST=y +CONFIG_HZ=250 +# CONFIG_HZ_100 is not set +# CONFIG_HZ_1000 is not set +CONFIG_HZ_250=y +# CONFIG_HZ_300 is not set +CONFIG_HZ_PERIODIC=y +# CONFIG_I2C is not set +# CONFIG_I7300_IDLE is not set +# CONFIG_I8K is not set +# CONFIG_IA32_EMULATION is not set +# CONFIG_IBM_ASM is not set +# CONFIG_IDE is not set +# CONFIG_IDLE_PAGE_TRACKING is not set +# CONFIG_IEEE802154 is not set +# CONFIG_IIO is not set +# CONFIG_IKCONFIG is not set +CONFIG_ILLEGAL_POINTER_VALUE=0xdead000000000000 +CONFIG_INET=y +# CONFIG_INET6_AH is not set +# CONFIG_INET6_ESP is not set +# CONFIG_INET6_IPCOMP is not set +# CONFIG_INET6_TUNNEL is not set +CONFIG_INET6_XFRM_MODE_BEET=y +# CONFIG_INET6_XFRM_MODE_ROUTEOPTIMIZATION is not set +CONFIG_INET6_XFRM_MODE_TRANSPORT=y +CONFIG_INET6_XFRM_MODE_TUNNEL=y +# CONFIG_INET6_XFRM_TUNNEL is not set +# CONFIG_INET_AH is not set +# CONFIG_INET_DIAG is not set +# CONFIG_INET_ESP is not set +# CONFIG_INET_IPCOMP is not set +# CONFIG_INET_LRO is not set +CONFIG_INET_TUNNEL=y +# CONFIG_INET_XFRM_MODE_BEET is not set +# CONFIG_INET_XFRM_MODE_TRANSPORT is not set +# CONFIG_INET_XFRM_MODE_TUNNEL is not set +# CONFIG_INET_XFRM_TUNNEL is not set +# CONFIG_INFINIBAND is not set +# CONFIG_INFTL is not set +CONFIG_INITRAMFS_SOURCE="" +CONFIG_INIT_ENV_ARG_LIMIT=32 +CONFIG_INLINE_READ_UNLOCK=y +CONFIG_INLINE_READ_UNLOCK_IRQ=y +CONFIG_INLINE_SPIN_UNLOCK_IRQ=y +CONFIG_INLINE_WRITE_UNLOCK=y +CONFIG_INLINE_WRITE_UNLOCK_IRQ=y +CONFIG_INOTIFY_USER=y +CONFIG_INPUT=y +# CONFIG_INPUT_EVBUG is not set +CONFIG_INPUT_EVDEV=y +# CONFIG_INPUT_FF_MEMLESS is not set +# CONFIG_INPUT_JOYDEV is not set +# CONFIG_INPUT_JOYSTICK is not set +# CONFIG_INPUT_KEYBOARD is not set +# CONFIG_INPUT_MATRIXKMAP is not set +# CONFIG_INPUT_MISC is not set +# CONFIG_INPUT_MOUSE is not set +# CONFIG_INPUT_MOUSEDEV is not set +# CONFIG_INPUT_POLLDEV is not set +# CONFIG_INPUT_SPARSEKMAP is not set +# CONFIG_INPUT_TABLET is not set +# CONFIG_INPUT_TOUCHSCREEN is not set +CONFIG_INSTRUCTION_DECODER=y +# CONFIG_INTEL_MIC_BUS is not set +# CONFIG_INTEL_TH is not set +# CONFIG_INTERVAL_TREE_TEST is not set +CONFIG_IOMMU_HELPER=y +# CONFIG_IOMMU_STRESS is not set # CONFIG_IOMMU_SUPPORT is not set - -# -# Remoteproc drivers -# -# CONFIG_STE_MODEM_RPROC is not set - -# -# Rpmsg drivers -# - -# -# SOC (System On Chip) specific Drivers -# -# CONFIG_SUNXI_SRAM is not set -# CONFIG_SOC_TI is not set -# CONFIG_PM_DEVFREQ is not set -# CONFIG_EXTCON is not set -# CONFIG_MEMORY is not set -# CONFIG_IIO is not set -# CONFIG_NTB is not set -# CONFIG_VME_BUS is not set -# CONFIG_PWM is not set +# CONFIG_IOSCHED_CFQ is not set +# CONFIG_IOSCHED_DEADLINE is not set +CONFIG_IOSCHED_NOOP=y +# CONFIG_IOSF_MBI is not set +CONFIG_IO_DELAY_0X80=y +# CONFIG_IO_DELAY_0XED is not set +# CONFIG_IO_DELAY_NONE is not set +CONFIG_IO_DELAY_TYPE_0X80=0 +CONFIG_IO_DELAY_TYPE_0XED=1 +CONFIG_IO_DELAY_TYPE_NONE=3 +CONFIG_IO_DELAY_TYPE_UDELAY=2 +# CONFIG_IO_DELAY_UDELAY is not set # CONFIG_IPACK_BUS is not set -# CONFIG_RESET_CONTROLLER is not set -# CONFIG_FMC is not set - -# -# PHY Subsystem -# -# CONFIG_GENERIC_PHY is not set -# CONFIG_PHY_PXA_28NM_HSIC is not set -# CONFIG_PHY_PXA_28NM_USB2 is not set -# CONFIG_BCM_KONA_USB2_PHY is not set -# CONFIG_POWERCAP is not set -# CONFIG_MCB is not set - -# -# Performance monitor support -# -# CONFIG_RAS is not set -# CONFIG_THUNDERBOLT is not set - -# -# Android -# -# CONFIG_ANDROID is not set -# CONFIG_LIBNVDIMM is not set -# CONFIG_NVMEM is not set -# CONFIG_STM is not set -# CONFIG_STM_DUMMY is not set -# CONFIG_STM_SOURCE_CONSOLE is not set -# CONFIG_INTEL_TH is not set - -# -# FPGA Configuration Support -# -# CONFIG_FPGA is not set - -# -# Ubuntu Supplied Third-Party Device Drivers -# -# CONFIG_HIO is not set -# CONFIG_WLAN_VENDOR_RSI is not set -CONFIG_ZLIB_DEFLATE=y - -# -# Firmware Drivers -# -# CONFIG_EDD is not set -# CONFIG_FIRMWARE_MEMMAP is not set -# CONFIG_DELL_RBU is not set -# CONFIG_DCDBAS is not set +CONFIG_IPC_NS=y +# CONFIG_IPMI_HANDLER is not set +CONFIG_IPV6=y +# CONFIG_IPV6_GRE is not set +# CONFIG_IPV6_ILA is not set +# CONFIG_IPV6_MIP6 is not set +# CONFIG_IPV6_MROUTE is not set +# CONFIG_IPV6_MULTIPLE_TABLES is not set +CONFIG_IPV6_NDISC_NODETYPE=y +# CONFIG_IPV6_OPTIMISTIC_DAD is not set +# CONFIG_IPV6_ROUTER_PREF is not set +CONFIG_IPV6_SIT=y +# CONFIG_IPV6_SIT_6RD is not set +# CONFIG_IPV6_TUNNEL is not set +# CONFIG_IPV6_VTI is not set +# CONFIG_IPVLAN is not set +# CONFIG_IPX is not set +# CONFIG_IP_ADVANCED_ROUTER is not set +# CONFIG_IP_DCCP is not set +# CONFIG_IP_MULTICAST is not set +CONFIG_IP_PNP=y +# CONFIG_IP_PNP_BOOTP is not set +CONFIG_IP_PNP_DHCP=y +# CONFIG_IP_PNP_RARP is not set +# CONFIG_IP_SCTP is not set +# CONFIG_IRDA is not set +CONFIG_IRQ_DOMAIN=y +# CONFIG_IRQ_DOMAIN_DEBUG is not set +CONFIG_IRQ_DOMAIN_HIERARCHY=y +CONFIG_IRQ_FORCED_THREADING=y +# CONFIG_IRQ_FORCED_THREADING_DEFAULT is not set +# CONFIG_IRQ_TIME_ACCOUNTING is not set +CONFIG_IRQ_WORK=y +# CONFIG_ISA_DMA_API is not set +# CONFIG_ISCSI_BOOT_SYSFS is not set # CONFIG_ISCSI_IBFT_FIND is not set -# CONFIG_GOOGLE_FIRMWARE is not set - -# -# EFI (Extensible Firmware Interface) Support -# -# CONFIG_EFI_VARS is not set -CONFIG_EFI_ESRT=y -# CONFIG_EFI_FAKE_MEMMAP is not set -CONFIG_EFI_RUNTIME_WRAPPERS=y -# CONFIG_EFI_TEST is not set - -# -# File systems -# -CONFIG_DCACHE_WORD_ACCESS=y -# CONFIG_EXT2_FS is not set -# CONFIG_EXT3_FS is not set -CONFIG_EXT4_FS=y -CONFIG_EXT4_USE_FOR_EXT2=y -# CONFIG_EXT4_FS_POSIX_ACL is not set -# CONFIG_EXT4_FS_SECURITY is not set -CONFIG_EXT4_ENCRYPTION=m -CONFIG_EXT4_FS_ENCRYPTION=y -# CONFIG_EXT4_DEBUG is not set -CONFIG_JBD2=y -# CONFIG_JBD2_DEBUG is not set -CONFIG_FS_MBCACHE=y -CONFIG_REISERFS_FS=m -# CONFIG_REISERFS_CHECK is not set -# CONFIG_REISERFS_PROC_INFO is not set -# CONFIG_REISERFS_FS_XATTR is not set -CONFIG_JFS_FS=m -# CONFIG_JFS_POSIX_ACL is not set -# CONFIG_JFS_SECURITY is not set -# CONFIG_JFS_DEBUG is not set -# CONFIG_JFS_STATISTICS is not set -CONFIG_XFS_FS=m -# CONFIG_XFS_QUOTA is not set -# CONFIG_XFS_POSIX_ACL is not set -# CONFIG_XFS_RT is not set -# CONFIG_XFS_WARN is not set -# CONFIG_XFS_DEBUG is not set -CONFIG_GFS2_FS=m -CONFIG_OCFS2_FS=m -CONFIG_OCFS2_FS_O2CB=m -CONFIG_OCFS2_FS_STATS=y -CONFIG_OCFS2_DEBUG_MASKLOG=y -# CONFIG_OCFS2_DEBUG_FS is not set -CONFIG_BTRFS_FS=m -# CONFIG_BTRFS_FS_POSIX_ACL is not set -# CONFIG_BTRFS_FS_CHECK_INTEGRITY is not set -# CONFIG_BTRFS_FS_RUN_SANITY_TESTS is not set -# CONFIG_BTRFS_DEBUG is not set -# CONFIG_BTRFS_ASSERT is not set -CONFIG_NILFS2_FS=m -CONFIG_F2FS_FS=m -CONFIG_F2FS_STAT_FS=y -CONFIG_F2FS_FS_XATTR=y -CONFIG_F2FS_FS_POSIX_ACL=y -# CONFIG_F2FS_FS_SECURITY is not set -# CONFIG_F2FS_CHECK_FS is not set -# CONFIG_F2FS_FS_ENCRYPTION is not set -# CONFIG_FS_DAX is not set -CONFIG_FS_POSIX_ACL=y -CONFIG_EXPORTFS=y -CONFIG_FILE_LOCKING=y -CONFIG_FSNOTIFY=y -# CONFIG_DNOTIFY is not set -CONFIG_INOTIFY_USER=y -# CONFIG_FANOTIFY is not set -CONFIG_QUOTA=y -# CONFIG_QUOTA_NETLINK_INTERFACE is not set -CONFIG_PRINT_QUOTA_WARNING=y -# CONFIG_QUOTA_DEBUG is not set -CONFIG_QUOTA_TREE=m -# CONFIG_QFMT_V1 is not set -# CONFIG_QFMT_V2 is not set -CONFIG_QUOTACTL=y -CONFIG_AUTOFS4_FS=y -CONFIG_FUSE_FS=m -# CONFIG_CUSE is not set -CONFIG_OVERLAY_FS=m -CONFIG_OVERLAY_FS_V1=y - -# -# Caches -# -# CONFIG_FSCACHE is not set - -# -# CD-ROM/DVD Filesystems -# -CONFIG_ISO9660_FS=y -CONFIG_JOLIET=y -CONFIG_ZISOFS=y -CONFIG_UDF_FS=m -CONFIG_UDF_NLS=y - -# -# DOS/FAT/NT Filesystems -# -CONFIG_FAT_FS=m -CONFIG_MSDOS_FS=m -CONFIG_VFAT_FS=m -CONFIG_FAT_DEFAULT_CODEPAGE=437 -CONFIG_FAT_DEFAULT_IOCHARSET="iso8859-1" -CONFIG_NTFS_FS=m -# CONFIG_NTFS_DEBUG is not set -# CONFIG_NTFS_RW is not set - -# -# Pseudo filesystems -# -CONFIG_PROC_FS=y -# CONFIG_PROC_KCORE is not set -CONFIG_PROC_SYSCTL=y -CONFIG_PROC_PAGE_MONITOR=y -# CONFIG_PROC_CHILDREN is not set -CONFIG_KERNFS=y -CONFIG_SYSFS=y -CONFIG_TMPFS=y -CONFIG_TMPFS_POSIX_ACL=y -CONFIG_TMPFS_XATTR=y -# CONFIG_HUGETLBFS is not set -# CONFIG_HUGETLB_PAGE is not set -CONFIG_CONFIGFS_FS=m -CONFIG_EFIVAR_FS=m -CONFIG_MISC_FILESYSTEMS=y -CONFIG_ADFS_FS=m -# CONFIG_ADFS_FS_RW is not set -CONFIG_AFFS_FS=m -CONFIG_ECRYPT_FS=m -# CONFIG_ECRYPT_FS_MESSAGING is not set -CONFIG_HFS_FS=m -CONFIG_HFSPLUS_FS=m -# CONFIG_HFSPLUS_FS_POSIX_ACL is not set -CONFIG_BEFS_FS=m -# CONFIG_BEFS_DEBUG is not set -CONFIG_BFS_FS=m -CONFIG_EFS_FS=m +# CONFIG_ISCSI_TARGET is not set +CONFIG_ISCSI_TCP=y +# CONFIG_ISDN is not set +CONFIG_ISO9660_FS=y +CONFIG_JBD2=y +# CONFIG_JBD2_DEBUG is not set +# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set CONFIG_JFFS2_FS=m CONFIG_JFFS2_FS_DEBUG=0 -CONFIG_JFFS2_FS_WRITEBUFFER=y # CONFIG_JFFS2_FS_WBUF_VERIFY is not set -# CONFIG_JFFS2_SUMMARY is not set +CONFIG_JFFS2_FS_WRITEBUFFER=y # CONFIG_JFFS2_FS_XATTR is not set -# CONFIG_JFFS2_COMPRESSION_OPTIONS is not set -CONFIG_JFFS2_ZLIB=y # CONFIG_JFFS2_LZO is not set CONFIG_JFFS2_RTIME=y # CONFIG_JFFS2_RUBIN is not set -CONFIG_UBIFS_FS=m -# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set -CONFIG_UBIFS_FS_LZO=y -CONFIG_UBIFS_FS_ZLIB=y -# CONFIG_UBIFS_ATIME_SUPPORT is not set +# CONFIG_JFFS2_SUMMARY is not set +CONFIG_JFFS2_ZLIB=y +# CONFIG_JFS_DEBUG is not set +CONFIG_JFS_FS=m +# CONFIG_JFS_POSIX_ACL is not set +# CONFIG_JFS_SECURITY is not set +# CONFIG_JFS_STATISTICS is not set +CONFIG_JOLIET=y +# CONFIG_JUMP_LABEL is not set +# CONFIG_KALLSYMS is not set +# CONFIG_KERNEL_BZIP2 is not set +CONFIG_KERNEL_GZIP=y +# CONFIG_KERNEL_LZ4 is not set +# CONFIG_KERNEL_LZMA is not set +# CONFIG_KERNEL_LZO is not set +# CONFIG_KERNEL_XZ is not set +CONFIG_KERNFS=y +# CONFIG_KEXEC is not set +CONFIG_KEYS=y +# CONFIG_KGDB is not set +# CONFIG_KMEMCHECK is not set +# CONFIG_KPROBES is not set +# CONFIG_KSM is not set +CONFIG_KVM_DEBUG_FS=y +CONFIG_KVM_GUEST=y +# CONFIG_L2TP is not set +# CONFIG_LAPB is not set +# CONFIG_LATENCYTOP is not set +# CONFIG_LEGACY_PTYS is not set +CONFIG_LEGACY_VSYSCALL_EMULATE=y +# CONFIG_LEGACY_VSYSCALL_NATIVE is not set +# CONFIG_LEGACY_VSYSCALL_NONE is not set +CONFIG_LIBCRC32C=m +# CONFIG_LIBNVDIMM is not set +# CONFIG_LKDTM is not set +# CONFIG_LLC2 is not set +CONFIG_LOCALVERSION="" +# CONFIG_LOCALVERSION_AUTO is not set +CONFIG_LOCKD=m +CONFIG_LOCKDEP_SUPPORT=y +CONFIG_LOCKD_V4=y +# CONFIG_LOCKUP_DETECTOR is not set +CONFIG_LOCK_SPIN_ON_OWNER=y +# CONFIG_LOCK_STAT is not set +# CONFIG_LOCK_TORTURE_TEST is not set # CONFIG_LOGFS is not set -# CONFIG_CRAMFS is not set -# CONFIG_SQUASHFS is not set -CONFIG_VXFS_FS=m +CONFIG_LOG_BUF_SHIFT=17 +CONFIG_LOG_CPU_MAX_BUF_SHIFT=12 +# CONFIG_LOOPBACK_TARGET is not set +# CONFIG_LPC_ICH is not set +# CONFIG_LPC_SCH is not set +# CONFIG_LWTUNNEL is not set +CONFIG_LZO_COMPRESS=m +CONFIG_LZO_DECOMPRESS=m +# CONFIG_MACINTOSH_DRIVERS is not set +# CONFIG_MACVLAN is not set +# CONFIG_MAGIC_SYSRQ is not set +# CONFIG_MAILBOX is not set +# CONFIG_MATOM is not set +# CONFIG_MAXSMP is not set +# CONFIG_MCB is not set +CONFIG_MCORE2=y +CONFIG_MD=y +# CONFIG_MD_FAULTY is not set +# CONFIG_MD_LINEAR is not set +# CONFIG_MD_MULTIPATH is not set +# CONFIG_MD_RAID0 is not set +# CONFIG_MD_RAID1 is not set +# CONFIG_MD_RAID10 is not set +# CONFIG_MD_RAID456 is not set +# CONFIG_MEDIA_SUPPORT is not set +# CONFIG_MEGARAID_LEGACY is not set +# CONFIG_MEGARAID_NEWGEN is not set +# CONFIG_MEGARAID_SAS is not set +# CONFIG_MEMBARRIER is not set +# CONFIG_MEMCG is not set +# CONFIG_MEMORY is not set +CONFIG_MEMORY_BALLOON=y +# CONFIG_MEMORY_HOTPLUG is not set +# CONFIG_MEMSTICK is not set +# CONFIG_MEMTEST is not set +CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 +# CONFIG_MFD_CORE is not set +# CONFIG_MFD_CROS_EC is not set +# CONFIG_MFD_INTEL_LPSS_ACPI is not set +# CONFIG_MFD_INTEL_LPSS_PCI is not set +# CONFIG_MFD_JANZ_CMODIO is not set +# CONFIG_MFD_KEMPLD is not set +# CONFIG_MFD_MT6397 is not set +# CONFIG_MFD_RDC321X is not set +# CONFIG_MFD_RTSX_PCI is not set +# CONFIG_MFD_SM501 is not set +# CONFIG_MFD_SYSCON is not set +# CONFIG_MFD_TI_AM335X_TSCADC is not set +# CONFIG_MFD_TMIO is not set +# CONFIG_MFD_VX855 is not set +# CONFIG_MICROCODE is not set CONFIG_MINIX_FS=m -CONFIG_OMFS_FS=m -CONFIG_HPFS_FS=m -CONFIG_QNX4FS_FS=m -CONFIG_QNX6FS_FS=m -# CONFIG_QNX6FS_DEBUG is not set -CONFIG_ROMFS_FS=m -CONFIG_ROMFS_BACKED_BY_BLOCK=y -# CONFIG_ROMFS_BACKED_BY_MTD is not set -# CONFIG_ROMFS_BACKED_BY_BOTH is not set -CONFIG_ROMFS_ON_BLOCK=y -# CONFIG_PSTORE is not set -CONFIG_SYSV_FS=m -CONFIG_UFS_FS=m -# CONFIG_UFS_FS_WRITE is not set -# CONFIG_UFS_DEBUG is not set -CONFIG_EXOFS_FS=m -# CONFIG_EXOFS_DEBUG is not set -CONFIG_AUFS_FS=m -CONFIG_AUFS_BRANCH_MAX_127=y -# CONFIG_AUFS_BRANCH_MAX_511 is not set -# CONFIG_AUFS_BRANCH_MAX_1023 is not set -# CONFIG_AUFS_BRANCH_MAX_32767 is not set -CONFIG_AUFS_SBILIST=y -# CONFIG_AUFS_HNOTIFY is not set -# CONFIG_AUFS_EXPORT is not set -# CONFIG_AUFS_XATTR is not set -# CONFIG_AUFS_FHSM is not set -# CONFIG_AUFS_RDU is not set -# CONFIG_AUFS_SHWH is not set -# CONFIG_AUFS_BR_RAMFS is not set -# CONFIG_AUFS_BR_FUSE is not set -CONFIG_AUFS_BR_HFSPLUS=y -CONFIG_AUFS_BDEV_LOOP=y -# CONFIG_AUFS_DEBUG is not set -CONFIG_ORE=m +CONFIG_MISC_FILESYSTEMS=y +# CONFIG_MK8 is not set +# CONFIG_MMC is not set +CONFIG_MMU=y +# CONFIG_MODIFY_LDT_SYSCALL is not set +CONFIG_MODULES=y +CONFIG_MODULES_TREE_LOOKUP=y +CONFIG_MODULES_USE_ELF_RELA=y +# CONFIG_MODULE_COMPRESS is not set +# CONFIG_MODULE_FORCE_LOAD is not set +CONFIG_MODULE_SIG=y +CONFIG_MODULE_SIG_ALL=y +# CONFIG_MODULE_SIG_FORCE is not set +CONFIG_MODULE_SIG_HASH="sha512" +CONFIG_MODULE_SIG_KEY="certs/signing_key.pem" +# CONFIG_MODULE_SIG_SHA1 is not set +# CONFIG_MODULE_SIG_SHA224 is not set +# CONFIG_MODULE_SIG_SHA256 is not set +# CONFIG_MODULE_SIG_SHA384 is not set +CONFIG_MODULE_SIG_SHA512=y +# CONFIG_MODULE_SRCVERSION_ALL is not set +# CONFIG_MODULE_UNLOAD is not set +# CONFIG_MODVERSIONS is not set +CONFIG_MPILIB=y +# CONFIG_MPLS is not set +# CONFIG_MPSC is not set +CONFIG_MSDOS_FS=m +CONFIG_MSDOS_PARTITION=y +CONFIG_MTD=m +# CONFIG_MTD_ABSENT is not set +# CONFIG_MTD_AR7_PARTS is not set +# CONFIG_MTD_BLOCK is not set +# CONFIG_MTD_BLOCK2MTD is not set +# CONFIG_MTD_BLOCK_RO is not set +# CONFIG_MTD_CFI is not set +CONFIG_MTD_CFI_I1=y +CONFIG_MTD_CFI_I2=y +# CONFIG_MTD_CFI_I4 is not set +# CONFIG_MTD_CFI_I8 is not set +# CONFIG_MTD_CMDLINE_PARTS is not set +# CONFIG_MTD_COMPLEX_MAPPINGS is not set +# CONFIG_MTD_DOCG3 is not set +# CONFIG_MTD_INTEL_VR_NOR is not set +# CONFIG_MTD_JEDECPROBE is not set +# CONFIG_MTD_LPDDR is not set +CONFIG_MTD_MAP_BANK_WIDTH_1=y +# CONFIG_MTD_MAP_BANK_WIDTH_16 is not set +CONFIG_MTD_MAP_BANK_WIDTH_2=y +# CONFIG_MTD_MAP_BANK_WIDTH_32 is not set +CONFIG_MTD_MAP_BANK_WIDTH_4=y +# CONFIG_MTD_MAP_BANK_WIDTH_8 is not set +# CONFIG_MTD_MTDRAM is not set +# CONFIG_MTD_NAND is not set +# CONFIG_MTD_ONENAND is not set +# CONFIG_MTD_OOPS is not set +# CONFIG_MTD_PARTITIONED_MASTER is not set +# CONFIG_MTD_PHRAM is not set +# CONFIG_MTD_PLATRAM is not set +# CONFIG_MTD_PMC551 is not set +# CONFIG_MTD_RAM is not set +# CONFIG_MTD_REDBOOT_PARTS is not set +# CONFIG_MTD_ROM is not set +# CONFIG_MTD_SLRAM is not set +# CONFIG_MTD_SPI_NOR is not set +# CONFIG_MTD_TESTS is not set +CONFIG_MTD_UBI=m +CONFIG_MTD_UBI_BEB_LIMIT=20 +# CONFIG_MTD_UBI_BLOCK is not set +# CONFIG_MTD_UBI_FASTMAP is not set +# CONFIG_MTD_UBI_GLUEBI is not set +CONFIG_MTD_UBI_WL_THRESHOLD=4096 +# CONFIG_MTRR is not set +CONFIG_MULTIUSER=y +CONFIG_MUTEX_SPIN_ON_OWNER=y +# CONFIG_MWAVE is not set +CONFIG_NAMESPACES=y +# CONFIG_NCPFS_EXTRAS is not set +# CONFIG_NCPFS_IOCTL_LOCKING is not set +# CONFIG_NCPFS_NFS_NS is not set +# CONFIG_NCPFS_NLS is not set +# CONFIG_NCPFS_OS2_NS is not set +# CONFIG_NCPFS_PACKET_SIGNING is not set +# CONFIG_NCPFS_SMALLDOS is not set +# CONFIG_NCPFS_STRONG is not set +CONFIG_NCP_FS=m +CONFIG_NEED_DMA_MAP_STATE=y +CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK=y +CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK=y +CONFIG_NEED_SG_DMA_LENGTH=y +CONFIG_NET=y +# CONFIG_NETCONSOLE is not set +CONFIG_NETDEVICES=y +# CONFIG_NETFILTER is not set +# CONFIG_NETLINK_DIAG is not set +# CONFIG_NETPOLL is not set CONFIG_NETWORK_FILESYSTEMS=y +# CONFIG_NETWORK_PHY_TIMESTAMPING is not set +# CONFIG_NETWORK_SECMARK is not set +CONFIG_NET_9P=m +# CONFIG_NET_9P_DEBUG is not set +# CONFIG_NET_9P_VIRTIO is not set +CONFIG_NET_CORE=y +# CONFIG_NET_DSA_MV88E6XXX is not set +# CONFIG_NET_DSA_MV88E6XXX_NEED_PPU is not set +# CONFIG_NET_FC is not set +CONFIG_NET_FLOW_LIMIT=y +# CONFIG_NET_FOU is not set +# CONFIG_NET_FOU_IP_TUNNELS is not set +# CONFIG_NET_IPGRE_DEMUX is not set +# CONFIG_NET_IPIP is not set +CONFIG_NET_IP_TUNNEL=y +# CONFIG_NET_KEY is not set +# CONFIG_NET_L3_MASTER_DEV is not set +CONFIG_NET_NS=y +# CONFIG_NET_PKTGEN is not set +# CONFIG_NET_POLL_CONTROLLER is not set +# CONFIG_NET_PTP_CLASSIFY is not set +CONFIG_NET_RX_BUSY_POLL=y +# CONFIG_NET_SB1000 is not set +# CONFIG_NET_SCHED is not set +# CONFIG_NET_SWITCHDEV is not set +# CONFIG_NET_TEAM is not set +# CONFIG_NET_UDP_TUNNEL is not set +# CONFIG_NEW_LEDS is not set +# CONFIG_NFC is not set +# CONFIG_NFSD is not set +CONFIG_NFS_COMMON=y CONFIG_NFS_FS=m +# CONFIG_NFS_SWAP is not set CONFIG_NFS_V2=m CONFIG_NFS_V3=m # CONFIG_NFS_V3_ACL is not set # CONFIG_NFS_V4 is not set -# CONFIG_NFS_SWAP is not set -# CONFIG_NFSD is not set -CONFIG_GRACE_PERIOD=m -CONFIG_LOCKD=m -CONFIG_LOCKD_V4=y -CONFIG_NFS_COMMON=y -CONFIG_SUNRPC=m -# CONFIG_SUNRPC_DEBUG is not set -CONFIG_CEPH_FS=m -# CONFIG_CEPH_FS_POSIX_ACL is not set -CONFIG_CIFS=m -# CONFIG_CIFS_STATS is not set -# CONFIG_CIFS_WEAK_PW_HASH is not set -# CONFIG_CIFS_UPCALL is not set -# CONFIG_CIFS_XATTR is not set -CONFIG_CIFS_DEBUG=y -# CONFIG_CIFS_DEBUG2 is not set -# CONFIG_CIFS_DFS_UPCALL is not set -# CONFIG_CIFS_SMB2 is not set -CONFIG_NCP_FS=m -# CONFIG_NCPFS_PACKET_SIGNING is not set -# CONFIG_NCPFS_IOCTL_LOCKING is not set -# CONFIG_NCPFS_STRONG is not set -# CONFIG_NCPFS_NFS_NS is not set -# CONFIG_NCPFS_OS2_NS is not set -# CONFIG_NCPFS_SMALLDOS is not set -# CONFIG_NCPFS_NLS is not set -# CONFIG_NCPFS_EXTRAS is not set -CONFIG_CODA_FS=m -CONFIG_AFS_FS=m -# CONFIG_AFS_DEBUG is not set -CONFIG_9P_FS=m -# CONFIG_9P_FS_POSIX_ACL is not set -# CONFIG_9P_FS_SECURITY is not set +# CONFIG_NFTL is not set +CONFIG_NILFS2_FS=m +CONFIG_NLATTR=y +# CONFIG_NLMON is not set CONFIG_NLS=y -CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_ASCII=m +CONFIG_NLS_CODEPAGE_1250=m +CONFIG_NLS_CODEPAGE_1251=m CONFIG_NLS_CODEPAGE_437=m CONFIG_NLS_CODEPAGE_737=m CONFIG_NLS_CODEPAGE_775=m @@ -1632,461 +1121,561 @@ -CONFIG_NLS_CODEPAGE_936=m -CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_CODEPAGE_874=m CONFIG_NLS_CODEPAGE_932=m +CONFIG_NLS_CODEPAGE_936=m CONFIG_NLS_CODEPAGE_949=m -CONFIG_NLS_CODEPAGE_874=m -CONFIG_NLS_ISO8859_8=m -CONFIG_NLS_CODEPAGE_1250=m -CONFIG_NLS_CODEPAGE_1251=m -CONFIG_NLS_ASCII=m -CONFIG_NLS_ISO8859_1=m -CONFIG_NLS_ISO8859_2=m -CONFIG_NLS_ISO8859_3=m -CONFIG_NLS_ISO8859_4=m -CONFIG_NLS_ISO8859_5=m -CONFIG_NLS_ISO8859_6=m -CONFIG_NLS_ISO8859_7=m -CONFIG_NLS_ISO8859_9=m -CONFIG_NLS_ISO8859_13=m -CONFIG_NLS_ISO8859_14=m -CONFIG_NLS_ISO8859_15=m -CONFIG_NLS_KOI8_R=m -CONFIG_NLS_KOI8_U=m -CONFIG_NLS_MAC_ROMAN=m -CONFIG_NLS_MAC_CELTIC=m -CONFIG_NLS_MAC_CENTEURO=m -CONFIG_NLS_MAC_CROATIAN=m -CONFIG_NLS_MAC_CYRILLIC=m -CONFIG_NLS_MAC_GAELIC=m -CONFIG_NLS_MAC_GREEK=m -CONFIG_NLS_MAC_ICELAND=m -CONFIG_NLS_MAC_INUIT=m -CONFIG_NLS_MAC_ROMANIAN=m -CONFIG_NLS_MAC_TURKISH=m -CONFIG_NLS_UTF8=m -# CONFIG_DLM is not set - -# -# Kernel hacking -# -CONFIG_TRACE_IRQFLAGS_SUPPORT=y - -# -# printk and dmesg options -# -CONFIG_PRINTK_TIME=y -CONFIG_MESSAGE_LOGLEVEL_DEFAULT=4 -# CONFIG_BOOT_PRINTK_DELAY is not set -# CONFIG_DYNAMIC_DEBUG is not set - -# -# Compile-time checks and compiler options -# -# CONFIG_DEBUG_INFO is not set -# CONFIG_ENABLE_WARN_DEPRECATED is not set -# CONFIG_ENABLE_MUST_CHECK is not set -CONFIG_FRAME_WARN=2048 -# CONFIG_STRIP_ASM_SYMS is not set -# CONFIG_READABLE_ASM is not set -# CONFIG_UNUSED_SYMBOLS is not set -# CONFIG_PAGE_OWNER is not set -CONFIG_DEBUG_FS=y -# CONFIG_HEADERS_CHECK is not set -# CONFIG_DEBUG_SECTION_MISMATCH is not set -# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set -CONFIG_ARCH_WANT_FRAME_POINTERS=y -# CONFIG_FRAME_POINTER is not set -# CONFIG_DEBUG_FORCE_WEAK_PER_CPU is not set -# CONFIG_MAGIC_SYSRQ is not set -CONFIG_DEBUG_KERNEL=y - -# -# Memory Debugging -# -# CONFIG_PAGE_EXTENSION is not set -# CONFIG_DEBUG_PAGEALLOC is not set -# CONFIG_DEBUG_OBJECTS is not set -# CONFIG_SLUB_STATS is not set -CONFIG_HAVE_DEBUG_KMEMLEAK=y -# CONFIG_DEBUG_KMEMLEAK is not set -# CONFIG_DEBUG_STACK_USAGE is not set -# CONFIG_DEBUG_VM is not set -# CONFIG_DEBUG_VIRTUAL is not set -# CONFIG_DEBUG_MEMORY_INIT is not set -# CONFIG_DEBUG_PER_CPU_MAPS is not set -CONFIG_HAVE_DEBUG_STACKOVERFLOW=y -# CONFIG_DEBUG_STACKOVERFLOW is not set -CONFIG_HAVE_ARCH_KMEMCHECK=y -# CONFIG_KMEMCHECK is not set -# CONFIG_DEBUG_SHIRQ is not set - -# -# Debug Lockups and Hangs -# -# CONFIG_LOCKUP_DETECTOR is not set -# CONFIG_DETECT_HUNG_TASK is not set -# CONFIG_PANIC_ON_OOPS is not set -CONFIG_PANIC_ON_OOPS_VALUE=0 -CONFIG_PANIC_TIMEOUT=0 -CONFIG_SCHED_DEBUG=y -# CONFIG_SCHED_INFO is not set -# CONFIG_SCHEDSTATS is not set -# CONFIG_SCHED_STACK_END_CHECK is not set -# CONFIG_DEBUG_TIMEKEEPING is not set -# CONFIG_TIMER_STATS is not set - -# -# Lock Debugging (spinlocks, mutexes, etc...) -# -# CONFIG_DEBUG_RT_MUTEXES is not set -# CONFIG_DEBUG_SPINLOCK is not set -# CONFIG_DEBUG_MUTEXES is not set -# CONFIG_DEBUG_WW_MUTEX_SLOWPATH is not set -# CONFIG_DEBUG_LOCK_ALLOC is not set -# CONFIG_PROVE_LOCKING is not set -# CONFIG_LOCK_STAT is not set -# CONFIG_DEBUG_ATOMIC_SLEEP is not set -# CONFIG_DEBUG_LOCKING_API_SELFTESTS is not set -# CONFIG_LOCK_TORTURE_TEST is not set -# CONFIG_STACKTRACE is not set -# CONFIG_DEBUG_KOBJECT is not set -# CONFIG_DEBUG_LIST is not set -# CONFIG_DEBUG_PI_LIST is not set -# CONFIG_DEBUG_SG is not set -# CONFIG_DEBUG_NOTIFIERS is not set -# CONFIG_DEBUG_CREDENTIALS is not set - -# -# RCU Debugging -# -# CONFIG_PROVE_RCU is not set -# CONFIG_SPARSE_RCU_POINTER is not set -# CONFIG_TORTURE_TEST is not set -# CONFIG_RCU_TORTURE_TEST is not set -CONFIG_RCU_CPU_STALL_TIMEOUT=21 -# CONFIG_RCU_TRACE is not set -# CONFIG_RCU_EQS_DEBUG is not set -# CONFIG_DEBUG_BLOCK_EXT_DEVT is not set -# CONFIG_NOTIFIER_ERROR_INJECTION is not set -# CONFIG_FAULT_INJECTION is not set -# CONFIG_LATENCYTOP is not set -CONFIG_ARCH_HAS_DEBUG_STRICT_USER_COPY_CHECKS=y -# CONFIG_DEBUG_STRICT_USER_COPY_CHECKS is not set -CONFIG_USER_STACKTRACE_SUPPORT=y -CONFIG_HAVE_FUNCTION_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_TRACER=y -CONFIG_HAVE_FUNCTION_GRAPH_FP_TEST=y -CONFIG_HAVE_DYNAMIC_FTRACE=y -CONFIG_HAVE_DYNAMIC_FTRACE_WITH_REGS=y -CONFIG_HAVE_FTRACE_MCOUNT_RECORD=y -CONFIG_HAVE_SYSCALL_TRACEPOINTS=y -CONFIG_HAVE_FENTRY=y -CONFIG_HAVE_C_RECORDMCOUNT=y -CONFIG_TRACING_SUPPORT=y -# CONFIG_FTRACE is not set - -# -# Runtime Testing -# -# CONFIG_LKDTM is not set -# CONFIG_TEST_LIST_SORT is not set -# CONFIG_BACKTRACE_SELF_TEST is not set -# CONFIG_RBTREE_TEST is not set -# CONFIG_INTERVAL_TREE_TEST is not set -# CONFIG_PERCPU_TEST is not set -# CONFIG_ATOMIC64_SELFTEST is not set -# CONFIG_TEST_HEXDUMP is not set -# CONFIG_TEST_STRING_HELPERS is not set -# CONFIG_TEST_KSTRTOX is not set -# CONFIG_TEST_PRINTF is not set -# CONFIG_TEST_RHASHTABLE is not set -# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set -# CONFIG_DMA_API_DEBUG is not set -# CONFIG_TEST_LKM is not set -# CONFIG_TEST_USER_COPY is not set -# CONFIG_TEST_BPF is not set -# CONFIG_TEST_UDELAY is not set -# CONFIG_MEMTEST is not set -# CONFIG_TEST_STATIC_KEYS is not set -# CONFIG_SAMPLES is not set -CONFIG_HAVE_ARCH_KGDB=y -# CONFIG_KGDB is not set -# CONFIG_STRICT_DEVMEM is not set -# CONFIG_X86_VERBOSE_BOOTUP is not set -CONFIG_EARLY_PRINTK=y -# CONFIG_EARLY_PRINTK_DBGP is not set -# CONFIG_EARLY_PRINTK_EFI is not set -# CONFIG_X86_PTDUMP_CORE is not set -# CONFIG_X86_PTDUMP is not set -# CONFIG_EFI_PGT_DUMP is not set -# CONFIG_DEBUG_RODATA is not set -# CONFIG_DEBUG_SET_MODULE_RONX is not set -# CONFIG_DEBUG_NX_TEST is not set -# CONFIG_DOUBLEFAULT is not set -# CONFIG_DEBUG_TLBFLUSH is not set -# CONFIG_IOMMU_STRESS is not set -CONFIG_HAVE_MMIOTRACE_SUPPORT=y -CONFIG_IO_DELAY_TYPE_0X80=0 -CONFIG_IO_DELAY_TYPE_0XED=1 -CONFIG_IO_DELAY_TYPE_UDELAY=2 -CONFIG_IO_DELAY_TYPE_NONE=3 -CONFIG_IO_DELAY_0X80=y -# CONFIG_IO_DELAY_0XED is not set -# CONFIG_IO_DELAY_UDELAY is not set -# CONFIG_IO_DELAY_NONE is not set -CONFIG_DEFAULT_IO_DELAY_TYPE=0 -# CONFIG_DEBUG_BOOT_PARAMS is not set -# CONFIG_CPA_DEBUG is not set +CONFIG_NLS_CODEPAGE_950=m +CONFIG_NLS_DEFAULT="utf8" +CONFIG_NLS_ISO8859_1=m +CONFIG_NLS_ISO8859_13=m +CONFIG_NLS_ISO8859_14=m +CONFIG_NLS_ISO8859_15=m +CONFIG_NLS_ISO8859_2=m +CONFIG_NLS_ISO8859_3=m +CONFIG_NLS_ISO8859_4=m +CONFIG_NLS_ISO8859_5=m +CONFIG_NLS_ISO8859_6=m +CONFIG_NLS_ISO8859_7=m +CONFIG_NLS_ISO8859_8=m +CONFIG_NLS_ISO8859_9=m +CONFIG_NLS_KOI8_R=m +CONFIG_NLS_KOI8_U=m +CONFIG_NLS_MAC_CELTIC=m +CONFIG_NLS_MAC_CENTEURO=m +CONFIG_NLS_MAC_CROATIAN=m +CONFIG_NLS_MAC_CYRILLIC=m +CONFIG_NLS_MAC_GAELIC=m +CONFIG_NLS_MAC_GREEK=m +CONFIG_NLS_MAC_ICELAND=m +CONFIG_NLS_MAC_INUIT=m +CONFIG_NLS_MAC_ROMAN=m +CONFIG_NLS_MAC_ROMANIAN=m +CONFIG_NLS_MAC_TURKISH=m +CONFIG_NLS_UTF8=m +# CONFIG_NOTIFIER_ERROR_INJECTION is not set +# CONFIG_NOZOMI is not set +CONFIG_NO_BOOTMEM=y +# CONFIG_NO_HZ is not set +# CONFIG_NO_HZ_FULL is not set +# CONFIG_NO_HZ_IDLE is not set +CONFIG_NR_CPUS=64 +# CONFIG_NTB is not set +# CONFIG_NTFS_DEBUG is not set +CONFIG_NTFS_FS=m +# CONFIG_NTFS_RW is not set +# CONFIG_NUMA is not set +# CONFIG_NVM is not set +# CONFIG_NVMEM is not set +# CONFIG_NVRAM is not set +# CONFIG_N_GSM is not set +# CONFIG_OCFS2_DEBUG_FS is not set +CONFIG_OCFS2_DEBUG_MASKLOG=y +CONFIG_OCFS2_FS=m +CONFIG_OCFS2_FS_O2CB=m +CONFIG_OCFS2_FS_STATS=y +# CONFIG_OF is not set +CONFIG_OID_REGISTRY=y +CONFIG_OMFS_FS=m +# CONFIG_OPENNSL is not set +# CONFIG_OPENVSWITCH is not set +CONFIG_OPROFILE_NMI_TIMER=y # CONFIG_OPTIMIZE_INLINING is not set -# CONFIG_DEBUG_ENTRY is not set -# CONFIG_DEBUG_NMI_SELFTEST is not set -# CONFIG_X86_DEBUG_STATIC_CPU_HAS is not set -# CONFIG_X86_DEBUG_FPU is not set -# CONFIG_PUNIT_ATOM_DEBUG is not set - -# -# Security options -# -CONFIG_KEYS=y -# CONFIG_PERSISTENT_KEYRINGS is not set -# CONFIG_BIG_KEYS is not set -CONFIG_ENCRYPTED_KEYS=m -# CONFIG_SECURITY_DMESG_RESTRICT is not set -# CONFIG_SECURITY is not set -# CONFIG_SECURITYFS is not set -CONFIG_DEFAULT_SECURITY_DAC=y -CONFIG_DEFAULT_SECURITY="" -CONFIG_XOR_BLOCKS=m -CONFIG_ASYNC_CORE=m -CONFIG_ASYNC_XOR=m -CONFIG_ASYNC_PQ=m -CONFIG_CRYPTO=y - -# -# Crypto core or helper -# -CONFIG_CRYPTO_ALGAPI=y -CONFIG_CRYPTO_ALGAPI2=y -CONFIG_CRYPTO_AEAD=m -CONFIG_CRYPTO_AEAD2=y -CONFIG_CRYPTO_BLKCIPHER=m -CONFIG_CRYPTO_BLKCIPHER2=y -CONFIG_CRYPTO_HASH=y -CONFIG_CRYPTO_HASH2=y -CONFIG_CRYPTO_RNG=m -CONFIG_CRYPTO_RNG2=y -CONFIG_CRYPTO_RNG_DEFAULT=m -CONFIG_CRYPTO_PCOMP2=y -CONFIG_CRYPTO_AKCIPHER2=y -CONFIG_CRYPTO_AKCIPHER=y -CONFIG_CRYPTO_RSA=y -CONFIG_CRYPTO_MANAGER=m -CONFIG_CRYPTO_MANAGER2=y -# CONFIG_CRYPTO_USER is not set -CONFIG_CRYPTO_MANAGER_DISABLE_TESTS=y -CONFIG_CRYPTO_GF128MUL=m -CONFIG_CRYPTO_NULL=m -CONFIG_CRYPTO_NULL2=y -# CONFIG_CRYPTO_PCRYPT is not set -CONFIG_CRYPTO_WORKQUEUE=y -# CONFIG_CRYPTO_CRYPTD is not set -# CONFIG_CRYPTO_MCRYPTD is not set -# CONFIG_CRYPTO_AUTHENC is not set -# CONFIG_CRYPTO_TEST is not set - -# -# Authenticated Encryption with Associated Data -# -# CONFIG_CRYPTO_CCM is not set -# CONFIG_CRYPTO_GCM is not set -# CONFIG_CRYPTO_CHACHA20POLY1305 is not set -CONFIG_CRYPTO_SEQIV=m -# CONFIG_CRYPTO_ECHAINIV is not set - -# -# Block modes -# -CONFIG_CRYPTO_CBC=m -CONFIG_CRYPTO_CTR=m -CONFIG_CRYPTO_CTS=m -CONFIG_CRYPTO_ECB=m -# CONFIG_CRYPTO_LRW is not set -# CONFIG_CRYPTO_PCBC is not set -CONFIG_CRYPTO_XTS=m -# CONFIG_CRYPTO_KEYWRAP is not set - -# -# Hash modes -# -# CONFIG_CRYPTO_CMAC is not set -CONFIG_CRYPTO_HMAC=m -# CONFIG_CRYPTO_XCBC is not set -# CONFIG_CRYPTO_VMAC is not set - -# -# Digest -# -CONFIG_CRYPTO_CRC32C=y -# CONFIG_CRYPTO_CRC32C_INTEL is not set -# CONFIG_CRYPTO_CRC32 is not set -# CONFIG_CRYPTO_CRC32_PCLMUL is not set -CONFIG_CRYPTO_CRCT10DIF=m -# CONFIG_CRYPTO_CRCT10DIF_PCLMUL is not set -# CONFIG_CRYPTO_GHASH is not set -# CONFIG_CRYPTO_POLY1305 is not set -# CONFIG_CRYPTO_POLY1305_X86_64 is not set -CONFIG_CRYPTO_MD4=m -CONFIG_CRYPTO_MD5=y -# CONFIG_CRYPTO_MICHAEL_MIC is not set -# CONFIG_CRYPTO_RMD128 is not set -# CONFIG_CRYPTO_RMD160 is not set -# CONFIG_CRYPTO_RMD256 is not set -# CONFIG_CRYPTO_RMD320 is not set -# CONFIG_CRYPTO_SHA1 is not set -# CONFIG_CRYPTO_SHA1_SSSE3 is not set -# CONFIG_CRYPTO_SHA256_SSSE3 is not set -# CONFIG_CRYPTO_SHA512_SSSE3 is not set -# CONFIG_CRYPTO_SHA1_MB is not set -CONFIG_CRYPTO_SHA256=m -CONFIG_CRYPTO_SHA512=y -# CONFIG_CRYPTO_TGR192 is not set -# CONFIG_CRYPTO_WP512 is not set -# CONFIG_CRYPTO_GHASH_CLMUL_NI_INTEL is not set - -# -# Ciphers -# -CONFIG_CRYPTO_AES=y -# CONFIG_CRYPTO_AES_X86_64 is not set -# CONFIG_CRYPTO_AES_NI_INTEL is not set -# CONFIG_CRYPTO_ANUBIS is not set -CONFIG_CRYPTO_ARC4=m -# CONFIG_CRYPTO_BLOWFISH is not set -# CONFIG_CRYPTO_BLOWFISH_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA is not set -# CONFIG_CRYPTO_CAMELLIA_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAMELLIA_AESNI_AVX2_X86_64 is not set -# CONFIG_CRYPTO_CAST5 is not set -# CONFIG_CRYPTO_CAST5_AVX_X86_64 is not set -# CONFIG_CRYPTO_CAST6 is not set -# CONFIG_CRYPTO_CAST6_AVX_X86_64 is not set -CONFIG_CRYPTO_DES=m -# CONFIG_CRYPTO_DES3_EDE_X86_64 is not set -# CONFIG_CRYPTO_FCRYPT is not set -# CONFIG_CRYPTO_KHAZAD is not set -# CONFIG_CRYPTO_SALSA20 is not set -# CONFIG_CRYPTO_SALSA20_X86_64 is not set -# CONFIG_CRYPTO_CHACHA20 is not set -# CONFIG_CRYPTO_CHACHA20_X86_64 is not set -# CONFIG_CRYPTO_SEED is not set -# CONFIG_CRYPTO_SERPENT is not set -# CONFIG_CRYPTO_SERPENT_SSE2_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX_X86_64 is not set -# CONFIG_CRYPTO_SERPENT_AVX2_X86_64 is not set -# CONFIG_CRYPTO_TEA is not set -# CONFIG_CRYPTO_TWOFISH is not set -# CONFIG_CRYPTO_TWOFISH_X86_64 is not set -# CONFIG_CRYPTO_TWOFISH_X86_64_3WAY is not set -# CONFIG_CRYPTO_TWOFISH_AVX_X86_64 is not set - -# -# Compression -# -CONFIG_CRYPTO_DEFLATE=m -# CONFIG_CRYPTO_ZLIB is not set -CONFIG_CRYPTO_LZO=m -# CONFIG_CRYPTO_842 is not set -# CONFIG_CRYPTO_LZ4 is not set -# CONFIG_CRYPTO_LZ4HC is not set - -# -# Random Number Generation -# -# CONFIG_CRYPTO_ANSI_CPRNG is not set -CONFIG_CRYPTO_DRBG_MENU=m -CONFIG_CRYPTO_DRBG_HMAC=y -# CONFIG_CRYPTO_DRBG_HASH is not set -# CONFIG_CRYPTO_DRBG_CTR is not set -CONFIG_CRYPTO_DRBG=m -CONFIG_CRYPTO_JITTERENTROPY=m -# CONFIG_CRYPTO_USER_API_HASH is not set -# CONFIG_CRYPTO_USER_API_SKCIPHER is not set -# CONFIG_CRYPTO_USER_API_RNG is not set -# CONFIG_CRYPTO_USER_API_AEAD is not set -CONFIG_CRYPTO_HASH_INFO=y -# CONFIG_CRYPTO_HW is not set -CONFIG_ASYMMETRIC_KEY_TYPE=y -CONFIG_ASYMMETRIC_PUBLIC_KEY_SUBTYPE=y -CONFIG_PUBLIC_KEY_ALGO_RSA=y -CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_ORE=m +CONFIG_OUTPUT_FORMAT="elf64-x86-64" +CONFIG_OVERLAY_FS=m +CONFIG_OVERLAY_FS_V1=y +CONFIG_PACKET=y +# CONFIG_PACKET_DIAG is not set +# CONFIG_PAGE_EXTENSION is not set +# CONFIG_PAGE_OWNER is not set +# CONFIG_PANIC_ON_OOPS is not set +CONFIG_PANIC_ON_OOPS_VALUE=0 +CONFIG_PANIC_TIMEOUT=0 +CONFIG_PARAVIRT=y +CONFIG_PARAVIRT_CLOCK=y +# CONFIG_PARAVIRT_DEBUG is not set +CONFIG_PARAVIRT_SPINLOCKS=y +# CONFIG_PARAVIRT_TIME_ACCOUNTING is not set +# CONFIG_PARPORT is not set +# CONFIG_PARTITION_ADVANCED is not set +# CONFIG_PCCARD is not set +CONFIG_PCI=y +# CONFIG_PCIEPORTBUS is not set +CONFIG_PCI_BUS_ADDR_T_64BIT=y +# CONFIG_PCI_CNB20LE_QUIRK is not set +# CONFIG_PCI_DEBUG is not set +CONFIG_PCI_DIRECT=y +CONFIG_PCI_DOMAINS=y +# CONFIG_PCI_IOV is not set +CONFIG_PCI_LABEL=y +# CONFIG_PCI_MMCONFIG is not set +CONFIG_PCI_MSI=y +CONFIG_PCI_MSI_IRQ_DOMAIN=y +# CONFIG_PCI_PASID is not set +# CONFIG_PCI_PRI is not set +# CONFIG_PCI_QUIRKS is not set +# CONFIG_PCI_REALLOC_ENABLE_AUTO is not set +# CONFIG_PCI_STUB is not set +# CONFIG_PCSPKR_PLATFORM is not set +# CONFIG_PERCPU_TEST is not set +CONFIG_PERF_EVENTS=y +CONFIG_PERF_EVENTS_INTEL_UNCORE=y +# CONFIG_PERSISTENT_KEYRINGS is not set +CONFIG_PGTABLE_LEVELS=4 +# CONFIG_PHANTOM is not set +# CONFIG_PHONET is not set +# CONFIG_PHYLIB is not set +CONFIG_PHYSICAL_ALIGN=0x200000 +CONFIG_PHYSICAL_START=0x1000000 +CONFIG_PHYS_ADDR_T_64BIT=y +# CONFIG_PHY_PXA_28NM_HSIC is not set +# CONFIG_PHY_PXA_28NM_USB2 is not set +CONFIG_PID_NS=y CONFIG_PKCS7_MESSAGE_PARSER=y CONFIG_PKCS7_TEST_KEY=m +# CONFIG_PM is not set +CONFIG_PMC_ATOM=y +# CONFIG_PMIC_OPREGION is not set +# CONFIG_PM_DEVFREQ is not set +CONFIG_PNP=y +CONFIG_PNPACPI=y +CONFIG_PNP_DEBUG_MESSAGES=y +# CONFIG_POSIX_MQUEUE is not set +# CONFIG_POWERCAP is not set +# CONFIG_POWER_AVS is not set +# CONFIG_POWER_SUPPLY is not set +# CONFIG_PPP is not set +# CONFIG_PPS is not set +# CONFIG_PREEMPT is not set +CONFIG_PREEMPT_NONE=y +# CONFIG_PREEMPT_VOLUNTARY is not set +# CONFIG_PREVENT_FIRMWARE_BUILD is not set +CONFIG_PRINTK=y +CONFIG_PRINTK_TIME=y +CONFIG_PRINT_QUOTA_WARNING=y +# CONFIG_PROCESSOR_SELECT is not set +# CONFIG_PROC_CHILDREN is not set +CONFIG_PROC_FS=y +# CONFIG_PROC_KCORE is not set +CONFIG_PROC_PAGE_MONITOR=y +CONFIG_PROC_SYSCTL=y +# CONFIG_PROFILING is not set +# CONFIG_PROVE_LOCKING is not set +# CONFIG_PROVE_RCU is not set +# CONFIG_PROVIDE_OHCI1394_DMA_INIT is not set +# CONFIG_PSTORE is not set +# CONFIG_PTP_1588_CLOCK is not set +CONFIG_PUBLIC_KEY_ALGO_RSA=y +# CONFIG_PUNIT_ATOM_DEBUG is not set +# CONFIG_PWM is not set +# CONFIG_QFMT_V1 is not set +# CONFIG_QFMT_V2 is not set +CONFIG_QNX4FS_FS=m +# CONFIG_QNX6FS_DEBUG is not set +CONFIG_QNX6FS_FS=m +CONFIG_QUEUED_RWLOCKS=y +CONFIG_QUEUED_SPINLOCKS=y +CONFIG_QUOTA=y +CONFIG_QUOTACTL=y +# CONFIG_QUOTA_DEBUG is not set +# CONFIG_QUOTA_NETLINK_INTERFACE is not set +CONFIG_QUOTA_TREE=m +# CONFIG_R3964 is not set +CONFIG_RAID6_PQ=m +# CONFIG_RAID_ATTRS is not set +# CONFIG_RANDOM32_SELFTEST is not set +# CONFIG_RAPIDIO is not set +# CONFIG_RAS is not set +# CONFIG_RAW_DRIVER is not set +# CONFIG_RBTREE_TEST is not set +CONFIG_RCU_CPU_STALL_TIMEOUT=21 +# CONFIG_RCU_EQS_DEBUG is not set +# CONFIG_RCU_EXPEDITE_BOOT is not set +# CONFIG_RCU_EXPERT is not set +CONFIG_RCU_STALL_COMMON=y +# CONFIG_RCU_TORTURE_TEST is not set +# CONFIG_RCU_TRACE is not set +# CONFIG_RDS is not set +# CONFIG_RD_BZIP2 is not set +CONFIG_RD_GZIP=y +# CONFIG_RD_LZ4 is not set +# CONFIG_RD_LZMA is not set +# CONFIG_RD_LZO is not set +# CONFIG_RD_XZ is not set +# CONFIG_READABLE_ASM is not set +# CONFIG_REGULATOR is not set +# CONFIG_REISERFS_CHECK is not set +CONFIG_REISERFS_FS=m +# CONFIG_REISERFS_FS_XATTR is not set +# CONFIG_REISERFS_PROC_INFO is not set +# CONFIG_RELAY is not set +# CONFIG_RELOCATABLE is not set +# CONFIG_RESET_CONTROLLER is not set +# CONFIG_RFD_FTL is not set +# CONFIG_RFKILL is not set +CONFIG_RFS_ACCEL=y +CONFIG_ROMFS_BACKED_BY_BLOCK=y +# CONFIG_ROMFS_BACKED_BY_BOTH is not set +# CONFIG_ROMFS_BACKED_BY_MTD is not set +CONFIG_ROMFS_FS=m +CONFIG_ROMFS_ON_BLOCK=y +CONFIG_RPS=y +# CONFIG_RTC_CLASS is not set +CONFIG_RTC_LIB=y +CONFIG_RT_MUTEXES=y +CONFIG_RWSEM_SPIN_ON_OWNER=y +CONFIG_RWSEM_XCHGADD_ALGORITHM=y +# CONFIG_RXKAD is not set +# CONFIG_SAMPLES is not set +# CONFIG_SCHEDSTATS is not set +# CONFIG_SCHED_AUTOGROUP is not set +CONFIG_SCHED_DEBUG=y +# CONFIG_SCHED_HRTICK is not set +# CONFIG_SCHED_INFO is not set +CONFIG_SCHED_MC=y +# CONFIG_SCHED_OMIT_FRAME_POINTER is not set +# CONFIG_SCHED_SMT is not set +# CONFIG_SCHED_STACK_END_CHECK is not set +# CONFIG_SCIF_BUS is not set +CONFIG_SCSI=y +# CONFIG_SCSI_3W_9XXX is not set +# CONFIG_SCSI_3W_SAS is not set +# CONFIG_SCSI_AACRAID is not set +# CONFIG_SCSI_ACARD is not set +# CONFIG_SCSI_ADVANSYS is not set +# CONFIG_SCSI_AIC79XX is not set +# CONFIG_SCSI_AIC7XXX is not set +# CONFIG_SCSI_AIC94XX is not set +# CONFIG_SCSI_AM53C974 is not set +# CONFIG_SCSI_ARCMSR is not set +# CONFIG_SCSI_BNX2_ISCSI is not set +# CONFIG_SCSI_CONSTANTS is not set +# CONFIG_SCSI_CXGB3_ISCSI is not set +# CONFIG_SCSI_CXGB4_ISCSI is not set +# CONFIG_SCSI_DC395x is not set +# CONFIG_SCSI_DEBUG is not set +# CONFIG_SCSI_DH is not set +CONFIG_SCSI_DMA=y +# CONFIG_SCSI_DMX3191D is not set +# CONFIG_SCSI_DPT_I2O is not set +# CONFIG_SCSI_ESAS2R is not set +# CONFIG_SCSI_FC_ATTRS is not set +# CONFIG_SCSI_FUTURE_DOMAIN is not set +# CONFIG_SCSI_HPSA is not set +# CONFIG_SCSI_HPTIOP is not set +# CONFIG_SCSI_INIA100 is not set +# CONFIG_SCSI_INITIO is not set +# CONFIG_SCSI_IPS is not set +# CONFIG_SCSI_ISCI is not set +CONFIG_SCSI_ISCSI_ATTRS=y +# CONFIG_SCSI_LOGGING is not set +CONFIG_SCSI_LOWLEVEL=y +CONFIG_SCSI_MOD=y +# CONFIG_SCSI_MPT2SAS is not set +# CONFIG_SCSI_MPT3SAS is not set +# CONFIG_SCSI_MQ_DEFAULT is not set +# CONFIG_SCSI_MVSAS is not set +# CONFIG_SCSI_MVUMI is not set +# CONFIG_SCSI_NETLINK is not set +# CONFIG_SCSI_OSD_DEBUG is not set +CONFIG_SCSI_OSD_DPRINT_SENSE=1 +CONFIG_SCSI_OSD_INITIATOR=m +CONFIG_SCSI_OSD_ULD=m +# CONFIG_SCSI_PM8001 is not set +# CONFIG_SCSI_PMCRAID is not set +CONFIG_SCSI_PROC_FS=y +# CONFIG_SCSI_QLA_ISCSI is not set +# CONFIG_SCSI_QLOGIC_1280 is not set +# CONFIG_SCSI_SAS_ATTRS is not set +# CONFIG_SCSI_SAS_LIBSAS is not set +# CONFIG_SCSI_SCAN_ASYNC is not set +# CONFIG_SCSI_SNIC is not set +# CONFIG_SCSI_SPI_ATTRS is not set +# CONFIG_SCSI_SRP_ATTRS is not set +# CONFIG_SCSI_STEX is not set +# CONFIG_SCSI_SYM53C8XX_2 is not set +# CONFIG_SCSI_UFSHCD is not set +CONFIG_SCSI_VIRTIO=y +# CONFIG_SCSI_WD719X is not set +CONFIG_SECCOMP=y +CONFIG_SECCOMP_FILTER=y +# CONFIG_SECTION_MISMATCH_WARN_ONLY is not set +# CONFIG_SECURITY is not set +# CONFIG_SECURITYFS is not set +# CONFIG_SECURITY_DMESG_RESTRICT is not set +CONFIG_SELECT_MEMORY_MODEL=y +# CONFIG_SENSORS_LIS3LV02D is not set +CONFIG_SERIAL_8250=y +CONFIG_SERIAL_8250_CONSOLE=y +# CONFIG_SERIAL_8250_DEPRECATED_OPTIONS is not set +# CONFIG_SERIAL_8250_DW is not set +# CONFIG_SERIAL_8250_EXTENDED is not set +# CONFIG_SERIAL_8250_FINTEK is not set +# CONFIG_SERIAL_8250_FSL is not set +# CONFIG_SERIAL_8250_MID is not set +CONFIG_SERIAL_8250_NR_UARTS=1 +# CONFIG_SERIAL_8250_PCI is not set +CONFIG_SERIAL_8250_PNP=y +# CONFIG_SERIAL_8250_RT288X is not set +CONFIG_SERIAL_8250_RUNTIME_UARTS=1 +# CONFIG_SERIAL_ALTERA_JTAGUART is not set +# CONFIG_SERIAL_ALTERA_UART is not set +# CONFIG_SERIAL_ARC is not set +CONFIG_SERIAL_CORE=y +CONFIG_SERIAL_CORE_CONSOLE=y +CONFIG_SERIAL_EARLYCON=y +# CONFIG_SERIAL_FSL_LPUART is not set +# CONFIG_SERIAL_JSM is not set +# CONFIG_SERIAL_NONSTANDARD is not set +# CONFIG_SERIAL_RP2 is not set +# CONFIG_SERIAL_SCCNXP is not set +# CONFIG_SERIAL_UARTLITE is not set +# CONFIG_SERIO is not set +# CONFIG_SFI is not set +# CONFIG_SGETMASK_SYSCALL is not set +# CONFIG_SGI_IOC4 is not set +# CONFIG_SG_SPLIT is not set +CONFIG_SHMEM=y +# CONFIG_SH_TIMER_CMT is not set +# CONFIG_SH_TIMER_MTU2 is not set +# CONFIG_SH_TIMER_TMU is not set +CONFIG_SIGNALFD=y # CONFIG_SIGNED_PE_FILE_VERIFICATION is not set -CONFIG_EFI_SIGNATURE_LIST_PARSER=y - -# -# Certificates for signature checking -# -CONFIG_MODULE_SIG_KEY="certs/signing_key.pem" -CONFIG_SYSTEM_TRUSTED_KEYRING=y -CONFIG_SYSTEM_TRUSTED_KEYS="" +# CONFIG_SLAB is not set +# CONFIG_SLIP is not set +# CONFIG_SLOB is not set +CONFIG_SLUB=y +CONFIG_SLUB_CPU_PARTIAL=y +# CONFIG_SLUB_DEBUG is not set +# CONFIG_SLUB_STATS is not set +CONFIG_SMP=y +# CONFIG_SM_FTL is not set +# CONFIG_SOC_TI is not set +# CONFIG_SOUND is not set +CONFIG_SPARSEMEM=y +CONFIG_SPARSEMEM_ALLOC_MEM_MAP_TOGETHER=y +CONFIG_SPARSEMEM_EXTREME=y +CONFIG_SPARSEMEM_MANUAL=y +# CONFIG_SPARSEMEM_VMEMMAP is not set +CONFIG_SPARSEMEM_VMEMMAP_ENABLE=y +CONFIG_SPARSE_IRQ=y +# CONFIG_SPARSE_RCU_POINTER is not set +# CONFIG_SPI is not set +CONFIG_SPLIT_PTLOCK_CPUS=4 +# CONFIG_SPMI is not set +# CONFIG_SQUASHFS is not set +# CONFIG_SRAM is not set +CONFIG_SRCU=y +# CONFIG_SSB is not set +CONFIG_SSB_POSSIBLE=y +# CONFIG_SSFDC is not set +# CONFIG_STACKTRACE is not set +CONFIG_STACKTRACE_SUPPORT=y +# CONFIG_STAGING is not set +# CONFIG_STANDALONE is not set +# CONFIG_STE_MODEM_RPROC is not set +# CONFIG_STM is not set +# CONFIG_STM_DUMMY is not set +# CONFIG_STM_SOURCE_CONSOLE is not set +# CONFIG_STRICT_DEVMEM is not set +# CONFIG_STRIP_ASM_SYMS is not set +CONFIG_SUNRPC=m +# CONFIG_SUNRPC_DEBUG is not set +# CONFIG_SUNXI_SRAM is not set +# CONFIG_SUSPEND is not set +# CONFIG_SWAP is not set +CONFIG_SWIOTLB=y +# CONFIG_SYN_COOKIES is not set +CONFIG_SYSCTL=y +CONFIG_SYSCTL_EXCEPTION_TRACE=y +# CONFIG_SYSCTL_SYSCALL is not set +CONFIG_SYSFS=y +# CONFIG_SYSFS_DEPRECATED is not set +# CONFIG_SYSFS_SYSCALL is not set +# CONFIG_SYSTEM_BLACKLIST_KEYRING is not set +CONFIG_SYSTEM_DATA_VERIFICATION=y CONFIG_SYSTEM_EXTRA_CERTIFICATE=y CONFIG_SYSTEM_EXTRA_CERTIFICATE_SIZE=4096 -CONFIG_HAVE_KVM=y +CONFIG_SYSTEM_TRUSTED_KEYRING=y +CONFIG_SYSTEM_TRUSTED_KEYS="" +CONFIG_SYSVIPC=y +CONFIG_SYSVIPC_SYSCTL=y +CONFIG_SYSV_FS=m +# CONFIG_SYS_HYPERVISOR is not set +CONFIG_TARGET_CORE=m +# CONFIG_TASKSTATS is not set +# CONFIG_TASKS_RCU is not set +# CONFIG_TCG_TPM is not set +# CONFIG_TCM_FILEIO is not set +# CONFIG_TCM_IBLOCK is not set +# CONFIG_TCM_PSCSI is not set +# CONFIG_TCP_CONG_ADVANCED is not set +CONFIG_TCP_CONG_CUBIC=y +# CONFIG_TCP_MD5SIG is not set +# CONFIG_TELCLOCK is not set +# CONFIG_TEST_BPF is not set +# CONFIG_TEST_HEXDUMP is not set +# CONFIG_TEST_KSTRTOX is not set +# CONFIG_TEST_LIST_SORT is not set +# CONFIG_TEST_LKM is not set +# CONFIG_TEST_PRINTF is not set +# CONFIG_TEST_RHASHTABLE is not set +# CONFIG_TEST_STATIC_KEYS is not set +# CONFIG_TEST_STRING_HELPERS is not set +# CONFIG_TEST_UDELAY is not set +# CONFIG_TEST_USER_COPY is not set +# CONFIG_THERMAL is not set +# CONFIG_THUNDERBOLT is not set +CONFIG_TICK_CPU_ACCOUNTING=y +# CONFIG_TIFM_CORE is not set +CONFIG_TIMERFD=y +# CONFIG_TIMER_STATS is not set +# CONFIG_TIPC is not set +CONFIG_TMPFS=y +CONFIG_TMPFS_POSIX_ACL=y +CONFIG_TMPFS_XATTR=y +# CONFIG_TORTURE_TEST is not set +CONFIG_TRACE_IRQFLAGS_SUPPORT=y +# CONFIG_TRACE_SINK is not set +CONFIG_TRACING_SUPPORT=y +# CONFIG_TRANSPARENT_HUGEPAGE is not set +CONFIG_TREE_RCU=y +# CONFIG_TREE_RCU_TRACE is not set +CONFIG_TTY=y +# CONFIG_TTY_PRINTK is not set +# CONFIG_TUN is not set +# CONFIG_TUN_VNET_CROSS_LE is not set +# CONFIG_UBIFS_ATIME_SUPPORT is not set +CONFIG_UBIFS_FS=m +# CONFIG_UBIFS_FS_ADVANCED_COMPR is not set +CONFIG_UBIFS_FS_LZO=y +CONFIG_UBIFS_FS_ZLIB=y +CONFIG_UCS2_STRING=y +CONFIG_UDF_FS=m +CONFIG_UDF_NLS=y +CONFIG_UEVENT_HELPER=y +CONFIG_UEVENT_HELPER_PATH="" +# CONFIG_UFS_DEBUG is not set +CONFIG_UFS_FS=m +# CONFIG_UFS_FS_WRITE is not set +# CONFIG_UIO is not set +CONFIG_UNIX=y +CONFIG_UNIX98_PTYS=y +# CONFIG_UNIX_DIAG is not set +# CONFIG_UNUSED_SYMBOLS is not set +# CONFIG_UPROBES is not set +CONFIG_USB_OHCI_LITTLE_ENDIAN=y +# CONFIG_USB_SUPPORT is not set +# CONFIG_USELIB is not set +# CONFIG_USERFAULTFD is not set +# CONFIG_USER_NS is not set +CONFIG_USER_STACKTRACE_SUPPORT=y +CONFIG_UTS_NS=y +# CONFIG_UWB is not set +CONFIG_VERSION_SIGNATURE="Ubuntu 4.4.0-1001.1-kvm 4.4.73" +# CONFIG_VETH is not set +CONFIG_VFAT_FS=m +# CONFIG_VGASTATE is not set +# CONFIG_VGA_ARB is not set +# CONFIG_VGA_SWITCHEROO is not set +# CONFIG_VHOST_CROSS_ENDIAN_LEGACY is not set +CONFIG_VIRTIO=y +CONFIG_VIRTIO_BALLOON=y +CONFIG_VIRTIO_BLK=y +CONFIG_VIRTIO_CONSOLE=y +# CONFIG_VIRTIO_INPUT is not set +CONFIG_VIRTIO_MMIO=y +CONFIG_VIRTIO_MMIO_CMDLINE_DEVICES=y +CONFIG_VIRTIO_NET=y +CONFIG_VIRTIO_PCI=y +CONFIG_VIRTIO_PCI_LEGACY=y CONFIG_VIRTUALIZATION=y -# CONFIG_BINARY_PRINTF is not set - -# -# Library routines -# -CONFIG_RAID6_PQ=m -CONFIG_BITREVERSE=y -# CONFIG_HAVE_ARCH_BITREVERSE is not set -CONFIG_GENERIC_STRNCPY_FROM_USER=y -CONFIG_GENERIC_STRNLEN_USER=y -CONFIG_GENERIC_NET_UTILS=y -CONFIG_GENERIC_FIND_FIRST_BIT=y -CONFIG_GENERIC_PCI_IOMAP=y -CONFIG_GENERIC_IOMAP=y -CONFIG_GENERIC_IO=y -CONFIG_ARCH_USE_CMPXCHG_LOCKREF=y -CONFIG_ARCH_HAS_FAST_MULTIPLIER=y -# CONFIG_CRC_CCITT is not set -CONFIG_CRC16=y -CONFIG_CRC_T10DIF=m -CONFIG_CRC_ITU_T=m -CONFIG_CRC32=y -# CONFIG_CRC32_SELFTEST is not set -CONFIG_CRC32_SLICEBY8=y -# CONFIG_CRC32_SLICEBY4 is not set -# CONFIG_CRC32_SARWATE is not set -# CONFIG_CRC32_BIT is not set -# CONFIG_CRC7 is not set -CONFIG_LIBCRC32C=m -# CONFIG_CRC8 is not set -# CONFIG_AUDIT_ARCH_COMPAT_GENERIC is not set -# CONFIG_RANDOM32_SELFTEST is not set -CONFIG_ZLIB_INFLATE=y -CONFIG_LZO_COMPRESS=m -CONFIG_LZO_DECOMPRESS=m +# CONFIG_VIRT_CPU_ACCOUNTING_GEN is not set +# CONFIG_VIRT_DRIVERS is not set +CONFIG_VIRT_TO_BUS=y +# CONFIG_VLAN_8021Q is not set +# CONFIG_VM86 is not set +# CONFIG_VME_BUS is not set +# CONFIG_VMWARE_PVSCSI is not set +# CONFIG_VMWARE_VMCI is not set +# CONFIG_VMXNET3 is not set +# CONFIG_VM_EVENT_COUNTERS is not set +# CONFIG_VSOCKETS is not set +# CONFIG_VT is not set +CONFIG_VXFS_FS=m +# CONFIG_VXLAN is not set +# CONFIG_W1 is not set +# CONFIG_WAN is not set +# CONFIG_WATCHDOG is not set +# CONFIG_WIMAX is not set +# CONFIG_WIRELESS is not set +# CONFIG_WLAN is not set +# CONFIG_WLAN_VENDOR_RSI is not set +# CONFIG_X25 is not set +CONFIG_X509_CERTIFICATE_PARSER=y +CONFIG_X86=y +CONFIG_X86_64=y +CONFIG_X86_64_SMP=y +# CONFIG_X86_AMD_PLATFORM_DEVICE is not set +# CONFIG_X86_CHECK_BIOS_CORRUPTION is not set +CONFIG_X86_CMOV=y +CONFIG_X86_CMPXCHG64=y +# CONFIG_X86_CPUID is not set +CONFIG_X86_DEBUGCTLMSR=y +# CONFIG_X86_DEBUG_FPU is not set +# CONFIG_X86_DEBUG_STATIC_CPU_HAS is not set +CONFIG_X86_DEV_DMA_OPS=y +CONFIG_X86_DIRECT_GBPAGES=y +# CONFIG_X86_EXTENDED_PLATFORM is not set +CONFIG_X86_FEATURE_NAMES=y +# CONFIG_X86_INTEL_LPSS is not set +# CONFIG_X86_INTEL_MPX is not set +CONFIG_X86_INTEL_USERCOPY=y +CONFIG_X86_INTERNODE_CACHE_SHIFT=6 +CONFIG_X86_IO_APIC=y +CONFIG_X86_L1_CACHE_SHIFT=6 +CONFIG_X86_LOCAL_APIC=y +# CONFIG_X86_MCE is not set +CONFIG_X86_MINIMUM_CPU_FAMILY=64 +CONFIG_X86_MPPARSE=y +# CONFIG_X86_MSR is not set +CONFIG_X86_P6_NOP=y +# CONFIG_X86_PLATFORM_DEVICES is not set +# CONFIG_X86_PMEM_LEGACY is not set +# CONFIG_X86_PM_TIMER is not set +# CONFIG_X86_PTDUMP is not set +# CONFIG_X86_PTDUMP_CORE is not set +# CONFIG_X86_REROUTE_FOR_BROKEN_BOOT_IRQS is not set +CONFIG_X86_RESERVE_LOW=64 +# CONFIG_X86_SMAP is not set +# CONFIG_X86_SYSFB is not set +CONFIG_X86_TSC=y +CONFIG_X86_USE_PPRO_CHECKSUM=y +# CONFIG_X86_VERBOSE_BOOTUP is not set +# CONFIG_X86_VSYSCALL_EMULATION is not set +# CONFIG_X86_X2APIC is not set +# CONFIG_X86_X32 is not set +# CONFIG_XEN is not set +CONFIG_XFRM=y +# CONFIG_XFRM_MIGRATE is not set +# CONFIG_XFRM_STATISTICS is not set +# CONFIG_XFRM_SUB_POLICY is not set +# CONFIG_XFRM_USER is not set +# CONFIG_XFS_DEBUG is not set +CONFIG_XFS_FS=m +# CONFIG_XFS_POSIX_ACL is not set +# CONFIG_XFS_QUOTA is not set +# CONFIG_XFS_RT is not set +# CONFIG_XFS_WARN is not set +# CONFIG_XILLYBUS is not set +CONFIG_XOR_BLOCKS=m +CONFIG_XPS=y # CONFIG_XZ_DEC is not set # CONFIG_XZ_DEC_BCJ is not set -CONFIG_DECOMPRESS_GZIP=y -CONFIG_ASSOCIATIVE_ARRAY=y -CONFIG_HAS_IOMEM=y -CONFIG_HAS_IOPORT_MAP=y -CONFIG_HAS_DMA=y -CONFIG_CPU_RMAP=y -CONFIG_DQL=y -CONFIG_NLATTR=y -CONFIG_ARCH_HAS_ATOMIC64_DEC_IF_POSITIVE=y -CONFIG_CLZ_TAB=y -# CONFIG_CORDIC is not set -# CONFIG_DDR is not set -CONFIG_MPILIB=y -CONFIG_OID_REGISTRY=y -CONFIG_UCS2_STRING=y -# CONFIG_SG_SPLIT is not set -CONFIG_ARCH_HAS_SG_CHAIN=y -CONFIG_ARCH_HAS_PMEM_API=y -CONFIG_ARCH_HAS_MMIO_FLUSH=y +# CONFIG_ZBUD is not set +CONFIG_ZISOFS=y +CONFIG_ZLIB_DEFLATE=y +CONFIG_ZLIB_INFLATE=y +# CONFIG_ZONE_DMA is not set +CONFIG_ZONE_DMA32=y +CONFIG_ZONE_DMA_FLAG=0 +# CONFIG_ZPOOL is not set +# CONFIG_ZSMALLOC is not set reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/abiname +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/abiname @@ -1 +0,0 @@ -91 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/amd64/generic +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/amd64/generic.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/amd64/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/amd64/generic.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/amd64/generic.modules @@ -1,897 +0,0 @@ -6lowpan -8021q -8139cp -8139too -8390 -842 -842_compress -842_decompress -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -aacraid -ablk_helper -acard-ahci -acpi_extlog -acpi_ipmi -acpi_pad -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-x86_64 -aesni-intel -af-rxrpc -af_alg -af_key -af_packet_diag -ah4 -ah6 -ahci -ahci_platform -algif_aead -algif_hash -algif_rng -algif_skcipher -ansi_cprng -anubis -appletalk -arc4 -arp_tables -arpt_mangle -arptable_filter -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -atm -aufs -auth_rpcgss -authenc -authencesn -autofs4 -ax25 -bcache -bch -bcma -bcma-hcd -be2net -binfmt_misc -blocklayoutdriver -blowfish-x86_64 -blowfish_common -blowfish_generic -bnx2x -bonding -br2684 -br_netfilter -brd -bridge -bsd_comp -btrfs -cachefiles -caif_virtio -camellia-aesni-avx-x86_64 -camellia-aesni-avx2 -camellia-x86_64 -camellia_generic -can -can-bcm -can-gw -can-raw -cast5-avx-x86_64 -cast5_generic -cast6-avx-x86_64 -cast6_generic -cast_common -ccm -ceph -chacha20-x86_64 -chacha20_generic -chacha20poly1305 -cifs -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 -cmac -cmdlinepart -configfs -cordic -cpu-notifier-error-inject -cpuid -crc-ccitt -crc-itu-t -crc32 -crc32-pclmul -crc7 -crc8 -crct10dif-pclmul -cryptd -crypto_user -cryptoloop -ctr -cts -dca -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -de2104x -de4x5 -decnet -deflate -des3_ede-x86_64 -des_generic -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 -dmfe -dn_rtmsg -drbg -drm -drm_kms_helper -drop_monitor -dummy -e1000 -e1000e -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 -ec_sys -echainiv -einj -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -ena -eql -esp4 -esp6 -evbug -faulty -fb_sys_fops -fcrypt -floppy -fotg210-hcd -fou -fscache -ftdi-elan -gameport -garp -gcm -geneve -gf128mul -ghash-clmulni-intel -ghash-generic -glue_helper -grace -gre -hangcheck-timer -hid -hid-generic -hid-hyperv -hv_balloon -hv_netvsc -hv_network_direct -hv_storvsc -hv_utils -hv_vmbus -hwa-hc -hyperv-keyboard -hyperv_fb -i2c-algo-bit -i40e -ib_addr -ib_cm -ib_core -ib_iser -ib_isert -ib_mad -ib_sa -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -igb -igbvf -ila -inet_diag -input-leds -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 -ipddp -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipr -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 -ipx -ircomm -ircomm-tty -irda -irlan -irnet -irqbypass -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isofs -isp116x-hcd -isp1362-hcd -iw_cm -ixgbe -ixgbevf -jitterentropy_rng -joydev -jsm -keywrap -khazad -kvm -kvm-amd -kvm-intel -lapb -lec -libahci -libahci_platform -libceph -libcrc32c -libiscsi -libiscsi_tcp -libore -libosd -libsas -linear -llc -llc2 -lockd -lp -lpfc -lru_cache -lrw -lz4 -lz4_compress -lz4hc -lz4hc_compress -macvlan -macvtap -max3421-hcd -mce-inject -mcryptd -md-cluster -md4 -mdio -megaraid_mbox -megaraid_mm -megaraid_sas -memory-notifier-error-inject -michael_mic -mii -mip6 -mlx4_core -mlx4_en -mlx5_core -mlxsw_core -mlxsw_pci -mpoa -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mrp -msdos -msr -mtd -multipath -nbd -ne2k-pci -netconsole -netlink_diag -netrom -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 -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 -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -notifier-error-inject -nvme -nvmem_core -nvram -objlayoutdriver -openvswitch -oprofile -osd -overlay -oxu210hp-hcd -p8022 -p8023 -parport -parport_pc -pcbc -pcmcia -pcmcia_core -pcnet32 -pcrypt -percpu_test -phonet -pkcs7_test_key -pktgen -pm-notifier-error-inject -pn_pep -poly1305-x86_64 -poly1305_generic -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps_core -pptp -psmouse -psnap -ptp -pvpanic -qla1280 -qla2xxx -r8a66597-hcd -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -raw -rbd -rbtree_test -rdma_cm -reed_solomon -rmd128 -rmd160 -rmd256 -rmd320 -rose -rpcsec_gss_krb5 -rxkad -salsa20-x86_64 -salsa20_generic -sbs -sbshc -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_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 -seed -seqiv -serio_raw -serpent-avx-x86_64 -serpent-avx2 -serpent-sse2-x86_64 -serpent_generic -serport -sha1-mb -sha1-ssse3 -sha256-ssse3 -sha512-ssse3 -sit -sl811-hcd -sl811_cs -slip -snd -snd-compress -snd-ens1370 -snd-hrtimer -snd-hwdep -snd-pcm -snd-pcm-dmaengine -snd-pcsp -snd-rawmidi -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-timer -softdog -soundcore -spl -splat -ssb -ssb-hcd -stp -sunrpc -syscopyarea -sysfillrect -sysimgblt -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tcm_qla2xxx -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 -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_printf -test_static_key_base -test_static_keys -test_user_copy -tgr192 -tipc -tmem -ts_bm -ts_fsm -ts_kmp -ttm -tulip -tunnel4 -tunnel6 -twofish-avx-x86_64 -twofish-x86_64 -twofish-x86_64-3way -twofish_common -twofish_generic -u132-hcd -uas -udf -udp_diag -udp_tunnel -ufs -uio -uio_pdrv_genirq -uli526x -umc -unix_diag -usb-storage -usbhid -usbtouchscreen -uwb -vboxguest -vboxsf -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vga16fb -vgastate -vhost -vhost_net -vhost_scsi -video -virtio-rng -virtio_scsi -vmac -vmw_balloon -vmw_pvscsi -vmw_vmci -vmw_vsock_vmci_transport -vmxnet3 -vport-geneve -vport-gre -vport-vxlan -vringh -vsock -vxlan -whci -whci-hcd -winbond-840 -wp512 -wusb-wa -wusbcore -x25 -x_tables -xcbc -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-privcmd -xen-scsiback -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 -xhci-plat-hcd -xircom_cb -xor -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 -xts -xz_dec_test -zavl -zcommon -zfs -zlib -znvpair -zpios -zunicode reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/amd64/lowlatency +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/amd64/lowlatency.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/amd64/lowlatency.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/amd64/lowlatency.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/arm64/generic +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/arm64/generic.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/arm64/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/arm64/generic.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/armhf/generic +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/armhf/generic-lpae +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/armhf/generic-lpae.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/armhf/generic-lpae.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/armhf/generic-lpae.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/armhf/generic.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/armhf/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/armhf/generic.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/fwinfo +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/fwinfo @@ -1,995 +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_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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/i386/generic +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/i386/generic.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/i386/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/i386/generic.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/i386/generic.modules @@ -1,869 +0,0 @@ -6lowpan -8021q -8139cp -8139too -8390 -842 -842_compress -842_decompress -9p -9pnet -9pnet_rdma -9pnet_virtio -BusLogic -aacraid -ablk_helper -acard-ahci -acpi_extlog -acpi_ipmi -acpi_pad -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-i586 -aesni-intel -af-rxrpc -af_alg -af_key -af_packet_diag -ah4 -ah6 -ahci -ahci_platform -algif_aead -algif_hash -algif_rng -algif_skcipher -ansi_cprng -anubis -apm -appletalk -arc4 -arp_tables -arpt_mangle -arptable_filter -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -atm -aufs -auth_rpcgss -authenc -authencesn -autofs4 -ax25 -bcache -bch -bcma -bcma-hcd -be2net -binfmt_misc -blocklayoutdriver -blowfish_common -blowfish_generic -bnx2x -bonding -br2684 -br_netfilter -brd -bridge -bsd_comp -btrfs -cachefiles -caif_virtio -camellia_generic -can -can-bcm -can-gw -can-raw -cast5_generic -cast6_generic -cast_common -ccm -ceph -chacha20_generic -chacha20poly1305 -cifs -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 -cmac -cmdlinepart -configfs -cordic -cpu-notifier-error-inject -cpuid -crc-ccitt -crc-itu-t -crc32 -crc32-pclmul -crc7 -crc8 -cryptd -crypto_user -cryptoloop -ctr -cts -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -de2104x -de4x5 -decnet -deflate -des_generic -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 -dmfe -dn_rtmsg -drbg -drm -drm_kms_helper -drop_monitor -dummy -e1000 -e1000e -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 -ec_sys -echainiv -einj -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -ena -eql -esp4 -esp6 -evbug -faulty -fb_sys_fops -fcrypt -floppy -fotg210-hcd -fou -fscache -ftdi-elan -gameport -garp -gcm -geneve -gf128mul -ghash-generic -glue_helper -grace -gre -hangcheck-timer -hid -hid-generic -hid-hyperv -hv_balloon -hv_netvsc -hv_storvsc -hv_utils -hv_vmbus -hwa-hc -hyperv-keyboard -hyperv_fb -i2c-algo-bit -i40e -ib_addr -ib_cm -ib_core -ib_iser -ib_isert -ib_mad -ib_sa -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -igb -igbvf -ila -inet_diag -input-leds -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 -ipddp -ipip -ipmi_devintf -ipmi_msghandler -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipr -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 -ipx -ircomm -ircomm-tty -irda -irlan -irnet -irqbypass -iscsi_boot_sysfs -iscsi_ibft -iscsi_target_mod -iscsi_tcp -isofs -isp116x-hcd -isp1362-hcd -iw_cm -ixgbe -ixgbevf -jitterentropy_rng -joydev -jsm -keywrap -khazad -kvm -kvm-amd -kvm-intel -lapb -lec -libahci -libahci_platform -libceph -libcrc32c -libiscsi -libiscsi_tcp -libore -libosd -libsas -linear -llc -llc2 -lockd -lp -lpfc -lru_cache -lrw -lz4 -lz4_compress -lz4hc -lz4hc_compress -macvlan -macvtap -max3421-hcd -mce-inject -mcryptd -md-cluster -md4 -mdio -megaraid_mbox -megaraid_mm -megaraid_sas -memory-notifier-error-inject -michael_mic -mii -mip6 -mlx4_core -mlx4_en -mlx5_core -mlxsw_core -mlxsw_pci -mpoa -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mrp -msdos -msr -mtd -multipath -nbd -ne2k-pci -netconsole -netlink_diag -netrom -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 -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 -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -notifier-error-inject -nvme -nvmem_core -nvram -objlayoutdriver -openvswitch -oprofile -osd -overlay -oxu210hp-hcd -p8022 -p8023 -parport -parport_pc -pcbc -pcmcia -pcmcia_core -pcnet32 -pcrypt -percpu_test -phonet -pkcs7_test_key -pktgen -pm-notifier-error-inject -pn_pep -poly1305_generic -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pps_core -pptp -psmouse -psnap -ptp -pvpanic -qla1280 -qla2xxx -r8a66597-hcd -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -raw -rbd -rbtree_test -rdma_cm -reed_solomon -rmd128 -rmd160 -rmd256 -rmd320 -rose -rpcsec_gss_krb5 -rxkad -salsa20-i586 -salsa20_generic -sbs -sbshc -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_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 -seed -seqiv -serio_raw -serpent-sse2-i586 -serpent_generic -serport -sit -sl811-hcd -sl811_cs -slip -snd -snd-compress -snd-ens1370 -snd-hrtimer -snd-hwdep -snd-pcm -snd-pcm-dmaengine -snd-pcsp -snd-rawmidi -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-timer -softdog -soundcore -ssb -ssb-hcd -stp -sunrpc -syscopyarea -sysfillrect -sysimgblt -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tcm_qla2xxx -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 -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_printf -test_static_key_base -test_static_keys -test_user_copy -tgr192 -tipc -tmem -ts_bm -ts_fsm -ts_kmp -ttm -tulip -tunnel4 -tunnel6 -twofish-i586 -twofish_common -twofish_generic -u132-hcd -uas -udf -udp_diag -udp_tunnel -ufs -uio -uio_pdrv_genirq -uli526x -umc -unix_diag -usb-storage -usbhid -usbtouchscreen -uwb -vboxguest -vboxsf -veth -vfio -vfio-pci -vfio_iommu_type1 -vfio_virqfd -vga16fb -vgastate -vhost -vhost_net -vhost_scsi -video -virtio-rng -virtio_scsi -vmac -vmw_balloon -vmw_pvscsi -vmw_vmci -vmw_vsock_vmci_transport -vmxnet3 -vport-geneve -vport-gre -vport-vxlan -vringh -vsock -vxlan -whci -whci-hcd -winbond-840 -wp512 -wusb-wa -wusbcore -x25 -x_tables -xcbc -xen-evtchn -xen-fbfront -xen-gntalloc -xen-gntdev -xen-kbdfront -xen-netback -xen-pciback -xen-privcmd -xen-scsiback -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 -xhci-plat-hcd -xircom_cb -xor -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 -xts -xz_dec_test -zlib reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/i386/lowlatency +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/i386/lowlatency.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/i386/lowlatency.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/i386/lowlatency.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc-e500mc +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc-e500mc.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/powerpc/powerpc-e500mc.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc-e500mc.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc-smp +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc-smp.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/powerpc/powerpc-smp.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc-smp.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc64-emb +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc64-emb.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/powerpc/powerpc64-emb.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc64-emb.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc64-smp +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc64-smp.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/powerpc/powerpc64-smp.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/powerpc/powerpc64-smp.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/ppc64el/generic +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/ppc64el/generic.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/ppc64el/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu/IBM 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/ppc64el/generic.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/ppc64el/generic.modules @@ -1,835 +0,0 @@ -6lowpan -8021q -8139cp -8139too -8390 -842 -842_compress -842_decompress -9p -9pnet -9pnet_rdma -9pnet_virtio -aacraid -acard-ahci -act_bpf -act_connmark -act_csum -act_gact -act_ipt -act_mirred -act_nat -act_pedit -act_police -act_simple -act_skbedit -act_vlan -af-rxrpc -af_alg -af_key -af_packet_diag -ah4 -ah6 -ahci -ahci_platform -algif_aead -algif_hash -algif_rng -algif_skcipher -ansi_cprng -anubis -appletalk -arc4 -arp_tables -arpt_mangle -arptable_filter -ast -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -at24 -atm -aufs -auth_rpcgss -authenc -authencesn -autofs4 -ax25 -bcache -bch -bcma -bcma-hcd -be2net -binfmt_misc -blocklayoutdriver -blowfish_common -blowfish_generic -bnx2x -bonding -br2684 -br_netfilter -brd -bridge -bsd_comp -btrfs -cachefiles -caif_virtio -camellia_generic -can -can-bcm -can-gw -can-raw -cast5_generic -cast6_generic -cast_common -ccm -ceph -chacha20_generic -chacha20poly1305 -cifs -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 -cmac -cmdlinepart -configfs -cordic -cpu-notifier-error-inject -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -cryptoloop -ctr -cts -cxl -cxlflash -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -de2104x -de4x5 -decnet -deflate -des_generic -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 -dmfe -dn_rtmsg -drbg -drm -drm_kms_helper -drop_monitor -dummy -e1000 -e1000e -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 -ehci-platform -em_canid -em_cmp -em_ipset -em_meta -em_nbyte -em_text -em_u32 -eql -esp4 -esp6 -evbug -faulty -fb_sys_fops -fcrypt -floppy -fotg210-hcd -fou -fscache -ftdi-elan -gameport -garp -gcm -geneve -gf128mul -ghash-generic -grace -gre -hangcheck-timer -hid -hid-generic -hwa-hc -i2c-algo-bit -i40e -ib_addr -ib_cm -ib_core -ib_iser -ib_isert -ib_mad -ib_sa -ibmpowernv -ibmveth -ibmvfc -ibmvnic -ibmvscsi -ieee802154 -ieee802154_6lowpan -ieee802154_socket -ifb -igb -igbvf -ila -inet_diag -input-leds -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 -ipddp -ipip -ipmi_devintf -ipmi_msghandler -ipmi_powernv -ipmi_poweroff -ipmi_si -ipmi_ssif -ipmi_watchdog -ipr -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 -ipx -ircomm -ircomm-tty -irda -irlan -irnet -iscsi_boot_sysfs -iscsi_target_mod -iscsi_tcp -isofs -isp116x-hcd -isp1362-hcd -iw_cm -ixgbe -ixgbevf -jitterentropy_rng -joydev -jsm -keywrap -khazad -kvm -kvm-hv -kvm-pr -lapb -lec -leds-powernv -libahci -libahci_platform -libceph -libcrc32c -libiscsi -libiscsi_tcp -libore -libosd -libsas -linear -llc -llc2 -lockd -lp -lpfc -lru_cache -lrw -lz4 -lz4_compress -lz4hc -lz4hc_compress -macvlan -macvtap -max3421-hcd -mcryptd -md-cluster -md4 -md5-ppc -mdio -megaraid_mbox -megaraid_mm -megaraid_sas -memory-notifier-error-inject -michael_mic -mii -mip6 -mlx4_core -mlx4_en -mlx5_core -mlxsw_core -mlxsw_pci -mpoa -mpt3sas -mptbase -mptctl -mptfc -mptlan -mptsas -mptscsih -mptspi -mrp -msdos -mtd -multipath -nbd -ne2k-pci -netconsole -netlink_diag -netrom -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 -nhc_dest -nhc_fragment -nhc_hop -nhc_ipv6 -nhc_mobility -nhc_routing -nhc_udp -notifier-error-inject -nvme -nvmem_core -nx-compress -nx-compress-powernv -nx-compress-pseries -objlayoutdriver -ofpart -ohci-platform -opal-prd -openvswitch -oprofile -osd -overlay -oxu210hp-hcd -p8022 -p8023 -parport -parport_pc -pcbc -pcnet32 -pcrypt -percpu_test -phonet -pkcs7_test_key -pktgen -pm-notifier-error-inject -pn_pep -poly1305_generic -powernv-rng -powernv_flash -ppdev -ppp_async -ppp_deflate -ppp_mppe -ppp_synctty -pppoatm -pppoe -pppox -pptp -psmouse -psnap -qla1280 -qla2xxx -r8a66597-hcd -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -raw -rbd -rbtree_test -rdma_cm -reed_solomon -rmd128 -rmd160 -rmd256 -rmd320 -rose -rpcsec_gss_krb5 -rtas_flash -rxkad -salsa20_generic -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_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 -seed -seqiv -serio_raw -serpent_generic -serport -sha1-powerpc -sit -sl811-hcd -slip -snd -snd-ens1370 -snd-hrtimer -snd-hwdep -snd-pcm -snd-pcm-dmaengine -snd-rawmidi -snd-seq -snd-seq-device -snd-seq-dummy -snd-seq-midi -snd-seq-midi-emul -snd-seq-midi-event -snd-seq-virmidi -snd-timer -softdog -soundcore -spl -splat -ssb -ssb-hcd -stp -sunrpc -syscopyarea -sysfillrect -sysimgblt -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -target_core_user -tcm_qla2xxx -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 -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_printf -test_static_key_base -test_static_keys -test_user_copy -tgr192 -tipc -ts_bm -ts_fsm -ts_kmp -ttm -tulip -tunnel4 -tunnel6 -twofish_common -twofish_generic -u132-hcd -uas -udf -udp_diag -udp_tunnel -ufs -uio -uio_pdrv_genirq -uli526x -umc -unix_diag -usb-storage -usbhid -usbtouchscreen -uwb -veth -vga16fb -vgastate -vhost -vhost_net -vhost_scsi -virtio-rng -virtio_scsi -vmac -vmx-crypto -vmxnet3 -vport-geneve -vport-gre -vport-vxlan -vringh -vsock -vxlan -whci -whci-hcd -winbond-840 -wp512 -wusb-wa -wusbcore -x25 -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 -xhci-plat-hcd -xor -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 -xts -xz_dec_test -zavl -zcommon -zfs -zlib -znvpair -zpios -zunicode reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/s390x/generic +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/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-kvm-4.4.0/debian.master/abi/4.4.0-91.114/s390x/generic.compiler +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/s390x/generic.compiler @@ -1 +0,0 @@ -GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 reverted: --- linux-kvm-4.4.0/debian.master/abi/4.4.0-91.114/s390x/generic.modules +++ linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-91.114/s390x/generic.modules @@ -1,679 +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_key -af_packet_diag -ah4 -ah6 -algif_aead -algif_hash -algif_rng -algif_skcipher -ansi_cprng -anubis -ap -appldata_mem -appldata_net_sum -appldata_os -arc4 -arp_tables -arpt_mangle -arptable_filter -async_memcpy -async_pq -async_raid6_recov -async_tx -async_xor -aufs -auth_rpcgss -authenc -authencesn -bcache -binfmt_misc -blocklayoutdriver -blowfish_common -blowfish_generic -bonding -br_netfilter -brd -bridge -btrfs -cachefiles -camellia_generic -cast5_generic -cast6_generic -cast_common -ccm -ccwgroup -ceph -chacha20_generic -chacha20poly1305 -chsc_sch -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 -cordic -cpu-notifier-error-inject -crc-ccitt -crc-itu-t -crc32 -crc7 -crc8 -cryptd -crypto_user -ctcm -ctr -cts -dasd_diag_mod -dasd_eckd_mod -dasd_fba_mod -dasd_mod -dccp -dccp_diag -dccp_ipv4 -dccp_ipv6 -dccp_probe -dcssblk -deflate -des_generic -des_s390 -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 -drbg -drop_monitor -dummy -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 -faulty -fcrypt -fou -fs3270 -fscache -fsm -garp -gcm -geneve -gf128mul -ghash-generic -ghash_s390 -grace -gre -hangcheck-timer -hmcdrv -ib_addr -ib_cm -ib_core -ib_iser -ib_isert -ib_mad -ib_sa -ifb -ila -inet_diag -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 -keywrap -khazad -lcs -libceph -libcrc32c -libiscsi -libiscsi_tcp -libore -libosd -libsas -linear -llc -lockd -lru_cache -lrw -lz4 -lz4_compress -lz4hc -lz4hc_compress -macvlan -macvtap -mcryptd -md-cluster -md4 -memory-notifier-error-inject -michael_mic -mip6 -mlx4_core -mlx4_en -mlx5_core -mlxsw_core -mlxsw_pci -monreader -monwriter -mpt3sas -mrp -msdos -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 -notifier-error-inject -objlayoutdriver -openvswitch -oprofile -osd -overlay -p8022 -pcbc -pcrypt -percpu_test -pkcs7_test_key -pktgen -pm-notifier-error-inject -poly1305_generic -pps_core -prng -psnap -ptp -qdio -qeth -qeth_l2 -qeth_l3 -raid0 -raid1 -raid10 -raid456 -raid6_pq -raid6test -raid_class -rbd -rbtree_test -rdma_cm -rmd128 -rmd160 -rmd256 -rmd320 -rpcsec_gss_krb5 -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_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 -seed -seqiv -serpent_generic -sha1_s390 -sha256_s390 -sha512_s390 -sha_common -sit -smsgiucv_app -softdog -spl -splat -stp -sunrpc -tape -tape_34xx -tape_3590 -tape_class -target_core_file -target_core_iblock -target_core_mod -target_core_pscsi -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 -test-hexdump -test-kstrtox -test-string_helpers -test_bpf -test_firmware -test_module -test_printf -test_static_key_base -test_static_keys -test_user_copy -tgr192 -tipc -ts_bm -ts_fsm -ts_kmp -tunnel4 -tunnel6 -twofish_common -twofish_generic -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 -vmac -vmlogrdr -vmur -vport-geneve -vport-gre -vport-vxlan -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 -zunicode diff -u linux-kvm-4.4.0/debian.master/changelog linux-kvm-4.4.0/debian.master/changelog --- linux-kvm-4.4.0/debian.master/changelog +++ linux-kvm-4.4.0/debian.master/changelog @@ -1,3 +1,575 @@ +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) diff -u linux-kvm-4.4.0/debian.master/config/amd64/config.flavour.generic linux-kvm-4.4.0/debian.master/config/amd64/config.flavour.generic --- linux-kvm-4.4.0/debian.master/config/amd64/config.flavour.generic +++ linux-kvm-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-kvm-4.4.0/debian.master/config/amd64/config.flavour.lowlatency linux-kvm-4.4.0/debian.master/config/amd64/config.flavour.lowlatency --- linux-kvm-4.4.0/debian.master/config/amd64/config.flavour.lowlatency +++ linux-kvm-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-kvm-4.4.0/debian.master/config/annotations linux-kvm-4.4.0/debian.master/config/annotations --- linux-kvm-4.4.0/debian.master/config/annotations +++ linux-kvm-4.4.0/debian.master/config/annotations @@ -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 diff -u linux-kvm-4.4.0/debian.master/config/arm64/config.common.arm64 linux-kvm-4.4.0/debian.master/config/arm64/config.common.arm64 --- linux-kvm-4.4.0/debian.master/config/arm64/config.common.arm64 +++ linux-kvm-4.4.0/debian.master/config/arm64/config.common.arm64 @@ -273,6 +273,7 @@ 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_PARPORT=m diff -u linux-kvm-4.4.0/debian.master/config/armhf/config.common.armhf linux-kvm-4.4.0/debian.master/config/armhf/config.common.armhf --- linux-kvm-4.4.0/debian.master/config/armhf/config.common.armhf +++ linux-kvm-4.4.0/debian.master/config/armhf/config.common.armhf @@ -263,6 +263,7 @@ 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 diff -u linux-kvm-4.4.0/debian.master/config/config.common.ubuntu linux-kvm-4.4.0/debian.master/config/config.common.ubuntu --- linux-kvm-4.4.0/debian.master/config/config.common.ubuntu +++ linux-kvm-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 @@ -5496,6 +5499,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 @@ -6548,7 +6554,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 diff -u linux-kvm-4.4.0/debian.master/config/i386/config.common.i386 linux-kvm-4.4.0/debian.master/config/i386/config.common.i386 --- linux-kvm-4.4.0/debian.master/config/i386/config.common.i386 +++ linux-kvm-4.4.0/debian.master/config/i386/config.common.i386 @@ -266,6 +266,7 @@ 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 diff -u linux-kvm-4.4.0/debian.master/config/powerpc/config.common.powerpc linux-kvm-4.4.0/debian.master/config/powerpc/config.common.powerpc --- linux-kvm-4.4.0/debian.master/config/powerpc/config.common.powerpc +++ linux-kvm-4.4.0/debian.master/config/powerpc/config.common.powerpc @@ -259,6 +259,7 @@ CONFIG_N_GSM=m CONFIG_OF=y CONFIG_OMFS_FS=m +# CONFIG_OPENNSL is not set CONFIG_OSF_PARTITION=y CONFIG_PARPORT=m CONFIG_PATA_SIS=m diff -u linux-kvm-4.4.0/debian.master/config/ppc64el/config.common.ppc64el linux-kvm-4.4.0/debian.master/config/ppc64el/config.common.ppc64el --- linux-kvm-4.4.0/debian.master/config/ppc64el/config.common.ppc64el +++ linux-kvm-4.4.0/debian.master/config/ppc64el/config.common.ppc64el @@ -285,6 +285,7 @@ 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 diff -u linux-kvm-4.4.0/debian.master/control.d/flavour-control.stub linux-kvm-4.4.0/debian.master/control.d/flavour-control.stub --- linux-kvm-4.4.0/debian.master/control.d/flavour-control.stub +++ linux-kvm-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-kvm-4.4.0/debian/changelog linux-kvm-4.4.0/debian/changelog --- linux-kvm-4.4.0/debian/changelog +++ linux-kvm-4.4.0/debian/changelog @@ -1,3 +1,540 @@ +linux-kvm (4.4.0-1005.10) xenial; urgency=low + + * linux-kvm: 4.4.0-1005.10 -proposed tracker (LP: #1713469) + + * Include Broadcom GPL modules in Xenial Kernel (LP: #1665783) + - [config] update config for master changes + + * Backport more recent Broadcom bnxt_en driver (LP: #1711056) + - [config] update config for master changes + + [ 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 + + [ 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 Wed, 30 Aug 2017 10:15:28 +0200 + linux-kvm (4.4.0-1004.9) xenial; urgency=low * linux-kvm: 4.4.0-1004.9 -proposed tracker (LP: #1712881) diff -u linux-kvm-4.4.0/debian/control linux-kvm-4.4.0/debian/control --- linux-kvm-4.4.0/debian/control +++ linux-kvm-4.4.0/debian/control @@ -48,7 +48,7 @@ XS-Testsuite: autopkgtest #XS-Testsuite-Depends: gcc-4.7 binutils -Package: linux-kvm-headers-4.4.0-1004 +Package: linux-kvm-headers-4.4.0-1005 Build-Profiles: Architecture: all Multi-Arch: foreign @@ -59,35 +59,35 @@ 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-kvm-headers-4.4.0-1004/debian.README.gz for details + /usr/share/doc/linux-kvm-headers-4.4.0-1005/debian.README.gz for details -Package: linux-kvm-tools-4.4.0-1004 +Package: linux-kvm-tools-4.4.0-1005 Build-Profiles: Architecture: amd64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-tools-common -Description: Linux kernel version specific tools for version 4.4.0-1004 +Description: Linux kernel version specific tools for version 4.4.0-1005 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-1004 on + version 4.4.0-1005 on 64 bit x86. - You probably want to install linux-tools-4.4.0-1004-. + You probably want to install linux-tools-4.4.0-1005-. -Package: linux-kvm-cloud-tools-4.4.0-1004 +Package: linux-kvm-cloud-tools-4.4.0-1005 Build-Profiles: Architecture: amd64 Section: devel Priority: optional Depends: ${misc:Depends}, ${shlibs:Depends}, linux-cloud-tools-common -Description: Linux kernel version specific cloud tools for version 4.4.0-1004 +Description: Linux kernel version specific cloud tools for version 4.4.0-1005 This package provides the architecture dependant parts for kernel - version locked tools for cloud tools for version 4.4.0-1004 on + version locked tools for cloud tools for version 4.4.0-1005 on 64 bit x86. - You probably want to install linux-cloud-tools-4.4.0-1004-. + You probably want to install linux-cloud-tools-4.4.0-1005-. -Package: linux-image-4.4.0-1004-kvm +Package: linux-image-4.4.0-1005-kvm Build-Profiles: Architecture: amd64 Section: kernel @@ -95,7 +95,7 @@ Provides: linux-image, fuse-module, ${linux:rprovides} Depends: ${misc:Depends}, ${shlibs:Depends}, kmod Recommends: grub-pc | grub-efi-amd64 | grub-efi-ia32 | grub | lilo -Suggests: fdutils, linux-kvm-doc-4.4.0 | linux-kvm-source-4.4.0, linux-kvm-tools, linux-headers-4.4.0-1004-kvm, initramfs-tools | linux-initramfs-tool +Suggests: fdutils, linux-kvm-doc-4.4.0 | linux-kvm-source-4.4.0, linux-kvm-tools, linux-headers-4.4.0-1005-kvm, initramfs-tools | linux-initramfs-tool Description: Linux kernel image for version 4.4.0 on 64 bit x86 SMP This package contains the Linux kernel image for version 4.4.0 on 64 bit x86 SMP. @@ -112,21 +112,21 @@ the linux-kvm meta-package, which will ensure that upgrades work correctly, and that supporting packages are also installed. -Package: linux-headers-4.4.0-1004-kvm +Package: linux-headers-4.4.0-1005-kvm Build-Profiles: Architecture: amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-kvm-headers-4.4.0-1004, ${shlibs:Depends} +Depends: ${misc:Depends}, linux-kvm-headers-4.4.0-1005, ${shlibs:Depends} Provides: linux-headers, linux-headers-3.0 Description: Linux kernel headers for version 4.4.0 on 64 bit x86 SMP This package provides kernel header files for version 4.4.0 on 64 bit x86 SMP. . This is for sites that want the latest kernel headers. Please read - /usr/share/doc/linux-headers-4.4.0-1004/debian.README.gz for details. + /usr/share/doc/linux-headers-4.4.0-1005/debian.README.gz for details. -Package: linux-image-4.4.0-1004-kvm-dbgsym +Package: linux-image-4.4.0-1005-kvm-dbgsym Build-Profiles: Architecture: amd64 Section: devel @@ -144,25 +144,25 @@ unstripped modules. -Package: linux-tools-4.4.0-1004-kvm +Package: linux-tools-4.4.0-1005-kvm Build-Profiles: Architecture: amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-kvm-tools-4.4.0-1004 -Description: Linux kernel version specific tools for version 4.4.0-1004 +Depends: ${misc:Depends}, linux-kvm-tools-4.4.0-1005 +Description: Linux kernel version specific tools for version 4.4.0-1005 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-1004 on + version 4.4.0-1005 on 64 bit x86. -Package: linux-cloud-tools-4.4.0-1004-kvm +Package: linux-cloud-tools-4.4.0-1005-kvm Build-Profiles: Architecture: amd64 Section: devel Priority: optional -Depends: ${misc:Depends}, linux-kvm-cloud-tools-4.4.0-1004 -Description: Linux kernel version specific cloud tools for version 4.4.0-1004 +Depends: ${misc:Depends}, linux-kvm-cloud-tools-4.4.0-1005 +Description: Linux kernel version specific cloud tools for version 4.4.0-1005 This package provides the architecture dependant parts for kernel - version locked tools for cloud for version 4.4.0-1004 on + version locked tools for cloud for version 4.4.0-1005 on 64 bit x86. diff -u linux-kvm-4.4.0/debian/rules linux-kvm-4.4.0/debian/rules --- linux-kvm-4.4.0/debian/rules +++ linux-kvm-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-kvm-4.4.0/debian/scripts/misc/getabis linux-kvm-4.4.0/debian/scripts/misc/getabis --- linux-kvm-4.4.0/debian/scripts/misc/getabis +++ linux-kvm-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-kvm-4.4.0/debian/tests/rebuild linux-kvm-4.4.0/debian/tests/rebuild --- linux-kvm-4.4.0/debian/tests/rebuild +++ linux-kvm-4.4.0/debian/tests/rebuild @@ -20 +20 @@ -dpkg-buildpackage -rfakeroot -us -uc -b +dpkg-buildpackage -rfakeroot -us -uc -b -Pautopkgtest diff -u linux-kvm-4.4.0/drivers/ata/libata-scsi.c linux-kvm-4.4.0/drivers/ata/libata-scsi.c --- linux-kvm-4.4.0/drivers/ata/libata-scsi.c +++ linux-kvm-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-kvm-4.4.0/drivers/base/core.c linux-kvm-4.4.0/drivers/base/core.c --- linux-kvm-4.4.0/drivers/base/core.c +++ linux-kvm-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-kvm-4.4.0/drivers/base/platform.c linux-kvm-4.4.0/drivers/base/platform.c --- linux-kvm-4.4.0/drivers/base/platform.c +++ linux-kvm-4.4.0/drivers/base/platform.c @@ -832,7 +832,7 @@ 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) return -EINVAL; @@ -845,12 +845,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 +864,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-kvm-4.4.0/drivers/base/power/domain.c linux-kvm-4.4.0/drivers/base/power/domain.c --- linux-kvm-4.4.0/drivers/base/power/domain.c +++ linux-kvm-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-kvm-4.4.0/drivers/bluetooth/btusb.c linux-kvm-4.4.0/drivers/bluetooth/btusb.c --- linux-kvm-4.4.0/drivers/bluetooth/btusb.c +++ linux-kvm-4.4.0/drivers/bluetooth/btusb.c @@ -1659,8 +1659,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 +1691,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 +1716,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 +2005,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 +2023,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 +2067,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 +2076,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 +2141,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 +2164,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-kvm-4.4.0/drivers/bluetooth/hci_intel.c linux-kvm-4.4.0/drivers/bluetooth/hci_intel.c --- linux-kvm-4.4.0/drivers/bluetooth/hci_intel.c +++ linux-kvm-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-kvm-4.4.0/drivers/char/ipmi/ipmi_msghandler.c linux-kvm-4.4.0/drivers/char/ipmi/ipmi_msghandler.c --- linux-kvm-4.4.0/drivers/char/ipmi/ipmi_msghandler.c +++ linux-kvm-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-kvm-4.4.0/drivers/char/ipmi/ipmi_ssif.c linux-kvm-4.4.0/drivers/char/ipmi/ipmi_ssif.c --- linux-kvm-4.4.0/drivers/char/ipmi/ipmi_ssif.c +++ linux-kvm-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-kvm-4.4.0/drivers/char/tpm/tpm-chip.c linux-kvm-4.4.0/drivers/char/tpm/tpm-chip.c --- linux-kvm-4.4.0/drivers/char/tpm/tpm-chip.c +++ linux-kvm-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-kvm-4.4.0/drivers/char/tpm/tpm-dev.c linux-kvm-4.4.0/drivers/char/tpm/tpm-dev.c --- linux-kvm-4.4.0/drivers/char/tpm/tpm-dev.c +++ linux-kvm-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-kvm-4.4.0/drivers/char/tpm/tpm-interface.c linux-kvm-4.4.0/drivers/char/tpm/tpm-interface.c --- linux-kvm-4.4.0/drivers/char/tpm/tpm-interface.c +++ linux-kvm-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-kvm-4.4.0/drivers/char/tpm/tpm-sysfs.c linux-kvm-4.4.0/drivers/char/tpm/tpm-sysfs.c --- linux-kvm-4.4.0/drivers/char/tpm/tpm-sysfs.c +++ linux-kvm-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-kvm-4.4.0/drivers/char/tpm/tpm.h linux-kvm-4.4.0/drivers/char/tpm/tpm.h --- linux-kvm-4.4.0/drivers/char/tpm/tpm.h +++ linux-kvm-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-kvm-4.4.0/drivers/char/tpm/tpm2-cmd.c linux-kvm-4.4.0/drivers/char/tpm/tpm2-cmd.c --- linux-kvm-4.4.0/drivers/char/tpm/tpm2-cmd.c +++ linux-kvm-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-kvm-4.4.0/drivers/char/tpm/tpm_tis.c linux-kvm-4.4.0/drivers/char/tpm/tpm_tis.c --- linux-kvm-4.4.0/drivers/char/tpm/tpm_tis.c +++ linux-kvm-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-kvm-4.4.0/drivers/crypto/atmel-sha.c linux-kvm-4.4.0/drivers/crypto/atmel-sha.c --- linux-kvm-4.4.0/drivers/crypto/atmel-sha.c +++ linux-kvm-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-kvm-4.4.0/drivers/crypto/caam/caamhash.c linux-kvm-4.4.0/drivers/crypto/caam/caamhash.c --- linux-kvm-4.4.0/drivers/crypto/caam/caamhash.c +++ linux-kvm-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-kvm-4.4.0/drivers/crypto/talitos.c linux-kvm-4.4.0/drivers/crypto/talitos.c --- linux-kvm-4.4.0/drivers/crypto/talitos.c +++ linux-kvm-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; diff -u linux-kvm-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c linux-kvm-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c --- linux-kvm-4.4.0/drivers/gpu/drm/amd/amdgpu/amdgpu_ttm.c +++ linux-kvm-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-kvm-4.4.0/drivers/gpu/drm/drm_dp_mst_topology.c linux-kvm-4.4.0/drivers/gpu/drm/drm_dp_mst_topology.c --- linux-kvm-4.4.0/drivers/gpu/drm/drm_dp_mst_topology.c +++ linux-kvm-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; @@ -2173,7 +2180,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 +2195,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 +2212,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 +2293,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 +2350,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-kvm-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c linux-kvm-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c --- linux-kvm-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c +++ linux-kvm-4.4.0/drivers/gpu/drm/msm/msm_gem_submit.c @@ -90,7 +90,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-kvm-4.4.0/drivers/gpu/drm/radeon/atombios_encoders.c linux-kvm-4.4.0/drivers/gpu/drm/radeon/atombios_encoders.c --- linux-kvm-4.4.0/drivers/gpu/drm/radeon/atombios_encoders.c +++ linux-kvm-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-kvm-4.4.0/drivers/gpu/drm/radeon/ci_dpm.c linux-kvm-4.4.0/drivers/gpu/drm/radeon/ci_dpm.c --- linux-kvm-4.4.0/drivers/gpu/drm/radeon/ci_dpm.c +++ linux-kvm-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-kvm-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c linux-kvm-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c --- linux-kvm-4.4.0/drivers/gpu/drm/vmwgfx/vmwgfx_execbuf.c +++ linux-kvm-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-kvm-4.4.0/drivers/hid/hid-core.c linux-kvm-4.4.0/drivers/hid/hid-core.c --- linux-kvm-4.4.0/drivers/hid/hid-core.c +++ linux-kvm-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-kvm-4.4.0/drivers/hid/hid-ids.h linux-kvm-4.4.0/drivers/hid/hid-ids.h --- linux-kvm-4.4.0/drivers/hid/hid-ids.h +++ linux-kvm-4.4.0/drivers/hid/hid-ids.h @@ -69,6 +69,9 @@ #define USB_VENDOR_ID_ALPS_JP 0x044E #define HID_DEVICE_ID_ALPS_U1_DUAL 0x120B +#define HID_DEVICE_ID_ALPS_U1_PTP_2 0x120A +#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 +786,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-kvm-4.4.0/drivers/hid/hid-multitouch.c linux-kvm-4.4.0/drivers/hid/hid-multitouch.c --- linux-kvm-4.4.0/drivers/hid/hid-multitouch.c +++ linux-kvm-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,20 @@ 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) }, + { .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_PTP_2) }, + /* Anton devices */ { .driver_data = MT_CLS_EXPORT_ALL_INPUTS, MT_USB_DEVICE(USB_VENDOR_ID_ANTON, diff -u linux-kvm-4.4.0/drivers/iio/accel/bmc150-accel-core.c linux-kvm-4.4.0/drivers/iio/accel/bmc150-accel-core.c --- linux-kvm-4.4.0/drivers/iio/accel/bmc150-accel-core.c +++ linux-kvm-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-kvm-4.4.0/drivers/infiniband/core/cma.c linux-kvm-4.4.0/drivers/infiniband/core/cma.c --- linux-kvm-4.4.0/drivers/infiniband/core/cma.c +++ linux-kvm-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; diff -u linux-kvm-4.4.0/drivers/infiniband/ulp/isert/ib_isert.c linux-kvm-4.4.0/drivers/infiniband/ulp/isert/ib_isert.c --- linux-kvm-4.4.0/drivers/infiniband/ulp/isert/ib_isert.c +++ linux-kvm-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-kvm-4.4.0/drivers/input/serio/i8042.c linux-kvm-4.4.0/drivers/input/serio/i8042.c --- linux-kvm-4.4.0/drivers/input/serio/i8042.c +++ linux-kvm-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-kvm-4.4.0/drivers/irqchip/irq-gic-v3.c linux-kvm-4.4.0/drivers/irqchip/irq-gic-v3.c --- linux-kvm-4.4.0/drivers/irqchip/irq-gic-v3.c +++ linux-kvm-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-kvm-4.4.0/drivers/irqchip/irq-mxs.c linux-kvm-4.4.0/drivers/irqchip/irq-mxs.c --- linux-kvm-4.4.0/drivers/irqchip/irq-mxs.c +++ linux-kvm-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-kvm-4.4.0/drivers/md/md.c linux-kvm-4.4.0/drivers/md/md.c --- linux-kvm-4.4.0/drivers/md/md.c +++ linux-kvm-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-kvm-4.4.0/drivers/md/raid1.c linux-kvm-4.4.0/drivers/md/raid1.c --- linux-kvm-4.4.0/drivers/md/raid1.c +++ linux-kvm-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-kvm-4.4.0/drivers/md/raid5.c linux-kvm-4.4.0/drivers/md/raid5.c --- linux-kvm-4.4.0/drivers/md/raid5.c +++ linux-kvm-4.4.0/drivers/md/raid5.c @@ -5279,12 +5279,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 +5821,8 @@ pr_debug("%d stripes handled\n", handled); spin_unlock_irq(&conf->device_lock); + + async_tx_issue_pending_all(); blk_finish_plug(&plug); pr_debug("--- raid5worker inactive\n"); @@ -7528,12 +7533,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-kvm-4.4.0/drivers/net/bonding/bond_main.c linux-kvm-4.4.0/drivers/net/bonding/bond_main.c --- linux-kvm-4.4.0/drivers/net/bonding/bond_main.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c linux-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c --- linux-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_hw.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c linux-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c --- linux-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_main.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c linux-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c --- linux-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_sgmac.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c linux-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c --- linux-kvm-4.4.0/drivers/net/ethernet/apm/xgene/xgene_enet_xgmac.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/broadcom/bgmac.c linux-kvm-4.4.0/drivers/net/ethernet/broadcom/bgmac.c --- linux-kvm-4.4.0/drivers/net/ethernet/broadcom/bgmac.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/broadcom/tg3.c linux-kvm-4.4.0/drivers/net/ethernet/broadcom/tg3.c --- linux-kvm-4.4.0/drivers/net/ethernet/broadcom/tg3.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/intel/igb/e1000_82575.c linux-kvm-4.4.0/drivers/net/ethernet/intel/igb/e1000_82575.c --- linux-kvm-4.4.0/drivers/net/ethernet/intel/igb/e1000_82575.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/intel/igb/e1000_defines.h linux-kvm-4.4.0/drivers/net/ethernet/intel/igb/e1000_defines.h --- linux-kvm-4.4.0/drivers/net/ethernet/intel/igb/e1000_defines.h +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/intel/igb/e1000_hw.h linux-kvm-4.4.0/drivers/net/ethernet/intel/igb/e1000_hw.h --- linux-kvm-4.4.0/drivers/net/ethernet/intel/igb/e1000_hw.h +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/intel/igb/igb_main.c linux-kvm-4.4.0/drivers/net/ethernet/intel/igb/igb_main.c --- linux-kvm-4.4.0/drivers/net/ethernet/intel/igb/igb_main.c +++ linux-kvm-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, } }; diff -u linux-kvm-4.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c linux-kvm-4.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c --- linux-kvm-4.4.0/drivers/net/ethernet/mellanox/mlx5/core/cmd.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/ethernet/renesas/sh_eth.c linux-kvm-4.4.0/drivers/net/ethernet/renesas/sh_eth.c --- linux-kvm-4.4.0/drivers/net/ethernet/renesas/sh_eth.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/hyperv/netvsc_drv.c linux-kvm-4.4.0/drivers/net/hyperv/netvsc_drv.c --- linux-kvm-4.4.0/drivers/net/hyperv/netvsc_drv.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/phy/dp83640.c linux-kvm-4.4.0/drivers/net/phy/dp83640.c --- linux-kvm-4.4.0/drivers/net/phy/dp83640.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/phy/phy.c linux-kvm-4.4.0/drivers/net/phy/phy.c --- linux-kvm-4.4.0/drivers/net/phy/phy.c +++ linux-kvm-4.4.0/drivers/net/phy/phy.c @@ -541,6 +541,9 @@ if (phydev->state > PHY_UP && phydev->state != PHY_HALTED) phydev->state = PHY_UP; mutex_unlock(&phydev->lock); + + /* Now we can run the state machine synchronously */ + phy_state_machine(&phydev->state_queue.work); } /** @@ -918,6 +921,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-kvm-4.4.0/drivers/net/usb/cdc_mbim.c linux-kvm-4.4.0/drivers/net/usb/cdc_mbim.c --- linux-kvm-4.4.0/drivers/net/usb/cdc_mbim.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/vrf.c linux-kvm-4.4.0/drivers/net/vrf.c --- linux-kvm-4.4.0/drivers/net/vrf.c +++ linux-kvm-4.4.0/drivers/net/vrf.c @@ -733,15 +733,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 +914,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-kvm-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c linux-kvm-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c --- linux-kvm-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c +++ linux-kvm-4.4.0/drivers/net/wireless/brcm80211/brcmfmac/cfg80211.c @@ -4472,6 +4472,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-kvm-4.4.0/drivers/net/wireless/mac80211_hwsim.c linux-kvm-4.4.0/drivers/net/wireless/mac80211_hwsim.c --- linux-kvm-4.4.0/drivers/net/wireless/mac80211_hwsim.c +++ linux-kvm-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); diff -u linux-kvm-4.4.0/drivers/net/wireless/mwifiex/cfp.c linux-kvm-4.4.0/drivers/net/wireless/mwifiex/cfp.c --- linux-kvm-4.4.0/drivers/net/wireless/mwifiex/cfp.c +++ linux-kvm-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-kvm-4.4.0/drivers/net/wireless/ti/wlcore/spi.c linux-kvm-4.4.0/drivers/net/wireless/ti/wlcore/spi.c --- linux-kvm-4.4.0/drivers/net/wireless/ti/wlcore/spi.c +++ linux-kvm-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-kvm-4.4.0/drivers/pinctrl/sh-pfc/core.c linux-kvm-4.4.0/drivers/pinctrl/sh-pfc/core.c --- linux-kvm-4.4.0/drivers/pinctrl/sh-pfc/core.c +++ linux-kvm-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-kvm-4.4.0/drivers/platform/x86/ideapad-laptop.c linux-kvm-4.4.0/drivers/platform/x86/ideapad-laptop.c --- linux-kvm-4.4.0/drivers/platform/x86/ideapad-laptop.c +++ linux-kvm-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-kvm-4.4.0/drivers/platform/x86/thinkpad_acpi.c linux-kvm-4.4.0/drivers/platform/x86/thinkpad_acpi.c --- linux-kvm-4.4.0/drivers/platform/x86/thinkpad_acpi.c +++ linux-kvm-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-kvm-4.4.0/drivers/scsi/ipr.c linux-kvm-4.4.0/drivers/scsi/ipr.c --- linux-kvm-4.4.0/drivers/scsi/ipr.c +++ linux-kvm-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-kvm-4.4.0/drivers/scsi/mpt3sas/mpt3sas_base.c linux-kvm-4.4.0/drivers/scsi/mpt3sas/mpt3sas_base.c --- linux-kvm-4.4.0/drivers/scsi/mpt3sas/mpt3sas_base.c +++ linux-kvm-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-kvm-4.4.0/drivers/scsi/qla2xxx/qla_attr.c linux-kvm-4.4.0/drivers/scsi/qla2xxx/qla_attr.c --- linux-kvm-4.4.0/drivers/scsi/qla2xxx/qla_attr.c +++ linux-kvm-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); diff -u linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target.c linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target.c --- linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target.c +++ linux-kvm-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-kvm-4.4.0/drivers/target/iscsi/iscsi_target_configfs.c linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_configfs.c --- linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_configfs.c +++ linux-kvm-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-kvm-4.4.0/drivers/target/iscsi/iscsi_target_login.c linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_login.c --- linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_login.c +++ linux-kvm-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-kvm-4.4.0/drivers/target/iscsi/iscsi_target_parameters.c linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_parameters.c --- linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_parameters.c +++ linux-kvm-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-kvm-4.4.0/drivers/target/iscsi/iscsi_target_tpg.c linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_tpg.c --- linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_tpg.c +++ linux-kvm-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-kvm-4.4.0/drivers/target/iscsi/iscsi_target_tpg.h linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_tpg.h --- linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_tpg.h +++ linux-kvm-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-kvm-4.4.0/drivers/target/target_core_tpg.c linux-kvm-4.4.0/drivers/target/target_core_tpg.c --- linux-kvm-4.4.0/drivers/target/target_core_tpg.c +++ linux-kvm-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-kvm-4.4.0/drivers/target/target_core_transport.c linux-kvm-4.4.0/drivers/target/target_core_transport.c --- linux-kvm-4.4.0/drivers/target/target_core_transport.c +++ linux-kvm-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-kvm-4.4.0/drivers/thermal/cpu_cooling.c linux-kvm-4.4.0/drivers/thermal/cpu_cooling.c --- linux-kvm-4.4.0/drivers/thermal/cpu_cooling.c +++ linux-kvm-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-kvm-4.4.0/drivers/tty/tty_io.c linux-kvm-4.4.0/drivers/tty/tty_io.c --- linux-kvm-4.4.0/drivers/tty/tty_io.c +++ linux-kvm-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); @@ -1387,9 +1386,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 +1474,8 @@ tty->count++; - WARN_ON(!tty->ldisc); + if (!tty->ldisc) + return tty_ldisc_reinit(tty, tty->termios.c_line); return 0; } @@ -2650,13 +2651,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; } diff -u linux-kvm-4.4.0/drivers/tty/tty_ldisc.c linux-kvm-4.4.0/drivers/tty/tty_ldisc.c --- linux-kvm-4.4.0/drivers/tty/tty_ldisc.c +++ linux-kvm-4.4.0/drivers/tty/tty_ldisc.c @@ -250,6 +250,9 @@ * 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 @@ -262,7 +265,8 @@ 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-kvm-4.4.0/drivers/tty/vt/vt.c linux-kvm-4.4.0/drivers/tty/vt/vt.c --- linux-kvm-4.4.0/drivers/tty/vt/vt.c +++ linux-kvm-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-kvm-4.4.0/drivers/usb/class/cdc-acm.c linux-kvm-4.4.0/drivers/usb/class/cdc-acm.c --- linux-kvm-4.4.0/drivers/usb/class/cdc-acm.c +++ linux-kvm-4.4.0/drivers/usb/class/cdc-acm.c @@ -1759,6 +1759,9 @@ { 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(0x2912, 0x0001), /* ATOL FPrint */ .driver_info = CLEAR_HALT_CONDITIONS, diff -u linux-kvm-4.4.0/drivers/usb/core/hcd.c linux-kvm-4.4.0/drivers/usb/core/hcd.c --- linux-kvm-4.4.0/drivers/usb/core/hcd.c +++ linux-kvm-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); diff -u linux-kvm-4.4.0/drivers/usb/core/hub.c linux-kvm-4.4.0/drivers/usb/core/hub.c --- linux-kvm-4.4.0/drivers/usb/core/hub.c +++ linux-kvm-4.4.0/drivers/usb/core/hub.c @@ -4713,7 +4713,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); @@ -4917,9 +4918,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-kvm-4.4.0/drivers/usb/core/quirks.c linux-kvm-4.4.0/drivers/usb/core/quirks.c --- linux-kvm-4.4.0/drivers/usb/core/quirks.c +++ linux-kvm-4.4.0/drivers/usb/core/quirks.c @@ -150,6 +150,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 }, @@ -223,6 +226,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 +252,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-kvm-4.4.0/drivers/usb/dwc3/gadget.c linux-kvm-4.4.0/drivers/usb/dwc3/gadget.c --- linux-kvm-4.4.0/drivers/usb/dwc3/gadget.c +++ linux-kvm-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-kvm-4.4.0/drivers/usb/host/xhci-hub.c linux-kvm-4.4.0/drivers/usb/host/xhci-hub.c --- linux-kvm-4.4.0/drivers/usb/host/xhci-hub.c +++ linux-kvm-4.4.0/drivers/usb/host/xhci-hub.c @@ -777,6 +777,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-kvm-4.4.0/drivers/usb/host/xhci-pci.c linux-kvm-4.4.0/drivers/usb/host/xhci-pci.c --- linux-kvm-4.4.0/drivers/usb/host/xhci-pci.c +++ linux-kvm-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-kvm-4.4.0/drivers/usb/host/xhci-ring.c linux-kvm-4.4.0/drivers/usb/host/xhci-ring.c --- linux-kvm-4.4.0/drivers/usb/host/xhci-ring.c +++ linux-kvm-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-kvm-4.4.0/drivers/usb/host/xhci.c linux-kvm-4.4.0/drivers/usb/host/xhci.c --- linux-kvm-4.4.0/drivers/usb/host/xhci.c +++ linux-kvm-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-kvm-4.4.0/drivers/usb/host/xhci.h linux-kvm-4.4.0/drivers/usb/host/xhci.h --- linux-kvm-4.4.0/drivers/usb/host/xhci.h +++ linux-kvm-4.4.0/drivers/usb/host/xhci.h @@ -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-kvm-4.4.0/drivers/usb/musb/musb_host.c linux-kvm-4.4.0/drivers/usb/musb/musb_host.c --- linux-kvm-4.4.0/drivers/usb/musb/musb_host.c +++ linux-kvm-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-kvm-4.4.0/drivers/usb/renesas_usbhs/mod_gadget.c linux-kvm-4.4.0/drivers/usb/renesas_usbhs/mod_gadget.c --- linux-kvm-4.4.0/drivers/usb/renesas_usbhs/mod_gadget.c +++ linux-kvm-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-kvm-4.4.0/drivers/usb/serial/cp210x.c linux-kvm-4.4.0/drivers/usb/serial/cp210x.c --- linux-kvm-4.4.0/drivers/usb/serial/cp210x.c +++ linux-kvm-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 */ diff -u linux-kvm-4.4.0/drivers/usb/serial/option.c linux-kvm-4.4.0/drivers/usb/serial/option.c --- linux-kvm-4.4.0/drivers/usb/serial/option.c +++ linux-kvm-4.4.0/drivers/usb/serial/option.c @@ -1877,6 +1877,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) }, @@ -2021,6 +2025,8 @@ { USB_DEVICE_INTERFACE_CLASS(0x2001, 0x7d04, 0xff) }, /* D-Link DWM-158 */ { 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-kvm-4.4.0/drivers/usb/serial/pl2303.c linux-kvm-4.4.0/drivers/usb/serial/pl2303.c --- linux-kvm-4.4.0/drivers/usb/serial/pl2303.c +++ linux-kvm-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-kvm-4.4.0/drivers/usb/serial/pl2303.h linux-kvm-4.4.0/drivers/usb/serial/pl2303.h --- linux-kvm-4.4.0/drivers/usb/serial/pl2303.h +++ linux-kvm-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-kvm-4.4.0/drivers/usb/serial/qcserial.c linux-kvm-4.4.0/drivers/usb/serial/qcserial.c --- linux-kvm-4.4.0/drivers/usb/serial/qcserial.c +++ linux-kvm-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 */ diff -u linux-kvm-4.4.0/drivers/usb/storage/unusual_uas.h linux-kvm-4.4.0/drivers/usb/storage/unusual_uas.h --- linux-kvm-4.4.0/drivers/usb/storage/unusual_uas.h +++ linux-kvm-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-kvm-4.4.0/drivers/vfio/pci/vfio_pci.c linux-kvm-4.4.0/drivers/vfio/pci/vfio_pci.c --- linux-kvm-4.4.0/drivers/vfio/pci/vfio_pci.c +++ linux-kvm-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-kvm-4.4.0/fs/binfmt_elf.c linux-kvm-4.4.0/fs/binfmt_elf.c --- linux-kvm-4.4.0/fs/binfmt_elf.c +++ linux-kvm-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-kvm-4.4.0/fs/btrfs/inode.c linux-kvm-4.4.0/fs/btrfs/inode.c --- linux-kvm-4.4.0/fs/btrfs/inode.c +++ linux-kvm-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-kvm-4.4.0/fs/dcache.c linux-kvm-4.4.0/fs/dcache.c --- linux-kvm-4.4.0/fs/dcache.c +++ linux-kvm-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-kvm-4.4.0/fs/exec.c linux-kvm-4.4.0/fs/exec.c --- linux-kvm-4.4.0/fs/exec.c +++ linux-kvm-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-kvm-4.4.0/fs/ext4/file.c linux-kvm-4.4.0/fs/ext4/file.c --- linux-kvm-4.4.0/fs/ext4/file.c +++ linux-kvm-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); diff -u linux-kvm-4.4.0/fs/ext4/inode.c linux-kvm-4.4.0/fs/ext4/inode.c --- linux-kvm-4.4.0/fs/ext4/inode.c +++ linux-kvm-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); diff -u linux-kvm-4.4.0/fs/ext4/resize.c linux-kvm-4.4.0/fs/ext4/resize.c --- linux-kvm-4.4.0/fs/ext4/resize.c +++ linux-kvm-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-kvm-4.4.0/fs/ext4/sysfs.c linux-kvm-4.4.0/fs/ext4/sysfs.c --- linux-kvm-4.4.0/fs/ext4/sysfs.c +++ linux-kvm-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-kvm-4.4.0/fs/f2fs/acl.c linux-kvm-4.4.0/fs/f2fs/acl.c --- linux-kvm-4.4.0/fs/f2fs/acl.c +++ linux-kvm-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-kvm-4.4.0/fs/f2fs/super.c linux-kvm-4.4.0/fs/f2fs/super.c --- linux-kvm-4.4.0/fs/f2fs/super.c +++ linux-kvm-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-kvm-4.4.0/fs/fuse/file.c linux-kvm-4.4.0/fs/fuse/file.c --- linux-kvm-4.4.0/fs/fuse/file.c +++ linux-kvm-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-kvm-4.4.0/fs/gfs2/glock.c linux-kvm-4.4.0/fs/gfs2/glock.c --- linux-kvm-4.4.0/fs/gfs2/glock.c +++ linux-kvm-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); } diff -u linux-kvm-4.4.0/fs/gfs2/incore.h linux-kvm-4.4.0/fs/gfs2/incore.h --- linux-kvm-4.4.0/fs/gfs2/incore.h +++ linux-kvm-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-kvm-4.4.0/fs/mount.h linux-kvm-4.4.0/fs/mount.h --- linux-kvm-4.4.0/fs/mount.h +++ linux-kvm-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-kvm-4.4.0/fs/namespace.c linux-kvm-4.4.0/fs/namespace.c --- linux-kvm-4.4.0/fs/namespace.c +++ linux-kvm-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-kvm-4.4.0/fs/nfs/dir.c linux-kvm-4.4.0/fs/nfs/dir.c --- linux-kvm-4.4.0/fs/nfs/dir.c +++ linux-kvm-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-kvm-4.4.0/fs/nfs/inode.c linux-kvm-4.4.0/fs/nfs/inode.c --- linux-kvm-4.4.0/fs/nfs/inode.c +++ linux-kvm-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-kvm-4.4.0/fs/open.c linux-kvm-4.4.0/fs/open.c --- linux-kvm-4.4.0/fs/open.c +++ linux-kvm-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-kvm-4.4.0/fs/pnode.c linux-kvm-4.4.0/fs/pnode.c --- linux-kvm-4.4.0/fs/pnode.c +++ linux-kvm-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-kvm-4.4.0/fs/pstore/ram.c linux-kvm-4.4.0/fs/pstore/ram.c --- linux-kvm-4.4.0/fs/pstore/ram.c +++ linux-kvm-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-kvm-4.4.0/fs/pstore/ram_core.c linux-kvm-4.4.0/fs/pstore/ram_core.c --- linux-kvm-4.4.0/fs/pstore/ram_core.c +++ linux-kvm-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-kvm-4.4.0/fs/udf/inode.c linux-kvm-4.4.0/fs/udf/inode.c --- linux-kvm-4.4.0/fs/udf/inode.c +++ linux-kvm-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-kvm-4.4.0/fs/xfs/xfs_aops.c linux-kvm-4.4.0/fs/xfs/xfs_aops.c --- linux-kvm-4.4.0/fs/xfs/xfs_aops.c +++ linux-kvm-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-kvm-4.4.0/include/linux/mm_types.h linux-kvm-4.4.0/include/linux/mm_types.h --- linux-kvm-4.4.0/include/linux/mm_types.h +++ linux-kvm-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-kvm-4.4.0/include/linux/netdevice.h linux-kvm-4.4.0/include/linux/netdevice.h --- linux-kvm-4.4.0/include/linux/netdevice.h +++ linux-kvm-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-kvm-4.4.0/include/linux/sched.h linux-kvm-4.4.0/include/linux/sched.h --- linux-kvm-4.4.0/include/linux/sched.h +++ linux-kvm-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) { diff -u linux-kvm-4.4.0/include/linux/tty.h linux-kvm-4.4.0/include/linux/tty.h --- linux-kvm-4.4.0/include/linux/tty.h +++ linux-kvm-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-kvm-4.4.0/include/linux/usb/hcd.h linux-kvm-4.4.0/include/linux/usb/hcd.h --- linux-kvm-4.4.0/include/linux/usb/hcd.h +++ linux-kvm-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-kvm-4.4.0/include/net/ip6_route.h linux-kvm-4.4.0/include/net/ip6_route.h --- linux-kvm-4.4.0/include/net/ip6_route.h +++ linux-kvm-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-kvm-4.4.0/include/net/iw_handler.h linux-kvm-4.4.0/include/net/iw_handler.h --- linux-kvm-4.4.0/include/net/iw_handler.h +++ linux-kvm-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-kvm-4.4.0/include/target/target_core_base.h linux-kvm-4.4.0/include/target/target_core_base.h --- linux-kvm-4.4.0/include/target/target_core_base.h +++ linux-kvm-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-kvm-4.4.0/ipc/mqueue.c linux-kvm-4.4.0/ipc/mqueue.c --- linux-kvm-4.4.0/ipc/mqueue.c +++ linux-kvm-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-kvm-4.4.0/kernel/bpf/verifier.c linux-kvm-4.4.0/kernel/bpf/verifier.c --- linux-kvm-4.4.0/kernel/bpf/verifier.c +++ linux-kvm-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); diff -u linux-kvm-4.4.0/kernel/cpuset.c linux-kvm-4.4.0/kernel/cpuset.c --- linux-kvm-4.4.0/kernel/cpuset.c +++ linux-kvm-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. */ diff -u linux-kvm-4.4.0/kernel/events/core.c linux-kvm-4.4.0/kernel/events/core.c --- linux-kvm-4.4.0/kernel/events/core.c +++ linux-kvm-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 */ diff -u linux-kvm-4.4.0/kernel/sched/core.c linux-kvm-4.4.0/kernel/sched/core.c --- linux-kvm-4.4.0/kernel/sched/core.c +++ linux-kvm-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))); } /* @@ -8237,11 +8252,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 +8640,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-kvm-4.4.0/kernel/sched/sched.h linux-kvm-4.4.0/kernel/sched/sched.h --- linux-kvm-4.4.0/kernel/sched/sched.h +++ linux-kvm-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-kvm-4.4.0/kernel/signal.c linux-kvm-4.4.0/kernel/signal.c --- linux-kvm-4.4.0/kernel/signal.c +++ linux-kvm-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-kvm-4.4.0/kernel/sysctl.c linux-kvm-4.4.0/kernel/sysctl.c --- linux-kvm-4.4.0/kernel/sysctl.c +++ linux-kvm-4.4.0/kernel/sysctl.c @@ -2110,9 +2110,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-kvm-4.4.0/kernel/time/alarmtimer.c linux-kvm-4.4.0/kernel/time/alarmtimer.c --- linux-kvm-4.4.0/kernel/time/alarmtimer.c +++ linux-kvm-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-kvm-4.4.0/kernel/trace/ftrace.c linux-kvm-4.4.0/kernel/trace/ftrace.c --- linux-kvm-4.4.0/kernel/trace/ftrace.c +++ linux-kvm-4.4.0/kernel/trace/ftrace.c @@ -3535,7 +3535,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, diff -u linux-kvm-4.4.0/kernel/trace/trace.c linux-kvm-4.4.0/kernel/trace/trace.c --- linux-kvm-4.4.0/kernel/trace/trace.c +++ linux-kvm-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); } @@ -6737,6 +6737,7 @@ } kfree(tr->topts); + free_cpumask_var(tr->tracing_cpumask); kfree(tr->name); kfree(tr); diff -u linux-kvm-4.4.0/kernel/trace/trace_kprobe.c linux-kvm-4.4.0/kernel/trace/trace_kprobe.c --- linux-kvm-4.4.0/kernel/trace/trace_kprobe.c +++ linux-kvm-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-kvm-4.4.0/kernel/workqueue.c linux-kvm-4.4.0/kernel/workqueue.c --- linux-kvm-4.4.0/kernel/workqueue.c +++ linux-kvm-4.4.0/kernel/workqueue.c @@ -3647,8 +3647,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 +3838,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 +4036,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 +5169,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-kvm-4.4.0/mm/internal.h linux-kvm-4.4.0/mm/internal.h --- linux-kvm-4.4.0/mm/internal.h +++ linux-kvm-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-kvm-4.4.0/mm/ksm.c linux-kvm-4.4.0/mm/ksm.c --- linux-kvm-4.4.0/mm/ksm.c +++ linux-kvm-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); @@ -2014,6 +2578,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) { @@ -2026,15 +2632,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(); } @@ -2259,6 +2862,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) { @@ -2297,6 +2941,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) { @@ -2316,6 +3000,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-kvm-4.4.0/mm/list_lru.c linux-kvm-4.4.0/mm/list_lru.c --- linux-kvm-4.4.0/mm/list_lru.c +++ linux-kvm-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-kvm-4.4.0/mm/memory.c linux-kvm-4.4.0/mm/memory.c --- linux-kvm-4.4.0/mm/memory.c +++ linux-kvm-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-kvm-4.4.0/mm/mmap.c linux-kvm-4.4.0/mm/mmap.c --- linux-kvm-4.4.0/mm/mmap.c +++ linux-kvm-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-kvm-4.4.0/mm/page_alloc.c linux-kvm-4.4.0/mm/page_alloc.c --- linux-kvm-4.4.0/mm/page_alloc.c +++ linux-kvm-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; @@ -6047,8 +6047,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; } @@ -7004,7 +7004,7 @@ /* Make sure the range is really isolated. */ if (test_pages_isolated(outer_start, end, false)) { - pr_info("%s: [%lx, %lx) PFNs busy\n", + pr_info_ratelimited("%s: [%lx, %lx) PFNs busy\n", __func__, outer_start, end); ret = -EBUSY; goto done; diff -u linux-kvm-4.4.0/mm/vmscan.c linux-kvm-4.4.0/mm/vmscan.c --- linux-kvm-4.4.0/mm/vmscan.c +++ linux-kvm-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-kvm-4.4.0/net/bluetooth/hci_core.c linux-kvm-4.4.0/net/bluetooth/hci_core.c --- linux-kvm-4.4.0/net/bluetooth/hci_core.c +++ linux-kvm-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-kvm-4.4.0/net/bluetooth/smp.c linux-kvm-4.4.0/net/bluetooth/smp.c --- linux-kvm-4.4.0/net/bluetooth/smp.c +++ linux-kvm-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-kvm-4.4.0/net/core/dev.c linux-kvm-4.4.0/net/core/dev.c --- linux-kvm-4.4.0/net/core/dev.c +++ linux-kvm-4.4.0/net/core/dev.c @@ -2550,9 +2550,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 +2572,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 +2592,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 +4382,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 +4401,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 +4470,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 +6072,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 +6082,7 @@ dev->mtu = new_mtu; return 0; } +EXPORT_SYMBOL(__dev_set_mtu); /** * dev_set_mtu - Change maximum transfer unit @@ -7053,8 +7071,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-kvm-4.4.0/net/core/rtnetlink.c linux-kvm-4.4.0/net/core/rtnetlink.c --- linux-kvm-4.4.0/net/core/rtnetlink.c +++ linux-kvm-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-kvm-4.4.0/net/dccp/ipv4.c linux-kvm-4.4.0/net/dccp/ipv4.c --- linux-kvm-4.4.0/net/dccp/ipv4.c +++ linux-kvm-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-kvm-4.4.0/net/dccp/ipv6.c linux-kvm-4.4.0/net/dccp/ipv6.c --- linux-kvm-4.4.0/net/dccp/ipv6.c +++ linux-kvm-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-kvm-4.4.0/net/ipv4/fib_frontend.c linux-kvm-4.4.0/net/ipv4/fib_frontend.c --- linux-kvm-4.4.0/net/ipv4/fib_frontend.c +++ linux-kvm-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-kvm-4.4.0/net/ipv4/tcp.c linux-kvm-4.4.0/net/ipv4/tcp.c --- linux-kvm-4.4.0/net/ipv4/tcp.c +++ linux-kvm-4.4.0/net/ipv4/tcp.c @@ -2263,6 +2263,8 @@ 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-kvm-4.4.0/net/ipv4/tcp_input.c linux-kvm-4.4.0/net/ipv4/tcp_input.c --- linux-kvm-4.4.0/net/ipv4/tcp_input.c +++ linux-kvm-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; } diff -u linux-kvm-4.4.0/net/ipv4/tcp_output.c linux-kvm-4.4.0/net/ipv4/tcp_output.c --- linux-kvm-4.4.0/net/ipv4/tcp_output.c +++ linux-kvm-4.4.0/net/ipv4/tcp_output.c @@ -3256,6 +3256,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-kvm-4.4.0/net/ipv4/tcp_timer.c linux-kvm-4.4.0/net/ipv4/tcp_timer.c --- linux-kvm-4.4.0/net/ipv4/tcp_timer.c +++ linux-kvm-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-kvm-4.4.0/net/ipv4/udp.c linux-kvm-4.4.0/net/ipv4/udp.c --- linux-kvm-4.4.0/net/ipv4/udp.c +++ linux-kvm-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; diff -u linux-kvm-4.4.0/net/ipv4/udp_offload.c linux-kvm-4.4.0/net/ipv4/udp_offload.c --- linux-kvm-4.4.0/net/ipv4/udp_offload.c +++ linux-kvm-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-kvm-4.4.0/net/ipv6/addrconf.c linux-kvm-4.4.0/net/ipv6/addrconf.c --- linux-kvm-4.4.0/net/ipv6/addrconf.c +++ linux-kvm-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; diff -u linux-kvm-4.4.0/net/ipv6/ip6_fib.c linux-kvm-4.4.0/net/ipv6/ip6_fib.c --- linux-kvm-4.4.0/net/ipv6/ip6_fib.c +++ linux-kvm-4.4.0/net/ipv6/ip6_fib.c @@ -767,10 +767,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)) diff -u linux-kvm-4.4.0/net/ipv6/ip6_output.c linux-kvm-4.4.0/net/ipv6/ip6_output.c --- linux-kvm-4.4.0/net/ipv6/ip6_output.c +++ linux-kvm-4.4.0/net/ipv6/ip6_output.c @@ -647,8 +647,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 +765,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; } diff -u linux-kvm-4.4.0/net/ipv6/output_core.c linux-kvm-4.4.0/net/ipv6/output_core.c --- linux-kvm-4.4.0/net/ipv6/output_core.c +++ linux-kvm-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; @@ -86,6 +86,7 @@ while (offset <= packet_len) { struct ipv6_opt_hdr *exthdr; + unsigned int len; switch (**nexthdr) { @@ -111,7 +112,10 @@ exthdr = (struct ipv6_opt_hdr *)(skb_network_header(skb) + offset); - offset += ipv6_optlen(exthdr); + len = ipv6_optlen(exthdr); + if (len + offset >= IPV6_MAXPLEN) + return -EINVAL; + offset += len; *nexthdr = &exthdr->nexthdr; } diff -u linux-kvm-4.4.0/net/ipv6/route.c linux-kvm-4.4.0/net/ipv6/route.c --- linux-kvm-4.4.0/net/ipv6/route.c +++ linux-kvm-4.4.0/net/ipv6/route.c @@ -2833,17 +2833,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; } diff -u linux-kvm-4.4.0/net/ipv6/udp_offload.c linux-kvm-4.4.0/net/ipv6/udp_offload.c --- linux-kvm-4.4.0/net/ipv6/udp_offload.c +++ linux-kvm-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-kvm-4.4.0/net/key/af_key.c linux-kvm-4.4.0/net/key/af_key.c --- linux-kvm-4.4.0/net/key/af_key.c +++ linux-kvm-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); @@ -281,13 +290,23 @@ 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; @@ -298,6 +317,9 @@ } pfkey_terminate_dump(pfk); + +out: + mutex_unlock(&pfk->dump_lock); return rc; } @@ -1802,19 +1824,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 +1859,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); } @@ -1922,19 +1952,14 @@ /* addresses present only in tunnel mode */ if (t->mode == XFRM_MODE_TUNNEL) { - u8 *sa = (u8 *) (rq + 1); - int family, socklen; - - family = pfkey_sockaddr_extract((struct sockaddr *)sa, - &t->saddr); - if (!family) - return -EINVAL; + int err; - 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 +1979,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; @@ -2417,7 +2446,6 @@ 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 +2457,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 +2473,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 +2481,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 +2497,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) @@ -2688,14 +2719,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); } diff -u linux-kvm-4.4.0/net/netfilter/ipvs/ip_vs_core.c linux-kvm-4.4.0/net/netfilter/ipvs/ip_vs_core.c --- linux-kvm-4.4.0/net/netfilter/ipvs/ip_vs_core.c +++ linux-kvm-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-kvm-4.4.0/net/openvswitch/conntrack.c linux-kvm-4.4.0/net/openvswitch/conntrack.c --- linux-kvm-4.4.0/net/openvswitch/conntrack.c +++ linux-kvm-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-kvm-4.4.0/net/packet/af_packet.c linux-kvm-4.4.0/net/packet/af_packet.c --- linux-kvm-4.4.0/net/packet/af_packet.c +++ linux-kvm-4.4.0/net/packet/af_packet.c @@ -3627,9 +3627,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; } @@ -4230,7 +4230,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-kvm-4.4.0/net/sched/sch_api.c linux-kvm-4.4.0/net/sched/sch_api.c --- linux-kvm-4.4.0/net/sched/sch_api.c +++ linux-kvm-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-kvm-4.4.0/net/sched/sch_hhf.c linux-kvm-4.4.0/net/sched/sch_hhf.c --- linux-kvm-4.4.0/net/sched/sch_hhf.c +++ linux-kvm-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-kvm-4.4.0/net/sched/sch_mqprio.c linux-kvm-4.4.0/net/sched/sch_mqprio.c --- linux-kvm-4.4.0/net/sched/sch_mqprio.c +++ linux-kvm-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-kvm-4.4.0/net/sched/sch_sfq.c linux-kvm-4.4.0/net/sched/sch_sfq.c --- linux-kvm-4.4.0/net/sched/sch_sfq.c +++ linux-kvm-4.4.0/net/sched/sch_sfq.c @@ -742,9 +742,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-kvm-4.4.0/net/wireless/nl80211.c linux-kvm-4.4.0/net/wireless/nl80211.c --- linux-kvm-4.4.0/net/wireless/nl80211.c +++ linux-kvm-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 }, @@ -5705,6 +5705,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++; /* diff -u linux-kvm-4.4.0/net/xfrm/xfrm_policy.c linux-kvm-4.4.0/net/xfrm/xfrm_policy.c --- linux-kvm-4.4.0/net/xfrm/xfrm_policy.c +++ linux-kvm-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; diff -u linux-kvm-4.4.0/sound/pci/hda/patch_realtek.c linux-kvm-4.4.0/sound/pci/hda/patch_realtek.c --- linux-kvm-4.4.0/sound/pci/hda/patch_realtek.c +++ linux-kvm-4.4.0/sound/pci/hda/patch_realtek.c @@ -2233,6 +2233,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), diff -u linux-kvm-4.4.0/sound/soc/soc-compress.c linux-kvm-4.4.0/sound/soc/soc-compress.c --- linux-kvm-4.4.0/sound/soc/soc-compress.c +++ linux-kvm-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-kvm-4.4.0/sound/soc/soc-pcm.c linux-kvm-4.4.0/sound/soc/soc-pcm.c --- linux-kvm-4.4.0/sound/soc/soc-pcm.c +++ linux-kvm-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-kvm-4.4.0/sound/usb/endpoint.c linux-kvm-4.4.0/sound/usb/endpoint.c --- linux-kvm-4.4.0/sound/usb/endpoint.c +++ linux-kvm-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-kvm-4.4.0/tools/perf/Makefile.perf linux-kvm-4.4.0/tools/perf/Makefile.perf --- linux-kvm-4.4.0/tools/perf/Makefile.perf +++ linux-kvm-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-kvm-4.4.0/tools/perf/util/event.c linux-kvm-4.4.0/tools/perf/util/event.c --- linux-kvm-4.4.0/tools/perf/util/event.c +++ linux-kvm-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-kvm-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c linux-kvm-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c --- linux-kvm-4.4.0/tools/perf/util/intel-pt-decoder/intel-pt-decoder.c +++ linux-kvm-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-kvm-4.4.0/tools/perf/util/parse-events.c linux-kvm-4.4.0/tools/perf/util/parse-events.c --- linux-kvm-4.4.0/tools/perf/util/parse-events.c +++ linux-kvm-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; } @@ -1629,7 +1629,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 +1647,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 +1669,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 +1722,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 +1730,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-kvm-4.4.0/tools/perf/util/pmu.c linux-kvm-4.4.0/tools/perf/util/pmu.c --- linux-kvm-4.4.0/tools/perf/util/pmu.c +++ linux-kvm-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-kvm-4.4.0/tools/perf/util/symbol-elf.c linux-kvm-4.4.0/tools/perf/util/symbol-elf.c --- linux-kvm-4.4.0/tools/perf/util/symbol-elf.c +++ linux-kvm-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-kvm-4.4.0/ubuntu/Kconfig linux-kvm-4.4.0/ubuntu/Kconfig --- linux-kvm-4.4.0/ubuntu/Kconfig +++ linux-kvm-4.4.0/ubuntu/Kconfig @@ -26,6 +26,20 @@ ## ## ## +source "ubuntu/opennsl/Kconfig" +## +## +## +## +## +## +source "ubuntu/bnxt/Kconfig" +## +## +## +## +## +## endmenu diff -u linux-kvm-4.4.0/ubuntu/Makefile linux-kvm-4.4.0/ubuntu/Makefile --- linux-kvm-4.4.0/ubuntu/Makefile +++ linux-kvm-4.4.0/ubuntu/Makefile @@ -40,6 +40,16 @@ ## ## ## +obj-$(CONFIG_OPENNSL) += opennsl/ +## +## +## +## +obj-$(CONFIG_BNXT_BPO) += bnxt/ +## +## +## +## ## ## diff -u linux-kvm-4.4.0/ubuntu/rsi/rsi_91x_mac80211.c linux-kvm-4.4.0/ubuntu/rsi/rsi_91x_mac80211.c --- linux-kvm-4.4.0/ubuntu/rsi/rsi_91x_mac80211.c +++ linux-kvm-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-kvm-4.4.0/ubuntu/rsi/rsi_91x_mgmt.c linux-kvm-4.4.0/ubuntu/rsi/rsi_91x_mgmt.c --- linux-kvm-4.4.0/ubuntu/rsi/rsi_91x_mgmt.c +++ linux-kvm-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-kvm-4.4.0/ubuntu/rsi/rsi_mgmt.h linux-kvm-4.4.0/ubuntu/rsi/rsi_mgmt.h --- linux-kvm-4.4.0/ubuntu/rsi/rsi_mgmt.h +++ linux-kvm-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-kvm-4.4.0.orig/Documentation/vm/ksm.txt +++ linux-kvm-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-kvm-4.4.0.orig/arch/arm/boot/dts/omap3-n900.dts +++ linux-kvm-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-kvm-4.4.0.orig/arch/arm/configs/s3c2410_defconfig +++ linux-kvm-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-kvm-4.4.0.orig/arch/arm/include/asm/elf.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/arm/include/asm/ftrace.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/arm64/boot/dts/xilinx/zynqmp-ep108.dts +++ linux-kvm-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-kvm-4.4.0.orig/arch/arm64/boot/dts/xilinx/zynqmp.dtsi +++ linux-kvm-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-kvm-4.4.0.orig/arch/mips/include/asm/branch.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/mips/kernel/proc.c +++ linux-kvm-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-kvm-4.4.0.orig/arch/mips/kernel/scall32-o32.S +++ linux-kvm-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-kvm-4.4.0.orig/arch/mips/kernel/scall64-64.S +++ linux-kvm-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-kvm-4.4.0.orig/arch/mips/kernel/syscall.c +++ linux-kvm-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-kvm-4.4.0.orig/arch/openrisc/kernel/vmlinux.lds.S +++ linux-kvm-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-kvm-4.4.0.orig/arch/parisc/include/asm/dma-mapping.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/parisc/include/asm/mmu_context.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/parisc/kernel/syscall_table.S +++ linux-kvm-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-kvm-4.4.0.orig/arch/powerpc/include/asm/elf.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/powerpc/platforms/pseries/reconfig.c +++ linux-kvm-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-kvm-4.4.0.orig/arch/s390/include/asm/elf.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/s390/include/asm/syscall.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/sparc/include/asm/trap_block.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/sparc/kernel/sun4v_ivec.S +++ linux-kvm-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-kvm-4.4.0.orig/arch/sparc/power/hibernate.c +++ linux-kvm-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-kvm-4.4.0.orig/arch/x86/boot/string.c +++ linux-kvm-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-kvm-4.4.0.orig/arch/x86/boot/string.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/x86/crypto/sha1_ssse3_glue.c +++ linux-kvm-4.4.0/arch/x86/crypto/sha1_ssse3_glue.c @@ -201,7 +201,7 @@ static bool avx2_usable(void) { - if (avx_usable() && boot_cpu_has(X86_FEATURE_AVX2) + if (false && avx_usable() && boot_cpu_has(X86_FEATURE_AVX2) && boot_cpu_has(X86_FEATURE_BMI1) && boot_cpu_has(X86_FEATURE_BMI2)) return true; only in patch2: unchanged: --- linux-kvm-4.4.0.orig/arch/x86/include/asm/xen/hypercall.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/x86/kernel/kexec-bzimage64.c +++ linux-kvm-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-kvm-4.4.0.orig/arch/x86/kvm/cpuid.h +++ linux-kvm-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-kvm-4.4.0.orig/arch/x86/tools/relocs.c +++ linux-kvm-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-kvm-4.4.0.orig/crypto/authencesn.c +++ linux-kvm-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-kvm-4.4.0.orig/debian.kvm/abi/4.4.0-1004.9/abiname +++ linux-kvm-4.4.0/debian.kvm/abi/4.4.0-1004.9/abiname @@ -0,0 +1 @@ +1004 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.kvm/abi/4.4.0-1004.9/amd64/kvm +++ linux-kvm-4.4.0/debian.kvm/abi/4.4.0-1004.9/amd64/kvm @@ -0,0 +1,6165 @@ +EXPORT_SYMBOL crypto/crct10dif_common 0x00000000 crc_t10dif_generic +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_bbe +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_free_64k +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_init_4k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_init_4k_lle +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_init_64k_bbe +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_init_64k_lle +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_lle +EXPORT_SYMBOL crypto/gf128mul 0x00000000 gf128mul_x_ble +EXPORT_SYMBOL crypto/sha256_generic 0x00000000 crypto_sha256_finup +EXPORT_SYMBOL crypto/sha256_generic 0x00000000 crypto_sha256_update +EXPORT_SYMBOL crypto/xor 0x00000000 xor_blocks +EXPORT_SYMBOL drivers/block/loop 0x00000000 loop_backing_file +EXPORT_SYMBOL drivers/block/loop 0x00000000 loop_register_transfer +EXPORT_SYMBOL drivers/block/loop 0x00000000 loop_unregister_transfer +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_consume_args +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_get_device +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_io +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_io_client_create +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_io_client_destroy +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_client_create +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_client_destroy +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_copy +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_do_callback +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_prepare_callback +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_kcopyd_zero +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_put_device +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_put_table_device +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_ratelimit_state +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_read_arg +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_read_arg_group +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_register_target +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_shift_arg +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_table_event +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_table_get_md +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_table_get_mode +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_table_get_size +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_table_run_md_queue_async +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_unregister_target +EXPORT_SYMBOL drivers/md/dm-mod 0x00000000 dm_vcalloc +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_close_sync +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_cond_end_sync +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_end_sync +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_endwrite +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_start_sync +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_startwrite +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 bitmap_unplug +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_check_no_bitmap +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_check_recovery +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_cluster_mod +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_cluster_ops +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_done_sync +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_error +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_finish_reshape +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_flush_request +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_integrity_add_rdev +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_integrity_register +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_reap_sync_thread +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_register_thread +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_reload_sb +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_set_array_sectors +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_unplug +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_unregister_thread +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_update_sb +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_wait_for_blocked_rdev +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_wakeup_thread +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_write_end +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 md_write_start +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 register_md_cluster_operations +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 register_md_personality +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 unregister_md_cluster_operations +EXPORT_SYMBOL drivers/md/md-mod 0x00000000 unregister_md_personality +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x00000000 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x00000000 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x00000000 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x00000000 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/mtd 0x00000000 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x00000000 mtd_concat_destroy +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00000000 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x00000000 osduld_unregister_test +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0x00000000 transport_wait_for_tasks +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x00000000 configfs_unregister_subsystem +EXPORT_SYMBOL fs/exofs/libore 0x00000000 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x00000000 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x00000000 ore_write +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x00000000 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x00000000 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x00000000 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x00000000 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x00000000 qtree_write_dquot +EXPORT_SYMBOL lib/crc-itu-t 0x00000000 crc_itu_t +EXPORT_SYMBOL lib/crc-itu-t 0x00000000 crc_itu_t_table +EXPORT_SYMBOL lib/crc-t10dif 0x00000000 crc_t10dif +EXPORT_SYMBOL lib/crc-t10dif 0x00000000 crc_t10dif_update +EXPORT_SYMBOL lib/libcrc32c 0x00000000 crc32c +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_empty_zero_page +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfexi +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfexp +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfinv +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_gfmul +EXPORT_SYMBOL lib/raid6/raid6_pq 0x00000000 raid6_vgfmul +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x00000000 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x00000000 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x00000000 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x00000000 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x00000000 v9fs_unregister_trans +EXPORT_SYMBOL net/ceph/libceph 0x00000000 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x00000000 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x00000000 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x00000000 osd_req_op_xattr_init +EXPORT_SYMBOL net/dns_resolver/dns_resolver 0x00000000 dns_query +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x00000000 rxrpc_kernel_send_data +EXPORT_SYMBOL net/sunrpc/sunrpc 0x00000000 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x00000000 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x00000000 xdr_truncate_encode +EXPORT_SYMBOL security/keys/encrypted-keys/encrypted-keys 0x00000000 ecryptfs_fill_auth_tok +EXPORT_SYMBOL security/keys/encrypted-keys/encrypted-keys 0x00000000 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL security/keys/encrypted-keys/encrypted-keys 0x00000000 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x00000000 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x00000000 I_BDEV +EXPORT_SYMBOL vmlinux 0x00000000 PDE_DATA +EXPORT_SYMBOL vmlinux 0x00000000 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x00000000 ___ratelimit +EXPORT_SYMBOL vmlinux 0x00000000 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x00000000 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x00000000 __alloc_skb +EXPORT_SYMBOL vmlinux 0x00000000 __bdevname +EXPORT_SYMBOL vmlinux 0x00000000 __bforget +EXPORT_SYMBOL vmlinux 0x00000000 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_and +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_andnot +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_equal +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_intersects +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_or +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_parse +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_subset +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_weight +EXPORT_SYMBOL vmlinux 0x00000000 __bitmap_xor +EXPORT_SYMBOL vmlinux 0x00000000 __blk_end_request +EXPORT_SYMBOL vmlinux 0x00000000 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x00000000 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x00000000 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0x00000000 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x00000000 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x00000000 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x00000000 __block_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x00000000 __bread_gfp +EXPORT_SYMBOL vmlinux 0x00000000 __breadahead +EXPORT_SYMBOL vmlinux 0x00000000 __break_lease +EXPORT_SYMBOL vmlinux 0x00000000 __brelse +EXPORT_SYMBOL vmlinux 0x00000000 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x00000000 __cap_empty_set +EXPORT_SYMBOL vmlinux 0x00000000 __check_sticky +EXPORT_SYMBOL vmlinux 0x00000000 __clear_user +EXPORT_SYMBOL vmlinux 0x00000000 __clzdi2 +EXPORT_SYMBOL vmlinux 0x00000000 __clzsi2 +EXPORT_SYMBOL vmlinux 0x00000000 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x00000000 __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x00000000 __const_udelay +EXPORT_SYMBOL vmlinux 0x00000000 __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x00000000 __crc32c_le +EXPORT_SYMBOL vmlinux 0x00000000 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x00000000 __crypto_memneq +EXPORT_SYMBOL vmlinux 0x00000000 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x00000000 __ctzsi2 +EXPORT_SYMBOL vmlinux 0x00000000 __d_drop +EXPORT_SYMBOL vmlinux 0x00000000 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 __delay +EXPORT_SYMBOL vmlinux 0x00000000 __destroy_inode +EXPORT_SYMBOL vmlinux 0x00000000 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x00000000 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x00000000 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x00000000 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x00000000 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x00000000 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x00000000 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x00000000 __devm_release_region +EXPORT_SYMBOL vmlinux 0x00000000 __devm_request_region +EXPORT_SYMBOL vmlinux 0x00000000 __do_once_done +EXPORT_SYMBOL vmlinux 0x00000000 __do_once_start +EXPORT_SYMBOL vmlinux 0x00000000 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x00000000 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x00000000 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x00000000 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x00000000 __dst_free +EXPORT_SYMBOL vmlinux 0x00000000 __elv_add_request +EXPORT_SYMBOL vmlinux 0x00000000 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x00000000 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x00000000 __f_setown +EXPORT_SYMBOL vmlinux 0x00000000 __fdget +EXPORT_SYMBOL vmlinux 0x00000000 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x00000000 __find_get_block +EXPORT_SYMBOL vmlinux 0x00000000 __free_page_frag +EXPORT_SYMBOL vmlinux 0x00000000 __free_pages +EXPORT_SYMBOL vmlinux 0x00000000 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x00000000 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x00000000 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x00000000 __genl_register_family +EXPORT_SYMBOL vmlinux 0x00000000 __get_free_pages +EXPORT_SYMBOL vmlinux 0x00000000 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x00000000 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0x00000000 __get_page_tail +EXPORT_SYMBOL vmlinux 0x00000000 __get_user_1 +EXPORT_SYMBOL vmlinux 0x00000000 __get_user_2 +EXPORT_SYMBOL vmlinux 0x00000000 __get_user_4 +EXPORT_SYMBOL vmlinux 0x00000000 __get_user_8 +EXPORT_SYMBOL vmlinux 0x00000000 __get_user_pages +EXPORT_SYMBOL vmlinux 0x00000000 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x00000000 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x00000000 __getblk_slow +EXPORT_SYMBOL vmlinux 0x00000000 __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x00000000 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_init +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x00000000 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x00000000 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x00000000 __inet_hash +EXPORT_SYMBOL vmlinux 0x00000000 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x00000000 __init_rwsem +EXPORT_SYMBOL vmlinux 0x00000000 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x00000000 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x00000000 __inode_permission +EXPORT_SYMBOL vmlinux 0x00000000 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x00000000 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x00000000 __invalidate_device +EXPORT_SYMBOL vmlinux 0x00000000 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x00000000 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x00000000 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x00000000 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x00000000 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x00000000 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x00000000 __kernel_write +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_free +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_in +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_init +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x00000000 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x00000000 __kfree_skb +EXPORT_SYMBOL vmlinux 0x00000000 __kmalloc +EXPORT_SYMBOL vmlinux 0x00000000 __krealloc +EXPORT_SYMBOL vmlinux 0x00000000 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x00000000 __lock_buffer +EXPORT_SYMBOL vmlinux 0x00000000 __lock_page +EXPORT_SYMBOL vmlinux 0x00000000 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x00000000 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x00000000 __memcpy +EXPORT_SYMBOL vmlinux 0x00000000 __memmove +EXPORT_SYMBOL vmlinux 0x00000000 __memset +EXPORT_SYMBOL vmlinux 0x00000000 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x00000000 __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 __mutex_init +EXPORT_SYMBOL vmlinux 0x00000000 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x00000000 __napi_complete +EXPORT_SYMBOL vmlinux 0x00000000 __napi_schedule +EXPORT_SYMBOL vmlinux 0x00000000 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x00000000 __ndelay +EXPORT_SYMBOL vmlinux 0x00000000 __neigh_create +EXPORT_SYMBOL vmlinux 0x00000000 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x00000000 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x00000000 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x00000000 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x00000000 __netif_schedule +EXPORT_SYMBOL vmlinux 0x00000000 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x00000000 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x00000000 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x00000000 __nla_put +EXPORT_SYMBOL vmlinux 0x00000000 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x00000000 __nla_reserve +EXPORT_SYMBOL vmlinux 0x00000000 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x00000000 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x00000000 __page_symlink +EXPORT_SYMBOL vmlinux 0x00000000 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x00000000 __pagevec_release +EXPORT_SYMBOL vmlinux 0x00000000 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x00000000 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x00000000 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x00000000 __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x00000000 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x00000000 __preempt_count +EXPORT_SYMBOL vmlinux 0x00000000 __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x00000000 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x00000000 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x00000000 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0x00000000 __put_cred +EXPORT_SYMBOL vmlinux 0x00000000 __put_user_1 +EXPORT_SYMBOL vmlinux 0x00000000 __put_user_2 +EXPORT_SYMBOL vmlinux 0x00000000 __put_user_4 +EXPORT_SYMBOL vmlinux 0x00000000 __put_user_8 +EXPORT_SYMBOL vmlinux 0x00000000 __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x00000000 __quota_error +EXPORT_SYMBOL vmlinux 0x00000000 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x00000000 __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x00000000 __register_binfmt +EXPORT_SYMBOL vmlinux 0x00000000 __register_chrdev +EXPORT_SYMBOL vmlinux 0x00000000 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x00000000 __register_nls +EXPORT_SYMBOL vmlinux 0x00000000 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0x00000000 __release_region +EXPORT_SYMBOL vmlinux 0x00000000 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x00000000 __request_module +EXPORT_SYMBOL vmlinux 0x00000000 __request_region +EXPORT_SYMBOL vmlinux 0x00000000 __sb_end_write +EXPORT_SYMBOL vmlinux 0x00000000 __sb_start_write +EXPORT_SYMBOL vmlinux 0x00000000 __scm_destroy +EXPORT_SYMBOL vmlinux 0x00000000 __scm_send +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x00000000 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x00000000 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x00000000 __seq_open_private +EXPORT_SYMBOL vmlinux 0x00000000 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x00000000 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x00000000 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x00000000 __sg_free_table +EXPORT_SYMBOL vmlinux 0x00000000 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x00000000 __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x00000000 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x00000000 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x00000000 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x00000000 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x00000000 __skb_checksum +EXPORT_SYMBOL vmlinux 0x00000000 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x00000000 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x00000000 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x00000000 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x00000000 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x00000000 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x00000000 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x00000000 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x00000000 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x00000000 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x00000000 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x00000000 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x00000000 __sock_create +EXPORT_SYMBOL vmlinux 0x00000000 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x00000000 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x00000000 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x00000000 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0x00000000 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x00000000 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x00000000 __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x00000000 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0x00000000 __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x00000000 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x00000000 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x00000000 __udelay +EXPORT_SYMBOL vmlinux 0x00000000 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x00000000 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x00000000 __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 __vfs_read +EXPORT_SYMBOL vmlinux 0x00000000 __vfs_write +EXPORT_SYMBOL vmlinux 0x00000000 __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x00000000 __vmalloc +EXPORT_SYMBOL vmlinux 0x00000000 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x00000000 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x00000000 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x00000000 __wake_up +EXPORT_SYMBOL vmlinux 0x00000000 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x00000000 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x00000000 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x00000000 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x00000000 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x00000000 _bcd2bin +EXPORT_SYMBOL vmlinux 0x00000000 _bin2bcd +EXPORT_SYMBOL vmlinux 0x00000000 _cond_resched +EXPORT_SYMBOL vmlinux 0x00000000 _copy_from_user +EXPORT_SYMBOL vmlinux 0x00000000 _copy_to_user +EXPORT_SYMBOL vmlinux 0x00000000 _ctype +EXPORT_SYMBOL vmlinux 0x00000000 _dev_info +EXPORT_SYMBOL vmlinux 0x00000000 _kstrtol +EXPORT_SYMBOL vmlinux 0x00000000 _kstrtoul +EXPORT_SYMBOL vmlinux 0x00000000 _local_bh_enable +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x00000000 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x00000000 abort_creds +EXPORT_SYMBOL vmlinux 0x00000000 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x00000000 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x00000000 account_page_redirty +EXPORT_SYMBOL vmlinux 0x00000000 acl_by_type +EXPORT_SYMBOL vmlinux 0x00000000 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x00000000 acpi_attach_data +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bios_error +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x00000000 acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0x00000000 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x00000000 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x00000000 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0x00000000 acpi_check_region +EXPORT_SYMBOL vmlinux 0x00000000 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0x00000000 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x00000000 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0x00000000 acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x00000000 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0x00000000 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0x00000000 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x00000000 acpi_detach_data +EXPORT_SYMBOL vmlinux 0x00000000 acpi_device_hid +EXPORT_SYMBOL vmlinux 0x00000000 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x00000000 acpi_disable +EXPORT_SYMBOL vmlinux 0x00000000 acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x00000000 acpi_disable_event +EXPORT_SYMBOL vmlinux 0x00000000 acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x00000000 acpi_disabled +EXPORT_SYMBOL vmlinux 0x00000000 acpi_enable +EXPORT_SYMBOL vmlinux 0x00000000 acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x00000000 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x00000000 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x00000000 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x00000000 acpi_enter_sleep_state +EXPORT_SYMBOL vmlinux 0x00000000 acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x00000000 acpi_enter_sleep_state_s4bios +EXPORT_SYMBOL vmlinux 0x00000000 acpi_error +EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x00000000 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0x00000000 acpi_exception +EXPORT_SYMBOL vmlinux 0x00000000 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x00000000 acpi_extract_package +EXPORT_SYMBOL vmlinux 0x00000000 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x00000000 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x00000000 acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_data +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_data_full +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_devices +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_name +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_parent +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_table +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_type +EXPORT_SYMBOL vmlinux 0x00000000 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x00000000 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0x00000000 acpi_handle_printk +EXPORT_SYMBOL vmlinux 0x00000000 acpi_has_method +EXPORT_SYMBOL vmlinux 0x00000000 acpi_info +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_interface +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_method +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x00000000 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0x00000000 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x00000000 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x00000000 acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0x00000000 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x00000000 acpi_load_table +EXPORT_SYMBOL vmlinux 0x00000000 acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x00000000 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x00000000 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x00000000 acpi_os_execute +EXPORT_SYMBOL vmlinux 0x00000000 acpi_os_map_generic_address +EXPORT_SYMBOL vmlinux 0x00000000 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0x00000000 acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x00000000 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x00000000 acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0x00000000 acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x00000000 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0x00000000 acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x00000000 acpi_read +EXPORT_SYMBOL vmlinux 0x00000000 acpi_read_bit_register +EXPORT_SYMBOL vmlinux 0x00000000 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x00000000 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x00000000 acpi_reset +EXPORT_SYMBOL vmlinux 0x00000000 acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0x00000000 acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0x00000000 acpi_root_dir +EXPORT_SYMBOL vmlinux 0x00000000 acpi_run_osc +EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_current_resources +EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_firmware_waking_vector64 +EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_firmware_waking_vectors +EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x00000000 acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0x00000000 acpi_setup_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x00000000 acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x00000000 acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0x00000000 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x00000000 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x00000000 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0x00000000 acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x00000000 acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x00000000 acpi_warning +EXPORT_SYMBOL vmlinux 0x00000000 acpi_write +EXPORT_SYMBOL vmlinux 0x00000000 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x00000000 add_device_randomness +EXPORT_SYMBOL vmlinux 0x00000000 add_disk +EXPORT_SYMBOL vmlinux 0x00000000 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x00000000 add_taint +EXPORT_SYMBOL vmlinux 0x00000000 add_timer +EXPORT_SYMBOL vmlinux 0x00000000 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x00000000 add_wait_queue +EXPORT_SYMBOL vmlinux 0x00000000 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x00000000 address_space_init_once +EXPORT_SYMBOL vmlinux 0x00000000 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x00000000 adjust_resource +EXPORT_SYMBOL vmlinux 0x00000000 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x00000000 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x00000000 alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x00000000 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x00000000 alloc_disk +EXPORT_SYMBOL vmlinux 0x00000000 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x00000000 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x00000000 alloc_file +EXPORT_SYMBOL vmlinux 0x00000000 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x00000000 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x00000000 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x00000000 allocate_resource +EXPORT_SYMBOL vmlinux 0x00000000 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x00000000 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0x00000000 amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0x00000000 amd_northbridges +EXPORT_SYMBOL vmlinux 0x00000000 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x00000000 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x00000000 argv_free +EXPORT_SYMBOL vmlinux 0x00000000 argv_split +EXPORT_SYMBOL vmlinux 0x00000000 arp_create +EXPORT_SYMBOL vmlinux 0x00000000 arp_send +EXPORT_SYMBOL vmlinux 0x00000000 arp_tbl +EXPORT_SYMBOL vmlinux 0x00000000 arp_xmit +EXPORT_SYMBOL vmlinux 0x00000000 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x00000000 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0x00000000 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0x00000000 avenrun +EXPORT_SYMBOL vmlinux 0x00000000 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x00000000 bd_set_size +EXPORT_SYMBOL vmlinux 0x00000000 bdev_read_only +EXPORT_SYMBOL vmlinux 0x00000000 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x00000000 bdevname +EXPORT_SYMBOL vmlinux 0x00000000 bdget +EXPORT_SYMBOL vmlinux 0x00000000 bdget_disk +EXPORT_SYMBOL vmlinux 0x00000000 bdgrab +EXPORT_SYMBOL vmlinux 0x00000000 bdi_destroy +EXPORT_SYMBOL vmlinux 0x00000000 bdi_init +EXPORT_SYMBOL vmlinux 0x00000000 bdi_register +EXPORT_SYMBOL vmlinux 0x00000000 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x00000000 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x00000000 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x00000000 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x00000000 bdput +EXPORT_SYMBOL vmlinux 0x00000000 bh_submit_read +EXPORT_SYMBOL vmlinux 0x00000000 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x00000000 bin2hex +EXPORT_SYMBOL vmlinux 0x00000000 bio_add_page +EXPORT_SYMBOL vmlinux 0x00000000 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x00000000 bio_advance +EXPORT_SYMBOL vmlinux 0x00000000 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x00000000 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x00000000 bio_chain +EXPORT_SYMBOL vmlinux 0x00000000 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x00000000 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x00000000 bio_copy_data +EXPORT_SYMBOL vmlinux 0x00000000 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x00000000 bio_endio +EXPORT_SYMBOL vmlinux 0x00000000 bio_init +EXPORT_SYMBOL vmlinux 0x00000000 bio_map_kern +EXPORT_SYMBOL vmlinux 0x00000000 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x00000000 bio_put +EXPORT_SYMBOL vmlinux 0x00000000 bio_reset +EXPORT_SYMBOL vmlinux 0x00000000 bio_split +EXPORT_SYMBOL vmlinux 0x00000000 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x00000000 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x00000000 bioset_create +EXPORT_SYMBOL vmlinux 0x00000000 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x00000000 bioset_free +EXPORT_SYMBOL vmlinux 0x00000000 bit_wait +EXPORT_SYMBOL vmlinux 0x00000000 bit_wait_io +EXPORT_SYMBOL vmlinux 0x00000000 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_bitremap +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_clear +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_fold +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_onto +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_remap +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_set +EXPORT_SYMBOL vmlinux 0x00000000 bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0x00000000 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x00000000 blk_check_plugged +EXPORT_SYMBOL vmlinux 0x00000000 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_complete_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x00000000 blk_end_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x00000000 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x00000000 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x00000000 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_finish_plug +EXPORT_SYMBOL vmlinux 0x00000000 blk_finish_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_free_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_get_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_get_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_init_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x00000000 blk_init_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x00000000 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x00000000 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0x00000000 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x00000000 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x00000000 blk_make_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x00000000 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x00000000 blk_peek_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_put_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_put_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_split +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x00000000 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x00000000 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x00000000 blk_register_region +EXPORT_SYMBOL vmlinux 0x00000000 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_init +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x00000000 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x00000000 blk_run_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x00000000 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x00000000 blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x00000000 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x00000000 blk_start_plug +EXPORT_SYMBOL vmlinux 0x00000000 blk_start_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x00000000 blk_start_request +EXPORT_SYMBOL vmlinux 0x00000000 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x00000000 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x00000000 blk_verify_command +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_get +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_put +EXPORT_SYMBOL vmlinux 0x00000000 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x00000000 block_commit_write +EXPORT_SYMBOL vmlinux 0x00000000 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x00000000 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x00000000 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x00000000 block_read_full_page +EXPORT_SYMBOL vmlinux 0x00000000 block_truncate_page +EXPORT_SYMBOL vmlinux 0x00000000 block_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 block_write_end +EXPORT_SYMBOL vmlinux 0x00000000 block_write_full_page +EXPORT_SYMBOL vmlinux 0x00000000 bmap +EXPORT_SYMBOL vmlinux 0x00000000 boot_cpu_data +EXPORT_SYMBOL vmlinux 0x00000000 boot_option_idle_override +EXPORT_SYMBOL vmlinux 0x00000000 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x00000000 brioctl_set +EXPORT_SYMBOL vmlinux 0x00000000 bsearch +EXPORT_SYMBOL vmlinux 0x00000000 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x00000000 build_skb +EXPORT_SYMBOL vmlinux 0x00000000 cad_pid +EXPORT_SYMBOL vmlinux 0x00000000 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x00000000 call_usermodehelper +EXPORT_SYMBOL vmlinux 0x00000000 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x00000000 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x00000000 can_do_mlock +EXPORT_SYMBOL vmlinux 0x00000000 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x00000000 cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x00000000 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x00000000 cap_mmap_addr +EXPORT_SYMBOL vmlinux 0x00000000 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x00000000 capable +EXPORT_SYMBOL vmlinux 0x00000000 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x00000000 cdev_add +EXPORT_SYMBOL vmlinux 0x00000000 cdev_alloc +EXPORT_SYMBOL vmlinux 0x00000000 cdev_del +EXPORT_SYMBOL vmlinux 0x00000000 cdev_init +EXPORT_SYMBOL vmlinux 0x00000000 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x00000000 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x00000000 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x00000000 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x00000000 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x00000000 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x00000000 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x00000000 cdrom_open +EXPORT_SYMBOL vmlinux 0x00000000 cdrom_release +EXPORT_SYMBOL vmlinux 0x00000000 check_disk_change +EXPORT_SYMBOL vmlinux 0x00000000 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x00000000 clear_inode +EXPORT_SYMBOL vmlinux 0x00000000 clear_nlink +EXPORT_SYMBOL vmlinux 0x00000000 clear_page +EXPORT_SYMBOL vmlinux 0x00000000 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x00000000 clear_user +EXPORT_SYMBOL vmlinux 0x00000000 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x00000000 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x00000000 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x00000000 cmdline_parts_find +EXPORT_SYMBOL vmlinux 0x00000000 cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x00000000 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x00000000 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x00000000 commit_creds +EXPORT_SYMBOL vmlinux 0x00000000 complete +EXPORT_SYMBOL vmlinux 0x00000000 complete_all +EXPORT_SYMBOL vmlinux 0x00000000 complete_and_exit +EXPORT_SYMBOL vmlinux 0x00000000 complete_request_key +EXPORT_SYMBOL vmlinux 0x00000000 completion_done +EXPORT_SYMBOL vmlinux 0x00000000 component_match_add +EXPORT_SYMBOL vmlinux 0x00000000 congestion_wait +EXPORT_SYMBOL vmlinux 0x00000000 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0x00000000 console_lock +EXPORT_SYMBOL vmlinux 0x00000000 console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x00000000 console_start +EXPORT_SYMBOL vmlinux 0x00000000 console_stop +EXPORT_SYMBOL vmlinux 0x00000000 console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x00000000 console_trylock +EXPORT_SYMBOL vmlinux 0x00000000 console_unlock +EXPORT_SYMBOL vmlinux 0x00000000 consume_skb +EXPORT_SYMBOL vmlinux 0x00000000 cont_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 contig_page_data +EXPORT_SYMBOL vmlinux 0x00000000 convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x00000000 copy_from_iter +EXPORT_SYMBOL vmlinux 0x00000000 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x00000000 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x00000000 copy_in_user +EXPORT_SYMBOL vmlinux 0x00000000 copy_page +EXPORT_SYMBOL vmlinux 0x00000000 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x00000000 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x00000000 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x00000000 copy_to_iter +EXPORT_SYMBOL vmlinux 0x00000000 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x00000000 copy_user_generic_string +EXPORT_SYMBOL vmlinux 0x00000000 copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x00000000 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x00000000 cpu_all_bits +EXPORT_SYMBOL vmlinux 0x00000000 cpu_core_map +EXPORT_SYMBOL vmlinux 0x00000000 cpu_dr7 +EXPORT_SYMBOL vmlinux 0x00000000 cpu_info +EXPORT_SYMBOL vmlinux 0x00000000 cpu_khz +EXPORT_SYMBOL vmlinux 0x00000000 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x00000000 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x00000000 cpu_number +EXPORT_SYMBOL vmlinux 0x00000000 cpu_online_mask +EXPORT_SYMBOL vmlinux 0x00000000 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x00000000 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x00000000 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x00000000 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x00000000 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x00000000 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x00000000 cpu_tss +EXPORT_SYMBOL vmlinux 0x00000000 cpumask_local_spread +EXPORT_SYMBOL vmlinux 0x00000000 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x00000000 crc16 +EXPORT_SYMBOL vmlinux 0x00000000 crc16_table +EXPORT_SYMBOL vmlinux 0x00000000 crc32_be +EXPORT_SYMBOL vmlinux 0x00000000 crc32_le +EXPORT_SYMBOL vmlinux 0x00000000 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x00000000 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x00000000 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x00000000 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x00000000 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x00000000 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x00000000 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x00000000 csum_partial +EXPORT_SYMBOL vmlinux 0x00000000 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x00000000 csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x00000000 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x00000000 current_fs_time +EXPORT_SYMBOL vmlinux 0x00000000 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x00000000 current_task +EXPORT_SYMBOL vmlinux 0x00000000 current_umask +EXPORT_SYMBOL vmlinux 0x00000000 d_add_ci +EXPORT_SYMBOL vmlinux 0x00000000 d_alloc +EXPORT_SYMBOL vmlinux 0x00000000 d_alloc_name +EXPORT_SYMBOL vmlinux 0x00000000 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x00000000 d_delete +EXPORT_SYMBOL vmlinux 0x00000000 d_drop +EXPORT_SYMBOL vmlinux 0x00000000 d_find_alias +EXPORT_SYMBOL vmlinux 0x00000000 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x00000000 d_genocide +EXPORT_SYMBOL vmlinux 0x00000000 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x00000000 d_instantiate +EXPORT_SYMBOL vmlinux 0x00000000 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x00000000 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x00000000 d_invalidate +EXPORT_SYMBOL vmlinux 0x00000000 d_lookup +EXPORT_SYMBOL vmlinux 0x00000000 d_make_root +EXPORT_SYMBOL vmlinux 0x00000000 d_move +EXPORT_SYMBOL vmlinux 0x00000000 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x00000000 d_obtain_root +EXPORT_SYMBOL vmlinux 0x00000000 d_path +EXPORT_SYMBOL vmlinux 0x00000000 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x00000000 d_rehash +EXPORT_SYMBOL vmlinux 0x00000000 d_set_d_op +EXPORT_SYMBOL vmlinux 0x00000000 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x00000000 d_splice_alias +EXPORT_SYMBOL vmlinux 0x00000000 d_tmpfile +EXPORT_SYMBOL vmlinux 0x00000000 d_walk +EXPORT_SYMBOL vmlinux 0x00000000 datagram_poll +EXPORT_SYMBOL vmlinux 0x00000000 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x00000000 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x00000000 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x00000000 dcache_readdir +EXPORT_SYMBOL vmlinux 0x00000000 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x00000000 deactivate_super +EXPORT_SYMBOL vmlinux 0x00000000 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x00000000 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x00000000 default_llseek +EXPORT_SYMBOL vmlinux 0x00000000 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x00000000 default_wake_function +EXPORT_SYMBOL vmlinux 0x00000000 del_gendisk +EXPORT_SYMBOL vmlinux 0x00000000 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x00000000 del_timer +EXPORT_SYMBOL vmlinux 0x00000000 del_timer_sync +EXPORT_SYMBOL vmlinux 0x00000000 delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x00000000 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x00000000 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x00000000 dentry_open +EXPORT_SYMBOL vmlinux 0x00000000 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x00000000 dentry_unhash +EXPORT_SYMBOL vmlinux 0x00000000 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x00000000 dev_activate +EXPORT_SYMBOL vmlinux 0x00000000 dev_add_offload +EXPORT_SYMBOL vmlinux 0x00000000 dev_add_pack +EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_add +EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_del +EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x00000000 dev_addr_init +EXPORT_SYMBOL vmlinux 0x00000000 dev_alert +EXPORT_SYMBOL vmlinux 0x00000000 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x00000000 dev_base_lock +EXPORT_SYMBOL vmlinux 0x00000000 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x00000000 dev_change_flags +EXPORT_SYMBOL vmlinux 0x00000000 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x00000000 dev_close +EXPORT_SYMBOL vmlinux 0x00000000 dev_close_many +EXPORT_SYMBOL vmlinux 0x00000000 dev_crit +EXPORT_SYMBOL vmlinux 0x00000000 dev_deactivate +EXPORT_SYMBOL vmlinux 0x00000000 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x00000000 dev_driver_string +EXPORT_SYMBOL vmlinux 0x00000000 dev_emerg +EXPORT_SYMBOL vmlinux 0x00000000 dev_err +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_flags +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x00000000 dev_get_stats +EXPORT_SYMBOL vmlinux 0x00000000 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x00000000 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x00000000 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x00000000 dev_load +EXPORT_SYMBOL vmlinux 0x00000000 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_add +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_del +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_init +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x00000000 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x00000000 dev_notice +EXPORT_SYMBOL vmlinux 0x00000000 dev_open +EXPORT_SYMBOL vmlinux 0x00000000 dev_printk +EXPORT_SYMBOL vmlinux 0x00000000 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x00000000 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x00000000 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x00000000 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x00000000 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_group +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x00000000 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x00000000 dev_trans_start +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_add +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_del +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_init +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x00000000 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x00000000 dev_valid_name +EXPORT_SYMBOL vmlinux 0x00000000 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x00000000 dev_warn +EXPORT_SYMBOL vmlinux 0x00000000 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x00000000 devm_free_irq +EXPORT_SYMBOL vmlinux 0x00000000 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x00000000 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x00000000 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x00000000 devm_ioremap +EXPORT_SYMBOL vmlinux 0x00000000 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x00000000 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x00000000 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x00000000 devm_iounmap +EXPORT_SYMBOL vmlinux 0x00000000 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x00000000 devm_memremap +EXPORT_SYMBOL vmlinux 0x00000000 devm_memunmap +EXPORT_SYMBOL vmlinux 0x00000000 devm_release_resource +EXPORT_SYMBOL vmlinux 0x00000000 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x00000000 devm_request_resource +EXPORT_SYMBOL vmlinux 0x00000000 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x00000000 dget_parent +EXPORT_SYMBOL vmlinux 0x00000000 disable_irq +EXPORT_SYMBOL vmlinux 0x00000000 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x00000000 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x00000000 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0x00000000 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x00000000 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x00000000 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x00000000 dma_ops +EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_create +EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0x00000000 dma_pool_free +EXPORT_SYMBOL vmlinux 0x00000000 dma_supported +EXPORT_SYMBOL vmlinux 0x00000000 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x00000000 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x00000000 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x00000000 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x00000000 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x00000000 dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x00000000 do_SAK +EXPORT_SYMBOL vmlinux 0x00000000 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x00000000 do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x00000000 do_splice_direct +EXPORT_SYMBOL vmlinux 0x00000000 do_splice_from +EXPORT_SYMBOL vmlinux 0x00000000 do_splice_to +EXPORT_SYMBOL vmlinux 0x00000000 do_truncate +EXPORT_SYMBOL vmlinux 0x00000000 done_path_create +EXPORT_SYMBOL vmlinux 0x00000000 down +EXPORT_SYMBOL vmlinux 0x00000000 down_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 down_killable +EXPORT_SYMBOL vmlinux 0x00000000 down_read +EXPORT_SYMBOL vmlinux 0x00000000 down_read_trylock +EXPORT_SYMBOL vmlinux 0x00000000 down_timeout +EXPORT_SYMBOL vmlinux 0x00000000 down_trylock +EXPORT_SYMBOL vmlinux 0x00000000 down_write +EXPORT_SYMBOL vmlinux 0x00000000 down_write_trylock +EXPORT_SYMBOL vmlinux 0x00000000 downgrade_write +EXPORT_SYMBOL vmlinux 0x00000000 dput +EXPORT_SYMBOL vmlinux 0x00000000 dq_data_lock +EXPORT_SYMBOL vmlinux 0x00000000 dqget +EXPORT_SYMBOL vmlinux 0x00000000 dql_completed +EXPORT_SYMBOL vmlinux 0x00000000 dql_init +EXPORT_SYMBOL vmlinux 0x00000000 dql_reset +EXPORT_SYMBOL vmlinux 0x00000000 dqput +EXPORT_SYMBOL vmlinux 0x00000000 dqstats +EXPORT_SYMBOL vmlinux 0x00000000 dquot_acquire +EXPORT_SYMBOL vmlinux 0x00000000 dquot_alloc +EXPORT_SYMBOL vmlinux 0x00000000 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x00000000 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x00000000 dquot_commit +EXPORT_SYMBOL vmlinux 0x00000000 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x00000000 dquot_destroy +EXPORT_SYMBOL vmlinux 0x00000000 dquot_disable +EXPORT_SYMBOL vmlinux 0x00000000 dquot_drop +EXPORT_SYMBOL vmlinux 0x00000000 dquot_enable +EXPORT_SYMBOL vmlinux 0x00000000 dquot_file_open +EXPORT_SYMBOL vmlinux 0x00000000 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x00000000 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x00000000 dquot_get_state +EXPORT_SYMBOL vmlinux 0x00000000 dquot_initialize +EXPORT_SYMBOL vmlinux 0x00000000 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x00000000 dquot_operations +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x00000000 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x00000000 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x00000000 dquot_release +EXPORT_SYMBOL vmlinux 0x00000000 dquot_resume +EXPORT_SYMBOL vmlinux 0x00000000 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x00000000 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x00000000 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x00000000 dquot_transfer +EXPORT_SYMBOL vmlinux 0x00000000 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x00000000 drop_nlink +EXPORT_SYMBOL vmlinux 0x00000000 drop_super +EXPORT_SYMBOL vmlinux 0x00000000 dst_alloc +EXPORT_SYMBOL vmlinux 0x00000000 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x00000000 dst_destroy +EXPORT_SYMBOL vmlinux 0x00000000 dst_discard_out +EXPORT_SYMBOL vmlinux 0x00000000 dst_init +EXPORT_SYMBOL vmlinux 0x00000000 dst_release +EXPORT_SYMBOL vmlinux 0x00000000 dump_page +EXPORT_SYMBOL vmlinux 0x00000000 dump_stack +EXPORT_SYMBOL vmlinux 0x00000000 dump_trace +EXPORT_SYMBOL vmlinux 0x00000000 dup_iter +EXPORT_SYMBOL vmlinux 0x00000000 ec_get_handle +EXPORT_SYMBOL vmlinux 0x00000000 ec_read +EXPORT_SYMBOL vmlinux 0x00000000 ec_transaction +EXPORT_SYMBOL vmlinux 0x00000000 ec_write +EXPORT_SYMBOL vmlinux 0x00000000 efi +EXPORT_SYMBOL vmlinux 0x00000000 elevator_alloc +EXPORT_SYMBOL vmlinux 0x00000000 elevator_change +EXPORT_SYMBOL vmlinux 0x00000000 elevator_exit +EXPORT_SYMBOL vmlinux 0x00000000 elevator_init +EXPORT_SYMBOL vmlinux 0x00000000 elv_add_request +EXPORT_SYMBOL vmlinux 0x00000000 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x00000000 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_add +EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_del +EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_find +EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x00000000 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x00000000 elv_register_queue +EXPORT_SYMBOL vmlinux 0x00000000 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x00000000 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x00000000 empty_aops +EXPORT_SYMBOL vmlinux 0x00000000 empty_zero_page +EXPORT_SYMBOL vmlinux 0x00000000 enable_irq +EXPORT_SYMBOL vmlinux 0x00000000 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x00000000 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x00000000 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x00000000 end_page_writeback +EXPORT_SYMBOL vmlinux 0x00000000 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x00000000 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x00000000 eth_get_headlen +EXPORT_SYMBOL vmlinux 0x00000000 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x00000000 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x00000000 eth_header +EXPORT_SYMBOL vmlinux 0x00000000 eth_header_cache +EXPORT_SYMBOL vmlinux 0x00000000 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x00000000 eth_header_parse +EXPORT_SYMBOL vmlinux 0x00000000 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x00000000 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x00000000 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x00000000 eth_type_trans +EXPORT_SYMBOL vmlinux 0x00000000 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x00000000 ether_setup +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x00000000 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x00000000 f_setown +EXPORT_SYMBOL vmlinux 0x00000000 fasync_helper +EXPORT_SYMBOL vmlinux 0x00000000 fb_register_client +EXPORT_SYMBOL vmlinux 0x00000000 fb_unregister_client +EXPORT_SYMBOL vmlinux 0x00000000 fd_install +EXPORT_SYMBOL vmlinux 0x00000000 fget +EXPORT_SYMBOL vmlinux 0x00000000 fget_raw +EXPORT_SYMBOL vmlinux 0x00000000 fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x00000000 fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0x00000000 file_ns_capable +EXPORT_SYMBOL vmlinux 0x00000000 file_open_root +EXPORT_SYMBOL vmlinux 0x00000000 file_path +EXPORT_SYMBOL vmlinux 0x00000000 file_remove_privs +EXPORT_SYMBOL vmlinux 0x00000000 file_update_time +EXPORT_SYMBOL vmlinux 0x00000000 filemap_fault +EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x00000000 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x00000000 filemap_flush +EXPORT_SYMBOL vmlinux 0x00000000 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x00000000 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x00000000 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x00000000 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x00000000 filp_close +EXPORT_SYMBOL vmlinux 0x00000000 filp_open +EXPORT_SYMBOL vmlinux 0x00000000 find_first_bit +EXPORT_SYMBOL vmlinux 0x00000000 find_first_zero_bit +EXPORT_SYMBOL vmlinux 0x00000000 find_get_entry +EXPORT_SYMBOL vmlinux 0x00000000 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x00000000 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x00000000 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x00000000 find_last_bit +EXPORT_SYMBOL vmlinux 0x00000000 find_lock_entry +EXPORT_SYMBOL vmlinux 0x00000000 find_next_bit +EXPORT_SYMBOL vmlinux 0x00000000 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x00000000 find_vma +EXPORT_SYMBOL vmlinux 0x00000000 finish_no_open +EXPORT_SYMBOL vmlinux 0x00000000 finish_open +EXPORT_SYMBOL vmlinux 0x00000000 finish_wait +EXPORT_SYMBOL vmlinux 0x00000000 first_ec +EXPORT_SYMBOL vmlinux 0x00000000 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_clear +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_free +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_get +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_put +EXPORT_SYMBOL vmlinux 0x00000000 flex_array_shrink +EXPORT_SYMBOL vmlinux 0x00000000 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x00000000 flow_cache_init +EXPORT_SYMBOL vmlinux 0x00000000 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x00000000 flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0x00000000 flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x00000000 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x00000000 flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x00000000 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x00000000 flush_old_exec +EXPORT_SYMBOL vmlinux 0x00000000 flush_signals +EXPORT_SYMBOL vmlinux 0x00000000 flush_workqueue +EXPORT_SYMBOL vmlinux 0x00000000 follow_down +EXPORT_SYMBOL vmlinux 0x00000000 follow_down_one +EXPORT_SYMBOL vmlinux 0x00000000 follow_pfn +EXPORT_SYMBOL vmlinux 0x00000000 follow_up +EXPORT_SYMBOL vmlinux 0x00000000 force_sig +EXPORT_SYMBOL vmlinux 0x00000000 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x00000000 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x00000000 fput +EXPORT_SYMBOL vmlinux 0x00000000 free_anon_bdev +EXPORT_SYMBOL vmlinux 0x00000000 free_buffer_head +EXPORT_SYMBOL vmlinux 0x00000000 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x00000000 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x00000000 free_irq +EXPORT_SYMBOL vmlinux 0x00000000 free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x00000000 free_netdev +EXPORT_SYMBOL vmlinux 0x00000000 free_page_put_link +EXPORT_SYMBOL vmlinux 0x00000000 free_pages +EXPORT_SYMBOL vmlinux 0x00000000 free_pages_exact +EXPORT_SYMBOL vmlinux 0x00000000 free_reserved_area +EXPORT_SYMBOL vmlinux 0x00000000 free_task +EXPORT_SYMBOL vmlinux 0x00000000 freeze_bdev +EXPORT_SYMBOL vmlinux 0x00000000 freeze_super +EXPORT_SYMBOL vmlinux 0x00000000 from_kqid +EXPORT_SYMBOL vmlinux 0x00000000 from_kqid_munged +EXPORT_SYMBOL vmlinux 0x00000000 fs_bio_set +EXPORT_SYMBOL vmlinux 0x00000000 fs_overflowgid +EXPORT_SYMBOL vmlinux 0x00000000 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x00000000 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x00000000 fsync_bdev +EXPORT_SYMBOL vmlinux 0x00000000 full_name_hash +EXPORT_SYMBOL vmlinux 0x00000000 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x00000000 gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x00000000 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x00000000 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x00000000 generate_random_uuid +EXPORT_SYMBOL vmlinux 0x00000000 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x00000000 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x00000000 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x00000000 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x00000000 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x00000000 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x00000000 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_open +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x00000000 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x00000000 generic_fillattr +EXPORT_SYMBOL vmlinux 0x00000000 generic_getxattr +EXPORT_SYMBOL vmlinux 0x00000000 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x00000000 generic_listxattr +EXPORT_SYMBOL vmlinux 0x00000000 generic_make_request +EXPORT_SYMBOL vmlinux 0x00000000 generic_perform_write +EXPORT_SYMBOL vmlinux 0x00000000 generic_permission +EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x00000000 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x00000000 generic_read_dir +EXPORT_SYMBOL vmlinux 0x00000000 generic_readlink +EXPORT_SYMBOL vmlinux 0x00000000 generic_removexattr +EXPORT_SYMBOL vmlinux 0x00000000 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x00000000 generic_setlease +EXPORT_SYMBOL vmlinux 0x00000000 generic_setxattr +EXPORT_SYMBOL vmlinux 0x00000000 generic_show_options +EXPORT_SYMBOL vmlinux 0x00000000 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x00000000 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x00000000 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x00000000 generic_update_time +EXPORT_SYMBOL vmlinux 0x00000000 generic_write_checks +EXPORT_SYMBOL vmlinux 0x00000000 generic_write_end +EXPORT_SYMBOL vmlinux 0x00000000 generic_writepages +EXPORT_SYMBOL vmlinux 0x00000000 genl_lock +EXPORT_SYMBOL vmlinux 0x00000000 genl_notify +EXPORT_SYMBOL vmlinux 0x00000000 genl_unlock +EXPORT_SYMBOL vmlinux 0x00000000 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x00000000 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x00000000 genlmsg_put +EXPORT_SYMBOL vmlinux 0x00000000 get_acl +EXPORT_SYMBOL vmlinux 0x00000000 get_anon_bdev +EXPORT_SYMBOL vmlinux 0x00000000 get_cached_acl +EXPORT_SYMBOL vmlinux 0x00000000 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x00000000 get_disk +EXPORT_SYMBOL vmlinux 0x00000000 get_empty_filp +EXPORT_SYMBOL vmlinux 0x00000000 get_fs_type +EXPORT_SYMBOL vmlinux 0x00000000 get_gendisk +EXPORT_SYMBOL vmlinux 0x00000000 get_ibs_caps +EXPORT_SYMBOL vmlinux 0x00000000 get_io_context +EXPORT_SYMBOL vmlinux 0x00000000 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x00000000 get_next_ino +EXPORT_SYMBOL vmlinux 0x00000000 get_option +EXPORT_SYMBOL vmlinux 0x00000000 get_options +EXPORT_SYMBOL vmlinux 0x00000000 get_random_bytes +EXPORT_SYMBOL vmlinux 0x00000000 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x00000000 get_random_int +EXPORT_SYMBOL vmlinux 0x00000000 get_random_long +EXPORT_SYMBOL vmlinux 0x00000000 get_seconds +EXPORT_SYMBOL vmlinux 0x00000000 get_super +EXPORT_SYMBOL vmlinux 0x00000000 get_super_thawed +EXPORT_SYMBOL vmlinux 0x00000000 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x00000000 get_task_io_context +EXPORT_SYMBOL vmlinux 0x00000000 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x00000000 get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0x00000000 get_user_pages +EXPORT_SYMBOL vmlinux 0x00000000 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x00000000 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x00000000 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x00000000 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x00000000 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x00000000 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x00000000 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x00000000 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x00000000 groups_alloc +EXPORT_SYMBOL vmlinux 0x00000000 groups_free +EXPORT_SYMBOL vmlinux 0x00000000 half_md4_transform +EXPORT_SYMBOL vmlinux 0x00000000 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x00000000 have_submounts +EXPORT_SYMBOL vmlinux 0x00000000 hex2bin +EXPORT_SYMBOL vmlinux 0x00000000 hex_asc +EXPORT_SYMBOL vmlinux 0x00000000 hex_asc_upper +EXPORT_SYMBOL vmlinux 0x00000000 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x00000000 hex_to_bin +EXPORT_SYMBOL vmlinux 0x00000000 high_memory +EXPORT_SYMBOL vmlinux 0x00000000 i8253_lock +EXPORT_SYMBOL vmlinux 0x00000000 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x00000000 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x00000000 icmp_send +EXPORT_SYMBOL vmlinux 0x00000000 icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x00000000 icmpv6_send +EXPORT_SYMBOL vmlinux 0x00000000 ida_destroy +EXPORT_SYMBOL vmlinux 0x00000000 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x00000000 ida_init +EXPORT_SYMBOL vmlinux 0x00000000 ida_pre_get +EXPORT_SYMBOL vmlinux 0x00000000 ida_remove +EXPORT_SYMBOL vmlinux 0x00000000 ida_simple_get +EXPORT_SYMBOL vmlinux 0x00000000 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x00000000 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x00000000 idr_destroy +EXPORT_SYMBOL vmlinux 0x00000000 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x00000000 idr_for_each +EXPORT_SYMBOL vmlinux 0x00000000 idr_get_next +EXPORT_SYMBOL vmlinux 0x00000000 idr_init +EXPORT_SYMBOL vmlinux 0x00000000 idr_is_empty +EXPORT_SYMBOL vmlinux 0x00000000 idr_preload +EXPORT_SYMBOL vmlinux 0x00000000 idr_remove +EXPORT_SYMBOL vmlinux 0x00000000 idr_replace +EXPORT_SYMBOL vmlinux 0x00000000 iget5_locked +EXPORT_SYMBOL vmlinux 0x00000000 iget_failed +EXPORT_SYMBOL vmlinux 0x00000000 iget_locked +EXPORT_SYMBOL vmlinux 0x00000000 igrab +EXPORT_SYMBOL vmlinux 0x00000000 ihold +EXPORT_SYMBOL vmlinux 0x00000000 ilookup +EXPORT_SYMBOL vmlinux 0x00000000 ilookup5 +EXPORT_SYMBOL vmlinux 0x00000000 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x00000000 import_iovec +EXPORT_SYMBOL vmlinux 0x00000000 in4_pton +EXPORT_SYMBOL vmlinux 0x00000000 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x00000000 in6_pton +EXPORT_SYMBOL vmlinux 0x00000000 in6addr_any +EXPORT_SYMBOL vmlinux 0x00000000 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0x00000000 in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x00000000 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0x00000000 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0x00000000 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x00000000 in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0x00000000 in_aton +EXPORT_SYMBOL vmlinux 0x00000000 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x00000000 in_egroup_p +EXPORT_SYMBOL vmlinux 0x00000000 in_group_p +EXPORT_SYMBOL vmlinux 0x00000000 in_lock_functions +EXPORT_SYMBOL vmlinux 0x00000000 inc_nlink +EXPORT_SYMBOL vmlinux 0x00000000 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x00000000 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x00000000 inet6_bind +EXPORT_SYMBOL vmlinux 0x00000000 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x00000000 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x00000000 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x00000000 inet6_getname +EXPORT_SYMBOL vmlinux 0x00000000 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 inet6_offloads +EXPORT_SYMBOL vmlinux 0x00000000 inet6_protos +EXPORT_SYMBOL vmlinux 0x00000000 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x00000000 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x00000000 inet6_release +EXPORT_SYMBOL vmlinux 0x00000000 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x00000000 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x00000000 inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x00000000 inet_accept +EXPORT_SYMBOL vmlinux 0x00000000 inet_add_offload +EXPORT_SYMBOL vmlinux 0x00000000 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x00000000 inet_addr_type +EXPORT_SYMBOL vmlinux 0x00000000 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x00000000 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x00000000 inet_bind +EXPORT_SYMBOL vmlinux 0x00000000 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x00000000 inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x00000000 inet_del_offload +EXPORT_SYMBOL vmlinux 0x00000000 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x00000000 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x00000000 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x00000000 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_find +EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x00000000 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x00000000 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x00000000 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x00000000 inet_frags_init +EXPORT_SYMBOL vmlinux 0x00000000 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x00000000 inet_getname +EXPORT_SYMBOL vmlinux 0x00000000 inet_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 inet_listen +EXPORT_SYMBOL vmlinux 0x00000000 inet_offloads +EXPORT_SYMBOL vmlinux 0x00000000 inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0x00000000 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x00000000 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x00000000 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x00000000 inet_put_port +EXPORT_SYMBOL vmlinux 0x00000000 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x00000000 inet_release +EXPORT_SYMBOL vmlinux 0x00000000 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x00000000 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x00000000 inet_select_addr +EXPORT_SYMBOL vmlinux 0x00000000 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 inet_sendpage +EXPORT_SYMBOL vmlinux 0x00000000 inet_shutdown +EXPORT_SYMBOL vmlinux 0x00000000 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x00000000 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x00000000 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x00000000 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x00000000 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x00000000 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x00000000 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x00000000 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x00000000 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x00000000 init_buffer +EXPORT_SYMBOL vmlinux 0x00000000 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x00000000 init_net +EXPORT_SYMBOL vmlinux 0x00000000 init_special_inode +EXPORT_SYMBOL vmlinux 0x00000000 init_task +EXPORT_SYMBOL vmlinux 0x00000000 init_timer_key +EXPORT_SYMBOL vmlinux 0x00000000 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x00000000 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x00000000 inode_change_ok +EXPORT_SYMBOL vmlinux 0x00000000 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x00000000 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x00000000 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x00000000 inode_init_always +EXPORT_SYMBOL vmlinux 0x00000000 inode_init_once +EXPORT_SYMBOL vmlinux 0x00000000 inode_init_owner +EXPORT_SYMBOL vmlinux 0x00000000 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x00000000 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x00000000 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x00000000 inode_permission +EXPORT_SYMBOL vmlinux 0x00000000 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x00000000 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x00000000 inode_set_flags +EXPORT_SYMBOL vmlinux 0x00000000 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x00000000 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x00000000 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x00000000 input_allocate_device +EXPORT_SYMBOL vmlinux 0x00000000 input_close_device +EXPORT_SYMBOL vmlinux 0x00000000 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x00000000 input_event +EXPORT_SYMBOL vmlinux 0x00000000 input_flush_device +EXPORT_SYMBOL vmlinux 0x00000000 input_free_device +EXPORT_SYMBOL vmlinux 0x00000000 input_free_minor +EXPORT_SYMBOL vmlinux 0x00000000 input_get_keycode +EXPORT_SYMBOL vmlinux 0x00000000 input_get_new_minor +EXPORT_SYMBOL vmlinux 0x00000000 input_grab_device +EXPORT_SYMBOL vmlinux 0x00000000 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x00000000 input_inject_event +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x00000000 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x00000000 input_open_device +EXPORT_SYMBOL vmlinux 0x00000000 input_register_device +EXPORT_SYMBOL vmlinux 0x00000000 input_register_handle +EXPORT_SYMBOL vmlinux 0x00000000 input_register_handler +EXPORT_SYMBOL vmlinux 0x00000000 input_release_device +EXPORT_SYMBOL vmlinux 0x00000000 input_reset_device +EXPORT_SYMBOL vmlinux 0x00000000 input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x00000000 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x00000000 input_set_capability +EXPORT_SYMBOL vmlinux 0x00000000 input_set_keycode +EXPORT_SYMBOL vmlinux 0x00000000 input_unregister_device +EXPORT_SYMBOL vmlinux 0x00000000 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x00000000 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x00000000 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x00000000 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x00000000 install_exec_creds +EXPORT_SYMBOL vmlinux 0x00000000 int_sqrt +EXPORT_SYMBOL vmlinux 0x00000000 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x00000000 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x00000000 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x00000000 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x00000000 invalidate_partition +EXPORT_SYMBOL vmlinux 0x00000000 io_schedule_timeout +EXPORT_SYMBOL vmlinux 0x00000000 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x00000000 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x00000000 iomem_resource +EXPORT_SYMBOL vmlinux 0x00000000 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x00000000 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x00000000 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x00000000 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x00000000 ioport_map +EXPORT_SYMBOL vmlinux 0x00000000 ioport_resource +EXPORT_SYMBOL vmlinux 0x00000000 ioport_unmap +EXPORT_SYMBOL vmlinux 0x00000000 ioread16 +EXPORT_SYMBOL vmlinux 0x00000000 ioread16_rep +EXPORT_SYMBOL vmlinux 0x00000000 ioread16be +EXPORT_SYMBOL vmlinux 0x00000000 ioread32 +EXPORT_SYMBOL vmlinux 0x00000000 ioread32_rep +EXPORT_SYMBOL vmlinux 0x00000000 ioread32be +EXPORT_SYMBOL vmlinux 0x00000000 ioread8 +EXPORT_SYMBOL vmlinux 0x00000000 ioread8_rep +EXPORT_SYMBOL vmlinux 0x00000000 ioremap_cache +EXPORT_SYMBOL vmlinux 0x00000000 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x00000000 ioremap_prot +EXPORT_SYMBOL vmlinux 0x00000000 ioremap_wc +EXPORT_SYMBOL vmlinux 0x00000000 ioremap_wt +EXPORT_SYMBOL vmlinux 0x00000000 iounmap +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_init +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x00000000 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x00000000 iov_shorten +EXPORT_SYMBOL vmlinux 0x00000000 iowrite16 +EXPORT_SYMBOL vmlinux 0x00000000 iowrite16_rep +EXPORT_SYMBOL vmlinux 0x00000000 iowrite16be +EXPORT_SYMBOL vmlinux 0x00000000 iowrite32 +EXPORT_SYMBOL vmlinux 0x00000000 iowrite32_rep +EXPORT_SYMBOL vmlinux 0x00000000 iowrite32be +EXPORT_SYMBOL vmlinux 0x00000000 iowrite8 +EXPORT_SYMBOL vmlinux 0x00000000 iowrite8_rep +EXPORT_SYMBOL vmlinux 0x00000000 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x00000000 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x00000000 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x00000000 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x00000000 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x00000000 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x00000000 ip6_xmit +EXPORT_SYMBOL vmlinux 0x00000000 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x00000000 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x00000000 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x00000000 ip_defrag +EXPORT_SYMBOL vmlinux 0x00000000 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x00000000 ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0x00000000 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x00000000 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x00000000 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x00000000 ip_options_compile +EXPORT_SYMBOL vmlinux 0x00000000 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x00000000 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x00000000 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x00000000 ip_send_check +EXPORT_SYMBOL vmlinux 0x00000000 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 ip_tos2prio +EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_dst_reset_all +EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_encap +EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_get_iflink +EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_get_link_net +EXPORT_SYMBOL vmlinux 0x00000000 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0x00000000 iput +EXPORT_SYMBOL vmlinux 0x00000000 ipv4_specific +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x00000000 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x00000000 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x00000000 irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x00000000 irq_regs +EXPORT_SYMBOL vmlinux 0x00000000 irq_set_chip +EXPORT_SYMBOL vmlinux 0x00000000 irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x00000000 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x00000000 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x00000000 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0x00000000 irq_stat +EXPORT_SYMBOL vmlinux 0x00000000 irq_to_desc +EXPORT_SYMBOL vmlinux 0x00000000 is_bad_inode +EXPORT_SYMBOL vmlinux 0x00000000 isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0x00000000 iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0x00000000 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x00000000 iterate_dir +EXPORT_SYMBOL vmlinux 0x00000000 iterate_fd +EXPORT_SYMBOL vmlinux 0x00000000 iterate_mounts +EXPORT_SYMBOL vmlinux 0x00000000 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x00000000 iunique +EXPORT_SYMBOL vmlinux 0x00000000 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x00000000 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x00000000 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x00000000 jiffies +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_64 +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x00000000 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x00000000 kasprintf +EXPORT_SYMBOL vmlinux 0x00000000 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x00000000 kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0x00000000 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x00000000 kern_path +EXPORT_SYMBOL vmlinux 0x00000000 kern_path_create +EXPORT_SYMBOL vmlinux 0x00000000 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x00000000 kern_unmount +EXPORT_SYMBOL vmlinux 0x00000000 kernel_accept +EXPORT_SYMBOL vmlinux 0x00000000 kernel_bind +EXPORT_SYMBOL vmlinux 0x00000000 kernel_connect +EXPORT_SYMBOL vmlinux 0x00000000 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x00000000 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x00000000 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x00000000 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 kernel_listen +EXPORT_SYMBOL vmlinux 0x00000000 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x00000000 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x00000000 kernel_read +EXPORT_SYMBOL vmlinux 0x00000000 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x00000000 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x00000000 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x00000000 kernel_write +EXPORT_SYMBOL vmlinux 0x00000000 key_alloc +EXPORT_SYMBOL vmlinux 0x00000000 key_create_or_update +EXPORT_SYMBOL vmlinux 0x00000000 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x00000000 key_invalidate +EXPORT_SYMBOL vmlinux 0x00000000 key_link +EXPORT_SYMBOL vmlinux 0x00000000 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x00000000 key_put +EXPORT_SYMBOL vmlinux 0x00000000 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x00000000 key_revoke +EXPORT_SYMBOL vmlinux 0x00000000 key_task_permission +EXPORT_SYMBOL vmlinux 0x00000000 key_type_keyring +EXPORT_SYMBOL vmlinux 0x00000000 key_unlink +EXPORT_SYMBOL vmlinux 0x00000000 key_update +EXPORT_SYMBOL vmlinux 0x00000000 key_validate +EXPORT_SYMBOL vmlinux 0x00000000 keyring_alloc +EXPORT_SYMBOL vmlinux 0x00000000 keyring_clear +EXPORT_SYMBOL vmlinux 0x00000000 keyring_search +EXPORT_SYMBOL vmlinux 0x00000000 kfree +EXPORT_SYMBOL vmlinux 0x00000000 kfree_const +EXPORT_SYMBOL vmlinux 0x00000000 kfree_put_link +EXPORT_SYMBOL vmlinux 0x00000000 kfree_skb +EXPORT_SYMBOL vmlinux 0x00000000 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x00000000 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x00000000 kill_anon_super +EXPORT_SYMBOL vmlinux 0x00000000 kill_bdev +EXPORT_SYMBOL vmlinux 0x00000000 kill_block_super +EXPORT_SYMBOL vmlinux 0x00000000 kill_fasync +EXPORT_SYMBOL vmlinux 0x00000000 kill_litter_super +EXPORT_SYMBOL vmlinux 0x00000000 kill_pgrp +EXPORT_SYMBOL vmlinux 0x00000000 kill_pid +EXPORT_SYMBOL vmlinux 0x00000000 km_is_alive +EXPORT_SYMBOL vmlinux 0x00000000 km_new_mapping +EXPORT_SYMBOL vmlinux 0x00000000 km_policy_expired +EXPORT_SYMBOL vmlinux 0x00000000 km_policy_notify +EXPORT_SYMBOL vmlinux 0x00000000 km_query +EXPORT_SYMBOL vmlinux 0x00000000 km_report +EXPORT_SYMBOL vmlinux 0x00000000 km_state_expired +EXPORT_SYMBOL vmlinux 0x00000000 km_state_notify +EXPORT_SYMBOL vmlinux 0x00000000 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x00000000 kmalloc_order +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x00000000 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x00000000 kmemdup +EXPORT_SYMBOL vmlinux 0x00000000 kobject_add +EXPORT_SYMBOL vmlinux 0x00000000 kobject_del +EXPORT_SYMBOL vmlinux 0x00000000 kobject_get +EXPORT_SYMBOL vmlinux 0x00000000 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x00000000 kobject_init +EXPORT_SYMBOL vmlinux 0x00000000 kobject_put +EXPORT_SYMBOL vmlinux 0x00000000 kobject_set_name +EXPORT_SYMBOL vmlinux 0x00000000 krealloc +EXPORT_SYMBOL vmlinux 0x00000000 kset_register +EXPORT_SYMBOL vmlinux 0x00000000 kset_unregister +EXPORT_SYMBOL vmlinux 0x00000000 ksize +EXPORT_SYMBOL vmlinux 0x00000000 kstat +EXPORT_SYMBOL vmlinux 0x00000000 kstrdup +EXPORT_SYMBOL vmlinux 0x00000000 kstrdup_const +EXPORT_SYMBOL vmlinux 0x00000000 kstrndup +EXPORT_SYMBOL vmlinux 0x00000000 kstrtobool +EXPORT_SYMBOL vmlinux 0x00000000 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoint +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoll +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtos16 +EXPORT_SYMBOL vmlinux 0x00000000 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtos8 +EXPORT_SYMBOL vmlinux 0x00000000 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtou16 +EXPORT_SYMBOL vmlinux 0x00000000 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtou8 +EXPORT_SYMBOL vmlinux 0x00000000 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtouint +EXPORT_SYMBOL vmlinux 0x00000000 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoull +EXPORT_SYMBOL vmlinux 0x00000000 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x00000000 kthread_bind +EXPORT_SYMBOL vmlinux 0x00000000 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x00000000 kthread_should_stop +EXPORT_SYMBOL vmlinux 0x00000000 kthread_stop +EXPORT_SYMBOL vmlinux 0x00000000 kvasprintf +EXPORT_SYMBOL vmlinux 0x00000000 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x00000000 kvfree +EXPORT_SYMBOL vmlinux 0x00000000 kzfree +EXPORT_SYMBOL vmlinux 0x00000000 laptop_mode +EXPORT_SYMBOL vmlinux 0x00000000 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x00000000 lease_modify +EXPORT_SYMBOL vmlinux 0x00000000 lg_global_lock +EXPORT_SYMBOL vmlinux 0x00000000 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x00000000 lg_local_lock +EXPORT_SYMBOL vmlinux 0x00000000 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x00000000 lg_local_unlock +EXPORT_SYMBOL vmlinux 0x00000000 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x00000000 lg_lock_init +EXPORT_SYMBOL vmlinux 0x00000000 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x00000000 list_sort +EXPORT_SYMBOL vmlinux 0x00000000 ll_rw_block +EXPORT_SYMBOL vmlinux 0x00000000 load_nls +EXPORT_SYMBOL vmlinux 0x00000000 load_nls_default +EXPORT_SYMBOL vmlinux 0x00000000 lock_rename +EXPORT_SYMBOL vmlinux 0x00000000 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x00000000 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x00000000 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x00000000 lockref_get +EXPORT_SYMBOL vmlinux 0x00000000 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x00000000 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x00000000 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x00000000 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x00000000 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x00000000 lockref_put_return +EXPORT_SYMBOL vmlinux 0x00000000 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x00000000 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x00000000 locks_free_lock +EXPORT_SYMBOL vmlinux 0x00000000 locks_init_lock +EXPORT_SYMBOL vmlinux 0x00000000 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x00000000 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x00000000 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x00000000 lookup_bdev +EXPORT_SYMBOL vmlinux 0x00000000 lookup_one_len +EXPORT_SYMBOL vmlinux 0x00000000 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0x00000000 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x00000000 mac_pton +EXPORT_SYMBOL vmlinux 0x00000000 make_bad_inode +EXPORT_SYMBOL vmlinux 0x00000000 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x00000000 mangle_path +EXPORT_SYMBOL vmlinux 0x00000000 mapping_tagged +EXPORT_SYMBOL vmlinux 0x00000000 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x00000000 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x00000000 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x00000000 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x00000000 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x00000000 match_hex +EXPORT_SYMBOL vmlinux 0x00000000 match_int +EXPORT_SYMBOL vmlinux 0x00000000 match_octal +EXPORT_SYMBOL vmlinux 0x00000000 match_strdup +EXPORT_SYMBOL vmlinux 0x00000000 match_strlcpy +EXPORT_SYMBOL vmlinux 0x00000000 match_token +EXPORT_SYMBOL vmlinux 0x00000000 match_wildcard +EXPORT_SYMBOL vmlinux 0x00000000 max_mapnr +EXPORT_SYMBOL vmlinux 0x00000000 may_umount +EXPORT_SYMBOL vmlinux 0x00000000 may_umount_tree +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_create +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x00000000 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x00000000 md5_transform +EXPORT_SYMBOL vmlinux 0x00000000 mem_map +EXPORT_SYMBOL vmlinux 0x00000000 mem_section +EXPORT_SYMBOL vmlinux 0x00000000 memchr +EXPORT_SYMBOL vmlinux 0x00000000 memchr_inv +EXPORT_SYMBOL vmlinux 0x00000000 memcmp +EXPORT_SYMBOL vmlinux 0x00000000 memcpy +EXPORT_SYMBOL vmlinux 0x00000000 memdup_user +EXPORT_SYMBOL vmlinux 0x00000000 memmove +EXPORT_SYMBOL vmlinux 0x00000000 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x00000000 memparse +EXPORT_SYMBOL vmlinux 0x00000000 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00000000 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x00000000 mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x00000000 mempool_create +EXPORT_SYMBOL vmlinux 0x00000000 mempool_create_node +EXPORT_SYMBOL vmlinux 0x00000000 mempool_destroy +EXPORT_SYMBOL vmlinux 0x00000000 mempool_free +EXPORT_SYMBOL vmlinux 0x00000000 mempool_free_pages +EXPORT_SYMBOL vmlinux 0x00000000 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x00000000 mempool_kfree +EXPORT_SYMBOL vmlinux 0x00000000 mempool_kmalloc +EXPORT_SYMBOL vmlinux 0x00000000 mempool_resize +EXPORT_SYMBOL vmlinux 0x00000000 memremap +EXPORT_SYMBOL vmlinux 0x00000000 memscan +EXPORT_SYMBOL vmlinux 0x00000000 memset +EXPORT_SYMBOL vmlinux 0x00000000 memunmap +EXPORT_SYMBOL vmlinux 0x00000000 memweight +EXPORT_SYMBOL vmlinux 0x00000000 memzero_explicit +EXPORT_SYMBOL vmlinux 0x00000000 misc_deregister +EXPORT_SYMBOL vmlinux 0x00000000 misc_register +EXPORT_SYMBOL vmlinux 0x00000000 mktime64 +EXPORT_SYMBOL vmlinux 0x00000000 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x00000000 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x00000000 mntget +EXPORT_SYMBOL vmlinux 0x00000000 mntput +EXPORT_SYMBOL vmlinux 0x00000000 mod_timer +EXPORT_SYMBOL vmlinux 0x00000000 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x00000000 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x00000000 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x00000000 mount_bdev +EXPORT_SYMBOL vmlinux 0x00000000 mount_nodev +EXPORT_SYMBOL vmlinux 0x00000000 mount_ns +EXPORT_SYMBOL vmlinux 0x00000000 mount_pseudo +EXPORT_SYMBOL vmlinux 0x00000000 mount_single +EXPORT_SYMBOL vmlinux 0x00000000 mount_subtree +EXPORT_SYMBOL vmlinux 0x00000000 movable_zone +EXPORT_SYMBOL vmlinux 0x00000000 mpage_readpage +EXPORT_SYMBOL vmlinux 0x00000000 mpage_readpages +EXPORT_SYMBOL vmlinux 0x00000000 mpage_writepage +EXPORT_SYMBOL vmlinux 0x00000000 mpage_writepages +EXPORT_SYMBOL vmlinux 0x00000000 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x00000000 msleep +EXPORT_SYMBOL vmlinux 0x00000000 msleep_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 msrs_alloc +EXPORT_SYMBOL vmlinux 0x00000000 msrs_free +EXPORT_SYMBOL vmlinux 0x00000000 mutex_lock +EXPORT_SYMBOL vmlinux 0x00000000 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x00000000 mutex_trylock +EXPORT_SYMBOL vmlinux 0x00000000 mutex_unlock +EXPORT_SYMBOL vmlinux 0x00000000 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x00000000 names_cachep +EXPORT_SYMBOL vmlinux 0x00000000 napi_alloc_frag +EXPORT_SYMBOL vmlinux 0x00000000 napi_complete_done +EXPORT_SYMBOL vmlinux 0x00000000 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x00000000 napi_disable +EXPORT_SYMBOL vmlinux 0x00000000 napi_get_frags +EXPORT_SYMBOL vmlinux 0x00000000 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x00000000 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x00000000 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x00000000 native_io_delay +EXPORT_SYMBOL vmlinux 0x00000000 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0x00000000 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x00000000 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x00000000 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x00000000 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x00000000 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x00000000 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x00000000 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x00000000 neigh_destroy +EXPORT_SYMBOL vmlinux 0x00000000 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x00000000 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x00000000 neigh_for_each +EXPORT_SYMBOL vmlinux 0x00000000 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x00000000 neigh_lookup +EXPORT_SYMBOL vmlinux 0x00000000 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x00000000 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x00000000 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x00000000 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x00000000 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x00000000 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x00000000 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x00000000 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x00000000 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x00000000 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x00000000 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x00000000 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x00000000 neigh_table_init +EXPORT_SYMBOL vmlinux 0x00000000 neigh_update +EXPORT_SYMBOL vmlinux 0x00000000 neigh_xmit +EXPORT_SYMBOL vmlinux 0x00000000 net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x00000000 net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x00000000 net_ratelimit +EXPORT_SYMBOL vmlinux 0x00000000 netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0x00000000 netdev_alert +EXPORT_SYMBOL vmlinux 0x00000000 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x00000000 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x00000000 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x00000000 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x00000000 netdev_change_features +EXPORT_SYMBOL vmlinux 0x00000000 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x00000000 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x00000000 netdev_crit +EXPORT_SYMBOL vmlinux 0x00000000 netdev_emerg +EXPORT_SYMBOL vmlinux 0x00000000 netdev_err +EXPORT_SYMBOL vmlinux 0x00000000 netdev_features_change +EXPORT_SYMBOL vmlinux 0x00000000 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x00000000 netdev_increment_features +EXPORT_SYMBOL vmlinux 0x00000000 netdev_info +EXPORT_SYMBOL vmlinux 0x00000000 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x00000000 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x00000000 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x00000000 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x00000000 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x00000000 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x00000000 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x00000000 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x00000000 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x00000000 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x00000000 netdev_notice +EXPORT_SYMBOL vmlinux 0x00000000 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x00000000 netdev_printk +EXPORT_SYMBOL vmlinux 0x00000000 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x00000000 netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x00000000 netdev_state_change +EXPORT_SYMBOL vmlinux 0x00000000 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0x00000000 netdev_update_features +EXPORT_SYMBOL vmlinux 0x00000000 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x00000000 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x00000000 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x00000000 netdev_warn +EXPORT_SYMBOL vmlinux 0x00000000 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x00000000 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x00000000 netif_device_attach +EXPORT_SYMBOL vmlinux 0x00000000 netif_device_detach +EXPORT_SYMBOL vmlinux 0x00000000 netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x00000000 netif_napi_add +EXPORT_SYMBOL vmlinux 0x00000000 netif_napi_del +EXPORT_SYMBOL vmlinux 0x00000000 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x00000000 netif_rx +EXPORT_SYMBOL vmlinux 0x00000000 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x00000000 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x00000000 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x00000000 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x00000000 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x00000000 netif_skb_features +EXPORT_SYMBOL vmlinux 0x00000000 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x00000000 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x00000000 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x00000000 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x00000000 netlink_ack +EXPORT_SYMBOL vmlinux 0x00000000 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x00000000 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x00000000 netlink_capable +EXPORT_SYMBOL vmlinux 0x00000000 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x00000000 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x00000000 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x00000000 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x00000000 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0x00000000 netlink_set_err +EXPORT_SYMBOL vmlinux 0x00000000 netlink_unicast +EXPORT_SYMBOL vmlinux 0x00000000 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0x00000000 new_inode +EXPORT_SYMBOL vmlinux 0x00000000 nla_append +EXPORT_SYMBOL vmlinux 0x00000000 nla_find +EXPORT_SYMBOL vmlinux 0x00000000 nla_memcmp +EXPORT_SYMBOL vmlinux 0x00000000 nla_memcpy +EXPORT_SYMBOL vmlinux 0x00000000 nla_parse +EXPORT_SYMBOL vmlinux 0x00000000 nla_policy_len +EXPORT_SYMBOL vmlinux 0x00000000 nla_put +EXPORT_SYMBOL vmlinux 0x00000000 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x00000000 nla_reserve +EXPORT_SYMBOL vmlinux 0x00000000 nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x00000000 nla_strcmp +EXPORT_SYMBOL vmlinux 0x00000000 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x00000000 nla_validate +EXPORT_SYMBOL vmlinux 0x00000000 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x00000000 no_llseek +EXPORT_SYMBOL vmlinux 0x00000000 no_pci_devices +EXPORT_SYMBOL vmlinux 0x00000000 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x00000000 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 nobh_write_end +EXPORT_SYMBOL vmlinux 0x00000000 nobh_writepage +EXPORT_SYMBOL vmlinux 0x00000000 node_states +EXPORT_SYMBOL vmlinux 0x00000000 nonseekable_open +EXPORT_SYMBOL vmlinux 0x00000000 noop_fsync +EXPORT_SYMBOL vmlinux 0x00000000 noop_llseek +EXPORT_SYMBOL vmlinux 0x00000000 noop_qdisc +EXPORT_SYMBOL vmlinux 0x00000000 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x00000000 notify_change +EXPORT_SYMBOL vmlinux 0x00000000 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0x00000000 ns_capable +EXPORT_SYMBOL vmlinux 0x00000000 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x00000000 ns_to_timespec +EXPORT_SYMBOL vmlinux 0x00000000 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x00000000 nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x00000000 on_each_cpu +EXPORT_SYMBOL vmlinux 0x00000000 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0x00000000 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x00000000 oops_in_progress +EXPORT_SYMBOL vmlinux 0x00000000 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x00000000 open_exec +EXPORT_SYMBOL vmlinux 0x00000000 out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0x00000000 out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0x00000000 out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x00000000 overflowgid +EXPORT_SYMBOL vmlinux 0x00000000 overflowuid +EXPORT_SYMBOL vmlinux 0x00000000 override_creds +EXPORT_SYMBOL vmlinux 0x00000000 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x00000000 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x00000000 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x00000000 page_put_link +EXPORT_SYMBOL vmlinux 0x00000000 page_readlink +EXPORT_SYMBOL vmlinux 0x00000000 page_symlink +EXPORT_SYMBOL vmlinux 0x00000000 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x00000000 page_waitqueue +EXPORT_SYMBOL vmlinux 0x00000000 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x00000000 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x00000000 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x00000000 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x00000000 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x00000000 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x00000000 panic +EXPORT_SYMBOL vmlinux 0x00000000 panic_blink +EXPORT_SYMBOL vmlinux 0x00000000 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x00000000 param_array_ops +EXPORT_SYMBOL vmlinux 0x00000000 param_free_charp +EXPORT_SYMBOL vmlinux 0x00000000 param_get_bool +EXPORT_SYMBOL vmlinux 0x00000000 param_get_byte +EXPORT_SYMBOL vmlinux 0x00000000 param_get_charp +EXPORT_SYMBOL vmlinux 0x00000000 param_get_int +EXPORT_SYMBOL vmlinux 0x00000000 param_get_invbool +EXPORT_SYMBOL vmlinux 0x00000000 param_get_long +EXPORT_SYMBOL vmlinux 0x00000000 param_get_short +EXPORT_SYMBOL vmlinux 0x00000000 param_get_string +EXPORT_SYMBOL vmlinux 0x00000000 param_get_uint +EXPORT_SYMBOL vmlinux 0x00000000 param_get_ullong +EXPORT_SYMBOL vmlinux 0x00000000 param_get_ulong +EXPORT_SYMBOL vmlinux 0x00000000 param_get_ushort +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_bint +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_bool +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_byte +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_charp +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_int +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_long +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_short +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_string +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_uint +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x00000000 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x00000000 param_set_bint +EXPORT_SYMBOL vmlinux 0x00000000 param_set_bool +EXPORT_SYMBOL vmlinux 0x00000000 param_set_byte +EXPORT_SYMBOL vmlinux 0x00000000 param_set_charp +EXPORT_SYMBOL vmlinux 0x00000000 param_set_copystring +EXPORT_SYMBOL vmlinux 0x00000000 param_set_int +EXPORT_SYMBOL vmlinux 0x00000000 param_set_invbool +EXPORT_SYMBOL vmlinux 0x00000000 param_set_long +EXPORT_SYMBOL vmlinux 0x00000000 param_set_short +EXPORT_SYMBOL vmlinux 0x00000000 param_set_uint +EXPORT_SYMBOL vmlinux 0x00000000 param_set_ullong +EXPORT_SYMBOL vmlinux 0x00000000 param_set_ulong +EXPORT_SYMBOL vmlinux 0x00000000 param_set_ushort +EXPORT_SYMBOL vmlinux 0x00000000 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0x00000000 passthru_features_check +EXPORT_SYMBOL vmlinux 0x00000000 path_get +EXPORT_SYMBOL vmlinux 0x00000000 path_is_under +EXPORT_SYMBOL vmlinux 0x00000000 path_noexec +EXPORT_SYMBOL vmlinux 0x00000000 path_nosuid +EXPORT_SYMBOL vmlinux 0x00000000 path_put +EXPORT_SYMBOL vmlinux 0x00000000 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x00000000 pci_add_resource +EXPORT_SYMBOL vmlinux 0x00000000 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0x00000000 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x00000000 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x00000000 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x00000000 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_get +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_put +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_type +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x00000000 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x00000000 pci_choose_state +EXPORT_SYMBOL vmlinux 0x00000000 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x00000000 pci_clear_master +EXPORT_SYMBOL vmlinux 0x00000000 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x00000000 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x00000000 pci_dev_get +EXPORT_SYMBOL vmlinux 0x00000000 pci_dev_present +EXPORT_SYMBOL vmlinux 0x00000000 pci_dev_put +EXPORT_SYMBOL vmlinux 0x00000000 pci_disable_device +EXPORT_SYMBOL vmlinux 0x00000000 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x00000000 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_device +EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x00000000 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x00000000 pci_find_bus +EXPORT_SYMBOL vmlinux 0x00000000 pci_find_capability +EXPORT_SYMBOL vmlinux 0x00000000 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x00000000 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x00000000 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x00000000 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x00000000 pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x00000000 pci_get_class +EXPORT_SYMBOL vmlinux 0x00000000 pci_get_device +EXPORT_SYMBOL vmlinux 0x00000000 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x00000000 pci_get_slot +EXPORT_SYMBOL vmlinux 0x00000000 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x00000000 pci_iomap +EXPORT_SYMBOL vmlinux 0x00000000 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x00000000 pci_iounmap +EXPORT_SYMBOL vmlinux 0x00000000 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x00000000 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x00000000 pci_map_rom +EXPORT_SYMBOL vmlinux 0x00000000 pci_match_id +EXPORT_SYMBOL vmlinux 0x00000000 pci_mem_start +EXPORT_SYMBOL vmlinux 0x00000000 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x00000000 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x00000000 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x00000000 pci_pci_problems +EXPORT_SYMBOL vmlinux 0x00000000 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x00000000 pci_pme_active +EXPORT_SYMBOL vmlinux 0x00000000 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x00000000 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x00000000 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x00000000 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x00000000 pci_release_region +EXPORT_SYMBOL vmlinux 0x00000000 pci_release_regions +EXPORT_SYMBOL vmlinux 0x00000000 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x00000000 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x00000000 pci_request_region +EXPORT_SYMBOL vmlinux 0x00000000 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x00000000 pci_request_regions +EXPORT_SYMBOL vmlinux 0x00000000 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x00000000 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x00000000 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x00000000 pci_restore_state +EXPORT_SYMBOL vmlinux 0x00000000 pci_root_buses +EXPORT_SYMBOL vmlinux 0x00000000 pci_save_state +EXPORT_SYMBOL vmlinux 0x00000000 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x00000000 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x00000000 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x00000000 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x00000000 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x00000000 pci_select_bars +EXPORT_SYMBOL vmlinux 0x00000000 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x00000000 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x00000000 pci_set_master +EXPORT_SYMBOL vmlinux 0x00000000 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x00000000 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x00000000 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x00000000 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x00000000 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x00000000 pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x00000000 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x00000000 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x00000000 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x00000000 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x00000000 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x00000000 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x00000000 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x00000000 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x00000000 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x00000000 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x00000000 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x00000000 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x00000000 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x00000000 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x00000000 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x00000000 pcim_iomap +EXPORT_SYMBOL vmlinux 0x00000000 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x00000000 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x00000000 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x00000000 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x00000000 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x00000000 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x00000000 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x00000000 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x00000000 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x00000000 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x00000000 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x00000000 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x00000000 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x00000000 phys_base +EXPORT_SYMBOL vmlinux 0x00000000 pid_task +EXPORT_SYMBOL vmlinux 0x00000000 ping_prot +EXPORT_SYMBOL vmlinux 0x00000000 pipe_lock +EXPORT_SYMBOL vmlinux 0x00000000 pipe_unlock +EXPORT_SYMBOL vmlinux 0x00000000 pm_power_off +EXPORT_SYMBOL vmlinux 0x00000000 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x00000000 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x00000000 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x00000000 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x00000000 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x00000000 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x00000000 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x00000000 pnp_is_active +EXPORT_SYMBOL vmlinux 0x00000000 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0x00000000 pnp_possible_config +EXPORT_SYMBOL vmlinux 0x00000000 pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x00000000 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x00000000 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x00000000 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x00000000 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x00000000 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x00000000 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x00000000 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0x00000000 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x00000000 poll_freewait +EXPORT_SYMBOL vmlinux 0x00000000 poll_initwait +EXPORT_SYMBOL vmlinux 0x00000000 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_init +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x00000000 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x00000000 posix_lock_file +EXPORT_SYMBOL vmlinux 0x00000000 posix_test_lock +EXPORT_SYMBOL vmlinux 0x00000000 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x00000000 prandom_bytes +EXPORT_SYMBOL vmlinux 0x00000000 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x00000000 prandom_seed +EXPORT_SYMBOL vmlinux 0x00000000 prandom_u32 +EXPORT_SYMBOL vmlinux 0x00000000 prandom_u32_state +EXPORT_SYMBOL vmlinux 0x00000000 prepare_binprm +EXPORT_SYMBOL vmlinux 0x00000000 prepare_creds +EXPORT_SYMBOL vmlinux 0x00000000 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x00000000 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x00000000 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x00000000 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x00000000 print_hex_dump +EXPORT_SYMBOL vmlinux 0x00000000 print_hex_dump_bytes +EXPORT_SYMBOL vmlinux 0x00000000 printk +EXPORT_SYMBOL vmlinux 0x00000000 printk_emit +EXPORT_SYMBOL vmlinux 0x00000000 printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x00000000 probe_irq_mask +EXPORT_SYMBOL vmlinux 0x00000000 probe_irq_off +EXPORT_SYMBOL vmlinux 0x00000000 probe_irq_on +EXPORT_SYMBOL vmlinux 0x00000000 proc_create_data +EXPORT_SYMBOL vmlinux 0x00000000 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec +EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 proc_dostring +EXPORT_SYMBOL vmlinux 0x00000000 proc_douintvec +EXPORT_SYMBOL vmlinux 0x00000000 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x00000000 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x00000000 proc_mkdir +EXPORT_SYMBOL vmlinux 0x00000000 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x00000000 proc_remove +EXPORT_SYMBOL vmlinux 0x00000000 proc_set_size +EXPORT_SYMBOL vmlinux 0x00000000 proc_set_user +EXPORT_SYMBOL vmlinux 0x00000000 proc_symlink +EXPORT_SYMBOL vmlinux 0x00000000 processors +EXPORT_SYMBOL vmlinux 0x00000000 profile_pc +EXPORT_SYMBOL vmlinux 0x00000000 proto_register +EXPORT_SYMBOL vmlinux 0x00000000 proto_unregister +EXPORT_SYMBOL vmlinux 0x00000000 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0x00000000 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x00000000 put_cmsg +EXPORT_SYMBOL vmlinux 0x00000000 put_disk +EXPORT_SYMBOL vmlinux 0x00000000 put_filp +EXPORT_SYMBOL vmlinux 0x00000000 put_io_context +EXPORT_SYMBOL vmlinux 0x00000000 put_page +EXPORT_SYMBOL vmlinux 0x00000000 put_pages_list +EXPORT_SYMBOL vmlinux 0x00000000 put_tty_driver +EXPORT_SYMBOL vmlinux 0x00000000 put_unused_fd +EXPORT_SYMBOL vmlinux 0x00000000 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0x00000000 pv_irq_ops +EXPORT_SYMBOL vmlinux 0x00000000 pv_lock_ops +EXPORT_SYMBOL vmlinux 0x00000000 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x00000000 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x00000000 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x00000000 qdisc_reset +EXPORT_SYMBOL vmlinux 0x00000000 qid_eq +EXPORT_SYMBOL vmlinux 0x00000000 qid_lt +EXPORT_SYMBOL vmlinux 0x00000000 qid_valid +EXPORT_SYMBOL vmlinux 0x00000000 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x00000000 queue_work_on +EXPORT_SYMBOL vmlinux 0x00000000 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0x00000000 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x00000000 queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x00000000 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x00000000 rb_erase +EXPORT_SYMBOL vmlinux 0x00000000 rb_first +EXPORT_SYMBOL vmlinux 0x00000000 rb_first_postorder +EXPORT_SYMBOL vmlinux 0x00000000 rb_insert_color +EXPORT_SYMBOL vmlinux 0x00000000 rb_last +EXPORT_SYMBOL vmlinux 0x00000000 rb_next +EXPORT_SYMBOL vmlinux 0x00000000 rb_next_postorder +EXPORT_SYMBOL vmlinux 0x00000000 rb_prev +EXPORT_SYMBOL vmlinux 0x00000000 rb_replace_node +EXPORT_SYMBOL vmlinux 0x00000000 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x00000000 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x00000000 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 read_cache_page +EXPORT_SYMBOL vmlinux 0x00000000 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x00000000 read_cache_pages +EXPORT_SYMBOL vmlinux 0x00000000 read_code +EXPORT_SYMBOL vmlinux 0x00000000 read_dev_sector +EXPORT_SYMBOL vmlinux 0x00000000 readlink_copy +EXPORT_SYMBOL vmlinux 0x00000000 recalc_sigpending +EXPORT_SYMBOL vmlinux 0x00000000 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x00000000 reciprocal_value +EXPORT_SYMBOL vmlinux 0x00000000 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x00000000 register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_blkdev +EXPORT_SYMBOL vmlinux 0x00000000 register_cdrom +EXPORT_SYMBOL vmlinux 0x00000000 register_chrdev_region +EXPORT_SYMBOL vmlinux 0x00000000 register_console +EXPORT_SYMBOL vmlinux 0x00000000 register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_filesystem +EXPORT_SYMBOL vmlinux 0x00000000 register_gifconf +EXPORT_SYMBOL vmlinux 0x00000000 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_key_type +EXPORT_SYMBOL vmlinux 0x00000000 register_module_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_netdev +EXPORT_SYMBOL vmlinux 0x00000000 register_netdevice +EXPORT_SYMBOL vmlinux 0x00000000 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_quota_format +EXPORT_SYMBOL vmlinux 0x00000000 register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x00000000 register_restart_handler +EXPORT_SYMBOL vmlinux 0x00000000 register_shrinker +EXPORT_SYMBOL vmlinux 0x00000000 register_sysctl +EXPORT_SYMBOL vmlinux 0x00000000 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x00000000 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x00000000 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x00000000 release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x00000000 release_pages +EXPORT_SYMBOL vmlinux 0x00000000 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x00000000 release_resource +EXPORT_SYMBOL vmlinux 0x00000000 release_sock +EXPORT_SYMBOL vmlinux 0x00000000 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x00000000 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x00000000 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x00000000 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x00000000 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x00000000 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x00000000 remove_wait_queue +EXPORT_SYMBOL vmlinux 0x00000000 rename_lock +EXPORT_SYMBOL vmlinux 0x00000000 replace_mount_options +EXPORT_SYMBOL vmlinux 0x00000000 request_key +EXPORT_SYMBOL vmlinux 0x00000000 request_key_async +EXPORT_SYMBOL vmlinux 0x00000000 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x00000000 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x00000000 request_resource +EXPORT_SYMBOL vmlinux 0x00000000 request_threaded_irq +EXPORT_SYMBOL vmlinux 0x00000000 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x00000000 reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x00000000 reset_devices +EXPORT_SYMBOL vmlinux 0x00000000 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x00000000 resource_list_free +EXPORT_SYMBOL vmlinux 0x00000000 revalidate_disk +EXPORT_SYMBOL vmlinux 0x00000000 revert_creds +EXPORT_SYMBOL vmlinux 0x00000000 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0x00000000 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x00000000 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x00000000 rt6_lookup +EXPORT_SYMBOL vmlinux 0x00000000 rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x00000000 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x00000000 rtc_lock +EXPORT_SYMBOL vmlinux 0x00000000 rtc_month_days +EXPORT_SYMBOL vmlinux 0x00000000 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x00000000 rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x00000000 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x00000000 rtc_year_days +EXPORT_SYMBOL vmlinux 0x00000000 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x00000000 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_lock +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_notify +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_trylock +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x00000000 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x00000000 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x00000000 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x00000000 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x00000000 rwsem_wake +EXPORT_SYMBOL vmlinux 0x00000000 save_mount_options +EXPORT_SYMBOL vmlinux 0x00000000 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x00000000 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x00000000 schedule +EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout +EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0x00000000 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0x00000000 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x00000000 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x00000000 scmd_printk +EXPORT_SYMBOL vmlinux 0x00000000 scnprintf +EXPORT_SYMBOL vmlinux 0x00000000 screen_info +EXPORT_SYMBOL vmlinux 0x00000000 scsi_add_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x00000000 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x00000000 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x00000000 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x00000000 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x00000000 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x00000000 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x00000000 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x00000000 scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_get +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_put +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x00000000 scsi_device_type +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x00000000 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x00000000 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x00000000 scsi_execute +EXPORT_SYMBOL vmlinux 0x00000000 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x00000000 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x00000000 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x00000000 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x00000000 scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_get +EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_put +EXPORT_SYMBOL vmlinux 0x00000000 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x00000000 scsi_init_io +EXPORT_SYMBOL vmlinux 0x00000000 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x00000000 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x00000000 scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x00000000 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x00000000 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0x00000000 scsi_partsize +EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_command +EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_result +EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x00000000 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x00000000 scsi_register +EXPORT_SYMBOL vmlinux 0x00000000 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x00000000 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x00000000 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x00000000 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x00000000 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x00000000 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x00000000 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x00000000 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x00000000 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x00000000 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0x00000000 scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x00000000 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x00000000 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x00000000 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0x00000000 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x00000000 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x00000000 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x00000000 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x00000000 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x00000000 scsi_unregister +EXPORT_SYMBOL vmlinux 0x00000000 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x00000000 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x00000000 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x00000000 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x00000000 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x00000000 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x00000000 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x00000000 search_binary_handler +EXPORT_SYMBOL vmlinux 0x00000000 secpath_dup +EXPORT_SYMBOL vmlinux 0x00000000 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x00000000 secure_modules +EXPORT_SYMBOL vmlinux 0x00000000 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x00000000 send_sig +EXPORT_SYMBOL vmlinux 0x00000000 send_sig_info +EXPORT_SYMBOL vmlinux 0x00000000 seq_dentry +EXPORT_SYMBOL vmlinux 0x00000000 seq_escape +EXPORT_SYMBOL vmlinux 0x00000000 seq_file_path +EXPORT_SYMBOL vmlinux 0x00000000 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_next +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0x00000000 seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0x00000000 seq_list_next +EXPORT_SYMBOL vmlinux 0x00000000 seq_list_start +EXPORT_SYMBOL vmlinux 0x00000000 seq_list_start_head +EXPORT_SYMBOL vmlinux 0x00000000 seq_lseek +EXPORT_SYMBOL vmlinux 0x00000000 seq_open +EXPORT_SYMBOL vmlinux 0x00000000 seq_open_private +EXPORT_SYMBOL vmlinux 0x00000000 seq_pad +EXPORT_SYMBOL vmlinux 0x00000000 seq_path +EXPORT_SYMBOL vmlinux 0x00000000 seq_printf +EXPORT_SYMBOL vmlinux 0x00000000 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x00000000 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x00000000 seq_putc +EXPORT_SYMBOL vmlinux 0x00000000 seq_puts +EXPORT_SYMBOL vmlinux 0x00000000 seq_read +EXPORT_SYMBOL vmlinux 0x00000000 seq_release +EXPORT_SYMBOL vmlinux 0x00000000 seq_release_private +EXPORT_SYMBOL vmlinux 0x00000000 seq_vprintf +EXPORT_SYMBOL vmlinux 0x00000000 seq_write +EXPORT_SYMBOL vmlinux 0x00000000 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x00000000 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x00000000 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x00000000 serial8250_resume_port +EXPORT_SYMBOL vmlinux 0x00000000 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x00000000 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0x00000000 serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0x00000000 set_anon_super +EXPORT_SYMBOL vmlinux 0x00000000 set_bh_page +EXPORT_SYMBOL vmlinux 0x00000000 set_binfmt +EXPORT_SYMBOL vmlinux 0x00000000 set_blocksize +EXPORT_SYMBOL vmlinux 0x00000000 set_cached_acl +EXPORT_SYMBOL vmlinux 0x00000000 set_create_files_as +EXPORT_SYMBOL vmlinux 0x00000000 set_current_groups +EXPORT_SYMBOL vmlinux 0x00000000 set_device_ro +EXPORT_SYMBOL vmlinux 0x00000000 set_disk_ro +EXPORT_SYMBOL vmlinux 0x00000000 set_groups +EXPORT_SYMBOL vmlinux 0x00000000 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0x00000000 set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x00000000 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x00000000 set_memory_nx +EXPORT_SYMBOL vmlinux 0x00000000 set_memory_uc +EXPORT_SYMBOL vmlinux 0x00000000 set_memory_wb +EXPORT_SYMBOL vmlinux 0x00000000 set_memory_wc +EXPORT_SYMBOL vmlinux 0x00000000 set_memory_x +EXPORT_SYMBOL vmlinux 0x00000000 set_nlink +EXPORT_SYMBOL vmlinux 0x00000000 set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x00000000 set_page_dirty +EXPORT_SYMBOL vmlinux 0x00000000 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x00000000 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x00000000 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x00000000 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x00000000 set_pages_nx +EXPORT_SYMBOL vmlinux 0x00000000 set_pages_uc +EXPORT_SYMBOL vmlinux 0x00000000 set_pages_wb +EXPORT_SYMBOL vmlinux 0x00000000 set_pages_x +EXPORT_SYMBOL vmlinux 0x00000000 set_posix_acl +EXPORT_SYMBOL vmlinux 0x00000000 set_security_override +EXPORT_SYMBOL vmlinux 0x00000000 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x00000000 set_user_nice +EXPORT_SYMBOL vmlinux 0x00000000 set_wb_congested +EXPORT_SYMBOL vmlinux 0x00000000 setattr_copy +EXPORT_SYMBOL vmlinux 0x00000000 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x00000000 setup_max_cpus +EXPORT_SYMBOL vmlinux 0x00000000 setup_new_exec +EXPORT_SYMBOL vmlinux 0x00000000 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x00000000 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x00000000 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x00000000 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x00000000 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x00000000 sg_free_table +EXPORT_SYMBOL vmlinux 0x00000000 sg_init_one +EXPORT_SYMBOL vmlinux 0x00000000 sg_init_table +EXPORT_SYMBOL vmlinux 0x00000000 sg_last +EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_next +EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_start +EXPORT_SYMBOL vmlinux 0x00000000 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x00000000 sg_nents +EXPORT_SYMBOL vmlinux 0x00000000 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x00000000 sg_next +EXPORT_SYMBOL vmlinux 0x00000000 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x00000000 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x00000000 sget +EXPORT_SYMBOL vmlinux 0x00000000 sget_userns +EXPORT_SYMBOL vmlinux 0x00000000 sha_init +EXPORT_SYMBOL vmlinux 0x00000000 sha_transform +EXPORT_SYMBOL vmlinux 0x00000000 should_remove_suid +EXPORT_SYMBOL vmlinux 0x00000000 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x00000000 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x00000000 si_meminfo +EXPORT_SYMBOL vmlinux 0x00000000 sigprocmask +EXPORT_SYMBOL vmlinux 0x00000000 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x00000000 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x00000000 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x00000000 simple_dname +EXPORT_SYMBOL vmlinux 0x00000000 simple_empty +EXPORT_SYMBOL vmlinux 0x00000000 simple_fill_super +EXPORT_SYMBOL vmlinux 0x00000000 simple_follow_link +EXPORT_SYMBOL vmlinux 0x00000000 simple_getattr +EXPORT_SYMBOL vmlinux 0x00000000 simple_link +EXPORT_SYMBOL vmlinux 0x00000000 simple_lookup +EXPORT_SYMBOL vmlinux 0x00000000 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x00000000 simple_open +EXPORT_SYMBOL vmlinux 0x00000000 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x00000000 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x00000000 simple_readpage +EXPORT_SYMBOL vmlinux 0x00000000 simple_release_fs +EXPORT_SYMBOL vmlinux 0x00000000 simple_rename +EXPORT_SYMBOL vmlinux 0x00000000 simple_rmdir +EXPORT_SYMBOL vmlinux 0x00000000 simple_setattr +EXPORT_SYMBOL vmlinux 0x00000000 simple_statfs +EXPORT_SYMBOL vmlinux 0x00000000 simple_strtol +EXPORT_SYMBOL vmlinux 0x00000000 simple_strtoll +EXPORT_SYMBOL vmlinux 0x00000000 simple_strtoul +EXPORT_SYMBOL vmlinux 0x00000000 simple_strtoull +EXPORT_SYMBOL vmlinux 0x00000000 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x00000000 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x00000000 simple_unlink +EXPORT_SYMBOL vmlinux 0x00000000 simple_write_begin +EXPORT_SYMBOL vmlinux 0x00000000 simple_write_end +EXPORT_SYMBOL vmlinux 0x00000000 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x00000000 single_open +EXPORT_SYMBOL vmlinux 0x00000000 single_open_size +EXPORT_SYMBOL vmlinux 0x00000000 single_release +EXPORT_SYMBOL vmlinux 0x00000000 single_task_running +EXPORT_SYMBOL vmlinux 0x00000000 sk_alloc +EXPORT_SYMBOL vmlinux 0x00000000 sk_capable +EXPORT_SYMBOL vmlinux 0x00000000 sk_common_release +EXPORT_SYMBOL vmlinux 0x00000000 sk_dst_check +EXPORT_SYMBOL vmlinux 0x00000000 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x00000000 sk_free +EXPORT_SYMBOL vmlinux 0x00000000 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x00000000 sk_net_capable +EXPORT_SYMBOL vmlinux 0x00000000 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x00000000 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x00000000 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x00000000 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x00000000 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x00000000 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x00000000 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_error +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x00000000 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x00000000 sk_wait_data +EXPORT_SYMBOL vmlinux 0x00000000 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x00000000 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x00000000 skb_append +EXPORT_SYMBOL vmlinux 0x00000000 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x00000000 skb_checksum +EXPORT_SYMBOL vmlinux 0x00000000 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x00000000 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x00000000 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x00000000 skb_clone +EXPORT_SYMBOL vmlinux 0x00000000 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x00000000 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x00000000 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x00000000 skb_dequeue +EXPORT_SYMBOL vmlinux 0x00000000 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x00000000 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x00000000 skb_find_text +EXPORT_SYMBOL vmlinux 0x00000000 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x00000000 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x00000000 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x00000000 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x00000000 skb_insert +EXPORT_SYMBOL vmlinux 0x00000000 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x00000000 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x00000000 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x00000000 skb_pad +EXPORT_SYMBOL vmlinux 0x00000000 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x00000000 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x00000000 skb_pull +EXPORT_SYMBOL vmlinux 0x00000000 skb_push +EXPORT_SYMBOL vmlinux 0x00000000 skb_put +EXPORT_SYMBOL vmlinux 0x00000000 skb_queue_head +EXPORT_SYMBOL vmlinux 0x00000000 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x00000000 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x00000000 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x00000000 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x00000000 skb_seq_read +EXPORT_SYMBOL vmlinux 0x00000000 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x00000000 skb_split +EXPORT_SYMBOL vmlinux 0x00000000 skb_store_bits +EXPORT_SYMBOL vmlinux 0x00000000 skb_trim +EXPORT_SYMBOL vmlinux 0x00000000 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x00000000 skb_tx_error +EXPORT_SYMBOL vmlinux 0x00000000 skb_unlink +EXPORT_SYMBOL vmlinux 0x00000000 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x00000000 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x00000000 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x00000000 skip_spaces +EXPORT_SYMBOL vmlinux 0x00000000 smp_call_function +EXPORT_SYMBOL vmlinux 0x00000000 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x00000000 smp_call_function_single +EXPORT_SYMBOL vmlinux 0x00000000 smp_num_siblings +EXPORT_SYMBOL vmlinux 0x00000000 snprintf +EXPORT_SYMBOL vmlinux 0x00000000 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x00000000 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x00000000 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x00000000 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x00000000 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 sock_create +EXPORT_SYMBOL vmlinux 0x00000000 sock_create_kern +EXPORT_SYMBOL vmlinux 0x00000000 sock_create_lite +EXPORT_SYMBOL vmlinux 0x00000000 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x00000000 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x00000000 sock_edemux +EXPORT_SYMBOL vmlinux 0x00000000 sock_efree +EXPORT_SYMBOL vmlinux 0x00000000 sock_from_file +EXPORT_SYMBOL vmlinux 0x00000000 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x00000000 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x00000000 sock_i_ino +EXPORT_SYMBOL vmlinux 0x00000000 sock_i_uid +EXPORT_SYMBOL vmlinux 0x00000000 sock_init_data +EXPORT_SYMBOL vmlinux 0x00000000 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x00000000 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x00000000 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_accept +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_bind +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_connect +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_getname +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_listen +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_poll +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x00000000 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x00000000 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x00000000 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x00000000 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x00000000 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 sock_register +EXPORT_SYMBOL vmlinux 0x00000000 sock_release +EXPORT_SYMBOL vmlinux 0x00000000 sock_rfree +EXPORT_SYMBOL vmlinux 0x00000000 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 sock_unregister +EXPORT_SYMBOL vmlinux 0x00000000 sock_wake_async +EXPORT_SYMBOL vmlinux 0x00000000 sock_wfree +EXPORT_SYMBOL vmlinux 0x00000000 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x00000000 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x00000000 softnet_data +EXPORT_SYMBOL vmlinux 0x00000000 sort +EXPORT_SYMBOL vmlinux 0x00000000 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x00000000 sprintf +EXPORT_SYMBOL vmlinux 0x00000000 sscanf +EXPORT_SYMBOL vmlinux 0x00000000 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x00000000 start_tty +EXPORT_SYMBOL vmlinux 0x00000000 stop_tty +EXPORT_SYMBOL vmlinux 0x00000000 strcasecmp +EXPORT_SYMBOL vmlinux 0x00000000 strcat +EXPORT_SYMBOL vmlinux 0x00000000 strchr +EXPORT_SYMBOL vmlinux 0x00000000 strchrnul +EXPORT_SYMBOL vmlinux 0x00000000 strcmp +EXPORT_SYMBOL vmlinux 0x00000000 strcpy +EXPORT_SYMBOL vmlinux 0x00000000 strcspn +EXPORT_SYMBOL vmlinux 0x00000000 strim +EXPORT_SYMBOL vmlinux 0x00000000 string_escape_mem +EXPORT_SYMBOL vmlinux 0x00000000 string_get_size +EXPORT_SYMBOL vmlinux 0x00000000 string_unescape +EXPORT_SYMBOL vmlinux 0x00000000 strlcat +EXPORT_SYMBOL vmlinux 0x00000000 strlcpy +EXPORT_SYMBOL vmlinux 0x00000000 strlen +EXPORT_SYMBOL vmlinux 0x00000000 strlen_user +EXPORT_SYMBOL vmlinux 0x00000000 strncasecmp +EXPORT_SYMBOL vmlinux 0x00000000 strncat +EXPORT_SYMBOL vmlinux 0x00000000 strnchr +EXPORT_SYMBOL vmlinux 0x00000000 strncmp +EXPORT_SYMBOL vmlinux 0x00000000 strncpy +EXPORT_SYMBOL vmlinux 0x00000000 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x00000000 strndup_user +EXPORT_SYMBOL vmlinux 0x00000000 strnlen +EXPORT_SYMBOL vmlinux 0x00000000 strnlen_user +EXPORT_SYMBOL vmlinux 0x00000000 strnstr +EXPORT_SYMBOL vmlinux 0x00000000 strpbrk +EXPORT_SYMBOL vmlinux 0x00000000 strrchr +EXPORT_SYMBOL vmlinux 0x00000000 strreplace +EXPORT_SYMBOL vmlinux 0x00000000 strscpy +EXPORT_SYMBOL vmlinux 0x00000000 strsep +EXPORT_SYMBOL vmlinux 0x00000000 strspn +EXPORT_SYMBOL vmlinux 0x00000000 strstr +EXPORT_SYMBOL vmlinux 0x00000000 submit_bh +EXPORT_SYMBOL vmlinux 0x00000000 submit_bio +EXPORT_SYMBOL vmlinux 0x00000000 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x00000000 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x00000000 sync_blockdev +EXPORT_SYMBOL vmlinux 0x00000000 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x00000000 sync_filesystem +EXPORT_SYMBOL vmlinux 0x00000000 sync_inode +EXPORT_SYMBOL vmlinux 0x00000000 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x00000000 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x00000000 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x00000000 synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x00000000 synchronize_irq +EXPORT_SYMBOL vmlinux 0x00000000 synchronize_net +EXPORT_SYMBOL vmlinux 0x00000000 sys_close +EXPORT_SYMBOL vmlinux 0x00000000 sys_tz +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x00000000 sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0x00000000 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x00000000 sysfs_streq +EXPORT_SYMBOL vmlinux 0x00000000 system_state +EXPORT_SYMBOL vmlinux 0x00000000 system_wq +EXPORT_SYMBOL vmlinux 0x00000000 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x00000000 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x00000000 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x00000000 tasklet_init +EXPORT_SYMBOL vmlinux 0x00000000 tasklet_kill +EXPORT_SYMBOL vmlinux 0x00000000 tcp_check_req +EXPORT_SYMBOL vmlinux 0x00000000 tcp_child_process +EXPORT_SYMBOL vmlinux 0x00000000 tcp_close +EXPORT_SYMBOL vmlinux 0x00000000 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x00000000 tcp_connect +EXPORT_SYMBOL vmlinux 0x00000000 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x00000000 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x00000000 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x00000000 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x00000000 tcp_filter +EXPORT_SYMBOL vmlinux 0x00000000 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x00000000 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x00000000 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x00000000 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x00000000 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x00000000 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x00000000 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x00000000 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x00000000 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x00000000 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x00000000 tcp_poll +EXPORT_SYMBOL vmlinux 0x00000000 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x00000000 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x00000000 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x00000000 tcp_prot +EXPORT_SYMBOL vmlinux 0x00000000 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x00000000 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x00000000 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x00000000 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x00000000 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x00000000 tcp_req_err +EXPORT_SYMBOL vmlinux 0x00000000 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x00000000 tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x00000000 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x00000000 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x00000000 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x00000000 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x00000000 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x00000000 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x00000000 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x00000000 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x00000000 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x00000000 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x00000000 test_taint +EXPORT_SYMBOL vmlinux 0x00000000 thaw_bdev +EXPORT_SYMBOL vmlinux 0x00000000 thaw_super +EXPORT_SYMBOL vmlinux 0x00000000 this_cpu_off +EXPORT_SYMBOL vmlinux 0x00000000 time_to_tm +EXPORT_SYMBOL vmlinux 0x00000000 timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0x00000000 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 timespec_trunc +EXPORT_SYMBOL vmlinux 0x00000000 timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x00000000 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0x00000000 totalram_pages +EXPORT_SYMBOL vmlinux 0x00000000 touch_atime +EXPORT_SYMBOL vmlinux 0x00000000 touch_buffer +EXPORT_SYMBOL vmlinux 0x00000000 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x00000000 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x00000000 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x00000000 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x00000000 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x00000000 truncate_setsize +EXPORT_SYMBOL vmlinux 0x00000000 try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0x00000000 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x00000000 try_to_release_page +EXPORT_SYMBOL vmlinux 0x00000000 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x00000000 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x00000000 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x00000000 tsc_khz +EXPORT_SYMBOL vmlinux 0x00000000 tso_build_data +EXPORT_SYMBOL vmlinux 0x00000000 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x00000000 tso_count_descs +EXPORT_SYMBOL vmlinux 0x00000000 tso_start +EXPORT_SYMBOL vmlinux 0x00000000 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x00000000 tty_check_change +EXPORT_SYMBOL vmlinux 0x00000000 tty_devnum +EXPORT_SYMBOL vmlinux 0x00000000 tty_do_resize +EXPORT_SYMBOL vmlinux 0x00000000 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x00000000 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x00000000 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x00000000 tty_free_termios +EXPORT_SYMBOL vmlinux 0x00000000 tty_hangup +EXPORT_SYMBOL vmlinux 0x00000000 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x00000000 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x00000000 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x00000000 tty_kref_put +EXPORT_SYMBOL vmlinux 0x00000000 tty_lock +EXPORT_SYMBOL vmlinux 0x00000000 tty_mutex +EXPORT_SYMBOL vmlinux 0x00000000 tty_name +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_close +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_init +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_open +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_put +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x00000000 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x00000000 tty_register_device +EXPORT_SYMBOL vmlinux 0x00000000 tty_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x00000000 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x00000000 tty_set_operations +EXPORT_SYMBOL vmlinux 0x00000000 tty_std_termios +EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x00000000 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x00000000 tty_throttle +EXPORT_SYMBOL vmlinux 0x00000000 tty_unlock +EXPORT_SYMBOL vmlinux 0x00000000 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x00000000 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x00000000 tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0x00000000 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x00000000 tty_vhangup +EXPORT_SYMBOL vmlinux 0x00000000 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x00000000 tty_write_room +EXPORT_SYMBOL vmlinux 0x00000000 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x00000000 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x00000000 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x00000000 uart_match_port +EXPORT_SYMBOL vmlinux 0x00000000 uart_register_driver +EXPORT_SYMBOL vmlinux 0x00000000 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x00000000 uart_resume_port +EXPORT_SYMBOL vmlinux 0x00000000 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x00000000 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x00000000 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x00000000 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x00000000 ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0x00000000 ucs2_strlen +EXPORT_SYMBOL vmlinux 0x00000000 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x00000000 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x00000000 ucs2_strsize +EXPORT_SYMBOL vmlinux 0x00000000 ucs2_utf8size +EXPORT_SYMBOL vmlinux 0x00000000 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x00000000 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x00000000 udp_add_offload +EXPORT_SYMBOL vmlinux 0x00000000 udp_del_offload +EXPORT_SYMBOL vmlinux 0x00000000 udp_disconnect +EXPORT_SYMBOL vmlinux 0x00000000 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x00000000 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x00000000 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x00000000 udp_ioctl +EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x00000000 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x00000000 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x00000000 udp_poll +EXPORT_SYMBOL vmlinux 0x00000000 udp_proc_register +EXPORT_SYMBOL vmlinux 0x00000000 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x00000000 udp_prot +EXPORT_SYMBOL vmlinux 0x00000000 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x00000000 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x00000000 udp_seq_open +EXPORT_SYMBOL vmlinux 0x00000000 udp_set_csum +EXPORT_SYMBOL vmlinux 0x00000000 udp_table +EXPORT_SYMBOL vmlinux 0x00000000 udplite_prot +EXPORT_SYMBOL vmlinux 0x00000000 udplite_table +EXPORT_SYMBOL vmlinux 0x00000000 udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x00000000 unload_nls +EXPORT_SYMBOL vmlinux 0x00000000 unlock_buffer +EXPORT_SYMBOL vmlinux 0x00000000 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x00000000 unlock_page +EXPORT_SYMBOL vmlinux 0x00000000 unlock_rename +EXPORT_SYMBOL vmlinux 0x00000000 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x00000000 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x00000000 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x00000000 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x00000000 unregister_blkdev +EXPORT_SYMBOL vmlinux 0x00000000 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x00000000 unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x00000000 unregister_console +EXPORT_SYMBOL vmlinux 0x00000000 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x00000000 unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_key_type +EXPORT_SYMBOL vmlinux 0x00000000 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdev +EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x00000000 unregister_nls +EXPORT_SYMBOL vmlinux 0x00000000 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x00000000 unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0x00000000 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x00000000 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x00000000 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x00000000 up +EXPORT_SYMBOL vmlinux 0x00000000 up_read +EXPORT_SYMBOL vmlinux 0x00000000 up_write +EXPORT_SYMBOL vmlinux 0x00000000 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x00000000 user_path_create +EXPORT_SYMBOL vmlinux 0x00000000 user_revoke +EXPORT_SYMBOL vmlinux 0x00000000 usleep_range +EXPORT_SYMBOL vmlinux 0x00000000 utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x00000000 utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0x00000000 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0x00000000 utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0x00000000 verify_spi_info +EXPORT_SYMBOL vmlinux 0x00000000 vfree +EXPORT_SYMBOL vmlinux 0x00000000 vfs_create +EXPORT_SYMBOL vmlinux 0x00000000 vfs_fstat +EXPORT_SYMBOL vmlinux 0x00000000 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x00000000 vfs_fsync +EXPORT_SYMBOL vmlinux 0x00000000 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x00000000 vfs_getattr +EXPORT_SYMBOL vmlinux 0x00000000 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x00000000 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x00000000 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x00000000 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x00000000 vfs_link +EXPORT_SYMBOL vmlinux 0x00000000 vfs_llseek +EXPORT_SYMBOL vmlinux 0x00000000 vfs_lstat +EXPORT_SYMBOL vmlinux 0x00000000 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x00000000 vfs_mknod +EXPORT_SYMBOL vmlinux 0x00000000 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x00000000 vfs_read +EXPORT_SYMBOL vmlinux 0x00000000 vfs_readf +EXPORT_SYMBOL vmlinux 0x00000000 vfs_readv +EXPORT_SYMBOL vmlinux 0x00000000 vfs_rename +EXPORT_SYMBOL vmlinux 0x00000000 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x00000000 vfs_setpos +EXPORT_SYMBOL vmlinux 0x00000000 vfs_stat +EXPORT_SYMBOL vmlinux 0x00000000 vfs_statfs +EXPORT_SYMBOL vmlinux 0x00000000 vfs_symlink +EXPORT_SYMBOL vmlinux 0x00000000 vfs_unlink +EXPORT_SYMBOL vmlinux 0x00000000 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x00000000 vfs_write +EXPORT_SYMBOL vmlinux 0x00000000 vfs_writef +EXPORT_SYMBOL vmlinux 0x00000000 vfs_writev +EXPORT_SYMBOL vmlinux 0x00000000 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x00000000 vm_brk +EXPORT_SYMBOL vmlinux 0x00000000 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x00000000 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x00000000 vm_insert_page +EXPORT_SYMBOL vmlinux 0x00000000 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x00000000 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x00000000 vm_map_ram +EXPORT_SYMBOL vmlinux 0x00000000 vm_mmap +EXPORT_SYMBOL vmlinux 0x00000000 vm_munmap +EXPORT_SYMBOL vmlinux 0x00000000 vm_stat +EXPORT_SYMBOL vmlinux 0x00000000 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_32 +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_node +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x00000000 vmalloc_user +EXPORT_SYMBOL vmlinux 0x00000000 vmap +EXPORT_SYMBOL vmlinux 0x00000000 vprintk +EXPORT_SYMBOL vmlinux 0x00000000 vprintk_emit +EXPORT_SYMBOL vmlinux 0x00000000 vscnprintf +EXPORT_SYMBOL vmlinux 0x00000000 vsnprintf +EXPORT_SYMBOL vmlinux 0x00000000 vsprintf +EXPORT_SYMBOL vmlinux 0x00000000 vsscanf +EXPORT_SYMBOL vmlinux 0x00000000 vunmap +EXPORT_SYMBOL vmlinux 0x00000000 vzalloc +EXPORT_SYMBOL vmlinux 0x00000000 vzalloc_node +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x00000000 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x00000000 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x00000000 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x00000000 wait_woken +EXPORT_SYMBOL vmlinux 0x00000000 wake_bit_function +EXPORT_SYMBOL vmlinux 0x00000000 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x00000000 wake_up_bit +EXPORT_SYMBOL vmlinux 0x00000000 wake_up_process +EXPORT_SYMBOL vmlinux 0x00000000 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x00000000 wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 woken_wake_function +EXPORT_SYMBOL vmlinux 0x00000000 would_dump +EXPORT_SYMBOL vmlinux 0x00000000 write_cache_pages +EXPORT_SYMBOL vmlinux 0x00000000 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x00000000 write_inode_now +EXPORT_SYMBOL vmlinux 0x00000000 write_one_page +EXPORT_SYMBOL vmlinux 0x00000000 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x00000000 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x00000000 wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x00000000 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x00000000 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x00000000 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x00000000 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0x00000000 x86_cpu_to_apicid +EXPORT_SYMBOL vmlinux 0x00000000 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x00000000 x86_hyper +EXPORT_SYMBOL vmlinux 0x00000000 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x00000000 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x00000000 x86_match_cpu +EXPORT_SYMBOL vmlinux 0x00000000 xattr_full_name +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_tunnel_deregister +EXPORT_SYMBOL vmlinux 0x00000000 xfrm4_tunnel_register +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x00000000 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_input +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x00000000 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x00000000 xmit_recursion +EXPORT_SYMBOL vmlinux 0x00000000 yield +EXPORT_SYMBOL vmlinux 0x00000000 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x00000000 zero_pfn +EXPORT_SYMBOL vmlinux 0x00000000 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x00000000 zlib_deflate +EXPORT_SYMBOL vmlinux 0x00000000 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0x00000000 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x00000000 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x00000000 zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflate +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflateReset +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x00000000 zlib_inflate_workspacesize +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x00000000 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x00000000 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00000000 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00000000 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x00000000 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x00000000 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x00000000 async_xor_val +EXPORT_SYMBOL_GPL crypto/des_generic 0x00000000 __des3_ede_setkey +EXPORT_SYMBOL_GPL crypto/des_generic 0x00000000 des_ekey +EXPORT_SYMBOL_GPL crypto/xts 0x00000000 xts_crypt +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_accept_partial_bio +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_device_name +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_disk +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_dev_t +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_md +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_queue_limits +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_get_table_device +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_hold +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_internal_resume +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_internal_resume_fast +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_internal_suspend_fast +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_noflush_suspending +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_put +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_suspended +EXPORT_SYMBOL_GPL drivers/md/dm-mod 0x00000000 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bio_alloc_mddev +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bio_clone_mddev +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bitmap_load +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 bitmap_resize +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_ack_all_badblocks +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_allow_write +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_do_sync +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_is_badblock +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_new_event +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_rdev_clear +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_rdev_init +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_run +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_stop +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 md_stop_writes +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_congested +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_init +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_resume +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_suspend +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 mddev_unlock +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 rdev_clear_badblocks +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 rdev_set_badblocks +EXPORT_SYMBOL_GPL drivers/md/md-mod 0x00000000 sync_page_io +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00000000 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00000000 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 __fat_fs_error +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_add_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_alloc_new_dir +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_attach +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_build_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_detach +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_dir_empty +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_fill_super +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_flush_inodes +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_free_clusters +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_getattr +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_remove_entries +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_scan +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_search_long +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_setattr +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_sync_inode +EXPORT_SYMBOL_GPL fs/fat/fat 0x00000000 fat_time_unix2fat +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_abort_conn +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_conn_get +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_conn_init +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_conn_put +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_dev_alloc +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_dev_free +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_dev_operations +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_dev_release +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_direct_io +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_do_ioctl +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_do_open +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_file_poll +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_get_req +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_get_req_for_background +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_put_request +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_request_alloc +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_request_send +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_request_send_background +EXPORT_SYMBOL_GPL fs/fuse/fuse 0x00000000 fuse_sync_release +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x00000000 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00000000 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x00000000 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x00000000 locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x00000000 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x00000000 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x00000000 opens_in_grace +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_check_local_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_check_node_heartbeating +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_check_node_heartbeating_no_sem +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_get_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2net_fill_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2net_send_message_vec +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_configured_node_map +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x00000000 o2nm_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x00000000 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_cluster_connect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_cluster_disconnect +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_cluster_hangup +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_dump_lksb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_lock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_lock_status +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_lvb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_dlm_unlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_stack_glue_set_max_proto_version +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x00000000 ocfs2_stack_supports_plocks +EXPORT_SYMBOL_GPL lib/lzo/lzo_compress 0x00000000 lzo1x_1_compress +EXPORT_SYMBOL_GPL lib/lzo/lzo_decompress 0x00000000 lzo1x_decompress_safe +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x00000000 raid6_2data_recov +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x00000000 raid6_call +EXPORT_SYMBOL_GPL lib/raid6/raid6_pq 0x00000000 raid6_datap_recov +EXPORT_SYMBOL_GPL net/9p/9pnet 0x00000000 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x00000000 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x00000000 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x00000000 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00000000 xprt_write_space +EXPORT_SYMBOL_GPL security/keys/encrypted-keys/encrypted-keys 0x00000000 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iscsi_get_task +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __iscsi_put_task +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x00000000 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x00000000 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x00000000 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x00000000 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alg_test +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x00000000 alternatives_patched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 apic +EXPORT_SYMBOL_GPL vmlinux 0x00000000 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x00000000 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x00000000 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x00000000 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x00000000 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x00000000 check_tsc_disabled +EXPORT_SYMBOL_GPL vmlinux 0x00000000 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x00000000 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x00000000 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x00000000 crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x00000000 current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debug_locks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x00000000 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x00000000 destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_move +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x00000000 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x00000000 e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x00000000 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x00000000 edid_info +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0x00000000 enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 errata +EXPORT_SYMBOL_GPL vmlinux 0x00000000 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x00000000 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_module +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x00000000 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x00000000 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x00000000 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gcd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x00000000 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x00000000 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x00000000 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 idle_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_class +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x00000000 invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_changelink +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_dellink +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_init_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_newlink +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_rcv +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_setup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_uninit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ip_tunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x00000000 irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0x00000000 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_add_session +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_alloc_session +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_block_session +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_complete_pdu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_bind +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_error_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_failure +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_get_param +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_login_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_setup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_stop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_conn_teardown +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_conn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_iface +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_create_session +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_conn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_iface +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_destroy_session +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_eh_abort +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_free_session +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_get_param +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_host_set_param +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_is_session_dev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_is_session_online +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_itt_to_task +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_offload_mesg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_pool_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_pool_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_post_host_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_put_task +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_queuecommand +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_recv_pdu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_register_transport +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_remove_session +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_requeue_task +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_scan_finished +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_chkready +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_failure +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_get_param +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_setup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_session_teardown +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_set_param +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_suspend_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_suspend_tx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_switch_str_param +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_target_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_unblock_session +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_unregister_transport +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 iscsi_verify_itt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x00000000 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x00000000 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x00000000 kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 lcm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x00000000 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x00000000 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x00000000 llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0x00000000 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0x00000000 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x00000000 local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x00000000 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x00000000 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x00000000 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x00000000 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x00000000 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mark_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mmput +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x00000000 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x00000000 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x00000000 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x00000000 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x00000000 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x00000000 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x00000000 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x00000000 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x00000000 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x00000000 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x00000000 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x00000000 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 no_action +EXPORT_SYMBOL_GPL vmlinux 0x00000000 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x00000000 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x00000000 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x00000000 of_css +EXPORT_SYMBOL_GPL vmlinux 0x00000000 oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x00000000 orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x00000000 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x00000000 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x00000000 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x00000000 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x00000000 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x00000000 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x00000000 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x00000000 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x00000000 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x00000000 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x00000000 put_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x00000000 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x00000000 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x00000000 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x00000000 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x00000000 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x00000000 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0x00000000 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x00000000 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x00000000 set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0x00000000 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x00000000 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x00000000 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x00000000 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x00000000 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x00000000 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x00000000 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x00000000 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x00000000 snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x00000000 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 split_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0x00000000 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x00000000 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x00000000 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0x00000000 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x00000000 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x00000000 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x00000000 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_read +EXPORT_SYMBOL_GPL vmlinux 0x00000000 user_update +EXPORT_SYMBOL_GPL vmlinux 0x00000000 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x00000000 usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0x00000000 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x00000000 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x00000000 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x00000000 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x00000000 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x00000000 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x00000000 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0x00000000 workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0x00000000 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x00000000 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x00000000 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x00000000 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x00000000 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x00000000 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x00000000 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x00000000 zap_vma_ptes only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.kvm/abi/4.4.0-1004.9/amd64/kvm.compiler +++ linux-kvm-4.4.0/debian.kvm/abi/4.4.0-1004.9/amd64/kvm.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.kvm/abi/4.4.0-1004.9/amd64/kvm.modules +++ linux-kvm-4.4.0/debian.kvm/abi/4.4.0-1004.9/amd64/kvm.modules @@ -0,0 +1,160 @@ +9p +9pnet +adfs +af-rxrpc +affs +arc4 +async_pq +async_tx +async_xor +aufs +befs +bfs +btrfs +cbc +ceph +chipreg +cifs +coda +configfs +crc-itu-t +crc-t10dif +crct10dif_common +crct10dif_generic +cryptoloop +ctr +cts +deflate +des_generic +dm-mod +dns_resolver +drbg +ecb +ecryptfs +efivarfs +efs +encrypted-keys +exofs +f2fs +fat +freevxfs +fuse +gf128mul +gfs2 +grace +hfs +hfsplus +hmac +hpfs +jffs2 +jfs +jitterentropy_rng +kafs +libceph +libcrc32c +libore +libosd +lockd +loop +lzo +lzo_compress +lzo_decompress +mac-celtic +mac-centeuro +mac-croatian +mac-cyrillic +mac-gaelic +mac-greek +mac-iceland +mac-inuit +mac-roman +mac-romanian +mac-turkish +md-mod +md4 +minix +msdos +mtd +ncpfs +nfs +nfsv2 +nfsv3 +nilfs2 +nls_ascii +nls_cp1250 +nls_cp1251 +nls_cp1255 +nls_cp437 +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-1 +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 +ntfs +ocfs2 +ocfs2_dlm +ocfs2_dlmfs +ocfs2_nodemanager +ocfs2_stack_o2cb +ocfs2_stackglue +omfs +osd +overlay +pkcs7_test_key +qnx4 +qnx6 +quota_tree +raid6_pq +reiserfs +romfs +seqiv +sha256_generic +spl +splat +sunrpc +sysv +target_core_mod +ubi +ubifs +udf +ufs +vfat +xfs +xor +xts +zavl +zcommon +zfs +znvpair +zpios +zunicode only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/abiname +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/abiname @@ -0,0 +1 @@ +93 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/amd64/generic +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/amd64/generic @@ -0,0 +1,18875 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x539affc4 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 0x1d564f09 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 0x73d48e3b suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x308453ab uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x6a1b3810 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xb102ce78 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 0x09395dd7 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x0da5bed3 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x24bcba50 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4a575c5a paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x7addba86 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x9b708ffc pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb7b806e5 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xbf375c74 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xc4a7ec79 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xcc819980 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xd6d938e2 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xde2462d8 pi_release +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xd04bd567 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x15736878 ipmi_smi_add_proc_entry +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 0x8c8ee770 ipmi_destroy_user +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x8cd218f0 ipmi_smi_watcher_register +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 0xdc75c9a2 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdccf6b65 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 0xf3004510 ipmi_register_smi +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 0x0b4b1a82 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x5da66507 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6e980e6b st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7bcb154f st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x021026c3 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x0c191841 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd74d2cfd xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x36c9b137 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x39a86511 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x39cdf3ae dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x48bce55d dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x9c5d31b4 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf5d67048 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/edac/edac_core 0x106fa843 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04f12a38 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0828fdd1 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x131b2f31 fw_iso_context_destroy +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 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ccd336c fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x44e4c2e0 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x466a781b fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d86050d fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x528b2928 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62581ff4 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 0x6b411c2d fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8b429809 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x902643c2 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9fb0c9f0 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb2fabf0d fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbad21499 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbcd7db6b fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc4605c2c fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc4f85c7c fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc6c5716a fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcbaf0966 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd39211e7 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xde163607 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xde8fae85 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe379d4be fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1aa021a fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf5a39768 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x2c2f55d5 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x4a5d5224 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x578f1678 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x61ce7d51 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x809c8d06 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x881cca8d fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x8966dfa8 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc63da162 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xce857d45 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xeced81a2 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xf7f6cd3e fmc_device_unregister_n +EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0xb178372e kgd2kfd_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00929a1b drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x020c466b drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x028a1e9e drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e32e12 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x041873a8 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x051e5714 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x05b2d2cb drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x073a5c9c drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0844e263 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08776064 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08fe6578 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x094c650f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09d80c6c drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a111a7a 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 0x0bbcdeba drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7cbcf4 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d390e63 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d8d1d41 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0db1fa13 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e4d0190 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0eb6b05f drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f1c886f drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f441d93 drm_mode_create_dirty_info_property +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 0x11a11242 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12b9733f drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14d0f4ee drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15f6929c drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ca5c8f drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16eed02b drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17526afe drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19a468c1 drm_dev_alloc +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 0x1b9e82cb drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c285377 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dcb01d6 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e8d1a44 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ed68791 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f712ecd drm_crtc_vblank_get +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 0x23e709a1 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24b615b6 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26ecd2d0 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x295e8d65 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aec9fa2 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c6ccaf7 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cd2437d drm_crtc_vblank_count +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 0x2f1f2b20 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb9f291 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x306a354d drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x307cfd82 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32c1a0c5 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x343a2ce2 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35b1906c drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x362796f4 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x365361c3 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x382a8769 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3851734c drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38898d63 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39350fb4 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397bb4d9 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x397f3687 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39937656 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39fe03e9 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b488eba drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c462df4 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ce41e4a drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d3730df drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d523518 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dce49dd drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f0abe1b drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f805125 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3fd78f2e drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x414c8110 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a46647 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43265764 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f8312c drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x447174c4 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x449b7858 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44ae1672 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4647ad9d drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x467ae903 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48900486 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48da1b25 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48dfe1a3 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a6e2aa6 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce7331c drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea2374c drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fbbad27 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x510394ab drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5299467e drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53751cd4 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x558fdd05 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55952fd3 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55bb1ade drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x561aa32e drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x577920d2 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599be623 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59bba370 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59cc3cf8 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b23c3e9 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bb3a5df drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c9dec47 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d3d7286 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5603de drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ee2bed3 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60671ed9 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60af1bc1 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62aff84a drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6332c6d1 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64b4bc0e drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x655866ef drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68a997fb drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68c94159 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x692abbcc drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b8ead09 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c9fb0df drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d0d850a drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d1a6daf drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d5e85f3 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ee9fa28 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f5c3a4e drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f732501 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71772fd5 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72bdaa78 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x733d6196 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7462d584 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7529259c drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7746e2fd drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afdc644 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b277f52 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b729462 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bfef0fa drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c80000b drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81a733ad drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f6998a drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8357cd64 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8392976b drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83adcdce drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83ffd9e3 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8602df6d drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86fe1cb0 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x874b6d82 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e9b761 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x889b9c4a drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88ee7aee drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x890cfe84 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89513b21 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8992651a drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89e2c063 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b276bb5 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b667f97 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bb546d3 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c943040 drm_sysfs_hotplug_event +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 0x8f3500af drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fc8ce95 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91fec1cc drm_rect_calc_vscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x920131f8 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x922b6134 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92408488 drm_mm_scan_add_block +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92b49cf5 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92cb1c54 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9325cedd drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93e8be6f drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95670d05 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95794818 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957ac599 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95e28072 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x974f2ca2 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x989444d4 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98af7efc drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98e4b0c6 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aac0ee8 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b74c542 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d25e0ed drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d72c278 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dad7943 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9de8d788 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dff9a98 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ee9ff6a drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f1b5396 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f585e99 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1916997 drm_invalid_op +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 0xa2b602e6 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3317a53 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa567ca8c drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5711d55 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5a5a2f0 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa873b867 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaab0d432 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac375750 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacb5ab1f drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae323d28 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeb8ca03 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafad4e1e drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb08888aa drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb209b1d6 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3404bfa drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb34de41f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5423c7e drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5d0334c drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb630a4b1 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7fbc03a drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb83dd720 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8a9aaef drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8de50da drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9ca06a8 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba6ddcfc drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0eaa3f drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb5eee69 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc19cb59 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcca8e27 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbef1841f drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc05c3ef9 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc092e853 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc127a736 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc17463f6 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1e98d8b drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2475adc drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc24a9c6d drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2a2cc86 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2de5f70 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4d3342e drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4f9ca0c drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc50153cd drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5465430 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc58ad219 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5f0ad48 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6260e55 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7cf12e4 drm_atomic_get_plane_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 0xca9c3c0c drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcae5c471 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb57b629 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcba7bdd8 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbd43579 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc6b8ed4 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccba6572 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf2bf2e drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf28cb0b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04c1cac drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd61a4598 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6f15741 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7e66942 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9e15a85 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb78ba13 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc71a0ba drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcada699 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd076a2 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd5a8d5f drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde009abe drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf2df35d drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe003ac34 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1f61db5 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3b79801 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3ec0ea8 drm_pci_init +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 0xe5cee6f2 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6392d0d drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7a8fd0b drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe815e24c drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe84d6094 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9e3cc6f drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea65d55c drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb06d337 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed18f124 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed5aeb62 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef1a1a62 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef9983bf drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf16dcd83 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf30436e4 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5ca4548 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7680151 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf80a6ea8 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8ee08e2 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8f6c6ea drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf946e896 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb061c78 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbdcfa9c drm_crtc_arm_vblank_event +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 0xfe425dc7 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfec15aaa drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff84606b drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00e544cd drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0397f260 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04f5093f drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07aba32d drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08942c85 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08fd9a7b __drm_atomic_helper_crtc_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 0x09f066d5 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a3a5091 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a9d2436 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0b2e97a7 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c9e7365 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0de49be5 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 0x0fc425ce drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1014f45f drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1133c41b drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11765aa8 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16a0c48e drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17f0c7cc drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x186ae7ae drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18b8b291 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18dc19d8 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d1a2b35 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d63d8e2 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1db3b79d drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f9b971f drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x209fd1e5 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21de9425 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23e5ed31 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23e7f2ad drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25153414 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262fc7b2 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27bf722d drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28355b86 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c65b1c0 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cf180bd drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30ff40a1 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32ebdebb drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37fb0f05 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38a39494 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39d15c26 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a1c88aa drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a4bc772 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c2f26f6 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dc4a8f6 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x454dd03d drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45a6f8de drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45dcc15c drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48894562 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4965e2b2 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a58e728 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bbe917a drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f1f5a77 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x504da5ab drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53ba956d drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58b36be9 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58f0c0b2 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a69fd6d drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c2d3f65 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d822189 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ddc765f drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5de3e924 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e225c42 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x62156ea1 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63c696e0 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64f53fc0 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x651fb3d4 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x655a1ebc drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x665f572b drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x693b1881 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dcb3e76 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x702a1578 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71ff6441 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72890dd4 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7999983f __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dd77d51 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f3c4b26 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f7732c0 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80b68346 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82d11fad drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x835fdf69 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84323e91 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x846b0d06 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8749e4fc drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87bc2dee drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8adc2b46 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d135aaa drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d261acc drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dac0441 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x908b64fc drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90a61e48 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x917e8c56 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x92366ebb drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x939b081d drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96664b0e drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x99e0098f drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9af3be6d __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b6cbd5b drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c54924a drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e35c206 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eb79238 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa40336c8 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4b222a1 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa802b40f drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8aaf992 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d75508 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaaff6dbc drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad46e675 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadb3a7da drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaec3d940 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf633161 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb63b734c drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6adb01a drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7a0bc3a drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbda540f7 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf35e22c drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfffd7ec drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc02ba512 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0426376 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17d7a47 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc17e733e drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1a8b683 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc634ae37 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6902c50 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9a8440a drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb99c9c3 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd6a6c92 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfa57dc9 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfb7b5cd drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfeef963 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1a7f4df __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd33b45b1 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4b04314 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd539609c drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd61f53f5 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd92dcaaf drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc95460c drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xded5c11d drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe08f8cba drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0d3a321 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xed53e851 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6fd63a0 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf896694d drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x033a94be ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b42c8d3 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x177b02cb ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19558f9f ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x22ec80fe ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23e17120 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x24765c33 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x28a75193 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2aa8b3e6 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f738c77 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31efe9b7 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31fdd852 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x32c31f0c ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x337f74b4 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36632f85 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4029bf80 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x463da78b ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48255814 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b887ced ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f2d08d9 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4ffb13e1 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x536b93bd ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x587a2c57 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x594fa78c ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ad73211 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63814160 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c73f5f7 ttm_bo_synccpu_write_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 0x740f6bb6 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75899e8b ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x78421aa7 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7b5f4e3b ttm_bo_acc_size +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 0x848eb192 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86dbe44a ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x87142230 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8813985e ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x88a390b6 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e188cd2 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91e466db ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x920a4b53 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93788975 ttm_bo_kunmap +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 0x96a20869 ttm_mem_global_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 0x9ad4df0b ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa03ef3de ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9e0b967 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1b6844d ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb29fa9c2 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb360660b ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb63056b3 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbaffee87 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc14562d4 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc17788bf ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc49fd374 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc614e90c ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca2e6ef5 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbdaa4f8 ttm_tt_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 0xd04bb004 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf423fd52 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7b6508b ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x80ec98f7 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xe1143e15 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf1f77f89 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 0xf64592a8 sch56xx_watchdog_register +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x9d8513b9 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xa9dc6266 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc6a47203 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x201441d5 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xeb63994e i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xb1126890 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0d466f1c mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1759e907 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x418e332e mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4f5a6e1f mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5c9d3aca mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x79d18852 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x91d8688c mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x972d84da mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9e4b783d mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa926e69f mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaa5f277c mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xad93ccd2 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb8217a07 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xba2ea50b mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc259b048 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb55dfb2 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x52a2b81f st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe8f6ba28 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x844539cd iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd0d3b180 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x02aaed91 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x12a52154 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc81d202e iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xe7577f75 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3a89f09e hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8171d1dd hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa442074f hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa8a8ca56 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa928b9c5 hid_sensor_write_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 0xd02fb64e hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x41f44589 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x53eba025 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7da87b45 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x98d767e3 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0f12d354 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x16199320 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1ea9e82d 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 0x3361b2aa ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x71fd5406 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x77a94b08 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 0xc699d58e 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 0xd80efdcb ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xe4f2225b ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x387c8356 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x44a734d0 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5b5a8599 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb4e295cf ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe18866a7 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x27daf182 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x3299dd41 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5e37156d ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x01a9205e st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0f91a092 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x19bf4ebe st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x23bc6551 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2788f00a st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2b90509d st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2d240b51 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2dab5628 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3455be8b st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x59c6cb89 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x64fd9d57 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x678d7fd9 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7a00bb67 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7beedd85 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7f9069e5 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7fba9ceb st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa6229375 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x3722f3e3 st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x715822c2 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x8e4fb75a st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x51a42397 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x605ea402 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xd619a54a hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x23f72392 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xbb891d63 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x0955f098 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x188e8b16 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x309da92f iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x38c05415 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x3b93a255 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x4a68a726 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x50d073d3 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x595f9a7d iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x59999be6 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x5ba9653c iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x6b16d071 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x7baa1387 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x7e1f88ec iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xa6d543bb iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xab003001 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xade5a13e iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xffe2b65e iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x24d76d7b iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa508a1e5 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x06d4a473 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xdd9f984d st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc7213017 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x46f0f829 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xbbeac334 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 0x4cfb00a5 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x58efb699 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xa72d9ae8 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdbff8a13 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x090ef1b7 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1f8fbad0 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4fef88f0 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4ffa9229 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x515f1e99 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x55a70068 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x59b13401 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5e48a9f1 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x630438d8 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x687e9398 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x73f85a31 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x77f828f2 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x82d66478 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa4f9249e ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xabc8e8f3 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xafda366d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc58571a1 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcdbe0a60 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x009045be ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08c5776d ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ca7a25b rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0dca889a ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x103f0cfb ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19e07408 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c5c75dd ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d98d9a8 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21962976 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x245555d5 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29d28d8e ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2bef86c0 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cc6f6a8 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x342fda32 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34e31a38 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d8ef0a1 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41a3f23b ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43f97598 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4456d68a ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dcb2d9a ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52041204 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52cb8629 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53105145 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x567155ee ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5840755d ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x607ab7c1 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60d595a1 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x642012cf ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x656aa4bf ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6852cd4a ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e25e687 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74eeb1e7 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79689e9d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bf946e0 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x887f1da9 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89883fcc ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8aa7033e ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c9fa875 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9118ea0e ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91f9d63e ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96900fa1 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bd2f4ab ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d8ec0e0 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa271b1d0 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa63c3f35 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9095d13 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf323019 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3b665b9 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5089bdb ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb513f16e ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8c8fe66 ibnl_add_client +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 0xbb8ff73c ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbeae5bf9 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbebf8068 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc147560e ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc49a90fd ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5c24173 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc70b16d1 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc785fe90 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc7e3e657 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc88fc2b5 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc8c966ca ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb752a7f ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0251173 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd804dd84 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa5474b ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdabffa80 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdef3d5c5 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfa4217e ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe04d2713 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1c80257 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1e868b3 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe63ef30a ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe950ec98 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed0eb6d1 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xedaf921f ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeeb37fdc ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6ec8937 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8e7632e ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfac1b910 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcf3ea59 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xff78e109 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xffaf316f ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0ab1b06a ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x129d1bd9 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x12f63835 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x16398d7c ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x484d4757 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5414d558 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5aad1128 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6bd01d65 ib_cancel_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 0x9147259b ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbaf6e9a0 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe0fa8255 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe5acca53 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe8857f0f ib_unregister_mad_agent +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 0x6254ef5c ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x68e2bcd5 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x74b8b654 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x99b9fb2b ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa1246dcd ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb3f3e328 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc97c0f64 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd8f48c03 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe863142c ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0645aed8 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x1c072cf9 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 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x347df510 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3f82934d iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4b52d29b iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x572f90e3 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5d0cd559 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 0x73f04248 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x746fc79d iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x784a4447 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8ae984b6 iw_cm_connect +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 0xb17fb7c7 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcf368a12 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd4288462 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd437d567 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xda93533b iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xebc69a82 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x014e4da3 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x069fd61c rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11565467 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c36c24c rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3c225e0d rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42848885 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x42fc1439 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x430c0ffc rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4a0537c2 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58938635 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x869a8f91 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8954e6fc rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b041ece rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0b102ff rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb7143d92 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf71fa64 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb28a904 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcd07ef50 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5675796 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe6530faa rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf22d4829 rdma_resolve_addr +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0a4c6edc gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x558e46bc gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x600a9ba7 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6713d950 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6df93cd6 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x792e63bd gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xeb0e8459 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfb037c7a gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfda70e16 __gameport_register_port +EXPORT_SYMBOL drivers/input/input-polldev 0x10f8d34c input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x5d4c5e6a devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x95231941 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x9ba5866d input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xadb8553c input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xed500590 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0111d2e8 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1daaaa84 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x2de7474f 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 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xf80c08e1 cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1d989d10 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x20f97acc sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x26778291 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6f2b7ee8 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xaff8af84 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfdc0380d sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x4781f661 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xee3f5aeb ad7879_pm_ops +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x078b1f9a amd_iommu_free_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x13f90eb8 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x30557219 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x3b72d063 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xe1ea30fa amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0xec3c5190 amd_iommu_set_invalid_ppr_cb +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 0x27929389 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x28709aeb 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 0x2cd96760 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x349a4487 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x426291bf 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 0x649da5f3 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x677915a9 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 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa3748791 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xae7791c3 capi20_register +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 0xd7001705 detach_capi_ctr +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 0x0a50089c b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0b2dc6c4 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0b9bcfcd b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2206508e b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2e59a1cb b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x58bd46b9 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x61a24624 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6de2eef0 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8a0e52b5 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8cec369e b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa0145255 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb06b0d65 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb877cae0 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb8e59054 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdabe8053 b1_parse_version +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 0x0a49ecb1 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x13b69473 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3089f846 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x53068d30 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8ce217cc b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa5f6c3d3 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xafe02d04 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb3de2150 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfcc115fe 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 0x472ddd4b mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x8a12e18c mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xae2df92a mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xdcc5b8bd mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0a964294 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x65e99fce 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 0xac44ef13 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 0x34bcda69 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x5c4589f7 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xbc21a541 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc6c1d33f isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xcb1e005d isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x169049ba register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x1fcbf54f isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd3fc1749 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 0x0116c5f5 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x079ca7e7 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1a6ce6e4 mISDNDevName4ch +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 0x45ccd81d mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a90930b recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51097eaf mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5438f9b3 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x58bb678c get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x599e9a69 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5afd03bd get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x67fd6978 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x70fcc0e6 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x758c2f2b mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7ee01536 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7f931181 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9eb6587f mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa2924a28 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaee741a6 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb6c3311c mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbcce3c64 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcbe7c4ab mISDN_register_device +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 0xde0d2674 create_l1 +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 0xfc1011d0 queue_ch_frame +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 0x455806aa closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x592008e6 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x68af3d0a closure_sync +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 0x9c507167 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 0x46b9807e dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x846c174d dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x8e06e418 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xdd680e32 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x188dab18 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x551f2232 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xab025316 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc7865702 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe8b023f2 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf3a4f321 dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0xe238f0b6 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0fe44138 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x30ecf1d2 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x48eb2621 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4b2bc59b flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4f1e6d3e flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x55c55e0b flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x81606826 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8fc89fc5 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9fef676c flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc0214cf0 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe30e6514 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xea0c3e7b flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf3e7a2b8 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 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x41223d99 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x491bcc15 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6256d80a cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb3fbd27d 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 0x47ed3a11 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0xc718e981 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xc7907c7a tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08c0ecf2 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a48e789 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d3c856a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x104432e7 dvb_register_adapter +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 0x18e0baac dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1bb32f3a dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1d3b4573 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1ea1339b dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x27407dff dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3176bc2e dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3539f64d dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x45c76b38 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e920e3b dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5544f246 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e18e7fe dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e4e97e5 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x676577f1 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7e2c2197 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8a140605 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8bcbbafd dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e1859c7 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x969726f7 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9742712e dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d642fca dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1810f66 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd67d783 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd8f4533 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd018d8c7 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8988b7b dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc3cf59b dvb_frontend_resume +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 0xf5c1ef39 dvb_ca_en50221_frda_irq +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 0xf87326db dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xee6bf4e8 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xa1912c43 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xfc42f6dd atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x041f536b au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x046276ce au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0dcc0b17 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x89e3c934 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8f6090f7 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xba5ac286 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc32bb4c1 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcb830149 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf55174a7 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x8036d335 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x246f452b bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xbd9eb24f cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xa5486873 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x72077e93 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x29f4c7ba cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x71d94df6 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x184d8751 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xce8970a6 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x1607e81d cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x3c9b8dd3 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xfc7a2fab cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x052606ae cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x177435b6 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xef656c1a cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2f370e57 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6131fdfd dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x7257cf0a dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x83af7595 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xffc8131a dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x096a8e78 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x20c8b0ac dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x23f7a551 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x241e40fb dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x33096760 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3cf083c0 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x47305373 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x53fbb19b dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x62da3bb1 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8964c902 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc5ce25f7 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcd0edc28 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdb732b35 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xebf43a07 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xff660846 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x16d73c01 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0f349e5e dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5fdda980 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6c062524 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xb3cfce91 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xda565ea2 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdce78fde dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x13890c49 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x18695f26 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8277bdb0 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc74f207d dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x169be857 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xbf2a304a dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x22c408fd dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x39117cea dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x755aeafd dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x812a3f78 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8cc0913d dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x5c335334 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x800c87b1 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x6e09b140 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x25238b59 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x6d7e7a8a dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x19f09b4f ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x9903053a horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x5614a80a isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xf5597383 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x7de8196e isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x325a2875 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x173a0636 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x4222cb56 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xa36c2a32 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xf45f6356 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x361a28c4 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x5dedd0dd lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x2955aa59 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x4d7e7c9e lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd0f322f6 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xf516be44 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xc0bcc83b lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x0977d7c5 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x135f704f m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x92c10232 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x59aa51ee mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x4b98de41 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x3328d025 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x305f3dc4 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xbd463a42 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x8cd39b72 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x0698ca77 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x6e9b4c00 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x5607bafa s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x404e8a44 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x27d87d7f s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe59e3e0c s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xb6530b64 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xe04552d9 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x1a1f0aac si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x84bb7f18 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0xd70ebdd9 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xf6e49007 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x76e260c9 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x21950b50 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x8110bca2 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x40ce74bd stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xd3380f00 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3919b156 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3a40894c stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x1cd30809 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x491e70a2 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x47003761 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xb88d6474 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xb8548daf tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xb8a125b5 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x77e6a907 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x0e51bf00 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x3a441768 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x99da6ca5 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x864dc70b tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xd024b213 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xf6bf2b98 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x91122bc1 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x6df2e503 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xbd28fd08 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xf8ccf55d ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x4a611eb6 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x4c8bd487 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x15b0dded zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xe2b4fcd6 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1c1dece6 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x41f5d439 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6b4d669e flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x99a8f055 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb7d4fa53 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc0bc9722 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf03dd41a flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x294f7680 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3bdf7a86 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9b7e9ca7 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc93ba44a 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 0x4bbb3df6 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x5567e5bb bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x5de5f0f5 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 0x011d8993 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x065a866f read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x14237884 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x26a7a341 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5dd17eb6 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6c23b379 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc8f42fe0 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdff6bab7 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf9975a4d dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x724f00cc dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x69fae04c cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x84cb489f cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xab6600e5 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc4703853 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd83e2cae cx18_claim_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 0xe1526380 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x42419b90 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6427fe9a cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6eb67078 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6f2b3253 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x70b98163 cx25821_dev_get +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 0xd521f84e cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfe9a3d63 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x148ce775 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9ed503bd vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1fd99628 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xbd1f0d98 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc02f3e8e cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfd85c56c cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x05897eb9 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2d33f02f cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x605632b1 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7ed4b1f5 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8e6d44cf cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa14cdd37 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcc8b0ea6 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x00c61c8d cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0d944bb9 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1247ffae cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x14d654fc cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x211f3aea cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x24d51851 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4283b2a0 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4836b36a cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5d7d1b6f cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x722b51e8 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x72b80e01 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7582caa3 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a3d5074 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7c918fd9 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83444d24 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x946fb554 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xac6e713b cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcdd8ee23 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd0e71bfa cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe57b5fb1 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1e3d7657 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x38625f19 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3980ff86 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x41bef79a ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6540cea1 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6fac6d75 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa2370528 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa46dae4d ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa9aea445 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb378a80d ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb7ec71ff ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbab83870 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc1b6b6c5 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc95cc39a ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd36499ed ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe75386c4 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf044933a ivtv_start_v4l2_encode_stream +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 0x33bf951c saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3f4b9eb3 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4935b344 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4947757d saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5eda5d2e saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x648b90e6 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7803e926 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x81770ec9 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x86e9ed42 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xca746d0e saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcbc2fa73 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdd3583de saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x08b2c42e ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x409adf43 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x465aea07 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x73498679 videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xf2841485 videocodec_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x057ed3f6 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x32890310 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x63b2ade3 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb079ec66 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc22a4982 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdea265c4 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf455a25b 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 0x0dd2d76a snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x88084cd0 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9fc1a397 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa1f80a7e snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa29335cc snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbf71ae8e snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc6f0ae1a snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x1e4170dc lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7f7db670 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbc66e527 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc3cdd288 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf7d0a2d7 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xf8af5ea6 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfc4eb766 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfd642e2f lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0xaef1c5ca ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xb6a066c3 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xce6a8767 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x19f42a9b fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x70bbb594 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x819be0a1 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc929ada7 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xe54d877d max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x4f8aa6b5 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x0b3d5a77 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x3375ed52 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2596af4f mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x5df408e8 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x5c39ac65 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xd6252ff8 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 0xd49fcafa xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x7cf4d46a xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x4d78e4d5 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcc0b7bfa cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xe62c1acb cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2882fde7 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x45976976 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x45c95254 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x45f99d56 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4bbf32d1 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x72373c75 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc94e0c43 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xebdd2f80 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xfefba225 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0a9afed6 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0c5043a7 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1e93238c dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x26f1199c dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6bbac2b4 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc89aa90f dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdbe260f3 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x083676a1 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 0x203b4b18 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3b65a7a9 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x57858485 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7293e401 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 0xb7f34d04 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc335f764 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcc1e0ec0 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd09162cc dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf184acc3 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf72004bc dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfb523ba1 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x497db546 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd0597015 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0c664397 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x17bf3b65 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x3f00dac4 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5b5f69e2 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x78e560b2 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8891ba22 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8e6e0dec go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaca9e857 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf017b0d9 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0a2e294c gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x24b780a8 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x321451be gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x41a56d6b gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7be6c62d gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7e39fb74 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xaaab9f72 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb622ff1c gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x2a75a225 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc49a4372 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xf8c9d9c8 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0388090f ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x284f08c5 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x154e8114 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x372349d9 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 0xfe236c4a v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x255c9163 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5ace740b videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x83f22751 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa54c0d86 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xac31b98a videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xed3f9526 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xa03407a1 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xae25d498 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1ff153f5 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x3eee8184 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x794acc73 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8e0807d9 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x999fd6b0 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc9496925 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 0xd4159c3f vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x03804623 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06ad36f5 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0781b4ec v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08fcefaa v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09465be9 v4l2_async_notifier_unregister +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 0x191deeca v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1e787be2 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x246e0318 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2512f69d video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c8406db v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30d373bd video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33f519d1 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x37ef810b v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39107c34 v4l2_querymenu +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 0x3df9d301 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4353c7e1 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44399ff6 v4l2_async_register_subdev +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 0x4b37e7c8 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d45fcd3 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x50e272c8 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54c573b8 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x572199eb v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x584b52a2 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58baa933 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c40dc5a video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f2ab9a3 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73c8c531 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77ae3bba __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78782191 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79701e9d v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7fe239c1 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8480dc61 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85847f7c v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x89d915ff v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cea929f v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90c8625e v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a2e727c v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9c7bdbce __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa3cdb4de v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa6cbb06a v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa93acb83 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaa2ac871 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xacac6a4f v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf451377 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0625b1e v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4681366 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5f91f6b v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb732bd51 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb898f36e v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca00182e v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca6653be v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb4998dd v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce135480 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4b73f05 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5c8a0dd v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8e2708b v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda56502e v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2a72569 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3df14dc v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe41f2fd8 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8b380a5 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe9b683e2 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec71c349 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedb02b4d v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf02ba60a __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf51f53ac v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6e70964 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb8f1a3f v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/memstick/core/memstick 0x076ff6c2 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1eb1fe15 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2747b2e1 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3fd6b0fd memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4903d458 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4d42ad5a memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7a2c13f4 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x879d42fa memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9f7451d0 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb4b5c33e memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc7926af4 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe7b19a0d memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x02eb34c3 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0876e9e4 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x08fa7c8c mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0ef7d749 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1831dc34 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x20e173c8 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c4cd74f mpt_free_msg_frame +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 0x5ab6efa0 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5d1fa99c mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x621cff61 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7e27879d mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8747d00f mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x948206ff mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x977974e4 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa8a3c541 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa8b40ce1 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xafd5432b mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1e8cd8b mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb665c8e9 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb67e459d mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbfa43753 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0f73b77 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc9232457 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd04cee79 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd3f1149f 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 0xecdf167b mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5f15147 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf69122fc mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfd86fa16 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1102664f mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1318d4b4 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x209b8805 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23a86e1a mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2e6be94e mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x55250e45 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6769f492 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x71316ed5 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x848e73ee mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84e69b3a mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9a3a2f08 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa04e55d5 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa4b57090 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9bd8dd7 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa9e2c9de mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbf819955 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1cca71a mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc8c4da37 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd5fdfdbc mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe1b37058 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4ebaef0 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4f49df7 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xea38f2c7 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xefeb3066 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb9568f9 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfc914cf7 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfe92f28e mptscsih_host_reset +EXPORT_SYMBOL drivers/mfd/cros_ec 0x360f23e4 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x37e7661f cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x6dca261b cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0xa95aef51 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/dln2 0x10b37228 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x216aeea1 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xe264e468 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x2aa0af6a pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xce883e77 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0896e7ee mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0cc3b745 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5cc9631d mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5f06369a mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6290e798 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x67259b5f mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c609cb4 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbcaf96a9 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd0e062f9 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xeff66c2e mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf054e74a 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 0x93ee4252 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xf0075a1e wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x07d88743 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x37c1a148 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x9a9918fc wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa8a3a365 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x12e2189a ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xdfc1e9cd ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x13090222 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x11e635d8 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x23681c51 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x09ba3bda ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x2ec313e3 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 0x5f21ec58 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x5f2f635d tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x658fcf36 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x6665efb4 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x7233afe6 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x94792434 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9f296279 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa5ccdad8 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xafe54a52 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xb0928520 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xd2521fa8 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf540f1be tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xc724b94f mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x52c37f34 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x5a9da730 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x68bde47e cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8cc708dd cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9e8bc348 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa4a408eb cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa7f8c7b5 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x14e897ca register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x19fb7803 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x21c3dbd5 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xffa23d95 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xea7ea6a3 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xc52648ee lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x7a340b79 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x3016c809 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x69c1a97e mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x0852aed3 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xce6fa3fb denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x16ccc644 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x3fef338f nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x7d9c9fd0 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xdeb4f846 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe36278d4 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xec6ca328 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 0x7a77e134 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xd885ef95 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xde5f7f13 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x2445d53e nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x55e77e31 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 0x1e9169bc onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x1f71d7fa onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x4c00e4a9 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xbd77ffd6 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2563f825 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x59a0b123 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5c09d1c8 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x82b9808a arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa38ac991 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xafdbc225 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbab06926 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbc49a985 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbf44726b arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdf84c463 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x3065b820 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xb04db29d com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf0825dae com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0697988b ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x21c9ceb7 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x25c6d342 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x554c234b __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5b871ae3 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x68fa69c8 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x87f4fec4 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8cf630db NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb5674c7f ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc0e29227 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xd6c410b8 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x3359bcb9 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 0x120b6190 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1a961064 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x27b746a7 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2b755448 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b855fd9 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5122aec9 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5ca170a9 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6b88d407 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7fe33164 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d38240f cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb735258a cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcbcf80e6 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd58571a6 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe190472b cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe6a3d89f cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfbc0c266 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x01efbbec cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2af0cb36 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2bf0fb90 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2c012a92 cxgb4_port_chan +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 0x35e3caa8 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3fa4f05b cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x464b6295 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x47d42af5 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4cf33885 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 0x559e6779 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x57707dfc cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5cd028b4 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5f767c5d cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x63b71de8 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6453e65e cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x695ac559 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7063adf9 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a6ac12f cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9ba7c16d cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad390c0c cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbaa33420 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc6aaa07f cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcc5a345c 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 0xdf0dc6d3 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe637db4a cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe68c92f3 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf1465d32 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf2a41334 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd926e0f cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1f053bd7 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3659f35f vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5d2ff5e8 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x8973adf2 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa551f4cb enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc7e62ee8 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x606ddcea be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x862470bd 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 0x0108cc1c mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01cab820 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c3964e9 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d0d6834 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14c6470f mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e3fb861 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fe875e7 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3159b090 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33193b0e mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b8072d5 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fccd70e mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x597a13c4 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b3a2f7d mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70fc2982 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x757a2c99 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ba852b9 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d617aee mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x818ca65e mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x847b0d9e mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a65a525 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b63df95 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6131841 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb287af55 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4f7f14c mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5528032 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf79762c mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0708592 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc346c12e mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc54d9dc0 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc3ebc61 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xddf9fa5b mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1c9f5d1 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe45bde26 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe70286ee mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefa1d3fc mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf07618f7 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcc99289 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff878468 mlx4_SET_PORT_fcs_check +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 0x0940997d mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ea8612c mlx5_core_get_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 0x1098fa3a mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x137dca4f mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e2f0383 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24184c8c mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24c9fd68 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26dbefb8 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27e26a83 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28c08df0 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e1a32f3 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ef55b98 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34def9b9 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x446cbbed mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44c701f2 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x494a7096 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x50fe17ed mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x548d0232 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x594fe34e mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c61b816 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64c281ec mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6838c9da mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x834e3368 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84212dd6 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85172580 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d43dbc2 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x947f7205 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9957b88a mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab516587 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfd8b771 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0f80db7 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb44cbc5 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5ea8c8c mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4cefae6 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4f3198a 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 0xeb50e055 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed5ebdda mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf37d068d mlx5_core_destroy_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 0x03474ef4 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0a19e4b8 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1f711071 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 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6596036b 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 0xddc96339 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 0xe35d64ba mlxsw_core_bus_device_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xe6222492 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 0xf4ea8427 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 0x0b9216aa 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 0x2c342f3f hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4327b5e9 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9f2bc29d hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa27d0fce hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xaec1f6cd hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1ad84a9f sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x362bfc1d sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5174105a sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x61ec04d3 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x83bf1825 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x85bbe26d irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc36c411d sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcaafffca sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcf47cbb3 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe8f191d0 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 0x3e068ffc mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x68f2dc69 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xa81277e5 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xb8e665e8 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xb9e3d2ba mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xdbadd5b4 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xe6f6fae6 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xf22085cc mii_check_media +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x2f190f49 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x44ddaca3 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x7897007c cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xf0d4ae5e cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x2feda453 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x7ec52ea5 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x8d402d88 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0x14fae150 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x00c04880 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4d8a06e0 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb320e446 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x8c93be4e sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x02533733 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x0444ee4e team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x352a71ae team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x44540887 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x7f962203 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xc98f044e team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf0d514b9 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xfea3edb1 team_options_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x06cc8828 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x5b669e11 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9f07e893 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe9dcc164 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x09ada367 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0c5588f6 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x12126233 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x211c24b8 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x57c1094a alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9a086d52 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9f4bc772 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc3e981b8 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcd3c48e5 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe0072d8f detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xea0e45d4 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x7d8a6305 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x46e5a251 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xeac073d9 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xff592f3c reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x15963d4f dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2cc53355 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3a984cd5 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3c395283 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x57e459c7 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7d37d32c ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x95cc9158 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xae0ebfac ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb0326215 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb32eef24 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc143b640 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc36524ee 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 0x1565447d ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x283a4d2b ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x29b126b4 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x383675db ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x3ea92aad ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5fa24b48 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7f2f0291 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8019cfdb ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88af6c7c ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae4528e7 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbb169062 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd8f9f826 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe1d84f49 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe974b193 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfdf805bf ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0f1a83b2 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x13391e1b ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x206f7498 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2b7d89a4 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4fd6af7d ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x697bab99 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 0x978f990b 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 0xa9adc4c9 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc3f46a1d ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc6eee7b5 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe6b88b6d ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x16582b53 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1c0cd848 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x21bc774c ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x32a6b4f7 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3ab5c5c5 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3cbea8fd ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x45afbfa3 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4f19c099 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5d7f5978 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7cfa5f40 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7d87d12d ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x815730a1 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x84b66c37 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8950f811 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8e618a11 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9e696038 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb337d263 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb6834698 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc0791def 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 0xd7ed4a75 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe906761a ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xeb7b7ead ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7e3ee34 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02fe6c87 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03708a19 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03cb725c ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x05e5ed08 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c5304b5 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13092ba3 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19688f11 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bb13d1f ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1d892320 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ddb66b8 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20578f2c ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x228a4825 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2641e6ea ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2672d2d0 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27e8724e ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x293bb358 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a21031a ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c60ff28 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x356d8b35 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38bffb19 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x39ee43fb ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c02cc6b ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c16a36a ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d068dea ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x428a08f4 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x432c0188 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46cf8704 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a418627 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4aec8afc ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b744834 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d93bcbe ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e5e6713 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f922baf ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fd99765 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x51d1eaa5 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53c05f19 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58f8d296 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a26dcd5 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5acdec86 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61210a40 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63cb4105 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65807f00 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65aae336 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68737eef ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a6534b4 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b3a2ec2 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e4d2e11 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fd678c3 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73e918d2 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75d39405 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75f044a3 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x781a0665 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78fe2ccc ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b21683b ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fb4ab65 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81100cd7 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81e41350 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86ae984d ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x886f85c9 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c782b87 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90717d4c ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92dc897a ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98b85080 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9903b69d ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a6c5e2c ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9af6b6c2 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0a3794b ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa209269c ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3d86a75 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7ae2171 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7bd89f6 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8ca8522 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacdb7d51 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad7807a2 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb031c88d ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb23a6405 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb246ed74 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3acb6fe ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb532d7ae ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5baa1b1 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5d12804 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7c355e1 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb955240d ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbacd6d47 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbafb9fa3 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc63e252 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc46b37bf ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6941a01 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb6ec426 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb70ec4f ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2b62078 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd47cd082 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5c0008c ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd708444e ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda981f2b ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdcaac1a7 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdedbce6b ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe559cda6 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe85e34fc ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9768313 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9c7bc4e ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb49aa36 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1a0cba6 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf80fecfe ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc100c94 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0xa685ea63 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xba57cec2 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xbb28e033 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x03534d9f brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x14e49830 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1bbade45 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1f4dd465 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x422265cf brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5115fa39 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5bc82d5b brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5c63dda2 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5fa09154 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x74ede90a brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xaf4f2922 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xeb2bddbc brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfc2a30ea brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x062deda9 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0677a112 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0773365e hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x100453c2 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x13adc8f4 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1f81e2d4 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x275c3623 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x27b59713 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x29f1bbc3 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x36f44377 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x47a47ee5 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4d44fca4 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6b5fc693 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7369b2e1 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x748b8ab1 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7a88902b hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8407e2e6 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9b203f26 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9f37d5cc hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa1e20f02 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa9d844c5 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 0xb9f016fc hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc816146f hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe96c27ac hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf1f28e5f hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0403d391 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x06a447ab libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x17d64e4a libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x24c5436a alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x29b364a5 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2af55fb3 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x490c4d71 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4bda0d86 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5d91b5bb libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5e569edc libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5feb1fc2 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x69f62749 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x744fb9df libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8d4b05cb libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbb143b1e libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc5bdc6d6 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcd6859c0 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd144599a free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe1607a26 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xec202dad libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf69707f3 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00fa18f3 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01d2b080 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x040a454b il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x052443a6 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05f78fe2 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0645318d il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x09658dd3 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ebed021 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0ec73aa3 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x10091da9 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1bec7941 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c95c7e1 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f231004 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x238bd7fc il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23c4842e il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24b3b642 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26386336 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26bb07ff il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2889ca41 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x297fba5e il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d2f4a2e il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ff44f13 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35e7cbca il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a0e690c il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c2df7ee il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c8e5149 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d2dde0d il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4242ce22 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44a732ed il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x45f27d7d il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46df7141 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x470bb8a3 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c534a2d il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f003cc4 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5353ddc2 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5407b54e il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x593fb92a il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c54941d il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5ed47dc2 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5fac201b il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x604f07ed il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61133e95 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63caca2d il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6dd21874 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6e71a277 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f6d1ff0 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7194fbf3 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79058c22 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ab30e7c il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b34d6ab il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d13f1ba il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81366d1e il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8233a994 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x82f3e95e il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x83f1ac52 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86b4bce0 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88878439 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c72a6d6 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x909c0aeb il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x92609e01 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93748da1 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95ebac2e il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99dbd904 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c2bdfb8 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa085ddc8 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3bbe0c0 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa49a3f86 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa818837b il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa833a119 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa90eae94 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xac4d422d il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaec9e88f il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0e7af78 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb13a7d56 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb97ed136 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd01938a il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc212e011 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc43bc30c il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc44dd939 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5a7c0cf il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc63ea211 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc98155fc il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9dda0fc il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcb3e8068 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcef30bc9 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4938dbc il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd6fbaf8b il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7558280 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7bfb441 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7c3ede0 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8b7156b il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb3968ac il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe653bfe1 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xea1743c0 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb4b44ff il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb97308b il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5df7635 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5efd881 il_free_geos +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 0x03fe12df orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2b7a1114 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3301fc83 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3edc95a2 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x742bf3ae orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x878b7693 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa7ec5ca6 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xac246791 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xac9cda19 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbc089ea0 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbc812074 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc81c22b9 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdb17f6a9 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe0034da9 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe4dbed86 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf53758eb orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x7fa23f53 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0114f6b3 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d3265d5 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f568b89 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15f3ae79 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1cacec50 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2239adb1 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x27240f8f _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a22c288 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2eae8082 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3175090c rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x34b2bac4 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3558bfb5 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x36616df7 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a28efbb _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41ecab64 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a37f82b rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b5017cc _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c5cb627 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x614ebf25 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72dc823b _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x732f4ec9 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a99117e rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e2acf69 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8e8eb7e4 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x924b0cd1 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d155959 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9dd04918 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa9ae056a _rtl92c_phy_fw_rf_serial_write +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 0xc1546d10 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce12f7c6 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcec3db6c rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf89a520 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd02ccff2 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2d5413f rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd87aff89 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd95fac5c rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9dcf0da rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xec60e753 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0e29553 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf365120a rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe16289c _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 0x0e4df06c rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x35b11c60 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x9296e333 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf6cac93d rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4aa84f88 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8c8daa28 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc6bdf28b rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xe2088d68 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0beeefd5 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19a44de9 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1be8f21d rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1d47450e rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x206020e2 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 0x2d604bc9 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a7831a1 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5bd34d9d rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x60723bcb rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x612fb9da rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63673b94 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72e695f5 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7a2df9f0 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80f2d3d2 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x89d64a45 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8a569fcc efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8fe371cd rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa934cacf rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9f6b092 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb34d69a3 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb71b5d74 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd9c2ac2 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc14d7ac8 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc93f6993 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcedc4732 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2177d1c rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3957ab4 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd56aa000 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x06d2c806 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6fc07969 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x73e9c8f4 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe762f365 wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x8da40d48 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9cbfc02f fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xcda8d3ac fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x290f26e9 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x7c5aea8f microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x0fb0da3d nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1890845a nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xbf571a6f nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x0ad96819 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xe088066b pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x39e01a3f s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x77e60d31 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xe5c3e9ec s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0598d825 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0bdc7213 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x310913a8 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x61024491 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7e92470e st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8f60deb5 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9c338230 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa419eaf3 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc07f5eb6 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd2f5947e st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf0baf5d9 ndlc_close +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0f4a2a41 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x128ab21d st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x166f4b82 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x21f7d576 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4a9c06b7 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4ce6934b st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x547d8ad5 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6c6e75de st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x826bf3f2 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8c47c9fa st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x99e30cec st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9d7e6022 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa066b2a3 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd02e1a5a st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd1b4c106 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd5f79f7f st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe30c65b2 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xed3252e1 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x22bcfd27 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x443f756b ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x6aa73780 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x74cbd72b ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x9ce3fe19 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xa930b10e ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xbaacacce ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xfce8695e __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x1c7ae57e nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x392ecd00 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x35de3024 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x04256410 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x0bab3308 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x22e2dc2e parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x29790cd7 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x2cf24ddf parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x2f8be458 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x3915b618 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x3d200df4 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x4c91512d parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4fbd2003 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x5a4a2db5 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x68281597 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x68e5905d parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x79b93d95 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x79ee6929 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x7b2e05e0 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x802033df __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x82ed70e1 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x8be03def parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x97bcc9cb parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xa4b2b528 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xa668401f parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xa75b4b67 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xae5d967a parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xb589f118 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xbc39a4f7 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xc328c78d parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc72730fc parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xcb109bdc parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xe1a8fcbb parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xeeabfa8f parport_read +EXPORT_SYMBOL drivers/parport/parport 0xfb7c3d86 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport_pc 0x65087f95 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xd0096128 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x05553a22 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0c3e5281 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0ee1d0ee pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x16366303 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x26b860a5 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x34e794fc pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x382c5b6e pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3d350af3 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x430c095c pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5363741e pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x55461d2f pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x592bf19b pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6ac21ce1 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x89736f38 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa3e1d68c pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcd857bea __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd7e1fc8f pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe2ef311b pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf4ad4334 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0b180215 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x11985c70 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x501ce6b9 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x61e511a8 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x676cc1ae pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x69fc603a pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x795f52f3 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaaefa422 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xad86b1f4 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd567c418 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfe68c50a pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x611ec75c pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa3ed37e8 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 0x221dd948 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x882f70e1 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x9f6d0e04 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xaf1fca54 pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x179dadaa ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x62262d9d ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x69956f83 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xe25467ca ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xef64bc5b ptp_clock_unregister +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5cddbb4f rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x615775a7 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x62138a65 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x789bebc1 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x92cf9cda rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9627f102 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x978f95e6 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xabde60b5 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xef7dd5dc rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf4742058 rproc_get_by_phandle +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x83734999 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0c4f1ea1 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x6b1a2e83 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8054b708 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf33b0faf scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0d584e38 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x13b3c043 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ca51008 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3bebd9b3 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x48ddd046 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5bca0ab1 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8c52da31 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc81f49c1 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdbd0400b fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe0cc6897 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xef1d5141 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf20d3331 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05fbbf61 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x159fb9d8 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e86a344 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x228c9480 fc_elsct_send +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 0x2d34690f libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3182e383 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x42d49d42 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x43015218 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49f5d079 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e9d24b9 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x51ae207f fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x53fc5e9b fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d0727d4 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d1bca0b fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5f3ae3e7 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x60b9adc2 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64a1e342 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6c53e302 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7679e11e fc_rport_terminate_io +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 0x9038e937 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9308712e fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x969bfa31 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a25399c fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9aa74206 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa77d97f6 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaab1d0db fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4f184c0 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb59ee94a fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb37e6e1 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdfccf08 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc1ea7a15 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc2ffce40 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc582cac9 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc74d329a fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca5cd855 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd37fac75 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xddef8e47 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0baf2a8 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe738cff9 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xece32c96 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeee46ff1 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf11fa758 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf739fff2 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1b154c04 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa43af67d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb7be0610 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xcdfe9209 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 0x9199c9fc mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x09320f9d osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0f182f3f osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0f41c3f5 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x10d5fd05 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x17fc7dd4 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1cfcf5fc osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x21589854 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2181aa17 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x34f97c1c osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x37810cfc osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4e207c3e osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x50d137c6 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x52a9c266 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x56c2ce8d osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5956ba18 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6b34b822 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c107622 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6f41d6e9 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x728f5ba9 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x94f98322 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9bc58f2b osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa7464743 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb080ef15 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb402ba0b osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbf07c096 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbf511977 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc59e6a2b osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf47e4c3 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd208300a osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd2600592 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd356804e osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd3be11dd osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xead83568 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf7e6e5d3 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf98b2b26 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfcd80bd0 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5b6f8d00 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa902dac2 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc6c3b8d0 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe1014b5f osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe3a86f83 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xee72422e osduld_register_test +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x00bfdc7d qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x04d47e39 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x39ae8d8a qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x51918777 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8a535580 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9fb437fc qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb47d66e2 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd340bf83 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd65abbfd qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe7f513c3 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfae97872 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfebded83 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x19e84469 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x543dfff9 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x58aa93d9 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5c459467 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x6b1e9944 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8373ce73 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 0x5f7ca5dc raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x889744e4 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xaa6b4ee9 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x03718458 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x06eec495 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d1ea08b fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x200a894a fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x20988a98 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3440ac4b fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4a5aee0c scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x59c69e39 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7abe11bf fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8e05add8 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb80bb2c7 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xda7c598e fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xdca6343f fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e8d7c76 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x15221e43 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f5c4ef9 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2b1b6b8f sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2bf176c5 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44d737d8 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x45d216db sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x49f1f0c1 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x521f5585 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57965c39 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5b0ddc8c scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d183395 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x754a141b sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7e85ca59 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81d97f13 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8262fdc0 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x92371c2b sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9414acb6 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad42a65c sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4b1e332 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7391440 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb958f278 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb966b266 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc3ee09b0 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc60eaa2c scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6352f57 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcb0cf9ce sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9da0b79 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x406052e6 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4ba5710e spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x577d3581 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xaed585aa spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcdcd3ad9 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x03bada71 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9f36ac79 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc48bcccf srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfe43b6c0 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x33f12c71 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x458e59bf ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7231fc61 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x763bace0 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbe4f3a61 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd1f6fd53 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xec654557 ufshcd_shutdown +EXPORT_SYMBOL drivers/ssb/ssb 0x0a3db5e4 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x14b57e94 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x2d5368a8 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x2fa5b958 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x30edcf3d ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x3a027167 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x47c47ca4 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x4ea2a6f1 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x5eb03f77 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x868d6dd8 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xa37946c6 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb68520aa ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc7753783 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xcc9991f8 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xcf50b4ad ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xd194904b ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd8452895 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xdfac4fe4 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xe4ef7e0b ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xf311f1b0 ssb_pcihost_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0149c70b fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0c3bdd2d fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0ec32d47 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x14448788 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1de14548 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x25075fba fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3e3f7923 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x44e92a21 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7a494605 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7b2de997 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7f711078 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ebd5fb9 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x975ede90 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa4e65d2e fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf26b561 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd54b15f fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd071a418 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4aa4180 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd4d8e1f7 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe2f878c8 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf03a0988 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf15ddae7 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfbba8e86 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfc28fa22 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x203d42b4 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x9ce0995f fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xdfba3e71 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x07b2a224 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x45806fba hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xc8bda0f3 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xd2a3d8f1 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdb7ec40c ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdd06979b ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x9fc0feda cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x5f248713 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0291d5b5 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03b42f8e rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0bfa4e84 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x195e4802 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1aa07931 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e25a632 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27a4fa51 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32f7dd6e rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x32fe3c4b rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45e945d3 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6204b859 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67045697 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a91ba60 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x712a51ae rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74261746 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x76ab64ba Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7dc0725b RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8027f68b rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85e209d6 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x87b1ab94 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x899d09f3 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b02c89d rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8b16a51f rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91521eb6 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x999e0be8 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9a4ae7e2 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa0fb99c0 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1823eaf rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7acf69e rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb08e3a4d rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb192e253 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xba6a9133 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2ad79df rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc2cc6a8e rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd266ed1a rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd30f21ba rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd6cadee7 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb78524d rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdcf606c5 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xde90d256 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdebdad10 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe36a3872 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7c1527f rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee83c571 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf071244b rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf21ebac9 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf846fe96 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfa4f453c rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfae7aff7 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff8aba61 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x020529fc ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x02e62555 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x058d72c5 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ddf0936 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1c3eece2 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d02cc38 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e1421bb IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22d55c15 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f20a769 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39a02cb3 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e204037 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e3de263 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x404b52e9 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x41fde968 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44a13d35 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e54ae70 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4eb9cf63 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5019b041 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x527597f3 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x538ba636 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55022282 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56c9a572 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62e01bc2 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63922c4c ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6fca9787 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7292cb12 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x72e84a7f ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74e75e2a ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7683f65a ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7889ecfa ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e9959a3 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97da788e ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa31297db ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa93014e3 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xac6eafcb ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaca4249e ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3bff74f ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb41ddfb Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf05c7a3 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc24e3e70 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7398bbc ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd9171c6 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcea364eb ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4ecd9de Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb167b91 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc921e42 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3ae750c ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe74da046 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe8984dfe ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xea4b95cb ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3133499 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf3c24878 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff0d7c6a ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0x82d2b989 visorbus_get_device_by_id +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0278c8b9 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0502679c iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d5d8342 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e90e37c iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12204a86 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x12276e51 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x15282981 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1a959f11 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6021eaa7 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x687b0b47 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a7ebff9 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f80bb96 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7062e2c3 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7538ebb5 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77cec5d5 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7d417b51 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8881c6af iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91626391 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9d71bf9a iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5215093 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0b059f7 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1f53d2a iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcbe12edb iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd4160f37 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdbb93edf iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe160c135 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe628f8e4 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6472a48 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/target_core_mod 0x02d9f688 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x05e0613f target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0748672a sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0999319d target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a2edc89 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b0102f4 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x1fddfc34 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x2730ed53 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x28ce32cb target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x37244a6e transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x3803e0dd sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x397523e3 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cdcfd27 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e6220e9 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f191543 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fb2368d spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x45636d92 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ac6e58e transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c4ec770 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x51867263 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x62f2c4c6 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x66bb7af4 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a9b3e37 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c7a8987 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x83e36367 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x86d8e451 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b8eddc0 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8bd807fc transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f347935 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x929276fa core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x932afd2c transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a16cae3 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a5abe39 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ae50252 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f51e014 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1ed3892 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa287a9a7 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa2f116a2 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xa384be76 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7aa3a98 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa7fc5263 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa80a63c9 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9d0e7dd sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xace379a9 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xae333ef0 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf8fec1d transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb21000e8 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb433fa35 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4703615 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xb794b2b5 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb89c6515 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe6a6eea transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xbed30558 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xbefb085b transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3850996 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xc60a8ab2 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xc657e63d target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7f6d56c target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc81bffc4 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9548d7e target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9d464d7 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xda1fea5c transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xdda1c42e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xebc938c1 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf35bd535 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7653256 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xfabf8dd3 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc3427ba target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xfefd36cc target_configure_unmap_from_queue +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 0x935e9e3e usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xcfa235c8 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x9edc953b sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x144503cf usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1866eeb7 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x516ed4d2 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7d56cabf usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xac77702b usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaeff90c3 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb17b2cf7 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbb27ceb9 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc165c8ea usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd32e6815 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd74358f0 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf69be9a5 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb8f10fbe usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xc3342cc6 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 0x35e9af97 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x48615f4c lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x751c95e5 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd80d4952 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x024f293e 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 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x52ca52fc svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5549d49d svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x68cb117e svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x74ce5706 svga_get_caps +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 0x9b2eb474 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa8eb0eec 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 0x03a5051f sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xf4fd70ee sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x9bd49cd3 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 0x6fd155d3 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 0x2be065b9 mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x72650425 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xce3b34a3 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xee15b5ad matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x2ac0e880 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x4b727707 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x506907b5 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x90ad3806 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xc68ef680 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xb1f578b6 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x32c453ab matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x4ec9dd3b matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x54b7f97c matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9e039ed2 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x2be6146e matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x34d82da6 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x78e4dcd6 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7993e5b7 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd1f75545 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf5b84ef2 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfcff59b7 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x63182725 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 0x1d5e507f w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x854a11d6 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x862c7883 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xed094f15 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa9738c00 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb3cbe53c w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9bbee99e w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xfa084df7 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x23d15a72 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x91d36a0c w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x9864c8af w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xe5d0a940 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 0x0334a093 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x03680836 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x31f212fb configfs_register_group +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 0x688716b1 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x83374b26 configfs_unregister_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 0xb76182f4 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xb878f854 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xde121d05 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xf814feec configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xfcb87670 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xfdc36ccb configfs_register_subsystem +EXPORT_SYMBOL fs/exofs/libore 0x16ff34e5 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x28a84e43 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x33dc7b7c ore_write +EXPORT_SYMBOL fs/exofs/libore 0x3c7587bf ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x43643358 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x53a60bee ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x604ed1ce ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x91c99a66 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xaab40a18 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xd27bdf4d ore_create +EXPORT_SYMBOL fs/fscache/fscache 0x035dd1f4 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x07977728 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x0a91117e __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x11931abc __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x18685908 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x1c76bee1 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x27f7e568 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x28f661eb __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x36ccc64a fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x4888937a __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x49ba7bb6 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x4b5e20b2 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x5b0fab1d __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x5c4825a4 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x5e83869c fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x6c031b26 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x798aca31 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x7c72bd60 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x82be8440 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x8ab6188e __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x9cb0a505 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x9d877e29 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa0ae3b12 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xa1dbdfab __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xa661c9bd __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xacb892c6 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xc5ffd219 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xc9c70dd9 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xdcb45322 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xde66f30e fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xf0dbe1ae __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xf15a8bfd __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xf1fc7cfe fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xf5be05e5 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xf692baf7 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xfa3eec70 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xfb2ef3a0 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xfde9c380 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xfdfb6f0a __fscache_readpages_cancel +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x0649c201 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3779be2b qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x633ee80e qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x95d524f5 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb0a15aa0 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 0x35e6a2ed 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 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 0xcf52a29c 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 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 0x5d3128e2 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9af68c67 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd2ecc0af lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x17767716 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xb795dbf0 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x525ca4b6 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x77ad5ba8 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x5ede2eae register_snap_client +EXPORT_SYMBOL net/802/psnap 0xd97e5ce4 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x09d158a7 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x1552d686 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x16ac1701 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x2dc3f381 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x37804182 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3840531c p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x39fec97d p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x3aeaa2d6 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x3bbf7f66 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4023b4e6 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x469c1ac8 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4cbf1951 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x56ec848b v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x58ce2bc5 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x64c6bd0a p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x68a061d9 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x741dee3c p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x801ce9e4 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x8b8c34eb p9_client_getlock_dotl +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 0x98a5db76 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x9a94c40c p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa6134e98 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xa6415495 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xaf8dc939 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xafdd765e p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xba8b0391 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xbfeba7ce p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xc325b2dc p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc8f2fbd1 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xc8f4c7b0 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xcc5c1fa4 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcc9cfef0 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xd7e5f1a0 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xd9abf813 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xe481818c p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe6ea4da6 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xe7d95bff v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf7db21ba p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf855e8d3 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x0fac37df aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x29242abb atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x72ce9ea3 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xb0ad9762 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x016bf97a register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x08ad5345 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x098da759 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x10a985f8 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x16c51d88 atm_charge +EXPORT_SYMBOL net/atm/atm 0x221a3a9e deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x3f884066 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x68412819 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x8767a57c atm_dev_lookup +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 0xae6d178f vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xb90652ae atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xbc56d568 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xec73f2af atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x07d63430 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x1759ec49 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x311526a3 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x36f9f849 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x385981c2 ax25_listen_release +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 0x6d61fd94 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 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc8a4de65 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xde89e6c0 ax25_linkfail_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x015ea31d l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0f7d3a7f __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1ec54999 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f211911 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x20d340af hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x24957e45 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2e7ea129 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2ea55b22 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fa9e646 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x34c6659b hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x384acde4 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4aa216ef bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4afc8068 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x50c10ec3 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51cfb3b3 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x56dc6835 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x57916228 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58e7b6a8 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5a5e4f50 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5e349ed0 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6212a6db bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x65898409 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71688f1d hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c73fd05 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85be8795 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x884f6dfe l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x88890b8b l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b8c44a9 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fa97b28 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 0x99796ba0 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x99c0e0cb bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xadc55136 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xafb302bb bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc6c5e299 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8c62479 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce608100 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd42af34d hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde49de5c bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe26a4298 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe7572ca8 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfca21094 bt_sock_recvmsg +EXPORT_SYMBOL net/bridge/bridge 0x458e9f84 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x1e55d603 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x72270cbe ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xc327dd15 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x0cd1d63b 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 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 0x8ac66cdf 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 0xbbf8da2b caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xd25156e7 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xf692d85e caif_connect_client +EXPORT_SYMBOL net/can/can 0x0721797e can_rx_register +EXPORT_SYMBOL net/can/can 0x26fcc3a9 can_send +EXPORT_SYMBOL net/can/can 0x64f4cf12 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xaa1e0416 can_proto_register +EXPORT_SYMBOL net/can/can 0xbdef32b0 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xce43f9f9 can_ioctl +EXPORT_SYMBOL net/ceph/libceph 0x02f1b660 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x05709cbb ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x07646cba __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x083ee029 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0b52d097 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x0b6f7e25 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x0c09339c osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x0ecfedfd ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x11a29b42 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x198201d5 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x1dfbea25 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x2210520f ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x26969f3c ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x28b3f00c ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2c6ed056 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x2cde0956 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x2f556df6 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x32762a6a osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x32e6ba53 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x34642bd2 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x3abba83f ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c06c298 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x3edb10d4 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40526eb3 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x41a1535f ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x42f8fa2a ceph_osdc_get_request +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 0x4788fc07 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x48935aeb ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x4b46f11a ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x4c6f2fbc ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x51c84c2e ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x540ce23b ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x5463403c ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x59444258 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x598d70af ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x5a2e7699 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x5d26853a ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x65a3510a ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x6618273e ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x66e1d4a2 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x68f3530d ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6edf1394 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x7147c18b ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x71905783 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x77e77ff3 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x78815f41 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x7df2d8be ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7e9a5a49 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x805d0c50 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x8850a255 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x8ce64bc0 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x90c99447 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x91120fa5 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x92d0050b ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x97d1ac58 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9b235e15 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa712b59a ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xa872e557 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xaab79640 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xad9893bd ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae8c62b4 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb1fb2d5b ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb7964c92 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xb875c0a3 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb96f4f4f osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xbcab5e22 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xbd39b00b ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xbedd32dc osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xc189c714 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xc361178f ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc97f31d0 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcdabac59 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd397d76d ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd82ab641 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe057d378 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe25193a2 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xe26d47ab ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe8585fae ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xe92857f3 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf472217c osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf6c5979a osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x4ac8288c dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x75412207 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1b6ce527 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5b7e6f8f wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x68bb7e0f wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8aacb44c wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xcd70bc90 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf9a0141d wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x044fae23 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x379a5a0c fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0f14bf5a ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x29002324 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3d5fc517 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4da3d0b4 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4f077c8f ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf242e648 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x0e9bb35a arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x326a30b0 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x36b1bc89 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8dc987c8 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xab60e261 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf69eceef ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x8f929a15 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x98462b45 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xba2371a6 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x33ac27a7 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x34d81e78 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x433d566e ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa1a7f9eb ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x6e17efae ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8c2d9eab ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8f7ba193 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x5d2131cd xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xe8f45431 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x03e2b3ba xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x733d4b0f xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x10a6dbff ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x186e5db7 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2347d881 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x323209f7 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8cef8e53 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x94fb199e ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc8795287 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfaa16eef ircomm_data_request +EXPORT_SYMBOL net/irda/irda 0x00b8d4a2 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0916fd74 irttp_connect_response +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 0x0a79ce2b iriap_open +EXPORT_SYMBOL net/irda/irda 0x15a6d1c3 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x193ed4c6 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x21226283 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x2bfb519d async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x3b184964 irlmp_close_lsap +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 0x58c4d805 alloc_irdadev +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 0x7144b7fb iriap_close +EXPORT_SYMBOL net/irda/irda 0x74aee885 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 0x7be8a675 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x7e84f3b5 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x80c0aaf9 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x989c7756 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xad786bf0 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb0491f2d irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xb6c7413b irttp_open_tsap +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 0xcdf47370 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xce336f01 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xd6339952 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xd917f299 irlap_open +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xdd357cf9 irlap_close +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 0xe6d572c8 iriap_getvaluebyclass_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 0xf42d03cd irlmp_data_request +EXPORT_SYMBOL net/l2tp/l2tp_core 0x19761259 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x4d2e131d l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x1393074f lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x242103df lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x287d2629 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x6cf31c67 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x728bcbc1 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x835dfb7f lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xaa2ce238 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xee9c3a40 lapb_disconnect_request +EXPORT_SYMBOL net/llc/llc 0x222aa66f llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x41ac0522 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x63f34d80 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x8d5883dd llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xa8153075 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xaef9b00f llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xe1571ef5 llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x06a85e94 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x075aaa4e ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x08e4866c ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x0ae12c49 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x0b332123 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x10e459c0 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x15714e24 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x17abe6a9 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x18109f27 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x18437335 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1a51fc64 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x209aefd3 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x26854d26 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x2d5ee6e1 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x2f24dc9f ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x30a219c6 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x3471570b ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x353ec86a ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x39c37be2 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x3ec855b4 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x3f235991 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x45efc017 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x47b0aab7 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x52a63d20 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x53ff493b ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x577d1dba ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x59706aca __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x5ccb254b ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x5f65af45 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x62116220 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x63435397 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x694d977c ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x6b67ed57 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x71e67d68 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x74d2d073 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x763cf9a2 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7a0c450b ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7a24976e ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x7d15ec43 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x7eb32575 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x80eaa636 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x83a10d58 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x84f406fc ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x89d2db00 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x8addf8b0 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x8c6fb0d0 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x8dd6ef22 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x8e8dfe77 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x90eca0f5 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x91286251 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x9b168a16 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xa0573dc6 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xa2c1864f __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa458c5eb ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa608879c ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xabe708f0 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xaedd6f26 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xaf2fc679 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xb05450c6 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xb752eb23 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb94da3fc ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xbc077c41 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xc500cab9 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xc8bf7fd1 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xcab47c6e ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd52261d9 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd936c758 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdc1cf255 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe43e505e ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xe646016b ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xe7344704 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xe73eb663 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xec75dd92 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf1faac2f ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xfa36d944 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xfb2ade7c ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xfe057ae9 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xffff377a ieee80211_radar_detected +EXPORT_SYMBOL net/mac802154/mac802154 0x0523de20 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x3bcd9f62 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x46f0c2d0 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x87383725 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xbcd5449a ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xd6fc8927 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xf50f0c88 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf5fb344d ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1101bcb0 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x164d91f7 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x35e0ffa6 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4a8d4d1d register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x55bb9897 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5be16a43 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x61643d13 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6f38016a unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7d86b4b0 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc29e5400 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd3710cdb register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xebbaf9f2 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf94f5c85 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xffd87535 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1563c5cb nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x2e390a5e __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xef68330f __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x058c8e1d nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x29ed05e1 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x2a6aa6d2 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x3eb2d710 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x50c71afb __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x7a6c672a nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x019367e1 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x046a4c64 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x0c019ea3 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x0d5f9030 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x1ac458b8 xt_unregister_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 0x56031653 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x78307607 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x8280fbd8 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 0xc70bbfe5 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe0efc442 xt_unregister_targets +EXPORT_SYMBOL net/nfc/hci/hci 0x0918dcef nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x0defb886 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x0e6ec43e nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x10e43de7 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x17eccfe8 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x1d1074c1 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x1f0f4e6d nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x27b61f98 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x485db7f4 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x4f6e700a nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x50a2ca1f nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x50a4957e nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x5f5a6b13 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x6abd291c nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7d3cbb75 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x7d65834d nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x90879c33 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x90b5b8a7 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xaa4f4ba9 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xb535833c nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xe8a9789c nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x03c208b3 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x0aafc2c8 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x0ab25973 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x0d820b1b nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x221f8950 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x27320f79 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x29f1bfef nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x2ee52470 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x32df9a3c nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x386d9153 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x440a2452 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x47836028 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x4852eb46 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x51cba336 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5c86b040 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x6dbf1184 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x953f882e nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xa623a78d nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xb1a5231b nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xb7d47b9d nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc0bbb251 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xc2ff37da nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xc9b21c77 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xd03cb6a9 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd86a0d46 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xec3aedb9 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xec76b9a6 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf1774c7e nci_req_complete +EXPORT_SYMBOL net/nfc/nfc 0x1191aa05 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x203d2662 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x25359641 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x29ed45e7 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x2d652835 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x353ce582 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x45292083 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x4e2cc43c nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x6da8e5df nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x869ebf61 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x9f67d266 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x9ffbba34 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xaed79f38 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xb234595b nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xb28ffe7d nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xb37ac66c nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xbae91469 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xc5a67e10 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xca2a7999 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xcb7ad083 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xd30bc134 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xea3ec4a8 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xfc98239f nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xfe5287bd nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x1482f788 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x33213339 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xbbeb31e0 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf44572ae nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x0b1b1253 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x0ed3e7c6 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x16026d9a pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x5c1a788b phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x70f93c39 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x7d6c99ee pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x9e7485fc pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xe345124c phonet_proto_register +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x060e8d58 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1473abfb rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1f7322ba rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x48229781 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x49f0ab87 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7afe7bc9 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7bd37f1f rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7cf93e00 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9550c6e6 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa4f0a5da rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbb9c31f1 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xceb6b8e4 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd84c6b1d rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfc4045ca rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfd21b7ae rxrpc_kernel_abort_call +EXPORT_SYMBOL net/sctp/sctp 0x6c30b347 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x09f2b489 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x65696174 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6f5ea878 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x17e68a8a svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x5c4bd584 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x708773d8 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x920e58fd wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xd6f882f6 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x00f1a315 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x013d4108 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x04b75650 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x07d36dff cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x08f37110 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x12587d2a wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x135d7414 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x16341741 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x170eb6d6 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18ff41bd cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1cbf77f8 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x1e618784 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x260d570b cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x2b7da8a6 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2e37b0bf wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x2fa5db8f cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x3241642b cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x33697d53 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x3875e751 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x389cfb77 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x39805691 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x3ada882f 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 0x3fa1c82a cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x4101278c cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x4490e6bf cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4a97fe1d cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4b2abd9a cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4f1d570c cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4f254a99 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x52ca65fd ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x53ebd3d6 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x551c3f4e cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5a35d28d cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5c4079e7 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5c7b61ff cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x603f9bdb wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x6988cf20 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x726b6f25 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x7872e7e3 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x7ab34b3c cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7b0194f3 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x81003097 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x8a17c671 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b9a3a00 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x904ceca4 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x932bc12e cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x95762854 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x95fae347 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9d5e50d1 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 0xa2bc6af0 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xa40d4c48 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xa528444e cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xaf87762f cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xb1a22eec cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb5df0160 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb6a129cc ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xb832fcd5 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xb8d0ad79 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc35c1e21 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc3ae83e7 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc48909a9 cfg80211_ref_bss +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 0xc9c06329 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd244171c cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd4243758 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd51d9c7d cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xd95168c4 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xddbef405 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xdf06f7cf cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xe053d434 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0xe2b5a1ec cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xe6f1c525 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xea74b282 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xecafed16 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xecb6a859 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xeddb622c __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xef9c1109 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf75ab06e cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfa82c9c0 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xfc574f8e cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xfdcf2ab8 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfe4bdec7 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xffde5e42 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/lib80211 0x07507b75 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x07d07d1b lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xb8ac044b lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xcb95cec6 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xce240e14 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xd8faab84 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x2a9ef501 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xb81bd219 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 0x39471690 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x472e7dcd snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x4dc38c5e snd_seq_create_kernel_client +EXPORT_SYMBOL sound/core/seq/snd-seq 0x51d4346e 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 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 0x7529941b 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 0x9d0a262b snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0268910c snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x0ad97abf snd_info_register +EXPORT_SYMBOL sound/core/snd 0x0f28c88c snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x0f6d3b0d snd_card_free +EXPORT_SYMBOL sound/core/snd 0x142592e9 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x149b32b9 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x14c77283 snd_card_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 0x1ba2ab96 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x1d9b49bd snd_ctl_boolean_stereo_info +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 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3831dc51 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3e0874ee snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x3f48a6b6 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x43882e32 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x49919e3f snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x5018eb9a snd_device_register +EXPORT_SYMBOL sound/core/snd 0x565b8a60 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x635bbc60 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x6ad3fa34 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x6d7f6145 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x6df2b548 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x70d7031e snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8220baa1 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x85979d91 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x8934090e snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x899170a1 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8e4b5574 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x8eaf565d snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x946210e1 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x98414e7c _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x9a888c11 snd_cards +EXPORT_SYMBOL sound/core/snd 0x9bb1a01a snd_register_device +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0xa0c3c856 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa561cba0 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb5b4c84f snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xc1571063 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xc16539db snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xd05876d0 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xd0c87667 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xd64bd2a8 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xddb9188b snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xe8f59efc snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xed239699 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xefbc83a2 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xefe35bab snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xf1a445b4 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xf8a45734 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xf94e307d snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xfaf61582 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x7ac8280a snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x025042bf snd_pcm_lib_writev +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 0x17108152 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x17960076 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x1ab5d5dc snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1f462981 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x217150f1 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x24459e9a snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x32c88a09 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x32d82c9a snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x33f10674 snd_dma_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 0x417af2d4 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x454434ce snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x4fb6a9d1 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x5033daf7 snd_pcm_lib_get_vmalloc_page +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 0x54bdc9c4 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x55c103c9 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x56bb97db snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5d3f9ba4 snd_pcm_hw_constraint_msbits +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 0x6b8c82b6 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x70a4b48f snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x72052027 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x736b3bfe snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x7700403c snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x77ef4140 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x7aa43a86 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x87f6b49e snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x8869b090 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x8a867996 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x9013e812 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9a67f9b6 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x9cb5b5c2 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xa356ca52 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 0xb1b02b8a snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbb626480 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xbe17da32 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xbe98c07d snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xbeac7e13 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0xc0e98cb1 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xcee64d4c snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xd353ad07 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xd50aa3e2 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xd5ede6ab snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd8440775 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xdef76588 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xeb6be44b snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xf5c92723 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xf94b3b28 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xfa149644 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x02a801ef snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x04b335d4 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x08a04129 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x109b2abe snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x11433c38 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x18a1baf1 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x193f856e snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x212bb40e snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x8e014f6d snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa644a67b snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1fbf2b6 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb3408c94 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xba7b05a7 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xba8be21f snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc16c356f snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xce195c39 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdb91cc27 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe999029f snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfad840f7 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-timer 0x0188f458 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x16cb41c7 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x234cfbfd snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x4a3a9ab5 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x501d5bc7 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x5f117cc5 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x6c041443 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x90624a54 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x956f9d1d snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x9b0b964d snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xa52a0ad4 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xb6bc088f snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xed0de047 snd_timer_global_register +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 0xf3e561a0 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0ec03e51 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4a2b396b snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4c1f5870 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x76d664e2 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x847092e1 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9c6068d2 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc00384d4 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd4ba8dbf snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xeaaa53fe 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 0x6ba56e1b snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7197acc1 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x75e7ba22 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9248dc7c snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9e2c9a74 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa7739a9f snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc9b367be snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xce58e433 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf5542694 snd_vx_suspend +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0cb03eac amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e67d2bb amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1b9db916 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1c684a26 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d7ea74f iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1e4a6f05 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x248a730d cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x310ddd93 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d5bb6eb amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x45b639d2 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x47437bb9 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x530b0093 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x561805fc amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x56af5f68 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6b24b922 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7abdd911 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e8e127d cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x861d4208 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9ad1a272 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9ecfde1f amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9f4500e8 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa6b1d480 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa8788a90 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb94590be fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb97a8dc1 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba9c32f1 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0bdb305 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc9be65cc fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcfb83cc1 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd790f5e5 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4c3aa10 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf65a6f5a amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9fdff264 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xa3522440 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x31623081 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x36901b74 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3e56c762 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x581caa6a snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x623b3095 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x69dcd366 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x881c9a29 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb9c4a2e6 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2efec736 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x634fcb63 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8adcb275 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9b3a9487 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa70697f0 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xbcfeb402 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x21ab0952 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5c73765a snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x60c676d5 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe3b6ea30 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xfd91903f snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xfdce25d4 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x181601bd snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x37816a4f snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x41fcff8a snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5b7556fb snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5c6b34ff snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbdca76d4 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x4f8f2b5d snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8f7f5fce snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x99bb20db snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa383ca9f snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc91a3a7c snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xcabb25b0 snd_i2c_probeaddr +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x045e2adf snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1841911e snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5ce26a15 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x82cf8131 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xca55659c snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcf4f7823 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd5cb489c snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe1011651 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe37e27aa snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xef310bb0 snd_sbdsp_command +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0289a6e6 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x088d9c6d snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x08f236f2 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x135e62b1 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1bf27842 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4569c03b snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7ba1b436 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9d783078 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa380cc99 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaf224025 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbd6038c2 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe26194d8 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe5df68d0 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe608a2e7 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe74d332e snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xeed56c3a snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfcaa4239 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xe3a4d562 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x069b31c4 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x303f18fd snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x387acdf7 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x49e05dd8 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4c7766bf snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x53b7d1ee snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x99390d3b snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe2402f93 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfdbac413 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x750a34c7 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7fec7ba1 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xba34af10 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1059cda5 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21a55e9f oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2a12e2b3 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x34128d32 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3ac1483f oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3ad1a2a6 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x46ce427e oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5b9b9ce0 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6676210c oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6c39d7d8 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7651355d oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x769b6e62 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7bce3674 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x86bede72 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc0740087 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xcbcd22a1 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd8b78c3e oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd8dda8da oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe85e3176 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee7bff53 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf34d75d9 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x18d280ab snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2e3c1390 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4dd760a0 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb8c3a1c2 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbf03a715 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x97b5adcc tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xfcf18dc7 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x49f0fcf8 sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0x1f003565 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x032382f4 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x2ef3b2be register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x331eb6a1 sound_class +EXPORT_SYMBOL sound/soundcore 0x3f267560 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x88ad80bb register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xefb4298a register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5a745394 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 0x6e82c356 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x7f8f5c7d snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8494fb3b snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8c77aa3d snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa0be5fee snd_emux_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x118bc41e __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x12b260a6 __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2a9ca0a1 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x770b4204 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xb4c70ac7 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd286fbb7 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd994efa8 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe3b6bad1 snd_util_memhdr_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x30047ae0 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 0x0f3943c4 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x6212ce4f ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x6d54942f ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0x7717dd58 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0x8a8eee6a ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x9d428c39 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0xaa8db28c ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0xe054c782 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0xe24e852f ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0xe4d33aa4 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0xeea3ee4d ssd_submit_pbio +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 0x00041307 security_path_link +EXPORT_SYMBOL vmlinux 0x000bbfb2 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x003da5d6 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x0047f60a cdev_del +EXPORT_SYMBOL vmlinux 0x004c14f2 processors +EXPORT_SYMBOL vmlinux 0x00638fa0 scsi_device_put +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00a26586 iget5_locked +EXPORT_SYMBOL vmlinux 0x00a7e007 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00c21609 unregister_console +EXPORT_SYMBOL vmlinux 0x00d55e5f cdev_add +EXPORT_SYMBOL vmlinux 0x00d59c56 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x010c2630 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x011d5dc2 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x011ee8fb skb_queue_tail +EXPORT_SYMBOL vmlinux 0x012da13e clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x013ae875 seq_write +EXPORT_SYMBOL vmlinux 0x014057d9 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x014b4ebe i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x0158056f pcim_iounmap +EXPORT_SYMBOL vmlinux 0x016bba17 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x016c7f47 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x017ad63c blk_sync_queue +EXPORT_SYMBOL vmlinux 0x01ac48c8 iunique +EXPORT_SYMBOL vmlinux 0x01b4c25e fifo_set_limit +EXPORT_SYMBOL vmlinux 0x01bce88d nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x01d6aa3d lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x01e6f1ac __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x01ebcd73 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x01fc9a86 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x01fca5e6 clear_inode +EXPORT_SYMBOL vmlinux 0x021200a4 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021df359 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x02403733 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x025ac43e scsi_register +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0270d435 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0280f3da agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x0283df93 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x02865655 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x028af88a param_set_bint +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02b2f6c5 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f9753f nf_log_trace +EXPORT_SYMBOL vmlinux 0x0302eede dm_register_target +EXPORT_SYMBOL vmlinux 0x031032e1 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0352cf77 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036f6fd2 phy_init_eee +EXPORT_SYMBOL vmlinux 0x03769309 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0382a7b8 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x03a145d8 dentry_unhash +EXPORT_SYMBOL vmlinux 0x03be3bd0 __free_pages +EXPORT_SYMBOL vmlinux 0x03c27f4e dev_change_flags +EXPORT_SYMBOL vmlinux 0x03d1eb32 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x03d2fe9e dquot_file_open +EXPORT_SYMBOL vmlinux 0x03e88b22 simple_open +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0406a3eb devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0450086d bio_add_page +EXPORT_SYMBOL vmlinux 0x046c7490 ata_port_printk +EXPORT_SYMBOL vmlinux 0x047983de phy_device_free +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x049ed509 audit_log_start +EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x04b6de27 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x04be80be pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x04bedefe simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04e2641b tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x05034965 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x0517e85e __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x054cf77d udp_ioctl +EXPORT_SYMBOL vmlinux 0x0559b60d pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x05710ec3 seq_lseek +EXPORT_SYMBOL vmlinux 0x057aee91 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x05d9f667 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x05ec4a96 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x05ee7206 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x05f6a659 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x0608779e pid_task +EXPORT_SYMBOL vmlinux 0x0615157e dma_async_device_register +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x062109ac eth_change_mtu +EXPORT_SYMBOL vmlinux 0x0623743b proc_douintvec +EXPORT_SYMBOL vmlinux 0x06338bf7 dev_alert +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06534c71 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x0695433d reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x069a5f79 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x06ab43cd xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06c33a40 set_pages_uc +EXPORT_SYMBOL vmlinux 0x06f7f275 get_agp_version +EXPORT_SYMBOL vmlinux 0x06f865ed copy_from_iter +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x07057fcf netlink_ack +EXPORT_SYMBOL vmlinux 0x07112326 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x0728e87d set_bh_page +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07376591 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x07447014 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x07465cfb blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x07548e72 dquot_transfer +EXPORT_SYMBOL vmlinux 0x07848039 inet_csk_prepare_forced_close +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 0x07b43e9e uart_add_one_port +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07db3af7 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x07e9a725 vme_slave_request +EXPORT_SYMBOL vmlinux 0x07f2338e filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08377e48 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x085cf987 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x089c96d4 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x089f88b3 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x08b4d94f blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x08b903ff inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x08c51714 sock_rfree +EXPORT_SYMBOL vmlinux 0x08cbe286 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x08cc011c i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08ed5bbe dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x090f26eb netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x09140191 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x093e9b0c kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x0943900c skb_store_bits +EXPORT_SYMBOL vmlinux 0x09576bfc unregister_binfmt +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0967dd2e sock_i_ino +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x0970190f vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09aa6196 block_commit_write +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cb92cc param_get_short +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2b277d clkdev_add +EXPORT_SYMBOL vmlinux 0x0a2d1385 from_kgid +EXPORT_SYMBOL vmlinux 0x0a401c5e __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x0a49ed57 __skb_checksum +EXPORT_SYMBOL vmlinux 0x0a4ddbc9 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a75e991 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7a0bb8 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x0a7e118e blk_delay_queue +EXPORT_SYMBOL vmlinux 0x0a93c0c2 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x0a9deac7 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aadd9d8 netlink_set_err +EXPORT_SYMBOL vmlinux 0x0ac00024 get_super_thawed +EXPORT_SYMBOL vmlinux 0x0acb1e4f pci_bus_get +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adb2bd4 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b0ea743 vga_put +EXPORT_SYMBOL vmlinux 0x0b12d558 generic_show_options +EXPORT_SYMBOL vmlinux 0x0b1581a0 bio_chain +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b46aa72 dev_uc_add +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b667de5 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0b737389 pci_get_class +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7e3d96 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b920014 inet6_getname +EXPORT_SYMBOL vmlinux 0x0ba9a047 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0c11765d jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x0c17ccb4 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5d80fa ip_check_defrag +EXPORT_SYMBOL vmlinux 0x0c617ea2 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x0c6445e3 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x0c6489c1 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c7576fc tcp_read_sock +EXPORT_SYMBOL vmlinux 0x0c8ae6af acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x0c94c407 d_lookup +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 0x0ce78c32 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x0cece274 brioctl_set +EXPORT_SYMBOL vmlinux 0x0d3864f1 nf_log_packet +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d3de720 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x0d42e94e dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x0d440944 inode_init_owner +EXPORT_SYMBOL vmlinux 0x0d477a8b security_path_mknod +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6534d1 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x0d6d817b agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0d98f9a7 blk_free_tags +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da4b5b6 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x0db57dab arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dcecf5c input_release_device +EXPORT_SYMBOL vmlinux 0x0dd35d95 input_register_handler +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0e0b7e69 dm_put_device +EXPORT_SYMBOL vmlinux 0x0e118068 blk_start_request +EXPORT_SYMBOL vmlinux 0x0e26b09a forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x0e3cfdda sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x0e408f1e tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x0e493552 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x0e546dbe sock_release +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e929c7d mmc_add_host +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec5ca00 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x0ec60fac dump_skip +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0ef1a748 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x0ef42060 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x0ef7e235 phy_device_register +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f09c26c pci_request_region +EXPORT_SYMBOL vmlinux 0x0f2fa3cb pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x0f3ef640 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f6a8caf free_user_ns +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7dfa87 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fe0450d devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ffa6bfb dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x0ffce388 sock_wfree +EXPORT_SYMBOL vmlinux 0x10054d4b compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x100cfd28 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x1011a52a consume_skb +EXPORT_SYMBOL vmlinux 0x10261d37 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x104779a7 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1086b426 pci_request_regions +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x10d5a84f __scsi_add_device +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x114e1157 mount_nodev +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1177f36f __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x117fdc1a tty_unlock +EXPORT_SYMBOL vmlinux 0x1181e18a tcf_action_exec +EXPORT_SYMBOL vmlinux 0x118315b2 lease_modify +EXPORT_SYMBOL vmlinux 0x11840472 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x118c3b26 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a57fbb d_genocide +EXPORT_SYMBOL vmlinux 0x11aee95d blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x11dd18ff kernel_sendpage +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 0x1229cc7c mmc_erase +EXPORT_SYMBOL vmlinux 0x1232ee7e pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x12379f56 __bforget +EXPORT_SYMBOL vmlinux 0x123a717d ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x1250bda9 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x127759e1 __find_get_block +EXPORT_SYMBOL vmlinux 0x128b8dd2 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12d5da60 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e5e6a1 set_nlink +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x13113f52 serio_interrupt +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131f2281 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1352bee4 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x137e8b0e inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x13856878 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x138b9123 vfs_writef +EXPORT_SYMBOL vmlinux 0x138d5289 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x13998c6c truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x139e6d29 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x13a8f792 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x13ae93ad unregister_filesystem +EXPORT_SYMBOL vmlinux 0x13c3ff4c tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x141b9eda bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x142af0b1 set_anon_super +EXPORT_SYMBOL vmlinux 0x14429fe3 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x1442f4e0 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x147e1751 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x14a18bab rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x14ce6ac0 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14e85ea0 vme_slot_num +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x1507d69f dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x15226d89 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x152fe6ae __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x154e16db bdi_register_dev +EXPORT_SYMBOL vmlinux 0x15651717 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x15809b1e udp_add_offload +EXPORT_SYMBOL vmlinux 0x159494a2 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15dce31b devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x15e72971 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1655a561 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x167252dd dst_alloc +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x16864fd0 led_blink_set +EXPORT_SYMBOL vmlinux 0x1690df7c param_get_string +EXPORT_SYMBOL vmlinux 0x16a51c4c xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x16ca06dd __scm_destroy +EXPORT_SYMBOL vmlinux 0x16ca6910 sock_efree +EXPORT_SYMBOL vmlinux 0x16cdecce __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x16d790bf pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e901ee agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x16ec7c18 fb_set_var +EXPORT_SYMBOL vmlinux 0x16eed478 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x170ab098 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x1711c22c kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x1711cf4b mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x17141d1a user_path_at_empty +EXPORT_SYMBOL vmlinux 0x174b48b1 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x1753fd45 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0x1755f1ac lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x175eec94 iget_failed +EXPORT_SYMBOL vmlinux 0x17705e35 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x17807917 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x17883ba4 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x178fc438 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f88960 genlmsg_put +EXPORT_SYMBOL vmlinux 0x180ea5df xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x181a4206 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x18318142 ether_setup +EXPORT_SYMBOL vmlinux 0x183590cd pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184fea62 blk_finish_request +EXPORT_SYMBOL vmlinux 0x185ae878 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x18615fc8 inet_put_port +EXPORT_SYMBOL vmlinux 0x18678b59 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x186a6b2c unlock_rename +EXPORT_SYMBOL vmlinux 0x1881e1ac twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x1882ac14 up_read +EXPORT_SYMBOL vmlinux 0x188a0303 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189976ea dev_mc_flush +EXPORT_SYMBOL vmlinux 0x18a3eafa nf_ct_attach +EXPORT_SYMBOL vmlinux 0x18b432f7 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18c7d6d5 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x18d07361 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ecf938 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x18f3ae51 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x190c98be alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x19119f53 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x1922fd2a phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x193bc804 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x196dde37 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x198509a4 param_get_ullong +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a44a44 icmpv6_send +EXPORT_SYMBOL vmlinux 0x19ab7e54 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x19ac4ac7 prepare_binprm +EXPORT_SYMBOL vmlinux 0x19acce15 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19ba5845 dev_get_stats +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d1f90d nobh_write_begin +EXPORT_SYMBOL vmlinux 0x19ec88eb pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x19f4d768 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x19f97897 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x19fccbb4 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x1a004a81 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1a09c055 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x1a232172 d_obtain_root +EXPORT_SYMBOL vmlinux 0x1a25f1df lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x1a26ac77 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4df191 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a87a5ea tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x1aa1486d sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x1aa1d229 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1adad72d phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x1af08daa init_task +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b05814c copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x1b1bcdaf kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b304008 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b5ad418 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x1b5fddae remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6b9197 tty_write_room +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b9ce2f3 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x1bad7672 udp_disconnect +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bbc42f0 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x1bcc6502 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1bf8fa17 blk_register_region +EXPORT_SYMBOL vmlinux 0x1c42ae33 iput +EXPORT_SYMBOL vmlinux 0x1c69eeeb tcp_close +EXPORT_SYMBOL vmlinux 0x1c6a3189 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x1c6b0fc4 skb_pull +EXPORT_SYMBOL vmlinux 0x1c6e5b8f clear_nlink +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1ca337d5 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1cbf9991 __alloc_skb +EXPORT_SYMBOL vmlinux 0x1cf665ba ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x1d054c1e agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d3df0ae blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x1d60869a mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x1d6f0293 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x1d8c7ab6 touch_atime +EXPORT_SYMBOL vmlinux 0x1d98b22a down_read +EXPORT_SYMBOL vmlinux 0x1dad71ad filp_open +EXPORT_SYMBOL vmlinux 0x1db27e53 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dcd1068 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1de7f9c9 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x1debfa7f skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x1df78f5f __dquot_transfer +EXPORT_SYMBOL vmlinux 0x1dfc4afc param_ops_long +EXPORT_SYMBOL vmlinux 0x1e02b3cc jbd2_journal_lock_updates +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 0x1e347f9a input_set_keycode +EXPORT_SYMBOL vmlinux 0x1e37932b i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x1e6344a0 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x1e67f73a sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ead0d23 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ee48426 sock_no_accept +EXPORT_SYMBOL vmlinux 0x1f4414a9 dqget +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f78102c skb_split +EXPORT_SYMBOL vmlinux 0x1f797970 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x1f886ca5 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x1fa65dc1 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x1fb8e833 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc23095 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x1fc262ce security_path_rmdir +EXPORT_SYMBOL vmlinux 0x1fcacfa7 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x1fcf168d nd_device_register +EXPORT_SYMBOL vmlinux 0x1fcfa17f dev_load +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe4a353 dquot_resume +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 0x2010e70b d_move +EXPORT_SYMBOL vmlinux 0x20139763 finish_no_open +EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x2044aea7 amd_iommu_pc_get_max_banks +EXPORT_SYMBOL vmlinux 0x204a7dd8 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x204b8c16 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207a2966 proc_set_user +EXPORT_SYMBOL vmlinux 0x20858a9a blk_end_request +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b61f48 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x20badc65 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20da9219 elv_rb_add +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e9c520 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f8cf31 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x2103af27 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x21137e98 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x2131044b bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x21358d76 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x2144020e netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x21621780 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x21973b3c bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21a8b32f lookup_one_len +EXPORT_SYMBOL vmlinux 0x21a919b6 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x21bb61c8 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x21f2f5e2 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x2204ffbc mmc_remove_host +EXPORT_SYMBOL vmlinux 0x22059335 inet6_offloads +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x221e2276 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2230294c pnp_get_resource +EXPORT_SYMBOL vmlinux 0x22484d31 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2264da63 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x22764f56 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22847270 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x229a43d2 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x22a10489 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c012dc phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x22e25931 inet6_protos +EXPORT_SYMBOL vmlinux 0x22fa256f xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x230556cf bio_copy_data +EXPORT_SYMBOL vmlinux 0x230aa347 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x232b4742 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2340f4ba blk_fetch_request +EXPORT_SYMBOL vmlinux 0x23618555 vc_resize +EXPORT_SYMBOL vmlinux 0x236cb174 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x237fe213 filemap_fault +EXPORT_SYMBOL vmlinux 0x238fe76a pcie_get_mps +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b299a5 xfrm_register_km +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 0x23dd652a copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x23e48969 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240e4740 dmam_alloc_coherent +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 0x2461a8b5 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x246c37c0 dump_emit +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x249a0906 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x249ae83b blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x24a5112e input_unregister_handler +EXPORT_SYMBOL vmlinux 0x24a51923 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x24a9d5ca jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x24ed25d1 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x24f139c1 i2c_release_client +EXPORT_SYMBOL vmlinux 0x24fbf43f fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x24fd07f3 mntget +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2503fff6 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x25089aad clkdev_alloc +EXPORT_SYMBOL vmlinux 0x25230c7a cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2528e4ec neigh_table_clear +EXPORT_SYMBOL vmlinux 0x2529834d pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2575d3fc send_sig +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2587de1f tcp_v4_syn_recv_sock +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 0x25f7520e mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x2612e540 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x263a95ca mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x263bc2dc gnet_stats_start_copy +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 0x2666c2c5 dev_open +EXPORT_SYMBOL vmlinux 0x2677506d copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x2681951d __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x268259ac loop_register_transfer +EXPORT_SYMBOL vmlinux 0x2684fabd ip6_frag_init +EXPORT_SYMBOL vmlinux 0x26857972 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x2686baed proc_set_size +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x26a4960e ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x26c05f0d notify_change +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f76fab xfrm_input +EXPORT_SYMBOL vmlinux 0x27021074 vm_map_ram +EXPORT_SYMBOL vmlinux 0x2719f162 neigh_destroy +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x273b9126 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2754f058 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x2777537b devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x27a59d35 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27b504d2 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x27bbdeb0 tty_check_change +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c33efe csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x2805c1d2 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28198a4f setup_new_exec +EXPORT_SYMBOL vmlinux 0x2824c3cc dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x282f5aa3 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x283475f3 seq_vprintf +EXPORT_SYMBOL vmlinux 0x285880e3 xattr_full_name +EXPORT_SYMBOL vmlinux 0x285a02b7 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x285a379f udp_sendmsg +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a9ca2d blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x28abfe6e scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x28b23647 truncate_setsize +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28e25e96 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x28f6433e da903x_query_status +EXPORT_SYMBOL vmlinux 0x28fa2be9 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x2918d4eb inet_bind +EXPORT_SYMBOL vmlinux 0x294b6ef1 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x296b451e set_device_ro +EXPORT_SYMBOL vmlinux 0x297058e5 up_write +EXPORT_SYMBOL vmlinux 0x2984a35b input_grab_device +EXPORT_SYMBOL vmlinux 0x29b45c96 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x29b92dc7 dquot_acquire +EXPORT_SYMBOL vmlinux 0x29c195de dput +EXPORT_SYMBOL vmlinux 0x29e7cbc7 tty_port_init +EXPORT_SYMBOL vmlinux 0x29eaa8cb nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x2a03f35e gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x2a08971f release_sock +EXPORT_SYMBOL vmlinux 0x2a1569ec padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a6772e6 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x2a7c5d8c elv_rb_find +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2aaecbe9 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x2ab95cfb param_ops_int +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2acda3c4 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae94178 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b1ebfe0 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b56707e thaw_super +EXPORT_SYMBOL vmlinux 0x2b6284bd rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x2b66f45a kill_anon_super +EXPORT_SYMBOL vmlinux 0x2b73c325 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x2b8b0d17 sk_common_release +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 0x2beaf08e downgrade_write +EXPORT_SYMBOL vmlinux 0x2bee6f96 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2fc563 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x2c30fd6a tty_throttle +EXPORT_SYMBOL vmlinux 0x2c376cb5 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x2c43215f dqput +EXPORT_SYMBOL vmlinux 0x2c48a0eb locks_copy_lock +EXPORT_SYMBOL vmlinux 0x2c592305 done_path_create +EXPORT_SYMBOL vmlinux 0x2c5b3e8c param_set_byte +EXPORT_SYMBOL vmlinux 0x2c6fb026 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x2c794f0b submit_bio_wait +EXPORT_SYMBOL vmlinux 0x2c8644d9 input_register_handle +EXPORT_SYMBOL vmlinux 0x2c9a530e inet_getname +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2ca5602c netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2ccebcdc tcf_register_action +EXPORT_SYMBOL vmlinux 0x2cd8f4d2 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d03d9d1 lwtunnel_output +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 0x2d3891fa nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x2d38e2d0 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x2d50562b scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x2d52fab0 register_console +EXPORT_SYMBOL vmlinux 0x2d861fc5 rwsem_wake +EXPORT_SYMBOL vmlinux 0x2dc742c5 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2ddca336 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e18e336 vfs_rename +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2104ff tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e4258fd devm_memremap_pages +EXPORT_SYMBOL vmlinux 0x2e4cd710 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x2e507fd8 netdev_change_features +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e6164cc netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x2e61c35a dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x2e79adaf i2c_verify_client +EXPORT_SYMBOL vmlinux 0x2e91f238 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x2ebf4823 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x2ef2c395 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x2ef56efd netdev_lower_get_next_private +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 0x2f1a1148 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x2f1a3ced netlink_broadcast +EXPORT_SYMBOL vmlinux 0x2f1d48e6 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3f5dd8 mdiobus_read +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4d0795 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x2f64f89f cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2f6890ec blk_requeue_request +EXPORT_SYMBOL vmlinux 0x2f74b0cb netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2f955d4c mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x2f9ad504 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x2fa894d0 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x2fae81e7 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fb9df99 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x2fbab4ec pci_get_slot +EXPORT_SYMBOL vmlinux 0x2fd10ca8 dev_mc_init +EXPORT_SYMBOL vmlinux 0x2fdec3aa is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x2fe09796 request_firmware +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x3008dde1 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x300c37ed mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x3026b27a i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30941480 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a8b2b9 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30b54d95 generic_listxattr +EXPORT_SYMBOL vmlinux 0x30ded524 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x30e0746d mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30ea5b65 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x30eaf775 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x30eb6e73 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x30ed05f5 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x30f9f430 mpage_readpages +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x31237994 bio_endio +EXPORT_SYMBOL vmlinux 0x31358bba locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x314dc0c9 I_BDEV +EXPORT_SYMBOL vmlinux 0x31501d21 __brelse +EXPORT_SYMBOL vmlinux 0x31520e02 follow_down_one +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31fe122d get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x320657c8 fput +EXPORT_SYMBOL vmlinux 0x320b4487 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x3230da4f padata_alloc +EXPORT_SYMBOL vmlinux 0x3236946c deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32804b6b simple_getattr +EXPORT_SYMBOL vmlinux 0x32822579 get_empty_filp +EXPORT_SYMBOL vmlinux 0x328dc79c __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x32a78424 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x32b9ca9b iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x3304dc37 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x330817b9 seq_pad +EXPORT_SYMBOL vmlinux 0x3316439a tcp_prot +EXPORT_SYMBOL vmlinux 0x3323b20a bio_phys_segments +EXPORT_SYMBOL vmlinux 0x332e4642 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x3336f1f7 inet6_bind +EXPORT_SYMBOL vmlinux 0x33374160 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x334e35a6 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x3356b90b cpu_tss +EXPORT_SYMBOL vmlinux 0x338df7a4 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x33993cd3 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x33a35538 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33baf29c commit_creds +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d7df9a mmc_detect_change +EXPORT_SYMBOL vmlinux 0x33e82f3d tty_register_driver +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33f6d300 simple_unlink +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3400eab8 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x3402a104 sg_miter_start +EXPORT_SYMBOL vmlinux 0x34042cb4 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x340de315 tso_start +EXPORT_SYMBOL vmlinux 0x344c1dcc get_super +EXPORT_SYMBOL vmlinux 0x3454ed9f ns_capable +EXPORT_SYMBOL vmlinux 0x345638fd inet_del_offload +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x3465e0aa nf_log_unset +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347a0690 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x3488a141 param_ops_uint +EXPORT_SYMBOL vmlinux 0x348daaa0 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x3491392c migrate_page_copy +EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map +EXPORT_SYMBOL vmlinux 0x3498ef29 write_one_page +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34aaf82d dcache_dir_open +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f91219 blk_start_queue +EXPORT_SYMBOL vmlinux 0x34fc9494 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x34fd06ff bdev_read_only +EXPORT_SYMBOL vmlinux 0x350e0edb nvm_submit_io +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3568d983 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x357054b9 mntput +EXPORT_SYMBOL vmlinux 0x3571b3f7 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x35815f6c xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x358242df devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x358b451b km_state_notify +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35c2a8a1 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x35df3f40 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x35dfc59a __neigh_event_send +EXPORT_SYMBOL vmlinux 0x35e0aa70 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x36059f8d neigh_xmit +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x36319f31 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x36529293 dev_activate +EXPORT_SYMBOL vmlinux 0x36550ddd d_splice_alias +EXPORT_SYMBOL vmlinux 0x36562193 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x367f0b3f dev_addr_del +EXPORT_SYMBOL vmlinux 0x36869904 phy_resume +EXPORT_SYMBOL vmlinux 0x369593e7 dup_iter +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36b5778d pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36e441ca unload_nls +EXPORT_SYMBOL vmlinux 0x36f36359 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x3730e8eb file_open_root +EXPORT_SYMBOL vmlinux 0x3731455e phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x377e6ba8 pci_map_rom +EXPORT_SYMBOL vmlinux 0x3781ca25 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x37a07efe skb_try_coalesce +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 0x37ea3dd5 tty_kref_put +EXPORT_SYMBOL vmlinux 0x37efabf2 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x37f44e9a netif_napi_del +EXPORT_SYMBOL vmlinux 0x37fb272d mmc_can_trim +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x38193a1f pagecache_get_page +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38562364 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x385b7609 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x3865ff49 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x386de8bd dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x386eba4e unregister_netdev +EXPORT_SYMBOL vmlinux 0x386fbd93 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x3870e669 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x38743f02 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x38847288 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x3897ab37 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b87b55 locks_free_lock +EXPORT_SYMBOL vmlinux 0x38b8a940 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x38f3e8fa tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x38fe5225 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x390b5752 kset_unregister +EXPORT_SYMBOL vmlinux 0x391782e3 pipe_lock +EXPORT_SYMBOL vmlinux 0x391ecb42 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x3928cae5 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x392fe8f8 ps2_drain +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 0x396ea611 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x3992d9f9 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399e150f skb_put +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39a48e8e pci_enable_device +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39dd9223 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x39dd9a84 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x39de14d6 d_delete +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a1ac941 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x3a24197c tcp_poll +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a483144 inet_frags_init +EXPORT_SYMBOL vmlinux 0x3a501ee7 __f_setown +EXPORT_SYMBOL vmlinux 0x3a53781d unregister_shrinker +EXPORT_SYMBOL vmlinux 0x3a8cde7b ata_link_printk +EXPORT_SYMBOL vmlinux 0x3a9a4ba3 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9b75cb dquot_enable +EXPORT_SYMBOL vmlinux 0x3ab15b60 mutex_trylock +EXPORT_SYMBOL vmlinux 0x3af0a83e dentry_open +EXPORT_SYMBOL vmlinux 0x3afb348a blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x3b01664e inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3b0c0d25 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x3b14b1c8 get_user_pages +EXPORT_SYMBOL vmlinux 0x3b2b7038 seq_release_private +EXPORT_SYMBOL vmlinux 0x3b58315e udp6_csum_init +EXPORT_SYMBOL vmlinux 0x3b5f5011 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b76a0f3 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bce2709 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x3be10771 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x3bf75480 thaw_bdev +EXPORT_SYMBOL vmlinux 0x3c0244c8 param_set_charp +EXPORT_SYMBOL vmlinux 0x3c1ee19d agp_put_bridge +EXPORT_SYMBOL vmlinux 0x3c2fb57f vfs_symlink +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c4a3159 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x3c4e1a68 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x3c530f6a sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x3c5731e5 km_policy_expired +EXPORT_SYMBOL vmlinux 0x3c5eafb6 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x3c66f14b ping_prot +EXPORT_SYMBOL vmlinux 0x3c79af52 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c86f2bf unregister_quota_format +EXPORT_SYMBOL vmlinux 0x3c97fd72 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x3c98d39e vfs_setpos +EXPORT_SYMBOL vmlinux 0x3cabf226 eth_header_parse +EXPORT_SYMBOL vmlinux 0x3caccf60 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x3cb052b9 vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x3cb57ca9 serio_bus +EXPORT_SYMBOL vmlinux 0x3cbce908 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x3cbfa215 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x3cca3e23 key_revoke +EXPORT_SYMBOL vmlinux 0x3cd7b0d7 inode_change_ok +EXPORT_SYMBOL vmlinux 0x3ce43d68 simple_dname +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cec314a block_read_full_page +EXPORT_SYMBOL vmlinux 0x3cf1e0a2 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x3cfa6e30 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x3d017b43 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x3d0663d2 dquot_alloc +EXPORT_SYMBOL vmlinux 0x3d0a2c6f scsi_dma_map +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d150064 mipi_dsi_driver_unregister +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 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e155a81 __frontswap_load +EXPORT_SYMBOL vmlinux 0x3e279938 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e31a3a3 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e957a69 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x3eb1d975 agp_create_memory +EXPORT_SYMBOL vmlinux 0x3ebea578 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f1a8fdb jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4c80b1 bdget_disk +EXPORT_SYMBOL vmlinux 0x3f5f0928 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x3f8074fa xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x3f916165 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x3fb060b0 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x3fd419fb cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff673be devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x3ffea96d devm_request_resource +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40342066 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x40416267 dev_printk +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x405ce98b blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x4061de7d padata_free +EXPORT_SYMBOL vmlinux 0x406622b6 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x4075d4d9 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x408d554d phy_start +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 0x409d564f sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a70dd1 give_up_console +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c39b24 pcie_port_service_register +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 0x40dde7b7 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x40e1db47 sync_inode +EXPORT_SYMBOL vmlinux 0x40e1dc1c block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x40f5b19b arp_send +EXPORT_SYMBOL vmlinux 0x40fa4761 param_ops_bool +EXPORT_SYMBOL vmlinux 0x411cc651 kdb_current_task +EXPORT_SYMBOL vmlinux 0x41267458 dev_warn +EXPORT_SYMBOL vmlinux 0x412b4728 phy_device_create +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x419ea83a seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41bf8f06 sock_wake_async +EXPORT_SYMBOL vmlinux 0x41d58b1b ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x41d92e35 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x41e5954d dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x41ec36da mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x4213a1cf param_set_copystring +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421e4ea6 __frontswap_test +EXPORT_SYMBOL vmlinux 0x422129fd __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x422d3995 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424a65e4 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x424c941b nf_reinject +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42598ef1 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x425db6fc d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x429c0347 gnttab_free_pages +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42b22b1a do_truncate +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42c9cf99 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x42d4bf1e from_kuid_munged +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437d156d submit_bh +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43966d52 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x43bd04bd single_release +EXPORT_SYMBOL vmlinux 0x43bd8234 pipe_unlock +EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x43e7756c generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x43ea0555 vc_cons +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441acd86 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x442aec6e unregister_cdrom +EXPORT_SYMBOL vmlinux 0x44307657 devm_iounmap +EXPORT_SYMBOL vmlinux 0x443b8633 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x4443b7d3 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x44505856 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x445c6989 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x4484656e param_set_invbool +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 0x44cfd09d cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x44e84d24 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44e9e3a1 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x4514da48 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x4517f89c inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x45241de3 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x453824e5 no_llseek +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454a61fe mdiobus_free +EXPORT_SYMBOL vmlinux 0x4576f8ab netdev_state_change +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45d80009 netdev_features_change +EXPORT_SYMBOL vmlinux 0x45e6d5c7 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x45e9ec2b poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x45f83971 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x4604a43a mem_section +EXPORT_SYMBOL vmlinux 0x460f2e04 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461e94b5 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462a8040 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x464401a5 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x4645a389 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46640b68 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x469624c0 __napi_complete +EXPORT_SYMBOL vmlinux 0x46968002 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x4699836e devm_memremap +EXPORT_SYMBOL vmlinux 0x46ad53dd phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x46c3d763 uart_match_port +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46d69cb9 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x46e5eb0b scsi_scan_host +EXPORT_SYMBOL vmlinux 0x46ef5893 bio_reset +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470b842b agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x47181c82 simple_rmdir +EXPORT_SYMBOL vmlinux 0x47184d81 seq_printf +EXPORT_SYMBOL vmlinux 0x4727cc79 crypto_sha512_update +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 0x474a3d12 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x474c1753 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x474ecc8c blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x47518750 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +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 0x4797cc2e netpoll_setup +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47c34e10 amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0x47c879bc netpoll_print_options +EXPORT_SYMBOL vmlinux 0x47d9c77f __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x47f111f1 __pagevec_release +EXPORT_SYMBOL vmlinux 0x47f2e5be kthread_stop +EXPORT_SYMBOL vmlinux 0x47fb3685 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x480a7aaa tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x48145e5b lock_sock_fast +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x482646b3 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x487ed174 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x4888e6da md_done_sync +EXPORT_SYMBOL vmlinux 0x48b0815f __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48ee1aee inet_del_protocol +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x491341f3 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x492080b4 block_write_begin +EXPORT_SYMBOL vmlinux 0x49471163 put_disk +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x49596da5 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49784f55 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b80cca ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x49bd20c5 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49f90f66 tcp_filter +EXPORT_SYMBOL vmlinux 0x4a185444 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x4a3a4ebc finish_open +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4aa0e68c force_sig +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4aca0c24 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4adac602 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x4ae70cdf blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x4af240d5 md_write_start +EXPORT_SYMBOL vmlinux 0x4af9dbc1 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b2fa091 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x4b400883 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x4b431602 elv_add_request +EXPORT_SYMBOL vmlinux 0x4b475cf4 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x4b4a6f5a input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b7a2aa2 scsi_host_get +EXPORT_SYMBOL vmlinux 0x4b80b4b6 skb_dequeue +EXPORT_SYMBOL vmlinux 0x4b88e347 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x4b985272 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb4c166 seq_read +EXPORT_SYMBOL vmlinux 0x4bc1830f tcp_make_synack +EXPORT_SYMBOL vmlinux 0x4bc478af padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x4bd2383a ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x4bd37742 tty_hangup +EXPORT_SYMBOL vmlinux 0x4be8dd9e netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x4bee44c6 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x4bf22071 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x4bfb813a bio_init +EXPORT_SYMBOL vmlinux 0x4c048a93 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c1b8d6e rtnl_notify +EXPORT_SYMBOL vmlinux 0x4c253626 seq_open_private +EXPORT_SYMBOL vmlinux 0x4c26a18a fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3654bb kobject_set_name +EXPORT_SYMBOL vmlinux 0x4c371b2c sock_update_memcg +EXPORT_SYMBOL vmlinux 0x4c874250 udp_prot +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4ca33ed7 d_make_root +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4ccc64a0 single_open +EXPORT_SYMBOL vmlinux 0x4cd85dd9 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce9182c tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x4cf33349 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x4cf4e8a3 phy_suspend +EXPORT_SYMBOL vmlinux 0x4d052640 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x4d24fdcf pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x4d4f98a2 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x4d5be30c get_disk +EXPORT_SYMBOL vmlinux 0x4d680101 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x4d76b46e devm_free_irq +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dbbfa72 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e0ded22 path_noexec +EXPORT_SYMBOL vmlinux 0x4e2833d8 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e70c449 netdev_notice +EXPORT_SYMBOL vmlinux 0x4e7464c6 dev_notice +EXPORT_SYMBOL vmlinux 0x4e789a29 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x4e95039c kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eae3e6b security_mmap_file +EXPORT_SYMBOL vmlinux 0x4ef7fb9f neigh_table_init +EXPORT_SYMBOL vmlinux 0x4f0ecf0a pci_disable_msix +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 0x4f5c141b __bread_gfp +EXPORT_SYMBOL vmlinux 0x4f5c742b agp_allocate_memory +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 0x4f851020 __vfs_write +EXPORT_SYMBOL vmlinux 0x4f878d57 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4fb96b7f phy_drivers_register +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff86b40 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x50051430 sock_no_getname +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x504d60a3 vfs_readf +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x505a862d netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506f1312 param_get_long +EXPORT_SYMBOL vmlinux 0x508653d1 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b0028d swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x50b26ac5 tcf_exts_change +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 0x50e9ed03 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x50f5e2c4 noop_llseek +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511fab90 led_set_brightness +EXPORT_SYMBOL vmlinux 0x51226286 __get_page_tail +EXPORT_SYMBOL vmlinux 0x512e2c80 __ps2_command +EXPORT_SYMBOL vmlinux 0x514d84b4 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x51702e0a tty_name +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x517897a4 path_is_under +EXPORT_SYMBOL vmlinux 0x519208ff inet_ioctl +EXPORT_SYMBOL vmlinux 0x51abda18 wireless_send_event +EXPORT_SYMBOL vmlinux 0x51b38849 unregister_key_type +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5205a391 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x5209822b vfs_rmdir +EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x5214c1f3 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x52164f7a backlight_force_update +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x523504f7 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x525eefe1 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x52633f66 migrate_page +EXPORT_SYMBOL vmlinux 0x52676d3e udp_poll +EXPORT_SYMBOL vmlinux 0x5297688e uart_suspend_port +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a39a83 cdev_init +EXPORT_SYMBOL vmlinux 0x52aacc6a md_flush_request +EXPORT_SYMBOL vmlinux 0x52b1c059 write_cache_pages +EXPORT_SYMBOL vmlinux 0x52c2ba01 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x52df93a3 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x532aec41 bd_set_size +EXPORT_SYMBOL vmlinux 0x53325e7d dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x533ae2b0 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x533eae68 __inode_permission +EXPORT_SYMBOL vmlinux 0x5351fb25 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5363d182 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x5365709f truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x53690d20 eth_header_cache +EXPORT_SYMBOL vmlinux 0x5369e3b0 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x53751003 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x53770b96 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x537ce571 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x5382ffe5 vfs_unlink +EXPORT_SYMBOL vmlinux 0x53927083 tty_devnum +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53aa2c4c scm_detach_fds +EXPORT_SYMBOL vmlinux 0x53b2bbae dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x53b96136 inet_unregister_protosw +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 0x54279e4b install_exec_creds +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 0x54800e2f input_get_keycode +EXPORT_SYMBOL vmlinux 0x5499aeee mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54bbce23 md_reload_sb +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c87ca2 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x54c990af compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ea4015 napi_disable +EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait +EXPORT_SYMBOL vmlinux 0x54f264a5 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x553a316f find_get_entry +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 0x5593dc97 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x559b49dc __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x55ae0a0e nf_log_unregister +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55dc5ded kfree_skb +EXPORT_SYMBOL vmlinux 0x55e26f1f bio_map_kern +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55eceb1e register_md_personality +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x55fe4a62 vme_irq_request +EXPORT_SYMBOL vmlinux 0x5628ccfa xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x5633d3b7 keyring_alloc +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x5652af2d dev_mc_sync +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d28eb4 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x56e4cc01 find_vma +EXPORT_SYMBOL vmlinux 0x56ec6df4 netdev_alert +EXPORT_SYMBOL vmlinux 0x56fc1b20 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x570c8403 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573d3338 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x578d29f5 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x5799bdb2 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x57b3cda8 padata_stop +EXPORT_SYMBOL vmlinux 0x57b8b991 vfs_create +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c41578 security_path_rename +EXPORT_SYMBOL vmlinux 0x57e4fb66 blk_complete_request +EXPORT_SYMBOL vmlinux 0x581ca159 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5823e69e blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x58356b9b rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x58555e7e kern_path_create +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 0x58ad5d0f pci_get_device +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f7c797 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x58fcb24e __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x590177d3 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x591f1c3f splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x591f5a3f nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x59332906 dev_driver_string +EXPORT_SYMBOL vmlinux 0x59347bd4 read_dev_sector +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5963416e jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x597b1981 blk_peek_request +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59afcc2e nobh_writepage +EXPORT_SYMBOL vmlinux 0x59b79025 agp_copy_info +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59c64c4f end_page_writeback +EXPORT_SYMBOL vmlinux 0x59e40805 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x59e47b5d softnet_data +EXPORT_SYMBOL vmlinux 0x5a00d4c6 kernel_read +EXPORT_SYMBOL vmlinux 0x5a07ff4d default_llseek +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a1b1d69 __dst_free +EXPORT_SYMBOL vmlinux 0x5a271ef7 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x5a2d7f93 set_user_nice +EXPORT_SYMBOL vmlinux 0x5a3a268e netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x5a451a41 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a70235e nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x5a7f850c sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a956ed5 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x5a9dabcc nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x5aa6d7ea sk_stop_timer +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5adcc2f2 vfs_writev +EXPORT_SYMBOL vmlinux 0x5ae01b79 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x5af9e076 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x5afe26df ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b125c6d nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x5b1d7d07 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x5b332173 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b63cbd2 dev_addr_init +EXPORT_SYMBOL vmlinux 0x5b6ea32b blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x5b82ff23 may_umount_tree +EXPORT_SYMBOL vmlinux 0x5b8e5e38 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5ba52583 vfs_getattr +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bc9dfb2 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x5be1668e simple_readpage +EXPORT_SYMBOL vmlinux 0x5beb002a blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c195667 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x5c277931 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x5c28b52e pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x5c2ccd25 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x5c36b0f2 km_state_expired +EXPORT_SYMBOL vmlinux 0x5c3878f1 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x5c4f7a05 may_umount +EXPORT_SYMBOL vmlinux 0x5c6a6dde __mdiobus_register +EXPORT_SYMBOL vmlinux 0x5c92dcda mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x5caecffe netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x5cb7420f kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x5ccc6d36 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x5cd8e178 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x5cf304c0 mount_pseudo +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x5d095b7d register_gifconf +EXPORT_SYMBOL vmlinux 0x5d1f7d8a ht_create_irq +EXPORT_SYMBOL vmlinux 0x5d33280f param_get_ulong +EXPORT_SYMBOL vmlinux 0x5d346f84 skb_find_text +EXPORT_SYMBOL vmlinux 0x5d37142d fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d55ced6 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d828001 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d9c071f pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x5d9ce1a7 kern_unmount +EXPORT_SYMBOL vmlinux 0x5dba7362 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x5dbfcf5e inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x5dd10a82 from_kprojid +EXPORT_SYMBOL vmlinux 0x5df52f26 sget +EXPORT_SYMBOL vmlinux 0x5dfec762 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x5e02d0ea param_set_ullong +EXPORT_SYMBOL vmlinux 0x5e1c15f1 phy_connect +EXPORT_SYMBOL vmlinux 0x5e3976a1 input_open_device +EXPORT_SYMBOL vmlinux 0x5e429dea have_submounts +EXPORT_SYMBOL vmlinux 0x5e47380a try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x5e61b95a netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x5e67da91 poll_initwait +EXPORT_SYMBOL vmlinux 0x5e7ea998 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x5e8a5be8 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb8ae7c seq_release +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ee1acc5 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f119cf1 down_write_trylock +EXPORT_SYMBOL vmlinux 0x5f2a3f1d agp_bind_memory +EXPORT_SYMBOL vmlinux 0x5f362106 sk_net_capable +EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x5f63b6e9 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x5f6abb68 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x5f7eaf29 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fcf9403 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ffb0260 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x5ffd36cb do_splice_direct +EXPORT_SYMBOL vmlinux 0x60057967 open_exec +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x6007122a page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x60159254 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x601c0516 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x601e57bb vlan_vids_del_by_dev +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 0x605b5eee key_payload_reserve +EXPORT_SYMBOL vmlinux 0x60648ff8 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6070957b tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x6076b0d2 kill_litter_super +EXPORT_SYMBOL vmlinux 0x60887879 __kfree_skb +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609bf2ef ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x60a0b6d6 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60bc5572 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x60c604bf mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x61061693 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x6107756d genl_unregister_family +EXPORT_SYMBOL vmlinux 0x61091fdc vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x6124154b devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x615c7fc8 param_ops_short +EXPORT_SYMBOL vmlinux 0x6167f664 dma_pool_create +EXPORT_SYMBOL vmlinux 0x61839aea mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b1d4a3 blk_get_queue +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bb38af jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x61debf53 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61fb248a node_states +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x6206a9bb ata_print_version +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 0x62453872 register_shrinker +EXPORT_SYMBOL vmlinux 0x625aeef4 tc_classify +EXPORT_SYMBOL vmlinux 0x6270edf6 __devm_release_region +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 0x6284118e __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x628ecab3 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x62a06f32 fb_class +EXPORT_SYMBOL vmlinux 0x62c9f08e tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x62fb135e i2c_del_driver +EXPORT_SYMBOL vmlinux 0x62fe7222 touch_buffer +EXPORT_SYMBOL vmlinux 0x630225ab pci_set_mwi +EXPORT_SYMBOL vmlinux 0x630a29c0 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6333adae input_set_abs_params +EXPORT_SYMBOL vmlinux 0x63352dba kobject_del +EXPORT_SYMBOL vmlinux 0x633615ea dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x633d0447 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x633d0b27 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x634ba06b tty_do_resize +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x637c4ddf nd_integrity_init +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x638f6a34 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x63925d30 request_firmware_nowait +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 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64132478 make_bad_inode +EXPORT_SYMBOL vmlinux 0x644180c6 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x646d7452 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x648ca3df abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649f63fb skb_clone +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64af1abf fb_find_mode +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c0c299 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x64c65ae2 pci_write_vpd +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 0x651fc262 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x653737dc __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x65649104 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x659c07c7 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x65a65841 __frontswap_store +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 0x65dce6eb __serio_register_driver +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65f08389 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x661c0b20 bdi_register +EXPORT_SYMBOL vmlinux 0x6625a6e6 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x6628e1c5 to_ndd +EXPORT_SYMBOL vmlinux 0x662c2456 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x66646b83 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x668fbd06 submit_bio +EXPORT_SYMBOL vmlinux 0x66947404 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x669aa26c keyring_search +EXPORT_SYMBOL vmlinux 0x669b9ba5 current_fs_time +EXPORT_SYMBOL vmlinux 0x66b8dd2f ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66de6e1f xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x6709b8e9 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x671d490e dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x67248167 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6744018d param_get_charp +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67989c1f read_cache_page +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67bf2592 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x67d2ff53 fd_install +EXPORT_SYMBOL vmlinux 0x67e71bd1 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x680855a2 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x68085a7b pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x68117130 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x6818e327 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x682d3512 vme_lm_request +EXPORT_SYMBOL vmlinux 0x6857c6ae mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x688b7e4e tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x6894bc4f bprm_change_interp +EXPORT_SYMBOL vmlinux 0x68975fc1 blk_make_request +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68cf5c56 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x68e1d73f __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x68ea0b62 kernel_connect +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x6937c7cb mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x6938cf5f param_set_long +EXPORT_SYMBOL vmlinux 0x69467dc9 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x6954a1c2 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x695bcbf7 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697797e6 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x697b5588 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69890ba1 km_query +EXPORT_SYMBOL vmlinux 0x698f5e80 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x699e7ed8 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b167fd del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x69be89e9 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x69decbcc netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a2913cf dev_mc_add +EXPORT_SYMBOL vmlinux 0x6a2a19c8 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x6a2c72bf pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x6a328a32 dcache_readdir +EXPORT_SYMBOL vmlinux 0x6a352227 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6a61468d cfb_copyarea +EXPORT_SYMBOL vmlinux 0x6a649814 dget_parent +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a99bfe6 scsi_device_get +EXPORT_SYMBOL vmlinux 0x6a9e3c8b fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x6ac0a22e param_get_ushort +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6adb115c cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae6f21c blk_execute_rq +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af41fe2 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x6b06a9c9 tty_set_operations +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2b0f60 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x6b2b7a87 register_filesystem +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b72ac24 nvm_register_target +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b842460 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x6b8a0f58 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x6b964fb9 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x6b9f72f8 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcc8301 cdrom_ioctl +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 0x6c2d0d87 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x6c44065e sock_no_poll +EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c559bff blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c7002ce unlock_buffer +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c82f19f twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x6c8751ad x86_hyper +EXPORT_SYMBOL vmlinux 0x6c9de1d5 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x6ca3aea4 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x6cb84944 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x6cbfbe3b pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6cd66597 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x6cda051a inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x6cddf3ce uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x6ce7b87d forget_cached_acl +EXPORT_SYMBOL vmlinux 0x6cf36069 qdisc_reset +EXPORT_SYMBOL vmlinux 0x6cf59a64 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d161983 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x6d2849d8 blk_mq_can_queue +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 0x6d496a34 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x6d566d0a qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x6d6eb09a nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x6dba41d8 pci_save_state +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6dc937f1 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x6de4f4a9 path_put +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df2e3ab pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x6df67505 prepare_creds +EXPORT_SYMBOL vmlinux 0x6e016c95 simple_setattr +EXPORT_SYMBOL vmlinux 0x6e3c3b75 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x6e4f9354 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e9cddf7 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea081a6 km_is_alive +EXPORT_SYMBOL vmlinux 0x6ec05f72 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x6ec513fb pci_platform_rom +EXPORT_SYMBOL vmlinux 0x6ed3f7b6 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x6ee6099a mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x6ee76520 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x6eef3ee7 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x6ef5666e cdev_alloc +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6ef6c60f current_in_userns +EXPORT_SYMBOL vmlinux 0x6f18c1eb blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f305c36 sock_register +EXPORT_SYMBOL vmlinux 0x6f414edb lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x6f42082a md_cluster_ops +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f87c879 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f952dba posix_test_lock +EXPORT_SYMBOL vmlinux 0x6f99c970 drop_nlink +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd7474d vfs_write +EXPORT_SYMBOL vmlinux 0x6fde6f59 d_set_d_op +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x704e68c4 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7056f88f pci_pme_active +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707abc89 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7086b349 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x70959609 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70d9d2a2 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x71089f5d netif_rx +EXPORT_SYMBOL vmlinux 0x7112229a xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7130c815 __check_sticky +EXPORT_SYMBOL vmlinux 0x715c49b5 __invalidate_device +EXPORT_SYMBOL vmlinux 0x715dc345 __inet_hash +EXPORT_SYMBOL vmlinux 0x71678c92 skb_pad +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring +EXPORT_SYMBOL vmlinux 0x71863ed2 search_binary_handler +EXPORT_SYMBOL vmlinux 0x719c0b69 dquot_get_state +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71dc7068 down_read_trylock +EXPORT_SYMBOL vmlinux 0x71fdd1d5 d_rehash +EXPORT_SYMBOL vmlinux 0x721b3b9a vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x722e09c2 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x723e3dee inode_add_bytes +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x727b98f3 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x727c9b0c vfs_iter_read +EXPORT_SYMBOL vmlinux 0x72a231e0 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72fbd669 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x73098ce6 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x73114dc6 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7337ae61 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735814db cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x735b3695 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x736da9ee vfs_fsync +EXPORT_SYMBOL vmlinux 0x736edf8b put_tty_driver +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x738ef40e simple_write_begin +EXPORT_SYMBOL vmlinux 0x739b9601 vga_client_register +EXPORT_SYMBOL vmlinux 0x739c5685 sock_create +EXPORT_SYMBOL vmlinux 0x73a15d2f jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x73bcc43b bio_split +EXPORT_SYMBOL vmlinux 0x73cf3796 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x74037395 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74324793 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x7433c3f0 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x748170bb scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74a71cfa user_revoke +EXPORT_SYMBOL vmlinux 0x74af3314 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x74bb3084 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d497b3 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x74d75805 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x74d7a82c scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x74e19d2e blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ecc4aa irq_to_desc +EXPORT_SYMBOL vmlinux 0x74f2bdab gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x74f87f9c ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x75028f31 tty_lock +EXPORT_SYMBOL vmlinux 0x7525a60d kobject_init +EXPORT_SYMBOL vmlinux 0x752cd117 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x752ddd52 generic_setlease +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x75486ad8 udplite_prot +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x75788dfc dev_get_by_name +EXPORT_SYMBOL vmlinux 0x7579caa2 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x757f2069 __getblk_slow +EXPORT_SYMBOL vmlinux 0x75864f6d generic_perform_write +EXPORT_SYMBOL vmlinux 0x75ba3e1e scsi_device_lookup_by_target +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 0x75c00afb kill_fasync +EXPORT_SYMBOL vmlinux 0x75ced131 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x75ef7ece truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x765448d6 __register_binfmt +EXPORT_SYMBOL vmlinux 0x765c7096 clk_get +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x7667d919 udp_set_csum +EXPORT_SYMBOL vmlinux 0x7671e52a get_thermal_instance +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x76815cbf pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x76a5f70a xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x76ab70ad kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x76acce87 dump_truncate +EXPORT_SYMBOL vmlinux 0x76ae4335 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x76b12a68 update_devfreq +EXPORT_SYMBOL vmlinux 0x76c55534 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d6b0f6 key_type_keyring +EXPORT_SYMBOL vmlinux 0x76e7a16e acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x77129b2c skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7728cc1d skb_append +EXPORT_SYMBOL vmlinux 0x773814e4 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x773bb0f0 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x77536635 get_gendisk +EXPORT_SYMBOL vmlinux 0x7758629c iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x77721467 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x77767986 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a5d9d4 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d3da12 inode_init_once +EXPORT_SYMBOL vmlinux 0x77ebf6a2 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x77fac759 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x78001e74 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x780562a0 i2c_use_client +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7839a18f __scm_send +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x784b498b kset_register +EXPORT_SYMBOL vmlinux 0x7856c812 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x7863b754 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops +EXPORT_SYMBOL vmlinux 0x7877009a poll_freewait +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7890a71a pci_iomap +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789e61f2 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback +EXPORT_SYMBOL vmlinux 0x78aaafc6 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x78cdd37f skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x78d561d0 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e09bd4 agp_backend_release +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78f02dbc xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x790c1650 arp_tbl +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x79407ba0 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x79693bb9 seq_puts +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797324a1 i2c_transfer +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x79864da9 kill_block_super +EXPORT_SYMBOL vmlinux 0x79a25e05 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79f2a28e eth_header +EXPORT_SYMBOL vmlinux 0x79f7928d pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x7a07577c compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x7a258fb7 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x7a274ebb pci_claim_resource +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a472f88 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a7776a9 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x7a7c8e87 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a90a261 dst_release +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab2ba14 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x7ab4898b free_netdev +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac3a214 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x7ac72ec9 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7af907ff make_kuid +EXPORT_SYMBOL vmlinux 0x7afd340d dev_add_pack +EXPORT_SYMBOL vmlinux 0x7b1014b8 pci_dev_get +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1a7ef0 vme_bus_type +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b32d630 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b52f1ca seq_putc +EXPORT_SYMBOL vmlinux 0x7b5a8df3 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x7b671728 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bb4f45f abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x7bb661d0 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x7bf0a383 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x7bf8ae76 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x7bfad971 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x7bfb729f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x7bffd87d tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x7c07f1df call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c265a41 dst_destroy +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c410e3a iov_iter_init +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c5b45d4 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c63ce0e dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x7c675586 dump_trace +EXPORT_SYMBOL vmlinux 0x7c790378 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x7c984fef do_splice_to +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9b08b9 tso_count_descs +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb8cb95 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x7cbf440d param_set_ulong +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce6dbbe scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf38479 proc_remove +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1b23a4 ll_rw_block +EXPORT_SYMBOL vmlinux 0x7d2868ec inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7d302aaa i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x7d4331ab fsync_bdev +EXPORT_SYMBOL vmlinux 0x7d6efb6f tcp_disconnect +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d70b4bb simple_release_fs +EXPORT_SYMBOL vmlinux 0x7d71445d cpu_active_mask +EXPORT_SYMBOL vmlinux 0x7d896d64 dcb_setapp +EXPORT_SYMBOL vmlinux 0x7d943c06 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7d991d8f pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x7da1f32c scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x7da95bd2 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x7db54ef1 input_event +EXPORT_SYMBOL vmlinux 0x7db780f4 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dc30737 elv_rb_del +EXPORT_SYMBOL vmlinux 0x7dc66026 key_put +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7ddeda19 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0709ea qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x7e1f140e nf_register_hook +EXPORT_SYMBOL vmlinux 0x7e26f8da elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x7e447f3c i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e6526be ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7e828d8d sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x7e8388e0 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x7e83a3c5 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x7e987509 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7eda148c request_key_async +EXPORT_SYMBOL vmlinux 0x7ee17e5d pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x7ee30fef file_update_time +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ef1c2b0 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x7efbef6e security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03c997 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x7f11bde8 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x7f161767 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x7f21fd6e dev_err +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f475748 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7f537324 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f968e7f dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x7f975ebc pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x7fa4837d fasync_helper +EXPORT_SYMBOL vmlinux 0x7fa8b3c1 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fcf8391 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x7fd82ac3 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x80054469 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x80187f80 get_tz_trend +EXPORT_SYMBOL vmlinux 0x802a7dc0 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x803aa31b devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x8068e771 iterate_dir +EXPORT_SYMBOL vmlinux 0x8073c86c dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x807b22d0 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80b4542d ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x80b68881 udp_seq_open +EXPORT_SYMBOL vmlinux 0x80bef5dc neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d4db2d wireless_spy_update +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e596cb dev_get_iflink +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80fee39e devm_gpio_request +EXPORT_SYMBOL vmlinux 0x81042d4f migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x81118a8d kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x811a3230 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x8138a08d page_symlink +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 0x815eabc9 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x81b72a92 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x81da526b sk_ns_capable +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e05f0a i2c_register_driver +EXPORT_SYMBOL vmlinux 0x81e0cb0a tty_port_open +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81f6b43f skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x81fd4cf7 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x81fd6385 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82126779 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x82162192 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x821e8e3a cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x8233d661 d_add_ci +EXPORT_SYMBOL vmlinux 0x82353b30 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x82562ce1 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x826ba43b inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x827e0302 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x827e16cf __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x827fcc95 xfrm4_rcv_encap +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 0x82b077cb get_fs_type +EXPORT_SYMBOL vmlinux 0x82c8fcf7 page_readlink +EXPORT_SYMBOL vmlinux 0x82e43864 netdev_crit +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x83193244 PDE_DATA +EXPORT_SYMBOL vmlinux 0x83249d44 security_path_truncate +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x838584ee simple_transaction_set +EXPORT_SYMBOL vmlinux 0x838c1c58 nf_unregister_net_hook +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 0x83d79ade generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x83dbfffa iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x83deb662 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x84107f95 netif_device_detach +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x842b9f67 register_quota_format +EXPORT_SYMBOL vmlinux 0x842ebcd2 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x8446476e mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x849b7fc8 pci_bus_type +EXPORT_SYMBOL vmlinux 0x84ab45e1 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x84c1cf30 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x84cb9472 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x84cc4934 mutex_unlock +EXPORT_SYMBOL vmlinux 0x84de7059 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85037d57 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x8504d993 ip_defrag +EXPORT_SYMBOL vmlinux 0x8505b805 setattr_copy +EXPORT_SYMBOL vmlinux 0x85075f01 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x8559d322 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x858325bd mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x8586b235 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x858ab799 generic_permission +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x858d6f92 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x859e8c19 napi_complete_done +EXPORT_SYMBOL vmlinux 0x85a2335d dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x85a7ad6e arp_xmit +EXPORT_SYMBOL vmlinux 0x85acda64 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x85b1dcb2 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85db118f pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85ff9594 __devm_request_region +EXPORT_SYMBOL vmlinux 0x85ffc99c vfs_read +EXPORT_SYMBOL vmlinux 0x8607f897 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x860c3cd0 mmc_release_host +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x8631484c sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x86376354 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x863e99e6 __module_get +EXPORT_SYMBOL vmlinux 0x864bdd51 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86564bfc bio_unmap_user +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x867e8e35 ppp_input_error +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x869c9fcb crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a6b430 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x86b6b6df pcie_set_mps +EXPORT_SYMBOL vmlinux 0x86cefeb4 f_setown +EXPORT_SYMBOL vmlinux 0x86d55e8e __genl_register_family +EXPORT_SYMBOL vmlinux 0x86d7aad0 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x86f63907 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87114c42 __seq_open_private +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x871db2a1 blk_init_queue +EXPORT_SYMBOL vmlinux 0x87223bd5 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x872f97db blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x875a7b56 fsnotify_init_mark +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 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87c2af3b __lock_page +EXPORT_SYMBOL vmlinux 0x87cf9bb8 register_key_type +EXPORT_SYMBOL vmlinux 0x880cd93b genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x88108f18 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x88290b4d register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x883fdaf6 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x885982c9 dquot_release +EXPORT_SYMBOL vmlinux 0x886aae07 blk_queue_split +EXPORT_SYMBOL vmlinux 0x887071b9 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x8873c54e scsi_print_sense +EXPORT_SYMBOL vmlinux 0x8874f7fc skb_push +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888a0fe4 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x88aaad6a pci_fixup_device +EXPORT_SYMBOL vmlinux 0x88b1994a tty_port_hangup +EXPORT_SYMBOL vmlinux 0x88d4b0ca input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x88d4c8a4 sock_create_lite +EXPORT_SYMBOL vmlinux 0x8902ead6 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x891ef3a6 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x8929165b tty_free_termios +EXPORT_SYMBOL vmlinux 0x8929d773 uart_resume_port +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x8938cbe2 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x893c387e blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x894710ca crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x8953351f sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x89840244 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x898ddc20 key_alloc +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b35e59 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x89c63f40 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x89ce3ed5 eth_type_trans +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89def522 simple_follow_link +EXPORT_SYMBOL vmlinux 0x89e8a740 md_check_recovery +EXPORT_SYMBOL vmlinux 0x89f0e1b9 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x89fb9231 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a0b1fbc ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a3f5aa1 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0x8a47dfe2 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5f67b7 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a702cf8 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a89eacd free_page_put_link +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa33170 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x8aa9bb66 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x8ab7d9bf ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x8abbe4cb elevator_change +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8b1f2391 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x8b2ca970 key_unlink +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3653c3 mount_subtree +EXPORT_SYMBOL vmlinux 0x8b409105 netdev_info +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b5f06d6 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b6d7871 bio_put +EXPORT_SYMBOL vmlinux 0x8b7f9ae7 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8681fc inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x8b92e129 param_set_bool +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bbff547 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x8bc799d7 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x8c05c9ce nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x8c0eeb8c xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c19b802 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x8c1f6bbb sync_blockdev +EXPORT_SYMBOL vmlinux 0x8c29d595 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x8c509e29 mmc_start_req +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c7a658e netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x8c964929 ilookup +EXPORT_SYMBOL vmlinux 0x8ca5ac59 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x8cba6b1a scsi_block_requests +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce99c31 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x8cfe468e dm_io +EXPORT_SYMBOL vmlinux 0x8d018a43 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x8d13b339 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8d28aea0 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x8d2fa04f sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x8d3fd726 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x8d4a3367 netlink_unicast +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6a8065 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x8d71ed9d sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8a2497 seq_dentry +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 0x8db8850f __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x8dc3974e skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x8dc7abb0 skb_copy +EXPORT_SYMBOL vmlinux 0x8dc88c41 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x8dd73030 inet_select_addr +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9ed1a param_get_invbool +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e247a0a register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x8e437d2a pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x8e56b90a ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x8e612f8e devm_ioremap +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7a19e6 vfs_link +EXPORT_SYMBOL vmlinux 0x8e7b6166 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x8e884b77 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x8e88f9d9 freeze_bdev +EXPORT_SYMBOL vmlinux 0x8e9d10be vfs_mknod +EXPORT_SYMBOL vmlinux 0x8ea163b3 proc_create_data +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ec37096 fb_pan_display +EXPORT_SYMBOL vmlinux 0x8ed4ce10 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x8ef67b2e inet_shutdown +EXPORT_SYMBOL vmlinux 0x8f1be063 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f3c01a2 try_to_release_page +EXPORT_SYMBOL vmlinux 0x8f48499a tcf_em_register +EXPORT_SYMBOL vmlinux 0x8f658599 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fa9696f dev_trans_start +EXPORT_SYMBOL vmlinux 0x8fae88dd security_inode_readlink +EXPORT_SYMBOL vmlinux 0x8fafbbe6 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x8fb4cfab register_qdisc +EXPORT_SYMBOL vmlinux 0x8fcb6aac xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x8fd43f3b scsi_add_device +EXPORT_SYMBOL vmlinux 0x8fe3d7e4 seq_open +EXPORT_SYMBOL vmlinux 0x8fe44d0f vga_get +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8ffe77bb blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x900b7659 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x902f4c90 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x90393b7e inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x9061f8c1 pci_find_bus +EXPORT_SYMBOL vmlinux 0x906d0b44 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x906ffaba max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9099edae flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x90b3e8e2 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x90c09864 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x90c3b70c proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x90d40aa9 key_validate +EXPORT_SYMBOL vmlinux 0x90dfcb78 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x90e852f1 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x9100afdb qdisc_destroy +EXPORT_SYMBOL vmlinux 0x9103139b nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x91268044 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x91329927 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x9138078c tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91468095 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x91510bf5 drop_super +EXPORT_SYMBOL vmlinux 0x915f5d14 dev_addr_add +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x916633df agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9176a873 override_creds +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b7b7f4 sk_dst_check +EXPORT_SYMBOL vmlinux 0x91ba7263 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x91c710a6 netdev_printk +EXPORT_SYMBOL vmlinux 0x91da4e1e md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91f90a08 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x9221ecb5 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x922e16b1 pcim_iomap +EXPORT_SYMBOL vmlinux 0x922f5135 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x925931ac udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x925f7a65 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x9260cad1 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x9278dd7a page_waitqueue +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9293c147 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x92a1454a do_SAK +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92c71782 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x92eb8975 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x92ec2067 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93019fb2 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93102210 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x931399a8 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x9322e96b i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x933adca1 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x93634769 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x936cd673 __kernel_write +EXPORT_SYMBOL vmlinux 0x936d14b8 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938294ca pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x93a54b42 generic_write_checks +EXPORT_SYMBOL vmlinux 0x93ae1dd4 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x93b1d97f blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c8132a simple_fill_super +EXPORT_SYMBOL vmlinux 0x93ddb725 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x93e4e62c vmap +EXPORT_SYMBOL vmlinux 0x93eb3ff6 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x93f09e4d dev_uc_del +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x941e9bf9 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x94342808 find_lock_entry +EXPORT_SYMBOL vmlinux 0x944e5bc0 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x9456132f sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x9475f66e qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x94793343 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x9488971d jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x94941980 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949e184d user_path_create +EXPORT_SYMBOL vmlinux 0x94b50c14 cont_write_begin +EXPORT_SYMBOL vmlinux 0x94ba6571 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x94ec8a53 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x950cb450 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9523dbe6 vfs_statfs +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95496a4b inet_stream_connect +EXPORT_SYMBOL vmlinux 0x957fe640 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x9587f6ac udp_proc_register +EXPORT_SYMBOL vmlinux 0x95aa0a31 check_disk_change +EXPORT_SYMBOL vmlinux 0x95aaad32 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x95b84c80 lock_fb_info +EXPORT_SYMBOL vmlinux 0x95ba3ec9 blkdev_put +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95d0397d __getblk_gfp +EXPORT_SYMBOL vmlinux 0x95f4370a cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x95f6e67f skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x9603dd24 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x960b6337 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x962c9299 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x963807ed blk_rq_init +EXPORT_SYMBOL vmlinux 0x96598099 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x9681ea25 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x968fbd2a module_layout +EXPORT_SYMBOL vmlinux 0x96a4c1fc mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b7a2c9 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x96bf4f77 clkdev_drop +EXPORT_SYMBOL vmlinux 0x96cb8c5d security_path_chown +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d1a1d3 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x96f03547 skb_unlink +EXPORT_SYMBOL vmlinux 0x970bea8a sock_no_bind +EXPORT_SYMBOL vmlinux 0x970c649a replace_mount_options +EXPORT_SYMBOL vmlinux 0x9712403c serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x972c5dfe input_unregister_device +EXPORT_SYMBOL vmlinux 0x973a3a4a bioset_free +EXPORT_SYMBOL vmlinux 0x973ccf1d find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x973f4722 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x974f61c0 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x97540f9c fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97557adf passthru_features_check +EXPORT_SYMBOL vmlinux 0x97764e0d ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x97782263 from_kuid +EXPORT_SYMBOL vmlinux 0x978302a4 security_inode_permission +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a2c6b9 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x97a3edea inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a9c5d2 mpage_writepages +EXPORT_SYMBOL vmlinux 0x97aa36be padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x97ae379d vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x97b9bbb1 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x97c5ac7c revalidate_disk +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97dcb70a pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97ff0206 serio_rescan +EXPORT_SYMBOL vmlinux 0x98093ecb module_refcount +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x98243001 proc_mkdir +EXPORT_SYMBOL vmlinux 0x982584a1 bdevname +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98330927 mount_single +EXPORT_SYMBOL vmlinux 0x983a1e8c pci_disable_msi +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987133d6 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x989719df console_start +EXPORT_SYMBOL vmlinux 0x98aa3806 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x98afa4af __dquot_free_space +EXPORT_SYMBOL vmlinux 0x98bcee5a simple_rename +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98dc5a2b ip_options_compile +EXPORT_SYMBOL vmlinux 0x9917dbf5 is_nd_btt +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x99208d54 vm_insert_page +EXPORT_SYMBOL vmlinux 0x99245f93 nf_afinfo +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993db836 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995b4d91 ihold +EXPORT_SYMBOL vmlinux 0x995d3e97 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x99684092 fb_show_logo +EXPORT_SYMBOL vmlinux 0x998be9ae pci_scan_slot +EXPORT_SYMBOL vmlinux 0x998e5c10 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x9991e0bf netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999adafc xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x999c79e5 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a19ea9 set_create_files_as +EXPORT_SYMBOL vmlinux 0x99c09e47 mmc_get_card +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d38086 param_set_short +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99eb780d sk_stream_error +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x9a075c93 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x9a1019b5 kobject_add +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a201578 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x9a2b9383 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x9a3756fa input_inject_event +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a44cc11 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x9a9f0c6b vfs_llseek +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x9b0cc82c dev_emerg +EXPORT_SYMBOL vmlinux 0x9b128547 skb_insert +EXPORT_SYMBOL vmlinux 0x9b18ea2a frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x9b27e600 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x9b29ea79 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b417dc6 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x9b8c2e70 napi_get_frags +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 0x9bcabc35 param_array_ops +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bf2489c scsi_print_command +EXPORT_SYMBOL vmlinux 0x9c0b37d8 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x9c2f9c71 phy_init_hw +EXPORT_SYMBOL vmlinux 0x9c306c90 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x9c30d19e pagecache_write_end +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c4ee9ad pnp_register_driver +EXPORT_SYMBOL vmlinux 0x9c558923 sock_create_kern +EXPORT_SYMBOL vmlinux 0x9c5c2cec kfree_put_link +EXPORT_SYMBOL vmlinux 0x9c6c35f8 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x9c715c6b iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x9c77cf40 inode_set_flags +EXPORT_SYMBOL vmlinux 0x9c8c7c2e compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x9c9075e5 kobject_get +EXPORT_SYMBOL vmlinux 0x9ca97012 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb455f8 update_region +EXPORT_SYMBOL vmlinux 0x9cc879b4 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x9ce92be3 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x9cecea1e blk_get_request +EXPORT_SYMBOL vmlinux 0x9cfdfa0c compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x9d09a459 phy_attach +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d340d2c __secpath_destroy +EXPORT_SYMBOL vmlinux 0x9d3635fd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x9d39337c cfb_fillrect +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d429d53 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x9d46672f blk_stop_queue +EXPORT_SYMBOL vmlinux 0x9d4ba0f6 padata_do_serial +EXPORT_SYMBOL vmlinux 0x9d53af69 stop_tty +EXPORT_SYMBOL vmlinux 0x9d6f28f9 set_trace_device +EXPORT_SYMBOL vmlinux 0x9d998f89 devm_memunmap +EXPORT_SYMBOL vmlinux 0x9d9bddb9 start_tty +EXPORT_SYMBOL vmlinux 0x9d9db483 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9da7509d generic_readlink +EXPORT_SYMBOL vmlinux 0x9daa4b25 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x9dac4b67 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x9deb3d7d nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x9e064a57 generic_update_time +EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e12a7bc filp_close +EXPORT_SYMBOL vmlinux 0x9e1fe466 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x9e219fc5 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e39d9f7 kernel_listen +EXPORT_SYMBOL vmlinux 0x9e3ded07 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e6b1ad0 param_get_byte +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e86d5e0 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x9e9bc1c8 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea0f49f phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec9b3b8 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x9ed6e688 arp_create +EXPORT_SYMBOL vmlinux 0x9eda3790 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x9f0df96c inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x9f22d761 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x9f2312aa dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x9f3dbe91 con_is_bound +EXPORT_SYMBOL vmlinux 0x9f4128f8 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fb5eef3 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x9fc3d4e2 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdd69f2 elv_register_queue +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff99715 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0028705 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa0344945 vme_irq_free +EXPORT_SYMBOL vmlinux 0xa034cc3a tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa0448259 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04c202c should_remove_suid +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06492d2 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xa068e32f serio_open +EXPORT_SYMBOL vmlinux 0xa06ebb53 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xa06ff399 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07da644 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08df5b5 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xa0af5d4c vm_mmap +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d76da7 __dax_fault +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0ecf1ce tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1090f6f generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xa11522c4 __cleancache_init_fs +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 0xa14f59e4 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xa150169c key_link +EXPORT_SYMBOL vmlinux 0xa17e4671 lro_flush_all +EXPORT_SYMBOL vmlinux 0xa190939d max8998_update_reg +EXPORT_SYMBOL vmlinux 0xa1a394c2 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa1ab9e31 blk_put_request +EXPORT_SYMBOL vmlinux 0xa1b3bb22 locks_init_lock +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e7b578 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa208b39d mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2284951 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xa243e5f1 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xa278b49e sock_edemux +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2904e69 tty_vhangup +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2af635b skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xa2af97e2 netdev_err +EXPORT_SYMBOL vmlinux 0xa2b86c8c end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xa2d25534 dev_uc_init +EXPORT_SYMBOL vmlinux 0xa2f16e1e netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xa2fcd8c1 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xa3010830 flush_signals +EXPORT_SYMBOL vmlinux 0xa30824bc cap_mmap_file +EXPORT_SYMBOL vmlinux 0xa309903b dst_init +EXPORT_SYMBOL vmlinux 0xa3146dc5 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa32b7aa3 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xa334fe51 ip6_xmit +EXPORT_SYMBOL vmlinux 0xa34c306a vga_tryget +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa358e53d __lock_buffer +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa38f11ec acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xa3982126 set_security_override +EXPORT_SYMBOL vmlinux 0xa3987e72 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xa399f10b udp_del_offload +EXPORT_SYMBOL vmlinux 0xa3be7170 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xa3d680ab __serio_register_port +EXPORT_SYMBOL vmlinux 0xa3dd12b8 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xa3e0598d generic_getxattr +EXPORT_SYMBOL vmlinux 0xa3e4f4ed scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xa3ebeb91 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xa3ee1478 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xa3fcb7e6 genphy_suspend +EXPORT_SYMBOL vmlinux 0xa40188a6 dev_crit +EXPORT_SYMBOL vmlinux 0xa4102423 scsi_execute +EXPORT_SYMBOL vmlinux 0xa411f2be vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xa415e95d d_instantiate +EXPORT_SYMBOL vmlinux 0xa43f6a61 __breadahead +EXPORT_SYMBOL vmlinux 0xa443b7fd scsi_register_interface +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa452a5b0 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xa454274c md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xa454abb8 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xa4650046 bmap +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa48c7c0c pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xa49550c9 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xa4acca27 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d07df5 del_gendisk +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4e43049 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xa4f47209 file_ns_capable +EXPORT_SYMBOL vmlinux 0xa4fb093f dcb_getapp +EXPORT_SYMBOL vmlinux 0xa50a80c2 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa50cc190 vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xa517a629 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa57a9a4b filemap_flush +EXPORT_SYMBOL vmlinux 0xa594881a mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5b76db2 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xa5c12597 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xa612386c xfrm_state_update +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa63fc852 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xa6468458 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67acf96 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6934452 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xa6ad4db9 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6da470b rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xa6de5c2f grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xa6f83b92 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa7348aab kmalloc_caches +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xa74e5075 genphy_update_link +EXPORT_SYMBOL vmlinux 0xa7659dc4 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xa768e6ae mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xa76a55f9 flow_cache_init +EXPORT_SYMBOL vmlinux 0xa76f3f24 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xa76f5160 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa79046b2 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xa80d3a09 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xa813eacb sock_kmalloc +EXPORT_SYMBOL vmlinux 0xa83c0030 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8531a4b inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xa85330bf lock_sock_nested +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8aaaff1 phy_detach +EXPORT_SYMBOL vmlinux 0xa8b71d3b blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xa8bbf803 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xa8d9186c scmd_printk +EXPORT_SYMBOL vmlinux 0xa8ead476 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xa8f3e1d1 make_kprojid +EXPORT_SYMBOL vmlinux 0xa8f663d0 netdev_emerg +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 0xa9636b98 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9936c85 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9f6070f clk_add_alias +EXPORT_SYMBOL vmlinux 0xaa04f801 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xaa0e1a16 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xaa33d280 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xaa398a94 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xaa4cd878 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa613aa1 skb_seq_read +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaab99724 noop_fsync +EXPORT_SYMBOL vmlinux 0xaabb4fa7 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad84f9c jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xaade03ec bdput +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0799c3 component_match_add +EXPORT_SYMBOL vmlinux 0xab2af5b2 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xab425cb7 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xab4c7e3d neigh_app_ns +EXPORT_SYMBOL vmlinux 0xab4dfda4 set_page_dirty +EXPORT_SYMBOL vmlinux 0xab54f4b4 swiotlb_sync_sg_for_cpu +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 0xab662196 send_sig_info +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 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabee2925 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xabfebbe6 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xac031e6e xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac6affc0 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb568cb security_file_permission +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacbe7249 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd5aa5c pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdf8964 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xace35377 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xace36412 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad05af99 freeze_super +EXPORT_SYMBOL vmlinux 0xad093ef7 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xad0a114a jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1f3b67 sock_i_uid +EXPORT_SYMBOL vmlinux 0xad3b3a24 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xad4a5d9c d_drop +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6a0ce6 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad784b06 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xad83f56f blk_end_request_all +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad999888 misc_register +EXPORT_SYMBOL vmlinux 0xadd71eb2 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xadedee86 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae2c7d9f ip_ct_attach +EXPORT_SYMBOL vmlinux 0xae325518 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xae5225e9 __vfs_read +EXPORT_SYMBOL vmlinux 0xae58bf13 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xae6397ac ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xae66c8a8 put_cmsg +EXPORT_SYMBOL vmlinux 0xae67a13e __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xae8c8a50 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xaea91470 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeaa0cf5 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xaec0f5e9 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xaecd3853 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xaed84832 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xaf03b84e dev_set_group +EXPORT_SYMBOL vmlinux 0xaf0e84fd pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xaf1b1e56 igrab +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf5998fb __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xaf5d6153 d_alloc +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf78193c alloc_pages_current +EXPORT_SYMBOL vmlinux 0xaf87913a km_policy_notify +EXPORT_SYMBOL vmlinux 0xaf98bd67 amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0xaf9a9891 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafc0b785 pci_release_region +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafec676e key_task_permission +EXPORT_SYMBOL vmlinux 0xaff5359f seq_path +EXPORT_SYMBOL vmlinux 0xb0184b52 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb01e964c netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xb03d3eb4 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb044c88b tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xb05a12ce iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb065777f dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xb066043a scsi_remove_target +EXPORT_SYMBOL vmlinux 0xb06acdc3 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xb07ebce8 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0ab8517 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xb0acbe2b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xb0b11f14 empty_aops +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0bea3a6 import_iovec +EXPORT_SYMBOL vmlinux 0xb0d24aff sg_miter_stop +EXPORT_SYMBOL vmlinux 0xb0d4fc73 inet6_release +EXPORT_SYMBOL vmlinux 0xb0db064a single_open_size +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0e9fce8 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb152d87d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb158fea1 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1606d31 __register_chrdev +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb17b4499 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +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 0xb1d2b33a sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2233dec nf_setsockopt +EXPORT_SYMBOL vmlinux 0xb235aa52 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xb23d960b genphy_config_init +EXPORT_SYMBOL vmlinux 0xb24af042 iget_locked +EXPORT_SYMBOL vmlinux 0xb26366d9 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26c9804 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xb297fcc3 inode_init_always +EXPORT_SYMBOL vmlinux 0xb2a300f4 sk_capable +EXPORT_SYMBOL vmlinux 0xb2b69e92 mmc_request_done +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d138b0 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2d667e0 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xb2d90a4a elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xb2eecd40 register_netdevice +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb2fb509a dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb31305f5 dma_find_channel +EXPORT_SYMBOL vmlinux 0xb31d4656 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xb31fa8bd request_key +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb332862a input_reset_device +EXPORT_SYMBOL vmlinux 0xb33cb0ef scsi_init_io +EXPORT_SYMBOL vmlinux 0xb3501133 unregister_nls +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3602cba eth_mac_addr +EXPORT_SYMBOL vmlinux 0xb3809ba1 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xb3ae3ac6 blk_run_queue +EXPORT_SYMBOL vmlinux 0xb3b4de80 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xb3bb2c74 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xb3cc1478 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d5e076 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xb3dc82c4 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xb3dcac87 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fc8615 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xb40a90bb mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xb4113ef8 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xb4182a72 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4300b95 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xb4563156 netdev_warn +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb4737f01 agp_enable +EXPORT_SYMBOL vmlinux 0xb49c1211 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xb4a7372b page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xb4a7fe43 netif_napi_add +EXPORT_SYMBOL vmlinux 0xb4ae9bee devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb534d403 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xb53cd9cb read_code +EXPORT_SYMBOL vmlinux 0xb54d26bb xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xb564df39 sget_userns +EXPORT_SYMBOL vmlinux 0xb5675140 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb59d4a29 lookup_bdev +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5e41589 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xb5f89e5a pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xb60a0d17 set_posix_acl +EXPORT_SYMBOL vmlinux 0xb613cc53 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb625114e scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xb63bfc9e blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xb640f2f2 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xb65582a7 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xb6607e2d inet_accept +EXPORT_SYMBOL vmlinux 0xb6694652 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xb66b9706 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6853edc write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb687d9ac pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6f0afdc padata_start +EXPORT_SYMBOL vmlinux 0xb6fe5f91 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xb6ffa0b8 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xb715fd3b jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xb7172bbe nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb759be8f audit_log_task_info +EXPORT_SYMBOL vmlinux 0xb75b783a dump_page +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7737663 set_pages_wb +EXPORT_SYMBOL vmlinux 0xb77c6ac0 pci_release_regions +EXPORT_SYMBOL vmlinux 0xb7872112 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xb78ffb94 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xb7a80606 md_error +EXPORT_SYMBOL vmlinux 0xb7b32a23 simple_lookup +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7dac0df set_cached_acl +EXPORT_SYMBOL vmlinux 0xb7dcbe34 mmc_free_host +EXPORT_SYMBOL vmlinux 0xb7eabfa9 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xb7ecc7d4 elevator_alloc +EXPORT_SYMBOL vmlinux 0xb7f4cc8b kill_pid +EXPORT_SYMBOL vmlinux 0xb80d4484 nonseekable_open +EXPORT_SYMBOL vmlinux 0xb80e9215 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0xb814d195 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xb82f25be generic_setxattr +EXPORT_SYMBOL vmlinux 0xb833cbe3 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xb843b524 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xb857379b sk_free +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87b3bdd dev_add_offload +EXPORT_SYMBOL vmlinux 0xb87d8c6f x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0xb88c07eb netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xb8925d31 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xb8a5091c __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xb8ae6044 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xb8b57e86 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8bd3959 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xb8e29d7f devfreq_add_device +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8f349c6 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xb8f64dbe generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb9032a12 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb91a4908 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xb91b9e62 i8042_install_filter +EXPORT_SYMBOL vmlinux 0xb922da34 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xb929e1b2 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb93fe466 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xb9476791 param_ops_string +EXPORT_SYMBOL vmlinux 0xb953f496 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xb961ac93 security_path_symlink +EXPORT_SYMBOL vmlinux 0xb9869a31 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xb993c6e6 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xb9da9a9d dm_unregister_target +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ecd787 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xb9ee8950 scsi_print_result +EXPORT_SYMBOL vmlinux 0xba01506a tso_build_data +EXPORT_SYMBOL vmlinux 0xba17af27 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xba1a9b2d request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xba2c9fad blk_recount_segments +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba472ead __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xba48f403 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba6430e7 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xba785698 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xba881ba9 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xbab36562 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xbace4174 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xbae467b9 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xbaef2d1d tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xbb03a42b sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb11d205 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xbb319ffd pnp_device_detach +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb48038b jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xbb48577f to_nd_btt +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb62e9e0 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xbb7bf64b inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba66ea3 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbaff982 dquot_destroy +EXPORT_SYMBOL vmlinux 0xbbb81ba0 put_filp +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc21aa8e __neigh_create +EXPORT_SYMBOL vmlinux 0xbc28dc18 sock_from_file +EXPORT_SYMBOL vmlinux 0xbc299a8d __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xbc3f9ca3 iterate_fd +EXPORT_SYMBOL vmlinux 0xbc5cdc1b alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xbc75f9a9 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xbc7aa96a param_ops_ushort +EXPORT_SYMBOL vmlinux 0xbc7f04df scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc650a0 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0xbcd279c8 lock_rename +EXPORT_SYMBOL vmlinux 0xbceb675d dquot_quota_on +EXPORT_SYMBOL vmlinux 0xbced338c security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd180cf9 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xbd1b5f9c __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xbd1e83ea kthread_bind +EXPORT_SYMBOL vmlinux 0xbd268f4c kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd603ed4 nvm_end_io +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd93dcbc swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xbda28481 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdba581d ps2_command +EXPORT_SYMBOL vmlinux 0xbdbabbea ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xbdc19520 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xbde3e465 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xbde88e02 bh_submit_read +EXPORT_SYMBOL vmlinux 0xbdf84ca6 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbdfe04b0 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xbe1988be pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe3684f2 generic_fillattr +EXPORT_SYMBOL vmlinux 0xbe476988 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xbe5f50d0 sock_no_listen +EXPORT_SYMBOL vmlinux 0xbe87bf0b param_set_int +EXPORT_SYMBOL vmlinux 0xbe8d82ef ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xbe9635d3 posix_lock_file +EXPORT_SYMBOL vmlinux 0xbebcf3df textsearch_prepare +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbeda3694 pci_restore_state +EXPORT_SYMBOL vmlinux 0xbede1656 secpath_dup +EXPORT_SYMBOL vmlinux 0xbedeb671 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefab7f3 deactivate_super +EXPORT_SYMBOL vmlinux 0xbefd3ad4 __destroy_inode +EXPORT_SYMBOL vmlinux 0xbf030ffb kill_bdev +EXPORT_SYMBOL vmlinux 0xbf036d45 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xbf0b9f06 elevator_exit +EXPORT_SYMBOL vmlinux 0xbf170f8c tso_build_hdr +EXPORT_SYMBOL vmlinux 0xbf1b6ac5 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xbf32fed3 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xbf3e9ac3 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xbf58247d blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf90e076 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xbf9349e7 get_acl +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa883b0 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd45bcc skb_trim +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbffb1c89 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xc0244b4a devm_clk_get +EXPORT_SYMBOL vmlinux 0xc03cc484 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc05f6cfd mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc082f8d6 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xc0842b4f bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xc08bfccb sock_init_data +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0beff12 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc0f23e48 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xc0f7aa85 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xc0fe1406 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xc10ace11 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xc12d2979 dma_ops +EXPORT_SYMBOL vmlinux 0xc136cb6a from_kgid_munged +EXPORT_SYMBOL vmlinux 0xc13a2432 follow_up +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc171200f bioset_create +EXPORT_SYMBOL vmlinux 0xc1915ab9 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xc197b8f5 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xc1b18942 init_buffer +EXPORT_SYMBOL vmlinux 0xc1c9a131 amd_northbridges +EXPORT_SYMBOL vmlinux 0xc1cf7b9c pci_iomap_range +EXPORT_SYMBOL vmlinux 0xc1d4d4d8 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e25e69 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1fc0029 write_inode_now +EXPORT_SYMBOL vmlinux 0xc20f5533 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xc2316506 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2444132 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xc24cf61f remove_arg_zero +EXPORT_SYMBOL vmlinux 0xc24d10a3 try_module_get +EXPORT_SYMBOL vmlinux 0xc26897c6 scsi_unregister +EXPORT_SYMBOL vmlinux 0xc277280a __mutex_init +EXPORT_SYMBOL vmlinux 0xc27d319f __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xc2978532 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a59580 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2c0c947 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xc2c33c39 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xc2da62d6 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ebf1a0 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3270ead devm_clk_put +EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xc358e775 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xc35bc215 tty_register_device +EXPORT_SYMBOL vmlinux 0xc36b74c1 d_tmpfile +EXPORT_SYMBOL vmlinux 0xc38a6143 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xc3a14564 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xc3a321c2 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3ab839a tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xc3ad9578 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c3e544 param_get_int +EXPORT_SYMBOL vmlinux 0xc3c61958 scsi_host_put +EXPORT_SYMBOL vmlinux 0xc3e2cf4f nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xc3eb9de4 ipv4_specific +EXPORT_SYMBOL vmlinux 0xc41cf6ac pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xc4372a41 register_netdev +EXPORT_SYMBOL vmlinux 0xc45d8e49 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xc467a19c pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xc46b8081 seq_escape +EXPORT_SYMBOL vmlinux 0xc46fb324 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4ab9cb9 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xc4ad6733 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xc4b08780 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xc4b92ff8 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xc4bced88 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xc4d45304 mount_ns +EXPORT_SYMBOL vmlinux 0xc4d9e48f con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xc4e661f3 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc4f331c6 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xc503a2a4 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xc50a3b80 get_io_context +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc51bdc45 soft_cursor +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc562e8f7 inet_add_offload +EXPORT_SYMBOL vmlinux 0xc570621e proto_unregister +EXPORT_SYMBOL vmlinux 0xc5809822 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xc587867d __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5ebdb45 twl6040_power +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6154708 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xc61f3962 dm_get_device +EXPORT_SYMBOL vmlinux 0xc626922f ppp_register_channel +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc640b7d3 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xc6576a6e bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xc659301c nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66b197f fget_raw +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc687a855 revert_creds +EXPORT_SYMBOL vmlinux 0xc6931694 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xc6a0acc3 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xc6a2ccea remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d5b8b1 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xc6f67088 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xc6f6cb99 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0xc71874d1 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xc71879e2 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xc71b4c76 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xc72087b5 input_free_device +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72438ed serio_reconnect +EXPORT_SYMBOL vmlinux 0xc7369e2a dev_set_mtu +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 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78fd595 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xc7975f68 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xc79bb4cb gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7bd9b61 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xc7d18940 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xc7d1934e mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xc7e15d17 fs_bio_set +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc811cff0 init_special_inode +EXPORT_SYMBOL vmlinux 0xc83041f0 dev_close +EXPORT_SYMBOL vmlinux 0xc833187d tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83f4aef scm_fp_dup +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc840741a __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc85e3dc6 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +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 0xc8d43ad4 registered_fb +EXPORT_SYMBOL vmlinux 0xc8eea287 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xc8f7d7fd complete_request_key +EXPORT_SYMBOL vmlinux 0xc9019554 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc94251c9 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96a6305 pci_find_capability +EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9a9c751 tcp_check_req +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca20cf4b generic_file_llseek +EXPORT_SYMBOL vmlinux 0xca2ec28f sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xca495e8b always_delete_dentry +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca787920 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xca7dc747 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8586d3 new_inode +EXPORT_SYMBOL vmlinux 0xca870aed iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa29bff generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb24b3e3 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xcb2f7adc devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xcb478de1 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xcb5a9f95 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xcb5bfbbc nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xcb70233a d_path +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcba58db5 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbb07ed2 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc5bda2 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbee8075 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xcc072400 blk_put_queue +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc6d6afc fb_blank +EXPORT_SYMBOL vmlinux 0xcc71aaaa generic_file_mmap +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc902619 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xcc94b29a inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl +EXPORT_SYMBOL vmlinux 0xcca66dc6 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xcca81910 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xccb6e235 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xccb8288c do_splice_from +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccd46559 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xcce50e6d scsi_remove_device +EXPORT_SYMBOL vmlinux 0xccf105ba register_cdrom +EXPORT_SYMBOL vmlinux 0xccf4a5b8 key_invalidate +EXPORT_SYMBOL vmlinux 0xcd0ebaa7 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd47a86f cfb_imageblit +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd642b01 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xcd6544b8 netif_skb_features +EXPORT_SYMBOL vmlinux 0xcd7d11ee fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xcd9b0bca blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcfe2b8 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xcdd986b2 dquot_disable +EXPORT_SYMBOL vmlinux 0xcddac9d3 md_update_sb +EXPORT_SYMBOL vmlinux 0xcdf80598 iterate_mounts +EXPORT_SYMBOL vmlinux 0xce1093d8 skb_checksum +EXPORT_SYMBOL vmlinux 0xce1c58bb dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce2bdb11 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce3c68c7 jbd2_journal_load +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 0xce5b029a input_close_device +EXPORT_SYMBOL vmlinux 0xce677b5a skb_make_writable +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce7f2c03 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceb2a871 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xcecfbc76 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xced344e8 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf068144 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xcf29dbe9 pci_disable_device +EXPORT_SYMBOL vmlinux 0xcf2ba6e1 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xcf2eda21 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xcf2fac82 param_get_bool +EXPORT_SYMBOL vmlinux 0xcf3495b7 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xcf555b84 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xcf5d249c generic_file_open +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf7ea95c vme_irq_generate +EXPORT_SYMBOL vmlinux 0xcf939bb7 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xcfa529db uart_remove_one_port +EXPORT_SYMBOL vmlinux 0xcfa9a462 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfd70ab2 dev_deactivate +EXPORT_SYMBOL vmlinux 0xcfdc3f7d inet_csk_accept +EXPORT_SYMBOL vmlinux 0xcfe2f73f security_path_unlink +EXPORT_SYMBOL vmlinux 0xcfe929c2 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xcfec48e8 kernel_write +EXPORT_SYMBOL vmlinux 0xcfef7b09 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd07509f1 file_remove_privs +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 0xd0bbb127 tcp_conn_request +EXPORT_SYMBOL vmlinux 0xd0dfdcbd fget +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f3e98c __d_drop +EXPORT_SYMBOL vmlinux 0xd0f68f62 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd110cc86 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xd134b977 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xd1383501 get_task_io_context +EXPORT_SYMBOL vmlinux 0xd1477337 d_walk +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1816f5a __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xd188eb7b tcp_sendpage +EXPORT_SYMBOL vmlinux 0xd18d38d3 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xd1a572a3 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xd1a674dd blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xd1c6a3b7 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xd1d0d9cf phy_driver_register +EXPORT_SYMBOL vmlinux 0xd1d46830 bdi_destroy +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1de5e1d amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd1f91f29 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd21d908c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xd2286ae4 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xd2442835 __sock_create +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 0xd28514ac led_update_brightness +EXPORT_SYMBOL vmlinux 0xd28bbe73 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xd2a9893a compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2d1c788 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd30acf58 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xd30cb9a8 devm_release_resource +EXPORT_SYMBOL vmlinux 0xd3227d0c pnp_possible_config +EXPORT_SYMBOL vmlinux 0xd33377c5 kernel_bind +EXPORT_SYMBOL vmlinux 0xd3371d5d insert_inode_locked +EXPORT_SYMBOL vmlinux 0xd3433760 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xd34b9b5e vfs_mkdir +EXPORT_SYMBOL vmlinux 0xd35cb6ff vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0xd3859dab elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xd399f0bd mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c916db flush_old_exec +EXPORT_SYMBOL vmlinux 0xd3d1a072 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xd3f59d44 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xd407bb3d __block_write_begin +EXPORT_SYMBOL vmlinux 0xd40d9650 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xd40eb9bb ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xd4425f60 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xd4433755 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xd456fa40 seq_file_path +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4619dd5 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xd4723c07 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xd4760ea4 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48e6662 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xd49532ff zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xd4989890 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xd499b429 tcp_connect +EXPORT_SYMBOL vmlinux 0xd49f6368 phy_device_remove +EXPORT_SYMBOL vmlinux 0xd4abdf58 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xd4c12fe6 neigh_update +EXPORT_SYMBOL vmlinux 0xd4e55cd3 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xd4f4d50d swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xd4f8e143 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xd4fd90f9 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xd50c7875 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd533a992 mmc_register_driver +EXPORT_SYMBOL vmlinux 0xd53e027f tty_unregister_device +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd551e2fb qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xd55dc3ac posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xd58422a7 put_page +EXPORT_SYMBOL vmlinux 0xd588d39c inode_get_bytes +EXPORT_SYMBOL vmlinux 0xd58ff9fb qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd59adcdb nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xd5cac2fb sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xd5d81ac8 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xd5f4f75c adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61ff819 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xd62b9cea __blk_end_request +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd631b749 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xd646c6ef xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xd647d5af noop_qdisc +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd656c7c6 __page_symlink +EXPORT_SYMBOL vmlinux 0xd6578ed0 mpage_writepage +EXPORT_SYMBOL vmlinux 0xd6702d08 cdrom_release +EXPORT_SYMBOL vmlinux 0xd676d45b sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xd67c0603 input_register_device +EXPORT_SYMBOL vmlinux 0xd684f6ad mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd692735f security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xd69c7f33 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xd6a31d5e intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xd6a4f3b1 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xd6a65216 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6c3c72b xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xd6ce6f8b cdrom_open +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f1b8f5 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xd6f6ac60 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xd6fc9911 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xd6fd047c vme_dma_request +EXPORT_SYMBOL vmlinux 0xd7097656 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd735fcda pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xd74588ee build_skb +EXPORT_SYMBOL vmlinux 0xd7528464 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xd75c72ac register_framebuffer +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7668fc2 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xd77294ef blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xd77e7b56 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xd79785d3 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xd7a1c37d ppp_input +EXPORT_SYMBOL vmlinux 0xd7a234da inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xd7a9a92d blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd7a9f14d simple_write_end +EXPORT_SYMBOL vmlinux 0xd7c8abfe inet_offloads +EXPORT_SYMBOL vmlinux 0xd7d086be blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xd7d129ef eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xd7d9df06 is_nd_pfn +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7def4b3 generic_read_dir +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7face48 __quota_error +EXPORT_SYMBOL vmlinux 0xd7ff460c md_integrity_register +EXPORT_SYMBOL vmlinux 0xd831bb4c init_net +EXPORT_SYMBOL vmlinux 0xd832985e unlock_page +EXPORT_SYMBOL vmlinux 0xd83c7627 bdgrab +EXPORT_SYMBOL vmlinux 0xd844a595 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xd845c04e tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xd859e925 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xd886e4e3 ilookup5 +EXPORT_SYMBOL vmlinux 0xd8923f39 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89f3642 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xd8a43ed0 to_nd_pfn +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ad058c kfree_skb_list +EXPORT_SYMBOL vmlinux 0xd8c33992 neigh_for_each +EXPORT_SYMBOL vmlinux 0xd8c75d34 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xd8cfef3b nvm_register +EXPORT_SYMBOL vmlinux 0xd8d36957 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e2ba80 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8ef7bf2 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd920af24 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xd923b54a kmem_cache_create +EXPORT_SYMBOL vmlinux 0xd92c0b68 pci_set_master +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd94e73cd pci_iounmap +EXPORT_SYMBOL vmlinux 0xd9504b7b md_finish_reshape +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd96e9fd5 page_put_link +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99af554 generic_make_request +EXPORT_SYMBOL vmlinux 0xd9a11066 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xd9a4a752 d_find_alias +EXPORT_SYMBOL vmlinux 0xd9aa1af9 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xd9b68c31 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xd9c67cb3 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xd9c67fa9 cpu_info +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d84888 inet_addr_type +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xda0fc62e blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xda2c6180 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3d1d36 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xda64af3b keyring_clear +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 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacbb6b8 datagram_poll +EXPORT_SYMBOL vmlinux 0xdad451f0 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xdadafc16 icmp_send +EXPORT_SYMBOL vmlinux 0xdaea1bfb simple_link +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb141b64 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb2247ac pnp_is_active +EXPORT_SYMBOL vmlinux 0xdb34649c copy_to_iter +EXPORT_SYMBOL vmlinux 0xdb38e985 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb3e1706 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xdb5d3647 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xdb625bb1 nobh_write_end +EXPORT_SYMBOL vmlinux 0xdb673483 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb789e80 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xdb90f8a6 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xdbaf7aab would_dump +EXPORT_SYMBOL vmlinux 0xdbb70e02 inode_permission +EXPORT_SYMBOL vmlinux 0xdbb9b835 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xdbc41a4f tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xdbc61bae key_reject_and_link +EXPORT_SYMBOL vmlinux 0xdbf27e0c neigh_ifdown +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc33777e path_nosuid +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc4e81f2 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc57d792 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc5f5da8 lockref_put_return +EXPORT_SYMBOL vmlinux 0xdc7d4658 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xdc879b9d pci_match_id +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb100b0 netif_device_attach +EXPORT_SYMBOL vmlinux 0xdcd070d2 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xdcea9371 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xdcfcf392 set_binfmt +EXPORT_SYMBOL vmlinux 0xdd1fe596 dquot_operations +EXPORT_SYMBOL vmlinux 0xdd272482 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xdd350cae bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xdd357f9b file_path +EXPORT_SYMBOL vmlinux 0xdd36a060 input_flush_device +EXPORT_SYMBOL vmlinux 0xdd400b0d netif_carrier_off +EXPORT_SYMBOL vmlinux 0xdd5e6d17 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xdd648d68 __break_lease +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd6e5588 get_phy_device +EXPORT_SYMBOL vmlinux 0xdd6f1f60 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xdd797896 audit_log +EXPORT_SYMBOL vmlinux 0xdd849f2a dquot_free_inode +EXPORT_SYMBOL vmlinux 0xddb283a0 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xddb583f6 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xddcdbbbd blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xdddee20d agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xddeb47a5 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xddfc26c1 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xde030a48 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xde0bb4d8 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde2a0dff i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xde39727b mapping_tagged +EXPORT_SYMBOL vmlinux 0xde3db745 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xde3dfc01 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xde50fda1 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xde51e55e netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xde5805b3 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde773cf9 alloc_file +EXPORT_SYMBOL vmlinux 0xde8274db block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9972cf i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea604b7 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xdec04103 tty_port_put +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdef0c85c inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf0ed995 phy_stop +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf170643 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf368072 blk_init_tags +EXPORT_SYMBOL vmlinux 0xdf395368 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xdf4c78c8 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xdf4edb88 inc_nlink +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6bf223 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfb25cab scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xdfb48206 bdi_init +EXPORT_SYMBOL vmlinux 0xdfb85a23 address_space_init_once +EXPORT_SYMBOL vmlinux 0xdfb8aa08 tty_port_close +EXPORT_SYMBOL vmlinux 0xdfc44978 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffa51c0 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xe01f866b nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xe02519aa blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xe0313e88 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0xe0355c07 input_allocate_device +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05c296d netdev_update_features +EXPORT_SYMBOL vmlinux 0xe05c387c pci_find_pcie_root_port +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 0xe08b866b sk_alloc +EXPORT_SYMBOL vmlinux 0xe09d9350 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xe09f1822 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xe0a8d36c mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b440f5 kern_path +EXPORT_SYMBOL vmlinux 0xe0c27716 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xe0c59b1e udp6_set_csum +EXPORT_SYMBOL vmlinux 0xe0ce5832 phy_print_status +EXPORT_SYMBOL vmlinux 0xe0d63156 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xe0eb9603 make_kgid +EXPORT_SYMBOL vmlinux 0xe0f68681 vme_master_request +EXPORT_SYMBOL vmlinux 0xe0ff5728 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11453a6 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xe121cad4 compat_tcp_setsockopt +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 0xe14000bb kernel_accept +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe180d090 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xe1862104 md_register_thread +EXPORT_SYMBOL vmlinux 0xe18bc974 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xe18e5bfc fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xe1adaadc dev_uc_flush +EXPORT_SYMBOL vmlinux 0xe1c1ddcc pci_choose_state +EXPORT_SYMBOL vmlinux 0xe1c21dbe wake_up_process +EXPORT_SYMBOL vmlinux 0xe1d53254 proto_register +EXPORT_SYMBOL vmlinux 0xe1dcb56e compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe2064279 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xe2092cd1 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xe2262e5a vfs_readv +EXPORT_SYMBOL vmlinux 0xe22a3898 pci_select_bars +EXPORT_SYMBOL vmlinux 0xe22ed458 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xe230e4f0 alloc_disk +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24947c5 pci_dev_put +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe287328f neigh_parms_release +EXPORT_SYMBOL vmlinux 0xe299bcad pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b5db82 dst_discard_out +EXPORT_SYMBOL vmlinux 0xe2d356a1 __sb_start_write +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2d6a8e6 pci_clear_master +EXPORT_SYMBOL vmlinux 0xe2de2057 current_task +EXPORT_SYMBOL vmlinux 0xe2ea44db unlock_new_inode +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f73532 framebuffer_release +EXPORT_SYMBOL vmlinux 0xe3030558 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe31fefb3 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xe321a456 param_set_uint +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe373f891 d_invalidate +EXPORT_SYMBOL vmlinux 0xe39a9996 dma_supported +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bca81e __put_cred +EXPORT_SYMBOL vmlinux 0xe3c2d0db mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xe3c8a225 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xe3cf181f __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xe3d118a7 backlight_device_register +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3ddc5b7 cad_pid +EXPORT_SYMBOL vmlinux 0xe3e25c95 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xe3ec8c93 sync_filesystem +EXPORT_SYMBOL vmlinux 0xe40e3855 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xe4163e41 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xe4190df5 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xe41bb7a3 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xe451a64d twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xe47751e2 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4951d86 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xe49ffe60 invalidate_partition +EXPORT_SYMBOL vmlinux 0xe4b4fc18 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xe4c7f859 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xe4c8b44d load_nls +EXPORT_SYMBOL vmlinux 0xe4cf11e8 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xe4d1f951 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe54059e7 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xe5472ede tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xe5548317 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xe56cba40 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58f41fe acl_by_type +EXPORT_SYMBOL vmlinux 0xe5b2fbf8 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xe5ba6bf8 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe60e5df1 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xe614d4df devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe6238b3d __register_nls +EXPORT_SYMBOL vmlinux 0xe630cfae max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xe6338b54 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xe63791ed napi_gro_flush +EXPORT_SYMBOL vmlinux 0xe639cf64 param_ops_charp +EXPORT_SYMBOL vmlinux 0xe648d3f0 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xe648ead3 param_ops_bint +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe651bf42 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xe652d8ee nf_register_hooks +EXPORT_SYMBOL vmlinux 0xe6586e61 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe65dbf1d bdget +EXPORT_SYMBOL vmlinux 0xe67c23a0 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6d54784 put_io_context +EXPORT_SYMBOL vmlinux 0xe6f33fef tcp_proc_register +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe71a2462 free_buffer_head +EXPORT_SYMBOL vmlinux 0xe721d9cf task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xe72a50f3 i2c_master_send +EXPORT_SYMBOL vmlinux 0xe742b648 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xe744b186 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xe749f72b dquot_commit +EXPORT_SYMBOL vmlinux 0xe76257e1 dump_align +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe78fcb6f jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xe7a7722b neigh_lookup +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7a8e7a4 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xe7ac098e nf_log_set +EXPORT_SYMBOL vmlinux 0xe7c4e97f kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d9f49f generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xe7dfd5c4 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xe7e3b966 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xe7ee8697 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xe7f78ccb end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xe7f90b67 filemap_write_and_wait_range +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 0xe849b1db request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xe853a005 sock_no_connect +EXPORT_SYMBOL vmlinux 0xe8600ead module_put +EXPORT_SYMBOL vmlinux 0xe8731918 x86_hyper_xen +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe89e76e0 save_mount_options +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b9f6c8 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c493df mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8dc44e7 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xe8e61e4b pci_bus_put +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe901e530 security_path_chmod +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe925c301 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xe934774f follow_down +EXPORT_SYMBOL vmlinux 0xe93ccc3e skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xe9452e75 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95db3f7 misc_deregister +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe97a438b neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xe9859f23 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xe98817b9 _dev_info +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9af20a6 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xe9cf5a85 block_write_end +EXPORT_SYMBOL vmlinux 0xe9e31fa1 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f86764 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xe9fd26af input_set_capability +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0635f9 dquot_drop +EXPORT_SYMBOL vmlinux 0xea1982c3 rt6_lookup +EXPORT_SYMBOL vmlinux 0xea3cd9db __sb_end_write +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea442ea3 acpi_device_hid +EXPORT_SYMBOL vmlinux 0xea5002cd scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xea5252a1 set_groups +EXPORT_SYMBOL vmlinux 0xea534f0c __get_user_pages +EXPORT_SYMBOL vmlinux 0xea58f308 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xea6d56ab cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea8a55e3 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea94d4a7 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xea95f796 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0xeaa63b5d lwtunnel_input +EXPORT_SYMBOL vmlinux 0xeaa79355 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xeaa87257 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeb300e80 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xeb32f6a5 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb5fac2f ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xeb685fe6 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xeb867bd2 fb_get_mode +EXPORT_SYMBOL vmlinux 0xeb9a370c add_disk +EXPORT_SYMBOL vmlinux 0xebc9f647 genphy_resume +EXPORT_SYMBOL vmlinux 0xebda0e81 __napi_schedule +EXPORT_SYMBOL vmlinux 0xebe65ba4 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xebec83ba mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec087bab skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xec10a810 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xec1494be pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xec33a510 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xec3944ee tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec58139d skb_clone_sk +EXPORT_SYMBOL vmlinux 0xec65a63b agp_bridge +EXPORT_SYMBOL vmlinux 0xec94a8c4 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xec9653d7 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xecc63d27 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecceafd5 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xecd2adc3 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfd342e __blk_run_queue +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed0f7bf0 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xed202eed phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xed384201 __netif_schedule +EXPORT_SYMBOL vmlinux 0xed40714d generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xed4a2150 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xed596b5f redraw_screen +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed88213e generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc2ccaa first_ec +EXPORT_SYMBOL vmlinux 0xede7e629 release_firmware +EXPORT_SYMBOL vmlinux 0xedeabbef ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee1e42df ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee5a554b skb_queue_head +EXPORT_SYMBOL vmlinux 0xee7a4b27 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9a2b77 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xeea77888 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeec40460 loop_backing_file +EXPORT_SYMBOL vmlinux 0xeed57ee5 release_pages +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xeef9bc69 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xef2e4c3f vme_bus_num +EXPORT_SYMBOL vmlinux 0xef3f74bc get_cached_acl +EXPORT_SYMBOL vmlinux 0xef48db01 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xef54b503 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xef60f944 serio_close +EXPORT_SYMBOL vmlinux 0xef701e72 read_cache_pages +EXPORT_SYMBOL vmlinux 0xef7695af netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xef78cf3f pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xef822e1c gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xef82ae86 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xef84153a km_new_mapping +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa2898f cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd87d7d phy_disconnect +EXPORT_SYMBOL vmlinux 0xefda8d99 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xefdafe40 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe099c3 acpi_get_event_status +EXPORT_SYMBOL vmlinux 0xefe77226 amd_iommu_flush_page +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 0xf01c66b1 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xf052a5f2 xfrm_register_type +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf064dd03 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xf064e937 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf0747044 inet_sendpage +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +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 0xf0ab1d1c ps2_init +EXPORT_SYMBOL vmlinux 0xf0adef22 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xf0aec8cd blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xf0c219ef set_disk_ro +EXPORT_SYMBOL vmlinux 0xf0c91bfb security_d_instantiate +EXPORT_SYMBOL vmlinux 0xf0cf6e23 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xf0d56469 nf_log_register +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f7b25d simple_dir_operations +EXPORT_SYMBOL vmlinux 0xf0fedc53 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf112590b abort_creds +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf116d4b5 copy_in_user +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf15cd51a block_write_full_page +EXPORT_SYMBOL vmlinux 0xf17fa9b0 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xf18e19c3 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xf1930714 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1bda48e tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xf1ca722b scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf200d294 generic_removexattr +EXPORT_SYMBOL vmlinux 0xf203005f devm_ioport_map +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf22fc188 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xf23084d0 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xf23af1df vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2634ac5 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf28f4b4c jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xf292c6ce param_get_uint +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf29f27f0 dev_mc_del +EXPORT_SYMBOL vmlinux 0xf2a00a47 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2b55a01 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d58af0 md_write_end +EXPORT_SYMBOL vmlinux 0xf2e0a826 kill_pgrp +EXPORT_SYMBOL vmlinux 0xf2ed6d4b jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xf2f7f1ce tcp_child_process +EXPORT_SYMBOL vmlinux 0xf2f8b8b0 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3199918 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xf32eca11 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf344a9ec security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38cb661 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xf38fe98d sock_get_timestamp +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 0xf399b571 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xf39f9935 node_data +EXPORT_SYMBOL vmlinux 0xf3a4cb62 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xf3c0ba36 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xf3d92874 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf3e54a4c ppp_dev_name +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e73de9 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf3e8a4b5 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xf3eaf4d9 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xf3ef11cd inet_listen +EXPORT_SYMBOL vmlinux 0xf404a253 blkdev_get +EXPORT_SYMBOL vmlinux 0xf4089ad3 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xf42028fe __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xf424548e devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xf439b8fa param_ops_byte +EXPORT_SYMBOL vmlinux 0xf43c38f1 phy_find_first +EXPORT_SYMBOL vmlinux 0xf44107a4 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4510990 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47d80ce d_alloc_name +EXPORT_SYMBOL vmlinux 0xf4a1ec79 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bd2241 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c224fc nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fb8a31 proc_symlink +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 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5400da8 sg_miter_next +EXPORT_SYMBOL vmlinux 0xf58051f5 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xf58c5135 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xf598f817 mmc_put_card +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a6f593 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5c2170e __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5e96e70 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5fa8e6f i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xf62a2dd5 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xf634ee92 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63d7f06 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xf650ded1 netlink_capable +EXPORT_SYMBOL vmlinux 0xf651b1e3 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xf65f1d91 block_truncate_page +EXPORT_SYMBOL vmlinux 0xf6677dc2 sk_wait_data +EXPORT_SYMBOL vmlinux 0xf676255d blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +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 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6cb52f0 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xf6e427ff sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ec0682 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xf6edb329 account_page_redirty +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6fd2c78 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xf70591e8 inet_frag_find +EXPORT_SYMBOL vmlinux 0xf7128566 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xf71c5e39 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf73f3333 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xf74c50a3 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf77f99f5 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7b676e8 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xf7c105ce tty_mutex +EXPORT_SYMBOL vmlinux 0xf7d729b2 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xf7ecd4e6 uart_register_driver +EXPORT_SYMBOL vmlinux 0xf7fc0c2a pci_msix_vec_count +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 0xf843421f blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xf86cc3e0 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xf8771415 set_blocksize +EXPORT_SYMBOL vmlinux 0xf88d89a6 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8cb4c46 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf9093f48 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xf909fafb mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xf92c6179 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xf9319f48 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xf9327f29 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xf9399b92 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xf98c8fa8 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9d0f597 __elv_add_request +EXPORT_SYMBOL vmlinux 0xfa2854cc inet_release +EXPORT_SYMBOL vmlinux 0xfa2e775f bio_advance +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa57d3f0 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa99a820 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xfa9c8bd4 elevator_init +EXPORT_SYMBOL vmlinux 0xfaa95a08 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xfab5f8fe scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xfabd8070 genl_notify +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfadba63e inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfafe3ce9 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb1173ef simple_statfs +EXPORT_SYMBOL vmlinux 0xfb27b904 tcp_req_err +EXPORT_SYMBOL vmlinux 0xfb287c7d __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb38f98b mount_bdev +EXPORT_SYMBOL vmlinux 0xfb411ed4 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xfb45d460 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xfb4b688f scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xfb4e833a generic_writepages +EXPORT_SYMBOL vmlinux 0xfb512ea0 clear_page_dirty_for_io +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 0xfb87b747 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xfb9349a0 ps2_end_command +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcb8266 mpage_readpage +EXPORT_SYMBOL vmlinux 0xfbe7a087 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc08e46a jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xfc0d3297 follow_pfn +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc428898 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xfc5095ca dev_get_flags +EXPORT_SYMBOL vmlinux 0xfc620c66 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfca6a251 set_wb_congested +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 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfb3fc8 irq_set_chip +EXPORT_SYMBOL vmlinux 0xfcfd9d09 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xfd201c62 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xfd250b49 console_stop +EXPORT_SYMBOL vmlinux 0xfd3d7ee0 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xfd44aec5 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xfd6f86f0 km_report +EXPORT_SYMBOL vmlinux 0xfd88e8e6 genphy_read_status +EXPORT_SYMBOL vmlinux 0xfd8c934b fb_set_suspend +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9d6e7c agp_free_memory +EXPORT_SYMBOL vmlinux 0xfd9f212a blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xfda1f229 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xfda51f5b netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfde610e8 mdiobus_write +EXPORT_SYMBOL vmlinux 0xfde732db fb_get_buffer_offset +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 0xfe0c120f account_page_dirtied +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe219bc6 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xfe25d37a simple_empty +EXPORT_SYMBOL vmlinux 0xfe26f29d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe39c13d dma_sync_wait +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe646aba set_pages_nx +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe7c6230 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xfe8977d6 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xfe904bb9 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfe9f7d9c vme_register_driver +EXPORT_SYMBOL vmlinux 0xfea18afb vga_con +EXPORT_SYMBOL vmlinux 0xfebe6376 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xfed823ef free_task +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee9b3a6 dquot_initialize +EXPORT_SYMBOL vmlinux 0xfeebb523 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xff096433 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xff101d8a skb_tx_error +EXPORT_SYMBOL vmlinux 0xff143d54 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff5abe60 set_pages_x +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff77fabf generic_write_end +EXPORT_SYMBOL vmlinux 0xff8b225a devfreq_interval_update +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 0xffa7451c netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xffb22bb1 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xffbd5105 path_get +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xfffeba08 call_usermodehelper_exec +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 0x50dc55b6 __camellia_enc_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x80bd2859 xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/camellia-x86_64 0x8900e361 lrw_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 0x9805e158 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 0xf4521fda camellia_dec_blk_2way +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x0813b19a glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x293920cc glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x64e7e214 glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x8d072632 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 0xb0a2a7f8 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 0x3d750c04 lrw_serpent_exit_tfm +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 0xa84ea33d serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xd65cf225 lrw_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xdddbe129 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 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 0x961fe915 lrw_twofish_exit_tfm +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xc49a9238 xts_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xcf1d8134 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 0x007d6344 kvm_queue_exception_e +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 0x029dc89e kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x030047df kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x06f9377e kvm_read_guest_atomic +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 0x09aa2e3e kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a422f4d kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d068a41 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4adf8b __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d5866c3 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0e6f01ce kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0efb37d2 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0f4bcccc kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11036e6b kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13c9bf36 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13efd383 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x140d8c92 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15546231 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c114b8 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x19cc6ff4 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a8a735b kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1e30604d kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1eefea01 kvm_vcpu_write_guest +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 0x235c194f gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2484157d kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24b81ef4 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x258dd032 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29cd1c78 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2bf81450 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c31f6bf kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e6526ef kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e7a6bd8 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32618256 kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35c421ea kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3717b8e9 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x37546c17 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a4ea851 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a74d1de kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3ccdd20c kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d56a277 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x417e6f52 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41e77d55 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43f54dd8 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4403f50f kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x44046cb1 __tracepoint_kvm_nested_vmexit_inject +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4472315f kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4775e51d kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48d2d413 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b6688f6 handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4be9ca25 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4e6f7545 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x556c5f28 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x56683676 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5891528f kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fb4746c kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62a234a1 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x62cc7d42 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x644a9779 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66afd905 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6748a8ed kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67d3d8e4 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x692b297f kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a8417b3 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b0e529c reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f75e3ea __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fe673f0 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72bbd4d4 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72cc5f94 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ae496a __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x746ab373 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x762d90d9 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7645307e kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x764dfbd1 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x783a2d0c kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7afb61ad kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7e101bd9 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ea23231 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7fef7f64 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff1ca84 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff3db8d kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8198bb90 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87a2e145 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8922f524 kvm_mmu_sync_roots +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 0x901e11ea kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x915c1030 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x919c1ec3 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92a429bf kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96ea938b x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x978fa562 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f212441 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9fb9c850 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa05da688 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0d741ea kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa33c9fdb kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3846047 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d57013 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6601b8c kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa678bfaf kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa6cf0d8e kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa76ce3d1 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7fe30ed kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa817ce52 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa3463b4 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab872247 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab9d1226 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac44288d kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xad8c9df5 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf2f8b8d kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb04a2552 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb12c3de7 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1cc6be5 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb285c3fa kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb326aecf kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb3a883a9 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb644e6ec kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6c825a2 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb7196a0f kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb349b14 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb41711a kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbd173ab kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbe50c9a kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbcdb8ee0 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc06d9be0 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1adc2cb __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc291203a kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2a07268 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3b99d76 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc43b5657 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4c0e6fd kvm_vcpu_gfn_to_hva +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 0xcb444ae6 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcb842552 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcbbd903a kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcebe4bd3 kvm_rdpmc +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 0xd07caa3f kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb5ec689 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde4aa448 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdea951bf kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdeb30715 kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfba77a9 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe03fc79f kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe3d64684 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5649a78 kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe60a5e2b reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe6a501a1 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe728a6b8 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb3a149c kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed8ab19c kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xed904888 kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf09c4eda kvm_get_msr_common +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 0xf60dfd66 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8f4642c __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb951deb reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbd95c91 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd7ad38a gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x11ac12f2 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1ef26c73 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x3eba69fd ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x968372c4 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc96b2119 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc96e697c ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xea87e837 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x12c82a7b af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x1fcaec04 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x3c9736e6 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x55a762a4 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x59b9e618 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x73cca499 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xbbf4a1ef af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xc07cb62a af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xce1b16c9 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd046df23 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xff787c52 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5e9248cb async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xbdf4a3c2 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5669016d async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x587e3364 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3f2fe2dd __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x641e1f20 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xce204c19 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf4412447 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x16c56982 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xeb2165fd 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 0x6bdd2b8f crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xfa146e8e crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x010b0346 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x1d644e3d cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x21c704cf cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x494b861c cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x6422d84c cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x858f9d26 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb70391f7 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xbeae60a0 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xf36d7150 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xfb952695 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 0x1982394e 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 0x05be5cc0 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x22b4bebc shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x3bbb7fcb mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x6629e41b mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa366ab04 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xb7133eeb shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc73ec00e shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf99a8410 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x0f1d371f crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2164d9b1 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x828c479b crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xbabea7d5 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 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 0x54fcba18 xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x732a2901 acpi_nfit_init +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xfa1e75a9 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 0x1ce88f36 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x272d9fa7 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x276b8452 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2cd1d0a8 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x35bf8a79 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x56876842 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5f82ea2b ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x64b9e783 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7b609e3b ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x97c71723 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a667b2c ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9c1bca2c ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa4cd34c6 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa5533aa0 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xab0489e8 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbb2baef5 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbb34f5f3 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc4fa6225 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc89f8f98 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdd9c8249 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xefec8efd ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf80da40c ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xffe7d70e ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x19e4a372 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2f11e60e ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x325cedd8 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3b208447 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6d2f1482 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6f32aa8b ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x76499998 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x77239b66 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88ee605c ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xadaa9128 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb919e005 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf662e429 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfd833fa3 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xf4f6fc33 __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 0x2a9ddfd2 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7e875bdb __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8ddfa8f4 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcb1fb8c0 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0155d0fa bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0a7b989f bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0d94ad75 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x14963a50 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16ac3c3a bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19e6d679 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x217bdd15 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x29d7823e bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3db4b2ce bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50cedb48 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x562ce03e bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x64fd9685 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x67bb3236 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68245f3e bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x709d2cb0 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a49f831 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x90118a28 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x90a9ec61 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa0d0fcf5 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa1efe16 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaf13e1e1 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc47b0ada bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdcc7ebec bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf8efa738 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x671ce0cb btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x751f262a btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xb19b9c55 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbedbccc6 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc9e06db2 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd74bf2d1 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x24923ccc btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2fa7f257 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x39ae9cf8 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x40f4ffd9 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4b2bbaf2 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4cb465c0 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x81d67c8f btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9f9cd5b4 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa8e4996c btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc608be8d btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeb75cc5e btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfff0a4e0 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x33a27658 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4a9c549a btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x575ea0d3 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x58f371de btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x75b6ebeb btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa11f7c46 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb2c18dc0 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbab6009d btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd77d5b81 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xde1f7219 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe8c75660 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0f8ec4af qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xbcb6aa2c qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x31009b37 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xd199e76e 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 0x2bcf5073 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x00f14cf1 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x086f1786 adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0f2ee031 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x19b8c52d adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1ec04d75 adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2d09c51b adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3159a15d adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x34bbf897 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3932ce60 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a43cdd2 adf_service_unregister +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x40651fc7 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x411200c9 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x427d5452 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4392aed2 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x46c6f681 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x488ee3d2 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x49f6191b adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4d17593a adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x575a66d9 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x61248321 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6b9e30e2 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7f47fc1e adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x856e347e adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x918ebf8a adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91f8561b adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98b31b80 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ad57850 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9eeb9829 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaa7fa974 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbfc0a880 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb043e6f adf_enable_aer +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 0xd7af7d11 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdc51c40e adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdd99e167 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeb11afad adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xefff8fee adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x08675b0d dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x42409eae free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5517f1b0 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5cc3169f dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x64f3f65e register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x9dbeec87 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xb2cf97f8 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x307fa823 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x53fa5688 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6afff5f2 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8675bde7 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa63d4454 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x55dc7130 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xd1ed7f93 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xf232a9da hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x430d45ad vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xb35f1c3d vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xec37b37e vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfdc82d3c vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0xf81b2f23 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x04b5ec1a edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x095926a3 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1f4422eb edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x27f802d3 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3565fbba edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4759204c edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5974c003 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x60153393 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x634dff57 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x643737cf edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7d717ced edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8d85932b edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8db5da27 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa2092d3a edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb6314487 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc2dd28e5 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc7fc80b1 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd55611fd edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd784abbf edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdbefcd5f edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe74963de edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf2faa351 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfcf50c7c 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 0x23c9fa50 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4c3b46b0 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x645b59b7 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb3044aa9 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb6791a9f fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe6dd81e0 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x5271efa9 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x87f388fe bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x80f4db62 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xbba9fa12 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x77e8a8ad drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xba9f6456 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc9de24b4 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 0x01f3e8ba 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 0x6e9c2e08 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x8104e7ea 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 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0b26f3b4 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2128442c hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3da5cb84 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3dc52477 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x53b3f024 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5ee1b5b6 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x62df1d25 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63b13ede hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x682e9aa9 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6b64b359 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d1d140b hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x72d5c9d1 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fe48fb5 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x820addea hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89e2ba3c hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8fa05da6 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9028c8c2 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x94cfeac9 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x98b625e9 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9932f50d hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa37f1f70 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb91cdf39 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xba84351f hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbeee33f3 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1a68798 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc21513fa hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd061e146 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd143d45c hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe213fb62 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe62165e8 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe78fae2e hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeafff60b hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf335acd3 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5d7ce8c hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7a8fcdf hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfddc8b97 hid_dump_input +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 0x9660a4b9 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x43f637f1 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5129108f roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x73a478df roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd033449a roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xf6e3a98a roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xfdf562af roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x06e6b6b4 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0a31977f sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x18eea583 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5c28aec8 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x62b8e981 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9ed61527 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xde7702fd sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf7ae788f sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf89b051d sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x44c8350e hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f83795e hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x23019577 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a85747a hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7b27ae55 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x878b9f80 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8dcb64ee hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9a97059e hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa3423fb9 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xca05c593 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcf566b02 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd5588b02 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd9ddddb5 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdb050b01 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe32cb970 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe8a01b88 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xecbb6acb hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf7d26bcc hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1caf94e5 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 0x2f37ee15 vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x30d2ceb0 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x3d3ec075 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4edd203e vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5939a814 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x65ffa045 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a9a6e1a vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x79b6de00 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x810eb843 vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8aacf06c vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8e2669a0 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9157dd6b vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x972f4438 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa3766885 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xac757996 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdc694534 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xde6f7974 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe3aa3ac0 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x00b35ec7 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2cd28bb2 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x778177e6 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x079135ef pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0f39ace8 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x40e8b01b pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x52b5cb18 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x65d98500 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6a2209e4 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x749881c8 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9039d019 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9daf434c pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa01736a0 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xae0aed71 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb1c19304 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb5791502 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xda2e4516 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xff62e2d6 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x01371f94 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1efca492 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9a54b0ec intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa079a8a9 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xca3caec4 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe9bae8ce intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf3da2605 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x01f8a7b0 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x512a1eb4 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5ce3a72d stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6db401c9 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xba25a6f1 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0b892581 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x3efcd938 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb0371444 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb03a1ad2 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfc69fd2d i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0x151c4f56 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x52122481 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5aff7a90 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x9c7d0749 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xddef1d15 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x41bc6c6a bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb1d0afef bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd46b0a3c bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x01b18a45 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1e05e029 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x3670c5fc ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x36d35a06 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4cba3286 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x669640b6 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb6a582e4 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbfcd6887 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfc108fc1 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 0x1ac6ba3d iio_channel_get_all_cb +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 0xf840a181 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xa9589c79 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xb2e3fb35 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x29280fdf bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6367053a bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x77c6df2b bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x076b0ade adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x31d93b9c adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3be2146e adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3fefd27e adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x40303350 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x55798568 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6acdd26d adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6f291aa9 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x76999033 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xca123345 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe495eb26 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf58c5664 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0520d589 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c5369c9 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x12e44707 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1783f889 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22e2e020 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a2c0e6c iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e9ddfa9 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44179530 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x60562fd0 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x668c04ab devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79b17408 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8974918a iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c3c50d0 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8c92231b iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8e52d4e9 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9476a2eb iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x993a17ca iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x99f18095 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9dadf34f iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ff3c2ca iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5f77e27 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae70ec41 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7963932 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7c5173e iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcaf703c2 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda76e700 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe0afd58b iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4ca3b36 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf68cdab4 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe22b838 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xffc1fc86 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x66e38218 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 0xc6e1a8a2 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6d066644 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xad42059f cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe5d13abb cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x929bd6d1 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc6503cb1 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfcb308bf cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x5b713096 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xbf5ac0a1 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5fdbae1b tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6088217e tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xda48be36 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xef16fcaa tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1f4f67a9 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2a71481d wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x37cf5547 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3e843ddb wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x54f380d6 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6861e622 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7ab12258 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaa4ef384 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc15d1f61 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd67b3ca9 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xea96e17a wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xfb6555d9 wm9713_codec +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x03a749b3 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x196b3988 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x23032977 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8f16a7c1 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa79cae06 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc90528b0 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe24140ad ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf84d77ab ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfe47d1be 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 0x01324021 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x0d36f948 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x10eb843d gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x10f76c85 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x19fba454 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1c5e6330 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x424831ad gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6c87e033 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x89647885 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb1b1f3a0 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc46f78af gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xca04c323 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd0dd493a gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd51216e4 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe8ef7e4d gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xeddd4151 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xffc4fc3b gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2aeea648 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3fe52347 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x82dd5976 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x971aa923 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9b9e0346 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb59115af led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2a4088fd lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3216799e lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x449a0701 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x46a55bd0 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8f200cf4 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd725e628 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdea9a0ab lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe3b197a9 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xeac70cf6 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfc54f34c lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfe6fdc44 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/mcb/mcb 0x08a2d8bf mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2ed7838b __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x300f2fc6 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x34786185 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4cdcbbc1 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4e16619b mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6816b3b0 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x69e8525b mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa08b36d0 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa881ccab mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb23a899e mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb7523805 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe2e8231a mcb_device_register +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 0x51f4a52b dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x603d20a7 dm_bio_detain +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 0x777bf643 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xaadec431 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb46514b5 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 0xc7d3398e 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 0xe8eb6da8 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xec348e9a dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xef62aad0 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x38df039a 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 0x221fc825 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x28998b25 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x2dc508b1 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5617ae88 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7573f1e7 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9f02f2be dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa3790ae8 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x378e91b8 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x438a386a 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 0x38f77ba4 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3a18389a dm_rh_update_states +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x3f8c876f 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 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 0xa28dd07d 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 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 0xdcea7441 dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xdf97ae51 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe11b277d 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 0x363d5cdb 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 0x21058563 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x24699136 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x636d0a94 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x671a0399 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7275ee08 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x754515ed saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa7f7a2fa saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd687eac9 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xde56f941 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe4cbb66e saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2d4c1e73 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x305ae57e saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8486dca4 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xae101d78 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd1a464ba saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdbd2c2c9 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xee68280d saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x06e2ee70 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21634ef6 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2f24e278 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x356473d6 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x356bc8a4 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3b4a8975 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3ee70634 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x49521a56 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6397786d 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 0x7ff55d65 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x908dd3ab sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x930fd542 smscore_unregister_hotplug +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 0xaa97972b smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb8333346 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca07917d smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd024951b smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf53384ed smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xeb5192ed as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xb64c5ead cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x7390a5d3 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0047bdf0 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x045de70c media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x06a57307 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x091e1811 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x0dfb39ea media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x330609e2 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x35131762 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x50506cc7 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x6d3d8a9e media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x77fab815 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x805feda7 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x90ae9be9 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xaf81fd5a media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xafe16bc3 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xbd6cb07c media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xd8cc2cb5 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xdbb48412 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xf587e94a media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x7603c118 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0abfea14 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0ef51a08 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1846287d mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d5384f0 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3367f6f3 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4060b93e mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x42a27cd3 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x446eac35 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4675cb24 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x503ea9da mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x57ef8478 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x64e657e9 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6d08035f mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8358f720 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbef1d0dd mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9f88a1b mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xceb03fbb mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf345afd mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xea581d00 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x03cd3234 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0f638e64 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x10f53bc6 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x11a87ea3 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2b50a0f0 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4f176f67 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x60b8c516 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7556dd5c saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81549f75 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8d3977aa saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc21d5559 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd17ba171 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb156280 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe6a7dca6 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe7eecde5 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xecfbe2ea saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf5d86ab9 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfb6eb3b6 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfcd3c8e5 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x083b26ba ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0aa3bf15 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x19d80e5b ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x650e792f ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x796279ff ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xba8bef1c ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdb8dcfa6 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x38a1d057 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xbff3c2bb radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x10422a6a rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1778a85f rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1d0e7e7a 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 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x621fa83e rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x66a835aa rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6e3c6435 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9bbfda9a rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb6f2f950 rc_close +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 0xd4da01af rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd5ff2761 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe1c9fca0 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb7822b0 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xefc074e7 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf106c0d4 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf2d2dcf9 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfbaae4ab rc_keyup +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xf5f8499d mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xd0d046f8 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xcb7ccefd mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x8bd63e57 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x7639de30 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x953e986f tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xb308f4fd tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xccc3df58 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xbb2a7119 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xba6bd3ab tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc8959f38 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x53e579f5 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xbb252d16 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x4316a10a simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x05a5c054 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x09f0f162 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x132aa6f4 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x14d3c48c cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1e5a8e29 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2fd3bfa6 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x38a60702 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5aa34b0c cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6265e280 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x73df4646 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x74ac02f9 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8a329cc0 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x94f2255d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaaf9027b cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb6551ad1 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcc3ba182 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xccfe052b cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe3672977 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfb977724 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfe58dd56 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x62d187be mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x0b7d5333 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x00172cbb em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1403d694 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2194448c em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x271e8f53 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x29eaa313 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x375bd262 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x43460460 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x463f7cf5 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4785b61b em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4df9da35 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6b642f39 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7bf20026 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8a276ee4 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xde39c3fe em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe3d658fb em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe85278ff em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xee8d623a em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfb215264 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x06ae6fbf tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0ff334ad tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x577ba27b tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5ca59db3 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 0x001476d7 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x01c483a9 v4l2_get_timestamp +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1d0e80b1 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x3b71336c 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 0x8a26ea93 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa866e86c v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xb46fa3a9 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 0x737fb650 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xd9af3f76 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 0x253e11a7 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x27fe10f4 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39f220b5 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e7b5c45 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5dff52a0 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5fd57249 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7108b1b5 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7a106be0 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a08dd56 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x94d001be v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c0d8eb5 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9de00ec3 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9eab8dd6 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa05a7a39 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbc7506b9 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbd02c882 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc0756478 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc29c36cd v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5d70558 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc9543f58 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcb7e9671 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3e814c5 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd645f0c9 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe70ed242 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf15dcbdb v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfbd14dd3 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfff6c1f9 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x18048d68 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x182b0504 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f2f20aa videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26c0e7db videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x26caefa0 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x33566714 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x348b892e videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3b29b9f0 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3bd7a095 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3d2b629d videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5169e13d videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5d556975 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6444fac2 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6774b2e6 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x781128ae __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x83d9a778 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x95043f83 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa4a53a6c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc502d997 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd18a515d videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd8c7c2ca videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdc0f424c videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xea841023 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xef7eb647 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x199ab79b videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x237ca484 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 0x7077d48a videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc199cdc6 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x78c2c725 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x97629ca6 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd8bddd6e videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1c8f3380 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2b2c6998 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x475a3e8b vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x67552b13 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x74bb33af vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7c38041a vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x80bd5c54 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x81c2a0ce vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9f439bd6 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaa6e06c6 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb608b738 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb9ae604e vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbbf4a7fc vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd48d872c vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xefc2cb57 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf8676225 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfcb158f6 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xffa6ff0d vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x86899058 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 0xf82bb09d vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x8b9dcb12 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xadb6bd15 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 0x82d1db2c vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0960e597 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0ddb2133 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x17aa5626 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2901c377 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2a72ced9 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x38cf97aa vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48a65772 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x54c5dd5c vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x59efc499 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5a981b83 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x610db7c0 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x68afd7a6 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x698dc2c9 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6e38430f vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7feb1a03 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8c3c6991 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x91e5c39e vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa6b1bbf5 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa7ac496d vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbad88401 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbdb68a63 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc2f14326 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc94b2fe9 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc9a4f1ed vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcd62c57d vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd4af5e69 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd78ca364 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc058f62 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xddec2cf6 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf075c56c vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf3b66b1f vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfe48a0f8 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x14ad286b vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0451f944 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06f684a6 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07007803 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07bd143e v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x092e7954 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b8dd552 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17f56a34 v4l2_device_unregister_subdev +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 0x43c80ff1 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b678247 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69528cf8 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c5c42d7 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78cc04c5 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89664541 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x924e02e7 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x945f277d v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9899d10e v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x998b41bd v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9c84e1ef v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9d80b221 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaae09e6a v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab4021b8 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xadb9bfa0 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb68e87fa v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba46655a v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2a2fdaa v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xca91c0cd v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe819f924 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec1c2305 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4db696b v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x266fb314 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x661aa380 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd7daf3c8 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x03aaed93 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x30459e7c da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7ba2646b da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8c177108 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbf5f82fe da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd2103562 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xfa75c05a da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x31155d6e intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x56fbf8db intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x594d28ad intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x82d7108c intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xdf50e88d intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0ec77636 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1602e281 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1ae96fe5 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x27d770a5 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3f647228 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7261e0ab kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x76eefe88 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcaaaa94e kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x0bc480b4 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x524906dd lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x540bc840 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x15059799 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8220e307 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8a1ddaa2 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc3ad119c lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd12e87e2 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf44ed4fb lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf73a8f37 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x18c7e0ae lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x351192fe lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb1c0c0f4 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x15640d07 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2f284c41 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9a57dd7a mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb899f7c4 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc8e26332 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdaed965a mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1fed71f7 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x49e9b8f2 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x531c4409 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5dc52792 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7335eb30 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x87513bb4 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x94f27809 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x95fb3b4d pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa07ab6f3 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa39ead34 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbd597c81 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x73f129c9 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xeae97a3c pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x093cf28b pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7ddb7579 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7edf8bd7 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x874e184e pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe6dba97e 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 0x03d62c76 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d1a8204 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x226fbc18 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x308890f2 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x33b698e1 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x44a4cbb2 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5a3e1f9b rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6c9af378 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x70f68dea rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7b2e69ea rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7fd27fce rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x860055d6 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9c83f708 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa2c63b1a rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa5e5dd4a rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xacbe3434 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb3aaad8d rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbf64b78c rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xca2e54d1 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd89dfda5 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdf79f17a rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe77b6d61 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf5b18acf rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfa89fd4b rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0982f7c5 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x241b2818 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x30251cce rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x64ae34f9 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7cc37065 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7feacc60 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x838a3ec4 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x855cb571 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8f8cbae1 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xac9eced7 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd66521ac rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd9c47133 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe4ce0399 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x09514b87 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f3f1ebf si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1a6f885a si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1d947b32 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2477b12b si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3278124b si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x46dbdf71 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4cc4597a si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54cc5413 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f53f323 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6aa2be00 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6c4ed832 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x72b1d075 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7445080e si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x747679e5 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x777962bc si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x84b1d153 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x97c45451 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c21b08f si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e9915d7 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9fc7c2d4 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6e914d2 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xae8e3858 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbb37df7c si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc9e6ac9c si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf4c32b1 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3467fe1 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd910a2ae si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdb3d6274 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdcb65f66 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf039da91 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf107bd4a si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf62b692e si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf91796c7 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2b27d69e sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x4437edee sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x521d3b03 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x5ba52418 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfcf4b2b6 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x01711907 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5bd8637c am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8e64ed60 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xed2f7e45 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x29de76c5 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2ca7ded8 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x4c088798 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbf51cb0a tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x38e55993 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x4538da97 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x6060e040 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x69843409 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xda98cb90 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1c0aa4d2 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2ceede3f cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x38b5768a cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9fcc000d 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 0x3eba671e enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x46915b90 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb3e203aa enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd3be0649 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd84249a5 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf6cf8e0a enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfcaf8c5e enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xffd42a06 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x14ba22c4 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x27b153ca lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x28be3c94 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x31965b55 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x629644ce lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc075d9c8 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xeb8dce23 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf2d7f450 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0b6bc38d mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x15c15c1f mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1c4a0ace mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x228ae5f1 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x249c730d mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x37e84cb3 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x46392ab4 mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4dae1adf mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x555b1926 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x55a07f51 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x602e7241 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x75abef68 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x76e4b707 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7898fbff mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x7ae5c143 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8299a123 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x93c81e40 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa05eb315 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa7d7078f mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb25a98ae mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc170d588 mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xca54994e mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd18057b3 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd71a20e2 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe15e588a mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe7178759 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x1a30bdd8 cosm_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x3dcd870e cosm_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x53d5033b cosm_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xd710daaf cosm_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xfd908dce cosm_find_cdev_by_id +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x15790a13 mbus_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x465ab532 mbus_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x56fd3932 mbus_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x9c05110d mbus_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x437acf67 scif_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x578cca6f scif_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x9d94f46a scif_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xc585db6e scif_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x008dadbf scif_bind +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x29325a46 scif_vreadfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3cacaad8 scif_vwriteto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x3f61f000 scif_accept +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x5053ae6a scif_get_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x5a20a1fc scif_listen +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x706c580f scif_writeto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x710e0ee3 scif_connect +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x78b33dd1 scif_client_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x874041e3 scif_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9c47e6a1 scif_open +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x9e20d79f scif_send +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa723d6ec scif_register_pinned_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xaece6d9e scif_recv +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb128776c scif_readfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb9c917ed scif_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbab49c21 scif_unpin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc341a4ba scif_fence_signal +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xd58f9a0d scif_close +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xeac7e3f2 scif_pin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xef0cedcd scif_fence_wait +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xf67aaca7 scif_poll +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfbbe81b5 scif_fence_mark +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfe69e849 scif_client_register +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 0x3660c5b9 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 0x65236967 vmci_qpair_enquev +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 0x71f6bcd1 vmci_qpair_peekv +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/mmc/host/sdhci 0x0ab3c8ee sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x13053d18 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x354295a7 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x48e7b71d sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4a24d4a0 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8391fcaf sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaf66b3ce sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb02208db sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb30bf935 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc313722a sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd2779f91 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe73352e7 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeb3d2768 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf0cdea70 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x09c8c490 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x19e817f0 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1b4162b6 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x365ca255 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4564921b sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8491867f sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x97127ef7 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xabf6d2fa sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xb2d6dab6 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x19f7d123 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xdbc0d15d cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe4e9f4b5 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x07f0ac0e cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x79a2e7de cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x8a5b2858 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x6aba00c6 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x2153ac9c cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x43a2198b cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x76590ef6 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0bebfaea mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0d8d4dd1 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e7c6bc5 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x105ffcc1 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x164ecf23 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c69752c __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x20fc20b1 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x238d0fff mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24abf9da mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27db1811 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2fc3373f mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3247d226 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x36b04450 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x393a875a mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ad33e7b mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49670492 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a1cab2c __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5012f917 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x51752365 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5c8ef695 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7dd7a4af mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82130226 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x861bb4de mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88051b61 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b2c9b8e mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b9c9cca mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa2f38d40 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab06252b mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xacae3569 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb790c4c8 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb95e2efc mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbb08f32a mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbe36c9f1 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc68e963c deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcc869c82 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3b2f4e9 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe8fb8204 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf31ff243 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4fdd3da mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf7c15ec2 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf963d275 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff3bdd36 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x04fb85da register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6d8d18b9 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x89cf5571 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd08bf779 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfba0901e del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x65a5976c nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x9593ed81 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x00bb664a sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x09de26da onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xdd207ca6 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd0a471d2 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x20a9d772 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 0x528b52f8 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x844f9a37 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8688bafd ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x96b5ea99 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xaf08a1c9 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb074a75d ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb5dd3426 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd0c54db2 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe4648340 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xea6c1d29 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf11dc7bb ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf70b7535 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf8334eaa ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8dca32d9 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc0f3ad0d arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0290e9af c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1907cc3d free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5d39eb07 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x78d1d4c7 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x84d79381 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xec06904a alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1b143878 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x207805b0 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x23336dfa open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x234ab29e can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4cc00139 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4e31fa04 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5e6ebc68 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x647eb64e can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x74c5dd5c alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8bd51f68 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9ef8087a safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa365ff55 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb0926db7 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb446f360 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbc396508 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd46c6f18 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe3018dd5 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe473df23 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x824e2979 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x934d6c88 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xbc0328ae alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc2133c80 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x343f7554 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x626f61b3 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x697e1553 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xcacc9ff1 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00df8082 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01b30d29 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05000c7c __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05e95703 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0881f9fb mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09b5615d mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cb862cc mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cb90080 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f7b9715 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x182726cd mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a67d69e mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b334ba1 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f569688 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f8e014e mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20dbfb80 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20ec1516 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2830b673 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ac6df83 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b0b11d9 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e7a2966 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e7f9675 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2eded642 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f1c1da3 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3006ef47 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30d6c9ff mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x368d812a mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c38337e mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c3ed392 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e9e70bb mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b0ea12 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46493408 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b57b131 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ba0a25e mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bae8c88 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e902d4b mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f5187e3 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5090df4d mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50ac9d57 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x532e5c6f mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5388f86d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54baa5bd mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54c57c9a mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5627c33e mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58eeac27 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a5a1197 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x600fc153 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6082c4cf mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x609a3a0e mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x609c4f1a mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60a17244 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62faa255 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64e6252f mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dfa6187 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70a7886f mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70d86024 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70e45b75 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72783539 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x759657ec mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77eeaef5 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x785ab4f8 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79e98b32 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a33949f mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7af26e76 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b91374d mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bdc5e6e mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c82afb8 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d7d6142 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83cc8308 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8413d6f3 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84de9f40 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b4a2f5d mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c795f69 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x903eb997 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92a01ba3 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92b2e378 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x930712bb mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93e899de mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x981a638b mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x994ce4d6 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a6ea341 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e199718 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0acce1f mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa28f4102 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa39b0d27 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3b5f471 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa417fc3a mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e5c14e mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa2ee61c mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaae39033 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabe096e6 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xade5400f mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb228f74a mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5600340 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7d740b6 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb997c8eb mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc5a2508 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc38308d4 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9a9c397 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbde073e mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc6f781 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd71066a mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd007c4c4 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5c38dd8 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6e69188 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde200725 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe016464f mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe02bd9b1 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe05e60fc mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0a9c453 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe39cb0c9 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8308b01 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8d87323 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea9e4544 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed9b3a55 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedfef615 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1a3bb68 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1c72dce mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf359feb8 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4d51b54 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4e895d3 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf67ec36a mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8020ee1 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf853cc49 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd833423 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02abeb5e mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07a0509d mlx5_create_map_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 0x1003c86b mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x109ff958 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b41e463 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ed13758 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x329b3b79 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a40831c mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3dd3dd58 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ec725dd mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55be05e1 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56c31264 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57be5d73 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e8d9269 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62ab5e20 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62c1eaed mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x635dc280 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67d00573 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69aaaaf3 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b0c0725 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bccf174 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c8f2aac mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7145dc21 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71a83a78 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x759bd04b mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a0cbef4 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c6ab456 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f362ff9 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90380a43 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90c88e1a mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x911165e7 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93dd8f08 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96c11ee9 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99365bfb mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c36050e mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa49615d1 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb4951973 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5c1ed69 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb82504c5 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc428b4c3 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc83312ed mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2686a8a mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe11cb465 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4b1c977 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefb25d21 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x0c2fae61 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 0x56d95f09 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa412e341 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xe69ef883 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfd6e43d9 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x20060666 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xbbe97c46 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd0c6f578 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf68c2884 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x07ede156 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x178de9ff cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2f209e4b cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2f2e87df cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3704957c cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x38de60e3 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3d869fb1 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x42fd41b6 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5afd0649 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6747b09c cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x67bf0301 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8087297c cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xba414314 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd278548e cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xff11cb28 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/geneve 0x078e8764 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0x8f0d41aa geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0f28db16 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3092e081 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9a8870b4 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb89252d5 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x3d67f7c9 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4813e156 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8441db5b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x93a72f8f bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9d1452d7 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9e4bc06b bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb80b92bf bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc756ab79 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd1544dc2 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdf648496 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfe2a0897 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x772dd6dd usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc7ec2c7b usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc853231c usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xddf24a55 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1f09f8fb cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x24bd8e79 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4f7fbfe7 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5717bc21 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8d2a2550 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8d5f9622 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9928ad72 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9f617e05 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd880aa16 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x335b5b1d generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4ef5016a rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6ed74ec1 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8490bd01 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8b465e33 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa19e8049 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x06624256 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10bcea4b usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15b24d08 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2dabe6a2 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x309d3cdd usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30f9617b usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x30fb094c usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x388fba70 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38d63efa usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3f5b2e2c usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x448426e3 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x496c1ac1 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4c11adc0 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ddc69d6 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x525087e1 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6026a070 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6cbb4868 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ab364a1 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b50f129 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x969d6cc8 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa864300a usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb09afb91 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba1e95b3 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc19bf434 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf8e05b1 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd50ec132 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd215ca1 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe960ca4a usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf2fbbb46 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf51db76f usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf7e64a08 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfa583f50 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe0bdc112 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xfa94ac8f vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x081a1d3a i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2be06a8d i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3773eccb i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x39998948 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6b389932 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7581d522 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x800deb2a i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8673eb9d i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x96de4f77 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9e145bd1 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa5123bc6 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa5521718 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa98e1d1d 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 0xb9c511d6 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd2568dff i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe0f894cb i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x324bceed cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x5848e201 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x5e68a99d cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf7fbba90 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x5cc92c8c libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x5e14e49a il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xaeb3ca71 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xb87d2954 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xc3e74e6d il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe29133d1 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1a8998d3 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x324e929e 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 0x41459914 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x423ea7b0 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x46ad435b iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x478cfe2a iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4e815852 iwl_parse_nvm_mcc_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 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5eebfbdd 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 0x83fe00ab iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x86baed1c iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9f06f380 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9f81fcf5 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa3e6b497 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa6393dcc iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaca19708 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaf356eb1 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc1b443a1 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc541b3a8 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcdad17e7 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd40df94a iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd421ada2 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdcb2dc2a iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xde70274e iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xecb302ac __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfcd713df iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x15a7f1fe __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x18807621 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2267dda1 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x251c9bf6 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4c55010b lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8db9a98d lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9977d825 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa6a6e700 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xac72225c lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbd06ee25 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc3b0814f lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc50a6691 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc89ac817 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xec7e0348 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf0126bda lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf56c56d0 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x273e567a lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3756ccc9 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x39e8c98c lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4e2dfd03 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x708905a7 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x95a3bdb2 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9f617d1a lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa63bf502 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x03e3da7b mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x135f42de 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 0x4122868c mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x50e64ad5 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x530e8053 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x55b1ac6c mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6268b56f mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6b9574ec mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6e7d9363 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x716919a8 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7c151d72 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x816b0332 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8ee867bb mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa4c7dd67 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xaa712dbf mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd8360a2b mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe303179e mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf24053f5 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf9bca0bc mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x0b6d346e p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3ee34e9f p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x68ae4477 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x74cd0fe6 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7ab57343 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x91094110 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa7e86dd1 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe4d19f69 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf3b33eae p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0afee8c3 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d7931d4 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb6051d5a dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd276345d dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d0c9d95 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x25705299 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x27cbba11 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2c970592 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32984737 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32a8bfdb rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3ab6f934 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3e0cf6db rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x47faf0ad rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5635d149 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x58c081fd rtl8723_dm_init_edca_turbo +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 0x719ceebd rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x77c4bb0b rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80f547ee rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x91af1812 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92eb3a04 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93eb94cd rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa105a0ca rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf46619f rtl8723_phy_path_adda_on +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 0xb19ed4e1 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2c05bf1 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd742ac7 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9ba35a9 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcb47bc34 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xde944bf1 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf10fa3c2 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfcfff003 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22697f1e rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x285e25ce rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x366bf2d0 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x45368447 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58bd8394 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a9bddde rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x63362393 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69436cfd 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 0x7e95af47 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d1e651f rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc2f4fda0 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8ba9167 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd20268a9 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd97d85bd rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe565d7b8 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe837f7e8 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef128884 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf3d34888 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe8eb083 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x168c46d0 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x1e82cf97 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x4e44a84b rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb9c0e680 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x030f63d3 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0776b6c8 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x09c8bb94 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d1b31d9 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x159d614d rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x163c5c01 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1c75b865 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x202ad10f rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x26dae326 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3524e259 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x41f6a5de rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x45d69b2a rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x55ceabbc rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x59d220fd rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5e8a4e6b rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x71d7dc7f rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77768397 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8c247d53 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8ce40c59 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x98b135b1 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x99bd5b98 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9f939682 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa6a892e6 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa7f79a01 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb290f3d5 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc08e14c6 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc702b5b5 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb5ae6e0 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe352e72d rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe8b6158a rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xedc3eebf rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xedf43545 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf1a9d69c rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf25e7c14 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf7872c29 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf9afa8f8 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfb40383d rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfdc2362b rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x041d2f71 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x195d95d9 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1e7a5722 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x43af6645 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x44c0b639 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x52e1a8ab rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5d8f1a01 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7909486e rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x87170d77 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa4cefc25 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xadec8959 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc33d41a8 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe0408cae rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x013f542c rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0565823b rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x05c4bf1b rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x09a99441 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x103b7c3b rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x11905c84 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1cd81a14 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x20dac2dd rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x216e4dbf rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x25260fc8 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2eb2c01e rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2fe58fd6 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36225e53 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3a0f6c88 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x40f87913 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4e681546 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x52876704 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5384560c rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x843688e8 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87dd673e rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x88fc3615 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8b7e592f rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93243f63 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x96ab6b1e rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9b36b7fa rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ffadeae rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa24addc8 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa36d8aaa rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa5d0eebd rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa8183cde rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb3234049 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb5e4af56 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb6b99569 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb58bde8 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbd680c08 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc4baf616 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc4f79d2a rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc8dc915a rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xca19425b rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc5c3c10 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcd430603 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd3688ad8 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed0260c3 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed20faad rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf58eb2ad rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf7e92f63 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x092a657e rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4fcbcc72 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x6a7774ba rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe437741a rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xfa9bf1f5 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x425d0b22 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x90415ce8 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xa281d8c1 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe2c51607 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x24ba9094 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2543f6fc rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3400b106 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3940b1d4 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x39b53d55 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4ac6b8cf rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4e6ff4ea rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x57387055 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6267f094 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6ed0616b rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7f0cede6 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8a148471 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x99f7c532 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9f6a87f6 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb84fafec rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf9300bdd rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x0a73f8a9 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4057892e wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4927c989 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x007208c5 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02a7f548 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ffa5ce6 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x105a90e8 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10b68163 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x13f2e11a wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1de126b0 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e5cc232 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e6fbc11 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x24adf415 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2bcfef27 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x30359cf0 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x367ef8c7 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3d148a7d wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x452d745e wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x459a1da2 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 0x592a18e4 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6cb61e0e wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d2d6c5f wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76f64f7c 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 0x7b9273f0 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b9fdfe3 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e6a1764 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8fb0902e wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97c8b8bf wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x990858cb wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9b4d9532 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c92aeb5 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa151fbde wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa258bfd9 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa45baa89 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf2f3e9d wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb3c70470 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 0xbf5e9e70 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc72a07ce wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8df2449 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd0e2f69e wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8561804 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd98930f1 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe3957373 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9a926b5 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9cbb5ef wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf4bd4ba0 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfcde7747 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x1dc0cb65 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x384e0894 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xd142eb32 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x23d3efc3 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x2c2a6314 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb1cdbcb3 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd1780ab8 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x06ca7554 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x28f45dd6 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4b86eee7 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4b9db366 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x63884b7c st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8b398bc0 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x98f595d5 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa382bc18 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x217423fa 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 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 0xe5eec8f0 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe91528d0 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 0x1dc54162 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 0x2db228e4 devm_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 0x64dfb8ba devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7fb0a3cf 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 0x9ea961ac devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf353bf97 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x1d7199a6 intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x1dc84cea intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x71c5f33a intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xef6cee11 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x25b0806d asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x9fe122be 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 0x8abde607 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x8c2862da pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xa8e36ad6 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xa33ff765 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 0x65cd1700 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc660d1dd mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf8250208 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x01764106 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x24b05b36 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2fbc9cdc wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4b33e0ff wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x9bffa748 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfc3f7472 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x8379d90a wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04434fdf cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0ab088ef cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f6cd21f cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1e7ccd7d cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x20955e9f cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34d6f584 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f846912 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44639f7c cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x497b3f67 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b56f829 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c4a1e17 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4fe21e9a cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x508c28cf cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x527b8809 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5535c848 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56363c47 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57c7e996 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5881e685 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7252501a cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c788669 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x815cebce cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x834d814f cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85ecd517 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cab0aba cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0c19e03 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa634f458 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae8cb508 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5ae885c cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbda4aca9 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc035c264 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc26e1b22 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8d706da cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcc0a5a2b cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xccb03c8a cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd96a641d cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd8368ac cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde7e6050 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe3b046df cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe4b7b364 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe643391b cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe9448664 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe94cdf9e cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb9c23fa cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9cfb87a cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfc37ef9f cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfed0cb40 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1897b724 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1fa2b600 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x20f9b2c0 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2ab04b94 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3122dd54 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x51059638 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7a041261 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x87c0e1f9 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x90b43388 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x95ddfd84 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x975b7b0b fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9ed08eb0 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc5f58763 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc7bf6b9b fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdade8440 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe7290313 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 0x0d2c81ec iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10bf642c iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x115f235a iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1371fe9b iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x137ba1b9 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x238830b9 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27f59ce7 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c803419 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x36ab97fc iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43cc8dd7 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5497ad4d iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d43db67 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x65b54a01 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66bb04aa iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x703b7b37 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7cb39928 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82810792 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x85ec40ad iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f03b118 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x96368155 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9af4a590 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c9f6d12 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f3fd66f iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa35b7c54 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa52eaa5f __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa546ccc8 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae178fda iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb02a908f iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb950a766 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbac91111 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb92bd8e iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd020d78e iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4688767 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda5a82bc iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcc17b5f iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xded665cf iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf28a001 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xeb6e9db8 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed548cb1 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3ada3fb iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf64c4849 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd5a880c iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x09cac11f iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x19abba80 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1e878d79 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2670ab09 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x34d30894 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x41e9b079 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4da3e973 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x50c40a61 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60b29a22 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6799c9ab iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7e2c8ae2 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7eb8a619 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x805c742e iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x93a738a3 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xca831270 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd5316fe0 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd5e508d2 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10d206bf sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x20b6c5ee sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3211cfa8 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3dc4656f sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3eb4cf3d sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4c4eec92 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d8ae503 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55de45a8 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5d23f419 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5dd0e53b sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x65cfb985 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68a5a6b9 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6c1d367b sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6d9f5b18 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71fbec22 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x763d432b sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x77cd8d50 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c2243bb sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa37407c0 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3bae1d9 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdad56604 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc499b03 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd21b0c7 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe3776b57 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x020ebe86 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1288a44d iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1686f360 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17787113 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24177612 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26907037 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x35e20e3a iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x417c3f02 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41db33eb iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4c4a826d iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d329b21 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52680e6a iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x530d44f3 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56038023 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ecb99ea iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x63988901 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 0x74b392b1 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x78bf15e5 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a09c2b1 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x82e7b2c4 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 0x869ad881 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8f168760 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x907b13f0 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9b8f7b4d iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d41e3d1 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e5378b1 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e65e870 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xab8f98f6 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8dea2df 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 0xc8c7d2b0 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcfb38879 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdaa76eb0 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe16c8d34 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe380784f iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe42eecb4 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8e1406e iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf157a08e iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2977caa iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf3727d26 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf43b1027 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1500d28b sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x21583901 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3dc94f22 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc8a1515f 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 0xcb7b9495 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 0x3cf7083d srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5586d09e srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x737d1906 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x846d0d23 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb439656e srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd033f97e srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0ed5c411 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6baf953c ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x705c12cc ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x77fba166 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8c460013 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x94737f11 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xfe3ed402 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x48ef8a80 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5119bce7 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7ff3975d ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x98f50c12 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb36fbcab ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf47585c5 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf99ccdcd ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5908cef1 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5b0a6c33 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x92794ba5 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xccd808b1 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xfb56984b spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x04e34fc9 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x909bec45 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb3c7f195 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc45df860 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03edd42a spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2483f9b0 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4be55b6e spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5228ff62 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5b86266d spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x646e27eb spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x65f2adc1 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6e9a670f spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x70a7f214 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x74ca8dd3 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x764ebcef spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x83346252 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9a725732 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb11ebf4e spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb40b305e spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd8a4b59b spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe0cc23a9 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeef59844 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x55c96a8c ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0c542edd comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10d8e409 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x13d41349 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x13d50252 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d92f785 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x22d46377 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24a9794d comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2985e993 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2ec11d6f comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30b3c1b2 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x36a79438 __comedi_request_region +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 0x515cfc93 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5ae1c2c6 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x61c886d7 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6a6aabd1 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6dbe075a comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7ff987e1 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8925f241 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8abe3661 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9018ae54 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x921dac86 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9288b52a comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x99e76f49 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9e939d7d comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa2a34294 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa9e35e22 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb07aa709 comedi_load_firmware +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 0xc02f43d8 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc73551d2 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb137828 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeac9f25a comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed52c9f8 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xedff9753 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf434e226 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfe28e3ee comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x083791e3 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0b005909 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3c57608f comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4893ed96 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x528d3300 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8396fa2b comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb8628cc2 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdc8fa9b9 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2fcfa19d comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3b3c1253 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbcbbb971 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xcf8651df comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd5d65ad9 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xeb5f30ce comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xeeae0f78 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4e2e98f4 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x760547fd comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb98c0152 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xcd505268 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xcdbff760 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xee703f48 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xa3acfd2f addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x758ed6d8 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xddbf98db amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x0ead1290 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x22728b8c comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2647a890 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2c7f79f1 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x32afe866 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3bde4685 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3df129d9 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4ba553fb comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x986e790e comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x98e320b9 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc1b51821 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xce7eec64 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd57a1e7a comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xee4eeb65 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x48da650c subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5ebf2276 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x8e06b1a3 subdev_8255_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 0x60ba6118 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 0x285dc50e das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x07619aa6 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1469500c mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1d528703 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3dc82ea2 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x498c9b87 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4b93af0e mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5280dad1 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x56981ebe mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x56bb4901 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x648518a6 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7134f599 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7f8959f0 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8c94f686 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa61fed16 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa9fe4dc4 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb3d8308f mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc7376e75 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcca962d2 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xeb084924 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf5f5b5af mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfeb73537 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xbaeabe73 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf6d660c6 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x2c487246 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x541b6130 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x58677666 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x90b92d26 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x9a56d8dd labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0bb1f810 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x11f1b3e1 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x12034b84 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3bf75a49 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x57ef7e63 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xab7c620e ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb7d63780 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf529bbf0 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x177e86c6 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4902d68c ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x53a1ef07 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x63de11c9 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6daf68af ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd3be50d6 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x15336174 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x308e5080 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x45dc69d0 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7c0b36bc comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7cafa39a comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa55f24ac comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbb194e5f comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xb8036108 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x38e2951d most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4e06f74b most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x573d3105 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5cbbff70 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6ae36efc most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6ff3d3de most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7ef7a162 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x881dc002 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa24a2338 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb4d40bbc most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd069b5d6 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xebdf7513 channel_has_mbo +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 0x41e9678d spk_synth_is_alive_nop +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 0x5c85fa9c synth_add +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 0x956312c8 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa1612d11 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 0xc1b9468e spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc639bc9b spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcc70c36e synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xcde2bc07 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe3597540 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 0xf6d6bf65 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0877dd5c visor_periodic_work_start +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x0e0563a3 visorchipset_register_busdev +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 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 0x499df3a6 visorbus_read_channel +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 0x60aaf74b visorchannel_uuid_id +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x6ae6cc4e visorbus_register_visor_driver +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 0x8b8ce580 visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x96401fe5 visor_periodic_work_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x9f6fab40 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa40863df visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa428b832 visorchannel_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa6f5ec92 visorbus_clear_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 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 0xd9f51d57 visorbus_registerdevnode +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xdc24a972 visorbus_enable_channel_interrupts +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/staging/unisys/visorbus/visorbus 0xfbb074f8 visorchannel_debug +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x058d8ae8 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x44698f1f int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x5bec8509 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x9906e41d intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xa432fb47 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xa46c62c8 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1117a9c8 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7a059b40 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc6968587 __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3b5c79d5 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xc94f1ec1 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1d0faf0f ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xdc812cb9 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0cfa2a57 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x36694108 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6398d7e4 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6d34a157 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x96fed66d ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc5d718a5 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x12b91b12 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x416bf488 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x41ced25c gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x491f933a gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4a8c5aa6 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7962b843 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7d386269 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa8e7bc69 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaec103fe gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc7b6d0c5 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcabc595b gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd2c8501d gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd4ad0a20 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe0b1ee35 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf60582ae 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 0x45ccb7d8 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x471e8cab 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 0x11a75810 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x92873e82 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa40549fc 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 0x1b4fbe8c fsg_common_set_cdev +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 0x26a3a137 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x28418437 fsg_lun_close +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 0x2ae0e560 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2d09e6b4 fsg_lun_open +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 0x5e57cb96 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 0x6c81bad1 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7391d9fa fsg_common_remove_lun +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 0x9460a23f 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 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 0xac07f632 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xad2f00b4 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 0xb5b265d4 fsg_store_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 0xe86ff754 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe9d7633a fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xef4005f7 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_rndis 0x09d307ae rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0f44b794 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1899060e rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2b60deb7 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2d40dbee rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x401b6419 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x49b8c0dd rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8b29e356 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9679523a rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9c3ed832 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb81d34e3 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbdf5ba59 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe474083f rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xea50c524 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf0c6421e rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00937a83 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x05c6a01e usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0c01d358 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e38517c usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4edcf445 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x52d16c2f usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c86daf7 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x66cbeb7f usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x690cfaff usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a7d07c0 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7ed5a6af usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8562eac4 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8931222c usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c578e08 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x93fc1489 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xab609e20 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac391a73 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb1fae8cb usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb98fde24 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbd41077c config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc2e61a45 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc7f89505 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc944f210 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcdd3140a usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd61471ff usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd6f50657 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd874147f unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xda44e799 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb65f672 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfdb6c6e0 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x10e9594e usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x43a9055a usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x474a62aa usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x795dbbc0 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7ef72888 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x81d54b2c usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x897f9a8e 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 0xa7a54949 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xab1621c6 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd797f765 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe0e9fbbb usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xeafb5778 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf6404bac usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3cc67398 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xc8342c63 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2998930a ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x403f1850 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5205581d usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x735c532d usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7d662811 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x823fa011 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9d94acb1 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc4b1007e usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd87ddb96 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 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xdea58ffe musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x1642a9a8 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x103da9c0 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1cce9f10 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x24840e6c usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x26854676 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2bafdd8f usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2e3ca9f3 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x602284b7 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x69a108b0 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x720f89fe usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x84d9d4c8 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8a6f1bba usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x995eedc5 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa07e394a usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xafc3b286 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbe63c90c usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc0ea631c usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc18cafde usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc5be6b28 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf0de4fed usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf4d0b43c usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf930964f usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfdfda3b3 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x15b86331 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x18e43ee2 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 0x1d0c4f51 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1f06ddc9 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2e395f20 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x31c091d8 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x329d2d02 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x406e5a6c usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x68bb7e95 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6de9f3cf usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7b1b6f87 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8fb8d978 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x94e2d3a0 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9b5ed45a usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa54096e3 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb011eef7 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb776d013 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbc8fb52e usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc46e5e63 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc4b8cb66 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcd797dd7 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf06ecc16 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf494263f usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf56ebfe6 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1c2c5eb5 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x21a2dfb1 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x240388e0 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x341f1806 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x702f5a03 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x92b7e61e usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa82cad3c usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbf43f845 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcd6e0513 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd4c948af dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf7afb60d usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf7b907a7 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0bd816f0 wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x10b120e7 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x122f15ac wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x50ddd2f0 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x55fe730e wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x83d20793 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xdb9637a8 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe67bd30d wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xea472353 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x00aae51b wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x055792ab __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0947fddb wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x15280d15 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2515542b wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6b8a17a8 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x79b18b24 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8c35b8d6 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9ea3d9f2 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa030d683 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xda7df0fd wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf2014299 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf8b2a101 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfef82775 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x62749847 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x9128ccac i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf192b0be i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x074c8bc3 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x678e383a umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x85841c34 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbf38e096 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xda4d1ad5 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe46aab46 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xed8b55f8 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf24fce3c umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0072273f __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x00a2171f uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x013933a7 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0390ca1f uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x05a814d3 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x065cc7ff 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 0x1393b123 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x13a82338 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x263688c1 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x26af8079 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x39331b35 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x437d2034 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x43a56268 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x44efc41f uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x499c4a6c uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4a3ca458 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5667b6b6 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x620fb624 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7096cf52 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x737ee13c uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7583b0f2 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7867894c uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x91bf5164 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa79db2bb uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaa44d5a8 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaf8efa10 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xba1923d5 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc5991301 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xccbf5e85 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdd392d68 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf5c2046 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe2d79d56 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe6f9c79f uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe923af0a uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9c949c2 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xea5f9b38 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf4a493da uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x7b0b279c whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1736e942 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x31a4d109 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x4d2290ed vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x8dbbe893 vfio_external_group_match_file +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 0x984bdfe2 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xbf1ba68c vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc2cfd4af vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xe6cb819d vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xe7434da5 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x017986f4 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0393b116 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a780993 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x11af648e vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ff893dc vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3940c9af vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x39e8cf83 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3eb7f87e vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x43bf72d3 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x536f817e vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5649fa50 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c467a5f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67269ce7 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c708ba6 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x788402f2 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7f7aaf6a vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x883d6d9a vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa69d8eae vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb81848d5 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb976a044 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbd4a24b6 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca1160e5 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde2f5f1c vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe15fd680 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe619eac6 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe6686c1c vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec4f33b6 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf09fd361 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf1989c71 vhost_add_used_and_signal +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 0x387bc260 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x615c5eff ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x68bbd23f ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x798749ff ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8663b28f ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8f375824 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd2d34b85 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1c31bc46 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1d063684 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2d45fbd2 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x2fe3f405 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3ccbd90c auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x46f0618d auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x82135813 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8b1fecfa auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xac885a9b auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbed78fd4 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xd8ff3cbc fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x235d3624 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xc754adab fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x153c5f32 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xafd5cf10 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 0xc191fb09 viafb_find_i2c_adapter +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 0x1713d9e4 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1869f527 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x23b7c47a w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2cc8d444 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x40ffc788 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9d703e25 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa05c7866 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa4a811de w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcb3bc5ac w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xdc5a7149 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x593325ea dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb13665fc 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 0xd61aa0e9 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 0x07cf24ba nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x362e670c nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4010eda2 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x7d15ea79 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc6aa9f6c lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xde19a19c nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe4496ae8 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x062bf995 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x063d0440 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x074c99ef nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x097f70b2 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b8a23dc nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10d63939 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x114bdb55 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11aab713 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b17ba8d nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c321dff nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d1825af nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d1eed72 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x215de4a4 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x236ba854 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23e8e3ff nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x242579bf nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26b96975 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2725a32f nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x290af960 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2db496ec nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e73cb9f nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2e850ca2 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3181cfa0 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33269ca8 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34da19d9 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37af9d8e nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3812f4da nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x395a72b2 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39b2d919 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b10e566 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bc597b8 nfs_getattr +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 0x403fa9c9 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4111923c nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f058f9 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43ec1139 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x44030c64 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x453be011 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x461ec1dc nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x471a22bd nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47485ce4 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x496a551f nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4eda1ac4 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5162cbcd nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54051578 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x562cbf31 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dccaefc nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ddddfaf nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e92990c nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61b88a74 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x621dfb16 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x625b5e82 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63e42e1c nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64a20fde nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64bd85e3 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65ef340e nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x678a5c13 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67f65c82 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c247c03 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x742d1ae4 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75e1775d nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78ff0c19 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x794ab7fb nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a6b8839 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cca2fcd nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f7d0a3e nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x837f09dc nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83e35e14 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84c2cf70 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84f08ac2 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86db6bdc alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8725ddbf nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b9212f2 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b95846c nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cb89515 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cd21cc4 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f4327eb nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90c66700 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x913bc8b2 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93fb020e nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95dda6bf nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9709a98d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c2109a5 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9e004432 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f62ce83 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1074843 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa6bc8582 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8cb0767 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa94cab28 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9844299 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabfad139 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacc30d93 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb06f6fa9 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1722f36 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb19ddadf nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4072423 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8068ac7 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba186a44 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe1603ad nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc19f81d7 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5d3408a nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9669228 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbccd711 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcefca9f1 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0e3662f nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd170051d nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd82ba5b1 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd86ce767 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8b66572 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9a584f3 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9cbe8b1 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda09340c nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde1ac61c nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf3ccb12 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe002badb nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe17345af nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe58b9728 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6df031a nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8de9abe nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf296b978 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf63ed3bc nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6593c61 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa65f708 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb93a436 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x3e1b69cd nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0014d24c nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02a2f0dc nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x069a7bd0 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0958472f nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0e4aac11 nfs4_delete_deviceid +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 0x1c083351 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1da592d7 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1eb5b3da pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x23e9cfa4 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2aa1c3d0 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d8c68d2 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x305621fb pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3282e4fa nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38984862 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42add9a3 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4bc8270e nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f8b90c3 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5112fec0 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x53f82445 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ab0563f pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60496aac nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x633103b4 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6520b3a7 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x674bd7ac pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b227ae5 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6dde79dd nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e034eda nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6fdbfa76 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74179dbf nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x757f193a pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78326b42 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x798b2da4 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d500a4b nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7def4b38 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8109123b nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8174f899 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8240b7a8 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8708e6cc pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x889dfb96 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ff69bc9 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97e2ba35 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x980716b6 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x99b221a5 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9aa99f58 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa693ae41 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaab48c55 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaba61235 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb21ff56a _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb8298d5c nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb932f4f7 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8ccd4f1 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb800a1b pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe9e08c23 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf55fd863 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf79b2b09 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa5952cf pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd87642c pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff001d88 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x46c7aa4a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6c4d7291 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf564adfd locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x84233644 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf5939c8d 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 0x3f475065 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x41e358c1 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 0x52b9da7c o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x54cfe2c2 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x71c65b70 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8f5b8455 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa18acc63 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 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 0x1798436d dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x303af665 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x484c1285 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x72e3e65b dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x765b9d16 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 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xefe9adc4 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x18823a58 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 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 0xccdcd8eb 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 fs/ocfs2/ocfs2_stackglue 0xe933602f 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 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 0x7ccd96c2 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x7fcdf9b3 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0x8b0e1d2f torture_shuffle_init +EXPORT_SYMBOL_GPL kernel/torture 0x9793deea 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 0xa9889808 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc51798bf 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 0x479b32eb lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xec7c0dc2 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x4fe74012 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x778da15a garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xdc755ce2 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xe17d6255 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xe7ae24a6 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xebb568cd garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x1c54bcb9 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x5ea4225e mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa47d6f67 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xaab501bc mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xbfdd6b87 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc6faf023 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x87c6d8c8 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x94e35d48 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x008c31ef p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0a0bc03b 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 0xc0a4c652 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0eeb48c1 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x225100bf l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x680d7e4c l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd84d7dad l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe6bcdd27 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xed58db52 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf8cdc5f1 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfc12cd7c bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0b3d20c8 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x52912b79 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x56af5085 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6788fbb5 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x71293929 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x855eea32 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x97271dcd br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdd720490 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x6ad18a35 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xf15730d4 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0597f0c3 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b00015f dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1e12d9b2 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2228a493 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2274c52a dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x27d68565 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28240348 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30504d36 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3386b94e dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f6c4daa dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4cdd391d dccp_feat_list_purge +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4db8a84f dccp_reqsk_init +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 0x53d845fc dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x667c5644 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a08e180 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b930dd3 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9dbcb6c6 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7521302 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa96f6929 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa98876d4 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad7508fe dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbf132c6 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd27a05b dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbfde91cf dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc18cb146 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc376c25c compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcb5d0b08 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcc857721 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd23c65ca dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd75563e6 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe56ca2f9 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5b8e351 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe68c347d dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2c1669c dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x176d8ba4 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x50d26723 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x58f4b3d2 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6dc56c51 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x99e10c9c dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xdfcb6a09 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x26ae1256 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x43640037 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf453710f ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xfd86d55b ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0x45afd6d2 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x6393b40e gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1145b92d inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9a5eb65c inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xab538d81 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb51822fc inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcb23a019 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe259d777 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x023878af gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x183506b2 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2bb938c5 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2eb02b41 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x64b1072c ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b42d09f ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7dc05edd ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8129b87a ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8cfc3f01 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa068612d ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa3952d95 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb4e8cd11 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbca9817f ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc4f782af __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdee5a0ea ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf65d213a ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x3d39cc44 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x10b03400 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 0x00eeaecc nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x438b7884 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa2e12931 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb1a59e4e nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb748c96f nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf851b0d2 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 0x9634a65e 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 0x09895a94 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x34abd4c3 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x350c7492 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb60bdd7c nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc312b45f nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xe600e3f6 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8e2d4fb6 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x987dfacf tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xcbedeece tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd297283b tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd5e5ce3c tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x4ec83cbb udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x78934778 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x798193a9 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe589d294 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x33d63856 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x34762319 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x463e005b ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6cea3b7e ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x977db6ea ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc6dc1d07 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfe89d903 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x1f3a72ad udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x3654a96c udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xc33f2d19 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x507a0ced 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 0xfec71a47 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xb6c9a357 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x062319e5 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8a8c2112 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa244cd8f nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc8506d5c nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf2c568ee 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 0xaf6575b4 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0d1909b4 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9705668e nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa59f4676 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xb85d0e58 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xdaf1f794 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x037dcce9 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0743b5af l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x21541917 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b1478c4 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x419a2b1a l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5a109177 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5eaf0af6 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x64f3670b l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69a72d2c l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6b365571 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa3700593 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd1f49630 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2f43fce l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe4658136 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe684cadf l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf197d7d7 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf454d23c l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x72b784c2 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x00e3ac72 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x03a9cc92 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x073ece62 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x08b9d686 ieee80211_iterate_active_interfaces_rtnl +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 0x47453c23 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6766946d ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x760d3b15 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7cd51bfc ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x822165b5 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x89101e8e ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x989b62e0 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd2472a2d wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde680e21 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xde6c7d7f ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe7411cad ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x03569113 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x500ba2b7 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa76b1904 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xcc760aff mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x29dd70ed ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2f8b591a ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397192d3 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x45cf3eab ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4a6a3d27 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x53e4082f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x578f7602 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6753892b 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 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8405f414 ip_set_nfnl_put +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 0xb139dc45 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc3d56556 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcaf62845 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd4ec1e77 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe7a6eb91 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf4204b40 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfa33c041 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x0bc75c6e ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x55dba9dd unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x60958cdf ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe94adfe7 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00dfc913 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02450176 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03e2d978 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c5076fe nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0db7fd14 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10d6898d __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13b3a64e __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x184c6048 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21439d5a nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21749e0c nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24bf27ca __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25214be5 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26cb54e1 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26e987d8 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29719a5d __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bf14af1 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32ec9805 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x387116e5 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3e66147c nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x41a185cb nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4280f148 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44698698 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47467856 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47516781 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47587d4b nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f574b38 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x587cccd9 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59323321 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59434e98 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64853126 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67ba7021 nf_ct_timeout_find_get_hook +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 0x71a6c958 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x733161ec nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7837f3a2 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79989f35 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7dd4a531 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e9c8906 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x81067e97 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x82d28aa8 nf_ct_expect_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 0x93c0cd9d nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x945f1f55 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96a166c6 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x978dbec4 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adc0423 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9bfef3df nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa79ede4d nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa770ce1 nf_conntrack_find_get +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 0xad5fa8f2 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaddc2fc1 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0e4f1d6 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb234a308 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4114691 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc133b6c nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe3d066f nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbe5429e6 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0280fbd nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1c33af7 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc67dee34 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc79010c3 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc7c7a91 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd854c73 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd98f881 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce752729 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3f10a34 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd6d21112 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd991928c nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe305e661 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe584d5d9 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8bd99ee nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeaa6bb1a nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec0dd42a seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec362ae8 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf41df30b nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf967f35b nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcac1851 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe119a5d nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe4a1813 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfeff8cb2 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x180f9848 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xe4f46cc8 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x1e7d67e9 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x248737f2 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3c8b78fc set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x74e1f238 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xab62e94c nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xca63486a nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd85c20d0 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe48b7de3 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe49256a9 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe56584e8 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf9c584e4 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xb29fa854 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x196f52e8 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4e4017b9 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa3437808 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdc52bfc3 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x4d0c3723 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa1f5c83e nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1b00b0a5 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x45822252 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6f156f84 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7788b3f3 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb722dfd8 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbf1a7cfa ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc02c2f04 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x9ff3b041 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x14744166 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x72926377 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x78128328 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x81846c46 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe3e19d01 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 0x0dc4031e nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x10867598 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1446cf02 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x16da2c85 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5c41c9a6 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x71b956d0 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd319d402 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf2fe7ceb nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf5cea9e3 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xc77395d8 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xd421bbac nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x04ba9772 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 0x9ec5f225 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 0x15479800 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x185715c6 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1db5647d nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x21eaea9a nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3dcf9a22 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5a9ded58 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6075085b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a4379f5 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7364abd0 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x75e4b9ac nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x88c09bd4 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x96223b41 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb9e87679 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc4c14297 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc964ac62 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd6c58dc0 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 0xeeb019cd nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3ede291d nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7dfb7080 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9e621ee1 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xab9caa2b nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd43f7b6d nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe2c7ebe7 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf3e8a0aa nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x6ddbb945 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x77447a1d nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb2f8091d nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xae9f7580 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x308fbfee nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xbbeeea3e nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe7be41b9 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3011e0fd nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3bf9ce0a nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5394c2b7 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7de9426f nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb1a4325c nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb9056648 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x39ac2e0d nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x8fdca062 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xdc698765 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x062f3ae6 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x54ef6fca 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 0x002b23f8 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0e72142c xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0ed2404b xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1da13c20 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29d0abd0 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x36ccbe4a xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3be57daa xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x407125d2 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e944719 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5c926fdc xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x624dc94c xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6a9d1de9 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 0x83ca1a97 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x94f26944 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xadb17eb7 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc543e768 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd6b524e3 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe927887e xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfb7f0a40 xt_table_unlock +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 0x8a1d68e9 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x92eb4a2c nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb0fedb79 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x400d3d8d nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x829f434f nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xbcec9b09 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x03ac1ec3 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2aca0d47 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2c14a773 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x312527c3 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4aa852b8 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6d32ce72 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7fc90c45 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe396f7b5 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe3e538ad ovs_vport_receive +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0e762ce7 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x222b8504 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2df1f81b rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x2f684866 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x31736198 rds_info_deregister_func +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 0x52b062a4 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x5f4e745d rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x5f9ba3b9 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x61b62a28 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x67d40ef2 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x6bd55d36 rds_conn_destroy +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 0x8915c605 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x8c74fbfd rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x8cc8cb35 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x989717a0 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xa3b17c59 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc2c7ac2d rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc5bbd3d2 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xc7ac3b99 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xcd4db4f9 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd650bf80 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xdaae2fb0 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xdac849d3 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xbc30e89a rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xec111dd7 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 0x0375af10 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x0e9cfabb 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 0xa5f59df8 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 0x00cff4af xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01fe0ecf xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0312f340 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0359b8f6 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045c9f8a rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04699512 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05208d08 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b3bdd8 rpc_d_lookup_sb +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 0x080b6c74 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08eba7e2 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09a7b246 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b1877ab svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c0dac24 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e1440a3 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e162d5e auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ef4d367 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f35d812 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10d33074 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13331267 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13600d78 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x13bcb2b9 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15152334 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1787da4f rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17b5a8e6 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17bf43ed xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19d046e4 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a8b2c4f rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b105e0d sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c5070fb cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d9833b9 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e307374 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20be081e rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21c88a4a rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21df0e1f _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2276f867 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29b706ac svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ad55432 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b5f888a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b6bde21 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c52a5be rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d3ef4b9 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dc22451 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eb95915 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 0x327bdd85 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33c399c1 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33d83c0b xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x344607bf rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36734c2d xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x399af884 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a684cdd xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aa77fab csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b260927 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c24e5f9 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e6346bf rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fe994a9 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x418e28da rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42095e89 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4250d28a svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43bbee13 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4787eef7 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4971b874 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ad79fd7 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cab3cbc xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d37be8b rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dcb305a svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4decdd3a gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x500ea5dd cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50e222d6 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5210d24a xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52c1586f svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x565ecee6 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56732bac xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56fc8fe8 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x589a3831 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a5a125e rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a78ea2d xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a9130f3 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ca202fb xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d36b482 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d8e9994 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61b476ab rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63dab23f xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63fdfd10 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6448d555 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x644bdec1 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64dd8692 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65a3df91 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65c4d173 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6723d170 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a72f509 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b4f0bdb rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b826dea rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bdd3fb2 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e4fe533 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f5e21fc rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x742f5541 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x762d52ab rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78cbcfb5 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79e67b37 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aeee0d6 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b8e707c put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b9382db rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c4bbce0 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eb00818 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ef454a5 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fa431f0 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x814d13a8 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82424c79 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82b875a5 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83b30373 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84a4f57f cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85a8696c rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x865d350f rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x898450af auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a05c540 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a5fb368 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e3ce9b7 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f899a67 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91e29ee3 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91fbdead rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9289d63d xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x957685d3 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96f118bd xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98384b14 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9921f1d8 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99269f51 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99f13b00 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa076f9cf svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1b67b4f svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa274c5fe xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa374e8b7 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5c21681 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa705064 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaae34f8 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac3c4b97 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad676ce1 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad677c1c rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadaf5549 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0342290 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1b70c31 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb23a589b sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2456d46 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4008b64 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5563b21 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8e3edb6 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba5b515f xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb69019a svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbba0e39b svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe205e3f xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf22f338 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc041f22e svc_prepare_thread +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 0xc45680f0 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcaf8c66b svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc4873b4 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0175a50 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd28b6d82 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd54db6f0 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd58cf460 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6eab386 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7ea2dc6 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde518e66 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdeff62f7 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe273fbf4 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe543f0a4 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe69ddc69 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe707cdf3 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe71ad87d xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7ddc1ac rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec1e0cd8 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecc013c8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed0cb9c1 rpcauth_create +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 0xef553965 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef788242 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0275a0e rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf157043d xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1ea5655 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf22781e4 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf488184c rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5e0db2a rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf799cc04 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7ec55f5 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf926eea0 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9798339 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9fe7cdf svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfabe1484 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbf77032 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbfedb1d rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc1cd55c rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc3cf54f rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc7a5199 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc9393a2 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfff50d39 rpc_unlink +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01ec4385 vsock_stream_has_space +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 0x5214e2dc vsock_stream_has_data +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 0x8fbfc71a vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a62f5da vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa7ec092b __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa98c9edf vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xab190690 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xace040e7 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc7e7cfb2 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd2c486d3 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdefdaec9 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe1907b3b vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb1819da __vsock_create +EXPORT_SYMBOL_GPL net/wimax/wimax 0x370ee651 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x384a1488 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4f48cdd1 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5adec14f wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6c9fe0bf wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7d716025 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8743a9f8 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x95e2d929 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9d130d91 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc861b9d3 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcc8946d0 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xce744cd8 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd67ac177 wimax_msg_data +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x166c355f cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x28a5ab86 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3bb0c654 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3cba6649 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5790aa1c cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x67f6e786 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x942efcff cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x96b69dbf cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9d0fbe9c cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa406ff4e cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xca84edcd cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xda6031d0 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xeed4f84d 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 0x155c24d3 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3a6148c9 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc6bfccf2 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf6ee7cbf ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0xa8216b61 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x36e214c1 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xdca737c8 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x0c5fd51d snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x3d3cd0bb snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x3e333484 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x63f2e60b snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x6985d987 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xb05199e4 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xb48c791c snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x544adc78 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xc6bf1456 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xff3ee687 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 0x0fe4dd4e snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x17f9d084 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1d24cfe3 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6d95dba7 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x902b1c87 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x990d67d3 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9da8ef0f _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 0xd3086c34 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe2b5452b snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x14ffe58c snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x24e75b42 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x26a980e7 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x51a58569 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5d991b17 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x76659fba snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x88300aee snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa5fe3727 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbc091a2f snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xde28ff5a snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfcee2aec snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x480aa58f amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x6dc35fd5 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8e83a524 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xadc1830e amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe381bc2b amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xebd1e6e7 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf3c45680 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0e42fca4 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x16295f37 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1c9c065f snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2681203a snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2c314625 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2c4b5dc2 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x39f99325 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3b908b9e snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3d579282 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3de8af64 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x44b7f208 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x57f04e8e snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5b026ec2 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5c52e683 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x60420c3d snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x632ce398 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6cb83fc9 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x784c3987 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9be5f1b6 snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9fc2c6a3 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa458e734 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xac54d6b3 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb63a3816 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc665ec33 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc6739582 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc6895270 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcccf4b42 snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd4af0091 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdbd534df snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe5a1673c snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe7b2147e snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf0318c4b snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x014165a8 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x050029c4 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x055197e4 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05e5c5a7 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c32ef2b snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c333927 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cd43c46 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19e018fd snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1aee5718 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d777e93 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f14fcc0 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23eb2242 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23efc1b1 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x248dbcea snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c1b9e4e snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ddfea8c snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38b38e75 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38d82d7a snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b752578 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3bc5eec3 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3e73d812 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4042406e snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x413a79f9 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4165f85d snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x41ed144b snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44310f4d snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x483c2eec snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4997bdf5 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x500ffaef snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51e963f4 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53adf0f2 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5433d7eb snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5451ac17 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57bf00c9 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5aa241f2 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cd457af snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63c7972c snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6a19d186 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ae64b2d snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b4e73bb snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6dcfd4ad snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70bc2376 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70d49917 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 0x74d51633 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ce17819 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83682eb9 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84685bb8 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x871b1a13 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x876de9db snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9181c175 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 0x9bf8a361 snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa126f12f snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5db2355 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaa9095f7 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac78bb59 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac8694a9 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad2e9dcb snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb047015c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb37178f4 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb374f8c5 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb84e38ce snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbb6fcd1 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf2eceac snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc518fcc7 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc57c8d36 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc991dd11 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd734af45 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd868e108 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8f17d17 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda6a7041 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5138668 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8ad4457 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xede8a591 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0cb03f0 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf40861b7 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb99e94d snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe8ceff2 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x25983014 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x53db6677 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6a3fc1e2 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb856d249 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc835d56d snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xeca36bf7 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01298236 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0174cc41 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x024e8547 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x03cfb7fe snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04c2834e azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0648356d snd_hda_sync_vmaster_hook +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 0x073c8520 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0803e71a snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0832d8f2 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x08593492 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09fe246a snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a7c4c04 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ac52b75 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c4034cd azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d67231d azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x115b7244 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x122c4304 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13c2c8e0 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14d0ac99 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c05bd94 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c474413 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e94b6c7 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x205bbecc snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27e853b7 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b1f3d0b snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d27708a snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d3addca snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f7bc93a snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30301194 snd_hda_jack_poll_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 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a2304ab snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d73b18e snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40370dd5 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40e83bd4 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41b0fcfd snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x442139f7 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45723505 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x458dd4f3 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x463f66d4 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x481185d6 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4850524d snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cd3854f snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fb614f8 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50dc4698 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x527d386d query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5407633c snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x56bdbdc9 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b1c0162 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5bde17c9 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e860fb3 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x606506cf snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x623df18c snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x643a3386 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64a4649b __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66f1927a snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67784129 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67f4b262 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6932dffe __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69b96e50 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a1da256 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f466d5a snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71dd9f75 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x724d54e6 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c10020a snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82410041 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x898765e9 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a8ac9c6 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8af1b6a1 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b456101 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bac6495 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bd66a5f azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f7b3f61 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9535b624 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99bd044a snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99f0b37b snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a845932 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d0b80f8 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e09f4e4 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1c5066c snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa24935fe snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2fd3111 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5e96c53 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7673fc0 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa866cce5 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8d04ef8 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa0234c7 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa1c97f2 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb1388a3f snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba62f120 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbba3eddc snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcd59563 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2a31f16 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3b471bc snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc70fd87a snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb78de22 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcce00ad5 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce07ec09 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf448147 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf7715d6 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0ca0f5b snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd209a1d4 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5acdca9 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7f89b48 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdcf05361 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe30b1594 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe37fa511 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe55bdb38 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe78457d9 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebfc56f8 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xecb90f33 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeea6d86 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef22138d snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf03bda1a azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1d3e881 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2716523 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf55146ba snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf5fc9d81 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6d48746 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf710419b snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf81bcf96 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf878b2cc snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb33900f snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe376cba azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff61aa6d snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff7bcbef snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x164a0f4b snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x270af42c snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3965524d snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x46624597 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4f1f10b3 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x54ddb459 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x580c24bc snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5ef1e2f6 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x60396633 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x61aae154 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6bd21c72 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6cb61952 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 0x7a95fe58 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7c25e2c5 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7c9c7b5e snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x80866931 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 0xe777caf1 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xec55b467 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xedcac83f snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf7c986d1 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfea085cc snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x16e85a32 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x228dc598 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x0658edb5 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x661473af cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x497aab70 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xb8a89f8c cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xc58bfd12 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc9514eb2 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xfe3c618e es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xa575328d max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x5c122ac7 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x725d3478 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8cf950e5 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x938f78a3 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 0xbad785e7 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xd02c4e41 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x47fe66ff rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xd65484ce rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x1ba0e618 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x670f6ef0 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xd6004dd8 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xe8d2278c rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x02c78f6c sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x50f4418e sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x861efe52 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xd0f9274e sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xdc6eb987 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xbf48f290 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x84aaee8e ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xadbba33b ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x2fa339d0 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x51125033 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x1aadc816 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x26eba23c wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb109c16b wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbf21a35e wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xce3af0eb wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x697f2e6c wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x43d1ee8d wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x778ebeb4 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x9dc3f950 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 0x606ff886 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x80827b76 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x5f5273d2 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x795391d7 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x8df8ab4e sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x8fe9ecab intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xa3f62209 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 0x162bff10 sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x5524bcf4 sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xa6b963fc sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xce1fbd43 sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xdc799a8e sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x023bbbc2 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x09ff87ca sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0ba9a4d5 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x13f182af sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x179539f8 sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1a089cba sst_dsp_boot +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 0x1f8f94fe sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x21a7f2df sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x27e88e76 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2c6999e9 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2de7cfb5 sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3a621fed sst_module_runtime_get_from_id +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 0x4d66d8de sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x54a11e57 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x56296f55 sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x573cc464 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x57bc98e8 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x583a7ea7 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5a916cdf sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5ad3add2 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x629f7f00 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x65132696 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x654c38f9 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6e1f5c1d sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7212c122 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7fb0e21f sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8040c81b sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x829f4710 sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x843bd92f sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x84da361b sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8946e739 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8c562d4c sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x980c85a3 sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x98e63a37 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa3ee2b48 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa439a7ff sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa5a55a28 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa764e326 sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb149bdaf sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb1905add sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb1e89ba1 sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb5489101 sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xba194a6a sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xba86b71a sst_dsp_wake +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 0xc1cd8fc5 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc309db20 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc368b78b sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc9385e1d sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcdc84403 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcf505907 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd36b071f sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd6046c58 sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd8de6960 sst_dsp_dma_get_channel +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 0xdc4ac6f7 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe7937aaf sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe7ff6a21 sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xef5faad8 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf879ab91 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfad7491b sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfe5fb1e5 sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0aa0726e sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x15cb2758 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x311b7692 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x3dcd7a32 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x637ab40d sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x6e465013 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf6242890 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x23bce4c6 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x3399cb15 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 0x1b69ca38 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x307f570f skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x353d21bc skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x4643204f skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x58cd8233 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x5c4b4b32 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x5cd19f4e skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x78caa023 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x7e0062bf skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x861ec2c2 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x9c7be003 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb0df3169 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xcf8f0720 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xed03ecbe skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xfa0f9f48 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00144e99 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00d3c52d snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03316771 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x049f86a3 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05ea2c2c soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0645210c snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x064c98e8 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06fff89c snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a72bf48 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a76af9e snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b7f4557 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d848b0f snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e3cf2bf snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f06e0dd snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ff04a9f snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x115b3eff snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11d8f3f4 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x120f4a2d snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x12106543 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15b27a83 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x15ecd4a4 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17a34d85 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b1475bb snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fa8b6e5 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1faf1f06 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21855745 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22a53140 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22ec1de5 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23e5ee21 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x274b3fde snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27e1c4c7 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a8b055a snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2aed47bb snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c32c260 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c5ddd6d snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2de2aab0 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2e56d491 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30ebde7f snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31178ca6 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3142d74e snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3541bac2 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x354a093b snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35f28a55 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x36a1f26e snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x382d18a8 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38ef97b8 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3913dedb snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39bdf210 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f129d3e snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x400352bf snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4311de27 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43a3217a devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4a1f841b snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b5bddf0 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4da02b86 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f9c82a3 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53ce0057 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5434d60a snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5500f40f snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56f9845a dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x577324bf dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a2d23e8 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d082ada snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63a11e09 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x658102a8 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69898066 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c77ee46 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e244a3b snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x701fdeaf snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x702236df snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71dfe460 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7226b4dd snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x751a1ac9 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75fa8cd1 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x773a0854 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x785dc5f3 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7885dc73 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79a41467 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79f92e83 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ade7220 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bb75d26 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c0a9106 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c404566 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f24f363 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x809863ab snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81dc9357 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x81dd70c4 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83b146ef snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83ea3fb6 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8555b9f3 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85bba6d7 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88c7c098 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a5ac929 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c9abaf4 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d138e3c snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dbf63e2 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x936d97da snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93fa8115 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96db14fe snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x970161f5 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9844ac1f snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9937aa90 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x996eb9b4 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9be004df devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa02cda6b snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1238b5e snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1d1d34e snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1eed9a9 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2d31bcc snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa42d4bb0 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa485d6e2 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa615d41a snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa669b97e snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa67d697e snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7078f26 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf3e9be9 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb001226b snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0a05be3 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2364f20 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3d43bee snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb43b4ef8 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb77281f6 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7f0044c snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcce8504 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd093d41 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc062613e snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc14fbe7b snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5be1ced snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc6819d5f dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8f28a5a snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcded87a3 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd158a47e snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3f930c6 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd67b6d16 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd814d6fd snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9b8374b snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda38bb86 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd36842a snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde2e3bb3 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdfa03f7a snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe095873d snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe14a8a7c snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1a3a9a4 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2e3da78 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe75080b8 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef3553f3 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf05ed207 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf175a49f snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3472650 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5b820eb snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf69f38ee devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd6a550e snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd75abdc snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff16a0e9 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1e9b0529 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 0x21cc6f2e line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7bb64920 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7e148761 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 0x98bd097b line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9b1fee57 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9bbc9f4d line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa6b59005 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xae44763a line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb6598f67 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc0060235 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc96c92a0 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdfbbf12d line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe8d89656 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe581a01 line6_write_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 0x0e96daf2 rsi_deregister_bt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1ab12a59 ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x3cdd9c1c rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x42ef78a4 rsi_hci_recv_pkt +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 0x4ca618d9 rsi_send_rfmode_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x7bac1402 ven_rsi_read_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x94762f28 rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x9ec92c52 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x9f0035ea rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa9eb46e2 rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc424ca46 rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc44aad8f ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc81573d0 rsi_hci_attach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xcacb7901 rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xf37b4bb9 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 0x000636c9 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x000e982d regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x0012d406 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x001f0d70 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x002ebdd8 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0042473e __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x004b4791 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x0066ccb2 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0082bd42 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00bbecc7 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0x00c98f82 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x00db3c18 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x00e2fc80 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ef5d3c devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0112f1de xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0140ca2b ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x01439b23 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0175bbdc regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x01767dd5 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x017b4061 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01c8682a spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e42d27 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x020021ef ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x02090cda ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x0224178c ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x02282235 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x023a157b ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x02460556 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x0267ddb9 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x026e1a98 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x02a2029b ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x02caf4e0 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x02d7f601 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x02e550d6 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0307cd88 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0320b990 get_device +EXPORT_SYMBOL_GPL vmlinux 0x03333fbb unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033e0162 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03709276 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x037fa26f wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x0381b6f8 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x038fe158 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x042a3ecf usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x04495cbf sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04714d1b sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049488b3 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +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 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x05049af5 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x054b409d subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05691882 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x0569cbd3 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x05781926 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058d44e6 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x059140bc component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x05a54017 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x05b7231d devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x05beb0c8 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x05c73603 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x05dfefe2 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x05f2c24e regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x063eef25 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06641bb9 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x069173c4 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x06af7591 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x070af1f5 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x073533b4 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x074dcc1a acpi_pci_find_root +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 0x079788b8 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x079fdb37 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x07b0e831 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b6e1c7 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x07d2b5de vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x07d2cecb regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x07e56a4a usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x07e5cf62 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x07e81db3 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x07f64cf4 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x07ff0f92 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x080bc5a8 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08359766 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x08453256 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x085a78ed crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x08653e5c pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x086ff8ab pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x0876f7eb rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08a0bae1 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08c293a5 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x08e63a03 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x09184207 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092686ba virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x09269cb6 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x092ed4ea ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x093606a1 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09457d8c ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x09491aee netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x095a8bc2 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x0968c4a4 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x097976e2 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x09848efc dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x098b6b38 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x0990e884 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x09998397 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x09c45228 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x09ceb733 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x09dbef27 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x09f997df regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0a3518f3 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x0a3fa525 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a5c8869 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0a911dff cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x0a9e808f cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x0aa55f45 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x0aa85d68 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x0ad385b8 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x0ad54506 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ad84da0 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0af841d7 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b08b32e sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x0b19df3c ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x0b2eb31c pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x0b30eb4e disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b5f620a __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x0b75ced0 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x0b8f4e0c nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x0ba24095 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x0bb7ef58 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x0bf274d0 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x0bf2f5f8 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c016196 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c1cf402 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c2f7553 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c326054 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x0c441717 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x0c475187 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x0c4f1276 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x0c6bd674 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x0c6fd94a kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c83154c restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0c94aee6 klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce20782 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x0cecc83d iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x0cf559de regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x0d24e4f7 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x0d277866 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x0d3c293f ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x0d4942f8 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d528fd2 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0d567091 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x0d58570d dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0d60bb02 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x0d6f02f4 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x0d7d08e5 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d8a8c17 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0d9d2eb5 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0dad2b6c shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x0db36e0e usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0deb657b mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x0df209d9 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e0c5784 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e2e1109 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x0e3e3e3b usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x0e5ebd97 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x0e805bce md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ea99db5 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x0eac111e input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x0ec58c80 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0efdb7d8 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f0d6fad rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0f21b486 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f2e5d0c pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f579b3b to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x0f74b3b0 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f99142a clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fa64a89 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0facaefd pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0fb62516 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fd25f78 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0fe1afe2 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0fe622e6 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10490e98 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x105ebe47 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x106629dc __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x10894ece pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x108d9790 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x10a08a8b __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x10be41b9 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x10c6dce2 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x110694e3 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x11398c86 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x114c9442 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x11699979 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x11ba4833 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11e94be7 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x1209f975 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x12125f89 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x12171da4 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122cf23f mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12a2e100 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x12a47a3c iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x12b90ef2 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x12be8ab9 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x12c8c5ff xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x12cc97be clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x12ecfb32 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12f193e8 blk_queue_bypass_start +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 0x131c8a44 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1324e582 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x13363154 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x1345c436 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x138554b3 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x139cc3a1 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x13a6baac usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x13a84122 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13adb08b simple_attr_read +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 0x13decdc8 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x13f3c1d7 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x140f0373 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x1415498a tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x14162194 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x143d9145 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x144f2dff find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x1466726c __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x1467c3c9 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x1469871c __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x146dc236 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x14734421 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x147a65ae mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x147f2444 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1493a9e1 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x14aa03c3 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x14c953e3 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x14eebaa5 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x14f743c2 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x153b1d2c iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x153bd427 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158b9d39 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x161cdfe8 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x162fda10 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165af965 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x16699c8e irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x16a4512f devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x16c75fb5 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x16d30c09 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x1700126f rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x170a5d20 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x1717ae5f mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x173edf0d napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x174488fe serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x17587bdf pm_relax +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 0x179bbcbe blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x17aadf20 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x17cbdc24 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x17e4f9ef bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x17eb45ce __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +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 0x188b1147 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x18b26ee5 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x18b36253 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x18c1f315 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x18dcc4a4 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x18f0167f gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x18f51d4e ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x1900db6f acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x190bfd54 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x192109b8 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x19310103 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x1937c8d3 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x196b661b iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x197e7a00 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x199ae7a1 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19c11d33 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19f25735 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19ff6208 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x1a11f542 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x1a2e8792 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x1a40c0b2 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x1a55a6e3 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x1a7e1949 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1accdb6b pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad5cd10 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x1af56152 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x1af7989e ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1b0512ee of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1b08ebca xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x1b14ffae transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b38b43e irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1b5a5647 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x1b63d6a4 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x1b7a3bc2 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc8fe2c inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1c10c757 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x1c29b0ed sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x1c4b4991 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x1c4f61e9 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x1c5310d1 blkcipher_aead_walk_virt_block +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 0x1c6b2442 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x1c6bad2a intel_svm_bind_mm +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 0x1c977f7f device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x1cb5af7a blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x1cbbc2ff irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x1cc4dc58 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1cc712b6 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1cdc94af extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x1ce2d24d bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x1cec3faf nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1cf0f57e driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1d0ed0cd sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d286250 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d597444 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1d6610df devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x1d6bba14 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d79b95f scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d9da957 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x1d9f6877 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x1db82d51 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1dbd5994 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x1dcf7a03 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e31b319 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x1e57d08b clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e665f7a kernel_kobj +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 0x1e992fb2 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x1e9b8f09 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x1e9db610 blkcg_policy_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 0x1ec36074 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1f00c45b virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x1f062816 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f1e5260 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x1f2fce4c debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x1f48566f __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f985ffb blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x1fa8d02c ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x1fadd7af perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1fdc63a5 xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x1fe2e0ca ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x1fe4c827 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1fece4bb ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x1ff03c4d vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x1ff4e0ba put_pid +EXPORT_SYMBOL_GPL vmlinux 0x1ff7539f bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x201232a6 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x20229433 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x202a49d4 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2048f1d8 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x206f13d3 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x207109c6 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x20795b35 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x207bdaaf splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20873b9b cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20a46af5 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20b7642d rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x20d3f6c3 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x20e2d2af thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x210e7e7a rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x212b9f0a regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2149835e devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x2189011f pci_create_slot +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 0x21d838f8 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x21ee1c96 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x22778c73 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2298e2be spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22a1f9f1 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x22aa340f clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x22ad14d9 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x22bc38aa devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x22eafbd8 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x22ff3970 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2319f1be crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x2323c3e6 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x232e71dc clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x233001f5 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x235679a5 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x236ea2fd kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x237a8f0a device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239ba076 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x23acfbb7 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x23bc00f0 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x23bd77c6 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x23c3c33a ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x240d0ce8 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x2420d8fa wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24803c40 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24d444d0 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x24de0f55 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x24e61a0e regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f2a7f5 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x25004e89 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2529f045 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm +EXPORT_SYMBOL_GPL vmlinux 0x25365460 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253887f5 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x2576717e usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x25a3da71 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x25c9dbff fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x25d700b8 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0x25ed5290 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x25ee6b44 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +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 0x26594f2e usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26797734 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x26845a91 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x26a36f81 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26b7ba12 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x26bd13bb da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x26c572b9 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26f0afd4 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x270d1588 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2716d6c4 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x274069b8 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x275a60ef __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x2764b3f9 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27b34e47 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x27b4ee44 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x27b589d5 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x27b6c512 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27c80e10 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x27e511ed tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x27e88795 reservation_object_test_signaled_rcu +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 0x28443496 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x2846ee49 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x28710c7f sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x287e62c4 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x28922ee6 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x2899b1cd acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x2899cc1d crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x289faa1a cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x28c7caef scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x28de2dcf pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x28e3ca7a rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28ea7000 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x28fb0960 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x29054430 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x29118257 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x293fb11b gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x294c0b60 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x2950a79e xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x2964fd76 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x29832f6b led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29c10e23 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x29c52233 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x29c5b9ff blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x29ccc21c flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x29df3c03 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a08fe01 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x2a317673 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x2a3d667e iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x2a4011b5 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x2a45fcc9 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x2a61dfd4 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6d740d pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x2a91b262 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x2a96c613 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2a9d739a pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x2aa5cba2 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x2ab20702 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2af99e4f class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2b0145 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x2b50b130 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x2b6ce9b6 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x2b8ca063 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ba857e7 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2bb1aa22 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2bb44584 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x2bb5aa29 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x2bda2243 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c1a9f29 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c22ddaf driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2c2330cf sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2c2be2ee adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4b3ba0 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x2c5b4a99 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x2c7d66ae da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2cc475c6 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2cdd957f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x2ce6a701 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2d071bfa pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d09c2a5 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d439948 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x2d48b99d sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d613a0c wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x2d697a86 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x2d7db281 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2d85bd7e dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2da4a581 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x2db0b69f thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2db3c6bd ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x2dcee90a acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x2dfe6226 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x2e02e938 dma_get_any_slave_channel +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 0x2e355604 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x2e3ad596 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x2e48988c pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x2e715138 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e776f3c usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x2e89669c preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e8f42c4 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x2ead876e usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x2eaf34c2 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec653ab serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x2f011d01 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f11c533 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f62409b acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6b8bff unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2f7d84f3 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f84ab87 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x2fb1d657 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +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 0x308271b2 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x308b9e14 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x30973eab yield_to +EXPORT_SYMBOL_GPL vmlinux 0x309c9162 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x30ba744e ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x30c269fd regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x30c5ea10 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30e43a3d crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x310131a8 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3102bad8 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x3114d083 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x3120bb36 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3140353e __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x31968bfd crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x31999b42 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31c88960 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x31e290d1 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x3218553f cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x321bd16f regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3245c863 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3267e4ba dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32930a5b security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x329e8273 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x32a01da3 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bc90b0 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e0bdf2 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32f79a7f verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x330a6939 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x33308b3a class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x33353d24 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x3355c8cc bsg_unregister_queue +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 0x3367b218 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x337f4af9 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x3396bc6b skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x3398367e ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33cc6bd2 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x33dd8e71 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x33dd9f92 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x33e67cab fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x33ea1df0 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x3422e71a mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x34447a58 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x34671836 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x34690661 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x348f417e pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34b3e703 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x34e072e4 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x34e45c16 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x3502bbe9 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x352d4c6a scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x356419c4 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x356a2bcc tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x356cfb5c register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x356e0efc xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x35701a1d dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x3579cc2f xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x3590c321 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x359dcdf8 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x35a1c4c7 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x35bcc2a2 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x35be1dd3 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35c1c3a9 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x35d20e0e wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x35d7657b pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3614dd85 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x361c6146 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3630fb1e md_run +EXPORT_SYMBOL_GPL vmlinux 0x3657b19f pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x3690a6ae fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x3697f56c rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c32771 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x36cf63df fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x36d31d4c __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x36d40e17 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36db5c11 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x36f7ad2a devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3704595a attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x370e9126 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x3711728e usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x3711e0f5 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x371bbf2a __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x372483d2 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x375b9e18 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x37aec563 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x37b0bb83 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x37b40b8c dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x37c254cc ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x37c447e5 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x37c93286 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x37d57d65 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x380a334f raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x380fb2ae gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x384d2df8 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x38546576 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x3856fe3c regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38855410 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x38b0b666 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38cbd02d rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x38d07552 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x38d738a2 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x38dd363d extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ff5c2d fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39048588 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x39107211 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x3939dc71 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x39692a75 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x398dc2fa register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x399a5525 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x39b107a2 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x39b37cb3 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x39b4adff kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x39b82ce4 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39dc9928 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a00d831 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x3a1c6207 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a28eff9 xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3a38dc65 memory_failure +EXPORT_SYMBOL_GPL vmlinux 0x3a3c7887 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a47db8c bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a51453b rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5640d8 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a870825 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3a9e706a skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x3aafdb02 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3ad2c258 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x3af27461 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x3b08c6ff __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x3b405ceb pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x3b4f2c95 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b57503d devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3b584d38 mmput +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b96f73e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x3bb192c3 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3be94a6f xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3c09602f ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x3c517107 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x3c5e9cc7 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x3c6b8232 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9ae19f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x3ca25174 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x3ca9a739 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3caebe9e pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3cc0c98d do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd96aae bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x3cf9122f dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x3cfd5d72 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3d15e460 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x3d167003 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d4c187b devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3d585b1d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d8adccb regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dae4003 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x3db31d98 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x3dba4799 xenbus_dev_error +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 0x3dd9fd95 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df5ca3e ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e0276ea blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x3e19846e pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x3e21a171 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e4e45c9 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e678eda dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eb2357c da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x3ec04d39 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x3ed6c26d blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3edf783e virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x3ef0e5ed __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f173aee unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f48e9ad swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x3f57e0c5 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x3f757cc9 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f9c02f9 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x3fa1e037 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fa8173c fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3fb1ed9e fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x3fcdeedb fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x3fceeb39 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x3fef0cd0 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x400fdd68 get_net_ns_by_fd +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 0x405d8925 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406a0e1a dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x406c422b clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x40865c20 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x408d81cd rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x4091064e fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b4f1ba clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x40b53420 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d7a0e6 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x40e92d04 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x40ec6fca trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40fa8998 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x41186a24 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x411f9d74 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x417304f1 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x41896089 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x41c8a523 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x41cc4337 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d916d0 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x41dcd97f class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x41f74014 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x4201ef53 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x42242f8b irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x422e0925 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x423f5f0f tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x424978a1 dma_buf_vunmap +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 0x426ab49c user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x426d5305 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x42773212 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x427d5c68 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x427ef9c3 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428fbc6f extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x42bb8d80 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x42d01e57 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x42ebcd74 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x42fcc73c ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x43054fcb pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x432669af transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x432e532f task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x432ecbf9 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4332c6ed crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436d5307 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x436d84a8 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x437d5153 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x4383684c regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x438fcba8 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43be6b76 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x43c4ae8a list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x43c595b2 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d49d9f iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x43da41ee usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x43dd4bfd powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x43f1bef7 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x44085acd gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449cfd46 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cadf4b metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x44d9ece1 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x4500a463 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45346210 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4548b7d8 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x455a5a8a sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x456d36ac blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x45738ea7 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458ca1ec kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x459bdeb5 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x45a96e10 bpf_prog_destroy +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 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x4629460c rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x463c650e reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x464eba4f rtc_irq_set_freq +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 0x46e6f16b dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x46ee4579 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x470bb117 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x470bdd0d __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x4720dfcc ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47276dc9 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x47376b17 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4737ee5f devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x47394c2d cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x475aa21d rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47623bad i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47892d7a pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x478d8094 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c4838b dma_buf_end_cpu_access +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 0x4816944c ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x48336460 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4838f995 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x484f8229 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x485f5574 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x48736f8e virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48cc5bf1 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x48f04e65 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x48f5b573 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x48f8d9d0 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x4903774b tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x491791a0 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x4920f779 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x495dc131 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x4981525b usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49b80289 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x49c87855 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x49d2abcc dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x49dec617 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x49e4eb33 pv_info +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f50730 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x4a1ce47f user_read +EXPORT_SYMBOL_GPL vmlinux 0x4a2d1f87 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x4a3777b7 crypto_find_alg +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 0x4a531818 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4a5bc214 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x4a7606c3 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x4a796232 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4a97d10b tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x4a9d57c4 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4aa5f2f5 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ad609ce __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4af542ee rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x4afc56a1 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b07b1a9 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x4b0a4a91 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x4b33958e ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x4b36a4a1 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x4b55e286 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x4b58d779 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x4b6a3865 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x4b931f32 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x4b9f8f9b platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x4ba0a408 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x4bc90a7c pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x4be36d8b dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x4c013de4 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x4c37d999 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4c681734 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c814eaa rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4cf4f187 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x4cf6315d perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0a97b8 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x4d1c1971 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x4d3167bd bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x4d3e122e find_module +EXPORT_SYMBOL_GPL vmlinux 0x4d70fea6 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x4d73ec2d fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x4da0de5e pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x4ddf1ef0 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de53cd1 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x4deb097d usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e4a2870 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e597c59 pm_runtime_enable +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 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4ec0a4b0 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4edf6bde __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x4ef4360b __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef65cb5 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f0d0ff1 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x4f1a6596 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f34be2d thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f808a3f component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x4f89bc17 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x4f89fd01 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff1f513 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x4ff9fe13 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x50173aad pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x5018898e __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x50319c1a iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x505b9d93 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x505d980b xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x507f69dc device_del +EXPORT_SYMBOL_GPL vmlinux 0x50845d1b iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50c9de85 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50e263c6 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x50e39b92 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x512ff001 pwmchip_remove +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 0x5155902a crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x51580e76 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x516ae3f5 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x517d5af4 ata_cable_unknown +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 0x519e2e53 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x51a6d25d handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x51b0ab90 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x51e2406e powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x51ed6434 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x51f95bb1 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x521173e2 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x5224fdca thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x522b4a0c devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x524fe804 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5257222e usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5275554a subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x529332ec wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x529ccf88 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a828ae extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x52d246f9 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x52d4ea13 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52fbd02e device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x52fc5e0c wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5310613d gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x531faf50 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x532b48ad da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x533b60e8 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x53473106 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53698227 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x5383ea85 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x538a1815 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x539174cb ping_err +EXPORT_SYMBOL_GPL vmlinux 0x5392919a dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53a4a1cf devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x53b56a17 acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x53c777e1 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x53d030e4 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x53d207ff phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x53f98854 skb_zerocopy +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 0x5424660a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5427cebd __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x545b6ee5 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x545ee955 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546416d9 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549cf45d crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x54a4fd4f wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x550e8238 component_add +EXPORT_SYMBOL_GPL vmlinux 0x55101d6a key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x55134c76 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x5517f856 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x5527e9fd fat_scan +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 0x5566ac3c rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5585ab04 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x55889548 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x5593d715 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x559fe202 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x55a44c56 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x55b35f45 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55fff1c0 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x560166b4 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x561d1910 wm8350_reg_unlock +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 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56720f44 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x5672cd11 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x5676b7b2 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x5690a1f2 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56b46c61 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d6bc2e do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f9d96f ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572c093f thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x5745d6c2 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5753e7f4 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x575a26ce pci_msi_mask_irq +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 0x57b0c3dc cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x57bfb64a xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57eff6e3 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x582e3bf2 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x58313c12 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5840234d ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x584096c2 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x586098d9 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x5878f056 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x587e5110 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5896984c each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58e578b9 device_add +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x591068f9 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5919da92 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x592b0c46 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x594a73fc pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x594a7eb5 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5968d5cf usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x5970029d phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x59818edc pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5991e21e pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x59ae847f nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x59b0882b md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59d4021e device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x59e239ef virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f4083e digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x5a0aad37 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x5a26a2ba iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a310e48 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x5a3b4251 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ae135a7 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b264bcb regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5bac281b mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x5bad5da3 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x5bb6d1ca acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd1e0ad usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5be348de inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x5bf1f6e0 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x5bf778a6 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x5c05f8b7 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c42b3f7 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x5c479a88 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x5c4bf28f ping_close +EXPORT_SYMBOL_GPL vmlinux 0x5c4f6693 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c73e45b spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5c994e3b device_reset +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cae8509 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x5cbc2f44 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x5cc19491 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc8f70f _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x5cdfcf74 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x5ce17053 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d18de54 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x5d2b7fba ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d509ba3 klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d83bcad wm5110_patch +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 0x5ddbfd41 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x5e20d148 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x5e2bcc26 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x5e33c6ad crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x5e36efeb serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x5e3aa492 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x5e46c77e usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e706ec0 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x5e7c39fb crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5e7c9f49 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5eb3cc08 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x5ebc265e serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x5ec76420 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x5ee01429 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x5f04a6b8 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x5f15fbe5 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f27d387 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x5f2a0f94 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f3f94f7 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5f4cff5e thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5f50f99f i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x5f6c7d21 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x5f7824e4 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5f93afc1 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x5f9b3233 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x5fa90ed9 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5fe907b7 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x60038912 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x604c7cec mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60536f19 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x6055b7e0 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x605e6d01 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x606cd391 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x608e7fbb crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x60924ced regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a903d7 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x60c24e13 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60e17d21 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x60e51b7d device_attach +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x6102139d inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x61031d94 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6137d6b2 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x61691add pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x618cc3bf da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x61a59ad0 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x61b21e78 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x61b6d0ef sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x61c50a66 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x622eb2ae init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x622eb65d crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x624e4393 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x62501770 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x625e8621 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x6286d2d9 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x628ca4b0 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62c85e78 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x62c9776b relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x62fdf0d3 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x62fe0cd2 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6320e5ce shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x632e0cd5 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x6333072c gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x6336e767 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x63442d46 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x6344c512 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x63512480 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x635b57db irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x635dc08b phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x63a04f57 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x63ac8718 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x63d12ccd dm_accept_partial_bio +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 0x6405c38f xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64114fd1 device_create +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643ccdc9 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64464e1c pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x6448cfa2 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x6482fa4b __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64e09372 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x65166cb7 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x65233dde wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x653aa33c skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x6540cde3 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x6576b59a fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x6591030c scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x6594cfc0 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x659fb89f blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x65a582a4 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x65aad73a sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x65b05b3a ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x65b48b12 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65ba7300 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c6552e device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d05182 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x65e065fe devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x65e3a0fd __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x65e8f10c ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662cf3da virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x666fb777 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x66793850 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669cb6c7 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cf28d2 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x66d0d550 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x66d7171f eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66f1fe6e irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x67052018 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x671819b6 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x672028ee virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x67257b95 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x672ca247 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x674e2074 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x675e9411 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x677a8b37 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x678b4ee0 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a92f5c xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x67a99f8f sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x67ac2dec ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x67b32a84 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x67bdca62 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x67d5ffc6 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x67df201a gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x67fa64cb tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x6808186b usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x6809b69b unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x681e4262 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x6825f26f serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x682c529c dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x683682e3 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x68377bbb acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x684e3ae0 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x6858e685 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x685b3073 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x687c62e1 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x689d6497 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x68ce5066 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x68d2fe7b swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x68f04fe3 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x68f83858 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693f4051 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x694736b1 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x695222c3 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x69767894 devm_regmap_field_free +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 0x69afe2f3 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x69c39a6b tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x69c92710 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1de0c3 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x6a38ecb3 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a634b12 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6a66aaee __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a6e3f32 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x6a720ab7 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x6a74fba6 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x6a7e8940 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8fa8af bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6ab34a6b wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6abd4aa7 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6acef96f fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x6af6dde3 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x6b0a34f8 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b118b9e extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b45872a pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x6b500f1c usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b85583a cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x6ba62ae3 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x6babe89b rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x6bc795e2 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x6bd68260 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6bf89e7a regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c104de0 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c26b29b ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x6c2a10c5 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x6c2be5cc ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x6c3871b3 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c51ad73 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x6c6283e8 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c6d463f agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x6c740900 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c9965ec tcp_ca_openreq_child +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 0x6d04bc14 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x6d232686 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x6d2508b5 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d51b6d3 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x6d64513c irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x6d6e3bf0 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x6d970fdf scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6d9a5c64 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x6dc515e4 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e26a59d pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6e367309 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e3b8c54 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6e4c2c31 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x6e4f51ef trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x6e57a836 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e70eb87 pci_generic_config_read +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 0x6ea26498 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x6ea4c01c acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6ec2498b debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6ecaadc7 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x6ed326b6 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6edc2e09 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x6ee29484 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x6ee629f2 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x6efd97f0 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6f0a97ee inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x6f0ecadf handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x6f15c605 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f2a3cd6 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x6f2cb461 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x6f3b8f02 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f6cbc0a trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x6f72016e crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fa1ed46 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x6fa743b3 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x6fa807b5 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x6faf5d46 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x6fb033ef fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x6fcb30be devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6fd5b7b0 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7005df1f cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x703be1b4 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x703e2363 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x70422e5f cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x7061ae90 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x70712c3a device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x7071f853 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70a4368c iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c56b03 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d71645 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x70d8df37 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x7101d994 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7121844b gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x714d4dc7 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7164abd8 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x717e724e __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x71824ae9 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x71825fdd devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x7188645b handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71ce3926 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x722223ef devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x72257a2e fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x722ab516 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x72326499 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7239301f ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x723acfae regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x724d1171 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x72527f62 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7279fd42 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x72b2c7b6 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x72c1cc15 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72d6407a tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x72d839bc usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x72e2188a pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x72f11e18 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x732ec191 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x7346b639 klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0x735544f3 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x736acf86 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x736d26bf __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x737c5a5c get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x738eeed7 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73afb372 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x73c00777 ohci_setup +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 0x73e2484c bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74413939 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7444cda9 usb_remove_phy +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 0x74660b14 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x7469e55d acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x74703d5a device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x7476716e usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x7488ad53 regulator_is_enabled +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 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 0x74d380bc devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74e1e775 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x74f25bdf extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7509b9c0 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x75153ce9 crypto_larval_kill +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 0x752d5fe7 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7572ab1e subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x757b805b virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x7584fdb5 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x758af04b ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x75a73b1e devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x75badbf1 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75cf8f15 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x75e3fdf4 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x75e92a3f pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x760c8c12 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x76437689 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x765835db acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76aad031 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x76b32d98 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x76cb0fff regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x76cc4bf4 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x76d4afbf virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x76d9626d mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76ee7e98 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7728f2e0 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x773f0274 mmc_regulator_get_supply +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 0x775e34d2 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x77624701 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77fc9bca rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x782c52b8 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x78324240 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x78419860 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x7853ffcc request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78629b10 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x789286bb usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b84969 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78f27a2b ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x79381d7f platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796a7a15 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x797679e0 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x797a97d3 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x79880681 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x798e6107 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7991881b i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79995e97 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x799b36fe led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x79d81015 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e07925 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79ebb18f devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x7a01f13e gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a2e429a sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a5abe3c fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7a7f5b0f device_register +EXPORT_SYMBOL_GPL vmlinux 0x7a85e496 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x7a8cb918 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x7a8eb1a3 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7af25ec2 xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x7b0b17f0 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d106b phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b2dafc8 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7b601c2f tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b76e2a3 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x7b783439 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x7b7f28b8 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7ba80353 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x7bb17430 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x7bbf9ebc invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x7bd0cca2 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x7bdcac90 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7bf08151 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c07cbca scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x7c1254a6 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c67b01e regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7c6fdc6a rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x7c85a375 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x7c872a6c ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca0df3d generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x7ca8f587 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x7cb53920 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x7ccf8119 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7cdd651b ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x7ce3bc2d gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x7ce470a4 arizona_clk32k_enable +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 0x7d125d3b spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x7d2b8899 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7d2baf9d phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7d4015f3 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d84fbfc xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x7d8cb023 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc1aa8d ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7dcdc93f __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x7dd45445 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7e10cc79 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e17b8c0 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x7e3b9dc1 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7e45b1a7 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7e52f4f5 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x7e552d5e sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7e575586 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e8917e9 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e9eaf8c rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7eb5120f pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x7eb7dbd3 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7ebf73e4 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x7ec94144 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7edff09c pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7ee5f420 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x7f07bbf2 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f0aa313 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7f0e8cfd ata_host_start +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 0x7f36e324 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x7f3bee1f pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7f3e4e50 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x7f5f53f9 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7f6b28f4 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x7f77cd0e fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fa4cb3d srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7fab2327 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7fabddb8 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x7fba47c7 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x800ecb87 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x801194c8 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x80175594 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x803246e6 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x803272a4 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x8035425e led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x804c6d71 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x807cb0f1 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x808b2915 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x80995a86 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x80ac4b72 pm_generic_freeze_late +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 0x80fe3991 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x810383cf wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x81068383 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x810beb4f cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x81259e64 bd_unlink_disk_holder +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 0x8170c9d2 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x817ccfd6 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x81a75961 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x81bdfe99 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x81c9639b gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x81ce7726 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x81fa874a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x82426766 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x827b888e tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x82880309 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82e829cd con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x82f9b342 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x82fefaf9 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8307bf20 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x83677a2b dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b117ee gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83ea790c pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x8408005a dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x84177d2e preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x84180105 tpm2_probe +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 0x845c4992 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84a34935 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84d1b7be unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x84eaba11 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84f0ea8d phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x850613a6 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x8506baa8 clk_unregister_gate +EXPORT_SYMBOL_GPL vmlinux 0x850df8b9 clk_divider_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x851be720 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x859999ee extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x85a75d27 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cb2c45 xen_has_pv_devices +EXPORT_SYMBOL_GPL vmlinux 0x85cd7f10 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x85d7edfd hpet_set_periodic_freq +EXPORT_SYMBOL_GPL vmlinux 0x85e75ebd devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x86065772 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861c7300 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x862a13cd reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x864f320e scsi_get_vpd_page +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 0x8670f18b irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x8677dd20 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867db62c pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x867f656f gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x86846fcd ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868e4842 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86ba47ba pci_sriov_get_totalvfs +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 0x86f992e4 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x87083100 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x8711a363 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x87132874 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x871f4e4f spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x8725d0fd io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x87274de1 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x8727946a regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x872bdb84 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x87381fb2 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x874ab6ea mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x876b47ff usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x8784fad4 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x878bf037 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x878cf924 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x87ab3de0 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x87f2048e crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x880265c5 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8814da67 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x881b6d92 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x881c1511 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x8829cb11 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8877a5de fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x887f1fb7 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x889834ea iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8899b7e5 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88cc0068 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x88e9c4e3 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x89076f0c ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8926c354 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8933ac25 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8941f978 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89558f58 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x896546f3 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x896b27e1 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x89751683 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x897631db efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x897a263e uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x897ed4a8 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x899532cd blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c54750 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x89ea5fda blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x8a1f321b efivar_entry_get +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 0x8a6108b8 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x8a65f2c6 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a8129de blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x8a9ef7f7 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8aee534b ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b117dcf rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b19c348 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8b2de753 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8bd2dcca max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8bf71569 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8c00b253 spi_register_master +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 0x8c0cbb8a phy_init +EXPORT_SYMBOL_GPL vmlinux 0x8c1a0c69 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x8c356a31 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x8c46964f blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x8c5ea76a devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c6b6c56 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x8c6c39ae pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c854767 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x8c97434f inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8ca6576f tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cc8cf33 crypto_register_algs +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 0x8cffc095 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2f8465 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x8d4d1ee6 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x8d5d4852 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x8d5e3be0 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x8d644e7b crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8d6afbec usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x8d77a47c apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8d7c0e42 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x8d9af002 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8db134d1 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x8db315fd pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x8dc09f94 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x8e0b0d24 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8e9bad32 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x8ea22d94 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x8eb1c27e irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x8ebe2978 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x8ecf393c wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8ed22b6e xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0d3865 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x8f2856a4 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x8f3cecac devres_add +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f7905ea shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x8f821c77 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8f838c05 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x8f860a98 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8f9b63c7 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x8f9debfc device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x8fa8e565 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8fc2f7eb crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x8fc99af1 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8fd9e412 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x8fee4eee exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8ff6ca6b netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x903b0f79 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x9060d637 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90658dbd pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x90739e35 ata_dummy_port_ops +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 0x90ead6e8 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x90f583f3 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x90f816ec vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x913dec58 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x91679352 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9170df5d crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x9185fca8 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91eca5a0 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921151d6 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x922f062a sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x922ff6b3 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925c5fe6 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x925f88ee extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9273028d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x92c7ef94 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x92cc0f09 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92dc00ad wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x92f00aa5 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x930ec420 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x933e2b43 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x933ea1ec nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x93442897 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x935af1d3 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x936d29b9 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x936e9da7 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9395350a blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x939c6c8e sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x93b0cfa7 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x93b3569d ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x93b4a04a perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x93cfb8eb __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x93db600b dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x93e6caf1 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x94131fb4 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942a4da0 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9445b5b6 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x94503952 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9450a31f irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x94648c33 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94960d6d pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94a5fb7d posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x94b1ec17 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x94b47d66 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x94b6e8d6 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94cf7d6b pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x951899fc spi_write_then_read +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 0x9566fc38 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x956e92ed cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x956fe02f device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x9571498f sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x958d45c1 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959351f8 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x95af3a13 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95d8223e device_rename +EXPORT_SYMBOL_GPL vmlinux 0x95e28885 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x95e5d5bf __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x95f0ac75 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x960cc9bc regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9611e412 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9622e692 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x9630fb04 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x9633df26 class_dev_iter_next +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 0x9658abea ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x96626387 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x96765d1f max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x96bb90fa iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x96c2685b unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x96c44c53 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96f4bacd napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x96fad435 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x971388a1 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x97156faa platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9773444b single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x9780f0d1 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x979ac42b xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x97a5c398 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e13028 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x97f34fb8 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x98163314 da9052_disable_irq +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 0x985d59ed fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x986561ff xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x9867d6e7 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9888433c __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x9890e079 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x989912d6 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x98cfeaf6 dequeue_signal +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 0x99220c71 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9924b824 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99370254 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x99575f16 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99625a9c irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x99661f59 ata_scsi_unlock_native_capacity +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 0x99a25dad palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b21568 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x99b4e7bb crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x99ba37d1 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99d275f1 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x99d54faa ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x99dfb77c rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x99dffa4f device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x99e223b2 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a4b4d8b wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9a7515a9 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a862f09 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aaf4e1e ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9add6b5b acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af380ae device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9af50123 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x9b0049a1 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x9b167f4e ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x9b3b8f93 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x9b40147a sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b4be52c __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x9b4f7e98 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b86793e sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x9b936230 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x9b9bea3a pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bade41a ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x9bc632f7 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bd6b0aa debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9bdba4f5 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x9be402c8 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf83c50 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x9c0843c1 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x9c093d7c xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c26d63c xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x9c2de449 memory_add_physaddr_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c39ab79 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c753bca da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x9c7ed0e0 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x9c8a3359 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x9c8b67d3 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x9ca64b4e class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9ca6cb0d ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x9cac9d37 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x9cb9e89f tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x9cbdabf8 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x9cc118d0 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x9cc121d4 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cddad0a pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d1b412b blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x9d20262c ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d6db042 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x9d95188a mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x9da50e47 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x9dad8539 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dd683b1 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x9dd9bf27 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x9e05499a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9e18c3b9 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x9e1e9210 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9e27d948 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x9e319f3d crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e664111 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x9e6a291c __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9eef1c39 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x9efd094f efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x9f001415 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x9f06fea7 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x9f2a7063 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9f56da6d usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x9f59db62 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x9f7ab32b pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x9f91cbb7 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9f92af83 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x9faa56ad crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa0299eed usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xa02bac86 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xa04192d0 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xa041ee0a pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xa0481c6f cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa04beb38 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa057ec6a trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xa0dbb80b trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xa0e62975 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xa0e68d57 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory +EXPORT_SYMBOL_GPL vmlinux 0xa0f35495 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xa0f41062 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa103ac94 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa111868e raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa11e00a0 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xa11ff885 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xa12fef87 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa149a3a5 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15dfd8d ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1a54a6c cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0xa1b205ea ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xa1e4c810 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa220854a ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xa243d045 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa2628b33 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa26da41c power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa26e8a9e regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xa270e027 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2b9fbfc ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c8bde5 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xa2d790f4 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xa2d988fb get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xa2f38dfc device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xa319aefe pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xa3522a16 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +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 0xa391e16e tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bd9843 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xa3db0071 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xa3dce449 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa430dccc inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xa431ee1c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xa436d655 ata_bmdma_port_ops +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 0xa4568764 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xa45fbea8 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa47336ac ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xa47bb427 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa48f5836 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa4acf617 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xa4b0a428 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xa4b88c73 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa4fffc6a device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xa519bc6d thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xa520e173 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xa5234b7b regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xa5285dcd sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xa546e726 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xa566dcc7 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xa5719fe0 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xa572cbc6 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xa5ab2372 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa5eee6f6 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa61339f4 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa64db99f pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xa64eda8b agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa66f8bf2 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6d2badf sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xa6d654bb find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e5f559 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xa6ec2415 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xa6f2a188 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa704d40e ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xa7065e4a register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xa71377a4 input_class +EXPORT_SYMBOL_GPL vmlinux 0xa75390f1 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xa7773158 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xa7bb01b3 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7c75d6b devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xa7cb6716 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xa7da9df5 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa7f22bad gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa7fbad57 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xa7fe5404 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa80f6d14 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xa825cd3d ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xa83e0e77 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xa83ff1a4 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85c3c59 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xa86a5734 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xa875aa50 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xa87d02a6 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa8873aca ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xa89aba15 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xa8a37249 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa8b04274 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8b8dcfd input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xa8cd14cd relay_open +EXPORT_SYMBOL_GPL vmlinux 0xa8d03b8d pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa8dd753e fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa8ec9229 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xa8ff3adc blkcg_activate_policy +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 0xa9312c72 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa938647d inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xa95ed1dc __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xa980aba1 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xa9810cfe pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xa981a954 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xa9bf08c3 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e46638 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xa9ec9a73 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xa9f4a964 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xaa21c97b platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xaa273400 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xaa729f0d inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xaa7b02e6 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xaa7bf85f blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xaa8b8fd8 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xaaa0a22e platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +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 0xab4f89c8 input_ff_create +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 0xab9068eb get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabf558b7 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xac303f28 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xac479fe9 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xac4c56d9 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xac5bdb3f phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xac65a1f8 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xac6c2132 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xac72b3ca power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xac95717d regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xaca88a40 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb064ee subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xacb30bfa rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xacb483d2 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xacbbbd65 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xacd6cd00 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad0daa28 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xad4d6139 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xad5013e1 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xad6fd9c2 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xad7d01eb input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xad820e27 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xadaa299b __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xadc7370f tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf312b4 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xadf5d29a platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae319dfe bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xae3dd276 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xae3e11c3 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xae4e1a44 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae4ff552 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xae5aa6f9 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xae68ed4a blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6b7599 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae71c49a ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae887f64 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xaeba36bc pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xaedcca28 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xaf372146 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xaf5505f4 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xaf81388b pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xafc2f58e regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xafcc0a29 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xafd0053f event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xafd4d091 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xafd56f8e wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xafea9779 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xafed4391 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xaff60a6f put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb02168f4 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02ed845 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xb032c2e3 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb067ffe6 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb09be79e crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0b8bc59 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0c274c3 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb1011b35 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xb11f8bb4 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xb12df17f acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xb13b8cde __netpoll_cleanup +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 0xb16f32d6 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb17731f6 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xb183d6b7 pinctrl_utils_dt_free_map +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 0xb1aefb91 get_device_system_crosststamp +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 0xb1cdf2eb lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb1dba957 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f098fb devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb231f8ee sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xb2397699 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xb24435ff get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb26c61e9 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb2948354 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xb29ba09e trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xb2aed20f sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2e90d92 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb35603d0 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xb36affe4 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xb3735ad1 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xb38b9cc3 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xb3986106 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xb3a58d3a ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xb3b71264 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xb3c2aa6c driver_find +EXPORT_SYMBOL_GPL vmlinux 0xb3d2fc59 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xb3f18d21 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb43d4538 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb46fb96d cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xb4712ea6 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb48ada4d put_device +EXPORT_SYMBOL_GPL vmlinux 0xb4b55b92 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c3ae1f cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb502412d pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xb518b990 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb51b2ed9 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53180e3 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5471495 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xb56fdfd6 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb5763ec2 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xb57eae4b ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xb581e750 ata_acpi_stm +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 0xb5b20fd6 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xb5ee4676 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb61476a7 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6279955 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xb639c7a0 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xb6423c10 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xb64a598c tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xb662a222 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb667cafc ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b2f919 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f28ba4 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xb6ffa3b2 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xb6ffb030 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb710ae6a adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb720bd7f blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xb72564eb debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb732c66b dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb74e921e l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb7547f14 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb75f459b regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xb76f2853 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xb78724d0 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xb7acad53 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb8004774 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb8064f05 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xb811e9c0 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xb8152574 acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb82eded4 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xb8422ba0 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb8439cbb crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xb8478640 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xb854a5fb ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xb87c6058 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xb87ea2f5 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8bae3fa clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb94c144d rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xb95f727e crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xb965fcdb blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xb97de192 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xb993fa2f perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xb995dcfe seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9ba378b fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c73fa6 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xba228897 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3859a7 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xba4284d7 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xba4aae3b serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xba583148 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xba91385f crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xba9aa3a0 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac6c1f9 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbada8e01 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xbadf4ba9 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb09b744 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb28e5f2 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb74e6f3 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xbb7be13d vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xbb7c05d1 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbba37796 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xbbb4b63a pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbbda54d pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xbbcf68c3 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbdc0a08 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xbbf0b130 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbbfa6206 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbbfc1150 device_move +EXPORT_SYMBOL_GPL vmlinux 0xbbfe0399 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbc17de54 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xbc25e073 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc51e8e6 user_update +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc7a46c4 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc8981f3 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xbca41ecf ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb2d236 br_fdb_test_addr_hook +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 0xbcdd63a6 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xbcfa802f rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xbd3610b1 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xbd37adeb md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd65244e da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd741811 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xbd7f64b5 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbd92df0f kick_process +EXPORT_SYMBOL_GPL vmlinux 0xbd98ab27 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xbdc1836a crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xbdce4f1f acpi_subsys_resume_early +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 0xbddf1c1d irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xbde35cc6 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xbdec43e2 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xbe12e558 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe25a060 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xbe2a5327 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe347291 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xbe5491ee lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe64accc aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6bc89a rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xbe81ee6d pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xbe8e24d6 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbe931db2 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb317e2 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xbebbc7e3 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec7d01c __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbeff7061 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf05c234 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf2559ba fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xbf510af0 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xbf5f56b9 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbf6c34e8 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xbf70c548 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbf89d87f devm_regulator_bulk_get +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 0xbfd81140 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xbfdf33ed ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xbfe282d7 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xbfff0e40 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc04f3c63 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xc05cf537 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc09d5b36 tty_ldisc_flush +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 0xc0ee60a8 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc12b5d2e rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc160204d rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc1677931 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xc1688eb4 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1951bf9 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xc196eb80 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc1ea6669 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc20da03d __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xc216e5f1 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xc217183a debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2520fa2 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc276d00e sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xc27fc78d irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2b04a5c pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0xc2e40658 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xc33fe16e gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xc3403408 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xc340e821 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34dfce1 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc358815a gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc38f5fa9 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3a31ddd unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc3a743b5 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xc3b29522 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xc3c908c0 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xc3d8dfd7 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xc40761c7 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xc41c3017 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4472986 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc450498a tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46d56b1 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4b1b525 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc4e212a2 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5171980 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc5575dd2 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575bdfa of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57cb967 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc58ab18a blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xc591c919 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xc5bd2cbe nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e084f4 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xc5e20e1d devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5ede7fd blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xc6034ff8 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc635dbe4 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc6380b5e usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc642cd41 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc65872fe i2c_new_dummy +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 0xc66e3195 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xc673e878 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xc677aec9 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xc68e690f pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +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 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70dcd09 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc70f47f2 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xc715823f regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xc7193d3d inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7303fab perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xc75648ce debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xc7845d60 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xc78aa7c4 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xc794f9e7 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc7976576 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7c8fd8f l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc815857e xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc82ccb10 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc84052ce pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xc85d848d dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e487a sched_clock_idle_sleep_event +EXPORT_SYMBOL_GPL vmlinux 0xc888f337 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xc8949285 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xc8a5f489 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xc8a61029 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8bc12a4 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xc8bf1aaf kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc90d8764 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc92010b9 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xc92b1754 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc933e1c2 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xc94cedbe led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9608d49 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode +EXPORT_SYMBOL_GPL vmlinux 0xc98b9f7b acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xc9930bdc register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9d0c7b7 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc9d1c1b8 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xc9d1e9e1 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xc9e972bc blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc9ebec52 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ef49b7 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc9f350ec unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xca02bd47 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xca385623 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xca3a1580 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xca4a7f63 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xca5b31ec attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca812780 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xcab6eca9 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcadab303 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xcadec0f7 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xcaef748c platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xcafac3b4 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1e199d tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xcb2b3f4d ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xcb2be9e8 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4bad22 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb57f019 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xcb779c3c usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb8d6ad3 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xcba69122 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xcbad348d devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xcbc90a98 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbfdd86a xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xcc85f3bb sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8f2125 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xcc9b3cd3 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xccad3692 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xccbfde6d ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcce50a1f usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xcd1f2663 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd6ef7be blkg_prfill_rwstat +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 0xcda53b5d sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xcda56da0 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xcdb05012 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xcdb2b7f9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xcdb4c70d shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdba0096 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd7a5bc dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcddc6949 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcdede5a2 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xcdf84d9b swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xce0b104b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce1e9f24 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xce3b666c devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xce465f33 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6cca7f default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce76edc6 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xce84d8f1 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xce876f17 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xce8801c4 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xce8f0478 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xce9b686b crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xcea7bc9b rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcf26b652 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf6f1647 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xcf7079bd acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xcf71d01c __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xcf7aaca0 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xcf8f6d66 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xcf92bc3b dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcfa799cd ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xcfaf532a input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfecceeb dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xcff8eb16 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xd000495b usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xd00fb2b3 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xd02cada3 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xd02e6653 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd063b9e1 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0811bfa get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xd082bf64 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xd094f6b2 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xd09decb1 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xd0b4b137 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c8f0c3 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xd0c9fc7e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xd0e2ed27 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xd0e51eb3 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd0e5d9cc xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd0ff0f61 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xd105d27a msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xd10f8cb5 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xd13634c9 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xd13a6242 dma_buf_vmap +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 0xd166a022 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1747246 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xd1792063 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xd17fbe05 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xd17fc1ae gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xd18314cb regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xd1835033 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd19fab18 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd1ad3204 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xd1e20678 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xd1ed7a4b split_page +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2163d8e trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd23a6d46 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd254e1c3 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd266b47c usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xd26a11de crypto_alloc_aead +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 0xd2975462 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2cc15e0 device_dma_supported +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 0xd2fc8ab4 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xd2fe431a usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd308f84d wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xd30ea876 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xd33961fa sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xd3635532 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd3722c3c of_css +EXPORT_SYMBOL_GPL vmlinux 0xd3726f1d sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xd3aab6fa put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3e3933a platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4042660 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd40da8d4 component_del +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42d7aa7 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xd43335df ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xd43b955e sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44b76ce __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xd44e02f1 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd45b385e dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd466cc35 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xd4a62be2 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4e38670 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd518b827 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xd52fd6bd usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xd53eb937 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd5442b21 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd581381b acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xd5a13a45 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd5a175a9 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd5ae7fee PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xd5b12901 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60ee95e mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xd6293b48 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd65744e5 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xd66ffc4a crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xd6731e02 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd695d417 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xd6bf4a2d __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd6c07521 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6d14a63 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6efdc2b usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd722716b blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd7634df1 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd763e9c6 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd7746b14 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7875a6e skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xd791b5fd acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xd7a1fb60 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xd7ca13a0 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xd7cf8930 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7d1fd08 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xd7d6c958 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd80a0328 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd81154a1 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd8557659 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd8632792 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87f04e2 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd881eef6 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd8857972 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xd8b80279 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xd8c4108a skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xd90a5b78 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd91a4c50 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +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 0xd95626d2 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9738cc7 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd9769ebb regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd989d907 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xd99b7295 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd9abb595 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f8534f dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd9f8d65a serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xda04358c debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xda0ca1e6 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xda13bf89 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xda2395c7 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xda2b7bd7 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xda2e27f0 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xda2edfd8 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xda3f7cc7 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xda683e6c subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdadf39d1 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xdae5056d crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xdae5e86d debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf1dc60 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb1d4326 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb2d272d ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb4583e3 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xdb59b66d xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb672ab0 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xdb7ff8b0 device_property_read_string_array +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 0xdbae0c3f regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xdbafc9f3 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xdbb40358 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xdbc1d45b pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbda0c14 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfee83f uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xdc02055b rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc0953b7 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc224ee5 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc7a2b7f scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc839277 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xdc916fcb udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb3ba95 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xdcc6a704 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xdcd7cbb1 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xdce0dc75 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xdd0d180c crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xdd149231 pm_generic_poweroff_noirq +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 0xdd3a5af1 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xdd5646c2 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd5f5a8e rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xdd74c675 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xdd89bc90 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xddb30a46 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xddbd8969 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc5c4cd md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdddaa4da single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xde09e17f xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xde181b34 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xde267d6e skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xde27fffc devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xde3dd92b __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde6e6a44 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xde791ac5 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdea25ffc arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xdeb20f60 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xdee37823 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdf04956c class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdf0e3468 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf172d96 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1a2f89 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xdf23a099 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xdf4959c2 dma_buf_begin_cpu_access +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 0xdf7d58c6 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xdf943b3e sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xdf97f1fc pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xdf9a3a4d __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xdf9a4aeb tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xdfc5d58f mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdfe4b8a2 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xdff03578 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xdffbb41b add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xe0032a33 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xe006eee5 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe021eed9 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe077ed32 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xe0804d49 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe08ba4b2 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xe08f82db ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xe09a813d led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xe0a498cd pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0a95dd8 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xe0ac8c10 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b54f8d devm_devfreq_event_add_edev +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 0xe0e8b0e6 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe107f640 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe10efc12 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xe118218b dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xe125c4f0 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe135bb8e devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xe13fe18d pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xe16f27de pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1a51f08 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xe1a537e0 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xe1a8fe70 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xe1ba60fa regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1ce2c79 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe1d1fc84 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xe1f1f309 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xe211c682 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xe2496745 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xe260c97f usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xe274478f add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xe27498d7 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xe27d75e4 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe2827d95 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe28b4bab ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe29349dc copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xe295c0ff is_hpet_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe29f8702 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe2c5a9e3 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe2cb97c7 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xe2d57f45 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xe2fb708e tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3694fca bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xe3848b79 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xe38abaa5 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe38f9c7a sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe3b1fc31 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3c01c6e sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xe3ea459e shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe4045ff7 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe41488b6 crypto_get_default_null_skcipher +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 0xe43c0d66 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe48f76c8 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4c0a0b3 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe50bf9aa devres_release +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe518e900 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe5398c51 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe542a419 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe5586ef7 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xe55cbc7d rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xe57e1751 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe580664e xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58a2321 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe624b745 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xe638d426 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65cc810 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe69a422b dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xe69a4a74 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6cdf62d ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f7a81d ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe702b9f7 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xe7042872 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74f2d56 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe74fc204 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xe7683a5f usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76a6674 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7b3164a rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xe7c31b60 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xe7d04f69 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe7e06787 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xe7f230c1 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe808e4e6 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe81ba8fe ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xe82b82fc pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xe834ad0d pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xe83d4759 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe83e554d perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xe848b2a8 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xe848fc62 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8752f24 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe87a186f clk_register +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8e02fe3 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xe8e406e7 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe8fb3102 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe8fdc2d4 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xe90f650d watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe9243f9c cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94a99fa shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xe9772698 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe991cadf i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xe9ba6842 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d802d5 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xe9e73ad8 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xe9fea276 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xea0d3355 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1f06f7 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xea1faed9 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xea25cfb0 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea733dfb clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xea796a63 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xea881b5f crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeae46631 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xeb0828b6 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xeb0b4788 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xeb17ffec device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xeb2f8c34 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xeb3656b3 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb4608a6 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xeb4edd33 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xeb5f4dd4 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xeb66e550 crypto_default_rng +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 0xeb845037 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xeb8ca5bd iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xebb31bf0 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xebdc8ef3 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf3e079 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xebf6198e alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xebfae162 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xec0abc6e noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xec0b2553 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec1c0713 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xec22af06 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2731ad dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xec2edcbd bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xec3b3963 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xec4bb1b5 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xec4f9959 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xec5fbf8e ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec6a6a7f security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xec6c41e3 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xec834430 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xec8363ce regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xecb20b9c mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xecc2064c nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xeced40c5 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xed10ff88 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xed243843 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xed3e96d3 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xed65d2cb spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xed692277 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xed81652e usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xeda1379b ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedc09e46 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xedc46142 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedd84a0e power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xee077d34 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xee0e03f0 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xee12ab4f console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee151a9f ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xee1d0ce7 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xee41ef1a rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xee676107 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xee698725 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee76baaa debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xeeb5d3a1 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xeec45afa sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xeedbcace hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeee3fde6 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xeeed6b0f inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xeef33fbe skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xef0d510b usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xef18365c device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef2c36a9 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xef4ab02e irq_set_chained_handler_and_data +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 0xef987cb5 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefcfe0cd device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xefe0af80 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xefeefdbe inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf0095253 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xf0138df1 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xf02d4262 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf082e0dc arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf1138754 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xf121d7b4 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xf12e153f pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xf13a659f __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf15a1de3 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xf172c3d9 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1955c97 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf19609bc dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xf1a0a063 usb_alloc_streams +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 0xf1df20a6 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xf1ed181d skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf220cc26 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xf23d1f8f tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf24f53dd dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xf2562ca8 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xf25a5404 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2833280 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xf283ce81 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2a9ad9f rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2b4d227 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf306d1ce nvdimm_blk_region_create +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 0xf352c007 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xf3563530 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xf360cfd9 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xf377d977 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37d44bf max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf390ffcc __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xf39d4a84 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xf3a55b12 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3cc7c70 scsi_autopm_put_device +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 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3fa4c8f fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf41688fd crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf416a98f driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4178c99 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xf4447192 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xf44d642c devres_get +EXPORT_SYMBOL_GPL vmlinux 0xf45d932e disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xf488c051 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xf488cd60 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf49a73e8 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf49bb611 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xf49d1ede xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xf4b8f950 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xf4d856a1 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xf4f242e8 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf4f73462 __fsnotify_inode_delete +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 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf57618f7 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf5852f73 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a3b6da sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5c256ac rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf630c9ef rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf6480abe gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xf6625de5 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xf678e43e __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xf6a18e25 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xf6a2eb30 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xf6c531fa crypto_shash_final +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 0xf6e90fad ref_module +EXPORT_SYMBOL_GPL vmlinux 0xf6ecc1d7 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0xf6f45851 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xf6fcb92f dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf70abd7c __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xf72c1d40 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xf73dc61d pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xf766bafd usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xf782e0ff use_mm +EXPORT_SYMBOL_GPL vmlinux 0xf78870c2 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b36224 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d946fc __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf7df0f97 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xf7e53bcc pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xf7e75da3 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xf7e7f3be inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xf7f31cb7 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xf802aebb xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8393d43 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xf845c6ab dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xf84dfca6 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xf84ec1e6 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf86e4221 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf87760b6 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xf8776ee0 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xf87cf588 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf88d88de wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf89cc8c1 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8ed4c40 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f51c08 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90be585 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xf91004ba ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xf9145d4f xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xf91b2b97 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xf91be74e register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9227e4f wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9455b24 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf954d75c extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf97a14cb regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a2f8a3 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf9a801e6 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xf9bcb4ad crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf9c71722 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +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 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfab63d76 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xfad1bed7 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xfad7d730 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xfad98fb7 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfafbf690 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb22c8c4 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb315713 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb340460 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xfb5b7269 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb97dbd6 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xfba54706 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc2e3db crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xfbcc660c to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc21435e blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc273d92 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc3f3aeb regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xfc43ad96 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xfc4c6263 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfc664a78 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xfc6a664f mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xfc7f5cc9 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfc9dc943 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xfca57e60 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xfca64158 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfcb3b1bb __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xfcb3eb12 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xfcc4ef96 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xfcf4ea65 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xfcf8787b nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xfd2f86b7 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xfd343f12 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xfd41dce0 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd628933 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfd710c92 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfdab750b inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xfdd27bed wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfddda7d8 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xfded1da6 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xfdeda791 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xfdf914c0 xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xfe52d07e xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xfe723a5d cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe7be592 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xfe919d89 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeaa2cc4 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xfeb078a6 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xfeb49542 usb_get_dr_mode +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 0xfefd67f4 fuse_sync_release +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 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff71f5fe fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xff8b3121 rio_request_inb_pwrite +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 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/amd64/generic.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/amd64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/amd64/generic.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/amd64/generic.modules @@ -0,0 +1,4617 @@ +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 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/amd64/lowlatency +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/amd64/lowlatency @@ -0,0 +1,18888 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0xb4a8205f 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 0x08df017b 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 0xfe3f4dca suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x25ae4e1e uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x6a1b3810 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xb102ce78 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 0x0bc99bef pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x21701bf7 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4a3e7589 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x54af92f4 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x66f59852 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x6a704ee8 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x88bb2c0f pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x891bd0b3 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xae77bdd4 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xe3e22a4e pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xea8f6f32 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xf4a79fda pi_do_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xde26813e btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x0e63c970 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 0x1bf846b2 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1fae3bac ipmi_addr_src_to_str +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x29bead81 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 0x57d791c4 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 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 0xa218d0d0 ipmi_get_smi_info +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 0x66f804bc st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x6e3adf38 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc0212a66 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xe77c2b93 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x5155e698 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc687e7af xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc84eb855 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x36c9b137 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x39a86511 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x39cdf3ae dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x48bce55d dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x9c5d31b4 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf5d67048 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/edac/edac_core 0xd3a2dccb edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04f12a38 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0828fdd1 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x131b2f31 fw_iso_context_destroy +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 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ccd336c fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x44e4c2e0 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x466a781b fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d86050d fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x528b2928 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x62581ff4 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 0x6b411c2d fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8b429809 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x902643c2 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9fb0c9f0 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb2fabf0d fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbad21499 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbcd7db6b fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc4605c2c fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc4f85c7c fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc6c5716a fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcbaf0966 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd39211e7 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xde163607 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xde8fae85 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe379d4be fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1aa021a fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf5a39768 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x2c2f55d5 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x4a5d5224 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x578f1678 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x61ce7d51 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x809c8d06 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x881cca8d fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x8966dfa8 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc63da162 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xce857d45 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xeced81a2 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xf7f6cd3e fmc_device_unregister_n +EXPORT_SYMBOL drivers/gpu/drm/amd/amdkfd/amdkfd 0x13a686a7 kgd2kfd_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00ba3226 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00c0ec54 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00c9a7db drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01619cfd drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0164cac8 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0257a6ec drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03d2cab0 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04a026c6 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07dd4ec4 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0865b297 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08cfdfdc drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09451151 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa4735a drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d06dff8 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ecf859a drm_crtc_handle_vblank +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 0x10534d56 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107b98f0 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10a509aa drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x110d76b2 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1372ef7d drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1548ed1e drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ab2818 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1818155e drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18bb1944 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18f2f49d drm_modeset_lock +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 0x1b555d87 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cd30af1 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ce7d69f drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1365bc drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d8e2d75 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f625cce drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f89884f drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fedb983 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x203f3f23 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21e034fd drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25301441 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a0d613 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25a79496 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x268a7001 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26e0bb28 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26ebed02 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2814729c drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28371b12 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2855831c drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x285c1f65 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x287233ba drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28e04035 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x291e13bc drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29bf3932 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29e4aa9e drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cfafbe3 drm_pci_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 0x2f033c2b drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x300afdf1 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a28284 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x326c2af4 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x359c4aab drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x368c3d26 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37128f7a drm_property_create_range +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 0x3ae962b4 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b1af9b6 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c36b35f drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d63f9cc drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3de2ab53 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dfe49d6 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e67518f drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e804aaf drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f6fafa1 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x408f992b drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x414535d5 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41bc86cc drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41da9c7b drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x420ddd18 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42fd3773 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43071384 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x431c1bd1 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45b0d7dc drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490da21d drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f35950 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4fffec61 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5024aeff drm_vblank_on +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 0x52e1e183 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53fd6373 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x545435e4 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54af17ad drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5805c1c8 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5848be5b drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x588af19a drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5893a93a drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58f7078a drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ab78497 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bd0c322 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ceff3e9 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e347bb1 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e3ab57f drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e4341ee drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61d2a396 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x622a6f52 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63bed2ae drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x649ca665 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65241942 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x654f1004 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66c074f0 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66cf7f69 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68f1a72f drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a1678a2 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a723d48 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a8b9184 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c3ae015 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c4b74ad drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cdecbf5 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d112974 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dcb4f88 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e0adc68 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e8d40aa drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f57be49 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7038813c drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71c50db8 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72fcfbab drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73bf9b8c drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7438e9fa drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7491e1ca drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75bab242 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75cd0bba drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x764c0461 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76758778 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x782741d9 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78e22546 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79bbde8f drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d93c88 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a16d260 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a32f8bc drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b08c3df drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b159a9d drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b4a2d3a drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d7db7ac drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d9e3912 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e22f897 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80fde26c drm_legacy_ioremap +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 0x837846f0 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x838338bf drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8464116a drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8476e00b drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x854a1d47 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8710c1d3 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87145f78 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x877c1e14 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8928c6e7 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x897a39cc drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89d0276e drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89d2bbca drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a2efa50 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b90f957 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cb99501 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d0d934e drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d38fae9 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e38dc86 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ec1cb7b drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x904b7aee drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9083e72d drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9087b756 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91788341 drm_atomic_check_only +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 0x93908c79 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x941fe6a0 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x948894dd drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94b959cb drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e89c62 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98372a72 drm_match_cea_mode +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 0x99d43c60 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ae4c6ed drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c8dd8ba drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dbd193c drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e0398bc drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f9b3ce4 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa06a9e61 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa08e2a94 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0c880b2 drm_probe_ddc +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 0xa28502f1 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4f6d0ce drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa69a5a5d drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6a01023 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6a63966 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa708b766 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa838f917 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0c3e6a7 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1c46159 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb28bb5ad drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb28dde62 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb290cef2 drm_mode_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 0xb5a8492a drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5bd3b42 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5e401e5 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb87d133e drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba0e118b drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcb46896 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd240da5 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd2a6e1b drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd413e5d drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe77efa5 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe94b694 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc00e16c0 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc06cde27 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1afaaa2 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29e57f1 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3ac83e6 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4cdea13 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4e8b563 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc628339c drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7c99452 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8b55ee7 drm_panel_detach +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 0xca8f8cca drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcae8846a drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2a460d drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb7cfbf5 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccae99ca drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccf48dc4 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccfdc765 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdbf6080 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce024238 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce9fe84c drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf2a3981 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff072fe drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0356443 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0433ef4 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3378334 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd41107af drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd615e717 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6a13b17 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6a5deb9 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d5d13f drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7d2e7d8 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9d6b474 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda14c6ed drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda79906e drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda9858e0 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdabcddc5 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb9b69ed drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc731a67 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcc5cea1 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdebf5da5 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe07005ff drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1003fbe drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe12a311a drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4568f03 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4f60605 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe503a9d6 drm_master_put +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 0xe5b9e9ee drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe603d5b4 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea976298 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeac58668 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebf8a06f drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec71fb8a drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec9d0506 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecf4ca60 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeeaf5c1 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf07a1058 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0f8af3b drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf136259e drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2dde73e drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf52a9349 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5602f6d drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5994c15 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8e08840 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9244413 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9f13504 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb325563 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbb90ca1 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc8550ec drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcc06fc9 drm_plane_index +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 0xfd40cf0f drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdbdd0c1 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdff4bfe drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe51c34a drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfed726a3 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff17611d drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffbcf84a drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x000ff5d7 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02a50de1 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04b02af1 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0680b861 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09170948 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a905975 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c56fd23 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1275df5d drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x135f5b71 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14a52801 drm_plane_helper_update +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 0x16fc911a drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19c1591e drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a6b33e5 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c074f86 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ec767f6 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2040e682 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23f50ac1 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24890441 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2625029d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26e6f7e2 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26f9d670 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26fa59fa drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2747f187 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2780df1f drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27c9743d drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b43e8cd drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cbac2e4 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3234bb3a drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x335d8a48 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33c084cd drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3470bcd4 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35e24a1b drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f28a66 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3939cade drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a482678 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3dd325ab __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e251a8e drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f3ab678 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x45b31675 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e89bd9 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49b9de57 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4af3fd99 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4af76cad drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cef8e10 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x51e61cc4 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5266039e drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52872bef drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5425a21d drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x565aacfb drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57cd2cd3 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57faac9a drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59a5d6f2 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59ed63e3 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bb18e40 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ff83ccf drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63011c44 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63c05fb9 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x654fdfed drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x666c377d drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6697a38a drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x670261a4 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68b54ce6 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x712cd6de drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74ad8a39 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x755cce74 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75eeba08 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x773953cf drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x776ee4fa drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77e71468 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d0fc17c __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d7d50af drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80687051 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8243dca4 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83212ebf drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84847a11 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85620328 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86de79cc drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8aee0c1f drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b3b9d04 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c391eed drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d356a8b drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x903d6872 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x903dc927 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91f89340 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95e1ebc8 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95f00dd3 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9abc6d5a drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cc46d7b drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cda924e drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ea6baf7 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa392f650 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4ac3422 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa63bfde6 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8cef0bd drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa94a1d83 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa03afca drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa046c08 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae2e732e drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf590f16 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf8f33fe __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb2874d83 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7c38fef drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8b1138e drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc063954 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe4ef2d6 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbefae913 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf1bef06 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0b6522a drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc15946f5 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc33b7a96 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8e3d4ee drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc94eac0d drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcadd643d drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb575a03 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd8a7ace drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf516a0b drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf75e85e drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0ba7e62 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd954d20a drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdafb9641 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb5e6556 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd2e41f8 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd36d088 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddeccfe9 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdefcaf5e drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfb86900 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1b66581 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe55ca5d1 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7cac642 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea4832d1 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaf40ec2 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb310cb1 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee200a5 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0779d96 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf10cbfa4 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf50fac4d drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf812389d drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf941e4ac drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf990b865 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9c471f4 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd04a7b9 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe32288b drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05e948f7 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0de26ade ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15ba70e1 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x197a44c2 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c789504 ttm_bo_manager_func +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 0x27fec32a ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a7a5161 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b829424 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b9e1844 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ca3026b ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e703726 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30b790b5 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49d33d29 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x53cf8ae7 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c652172 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x627e8ade ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6820b4af ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68d0505c ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ae608d2 ttm_bo_synccpu_write_grab +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 0x7240c928 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74a4695f ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75884ddd ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d4c22a2 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x820cace9 ttm_mem_io_reserve +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 0x8ea87e6e ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93ea8dac ttm_eu_fence_buffer_objects +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 0x9491e490 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94b8c924 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x95e4bac2 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 0x9d98e6d9 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa280e1e3 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa35bebf6 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae0031ca ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb058eb3a ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb095be99 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb288e901 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb60a3ce8 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb6a0fd7e ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7e1d04a ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba0616a6 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf3fe986 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc16bf59c ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4d4618d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8b62800 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 0xcf49f835 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd3f216c0 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd79043c6 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8e3e836 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde982156 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf917166 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4ffdd9e ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe8c8f55b ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf02f4712 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2b48d4c ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5581297 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf64f9358 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfcab0fd5 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd3de3be ttm_prime_object_init +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x1a9bab08 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x85f9c84c vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xf0be73a8 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 0xda62205b 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 0x0e1c0010 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc50df5b4 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xcfa37870 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x07126ce3 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x7e4c99f7 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xd7a06f51 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x01833ab5 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x25a0ef7d mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x344f6c91 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x423ece23 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4be3c201 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x57fa1cf7 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6dd5713b mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6e25a6bc mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9d784693 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaacb973f mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xddd34da7 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe85295ef mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xec6a448b mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf3e7eb3a mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfbc25187 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfd03902d mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x1b04576e st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x36c25d63 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x844539cd iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd0d3b180 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x48038f73 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8323a38a iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9a3a9f53 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc1f30590 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x3a89f09e hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8171d1dd hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa442074f hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa8a8ca56 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa928b9c5 hid_sensor_write_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 0xd02fb64e hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x41f44589 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x53eba025 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7da87b45 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x98d767e3 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0b07db2c 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 0x47a29a51 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x53305d0d ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x54b39efe 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 0xbffa636d ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc5bdfff8 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 0xe7ae4731 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfaa9602b ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfd0c54c7 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x07941a4e ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x23d5613c ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x86e181c8 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa60ca509 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbacd9371 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x27daf182 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x3299dd41 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5e37156d ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0086d501 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0523127d 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 0x22f8fda2 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2cce7af7 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2f840cbc st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3a20fe92 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4cc64ab6 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4cd759c4 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x51d93d5f st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x69100890 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa2fb7cd3 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb29e45c4 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc482e061 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc5345d25 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xda026506 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe3e57ff8 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf6681dae st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x2b9631ef st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa81c749e st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xc3c3706a st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x429e168b st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x82cd7537 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xd619a54a hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x647ff124 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x87197816 adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x20e962bb iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x309da92f iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x38c05415 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x3b93a255 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x469cb37c iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x4a68a726 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x50d073d3 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x595f9a7d iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x68335a53 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x6b16d071 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xa6d543bb iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xc3b24d4a iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xc6bc8b04 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xd2d7378e iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe93a8358 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xf5a0b5a7 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xffe2b65e iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x24d76d7b iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xa508a1e5 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7a956ab3 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xaaf7c6d5 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc7213017 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x1a8aa560 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x82214e2c 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 0x1bb4762b 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 0x77d97846 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x8a52e7c9 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xcdcef814 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x03696fc4 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0e86528d ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x12f08922 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x248f45dd ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x29323601 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2dce4265 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x31e876e7 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x388d6739 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4c072239 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5b450468 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6e8dadc8 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7b4553e1 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa2010d8f ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa5a48f4f ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc63c2ee0 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xce14acbc ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xedd7caf5 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xffcbb5a4 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0162fe97 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x067daf54 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06dbb004 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09369ba2 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x107ddadd ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1443b162 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17111e3a ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x19d91ca1 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2091f1eb ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22456118 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22d9112c ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x234182b3 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x285e1313 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a1487ef ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a79c7f2 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x377d13f9 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dc2b907 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f569e4b ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x419d5595 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43fbdd3c ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4541dd10 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46635b0d ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x47f0f468 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4e073588 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50cda694 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52a943c4 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5497d83a ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5560cfd8 ib_query_port +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 0x6399fcaf ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67fc4689 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72356993 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74b61302 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75348974 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x789e9252 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f8441e4 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fea43a1 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81d89425 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82ab8756 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85496c6b ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8751c0d7 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89f65941 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91c9ac0c ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x926684ae ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9478e280 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95c605b6 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x96821d75 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97f05d28 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97fe9848 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x994def02 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cb15205 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e4a4fcc ib_get_dma_mr +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 0xa81654d8 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafd217f4 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1c00860 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2579b5f ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7617a51 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7b70551 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb838aaa9 ib_set_client_data +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 0xc2effbfa ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc34a8cf9 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5b52eb2 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc3a8bc4 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc6aa747 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd7dc591 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfe5fa06 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0cf41a9 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2d803b7 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4f99e92 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd5b1e6db ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8323508 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc65c57a ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfa77629 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2288e21 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7afa5ca ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8b2fecb ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec227142 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecef8e18 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeea88257 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf2846a89 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4b4965f ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf56008aa ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf8abeeca ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfafdd48f ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0ab1b06a ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x129d1bd9 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x12f63835 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x16398d7c ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x484d4757 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5414d558 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5aad1128 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6bd01d65 ib_cancel_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 0x9147259b ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbaf6e9a0 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe0fa8255 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe5acca53 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe8857f0f ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0852ac23 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x20e0dcde ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x248f4ad6 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x44b26417 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4b3b10e0 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x547f94ba ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x68d061ec ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc53918b2 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf20a3fa9 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x3dfc557d 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 0x7277e790 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 0x1b43fd98 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x25502280 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4321cfeb iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5a31b0f4 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 0x69cd5ae9 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x74a7931b iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x82e02c58 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8830d4df 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 0x92cf8365 iw_cm_accept +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 0xb659a6c6 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc785bc84 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcf22d91a iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdce3b633 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe49a4350 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xeee1055e iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02beeb3e rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x12ddc0c2 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x15272d23 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2927864c rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3d016085 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e5df3df rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4ea3fd02 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5dfc594e rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x67f73b98 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a862cec rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6c103057 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7a2a0e2b rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8e5c5006 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0ab294e rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc1621eec rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc2c28459 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcec2400e rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1bd1b01 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe7511313 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeb7b9583 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf70e17dd rdma_notify +EXPORT_SYMBOL drivers/input/gameport/gameport 0x41a9ce73 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x57e5ed36 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6c8da714 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x81a2fec6 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x83fb3944 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc6e0afb8 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcbbb2ffe __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd183a366 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xed194e8a gameport_start_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x10f8d34c input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x5d4c5e6a devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x95231941 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x9ba5866d input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xadb8553c input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xed500590 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0111d2e8 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1daaaa84 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x2de7474f 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 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xf80c08e1 cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x1d989d10 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x20f97acc sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x26778291 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6f2b7ee8 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xaff8af84 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfdc0380d sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x2e1890a2 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x5523d2a7 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x0ef25590 amd_iommu_unbind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x1e3b7502 amd_iommu_init_device +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x355c6af5 amd_iommu_set_invalidate_ctx_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x6611fbf7 amd_iommu_set_invalid_ppr_cb +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x7dd1ad94 amd_iommu_bind_pasid +EXPORT_SYMBOL drivers/iommu/amd_iommu_v2 0x994c19ea 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 0x184a303c detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8da256 capi20_release +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 0x4087261d capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x419f7195 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 0x62e32d43 capilib_data_b3_conf +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6fc3725c capi20_register +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 0x7b09e66e capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x82538776 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 0xae90caee 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 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc8e6292f capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xeec42cc7 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0d58804f b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x12c41710 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4b944c8b b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x60bec3c0 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6c3a9023 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6ed18a59 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x92f9b67a b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x968d6bc4 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9b64014a b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa62b9258 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb513709e b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb7bbb9f9 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbf4535c6 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd284d68a b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdf1c8731 b1_loaded +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 0x2d0002d8 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x412c0907 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5c5dcefa b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6602f8ff b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb467bf87 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xbd9d7c72 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc91d1f4e b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd631b16e b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdcca3d56 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 0xaba6dec2 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xae48efd1 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xb893e573 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf0e4443e mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x20f0cf90 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xcb4150e5 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 0x8de0cb0d 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 0x3b5fffff isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6f256049 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x940ad4ec isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xc24cab22 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xeec0917d isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x123c50cf register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x4df5bf7b isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xd9677c2f 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 0x0338a078 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x18e94d78 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x193c3a83 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ebeff46 mISDN_clear_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 0x3018b1a8 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x305081b5 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3819cb25 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3a5445f7 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b2051fc get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3b5bab11 mISDN_register_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 0x5f8b6296 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x660db017 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x72ad552b dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7afcd8ac recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7b43941a recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x89309eb7 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9d769808 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9f3b6986 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9fadcce0 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2cc4860 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc64363c4 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd3025a7f mISDNDevName4ch +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 0xf3c6641b mISDN_ctrl_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/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 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 0xad6b849b closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0xb743f358 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 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/bcache/bcache 0xecb67a4b closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0xff1f73ab closure_sync +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 0x1b363aba dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x41f46bc9 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x61ad695c dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xd504a3d3 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x16bfe1f8 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1b75f410 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x20d2b3f7 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x56f1a679 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7fa4f598 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa1926ea6 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0x7d86cc49 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x00f69104 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x173736dd flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2f87d68d flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5a34f6c1 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7d409cbc flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa56f574c flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xab83c731 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb080eb0f flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb20cd91a flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb5fec7c9 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc586d3f4 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd92443c7 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeff95211 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/cx2341x 0x06c5183d cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0a79bb21 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 0x7be76b0b cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xc184ec1e cx2341x_ctrl_get_menu +EXPORT_SYMBOL drivers/media/common/cx2341x 0xca1c11ed cx2341x_handler_setup +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 0xcad57ef1 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x6779ef9d tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xc0aab7c4 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 0x104432e7 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x11c7d8d6 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12970812 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x12ee79a3 dvb_dmx_swfilter_raw +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 0x1773bac2 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1ea1339b dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x27407dff dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2794d341 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3405dbfc dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x355a5fb5 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4cf3b0d9 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4f1408d3 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e18e7fe dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6560e532 dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6a04e460 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x76e9dbba dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x774c59b2 dvb_register_frontend +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 0x8d567110 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x98c80978 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c41d32c dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9d642fca dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9f35e777 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa43532a1 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd8f4533 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd018d8c7 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd23bffd1 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd50aa8a1 dvb_ca_en50221_camready_irq +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 0xef48a9fa dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf064d6ef dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf0ca47de dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf767f3da dvb_net_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 0x2ae405d0 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x1f70489f ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x122f802d atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x009ceb59 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0ab8b196 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0d0afa24 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3f06ca1c au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x71719688 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbb90a248 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbe1a2e13 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xcab38999 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xde8e45f0 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x577d0983 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x65949dfb bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x405216e0 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x77797664 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x8fcbda3c cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe8d87052 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xebe4a6b9 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xd1baf654 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x104572ed cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x217ddef5 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xae4a17ee cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x78fc358b cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0efdace1 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xe4bec655 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf6ecf54d cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x20b6e24f dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x22208888 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x527cc0a0 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6533e2a1 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6674f445 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x036c5b8c dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0b450ae8 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x12d9b7a4 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x30457362 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x34719c21 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4468af27 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5079fdf1 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x62dc2733 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6e9731e3 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6f86f88b dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x88a7c969 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x933c422c dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb17927d3 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbcf70091 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd374c55c dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x21d604fa dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x16b29ca9 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x34e110f8 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5a1424a2 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7db341b7 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x878b15ec dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x905f0553 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x4bf3c792 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x676e7fd9 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8e635676 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb78739d9 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x1bff0088 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xc788be61 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0d9b9d69 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc0071c51 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc8b34b93 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xce265071 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe2e0bd3a dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xd814c5ba drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x5a1552de drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x36bd3bf7 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xbb2994c1 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x3d971a01 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x337e281b ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x27e261e6 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x79038b43 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x8f63c04b isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x44190a2a isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x0ec1c253 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x63875498 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xce9d9bbe l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xd4f0a4df lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x317282d5 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x76cc4a78 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x8642c580 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xa1eea5c4 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x555c1afe lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x8d6eaa56 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xa8acecca lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x43485cd7 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1dca3cc2 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xe82dcf18 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xd17c6c56 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x15756237 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xd5c58b89 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x2b0ab645 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x72b846af mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xb0b7a34c nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xf15fbce2 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x0b695379 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xbbf9d795 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x92884bc2 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xa66f8cf3 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x3a3e2e59 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe4eed4ab s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x200be82f s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x6f31306d si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xc82e14bb si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x2961a4c1 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x7ad46600 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x789da249 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x764d17b7 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x5a22a8e6 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x5597b2ca stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xdc3d4437 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x0a311f6b stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x75c6828f stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x769fba95 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x0dcecdd6 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x7994b132 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xbd3614a5 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x10a6a853 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x47d8e66b tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xfb1c4bd1 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xd10fa3f2 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x12a7b2d9 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x26b21ab1 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xed673e0b tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xd1872cd7 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x2de816bc tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xd2b3c5c1 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xfec072fc tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x35466fb4 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xbd878a76 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x17db119d ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xd43c4b7e ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x6f9e303b zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xbac7a3ed zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xc893377b zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x30dff0b5 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3654af95 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4f32f52d flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x685a2507 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8896df84 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc6b955db flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xeab5af92 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x920b1325 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x96803f2a bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xdecd89f4 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe3bebb22 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3f732b65 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 0xcf594ce7 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xd8f8d939 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x11dc893c dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x446388b5 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x536367c0 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x5cc3bcc6 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x67cebdbb dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x985077ba dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9a29f8e2 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdbfcd908 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xddd68bd6 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x4ca89b92 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2059c1fe cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x5a2f6b9f cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x790e4519 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x812ddc2f cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8c32eb31 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x81a69886 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 0x1551494a cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x35d6d43d cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x39262d9a cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x696dc1e2 cx25821_sram_channel_dump_audio +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 0xcea47196 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdb0e1df8 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe3156ed2 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x46329c8c vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x977c8c61 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5d3f6c01 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x70aa19d9 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x98de2149 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xce651edc cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x06958908 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2821b458 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x59db0ec3 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7e88bcc7 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbc6aa777 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbf9297f0 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfdec904d cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1e9269a0 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2befdc3f cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x36f05583 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x38157d8c cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3efd964c cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4730ef79 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x491b0a7f cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5ea4874f cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x721008ad cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x740f7133 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7459c4cd cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x820196ff cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83236404 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83d5d9e0 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8b25a13f cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa3be5c20 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbe9d1499 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc08a2e4f cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcc81b000 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd09f933d cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1f746ee8 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x405a4d1a ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x40ae31d4 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x42ffb32f ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x47117c3e ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5aff0b5b ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x784872f7 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8c63e4b2 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb38471c8 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbf11ea4d ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc4315381 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xca9e17b3 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdeecccd1 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe55f1acc ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe890ee15 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xecc6705f ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf0de3204 ivtv_vapi +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 0x19e3d72c saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x2e05b9bf saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x30fd045d saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3e63313d saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5e9d2966 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6f1ddec1 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x700aca32 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8cc1933e saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaa4c2681 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb34583b0 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcee9b464 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe8e8ecbc saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x9127f8f5 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x409adf43 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x465aea07 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x73498679 videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xf2841485 videocodec_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2ae923bf soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x48ce7291 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x96965c0d soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb0237599 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xbd1ac9ca soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdb2f13fa soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xfcb98fcb 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 0x190e1008 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3cbbaae4 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x44e84478 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4ce1e684 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xddfb3b51 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe954f468 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfe1f66a7 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x28a4409e lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3114cca7 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x38321a1a lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4e877d89 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x56342137 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7926ba41 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x965e8ba6 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa576d0c4 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/rc-core 0x224bf2e7 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x6ca4676e ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x529c0da5 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x9f660397 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x96cbeb3e fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa26ad7de fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xe49485b2 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0xdc8dec7a max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xdaabb162 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xa52d1c8a mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x9d65abaf mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xf941370d mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x0540825f mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x80ee3427 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x2c130c3c 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 0x9677787f xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x9ad5d2dd xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x4c080e72 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x07b5f58a cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x801cd9a9 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0fe3c8a3 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x13d23735 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1467c29f dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x16a8c623 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x488a9200 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x95df92b9 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9d31a0e1 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa68f7d2b dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf5dcb66f dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x44fc945c usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x589c58e4 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xad33de03 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xba7ec6c9 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xda964d8f dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe7658422 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf260342b 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 0x5740b1ec 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 0x0a7f8e2a dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1c7b302c dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2fcaeee5 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x49c0cca9 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x68d70c73 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x6bf4a52a dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8b84ccbe dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa6a0ace3 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb0063c09 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 0xc5860980 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd3a036c2 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x46451f3a em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x99d81424 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x15d4670f go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x51df548f go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5210fb51 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x63d14b3e go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6b138007 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9a35507e go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa004f1d6 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb768bd30 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcf958c48 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x28cf3872 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x394fd203 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x45ad36a6 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6516ea43 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbd05fb65 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc0f800a8 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc2de1821 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe2513892 gspca_resume +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x2c0ac62d tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x625930c3 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x74746733 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0a3e3f82 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x21f93e48 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x32560d73 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 0x6dbed81a v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x8bbd0e5b v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1d37d881 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4d2a2e67 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa152c11d videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa785e1ea videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xbb40d57d videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe22fbe54 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xb1351d41 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xd0085721 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x37affe07 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x3d01fe63 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x481adcd9 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x905bf952 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xcba938fd vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xee652ddb 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 0xa6070078 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x08976f99 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x099b114d v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e9a89d1 v4l2_clk_get_rate +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 0x1aaef841 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b00ce95 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b81e581 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c05c87c v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23c1874b __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2632ac81 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27ce8a00 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x330a28c6 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33b7c9ef __v4l2_clk_register_fixed +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 0x3ccf9b8b video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3cedaf95 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d1b37e4 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e9c128a v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x428d634a v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4516bfac v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46c91c42 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46dc4310 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x49525e3c v4l2_queryctrl +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 0x5dffa77d v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6106b804 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x661404bd video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x698b73c7 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ad772a5 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6eccda53 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x740ed6c9 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77995be1 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b98b34c v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7da4f968 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x82a73c63 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x87eba664 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93e6e691 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9443019f v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d3b169e v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d6f22ed v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa009ea85 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa41adc0c v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5a08fb1 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa84172d1 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad3f3229 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb15506f9 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb26ea1b9 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb779f4e5 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7f1a97f v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8f00425 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc928a658 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9c2f716 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca8f235f v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbb816a1 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc96053f v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdce510e v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcfbf248a v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd1d8ff3e __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4583fa0 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4bd9091 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6b174a6 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8944b78 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb74c8e5 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd33680a v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdfed319b v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8f273e2 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef1db955 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf20af7b6 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7a82fe2 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc815d69 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe5587f5 v4l2_clk_enable +EXPORT_SYMBOL drivers/memstick/core/memstick 0x076ff6c2 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1eb1fe15 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2747b2e1 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3fd6b0fd memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4903d458 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4d42ad5a memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7a2c13f4 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x879d42fa memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9f7451d0 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb4b5c33e memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc7926af4 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe7b19a0d memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0a91b1e4 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0b179484 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10d9ded7 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1710002e mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x17d31369 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1f84c910 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x260449b1 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x358a1459 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3e234eb3 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x42412f3a mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4c6666a6 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5282a2fa mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67171423 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x70a2f77f mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x72bb554d mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x77d0f998 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8af91f21 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8e9de858 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d7bab1d mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf0fd897 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf2cdcb9 mpt_GetIocState +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 0xca4b7996 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd413597 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe8bd4979 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe8c5e534 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xef43a286 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf1a6917e mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5e24430 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfb358f64 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x014b2987 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c2c4efc mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x39692f09 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3bf1c972 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x412073e6 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x476013cb mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x481e9bf5 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4bf41ca9 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x52039b51 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x575d06d2 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x58cfcddc mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72850fe2 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72f5e043 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x75efce1d mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x764431e2 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7d25da66 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7de2bab8 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81b366a9 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7df474e mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb17bd898 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcfd3f588 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe63b76c4 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe6918f62 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xed7ea4a9 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf37b36d5 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf60e2c74 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd935ae1 mptscsih_event_process +EXPORT_SYMBOL drivers/mfd/cros_ec 0x360f23e4 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x37e7661f cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x6dca261b cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0xa95aef51 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/dln2 0x962e856f dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xb8ae73c4 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xebae20a6 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x2aa0af6a pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xce883e77 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0896e7ee mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0cc3b745 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5cc9631d mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5f06369a mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6290e798 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x67259b5f mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7c609cb4 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbcaf96a9 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd0e062f9 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xeff66c2e mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf054e74a 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 0x0364bb45 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x602d9c5f wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x07d88743 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x37c1a148 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x9a9918fc wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xa8a3a365 wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x12e2189a ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xdfc1e9cd ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x13090222 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x1cb9e9ec c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xed4c80f7 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x09ba3bda ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x2ec313e3 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 0x5f21ec58 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x5f2f635d tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x658fcf36 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x6665efb4 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x7233afe6 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x94792434 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x9f296279 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa5ccdad8 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xafe54a52 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xb0928520 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xd2521fa8 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf540f1be tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x941d4147 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x2c3972c7 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x34a22b41 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb3d47cc1 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdb718cbb cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe529ac5b cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe5923ca6 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf04f04e0 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x14e897ca register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x19fb7803 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x21c3dbd5 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xffa23d95 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x8531c3e4 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x18b82cab lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x7a340b79 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x8604e07c mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xa49ad9a5 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x5958feb4 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xfc8094e0 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0dbb29a3 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x877341a1 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa28be131 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xb140ff95 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xc1a89a57 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xeeafb2ca nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x1685bbda nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x26931ea0 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xf5a30677 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 0xeba44aff nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xf2a6fa0e 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 0x02e288c3 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x84cabcb9 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xb1cd0573 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xba35142b onenand_scan_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x006330f4 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x04ec922c arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8e390749 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc08e967f arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc124e58b arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcbfc53b8 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xcde79007 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd124fe98 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xec914dfb arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfc50c88e arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x232f63a7 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xc0dca222 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd8c2eed1 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x11cf5c33 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x55baeb0d ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6d97b574 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x77835691 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7cacee97 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x92bf8262 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x97f9782e NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xccd4aa1e ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe2af9b90 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe33a19ad ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x80df6578 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x1cab856d 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 0x0b74f4fe t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1148b8b3 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4c728be8 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x51f0fe05 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x585228bb cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6ac3decc cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x716014b3 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9d584fa1 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa6b0a85a cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbc39fc93 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc4f500ee cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcd0aec10 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd2663fdb cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xefafbe4e dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf97d972d t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfc43ecfe cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0118936c cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0a69d6bf cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x143b8ac7 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x150916b2 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1c8bbc1d cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20b59711 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2764ad58 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2971395b cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2e3039cb cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x31d00a30 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35baa574 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3bd7fecd cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44acddb2 cxgb4_dbfifo_count +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 0x5dc0ffbc cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x71dd4b85 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x75b02540 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x761cf500 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78626d48 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8055f3a5 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86c27e57 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa36cf130 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa9dbb703 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0cdfc5b t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc08720e2 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc0a3448e cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd09911ec cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xda1b1eb4 cxgb4_pktgl_to_skb +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 0xffff6295 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x569f36f1 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5c4fad88 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x77227f5c vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9ca2229c enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa25bc2bd vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd9c5e77f vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xbab62e22 be_roce_mcc_cmd +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xd513a845 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xdade9e34 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x020025c4 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x075bb2a8 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b9427fd mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1faeadd0 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a8a0c4b mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c61e435 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32b8a11b mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x430df6f3 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x452d1a92 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47ff04aa mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c070712 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4dc1d4d1 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e66d74b mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6365176b mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x636f9445 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x672342c6 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68cca083 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d8f8a5e get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70527197 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75fb9932 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x768d70a5 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa30d9b0f mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa38583a8 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa849c6af set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabbab948 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xadafbe82 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb25f41a0 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb90556df mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaef138c mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe8dc41c mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1d34d64 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc5099cd mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd07248c9 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdec2515e mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe294d6ad mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe681efdb mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeba28ef4 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec1e7b28 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x037d5c16 mlx5_cmd_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 0x11bad9d2 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1e4e8a26 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22a49354 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b28d77f mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c6f84f5 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ceeacfa mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e81c69b mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ee1e44b mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3479fecd mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3684bb1e mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e227324 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e556ff7 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46621edf mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ee5b1d5 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5615fafc mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56cd16ad mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58ad657e mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f609ea5 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71e490ce mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78007bd1 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x782ae76f mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c532134 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7da42cf1 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86a07a9a mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8c7fcc7c mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa02ebdc6 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb19a6709 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbebd789f mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1bc73d8 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6e07846 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd52f611e mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd73b273e mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe439ca72 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 0xeb2fc238 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf836a200 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf880e199 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8c499bd mlx5_core_create_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 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x359ffff4 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4192ebd6 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x57a68436 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 0x792c0154 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 0xb70e783a 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 0xe96e1d13 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xed87db5a mlxsw_core_skb_receive +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 0xdef1ac3d qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x2ad869a7 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3aff8395 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3f6560fa hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x543e7b3f hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x68999bb2 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x194c8a72 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2055ebd6 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x214d78e5 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4beb5c03 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x842c3b36 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x97f3f978 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc5fef91f sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd184198b sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd9dc5e3b sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xda35fa68 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 0x12793818 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x1d6e8476 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x38825ecc generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x807e3343 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xb0f91960 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xc284617f mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xe46e7270 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xe7a1764c mii_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x9f1be02f free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xa2973018 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xb96169b4 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xe1684438 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x3de2e3d0 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x9936a3ca xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xbf034430 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0x7e33b452 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x40c53e82 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x50d8c9f7 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5ba38d1a pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xc575a3a3 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x0e6fc8eb team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x0fd8d00a team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x2173a74b team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x2276c7df team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x9ba498ef team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xa32d0b47 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xbfd3ff6b team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xc4cde865 team_mode_unregister +EXPORT_SYMBOL drivers/net/usb/usbnet 0x10393ba1 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x5ad6ddf5 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6712f142 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8bc2fda8 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x12f33ece hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x146fc00a hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x49166fdd hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4a85a0ea hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x84372120 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x938f7f66 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa33f399c detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xaf348c24 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb70e3779 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc78260de alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd52272af unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x8626f73a i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x24b06f96 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xbff6c0fb reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xde679b1d init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1a684dfa ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1f77dd5e dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x204d6310 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2508ce42 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2b7fec4c ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x657c9258 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa60d537a ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbcb7e445 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcf1eaeff ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdbc1e259 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xde274a85 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf94587ad 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 0x0913b752 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x132b2399 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1920d8ce ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b3135ba ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x32ccb531 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x57adacb4 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x76c6c3d2 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8d138a18 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa11ff213 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb69ca2bb ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbc288380 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd5f4e17d ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd77058f4 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe11cee9b ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe69ee77c ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x19588412 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x297472d8 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2978729c ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3c4bb6ab ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6ec599b1 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7bb7f0dd 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 0x9e93d81d ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa2624cee ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbc0b46ef ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf3aa0706 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfc34c4ea ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02826b92 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0a2c7d54 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x110644ad ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x14d4e9a1 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1521743c ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1de70bff ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x31070d33 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x366a6008 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39453511 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4c4adf21 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x536a80b8 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6962dbf3 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e1b2483 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x97b7cd68 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb27a2a33 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb7306ebe ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb74ec49a ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba8cef50 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbeaff43e ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc528799b 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 0xe0f89f42 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe337f2fa ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf51e46c9 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x007447ae ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02d9e7e2 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0372feca ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08628d46 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x086bedb2 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cea2611 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x156dc6a2 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19ab07f3 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1de1e2b4 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e65d956 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f3f901f ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23563572 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x265d6ade ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33f47fda ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x371b4bb7 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3976824f ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3cbd9a8c ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d2b5ae3 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d8cffbc ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e6a668a ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40367bec ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40c75a18 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x431590b7 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x444765de ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x454a8787 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x457052f2 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x45f664cc ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x480923c0 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c08df61 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c9de125 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d1a7769 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x546cccf8 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5512aa2b ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a236c82 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ce2909f ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x621ed071 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6237f7cf ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x690f10ff ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b0a9e5d ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fbdb8fb ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70c28d23 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x719f7a68 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7863c387 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c7ee883 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81dbe7c4 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x824e76fe ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8407ba3a ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x849930bc ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8892b77f ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89144067 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b801394 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8bf0d751 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f443cc0 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91c8ff72 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92be8c6d ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96eee483 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x977aa3ee ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x984c4bf1 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9fa6fb02 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ff547c7 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa390ea46 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa70007ce ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa7d3a34a ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8a4016f ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8abece6 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf17254b ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6ad4b4a ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8e4b77d ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc7626cf ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4bb3489 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4ca5f94 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc59d3c0d ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc78c7c59 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9bd1d47 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0e23a27 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd306285f ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd69cae80 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbab5b8f ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdc644c15 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdeaf5939 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe22b5f9c ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3f050f7 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4ea1b1c ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6792e65 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6a1217e ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe82b2f9a ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe85df78a ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe86edf90 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe988573c ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaeb90bb ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xebb225b2 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0ce6945 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf183b75a ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf26d09f9 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2a50337 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf40e0fe3 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5aef1c9 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf624eff9 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf67f547b ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf761054c ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf78aac38 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb9d509f ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfbc1419a ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd3b488e ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe1ec1ca ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x188cdcf1 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xc57ff117 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xea9bab8b init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0be0a187 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x112972d7 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x12f1760a 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 0x40b6bb48 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x42edb203 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5c2064ab brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x687962e7 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6cf8bffe brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8d96cae6 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9e345270 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc8968b51 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd29566a0 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfd5720f7 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x17b88bb4 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x24973f30 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2546e2d2 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x28eaaa49 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x33e4e1dc hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3ad79655 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4f3095b2 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x51fbda6d hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x574efa1b hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5f073fe0 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x623af692 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7245218d hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7613a88e hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8880dff0 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8acc6792 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8bbae2d3 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x918a3dd8 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9a583fc1 hostap_add_interface +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 0xb6819ecb hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbebe662c hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc25db724 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc48e3076 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcc3fec1f hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd4bf0389 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf8d6d6aa hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0322cf53 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0a7de4cf alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2966eb07 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x33a0d629 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x36f68f4b libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3d6beec1 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3fb32a5b libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4e9f38a4 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x54e2f9f4 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x565ad87b libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x684e5ba7 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x80356d17 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8d0687a7 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa2427397 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa55a5d5f libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa88dd0af libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb05f871d free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xddcf1f42 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe6ea9c33 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfc12621c libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xffe37475 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x056ddcd9 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x057e927f il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05c57030 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08ddb1b2 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e113da2 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13915208 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1564cbad il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x165f0db8 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1abd1db6 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b192b83 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c1d02a2 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f7dc059 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1fb32c18 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x240c7f42 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a2dd023 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2b30d67c il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2b55cd4f il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2bd41b9b il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2e2a4521 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x33ee1e40 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a60f7fe il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b0c673e il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c262907 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fac6599 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x414c208f il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x436fe3e4 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43a66952 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x469a8df1 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4784993b il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4a43d62c il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4ee236a0 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f4eb494 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x538cc458 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55b386fe il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x586da71c il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d266929 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f94edc4 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x604b93cd il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67406245 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x69528340 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a224a4b il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a74339f il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6bda5f7c il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6ce28e8d il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6db1ab8e il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x74b81ff1 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x773598bd il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7fbd79b0 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81ce5376 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x82ee4c01 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x83293c1e il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85bb06f4 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x875550ef il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x92efa3f1 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x964337bc il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98b18b03 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c433043 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d15fd73 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3c570a4 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3d67873 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa93fcd53 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb247930e il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7c32a0a il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb927bf49 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc9d7a8d il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbeff4dbc il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2f17aa3 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc46e8330 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc6532fc6 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8651963 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9ba5fb0 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcaa008cc il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xceb4f26e il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd0b54cfd il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd5d6b3b8 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd81d7b91 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8ae7504 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdbdfcfc7 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xde123591 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe052ea72 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0f5b3a9 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2aad9f3 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2afc74e il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe32ac6b3 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5f95ed5 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6c70087 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe9232da6 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb278234 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4ac3da1 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4c8f2f5 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf4e274af _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf806451d il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf95f0e88 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf9e62dd9 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb9e6028 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc85c09f il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfec24ae9 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff24a4f4 il_set_decrypted_flag +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 0x0a27c0d3 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0ec292e9 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0fee0c51 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x34d1fdbe __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3ac2324a free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x427986b9 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4517387e orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x45e7c3b6 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6f37f935 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6ff178c4 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7bf760a3 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x98063c07 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb33812a6 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb54a5327 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd46e0fdc orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe28a2d7f __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x6b22ffae rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02f57f46 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x14afb048 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18143132 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b72687d rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1e240d1f rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1f9318f5 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1fd7f579 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2b2896ad _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x392ddda5 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x407f6a67 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x41ad03fb rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42994b08 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43cc3fae rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44d61363 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x486aa336 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x61f4161f rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x64f67eef rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x67952cca rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6ea54614 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x71a83498 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x747121e5 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e20350d rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8565a608 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85e69d54 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c38a2dc rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c768b11 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9ebfbf75 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa74c49fd rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8466f27 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8a4d707 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab35447f rtl92c_phy_set_io_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 0xb9e365a7 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7dffc4f rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc92b84e5 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc9dbb4e6 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcb65c5a8 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcee55494 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd64e8831 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd1560df rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeba83b9e _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb529e62 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2ab65be1 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x37ac66f8 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5d10e9e4 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd895dc41 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4f737ab5 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x76d266cb rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa8b3ef76 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc1449582 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x03765abb rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x053e225a 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 0x222b2f54 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28b3c660 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x33f23f75 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3607b50e rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x413db45e rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4cfb7142 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57d6572a rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e3bf573 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x62f86860 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x669205dd rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x68295563 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6dc02a72 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7805b97b rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94d5e44e 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 0x9dce4630 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e31a4dd rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa86be512 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xade5ae3c rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5a8033a rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6372c4d efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6c0a398 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc6c8c86 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd3adaffa rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdae99d39 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe80c8912 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf4949eb2 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x070dba9c wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x3c31df2d wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa503cbc2 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbd2d2ac6 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x94175183 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa7664c78 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xb95c783d fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x422ae80c microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xd3832501 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x7835b32d nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xcb5f03ce nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xd0c1920d nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x7bea093b pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x8c09a6a9 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x51913a88 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7d70c221 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa08311e7 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x441b46d4 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4ce966e9 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x694a612d ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x73c308a1 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7aa51947 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8708cc95 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9aecdc7a ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9f781d2d ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc0b6d622 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd2b6edf9 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd954f2fa ndlc_send +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x00e39a61 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x064eb47c st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x15115c40 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1e5ee0f0 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x23f2640e st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6fb710c1 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x848595bb st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9f91751d st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa1d8ac68 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa255520f st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa4057ee4 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb4a8fb62 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb5230030 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb6803b8a st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc3862dac st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd0e13677 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf079980e st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf15e3122 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x22bcfd27 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x443f756b ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x6aa73780 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x74cbd72b ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x9ce3fe19 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xa930b10e ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xbaacacce ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xfce8695e __ntb_register_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9c522072 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe9f76ff2 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x35de3024 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0502873c parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x0d13f790 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x1483979a parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x26f717b7 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x2cb28c43 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x3d4c0817 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x3e4ef537 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x444cb227 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4db6e596 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6371d46f parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x6454a39a parport_release +EXPORT_SYMBOL drivers/parport/parport 0x7ac48f1e parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x7b75daa1 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x7ddda9bb parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x84166ace parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x8597d2db parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x88dad4e2 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x8ced7b94 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x8fe59953 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x97cdb8b2 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x985f843c parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0xa3f0bca1 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xa9deae23 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xb57152c4 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xb8da7ea2 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xcb32ca2e parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xdad9f34c parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xe3a4a6cc parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xe9edc09f parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xebc51988 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xee011f99 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xf50df754 parport_find_base +EXPORT_SYMBOL drivers/parport/parport_pc 0x37160589 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xa68351dd parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x089b1407 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x10f63ce5 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x41aeff77 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x46e987d4 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6cfc3a15 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x794d8fcf pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x89f0507f pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x93677fda pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9959e336 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa9b51028 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaad1d563 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xad7982d5 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb659b0a4 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb8601e09 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb8cac29e __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xba7a5f46 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xca3d4da5 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdd0f924f pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe14b31a0 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x10433c22 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x15b5f90c pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x254a4a84 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x265622b7 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2bd091f8 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3983ca49 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5a6df388 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5fb20ab2 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x74250ee3 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa02eacdb pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf19bb7ca pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x011400b8 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x6f981485 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 0x1c64a0a7 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x42c575f2 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x9d90116d pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xbad2f982 pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x0d1b2601 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x2ab3d9ee ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x3af01f27 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x3f89f937 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xfb6e8d46 ptp_clock_index +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5cddbb4f rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x615775a7 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x62138a65 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x789bebc1 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x92cf9cda rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9627f102 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x978f95e6 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xabde60b5 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xef7dd5dc rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf4742058 rproc_get_by_phandle +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x83734999 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x04899438 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3f102cb5 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x78b8c231 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf581f2ba scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x17cfa088 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2e4f0e29 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3b9e53de fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x52beb4ae fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x604ed187 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x81c88737 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaab36a31 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcfa34390 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdefff955 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf9a62aae fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfb8c2e26 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xfcb6b227 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x025ac616 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x049cf2c6 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05d3a5f8 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0d3aac23 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x16641c22 fc_eh_abort +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 0x2bdefa6a fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2df31835 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ea3ccf1 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3a68877e fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x425ebe4b fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44134a58 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4481972a fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52933ee0 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5a18c7d4 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5aa6b365 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6229c7a9 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x64a75f7e fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7806bbb6 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e71e9c0 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84ac8d50 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x84d9e660 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8789b50c fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e4e661b fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9480b611 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9c4c0e38 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d1aa0fb fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9da9d4e9 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa026e61e fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xab647a64 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xace3f18b fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2719e60 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb419e554 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4787576 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xba3912c7 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd92b97c fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6e80fd3 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccf2a5b5 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd84a5005 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde6219e1 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe819eb46 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee21ac96 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa3e875b fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd48c8b6 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3881639f sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9107a24f sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa1e4e2ff sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xccaf8ef8 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x100bcbdd 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 0x053e02dd osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0d19a545 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1dd99412 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e0c98b1 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22c6c798 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2523b071 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x28f453ed osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x306c4a30 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3216daf0 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4d78b79b osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f82c43a osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x688c6345 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ab06e26 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ae070c8 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7509f454 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x80e40a06 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x858d8547 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8ad16fc8 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa48ba194 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xabe03c2e osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xafb7a72e osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb23511c8 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb7e9263b osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbc4e3f4d osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2a104cb osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc50a36ae osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd229832b osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd61e0fbb osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd70be7e5 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xea6a087d osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xea891b9f osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xecb6a76a osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeec36938 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf542bfd4 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf9a37e5a osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfe08d5e0 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1bd9a99a osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x328ffd22 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x56b7da7d osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8cde0c53 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbc03087c osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc2e99037 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x171ee693 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2de4f211 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x34c3b13c qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5095c984 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x69bf8298 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7ed5c525 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x96d546e1 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9dd3a0dd qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xaba8e4a6 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb99ad212 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcda59947 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xed90e5dc qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8018efa2 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xaea30966 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xbb880e22 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xbc4a2786 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xd88e6f5e qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdae46307 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 0x1096dc65 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x5c28b749 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xc11ab7fe raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0e3bd541 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1514d9b1 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x23281fcf fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43cbcbdb fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4ef476f3 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5131b864 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x63ee03b4 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8c6dedd7 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa41a797f fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbe38f061 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc96ce1a0 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xda8a838b fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfb23ab96 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0f22ab6c sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1093bd3c scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x17a9b442 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x18684527 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x29049bd4 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32f8cf5d sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x346fd9c3 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x39f1a881 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4dc4c2d6 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4f009672 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x56f79184 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x644a7b39 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x67785b4d sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x696c0040 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x906e8742 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x94e9275a sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e471060 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9e51a81c sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xacd853ac sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbde9b57a sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe6f43a9 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xce34ccd0 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd48524db sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7bd9739 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee56032b sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3b9e864 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf97f9e76 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfcd48e65 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6a39ef54 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x787af2b1 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc0ae7a80 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd6a0e0e1 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xee752a00 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5c9ac9bb srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9bafa927 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb18d5447 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe74ae4ef srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x19635f2c ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x24354cb7 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2551c764 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6b82b575 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6e80fbf9 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7789da17 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd17a2eb8 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x12636429 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x2b40c223 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x2d5368a8 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x31ebf467 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x329aa566 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x3547010f ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x47c47ca4 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x71cc7442 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x7ab4b798 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x870c2806 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x8dd06f35 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x9835df90 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x9c5b17aa ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0xb3de39e6 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xbc3c92ec ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcf50b4ad ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd8452895 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xe9f94451 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf311f1b0 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf4f61ea4 ssb_dma_translation +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x00e9989a fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x04e0e1f2 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x08e0fc1a fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0b2ebfc7 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x153760ed fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29c3175a fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2bb6087e fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3a94f9cc fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3b5a82d5 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3d5315c4 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x470746f6 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47a06c70 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c9c531e fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5601f0d4 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x59f81ad4 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6018ab91 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6171bbe8 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6e4e5fdd fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8469d96f fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9a678fcb fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaa3941c0 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb092ec6f fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf8f12c87 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfe1cc8e4 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x3ff18aae fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xfe83d32c fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xdc70d21d adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x07b2a224 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x45806fba hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xc8bda0f3 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xd2a3d8f1 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdb7ec40c ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdd06979b ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xafc7454a cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x326502c4 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x021da02c free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x06283fd5 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0aa85e97 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e5eaa6c rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10be7860 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x12750ec8 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x242eeb7b rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x251bfdcd rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25690fe9 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26e61e28 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x278c1c90 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2876d98f rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a73f117 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ae7907f rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c5e48ec alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2c614363 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d5a7e59 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36fe5bd4 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b0b757d rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3b3e46eb Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c26c940 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3c2bcdb1 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fbdde41 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45792c27 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4bb8b36c rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x568de4ac rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x59f15f26 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x64717360 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7075ffa9 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70797375 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7268610a rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75893099 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7e4cceaa rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ff7ece3 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x861642f2 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89491f36 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8ae763ee rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x96f2ff37 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9eb86c67 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa481cfbf rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa717dc4f rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa7a3dccf rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaef8cd8a RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb69f4d3f rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbf12fa85 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5948a30 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc72f72c0 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb4e7822 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe87d30d1 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff6398a8 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x022a5ac9 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0cb70b70 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22d511be ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x22f72d0e ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26ace4f6 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29f02995 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d552e8d ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2da098b2 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x307f2b31 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3828a8ac ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c4c5919 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3dc39b3b SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51414b66 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56a0c49a Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56b42096 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58b9534e ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b572162 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e6a8180 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x612ccb3f ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x669dd900 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68072f10 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68074bb7 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a9f6c70 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6bf87093 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e0e1106 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fda689b Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x810c234f DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e0fed7c ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92ea7ba0 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x97b4dddf ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x983add13 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9eb36a69 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ebcff5a ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa4c27d91 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7476a79 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8982856 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8bd12ca ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf13b33d ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0896a96 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9698529 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb6056d4 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7bdf45f ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc7dfc6ea ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca3e33fe ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc36faa8 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcfd8c8f8 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd40282f4 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd41e84d1 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdad9a0b8 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdc6bb7ac ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe0ca659c ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf162890a ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf40ed41b ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/unisys/visorbus/visorbus 0x9a60dd16 visorbus_get_device_by_id +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0190ecef iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1137b320 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1bb74999 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1c0cf546 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3d673929 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4c78bba0 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65e0b775 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67167006 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x672e0734 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67368b07 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e4cd43e iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f7b7c03 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72b9b072 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7469376b iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x77832004 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x850981a1 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8886248c iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8bdadb53 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8f3b0123 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x92cc2af5 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa9a5959e iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2bcb1c7 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc8e5a660 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1046e1a iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe7a3c789 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe8004348 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf23799a0 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf428378c iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0015fd53 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x05035511 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x05179335 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x05a91fee core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x08b9c3fc transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b40af16 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b48a84c target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b8a9da1 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x127bdadf target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x15181201 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x16b0d2bd core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x1de8bd57 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f144c71 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x23242a89 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x241ad605 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a711453 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x30e14c63 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x3184f56b transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x330b5496 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x33a44f15 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x353372e3 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x36ac9817 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x374bf684 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x408acc19 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4eb458e8 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x594fe73e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6377b016 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x66d3d17f transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x69e8581c spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a990190 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x6dd40a28 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x74c74d90 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x78f17eeb transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b768c05 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 0x87e754b5 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x95b74114 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x95d4c891 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x985941e5 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c271af9 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x9f6a6a5c sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0bcc691 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1ed23db target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa434b5b6 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6a397dd sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xb091a2f7 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb35be0b6 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3bfcce5 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5cb1b3d target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb91afc2e transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3256823 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4b1c634 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5062ef3 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xc996b32e sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb61cd1d target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xcbd5da87 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xd29e114d transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xd3765346 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6cea185 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc804011 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xe355cb45 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5746462 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xe767cd1e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe82b6950 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xecb57034 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf48279ae transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6932059 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7516bf0 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xf98d86b4 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfdfe6b3f target_undepend_item +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 0xa4752965 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0xcfa235c8 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xd3bd765a sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x01574642 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0e757d23 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x235754c4 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4528c95c usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x45f84fbd usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x57111e95 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7f7249c1 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x928721df usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9c1656ea usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa5100b95 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcd9a391c usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdde71698 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xd30ebcc9 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xe9c32530 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 0x49dfc076 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x606c1cba lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd2c8f7d2 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf811af62 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 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x675788ee svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x751bced3 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8a515f69 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa6b822c6 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 0xd246ef3c svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd2c09431 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/svgalib 0xff68e6ee svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x331809d5 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xf099198c sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x30261c98 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 0xac4072a2 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x198e64eb 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 0x39ee282c g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x46dd4bb0 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xabec73b5 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x087f3807 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x14473038 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6e61f9d6 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x752688a5 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x40df6801 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x5e31e023 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2d69e8ec matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2fc19ea0 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x3d389dd6 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xc554bfbb matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0a882c19 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x6be2cef9 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x01e9eead matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x38a9d987 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa242f716 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa3abb29a matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xfbabe1a2 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x8580ca4b 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 0x1d5e507f w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x854a11d6 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x862c7883 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xed094f15 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa9738c00 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xb3cbe53c w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x9bbee99e w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xfa084df7 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x682fa2b2 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x7b117aa7 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x90c86f47 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xab59316d 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 0x0334a093 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x03680836 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x31f212fb configfs_register_group +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 0x688716b1 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x83374b26 configfs_unregister_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 0xb76182f4 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xb878f854 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xde121d05 config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xf814feec configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xfcb87670 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xfdc36ccb configfs_register_subsystem +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x4a66f8b3 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x4e5c4a82 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x752fdd72 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x9539369b ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xaad7ad2e ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xac0a384a ore_read +EXPORT_SYMBOL fs/exofs/libore 0xac6f2444 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xc9a41373 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xe7418f76 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xec451f25 extract_attr_from_ios +EXPORT_SYMBOL fs/fscache/fscache 0x0123f5af __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x040cd57b __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x110bf096 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x11a94e45 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x1b90a0ac __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x1d9f6c55 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x23cdf8a4 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x248b38ad __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x24b7bbd5 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x2edcb936 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x33f8346b __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x3722fa5f __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x38d2a9fd __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x3adaaeab fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3c831faa __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4418f981 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x4a890f20 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x544bc8a9 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5d774ca2 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x69352954 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x6adb3b52 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7553ce8a fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x771e022a fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x82bdd74a __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x8f77addc __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8fa1e381 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xa5e42a5c __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xa89d9fe1 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa97d18de __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xad5b745d fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xc19a489a fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xc5d28d80 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xcaa7ad73 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xd75f52b6 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xddc08420 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xf1855d07 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xf8ff429c fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xfc3506af fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xfc948edb __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x0649c201 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3779be2b qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x633ee80e qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x95d524f5 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb0a15aa0 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 0x35e6a2ed 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 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 0xcf52a29c 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 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 0x5727bff4 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x68b6a01b lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xfbe1211b lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x1656fb65 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x36fdc6c9 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x9fb132ce destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xf0bacec0 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x23b2785f unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x8f37eca5 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x01187d61 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x0a9f6c22 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x14103402 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1dd1182c p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x21598f41 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x2b257fb5 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x3097f15e p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x33372786 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x356f4598 p9_client_mknod_dotl +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 0x40174ed2 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x471b84a2 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x49ac73a9 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x502d8681 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x50bf5d15 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x57cad389 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x6791a5bb p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x701783e8 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x7c92cd01 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7f6e1144 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x80edd9a1 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x8182f1e3 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x82c50ae7 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x83c1b3f9 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x8b8d9d97 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x8f76d88d p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x90c53ffb p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x90f66a5c p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xa719147b p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaadb118d p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xac59ab11 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xae4bc859 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xbb8251b2 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xbcd6ee3e p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc9788a4a p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xcd6f2a66 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xd56b6fd5 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xe3df9e2a p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xec4ab905 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xee2fbc1c p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf6c1d5d8 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfb0f41d8 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x0eafba90 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x1c555c5f alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x400f68c5 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x891eeef2 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4e377be9 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x7f813c4d atm_charge +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x93be2abf atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x98f9e63e register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa5a75771 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xa8d6d4b2 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb33c1c64 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xcad4500c atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xd2cbadb6 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xe01d7cbe atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xe1b8855e vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf7d03d59 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xfdf016e4 vcc_process_recv_queue +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 0x459497d9 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x48dfef68 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x4b7d734d ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x577932f9 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x7f0cf33d ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8c9f27d6 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 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xf25bc108 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xfe4c2551 ax25_linkfail_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b2fa8b3 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c61ce40 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1daa8b43 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x23ea2fba hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x289472a8 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a4feea4 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x316b0817 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38459147 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d4a8cfe hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x40fd0341 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x41b1f37d hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x456edda8 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a00de2f __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d3bcd8c hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5108453e hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59822307 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x62541bbe __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6eba941e hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7076cead l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73be15a1 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x78b9d086 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ac7ae7a hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b466945 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x82ab6ee9 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x84c8c0a2 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 0xaa960fa3 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaec6f032 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb34611bc l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb37aeb03 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0b3194c bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2a61f5f hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4479e9f bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc4da5a15 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd741f83 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcf470554 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd11ceb62 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe74b9a76 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8d8a4db hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xec37acae bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf728660d hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfb7b7b4e l2cap_register_user +EXPORT_SYMBOL net/bridge/bridge 0x6e21d3db br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2d4d5cd5 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x9a8c1c9a ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xcee6192d 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 0x5f5fd174 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x7744a7b8 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 0xb56d5963 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xb7ea1340 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xe61e192e caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x04aec8e4 can_send +EXPORT_SYMBOL net/can/can 0x1bc598dd can_rx_unregister +EXPORT_SYMBOL net/can/can 0xad3eb82b can_proto_unregister +EXPORT_SYMBOL net/can/can 0xb8b7b999 can_ioctl +EXPORT_SYMBOL net/can/can 0xcef9a993 can_proto_register +EXPORT_SYMBOL net/can/can 0xf3f22570 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x001cd923 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0196d0b6 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x05c86558 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x0875e9a5 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x12c76c9b ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x12fea8c9 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1325b780 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x139a24fd ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x17accde0 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x17b0a01a osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x1916427b ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x1c2776dd osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x1d30f557 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x1da49c76 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21722a0a ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x2907b257 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x2b51dda9 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x2c741862 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x2e5d1c61 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x3185330f ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x3384f97a ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3486c927 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x37cfb3dd ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3902f14b ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3ba2e159 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3cc8ba5d osd_req_op_alloc_hint_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 0x41fe78c3 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x42566b4c ceph_auth_create_authorizer +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 0x47179b7d ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x475f24be ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x48d59f89 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x4ed1b756 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x52ab2996 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x564276f9 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5914ef0e ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x699ab0b1 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x6a3f80a3 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c44e5c8 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x6cfa6101 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x6d48038b ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x6d6bea65 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x703198e8 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x77f2d072 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x7ae1dfd8 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x7e9cdaeb osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x815fb06d ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x847db50d ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x848f67df ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x86521175 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x890c3f9b ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x8c688a9a ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x8de92403 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x90af3578 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x9392ad49 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x9579eb6e ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9dfa679b ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa19b0ae4 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xa774f5be ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xad05f750 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae787776 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xaeaee7d0 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb13033ef ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xb37d2638 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xb3acc1eb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xc1107beb ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xc45b8db9 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc567d680 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc9063fde ceph_auth_update_authorizer +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 0xd77a8fb3 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd8d022e6 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xdacd9ef0 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xdb375b5c ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xe2c3fa17 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe3b48368 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xedaeae99 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xee6c5276 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xf19db977 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf65e4302 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xf740c6a4 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xfa82908c ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xfad10e03 osd_req_op_xattr_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2816fefa dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb35ba6fb dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4ff7e009 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x5f803c4f wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x60b834d6 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8d2edda7 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb8b303b1 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe0621472 wpan_phy_find +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x40f82324 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xf6039005 gue_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x23a55823 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x4cc8ed98 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa2178b6f ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc9abfa22 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xcd1e25fe ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfd23108f ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3ad53b75 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4e398f41 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x7e13cde6 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x074f2c4b ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x362fa45b ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xfeb539f0 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x2dfd0ecf xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x7d6ab357 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xa6ab59eb udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa6f7283a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xb8e9afb0 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe1508781 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xf4b109c3 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x12397e06 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4d233f63 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x7313815e ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x89d8d990 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xb3c35b4e xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x09974b18 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd3182254 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0bdc2a98 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1401988b ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1665f860 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x237e393d ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x414f7ce8 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x651cf752 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x97f58f48 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xacf7adcb 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 0x0defbfe4 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x104d8931 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x12a477c0 iriap_close +EXPORT_SYMBOL net/irda/irda 0x17301266 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x19697c67 irlap_open +EXPORT_SYMBOL net/irda/irda 0x22bfef51 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x26a59df8 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x315ff283 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x31f0095f irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +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 0x4e324165 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x528ebe80 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x5a97e82d irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x665efacd iriap_open +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 0x79c58aec irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x84811035 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x87538b31 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x8d4a3ec7 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 0xa112aa01 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xa60b6bbf irttp_flow_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 0xbcd3ef13 irias_object_change_attribute +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc9e0c28d irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xd7e1f34b irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xd8369807 irttp_open_tsap +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 0xe8ba1556 irlap_close +EXPORT_SYMBOL net/irda/irda 0xeb78333e hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xec242b93 hashbin_new +EXPORT_SYMBOL net/irda/irda 0xed75a1de irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xff08d213 irttp_connect_request +EXPORT_SYMBOL net/l2tp/l2tp_core 0xc4fb1681 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x62025b8f l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x14854212 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x266af609 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x4f788992 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x54b035c7 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xd79ba9e3 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xe7ab524b lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xec033d19 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xffca6e2d lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x149cb872 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3af71412 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x43bee325 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x8634b5c6 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xa833edff llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xb7a6b144 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xd34d66a0 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x011c6bf5 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0e045ebb ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x16540ffc ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x197df0bb ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x1d10b777 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x1e239ba7 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1e7df196 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x1ebf2e36 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x1f6a9c70 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x21351c3d ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2c656af9 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x31b0c569 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x3359420f ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x365817b2 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x37929342 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x391bc7d0 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x3b3c1f1b ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x3df77576 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x3e2e47c7 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x42a62625 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x44d52ab9 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x451288f7 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x48fbaa71 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4c4f5885 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x516ae91b __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x525da266 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x536924df ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x5c413e8d ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x5fd25adb ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x6840d3bf ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x699971b2 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x6c3ba57b __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6f314610 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x6f4a4eb4 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x70e3c9e9 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x72c9f25e ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x72d6872a ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7735c6e5 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x773bf608 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7c1ef616 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x814589cf ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x82cccd15 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x84a747f9 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x98644eb1 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x9879521f ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x9baff8f2 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x9c31d70b ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9df2a4b2 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9ee8ff40 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x9fe9619a ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xa0baa689 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa11546c6 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xab61b5d0 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xb328c2c5 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xbfc11fd9 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xc0b0dc6e ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xc5d32a77 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xc999118d ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xc9bd47f9 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xcc18c63f __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xccb78e99 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xccfc29ca ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd3bd5d4a ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xd68af72f ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xded82169 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdf3a5f46 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xe466e9e3 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe93b0455 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xeac018eb ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xead58793 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xebfc4973 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xee5c251e ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf6f380e7 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xf77aa35b ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xf85433f2 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xf89fecb9 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf8d08765 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xfa60fd05 ieee80211_wake_queues +EXPORT_SYMBOL net/mac802154/mac802154 0x4163f42d ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5adc3287 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x605b1125 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x74b0343e ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xac75bf1c ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xbca527eb ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xde10fcd0 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfe98be2f ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x03bcda12 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0b27b337 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0dc15d88 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x134af2cb ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1f2482f9 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x35256fba ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x42f5e8db ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x49008340 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x57866f32 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x697924f8 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7a7d1970 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbca390f2 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xca63a764 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc713720 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3c5b8972 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x8c4dbad5 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xff41c139 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x010dbe9b nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x023d5f0a nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x2c877a0b nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x51c0c282 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xa2888b36 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xd64763c7 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x1a85463b 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 0x59324350 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x5fe79109 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x67d341cb xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x689649f4 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x77657f7d 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 0xb1c5e03b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xb7050907 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xc8852188 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe514abf0 xt_register_targets +EXPORT_SYMBOL net/nfc/hci/hci 0x14e047c0 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x28b259bd nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x29419233 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x39c6cdb3 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x3c54f343 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3ce17105 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x41ae6c9c nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x467d0621 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x4aaff12e nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x50e7d184 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x6b5f9b44 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x712e48bc nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xa2f29792 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xa78fd64e nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb639c0a2 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xb9f38949 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc483e089 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xe80ad6db nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xe80eef78 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xe9d96674 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xf2f04584 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/nci/nci 0x0a357581 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x10154deb nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x1963b92e nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x2e589c8e nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x3bcfe7c2 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x3fd30e03 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x4a938af6 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x5010a062 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x6828862a nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x69b2a87f nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x853a7299 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8f00a0ac nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x95bfc092 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xa160e0d7 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xa3707b42 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xabb91adc nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb178e377 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xb606cdfc nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbeca2754 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc12793f6 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc33174a9 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xc6525e0f nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xccdaa537 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd4fded62 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xe2111418 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf209af2b nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xfc2b2e1a nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xfd905d0f nci_hci_set_param +EXPORT_SYMBOL net/nfc/nfc 0x0d5209c8 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x108b636e nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x21852663 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x2ad08377 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x34f51a10 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x3cef6114 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x3da9ed26 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x59d4c7c9 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x74d018b3 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x7d1c518f nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x82bb440c nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x8b0e6ff9 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x8c506321 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x99381411 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xa7b981cf nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xab5d4656 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xadee2e70 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xd24ffb8b nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0xdb248f20 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xf6a3fa62 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xf92a6347 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xfd23d6bb nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xfdb9284c nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xff26f6c9 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc_digital 0x2c97cabd nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5f952222 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb270fdf8 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xdbfc60f1 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x23d124f1 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x3d8746c5 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x69e60fac phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x6b03cbf9 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x727bd326 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xbd03b8e0 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xe12c20ee pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xe90e1941 pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2b3fe809 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3a90986e rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3fa3746d rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x49c460df rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6d026b6a rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6f1b067f rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7890387b rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7a0dd7fd rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7a61fb33 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8590b02c rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x93641700 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa3ec1bae rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbab2ebf8 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd9b1c2ce rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf5a7020b rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/sctp/sctp 0x83b19b67 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x941e1eef gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x9896dca7 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xd5cb6f4c gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x28057366 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x76293492 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x8c137d36 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x5f6997de wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xe2b91ec5 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x00ae66cb cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x034f1fa1 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x03ccc14b cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x0689dbb9 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x083e5ac7 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0b26c8da cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x0d8719b2 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x0f3e8c3d cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1143a3d0 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1506a6b6 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x16f783b0 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x19fd9028 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1a58a3ad cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x1e1db540 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x28096477 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2d89f717 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 0x415ee365 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x44b9b818 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x478560f4 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x49092514 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4b3fd3d1 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x4f891b1a wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x500622dc cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x5b8096c6 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x5ce2118d cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x5e28f653 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6adaf378 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6bfffa6d cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6e6e36bb cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x77d4843a cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x7eaf6436 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f6473ac regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8056d2c7 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x86be6c12 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8908a4d5 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8a517386 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8c3d84d7 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x8faf068b cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9049ec84 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x905b37a4 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x95ca1271 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x974c67fc cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9b9065d0 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x9c547f6b wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x9d89839d __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9f5b5779 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 0xa4a19775 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xad5bfa6a cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xae3d14ca freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xb2fd64d6 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xb42623a4 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xb4c07f42 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb795b9aa cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc05dca84 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xc3617e93 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xc47a7bff ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xc4c37504 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc71fa651 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xc8703d82 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcb074af4 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xcd921986 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xcd9b571c cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xcdc21130 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xce2bf03d ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xce559a1f cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xd2a0b349 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xda439443 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xde61a310 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xdf3608c8 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xdf6ac55a cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xe118555b cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe23ccb40 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe5cd15fc cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xe7d49933 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe97cd9e1 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xef03c7dd regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xef2699ff wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0f65227 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xf23cf314 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xf28d1d1f cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xf5e83794 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xfff05587 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/lib80211 0x6ef18ea7 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x87210e54 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x93bd542c lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xbb72bab7 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xd3918277 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe7a90d0b lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0xb205fab8 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x10fad5a1 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 0x262986e6 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 0x53cbe295 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 0x799c0b8a 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 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 0xd8cb8243 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 0x70cc5b83 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 0x204997b4 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x03128120 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x06b5ec7d snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x0f014f45 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x17a63ee6 snd_ctl_rename_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 0x22d13f37 snd_jack_new +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 0x2ee463d9 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x323b78f3 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 0x3d71d653 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x3dbccd65 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x43338910 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x460d6752 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x5844adcf snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x6116050b snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x6a685d16 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x73e06182 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x7426ebed snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x77b20f4a snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x7d4a4e46 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8531dc63 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9ced70fe snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x9d5eb64a 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 0xa21c449d snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xa554dc4c _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xa6916733 snd_cards +EXPORT_SYMBOL sound/core/snd 0xa77e2dd1 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xaaf91928 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xada5b42a snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xb2c2bf6f snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbd7a5d8b snd_info_register +EXPORT_SYMBOL sound/core/snd 0xc4dad9d7 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xc5ecfc88 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xc780820f snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xc926eff9 snd_device_free +EXPORT_SYMBOL sound/core/snd 0xcec32a61 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xd37eb1ef snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xd41ab0e6 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xd4b0fb8c snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xde7ea894 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xe2fcb345 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xea230cbb snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xecd87df1 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xf6a46ce0 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xf6ebf7e9 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xfbe1f83e snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xfc41bea7 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xfc4a4dd4 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xfda443f0 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xff703111 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x725ae344 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x045f3da1 snd_pcm_hw_rule_add +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 0x17960076 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1f53abc0 snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x24622bb7 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x29dc5bca snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x33f10674 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x35caa840 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x3911bd02 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x395c269e snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL sound/core/snd-pcm 0x3dab229c snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x43c68800 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x473b3d60 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x4e8a2a7f _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 0x55c103c9 snd_dma_alloc_pages +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 0x6316721b snd_pcm_lib_writev +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 0x69e07307 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x6ab353b5 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6f920a8d snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x72e9782f snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x730c2270 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x7faef141 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x8057c19e snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x84b9f639 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x8540e7c8 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x96759787 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x971a9ab6 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x9778f769 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x980df966 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x9a5aa6e2 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x9b17acf4 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x9eb654da snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x9f365b0f snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa66da8f2 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xaecb2661 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xaf88ad05 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xb86b4089 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbdd5bfe3 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xc1c7c8a5 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xca34c226 snd_sgbuf_get_chunk_size +EXPORT_SYMBOL sound/core/snd-pcm 0xd0f8705f snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd17db86f snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xd7528481 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xd9f5796c snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xdf7f0eea snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe852c3e6 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xee1ddd82 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xf8947276 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xfdcb5e96 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xfef06f57 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3204be0e snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b8f5c5c snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4f89f08c snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6a4e759b snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6eb940c9 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7a4e5917 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x849a360b snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x84a83cb7 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x863d41ae snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x906d70a3 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa879894d snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xad96d35d snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb6a2d5a5 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdaa4383d snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdeccd369 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe03b483f snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe3d8a1f9 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xef7e0d96 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfb51cb68 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-timer 0x212de071 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x429e5ce7 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x5900a909 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x87f7bb9f snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x89997ce1 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x8c8fa3ae snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x93e12953 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x9e6c82b4 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xaa13dbfe snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xb86b886e snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0xe96bbf29 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xed6cc6a7 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xf072ef5c snd_timer_global_register +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 0xcccd010d snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0de83ed8 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0e95e2c5 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1dd485eb snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2ac7a932 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4b9b7a3d snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8279a020 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8db9d600 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb8e949a0 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcfb7312a snd_opl3_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x100c6b8c 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 0x3a93bfd4 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x48f65a54 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5c1e5e04 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x759706ca snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7ec55920 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc83bd140 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xed4775ae snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xef47bcb6 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x13390421 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x15bc3e1c amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d7ea74f iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2ab76736 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2be211ec amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x318146e6 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3470fc73 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x39f2650a amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4616512a cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x551e0bf3 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6ddd289e amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e70287b snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x823059c4 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x85f5db73 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8c89fad4 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d6bb7b5 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x94b264b4 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97bbeeaf cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99f36d27 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa314d502 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xad90b847 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc0bdb305 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc726b3ed avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcb4cc562 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcc58d435 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbfcfc6f avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe2a2acb2 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe2d6e0e1 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe4edafa9 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf53474ff amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfa73eadf amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfe973b2d fw_iso_resources_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xa453b9de snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe6b86172 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x001a80ec snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0a705840 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1a189e5f snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7af56166 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa10506b9 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xde681814 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe5b94c85 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xefadf8d5 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x155a9015 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2731b2ce snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5ebce458 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6da1ac3f snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x7863c262 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc328abf0 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x69392049 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x78f60a14 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9553d689 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xad5ed7c4 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xeff7d0bb snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf8b461ee snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x05f6c67a snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x323f2f06 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4be40b5c snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x650e94fc snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9937ad28 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xea0a39c9 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0cb4c454 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x371c1238 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8d9ee0bd snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9999c138 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xca825070 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe63348e9 snd_i2c_device_free +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x038434b3 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2574de67 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x40eec95e snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4d413b94 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4f4685a2 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x57b83260 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5dd3d883 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbc299318 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xdb19b327 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xe448e82b snd_sbmixer_new +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c24827f snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x23eb997b snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4d12f01c snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5b8f9c1f snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5e927ae2 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x694833ae snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6d07e548 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6d3263b4 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6db9188e snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8a6fcb1a snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbd25e636 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc5fdb009 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc6018ca6 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcc3ba7a3 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd3fea005 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xddd54a74 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe5ded35e snd_ac97_write +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x817c8cd4 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2888ae78 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6d93d327 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7a1769e2 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xaaccb29c snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xca291f9f snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xda702fd3 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfcc7b996 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfd837344 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfdf7a2a7 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x631b0954 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7eddbfcb snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x85369063 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x11dd0f95 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x11e2e629 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1910a00e oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21e1dd71 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2b4b2ab8 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x35196dae oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x42eed0f2 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x528fd06d oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x54921b21 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x572d759b oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x681bba51 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6972f90d oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa315a43a oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa3a4221e oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa6e06560 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaddc9077 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbf9d62eb oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc2faeed4 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc55dd582 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc62d67cd oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdc0a044b oxygen_write32_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1748339b snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x257267ff snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2c1d563d snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3e17d07b snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6f6e4c44 snd_trident_stop_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x38eeef27 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xce5ed66e tlv320aic23_probe +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x6d008965 sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0x9644eb70 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x4df07382 register_sound_special +EXPORT_SYMBOL sound/soundcore 0x5c46f1d3 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x83fba6c6 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x8bf8bddb sound_class +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xac40be45 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xf703691e register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1d11979e snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x25b37caf snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x392dfb64 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 0x886e4735 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x934ea1df snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa7e68be7 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/snd-util-mem 0x44fe71af snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x66c8cdf2 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x85e6a5bc snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x9cb605ef snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xbb334e16 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd8e84b0e __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe755df45 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xfea45f72 __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 0xd1f19ea5 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL ubuntu/hio/hio 0x1ebbf664 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0x247f30e8 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x5c7b8ae4 ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0x5ca561f9 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x77db9006 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x93bab7b1 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x97e972c7 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0xa2f4b612 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xa35c3d02 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0xb950a3d0 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0xdf60c0bf ssd_submit_pbio +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 0x000bbfb2 amd_iommu_device_info +EXPORT_SYMBOL vmlinux 0x001bbbc5 loop_backing_file +EXPORT_SYMBOL vmlinux 0x003b2829 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x003e1047 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x006886c8 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0076ee07 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x0090e1c5 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x00ab78e6 set_pages_nx +EXPORT_SYMBOL vmlinux 0x00aca244 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x00aee80d twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x00b1cd4b mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00bc467e inet6_ioctl +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e65a49 generic_setxattr +EXPORT_SYMBOL vmlinux 0x00ec027f __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0101e436 skb_put +EXPORT_SYMBOL vmlinux 0x010c5706 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x0116aa29 send_sig +EXPORT_SYMBOL vmlinux 0x012da13e clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x01391b30 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x013ae875 seq_write +EXPORT_SYMBOL vmlinux 0x01552812 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x0158056f pcim_iounmap +EXPORT_SYMBOL vmlinux 0x0164587c blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x016bba17 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x018f76f1 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x01a0b728 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x01a53604 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x01c2021c simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x01d43ddc dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x01ec71e8 touch_buffer +EXPORT_SYMBOL vmlinux 0x01ed8d90 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0213fd92 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x022e7267 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +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 0x0280435f mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x028af88a param_set_bint +EXPORT_SYMBOL vmlinux 0x028b6747 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02c05910 tcf_register_action +EXPORT_SYMBOL vmlinux 0x02d27e53 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x02e8a62d pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02fa43f4 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x03009a46 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x0322f29a pcie_get_minimum_link +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 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037fb25a __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x0390db54 vc_resize +EXPORT_SYMBOL vmlinux 0x03a3e1ef neigh_ifdown +EXPORT_SYMBOL vmlinux 0x03afd993 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x03babceb dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x03cb68a3 console_start +EXPORT_SYMBOL vmlinux 0x03d22164 __get_user_pages +EXPORT_SYMBOL vmlinux 0x03db7cee vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x03eabfea compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x03ec9815 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x03f277c3 up_write +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03fd6367 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ba24 idr_for_each +EXPORT_SYMBOL vmlinux 0x0436feae tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x047316ac netdev_crit +EXPORT_SYMBOL vmlinux 0x047c9a90 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04b197f2 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x04bc5e76 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x04c62fd7 __memset +EXPORT_SYMBOL vmlinux 0x04cc8238 page_put_link +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04d96cb3 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04ee0902 inc_nlink +EXPORT_SYMBOL vmlinux 0x0500f628 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05185fee agp_bridge +EXPORT_SYMBOL vmlinux 0x05234cb9 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05394124 __break_lease +EXPORT_SYMBOL vmlinux 0x053d9048 generic_perform_write +EXPORT_SYMBOL vmlinux 0x05533775 nf_register_hook +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x056c48c9 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x05710ec3 seq_lseek +EXPORT_SYMBOL vmlinux 0x05954b9c vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x059af003 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x059e6e44 tcp_check_req +EXPORT_SYMBOL vmlinux 0x059f69f5 to_nd_pfn +EXPORT_SYMBOL vmlinux 0x05a0e544 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x05e9ac41 pci_select_bars +EXPORT_SYMBOL vmlinux 0x05eef15c vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x05fa0ae0 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x06052f8d __memmove +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061bd7e0 pm8606_osc_enable +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 0x0637e219 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x06540e34 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x0656ee00 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x0679981a rt6_lookup +EXPORT_SYMBOL vmlinux 0x067a9691 d_alloc +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x069539ea uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x06ad484b kernel_listen +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06ca7c70 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x06d13021 set_create_files_as +EXPORT_SYMBOL vmlinux 0x06e42bf1 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x06ee6e5b padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x06f4f796 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x07112326 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x071cdb9a revert_creds +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072d2bc2 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0754e7e4 nf_log_packet +EXPORT_SYMBOL vmlinux 0x075653bd dup_iter +EXPORT_SYMBOL vmlinux 0x075f908c scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x07616337 ps2_end_command +EXPORT_SYMBOL vmlinux 0x07641bde pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x077d2113 request_key_with_auxdata +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 0x07aa55f0 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x07aa7efd blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x07c09b61 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07e36239 d_genocide +EXPORT_SYMBOL vmlinux 0x07e3f06a register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x07ef87aa make_kuid +EXPORT_SYMBOL vmlinux 0x07f2a6fb remap_pfn_range +EXPORT_SYMBOL vmlinux 0x081af91c netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082f5942 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x086dc5c1 kernel_connect +EXPORT_SYMBOL vmlinux 0x0870d03f set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x0871782e ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x08775413 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08a22f5c i8042_install_filter +EXPORT_SYMBOL vmlinux 0x08d0eaa9 napi_complete_done +EXPORT_SYMBOL vmlinux 0x08e4e5ff __lock_page +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08eea599 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x0901f57d jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x0924cbe7 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x0937d3c6 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x093e9b0c kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x093f0e70 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x095440b2 poll_freewait +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x0991e694 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x09aa11d6 ether_setup +EXPORT_SYMBOL vmlinux 0x09c26244 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cb92cc param_get_short +EXPORT_SYMBOL vmlinux 0x09d1ea0f inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x09d216d0 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d97464 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x09f232c5 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x09f2d87b blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x09f55274 bio_init +EXPORT_SYMBOL vmlinux 0x0a0d6df1 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2b277d clkdev_add +EXPORT_SYMBOL vmlinux 0x0a31ee26 bfifo_qdisc_ops +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 0x0a7aea47 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x0a992f73 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa8f9df block_invalidatepage +EXPORT_SYMBOL vmlinux 0x0acb1e4f pci_bus_get +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 0x0b400658 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b66861e xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x0b6fa86b may_umount_tree +EXPORT_SYMBOL vmlinux 0x0b737389 pci_get_class +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b88a900 netdev_update_features +EXPORT_SYMBOL vmlinux 0x0b8b8d64 deactivate_super +EXPORT_SYMBOL vmlinux 0x0b8fd949 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b96f544 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x0b9a1eb9 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x0bb60c38 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd5471d sock_wmalloc +EXPORT_SYMBOL vmlinux 0x0bd804c8 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x0c192afd reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x0c1b6e8a skb_seq_read +EXPORT_SYMBOL vmlinux 0x0c1d8aa7 __alloc_skb +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c24acaa security_path_link +EXPORT_SYMBOL vmlinux 0x0c4379d7 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x0c43f963 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c561dc2 dump_truncate +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5eca2d acpi_device_hid +EXPORT_SYMBOL vmlinux 0x0c6445e3 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c9daebc vfs_readf +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb35da0 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0cf280e1 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x0cf371dd genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x0cfa1146 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x0d15defd blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x0d2883d2 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x0d30bdc0 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x0d33df44 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d7e2840 input_set_capability +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0d815b90 follow_down +EXPORT_SYMBOL vmlinux 0x0d93610d locks_init_lock +EXPORT_SYMBOL vmlinux 0x0d98cb33 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dc4d443 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0df27453 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x0df777c9 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x0dfb104b update_region +EXPORT_SYMBOL vmlinux 0x0dfc3a89 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x0e1cef78 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x0e33df9b agp_bind_memory +EXPORT_SYMBOL vmlinux 0x0e3757ab get_task_io_context +EXPORT_SYMBOL vmlinux 0x0e472d72 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x0e562e16 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x0e62d27f nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x0e6b2e79 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e7837bc iov_iter_advance +EXPORT_SYMBOL vmlinux 0x0e9a252e __serio_register_driver +EXPORT_SYMBOL vmlinux 0x0ead7af0 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x0ebd95b3 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec5ca00 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0ee256a1 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0a439b tty_register_device +EXPORT_SYMBOL vmlinux 0x0f0a4772 nd_pfn_validate +EXPORT_SYMBOL vmlinux 0x0f18a8d3 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x0f21df43 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x0f298b64 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5fc3a3 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x0f6868b4 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7241d5 first_ec +EXPORT_SYMBOL vmlinux 0x0f784976 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7dfa87 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb346d1 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x0fb8ad79 vfs_writev +EXPORT_SYMBOL vmlinux 0x0fcb9817 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fd9341e devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff6e95a dev_uc_init +EXPORT_SYMBOL vmlinux 0x0ffc4f4c xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x10087545 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x10202b9d mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x1023eca5 xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x1033a655 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107affcb devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x107f5468 dquot_acquire +EXPORT_SYMBOL vmlinux 0x1088a7f2 netif_device_detach +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x10a2e7b8 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x10aa27fa bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x10acc6ab generic_listxattr +EXPORT_SYMBOL vmlinux 0x10d0e52c ps2_handle_response +EXPORT_SYMBOL vmlinux 0x10d1fa4b d_make_root +EXPORT_SYMBOL vmlinux 0x10e2062c clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10fcfd06 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1111628b fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1189caec set_security_override +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11b92d25 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x11ef8d9f vc_cons +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120cedff proc_mkdir +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x122216c8 padata_free +EXPORT_SYMBOL vmlinux 0x1232ee7e pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x1241b175 security_mmap_file +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x1270b075 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x1274ba51 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x127eca02 input_flush_device +EXPORT_SYMBOL vmlinux 0x12820d0a request_key_async +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b0471d phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x12b76a53 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x12bb76ee input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x12d1dc4b blk_get_request +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12f9c1b9 release_pages +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x130dc0a1 netpoll_setup +EXPORT_SYMBOL vmlinux 0x130ecfc4 input_register_device +EXPORT_SYMBOL vmlinux 0x130f25bd tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x130f267e rfkill_alloc +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13285ff7 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13308a01 file_ns_capable +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1331f9b8 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x1375b429 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x1378ee6a n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x139c67c4 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x13aac9d5 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x13c3413b mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e45efb blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x14097dfc simple_pin_fs +EXPORT_SYMBOL vmlinux 0x140f6d8e sk_free +EXPORT_SYMBOL vmlinux 0x14308212 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x144b5771 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x1484a54a tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x14ca3936 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x14cb07c8 fget +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14e0bdf3 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x14eeb196 get_disk +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x15273d54 simple_open +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1552224b kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x156cabb6 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x15895568 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0x1594ab84 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x15a44574 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c01747 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15ce5d56 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x15dad792 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x15e83b8a noop_fsync +EXPORT_SYMBOL vmlinux 0x15ebad12 key_link +EXPORT_SYMBOL vmlinux 0x1606312d filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x161dbe41 put_io_context +EXPORT_SYMBOL vmlinux 0x162cfda9 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x1632666c jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x16546a88 vga_get +EXPORT_SYMBOL vmlinux 0x16598eaa __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x16706c00 nf_reinject +EXPORT_SYMBOL vmlinux 0x1670874c blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x167aeb84 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x16864fd0 led_blink_set +EXPORT_SYMBOL vmlinux 0x1690df7c param_get_string +EXPORT_SYMBOL vmlinux 0x16a464a6 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x16c8fc34 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ea8f99 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x1747d8d4 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x175eec94 iget_failed +EXPORT_SYMBOL vmlinux 0x177fcb1b elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x1787978c ip_setsockopt +EXPORT_SYMBOL vmlinux 0x178fc438 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b51e5e mount_pseudo +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17ff04b3 dquot_file_open +EXPORT_SYMBOL vmlinux 0x18290358 add_disk +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183e8f56 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1857454d register_filesystem +EXPORT_SYMBOL vmlinux 0x185a25fd security_d_instantiate +EXPORT_SYMBOL vmlinux 0x187262e2 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x18799286 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188dd69f compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x1890af67 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18b72573 register_kmmio_probe +EXPORT_SYMBOL vmlinux 0x18ca6192 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x18d332e2 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ec4da4 key_alloc +EXPORT_SYMBOL vmlinux 0x18ed9e39 prepare_creds +EXPORT_SYMBOL vmlinux 0x18f2c9dd jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x19119f53 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x19178c6a set_pages_uc +EXPORT_SYMBOL vmlinux 0x191d7126 put_tty_driver +EXPORT_SYMBOL vmlinux 0x193af6d7 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x19458495 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x195d1e62 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x195ea055 sock_create +EXPORT_SYMBOL vmlinux 0x197d7d99 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x197e62f7 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x198509a4 param_get_ullong +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a7d241 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x19acce15 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19eeda01 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x19f921d0 ps2_drain +EXPORT_SYMBOL vmlinux 0x1a247261 tty_vhangup +EXPORT_SYMBOL vmlinux 0x1a3116e8 unregister_netdev +EXPORT_SYMBOL vmlinux 0x1a3119fe disk_stack_limits +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a8c97d9 d_move +EXPORT_SYMBOL vmlinux 0x1a906032 register_cdrom +EXPORT_SYMBOL vmlinux 0x1a9190ac tcp_make_synack +EXPORT_SYMBOL vmlinux 0x1a970465 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x1abd7ff2 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x1af01016 agp_free_memory +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b1516eb init_net +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b304008 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x1b424191 register_qdisc +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b5fcdc6 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b66fec1 simple_write_end +EXPORT_SYMBOL vmlinux 0x1b7c255b netif_device_attach +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b92d78c udp_set_csum +EXPORT_SYMBOL vmlinux 0x1b9de8db __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bcd94ea __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x1bdd3eaa try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1bf46f9e gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x1c00cc64 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x1c03c69f d_lookup +EXPORT_SYMBOL vmlinux 0x1c1d43f3 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x1c49485c get_empty_filp +EXPORT_SYMBOL vmlinux 0x1c6750c0 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x1c675668 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x1c7fac02 dst_init +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c8f9852 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x1c9f34cd abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x1ca0a5a8 kernel_accept +EXPORT_SYMBOL vmlinux 0x1ca337d5 param_set_ushort +EXPORT_SYMBOL vmlinux 0x1cb31356 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x1cbce78f tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x1cd6d430 dma_pool_create +EXPORT_SYMBOL vmlinux 0x1cda0268 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x1cff9445 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d22c0ac pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x1d40319c tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x1d60869a mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x1d9bb41e cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x1da724c2 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x1db7706b __copy_user_nocache +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dce7589 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x1dd48ede tcp_v4_md5_hash_skb +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 0x1dea6353 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x1dee9a09 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x1df3c046 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x1dfc4afc param_ops_long +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e077f62 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e2158a8 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e26f496 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x1e4ba85a mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x1e52f260 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x1e5f21ca security_path_rmdir +EXPORT_SYMBOL vmlinux 0x1e67198b __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e755ff1 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x1e788584 audit_log_start +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ead0d23 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x1eb3b446 poll_initwait +EXPORT_SYMBOL vmlinux 0x1eb4876d xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ed8b34a sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x1f1d7980 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f9f6272 elv_add_request +EXPORT_SYMBOL vmlinux 0x1fb8f37d noop_qdisc +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc42ef0 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe77b59 sk_dst_check +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff05a43 drop_super +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2002a5e6 xfrm_state_check_expire +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 0x2011de37 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x2012b151 clear_nlink +EXPORT_SYMBOL vmlinux 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x2026447d pci_biosrom_size +EXPORT_SYMBOL vmlinux 0x202d9ec6 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x20410af9 d_find_alias +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 0x205a89a3 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x205c49ab sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x205cd18d bio_copy_data +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20738394 dquot_destroy +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ace831 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x20aebaf3 dev_activate +EXPORT_SYMBOL vmlinux 0x20b006e3 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x20b0d474 netlink_unicast +EXPORT_SYMBOL vmlinux 0x20b10f33 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e412b4 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x20e4aa3c kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x20eadeb6 ip_compute_csum +EXPORT_SYMBOL vmlinux 0x20ec170e i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20ece426 import_iovec +EXPORT_SYMBOL vmlinux 0x20f8cf31 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x20fc8c47 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x210dacdf tcp_child_process +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x213fdf2b d_obtain_alias +EXPORT_SYMBOL vmlinux 0x215a5f68 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x215c31d5 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x21924c42 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21d2a23a nf_log_unregister +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x2220ecb7 proc_set_size +EXPORT_SYMBOL vmlinux 0x222d9cfd phy_attach +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2230294c pnp_get_resource +EXPORT_SYMBOL vmlinux 0x2257af77 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x225bca97 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x2263890d skb_checksum_help +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22820fd9 build_skb +EXPORT_SYMBOL vmlinux 0x228d969a security_inode_permission +EXPORT_SYMBOL vmlinux 0x22b081c5 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c2724b d_drop +EXPORT_SYMBOL vmlinux 0x22c6cc67 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2335f326 security_path_symlink +EXPORT_SYMBOL vmlinux 0x234a4f1e bio_put +EXPORT_SYMBOL vmlinux 0x236618a6 nvm_end_io +EXPORT_SYMBOL vmlinux 0x237e6c66 inet_del_offload +EXPORT_SYMBOL vmlinux 0x238f5141 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x2392e577 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x2399c2fe __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x23a3ed91 kmem_cache_alloc_node +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 0x23cf97db vm_event_states +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240e4740 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x240ee659 mmc_request_done +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x243aceb0 dev_mc_del +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244bda07 __sock_create +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x2487276a security_path_rename +EXPORT_SYMBOL vmlinux 0x249bd420 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x24a2e85a vfs_create +EXPORT_SYMBOL vmlinux 0x24c6702e nf_setsockopt +EXPORT_SYMBOL vmlinux 0x24dd1000 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x24e4dae8 ata_port_printk +EXPORT_SYMBOL vmlinux 0x24f12648 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x24fa0e9c agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2505ddcf __vfs_write +EXPORT_SYMBOL vmlinux 0x25089aad clkdev_alloc +EXPORT_SYMBOL vmlinux 0x2514b024 generic_readlink +EXPORT_SYMBOL vmlinux 0x25230c7a cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25283cbd alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x2529834d pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x2535fb2b ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x25491d26 d_instantiate +EXPORT_SYMBOL vmlinux 0x2551ffe1 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x256954e4 vga_switcheroo_register_audio_client +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 0x258f09f8 dma_ops +EXPORT_SYMBOL vmlinux 0x25cd061e gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x25d87458 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x26247e00 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x2627294b sock_init_data +EXPORT_SYMBOL vmlinux 0x26286cf2 skb_make_writable +EXPORT_SYMBOL vmlinux 0x263a95ca mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x265140a9 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x2655463f phy_start_aneg +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x26857972 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x2687ebe3 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x268f6b63 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x26917a94 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x26948d96 copy_user_enhanced_fast_string +EXPORT_SYMBOL vmlinux 0x26aa1dc0 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x26bcb992 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x2714e79d xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x271bca79 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x271dd2b2 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x2721c813 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x2731649e sk_net_capable +EXPORT_SYMBOL vmlinux 0x2733ed42 mmc_free_host +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2759b491 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x2777537b devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x277aa192 blk_register_region +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 0x27c33efe csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x27d3aa59 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x280b7425 dentry_open +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x283475f3 seq_vprintf +EXPORT_SYMBOL vmlinux 0x28546382 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x287e8347 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x2885ebd5 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x288becc9 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x288df7a5 skb_recv_datagram +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 0x28b7d6f2 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x28c53470 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28ec5f13 d_rehash +EXPORT_SYMBOL vmlinux 0x28f25fa0 block_commit_write +EXPORT_SYMBOL vmlinux 0x28f6c815 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x292c0723 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x294f1384 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2977a12f blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x29782c50 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x29a28dee max8998_update_reg +EXPORT_SYMBOL vmlinux 0x29c7baba __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x29ed0351 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x29f08f3a abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3e80f9 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x2a42aefa udp_sendmsg +EXPORT_SYMBOL vmlinux 0x2a4c026b rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a579a5f ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x2a61ce47 set_anon_super +EXPORT_SYMBOL vmlinux 0x2a75dc1c inet_sendmsg +EXPORT_SYMBOL vmlinux 0x2a7c7e08 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x2aa6d728 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2aaf8af6 fb_find_mode +EXPORT_SYMBOL vmlinux 0x2ab5c682 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x2ab95cfb param_ops_int +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad4b32a blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x2adcc76d kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x2ae94178 pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x2b05a21b intel_gtt_get +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b12f70c phy_attach_direct +EXPORT_SYMBOL vmlinux 0x2b18fd5d dquot_transfer +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b5c1dcf clear_inode +EXPORT_SYMBOL vmlinux 0x2b6cef1c bioset_create_nobvec +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 0x2bbe5bb6 tty_register_driver +EXPORT_SYMBOL vmlinux 0x2bc724da blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x2bcda46a blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x2bf86af2 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c04a54b alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x2c182811 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c5b3e8c param_set_byte +EXPORT_SYMBOL vmlinux 0x2c791085 sk_alloc +EXPORT_SYMBOL vmlinux 0x2c79ccdb mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x2c8025ee neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2cb1c170 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x2cc09857 register_quota_format +EXPORT_SYMBOL vmlinux 0x2cc3922d fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2ce1fba2 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x2ce8d957 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d186458 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d374d4e cfb_imageblit +EXPORT_SYMBOL vmlinux 0x2d47cf11 elevator_init +EXPORT_SYMBOL vmlinux 0x2d4d0952 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x2d53ace4 dev_mc_add +EXPORT_SYMBOL vmlinux 0x2d5b5d8d shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x2d66c00e fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x2d6d3ab2 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x2d95bf36 path_nosuid +EXPORT_SYMBOL vmlinux 0x2db6e854 scsi_host_alloc +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 0x2e01011e nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e0e6e9c xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x2e165c14 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e245c94 __check_sticky +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e4258fd devm_memremap_pages +EXPORT_SYMBOL vmlinux 0x2e43bdbf page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e61f642 path_get +EXPORT_SYMBOL vmlinux 0x2e88e531 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x2e8cf9d6 put_page +EXPORT_SYMBOL vmlinux 0x2ea3bd02 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x2ec85b57 input_get_keycode +EXPORT_SYMBOL vmlinux 0x2ed158e9 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x2eda18db sock_efree +EXPORT_SYMBOL vmlinux 0x2ee0c939 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x2eedc0ec blk_run_queue +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f004496 dcb_setapp +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f2e07fd dump_trace +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f477758 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x2f4ba0a2 genlmsg_put +EXPORT_SYMBOL vmlinux 0x2f5b01d1 blk_free_tags +EXPORT_SYMBOL vmlinux 0x2f629415 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x2f64f89f cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2f650a21 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x2f82842b tcp_shutdown +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbab4ec pci_get_slot +EXPORT_SYMBOL vmlinux 0x2fe1044a netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x2ff26056 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x2ff7b97a ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x300b3dac __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x30148acb udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x303812d9 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x304895bc proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x30493a0f lookup_bdev +EXPORT_SYMBOL vmlinux 0x305af094 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x3065bfed mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x306a4c4c elevator_alloc +EXPORT_SYMBOL vmlinux 0x306cb3a0 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x308ac0e3 inet6_offloads +EXPORT_SYMBOL vmlinux 0x308db659 phy_driver_register +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a8b2b9 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30c44530 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x30da2846 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f1cf7c mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x30f2a728 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310a99e2 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x310d73d7 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x31175336 inet_frag_find +EXPORT_SYMBOL vmlinux 0x3117ae87 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x31664049 keyring_search +EXPORT_SYMBOL vmlinux 0x3167a0d6 make_kgid +EXPORT_SYMBOL vmlinux 0x31715567 inode_init_once +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3194410d max8925_reg_read +EXPORT_SYMBOL vmlinux 0x31a1452d __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x31a54c54 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31b51af2 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x31c036e2 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31eefc84 fb_blank +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x3216c7fc input_grab_device +EXPORT_SYMBOL vmlinux 0x32439e18 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x324585c8 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x324fe8c6 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x3269567e iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x3279a7d2 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x32925ee1 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x329d3e66 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x32a578e0 input_allocate_device +EXPORT_SYMBOL vmlinux 0x32a7285d blk_start_request +EXPORT_SYMBOL vmlinux 0x32b19cf4 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x32c0c5ef __free_pages +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x330817b9 seq_pad +EXPORT_SYMBOL vmlinux 0x332c0877 have_submounts +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x334e35a6 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x3356b90b cpu_tss +EXPORT_SYMBOL vmlinux 0x33662ad5 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x33698aa6 dev_get_stats +EXPORT_SYMBOL vmlinux 0x339d92c2 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x33a97129 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c21b9c input_reset_device +EXPORT_SYMBOL vmlinux 0x33c3eee8 elv_rb_del +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d07498 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x33d8ca19 inode_permission +EXPORT_SYMBOL vmlinux 0x33e417bc simple_nosetlease +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x3407f1e4 current_fs_time +EXPORT_SYMBOL vmlinux 0x341950ee xattr_full_name +EXPORT_SYMBOL vmlinux 0x34210666 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x34336a63 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x343a443c ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x34634ab5 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x3463d8bf create_empty_buffers +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3479c984 skb_clone +EXPORT_SYMBOL vmlinux 0x347a0690 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x3488a141 param_ops_uint +EXPORT_SYMBOL vmlinux 0x348a33de skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x3490ddce blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x349213ef cpu_core_map +EXPORT_SYMBOL vmlinux 0x3498aae2 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x349ac4a7 dm_get_device +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34b3c8a4 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x34bc4e6c wait_iff_congested +EXPORT_SYMBOL vmlinux 0x34cdc6b3 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x34d15189 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x34ee02d5 get_super_thawed +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fc9494 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x35025798 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351bbfb0 flow_cache_init +EXPORT_SYMBOL vmlinux 0x3523d1fa dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x35405462 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3568d983 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x356d5574 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x356ff02c tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x3572c9ae skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x35737bb5 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x3591c3fb tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35a96bb6 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x35b8a1d6 sync_blockdev +EXPORT_SYMBOL vmlinux 0x35be21e6 dev_emerg +EXPORT_SYMBOL vmlinux 0x35c2a8a1 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x35cc436a __quota_error +EXPORT_SYMBOL vmlinux 0x35d8b02f trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x35e35fd7 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360c1da6 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x360cf4f7 submit_bh +EXPORT_SYMBOL vmlinux 0x361aff28 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x362d51df inet_getname +EXPORT_SYMBOL vmlinux 0x36319f31 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x363780d6 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x3637c181 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x364632a8 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x3649d518 simple_link +EXPORT_SYMBOL vmlinux 0x36562193 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x36739911 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36abb8a5 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x36b1a520 account_page_redirty +EXPORT_SYMBOL vmlinux 0x36b5778d pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36d9409d ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x36d9863e scsi_register_interface +EXPORT_SYMBOL vmlinux 0x36e441ca unload_nls +EXPORT_SYMBOL vmlinux 0x36e8126c sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x36f98e80 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x36ff31ed jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x3701a196 csum_partial_copy_to_user +EXPORT_SYMBOL vmlinux 0x37030d30 inet_listen +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x3731af40 free_task +EXPORT_SYMBOL vmlinux 0x37378079 dev_crit +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37474c4d secpath_dup +EXPORT_SYMBOL vmlinux 0x37603627 bio_chain +EXPORT_SYMBOL vmlinux 0x37756a95 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x377e6ba8 pci_map_rom +EXPORT_SYMBOL vmlinux 0x37837140 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x378aa074 ll_rw_block +EXPORT_SYMBOL vmlinux 0x378cca99 udp_ioctl +EXPORT_SYMBOL vmlinux 0x3795be88 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37bb4737 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x37bca4a9 install_exec_creds +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37bf8911 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e0e510 submit_bio +EXPORT_SYMBOL vmlinux 0x37e593ea __breadahead +EXPORT_SYMBOL vmlinux 0x37fed682 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x380d2c61 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x381137a5 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381b2958 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x381f6759 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x386655c5 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38a3317c unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38bea032 bio_map_kern +EXPORT_SYMBOL vmlinux 0x38bfd946 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x38cabef9 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x38d91e2a dev_get_by_name +EXPORT_SYMBOL vmlinux 0x38f33bed dump_fpu +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x390b5752 kset_unregister +EXPORT_SYMBOL vmlinux 0x392121fb nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x39341063 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394d3d4c neigh_table_clear +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395d37a1 mount_ns +EXPORT_SYMBOL vmlinux 0x39824687 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x3986032c truncate_setsize +EXPORT_SYMBOL vmlinux 0x3991c3c2 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x3996295d do_splice_direct +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 0x39a46064 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x39a8578a vme_slave_request +EXPORT_SYMBOL vmlinux 0x39b18edd key_validate +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bce291 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x39dd9223 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x39de4f0e reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x39e74e07 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x39ef30b2 simple_setattr +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a04ea5e filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a130feb cdev_init +EXPORT_SYMBOL vmlinux 0x3a18bda1 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x3a2ab578 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a37a701 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x3a403374 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x3a434651 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x3a817ec0 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x3a8ae35f xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x3a9a85c2 fb_pan_display +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ab2d54c search_binary_handler +EXPORT_SYMBOL vmlinux 0x3ab84320 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x3abb6436 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x3ac2373b blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x3ae7c58b bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x3af0997b ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x3afd1463 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x3b2b7038 seq_release_private +EXPORT_SYMBOL vmlinux 0x3b331b6a inet6_add_offload +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b8598b5 sget_userns +EXPORT_SYMBOL vmlinux 0x3b922675 generic_fillattr +EXPORT_SYMBOL vmlinux 0x3b970766 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x3b9a80ba flush_old_exec +EXPORT_SYMBOL vmlinux 0x3b9e1f33 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bbaec3c add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x3bc50ad3 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x3bcd2b13 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x3bda2263 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x3becdbea kernel_bind +EXPORT_SYMBOL vmlinux 0x3bf71917 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x3c0244c8 param_set_charp +EXPORT_SYMBOL vmlinux 0x3c16240a fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c5eafb6 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x3c6e7edb pci_set_power_state +EXPORT_SYMBOL vmlinux 0x3c7e68d8 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9ecd13 from_kprojid +EXPORT_SYMBOL vmlinux 0x3ca4c43b filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x3cb595a1 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x3cbce908 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x3ce4a012 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf1c004 scsi_unregister +EXPORT_SYMBOL vmlinux 0x3d0c0c88 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d150064 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x3d2afee5 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x3d50067e uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x3d6f31cf gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x3d748402 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x3d7a942c inet_csk_accept +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da607bd dcache_readdir +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de83301 twl6040_power +EXPORT_SYMBOL vmlinux 0x3df600eb kfree_put_link +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfca04f pipe_lock +EXPORT_SYMBOL vmlinux 0x3e14bc29 wake_up_process +EXPORT_SYMBOL vmlinux 0x3e24b323 mdiobus_free +EXPORT_SYMBOL vmlinux 0x3e295d3e ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e52c69a vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x3e6622b1 downgrade_write +EXPORT_SYMBOL vmlinux 0x3e663957 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x3e7202c0 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x3e7ddeae security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ea22cdd pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x3eafb598 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x3ec60b0d dev_deactivate +EXPORT_SYMBOL vmlinux 0x3ed4dadb scm_fp_dup +EXPORT_SYMBOL vmlinux 0x3efde431 ipv4_specific +EXPORT_SYMBOL vmlinux 0x3f00aa89 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f16d7af mmc_can_erase +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f24bc0d filemap_fault +EXPORT_SYMBOL vmlinux 0x3f309872 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f8c5bd2 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x3fa96937 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x3fb37e80 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3fbffe17 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x3fd9681a blk_put_request +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff64c00 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x3fff5287 finish_open +EXPORT_SYMBOL vmlinux 0x4009a508 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x4015b9dd ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x401ea907 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x4021ac84 bdi_init +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x404c5293 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x4050ac96 follow_pfn +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x406c3848 pci_dev_driver +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 0x40b8ed90 page_readlink +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c39b24 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40c89d46 acpi_get_table_by_index +EXPORT_SYMBOL vmlinux 0x40ca0749 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x40cc7b90 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x40cd17b0 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40de53f1 vm_map_ram +EXPORT_SYMBOL vmlinux 0x40ee9fd0 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x40fa4761 param_ops_bool +EXPORT_SYMBOL vmlinux 0x4134ca4b iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x418664b7 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x418801d1 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4196ce3a cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x419ea83a seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41b4c169 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x41b964a8 dev_uc_add +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41c1c335 dev_warn +EXPORT_SYMBOL vmlinux 0x41d92e35 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x41e08a83 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x41e31953 path_noexec +EXPORT_SYMBOL vmlinux 0x41fca553 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4213a1cf param_set_copystring +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421eb54d security_path_chmod +EXPORT_SYMBOL vmlinux 0x4226bb34 elv_register_queue +EXPORT_SYMBOL vmlinux 0x422d1928 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x4234f096 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x424411e0 dm_register_target +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x4248d72e unlock_page +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x424d4b7f __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x4250c5d7 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42601bda nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x4281b6a7 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x4282c228 flush_signals +EXPORT_SYMBOL vmlinux 0x42881355 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x428c6b4b user_revoke +EXPORT_SYMBOL vmlinux 0x429c0347 gnttab_free_pages +EXPORT_SYMBOL vmlinux 0x42a042db jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a1d7e0 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x42b523e0 update_devfreq +EXPORT_SYMBOL vmlinux 0x42c05a4d pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x42c84960 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42d09664 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x42ece192 dump_emit +EXPORT_SYMBOL vmlinux 0x43001b07 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430c3b1f device_get_mac_address +EXPORT_SYMBOL vmlinux 0x43166903 lock_rename +EXPORT_SYMBOL vmlinux 0x43475688 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x4376f7f5 neigh_for_each +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43b0c9c3 preempt_schedule +EXPORT_SYMBOL vmlinux 0x43b12743 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x43bd04bd single_release +EXPORT_SYMBOL vmlinux 0x43cfe6cb lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x43d0683e alloc_file +EXPORT_SYMBOL vmlinux 0x43eb0794 user_path_create +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fe260e tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x4402e7f6 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x440bd297 register_key_type +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44182c3f scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x44301408 generic_update_time +EXPORT_SYMBOL vmlinux 0x44307657 devm_iounmap +EXPORT_SYMBOL vmlinux 0x445399b6 __f_setown +EXPORT_SYMBOL vmlinux 0x44746633 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x4484656e param_set_invbool +EXPORT_SYMBOL vmlinux 0x4489da02 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x4494aa03 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x449fe84b acpi_set_firmware_waking_vectors +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44a84de5 acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x44aaf30f tsc_khz +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44c19a3b netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x44d8bf89 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f47a7c dev_printk +EXPORT_SYMBOL vmlinux 0x44f8760b crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x44fdfe01 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x44ff6ef9 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x450466c8 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450c2281 sock_release +EXPORT_SYMBOL vmlinux 0x45355352 generic_file_open +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45501946 mpage_writepages +EXPORT_SYMBOL vmlinux 0x4564ce53 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x4577e9a2 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4587ad96 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45c33a1e netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x45d58fd3 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x45e6acba inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x4604a43a mem_section +EXPORT_SYMBOL vmlinux 0x4608c2fd lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462a8040 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x4665eb20 inet6_bind +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4679a61d grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x467a6b6a __inet_hash +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46867dd2 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x46922792 tty_port_open +EXPORT_SYMBOL vmlinux 0x4699836e devm_memremap +EXPORT_SYMBOL vmlinux 0x469ec157 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47055f13 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x47184d81 seq_printf +EXPORT_SYMBOL vmlinux 0x473561a1 dev_getfirstbyhwtype +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 0x4752df7b tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x47553fb2 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +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 0x47adec08 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x47c27357 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x47c34e10 amd_iommu_get_v2_domain +EXPORT_SYMBOL vmlinux 0x47f8dbaf mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x482fc177 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x482feb77 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x483f04d3 release_firmware +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4845d79e dev_printk_emit +EXPORT_SYMBOL vmlinux 0x484e19ae serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x484e298e cdrom_release +EXPORT_SYMBOL vmlinux 0x4856673b invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x487a7aa1 phy_connect +EXPORT_SYMBOL vmlinux 0x487d3ff8 vfs_writef +EXPORT_SYMBOL vmlinux 0x48b1cd8f ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d006fc dev_uc_del +EXPORT_SYMBOL vmlinux 0x48d50e79 amd_iommu_register_ppr_notifier +EXPORT_SYMBOL vmlinux 0x48ed0538 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4916b63f lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x493ad53e sock_no_listen +EXPORT_SYMBOL vmlinux 0x494256ab tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x494e3393 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x4962d059 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x497435f2 i2c_release_client +EXPORT_SYMBOL vmlinux 0x497772c2 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x49784f55 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x497c753f bio_reset +EXPORT_SYMBOL vmlinux 0x499497e3 skb_push +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c54237 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x49c78233 inet_sendpage +EXPORT_SYMBOL vmlinux 0x49e21421 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a2ea0ff elevator_exit +EXPORT_SYMBOL vmlinux 0x4a2f3cd0 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x4a312d5b kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x4a4688f9 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x4a5809c5 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x4a5acdbe current_task +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a90aaa7 set_pages_wb +EXPORT_SYMBOL vmlinux 0x4aad9271 freeze_bdev +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 0x4b4a6f5a input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x4b535280 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x4b57d345 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x4b5d4c86 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +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 0x4bb4c166 seq_read +EXPORT_SYMBOL vmlinux 0x4bc82ba6 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x4be6d278 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x4bf5eb72 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x4bfb3a3c fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x4c012ec7 vfs_llseek +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c23c801 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x4c253626 seq_open_private +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3654bb kobject_set_name +EXPORT_SYMBOL vmlinux 0x4c471670 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x4c68bbd6 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x4c71c3e7 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x4c72ce3b ata_dev_printk +EXPORT_SYMBOL vmlinux 0x4c7b3597 ps2_init +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c9d28b0 phys_base +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cb0c183 __page_symlink +EXPORT_SYMBOL vmlinux 0x4ccc64a0 single_open +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cfd76ea blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x4d11f5ce posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x4d24fdcf pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x4d37acc9 request_firmware +EXPORT_SYMBOL vmlinux 0x4d413579 page_symlink +EXPORT_SYMBOL vmlinux 0x4d485d3c swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x4d50260b mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x4d62352d skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x4d68f389 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x4d76b46e devm_free_irq +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dc31f43 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x4dc4b5cd ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x4dccd202 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x4dd50e44 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x4de1f4d1 bio_add_page +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df2d542 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e36eb99 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4e3ce2aa set_cached_acl +EXPORT_SYMBOL vmlinux 0x4e42bdb6 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x4e4bc31b inet6_release +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e76512b setattr_copy +EXPORT_SYMBOL vmlinux 0x4e888f3e cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x4e93a240 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eae1856 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x4ed4d19a kernel_read +EXPORT_SYMBOL vmlinux 0x4ede6f10 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x4edf2209 agp_create_memory +EXPORT_SYMBOL vmlinux 0x4f06b7ce __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x4f0ecf0a pci_disable_msix +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2bdfba neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f4ba391 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x4f65bb55 pm860x_page_bulk_read +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 0x4f85c872 vfs_write +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4fb93c77 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x4fc870ca page_waitqueue +EXPORT_SYMBOL vmlinux 0x4fd5831d tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4ff3d6b3 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x50072d1b __neigh_event_send +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x500c683a i2c_master_send +EXPORT_SYMBOL vmlinux 0x501453b2 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x50223519 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x50377fa3 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x50429850 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506f1312 param_get_long +EXPORT_SYMBOL vmlinux 0x507ed45c nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x50815fa5 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x5085d3aa sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a22512 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50afa4dc mmc_add_host +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50bd0a28 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50eb4111 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x50eec353 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511fab90 led_set_brightness +EXPORT_SYMBOL vmlinux 0x5156998c bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x51650d55 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x519d673f xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x51bed041 phy_device_create +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d7c445 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x51ff151c nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520632bb phy_find_first +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x52130046 acpi_check_address_range +EXPORT_SYMBOL vmlinux 0x521aceab mpage_writepage +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x5226d598 filp_open +EXPORT_SYMBOL vmlinux 0x5227bde3 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x52295240 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a2e1e1 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x52a3b155 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x52a4362b tty_free_termios +EXPORT_SYMBOL vmlinux 0x52acaf61 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x52b857c7 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x52d9b114 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x52d9ec60 vfs_setpos +EXPORT_SYMBOL vmlinux 0x52dfbd06 simple_write_begin +EXPORT_SYMBOL vmlinux 0x52ee01b6 tcp_filter +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531047e2 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x5310ac5f inet_release +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x531df281 up_read +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x534f27ce backlight_force_update +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5366ad1e mark_page_accessed +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x5377f4cb inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a8e388 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x53cb6d29 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x53f1e85d simple_empty +EXPORT_SYMBOL vmlinux 0x53fb27c2 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x53fd09c9 mutex_lock +EXPORT_SYMBOL vmlinux 0x54048d95 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x54059a2a amd_iommu_pc_get_max_counters +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5415ddef tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x5429d8b1 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x543dc890 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54496e2e pci_save_state +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x54749014 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x5490c806 kill_pid +EXPORT_SYMBOL vmlinux 0x549174ee skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b00f7b simple_lookup +EXPORT_SYMBOL vmlinux 0x54ba3b35 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x54c06201 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d6dab8 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x54df4b18 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait +EXPORT_SYMBOL vmlinux 0x54f27b92 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x5505ad4d blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x5505b37a dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x551e3d34 dev_mc_init +EXPORT_SYMBOL vmlinux 0x5520bfbc dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55513748 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x555f6938 lockref_get +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x55755c1d nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x557b6f3c kernel_getsockname +EXPORT_SYMBOL vmlinux 0x557cc4ea blk_queue_split +EXPORT_SYMBOL vmlinux 0x55885e78 register_netdevice +EXPORT_SYMBOL vmlinux 0x558dc132 dquot_commit +EXPORT_SYMBOL vmlinux 0x5593dc97 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0x55a16756 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x55cda7f6 invalidate_partition +EXPORT_SYMBOL vmlinux 0x55cec2a9 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x55f65b0e file_open_root +EXPORT_SYMBOL vmlinux 0x560b89d1 kthread_stop +EXPORT_SYMBOL vmlinux 0x561cf1ff follow_up +EXPORT_SYMBOL vmlinux 0x563204cd mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x5647953f vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x564929db copy_to_iter +EXPORT_SYMBOL vmlinux 0x56606f73 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56b8ba4e jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x56bbe132 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x56c606ce tty_port_init +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56dd7a6c napi_consume_skb +EXPORT_SYMBOL vmlinux 0x56e98820 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x571639e2 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x571bfd40 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x5720fca5 sock_no_poll +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5748b464 __brelse +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57745acb padata_alloc +EXPORT_SYMBOL vmlinux 0x577af4f5 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x577ced15 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x57b9c94b dquot_disable +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c50646 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x57d3e473 phy_init_eee +EXPORT_SYMBOL vmlinux 0x580b0556 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5829ba4c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x5836d2d0 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x58575684 mark_info_dirty +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 0x587a6982 dev_open +EXPORT_SYMBOL vmlinux 0x58ad5d0f pci_get_device +EXPORT_SYMBOL vmlinux 0x58b5b27c blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c2fb10 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x58cbc4fe set_user_nice +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f7c797 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x591d1bfb tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x591e6cc9 wireless_send_event +EXPORT_SYMBOL vmlinux 0x5929efe5 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x596ae9a2 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x596d28b1 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x59750a8d notify_change +EXPORT_SYMBOL vmlinux 0x597f6e46 sk_stream_error +EXPORT_SYMBOL vmlinux 0x5980ae0e pci_pme_capable +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59a2a868 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b6ad7c agp_put_bridge +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a20e1e7 vme_register_driver +EXPORT_SYMBOL vmlinux 0x5a2e96cd sk_wait_data +EXPORT_SYMBOL vmlinux 0x5a39b51d replace_mount_options +EXPORT_SYMBOL vmlinux 0x5a42dc47 security_path_truncate +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a516cf7 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x5a7c29b6 blk_rq_init +EXPORT_SYMBOL vmlinux 0x5a7c3188 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x5a80630c pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a86bdf9 tso_build_data +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a96e3ba pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ac3b51b shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x5adc8c3d md_write_end +EXPORT_SYMBOL vmlinux 0x5add7f32 alloc_disk +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b05bcf2 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x5b15a995 bdi_destroy +EXPORT_SYMBOL vmlinux 0x5b1d7d07 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x5b2f010e __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x5b3a2b3c skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x5b551ba6 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x5b55c021 down_read +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5d5c0d d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x5b6d016b phy_connect_direct +EXPORT_SYMBOL vmlinux 0x5b94898f nd_iostat_end +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5ba7d5d8 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x5bb1f1ac genphy_config_init +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc798b0 arp_xmit +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bdebebf d_obtain_root +EXPORT_SYMBOL vmlinux 0x5bdec785 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x5beeb925 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x5bf7bde7 vme_bus_num +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c425f60 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x5c92dcda mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x5ca2b1a6 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x5ca8bebc thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x5cadafb0 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x5ce8b34f xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d0161ec proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x5d17bb1c redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x5d1f3ca4 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x5d1f7d8a ht_create_irq +EXPORT_SYMBOL vmlinux 0x5d20d5a6 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x5d33280f param_get_ulong +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d6fd352 md_done_sync +EXPORT_SYMBOL vmlinux 0x5d7366a9 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x5d738983 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d85d904 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5d87deda inet_register_protosw +EXPORT_SYMBOL vmlinux 0x5d9c071f pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x5da64436 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x5dab0c7d blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x5dbcbdaa mfd_add_devices +EXPORT_SYMBOL vmlinux 0x5dbd8f42 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x5dc22093 scsi_device_get +EXPORT_SYMBOL vmlinux 0x5dce6fa2 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x5ddf26af pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x5de45581 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x5e02d0ea param_set_ullong +EXPORT_SYMBOL vmlinux 0x5e8005aa posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5e93a1f4 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea0b546 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x5ea3813a ab3100_event_register +EXPORT_SYMBOL vmlinux 0x5ea3bd26 set_groups +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb8ae7c seq_release +EXPORT_SYMBOL vmlinux 0x5ec0a81d md_reload_sb +EXPORT_SYMBOL vmlinux 0x5ecfeec6 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed4bb16 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0e885c scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x5f105f73 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x5f283621 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x5f3c34c7 write_one_page +EXPORT_SYMBOL vmlinux 0x5f5de507 softnet_data +EXPORT_SYMBOL vmlinux 0x5f5fb85f lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x5f7742d4 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x5f933fee inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x5f9fa001 unregister_console +EXPORT_SYMBOL vmlinux 0x5fa74f4d locks_free_lock +EXPORT_SYMBOL vmlinux 0x5fb0cb2c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fc4850e genphy_read_status +EXPORT_SYMBOL vmlinux 0x5fc496eb nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x5fd56455 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fffb091 skb_checksum +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600627c6 udp_poll +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 0x603722e6 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606d23d2 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x606dc31d f_setown +EXPORT_SYMBOL vmlinux 0x60773d04 key_task_permission +EXPORT_SYMBOL vmlinux 0x607800e8 phy_ethtool_get_wol +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 0x60ae8b53 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x60bd61b6 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x60bd9ba5 vfs_rename +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60fa1475 iget_locked +EXPORT_SYMBOL vmlinux 0x6108eb48 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x6124154b devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612b9a80 km_state_notify +EXPORT_SYMBOL vmlinux 0x612f63fe md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x6156873c from_kuid_munged +EXPORT_SYMBOL vmlinux 0x615c7fc8 param_ops_short +EXPORT_SYMBOL vmlinux 0x615fc794 iunique +EXPORT_SYMBOL vmlinux 0x61839aea mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x618b7872 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a32f22 vga_tryget +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c90c57 blk_start_queue +EXPORT_SYMBOL vmlinux 0x61cd4f9a kernel_write +EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61fb248a node_states +EXPORT_SYMBOL vmlinux 0x62036de0 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x62082ef1 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621a41f5 blk_queue_virt_boundary +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 0x623eef89 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x624e5abe wireless_spy_update +EXPORT_SYMBOL vmlinux 0x6251df81 sock_wfree +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 0x6284d5af kmalloc_caches +EXPORT_SYMBOL vmlinux 0x62b5dba1 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x62d61b56 bmap +EXPORT_SYMBOL vmlinux 0x62d86e63 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x62df8965 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x62e00958 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x62f534fc gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x632f47e8 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x63352dba kobject_del +EXPORT_SYMBOL vmlinux 0x63397e02 from_kgid +EXPORT_SYMBOL vmlinux 0x633feffe to_nd_btt +EXPORT_SYMBOL vmlinux 0x635da04d dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +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 0x63a882c9 acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x63ac4491 scsi_host_put +EXPORT_SYMBOL vmlinux 0x63ac880c bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63ca5ab6 __netif_schedule +EXPORT_SYMBOL vmlinux 0x63cd0796 __bforget +EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f3cb87 __neigh_for_each_release +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 0x64132478 make_bad_inode +EXPORT_SYMBOL vmlinux 0x64395326 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x644d6478 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x64613082 set_wb_congested +EXPORT_SYMBOL vmlinux 0x646ee6e4 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x6477c2fe blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x647bee42 vfs_unlink +EXPORT_SYMBOL vmlinux 0x6486e8fa posix_lock_file +EXPORT_SYMBOL vmlinux 0x649675fc take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64b10659 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x64b4c98c blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x64bb3d9f dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64bddcdb copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64ebefa6 mount_bdev +EXPORT_SYMBOL vmlinux 0x64f348f5 mdiobus_read +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652981c3 sk_common_release +EXPORT_SYMBOL vmlinux 0x652aa24e xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x6531985c netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x65360707 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x65363ae7 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654a668b nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x65607080 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x657c2e3a dev_get_flags +EXPORT_SYMBOL vmlinux 0x6582feea kill_block_super +EXPORT_SYMBOL vmlinux 0x65833828 vfs_getattr +EXPORT_SYMBOL vmlinux 0x659a4849 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65db4621 iterate_fd +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e0d6d7 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x65e722ee may_umount +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x6607b5b5 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x6655818f __init_rwsem +EXPORT_SYMBOL vmlinux 0x66747277 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x6699c64a blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x66de7dbd __blk_end_request +EXPORT_SYMBOL vmlinux 0x6700e34e __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x670f6deb nobh_write_begin +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x67394e74 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6744018d param_get_charp +EXPORT_SYMBOL vmlinux 0x67540db0 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67a608d1 override_creds +EXPORT_SYMBOL vmlinux 0x67ad2ca1 no_llseek +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x6809a658 mntput +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x6844af35 dquot_operations +EXPORT_SYMBOL vmlinux 0x6845befa mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x6857c6ae mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687c3af4 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x6894e132 dev_change_flags +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b5c3fd __neigh_create +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68d10fb7 nonseekable_open +EXPORT_SYMBOL vmlinux 0x68f883e0 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x6908c690 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x69091aab neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x6913b1a1 input_register_handle +EXPORT_SYMBOL vmlinux 0x691db3e3 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x6920ff27 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x692ae6b2 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x6937c7cb mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x6938cf5f param_set_long +EXPORT_SYMBOL vmlinux 0x695bcbf7 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x6961491e pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69847298 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x699184fb tcp_req_err +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69acdf38 memcpy +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69d3a13b inet_addr_type +EXPORT_SYMBOL vmlinux 0x69e07177 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a2c72bf pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x6a30d972 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x6a31ec1e ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x6a3c0fb6 sock_i_ino +EXPORT_SYMBOL vmlinux 0x6a57054f cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6a6e4134 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a7ae52e uart_resume_port +EXPORT_SYMBOL vmlinux 0x6a960d24 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x6a97910d inode_init_owner +EXPORT_SYMBOL vmlinux 0x6ac0a22e param_get_ushort +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6ad85893 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x6adb115c cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ae23139 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af67c03 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1856ec inode_add_bytes +EXPORT_SYMBOL vmlinux 0x6b1b62a2 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b243b21 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b52a88c done_path_create +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b797a81 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x6b8ff960 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x6bac6170 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x6bae4216 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x6baf5e3d keyring_clear +EXPORT_SYMBOL vmlinux 0x6bb6f5db pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bd32eb6 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be0f91f generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x6be8672f sk_reset_timer +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6c06ebc0 dma_find_channel +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c0cddaa irq_to_desc +EXPORT_SYMBOL vmlinux 0x6c44bc15 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x6c4b0293 fixed_size_llseek +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 0x6c8751ad x86_hyper +EXPORT_SYMBOL vmlinux 0x6c8b2c15 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x6caa6df3 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x6cbb35d6 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x6cbfbe3b pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x6cbfc360 __dst_free +EXPORT_SYMBOL vmlinux 0x6cc42aee proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x6ccadd74 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x6cce1290 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x6cefd833 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1b881e pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x6d22c8ed generic_writepages +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 0x6d46549a tso_count_descs +EXPORT_SYMBOL vmlinux 0x6d46a3ac get_tz_trend +EXPORT_SYMBOL vmlinux 0x6d9c1674 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x6da2cef0 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x6daac632 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x6dba2cca blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x6dc0a1dc skb_dequeue_tail +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 0x6e0a715d scsi_block_requests +EXPORT_SYMBOL vmlinux 0x6e18c477 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x6e5d443b vfs_read +EXPORT_SYMBOL vmlinux 0x6e6a6df8 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e857f08 rtnl_notify +EXPORT_SYMBOL vmlinux 0x6e867fdc arp_create +EXPORT_SYMBOL vmlinux 0x6e929718 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ebd98e7 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x6ec513fb pci_platform_rom +EXPORT_SYMBOL vmlinux 0x6ecb51ab agp_generic_enable +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6ef78ba7 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x6efbfc8c commit_creds +EXPORT_SYMBOL vmlinux 0x6f0c14cc i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x6f1af11e neigh_app_ns +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f23ac0e __sk_dst_check +EXPORT_SYMBOL vmlinux 0x6f2c5e55 cdev_add +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f3af6ba __frontswap_load +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f78ea45 neigh_table_init +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8fa9db uart_suspend_port +EXPORT_SYMBOL vmlinux 0x6fb09d8e inet_frags_init +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x7013738f __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707bb7ae neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x708b3c0c scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x70a04988 tcp_prot +EXPORT_SYMBOL vmlinux 0x70ba7fc1 try_module_get +EXPORT_SYMBOL vmlinux 0x70ccdba9 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70e8533c mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x70eca093 fb_get_mode +EXPORT_SYMBOL vmlinux 0x70f2415e free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fb0d9f da903x_query_status +EXPORT_SYMBOL vmlinux 0x710228bf keyring_alloc +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713440ad mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x71353846 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717f553d blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x71828a66 proc_dostring +EXPORT_SYMBOL vmlinux 0x7190108d blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71cb5a6c netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x71e7371b __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x71ef0f9c remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x71f7f048 address_space_init_once +EXPORT_SYMBOL vmlinux 0x7204656f mdiobus_scan +EXPORT_SYMBOL vmlinux 0x72062e5b qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x72088043 send_sig_info +EXPORT_SYMBOL vmlinux 0x721a47db devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x72220176 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x7225ad79 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x722e09c2 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x722f77de ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x723d0aa5 serio_close +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x7260e249 ___preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x7282f530 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x728d17e4 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x72a98fdb copy_user_generic_unrolled +EXPORT_SYMBOL vmlinux 0x72af8baa __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72e7dd6a dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72f7c81a __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x730582a1 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x73141c4b __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73163f62 vm_mmap +EXPORT_SYMBOL vmlinux 0x7337ae61 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x7338b6cb fput +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x73603f2e xfrm_input +EXPORT_SYMBOL vmlinux 0x736ff8b8 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x737af3ea register_console +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x738f274b netif_rx +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741aa333 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x742d4beb scmd_printk +EXPORT_SYMBOL vmlinux 0x74347174 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x74635681 scsi_device_resume +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x747dc2bc nd_btt_probe +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x748c94cf pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x74914c92 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x7492017b write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x74952274 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x749e65a4 sock_create_kern +EXPORT_SYMBOL vmlinux 0x749f9be6 generic_write_checks +EXPORT_SYMBOL vmlinux 0x74a410ad __ps2_command +EXPORT_SYMBOL vmlinux 0x74af3314 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74eaa68e skb_store_bits +EXPORT_SYMBOL vmlinux 0x74ef5ae9 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x74fbba68 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x7525a60d kobject_init +EXPORT_SYMBOL vmlinux 0x7531e760 udp_seq_open +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7535fa0b vfs_fsync +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753baad8 __register_chrdev +EXPORT_SYMBOL vmlinux 0x754d539c strlen +EXPORT_SYMBOL vmlinux 0x754f9725 input_set_keycode +EXPORT_SYMBOL vmlinux 0x7553fe93 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x755f6740 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x75643cc4 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x7588939e d_delete +EXPORT_SYMBOL vmlinux 0x7588b1cc neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x7597385f rtnl_set_sk_err +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 0x75c51704 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x75c77955 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x7609ed5d fd_install +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760e3e8c mpage_readpage +EXPORT_SYMBOL vmlinux 0x761e8029 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x764739d9 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x765c7096 clk_get +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76727f51 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x76771c72 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x769b9f2b kmem_cache_size +EXPORT_SYMBOL vmlinux 0x76a9773e ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x76c55534 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76e64995 backlight_device_register +EXPORT_SYMBOL vmlinux 0x76ed1af3 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x76fb08a7 amd_iommu_unregister_ppr_notifier +EXPORT_SYMBOL vmlinux 0x770865e5 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x77106615 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x773814e4 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x7743eeb6 to_ndd +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x77699773 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x777f5a61 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a477ba proc_remove +EXPORT_SYMBOL vmlinux 0x77a67342 __bread_gfp +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d1a8c0 eth_header_parse +EXPORT_SYMBOL vmlinux 0x77e33944 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x77ebf6a2 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x780e9046 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7830c943 find_get_entry +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78402f67 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7849c8b1 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x784b498b kset_register +EXPORT_SYMBOL vmlinux 0x7855b5e2 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x78617773 genphy_resume +EXPORT_SYMBOL vmlinux 0x7869c4af skb_clone_sk +EXPORT_SYMBOL vmlinux 0x78764f4e pv_irq_ops +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7890a71a pci_iomap +EXPORT_SYMBOL vmlinux 0x78978470 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789b6488 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback +EXPORT_SYMBOL vmlinux 0x78a85af1 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x78c65c32 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x78cc70d3 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x78d9f8ef udp_prot +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78efa719 skb_unlink +EXPORT_SYMBOL vmlinux 0x78fe81d2 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x791e1713 proto_unregister +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x79471cd9 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x795c64a5 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x79693bb9 seq_puts +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 0x798c9a38 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x79970a1f agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b72b34 get_gendisk +EXPORT_SYMBOL vmlinux 0x79f7928d pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x7a22c533 km_query +EXPORT_SYMBOL vmlinux 0x7a274ebb pci_claim_resource +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a429877 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a58049f dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x7a6b7da6 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a81d7f7 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x7a829706 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a9a9ed2 module_refcount +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aabbf53 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abcdf19 inet_select_addr +EXPORT_SYMBOL vmlinux 0x7abceb3e compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x7ac638ec km_new_mapping +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7afeae2e swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7b0186fc mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b193a69 key_type_keyring +EXPORT_SYMBOL vmlinux 0x7b2447f1 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b33e074 set_trace_device +EXPORT_SYMBOL vmlinux 0x7b48a005 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x7b4effdb inet_stream_connect +EXPORT_SYMBOL vmlinux 0x7b51c12e unregister_quota_format +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b52f1ca seq_putc +EXPORT_SYMBOL vmlinux 0x7b61a62b jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x7b6f31c5 _dev_info +EXPORT_SYMBOL vmlinux 0x7b7de1f1 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bba89b7 vmap +EXPORT_SYMBOL vmlinux 0x7bcd46ad __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x7bd2ce1f d_add_ci +EXPORT_SYMBOL vmlinux 0x7bd6e241 netdev_printk +EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x7bfa1c01 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x7c11f057 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c36afe1 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x7c44a2e9 dquot_initialize +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c8fe166 PDE_DATA +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb62e53 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x7cb8cb95 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x7cbdb637 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7cbf440d param_set_ulong +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7cf1f6f2 read_dev_sector +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0903b1 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1d6989 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x7d217596 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x7d287136 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x7d34ab86 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x7d383388 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x7d42e1ea scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x7d48c051 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d71445d cpu_active_mask +EXPORT_SYMBOL vmlinux 0x7d79b020 tty_set_operations +EXPORT_SYMBOL vmlinux 0x7d814d7f proc_set_user +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d959c13 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7d9f89b4 i2c_use_client +EXPORT_SYMBOL vmlinux 0x7db5cf42 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dd08766 lookup_one_len +EXPORT_SYMBOL vmlinux 0x7dd554fc unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x7ddeda19 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x7de056c1 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x7de4ee8b sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df2b66b abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x7df624a1 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x7e0367ce empty_aops +EXPORT_SYMBOL vmlinux 0x7e1b0217 register_gifconf +EXPORT_SYMBOL vmlinux 0x7e35b39c jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x7e4725aa bio_advance +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e6b610b rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x7e78cfba i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7ec163d0 tty_check_change +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f03d8cd __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f253c88 netlink_ack +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f56976c pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f6559e6 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x7f69e7e0 bio_split +EXPORT_SYMBOL vmlinux 0x7f83906b xfrm_init_state +EXPORT_SYMBOL vmlinux 0x7f8f8efd generic_permission +EXPORT_SYMBOL vmlinux 0x7f93ab62 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x7f94f981 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x7fa5b0f5 vfs_symlink +EXPORT_SYMBOL vmlinux 0x7faf3ce5 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fc455bc vfs_readv +EXPORT_SYMBOL vmlinux 0x7fd997f8 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x7fe1a6f2 serio_open +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x800bca63 follow_down_one +EXPORT_SYMBOL vmlinux 0x80657df9 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x80674008 blkdev_put +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 0x809798c4 inet6_getname +EXPORT_SYMBOL vmlinux 0x80af034b nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x80c4be03 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80fee39e devm_gpio_request +EXPORT_SYMBOL vmlinux 0x80ffa9a3 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x8100b574 ihold +EXPORT_SYMBOL vmlinux 0x81096af6 thaw_bdev +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x811531c5 dev_err +EXPORT_SYMBOL vmlinux 0x8122c85e try_to_release_page +EXPORT_SYMBOL vmlinux 0x812704d6 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x813f6e62 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x81431353 ndo_dflt_fdb_del +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 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x816a0215 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x81843d07 block_truncate_page +EXPORT_SYMBOL vmlinux 0x818530f7 bio_endio +EXPORT_SYMBOL vmlinux 0x818b95c6 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x819f2db1 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x8217a81a cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x8218ec51 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x822496e5 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x8232ed1a xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82807b5b neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x829534b3 fence_free +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b55121 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x82b6daa5 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x82c89558 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x83236e29 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x8325e5c7 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x833ba0a2 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x833c7ce4 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x834de6b5 ilookup5 +EXPORT_SYMBOL vmlinux 0x836af71f phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x836d9aca pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x8384647a acpi_map_pxm_to_online_node +EXPORT_SYMBOL vmlinux 0x83849f70 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83a5add3 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b31724 eth_type_trans +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83ffc3f0 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x8433ac93 registered_fb +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x8491f913 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x84a2e447 init_task +EXPORT_SYMBOL vmlinux 0x84befba1 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x84cbc7c2 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x84cd995a drop_nlink +EXPORT_SYMBOL vmlinux 0x84e3b597 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x8507c383 proc_dointvec +EXPORT_SYMBOL vmlinux 0x850acef1 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x8537dc88 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x8541b618 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x855df7ef pci_write_vpd +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856f0f22 get_super +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 0x85deba2d generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e0520c try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fe94d9 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x860f9c04 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x861d277d security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x86202199 dqput +EXPORT_SYMBOL vmlinux 0x8629c545 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x863c6f03 phy_init_hw +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86589702 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866df0b3 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x8675f474 sock_wake_async +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a1ef5b nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a6b430 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x86b6f9d7 dev_add_offload +EXPORT_SYMBOL vmlinux 0x86cd2bdb dump_skip +EXPORT_SYMBOL vmlinux 0x86d7aad0 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x86e732c0 agp_copy_info +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87051e26 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x87114c42 __seq_open_private +EXPORT_SYMBOL vmlinux 0x8715ca5f simple_unlink +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8729bd8a nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x873cd73b pci_scan_slot +EXPORT_SYMBOL vmlinux 0x875f2a4a __getblk_gfp +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x8788bb63 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x87894cac from_kuid +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x87aab931 fb_show_logo +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87b9e1dd scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x87ccfbd9 __invalidate_device +EXPORT_SYMBOL vmlinux 0x87faa7e1 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x8808c94d scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x880913b2 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x8834eafb km_state_expired +EXPORT_SYMBOL vmlinux 0x883adbcb vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x883dcb52 consume_skb +EXPORT_SYMBOL vmlinux 0x884ca0b6 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x88627c8a fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8888776d generic_write_end +EXPORT_SYMBOL vmlinux 0x888a0fe4 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x88b8010c xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x88c679b2 brioctl_set +EXPORT_SYMBOL vmlinux 0x88ce2635 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x88d4b0ca input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x88d76527 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x88dcfa41 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x88e45a9c vme_irq_free +EXPORT_SYMBOL vmlinux 0x8903c5c8 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x8916c47a crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x891f55de remove_arg_zero +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x893c61c5 security_path_mknod +EXPORT_SYMBOL vmlinux 0x8941fb6c padata_do_parallel +EXPORT_SYMBOL vmlinux 0x89482c8f dev_change_carrier +EXPORT_SYMBOL vmlinux 0x894aeb72 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x894d3437 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x894fde59 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x895f9171 ip_options_compile +EXPORT_SYMBOL vmlinux 0x896b57ee uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x896f298f ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x898f75db lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x8997a962 kill_bdev +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b8c0f7 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e39d3d dma_async_device_unregister +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 0x8a60f56d gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a6a6e8c adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7f8b3c sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a8694d1 iput +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa67ac5 kern_path +EXPORT_SYMBOL vmlinux 0x8aac635f pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x8ac0336f mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x8ad25422 init_special_inode +EXPORT_SYMBOL vmlinux 0x8ad766f4 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x8ad8d37d register_shrinker +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8b10dacb iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x8b12318f inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x8b1f51a8 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x8b234e07 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x8b2bf5b9 unlock_rename +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b44b993 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x8b456daf netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x8b48a0cd pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b78fb9a pcim_enable_device +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b818502 blk_init_queue +EXPORT_SYMBOL vmlinux 0x8b84180e unregister_key_type +EXPORT_SYMBOL vmlinux 0x8b92e129 param_set_bool +EXPORT_SYMBOL vmlinux 0x8b94a841 vm_insert_page +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bad33c7 down_read_trylock +EXPORT_SYMBOL vmlinux 0x8bd52f52 posix_test_lock +EXPORT_SYMBOL vmlinux 0x8bd9d9f9 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x8be1af38 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x8be5dc87 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x8be6729e d_invalidate +EXPORT_SYMBOL vmlinux 0x8c086ee4 input_unregister_device +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c6d3e6a sk_mc_loop +EXPORT_SYMBOL vmlinux 0x8c6fbbbd agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x8c78cec7 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x8c796dd8 rwsem_wake +EXPORT_SYMBOL vmlinux 0x8c88b79c phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x8cbdd848 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x8cbe8032 __sb_start_write +EXPORT_SYMBOL vmlinux 0x8cc7299d lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd6f192 block_write_begin +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cdbf2a4 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x8ce99c31 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x8cff4778 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x8d0c6d3e vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x8d2401d7 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x8d28b62a nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x8d2b394f pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x8d30e2f9 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6a8065 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x8d7141b0 check_disk_change +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8a2497 seq_dentry +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d8f0e6e __register_binfmt +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8db1221d __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x8dcda6f3 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x8ddab841 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x8de7ff7f mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x8df417bb register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8df9ed1a param_get_invbool +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e07f244 file_remove_privs +EXPORT_SYMBOL vmlinux 0x8e2d83b6 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x8e612f8e devm_ioremap +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e78afb7 datagram_poll +EXPORT_SYMBOL vmlinux 0x8ea173be pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x8eaa935b generic_setlease +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ec9b3ae pid_task +EXPORT_SYMBOL vmlinux 0x8edb350e clocksource_unregister +EXPORT_SYMBOL vmlinux 0x8ee51e08 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x8f18fb35 simple_fill_super +EXPORT_SYMBOL vmlinux 0x8f2041a7 kern_path_create +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f4f4de5 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x8f5205ab tc_classify +EXPORT_SYMBOL vmlinux 0x8f603c01 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x8f677f7b vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8fac0c00 dquot_get_state +EXPORT_SYMBOL vmlinux 0x8fafbbe6 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x8fb4600d start_tty +EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x8fe3d7e4 seq_open +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8fe854a1 igrab +EXPORT_SYMBOL vmlinux 0x900b7659 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x903dd874 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x90517150 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x9061f8c1 pci_find_bus +EXPORT_SYMBOL vmlinux 0x907b1722 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x90836483 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x9089033c pci_release_regions +EXPORT_SYMBOL vmlinux 0x9091e09d phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x90ab0816 irq_set_chip +EXPORT_SYMBOL vmlinux 0x90bd7233 phy_device_register +EXPORT_SYMBOL vmlinux 0x90c76e20 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x90e852f1 pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x90e90117 acl_by_type +EXPORT_SYMBOL vmlinux 0x91169929 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x91405f46 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91980f1a qdisc_list_del +EXPORT_SYMBOL vmlinux 0x91a74626 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x91a7d7ce bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b76a10 vme_irq_request +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x922e16b1 pcim_iomap +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9260ea8b rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x92714a18 __module_get +EXPORT_SYMBOL vmlinux 0x9274c7ca blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x9284eba8 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x92906c2e invalidate_bdev +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9294a7f9 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x92a4fe80 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92b07906 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x92ebf6c1 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x92ed0823 padata_stop +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 0x932b001c bdgrab +EXPORT_SYMBOL vmlinux 0x93413bdb iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x93544c09 migrate_page +EXPORT_SYMBOL vmlinux 0x935e9fcf __ip_dev_find +EXPORT_SYMBOL vmlinux 0x936f71fd insert_inode_locked +EXPORT_SYMBOL vmlinux 0x93710e04 dev_addr_del +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938135bf dget_parent +EXPORT_SYMBOL vmlinux 0x938294ca pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x93861221 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x938a6880 __d_drop +EXPORT_SYMBOL vmlinux 0x938c2a1e netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d930b0 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x941548b3 d_path +EXPORT_SYMBOL vmlinux 0x942a4ff0 sock_no_connect +EXPORT_SYMBOL vmlinux 0x942ed013 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x94309396 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x945969e5 framebuffer_release +EXPORT_SYMBOL vmlinux 0x949105aa dst_release +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94ac6cbb unregister_md_personality +EXPORT_SYMBOL vmlinux 0x94ea5544 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x94f8dae5 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x94fa04b5 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x950c1faf tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x950cb450 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514def3 simple_rename +EXPORT_SYMBOL vmlinux 0x95184d05 padata_start +EXPORT_SYMBOL vmlinux 0x951971f6 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x952ebcbf blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x953ae5e7 del_gendisk +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95479054 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x9555722e blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x9559e302 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x955a832f ___preempt_schedule +EXPORT_SYMBOL vmlinux 0x959e7fdc pci_find_capability +EXPORT_SYMBOL vmlinux 0x95aaad32 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x95b01d4e netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x95bc8c44 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95dd767a inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x960b6337 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x968088d4 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x969679e9 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x96a40c14 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x96aac96a tcf_em_register +EXPORT_SYMBOL vmlinux 0x96aba385 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x96ad1c29 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96bf4f77 clkdev_drop +EXPORT_SYMBOL vmlinux 0x96c5bd6b poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96dc32c5 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x96ec0ac1 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x970dbbb7 blk_finish_request +EXPORT_SYMBOL vmlinux 0x973b3d38 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9758dbc8 processors +EXPORT_SYMBOL vmlinux 0x9765e985 phy_detach +EXPORT_SYMBOL vmlinux 0x9768dfca xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x9772e035 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97954f08 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97a59c92 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x97ae0aa7 serio_rescan +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x98240084 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x983a1e8c pci_disable_msi +EXPORT_SYMBOL vmlinux 0x984a9b8c tty_hangup +EXPORT_SYMBOL vmlinux 0x98542b98 key_unlink +EXPORT_SYMBOL vmlinux 0x9855ee68 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987133d6 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x98786d29 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x9882c8c8 register_md_personality +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x988fbd3c swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x98a572a8 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x98af5580 cad_pid +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98d1b536 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x98e4e9bd iterate_mounts +EXPORT_SYMBOL vmlinux 0x98ee085a phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x99191f27 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x991cce7b ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x992316c8 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x992c07b7 netdev_alert +EXPORT_SYMBOL vmlinux 0x9931c2fd phy_print_status +EXPORT_SYMBOL vmlinux 0x9932bc2a __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995dc475 __devm_request_region +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x99964531 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d03cef swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x99d38086 param_set_short +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99d4dd1f twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99f068d5 x86_cpu_to_node_map +EXPORT_SYMBOL vmlinux 0x99fe6c0b xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x9a1019b5 kobject_add +EXPORT_SYMBOL vmlinux 0x9a17368a swiotlb_dma_mapping_error +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 0x9a627ef5 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x9a64995e nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x9a682935 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x9a8a8359 md_register_thread +EXPORT_SYMBOL vmlinux 0x9a929fe5 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x9a9f9efd truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x9aa5b675 netdev_info +EXPORT_SYMBOL vmlinux 0x9aadfda4 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x9ab8f1dc km_policy_expired +EXPORT_SYMBOL vmlinux 0x9adeb030 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x9ae77d7b blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9afa039e lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x9b33a90f vme_lm_request +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b39e0bb nvm_register_target +EXPORT_SYMBOL vmlinux 0x9b4e5758 __napi_complete +EXPORT_SYMBOL vmlinux 0x9b537069 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x9b5c5cab kill_fasync +EXPORT_SYMBOL vmlinux 0x9b84c5fd truncate_inode_pages_final +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 0x9bcabc35 param_array_ops +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9be9493f serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x9bf8d459 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x9c1acabb dev_get_by_index +EXPORT_SYMBOL vmlinux 0x9c1dc330 nvm_register +EXPORT_SYMBOL vmlinux 0x9c401e9b simple_rmdir +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c4ee9ad pnp_register_driver +EXPORT_SYMBOL vmlinux 0x9c55daf1 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x9c5dc237 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x9c6f0f30 vfs_mknod +EXPORT_SYMBOL vmlinux 0x9c7a0e33 request_key +EXPORT_SYMBOL vmlinux 0x9c802d52 md_flush_request +EXPORT_SYMBOL vmlinux 0x9c848baa vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x9c9075e5 kobject_get +EXPORT_SYMBOL vmlinux 0x9c9d5f99 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x9c9df555 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9ccf4bf0 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x9cd79618 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x9cf0d4b3 sock_from_file +EXPORT_SYMBOL vmlinux 0x9cf9142f posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x9d0af56a gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d240bea bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x9d334740 mmc_stop_bkops +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 0x9d776031 km_is_alive +EXPORT_SYMBOL vmlinux 0x9d827a18 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x9d998f89 devm_memunmap +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9da5cbac gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x9da72873 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x9da76878 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x9dc24763 mapping_tagged +EXPORT_SYMBOL vmlinux 0x9dc4d4ad tty_port_put +EXPORT_SYMBOL vmlinux 0x9dcbf588 netdev_change_features +EXPORT_SYMBOL vmlinux 0x9dd2fbf8 mutex_trylock +EXPORT_SYMBOL vmlinux 0x9de18d86 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x9df050bf find_vma +EXPORT_SYMBOL vmlinux 0x9e098e2b cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2d6519 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e4f4786 inode_init_always +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e54380d xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e6808d6 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x9e6b1ad0 param_get_byte +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e90bc60 __dax_fault +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9eb1ad75 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x9eb2a7d4 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ebfaef0 inet_ioctl +EXPORT_SYMBOL vmlinux 0x9eeb7d4f mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x9efbc8d5 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x9efc1d5c __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x9f0222e9 fasync_helper +EXPORT_SYMBOL vmlinux 0x9f03b3d1 neigh_destroy +EXPORT_SYMBOL vmlinux 0x9f37cd48 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x9f40553c agp_backend_release +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f7ea223 mdiobus_write +EXPORT_SYMBOL vmlinux 0x9f8a839d mmc_get_card +EXPORT_SYMBOL vmlinux 0x9f92225c inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f98f315 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x9f9a46ab pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x9fa6b550 scsi_register +EXPORT_SYMBOL vmlinux 0x9fb4725f dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x9fca5b6d key_reject_and_link +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe5e7dc pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa018766c console_stop +EXPORT_SYMBOL vmlinux 0xa0256147 dev_driver_string +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa046b6d3 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04a1c3c kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa06ff399 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07b5f16 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0ceed92 sock_no_accept +EXPORT_SYMBOL vmlinux 0xa0d1946e vme_register_bridge +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f108af xfrm_state_update +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa1015e42 __destroy_inode +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10addb1 mount_subtree +EXPORT_SYMBOL vmlinux 0xa111ae74 __skb_checksum +EXPORT_SYMBOL vmlinux 0xa11522c4 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xa11feb6c end_page_writeback +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1243f3b filemap_flush +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14f59e4 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xa1669db2 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xa1ac44c8 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xa1ac9dbb blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xa1afb20a locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c4cd57 kill_pgrp +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c7a10c kmem_cache_create +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa202e2c1 bdput +EXPORT_SYMBOL vmlinux 0xa2087962 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xa208b39d mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20bfc5e ata_print_version +EXPORT_SYMBOL vmlinux 0xa2124fe0 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xa21bfe62 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xa225c85b sock_edemux +EXPORT_SYMBOL vmlinux 0xa22b90a4 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xa2606962 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xa2676806 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xa26bc959 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa29317be __mutex_init +EXPORT_SYMBOL vmlinux 0xa298ed50 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2cbeaf2 audit_log +EXPORT_SYMBOL vmlinux 0xa2d59994 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xa2e0659c filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xa2e6e976 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xa2f3b346 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xa316e071 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa3214d35 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa359eb9a blk_end_request +EXPORT_SYMBOL vmlinux 0xa37662a6 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa37f6aa8 phy_resume +EXPORT_SYMBOL vmlinux 0xa3b8f1d9 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xa3bf4747 scsi_print_result +EXPORT_SYMBOL vmlinux 0xa3c453be ppp_channel_index +EXPORT_SYMBOL vmlinux 0xa3caceec ps2_begin_command +EXPORT_SYMBOL vmlinux 0xa40e2769 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xa41e823b generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xa429af46 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xa42d0f96 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xa44f5dfe agp_enable +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa457b783 redraw_screen +EXPORT_SYMBOL vmlinux 0xa46070c7 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa485cc67 mntget +EXPORT_SYMBOL vmlinux 0xa4acca27 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4be72bc scsi_device_put +EXPORT_SYMBOL vmlinux 0xa4ccf6b6 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4e08f9c __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xa4eca6a8 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xa4f8726c dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xa50a80c2 boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa528edfd dev_mc_flush +EXPORT_SYMBOL vmlinux 0xa52b24f8 file_path +EXPORT_SYMBOL vmlinux 0xa52f00bf md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xa5334915 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5576a01 lock_fb_info +EXPORT_SYMBOL vmlinux 0xa558c9cc __napi_schedule +EXPORT_SYMBOL vmlinux 0xa56836db flow_cache_fini +EXPORT_SYMBOL vmlinux 0xa569c119 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xa56d4be8 netdev_warn +EXPORT_SYMBOL vmlinux 0xa594881a mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5e6fc1a set_nlink +EXPORT_SYMBOL vmlinux 0xa5ffc903 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xa602642b filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xa6037bcd dev_add_pack +EXPORT_SYMBOL vmlinux 0xa6174e95 get_cached_acl +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa6468458 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68993a9 md_update_sb +EXPORT_SYMBOL vmlinux 0xa69fc17c truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xa6ad4db9 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xa6b3c53e inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6c14e13 find_lock_entry +EXPORT_SYMBOL vmlinux 0xa6c25093 tcp_connect +EXPORT_SYMBOL vmlinux 0xa6d116e7 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xa6d25242 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xa6ea544b twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xa6fc3733 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa721f37b mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa730c2bc generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7432b03 phy_stop +EXPORT_SYMBOL vmlinux 0xa748a393 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xa749700e dev_addr_init +EXPORT_SYMBOL vmlinux 0xa74bcd62 rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xa7589811 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xa785fa46 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xa78678fc tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa79bdc4f blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xa79d68cb tty_unlock +EXPORT_SYMBOL vmlinux 0xa7a0f22e blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xa8237ddc sk_capable +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa85bf7c6 skb_dequeue +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa879eaee mmc_can_reset +EXPORT_SYMBOL vmlinux 0xa8883e07 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xa88a6b80 scsi_add_device +EXPORT_SYMBOL vmlinux 0xa893ee2f dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xa8b0bc52 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xa8e019b2 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xa8e32d2e vme_irq_generate +EXPORT_SYMBOL vmlinux 0xa8f352d8 dev_close +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 0xa9308da6 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xa9509a7b dst_discard_out +EXPORT_SYMBOL vmlinux 0xa951244a phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xa9538cff tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xa95cb090 key_put +EXPORT_SYMBOL vmlinux 0xa9636b98 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa99c9b5b xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xa99e18d1 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xa99f3631 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9b6b96d ip6_xmit +EXPORT_SYMBOL vmlinux 0xa9b78fe3 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xa9bd2676 __vmalloc +EXPORT_SYMBOL vmlinux 0xa9bd564e kmem_cache_free +EXPORT_SYMBOL vmlinux 0xa9c21cc1 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cb4db3 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xa9e54328 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xa9ee7788 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xa9f137b1 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xa9f142fc fget_raw +EXPORT_SYMBOL vmlinux 0xa9f44225 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xa9f6070f clk_add_alias +EXPORT_SYMBOL vmlinux 0xaa0a990a blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xaa1a640b skb_append +EXPORT_SYMBOL vmlinux 0xaa40bcf7 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa70cec7 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xaab76dff netlink_net_capable +EXPORT_SYMBOL vmlinux 0xaab9d40d free_user_ns +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadaecf7 d_tmpfile +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xaafef866 scsi_print_command +EXPORT_SYMBOL vmlinux 0xab0799c3 component_match_add +EXPORT_SYMBOL vmlinux 0xab13a467 serio_reconnect +EXPORT_SYMBOL vmlinux 0xab1f8b03 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xab261644 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xab30bbd1 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xab32d809 icmpv6_send +EXPORT_SYMBOL vmlinux 0xab4ac040 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xab4d9a0c generic_block_bmap +EXPORT_SYMBOL vmlinux 0xab55025a pci_set_master +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 0xab7f0e79 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xaba56b2d sg_miter_start +EXPORT_SYMBOL vmlinux 0xabac1726 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabdcc824 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xabf51df9 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1e40e2 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xac376bc3 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac3aa798 neigh_lookup +EXPORT_SYMBOL vmlinux 0xac607c96 blk_make_request +EXPORT_SYMBOL vmlinux 0xac6187f3 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xac6e3a6f netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xac7ddf72 register_framebuffer +EXPORT_SYMBOL vmlinux 0xac8a946a xfrm_register_km +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacbc65ff phy_disconnect +EXPORT_SYMBOL vmlinux 0xacc76868 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd2b526 lock_sock_nested +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 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad765ea1 genphy_suspend +EXPORT_SYMBOL vmlinux 0xad817e8c udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad882050 cdev_del +EXPORT_SYMBOL vmlinux 0xad91fafb phy_device_free +EXPORT_SYMBOL vmlinux 0xad999888 misc_register +EXPORT_SYMBOL vmlinux 0xada3cf40 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xadc5b2cd truncate_pagecache +EXPORT_SYMBOL vmlinux 0xadc5ffdb get_acl +EXPORT_SYMBOL vmlinux 0xadee0d1c cdrom_open +EXPORT_SYMBOL vmlinux 0xadfd09ab pci_reenable_device +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae3cd43b __elv_add_request +EXPORT_SYMBOL vmlinux 0xae4277da agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xae583f02 mmc_erase +EXPORT_SYMBOL vmlinux 0xae67a13e __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xae7287d3 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xae8118c8 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0xae9b482b simple_readpage +EXPORT_SYMBOL vmlinux 0xaea0cdfa security_inode_readlink +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeadcb2b genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xaecbbf9a pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xaee549b8 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xaf0e84fd pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xaf215811 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xaf2dda14 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xaf37ebec pci_dev_get +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4555db ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xaf4dea62 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xaf50985e tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xaf548791 blkdev_get +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf9198aa xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xaf98bd67 amd_iommu_enable_device_erratum +EXPORT_SYMBOL vmlinux 0xafa14c26 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xafa5281c dev_trans_start +EXPORT_SYMBOL vmlinux 0xafa956e0 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xafb8c6ff copy_user_generic_string +EXPORT_SYMBOL vmlinux 0xafcfb231 dqget +EXPORT_SYMBOL vmlinux 0xafd5ff2c amd_iommu_v2_supported +EXPORT_SYMBOL vmlinux 0xafe1865c pci_bus_type +EXPORT_SYMBOL vmlinux 0xafe95d01 netif_napi_del +EXPORT_SYMBOL vmlinux 0xaff5359f seq_path +EXPORT_SYMBOL vmlinux 0xb003f1f9 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xb02e35df dquot_release +EXPORT_SYMBOL vmlinux 0xb04bd5b4 tso_build_hdr +EXPORT_SYMBOL vmlinux 0xb0584787 pci_enable_device +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb06d76bf __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xb09a3b6f passthru_features_check +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0ad3902 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xb0b08758 pci_match_id +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0db064a single_open_size +EXPORT_SYMBOL vmlinux 0xb0dc7b5e fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e602eb memmove +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xb108bd9a sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb15117ce scsi_target_resume +EXPORT_SYMBOL vmlinux 0xb152d87d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb156a154 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb16e7054 fb_class +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb1a3998b tty_wait_until_sent +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 0xb1e7bbac tcp_syn_ack_timeout +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 0xb249dad0 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xb24f4c2e blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xb2548bab sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb27ecaa2 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xb28714b3 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xb2a61ccd scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xb2adf373 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d5a552 complete +EXPORT_SYMBOL vmlinux 0xb2df60e5 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0xb2e92f58 lease_modify +EXPORT_SYMBOL vmlinux 0xb2f74fb6 intel_gmch_remove +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb2fd5ceb __put_user_4 +EXPORT_SYMBOL vmlinux 0xb313863d __ip_select_ident +EXPORT_SYMBOL vmlinux 0xb3171900 vme_master_request +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb3501133 unregister_nls +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb353cef1 netdev_state_change +EXPORT_SYMBOL vmlinux 0xb3947425 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xb3968e4e skb_tx_error +EXPORT_SYMBOL vmlinux 0xb3c86998 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3dcddd5 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xb3e64db3 block_write_end +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb400dce2 module_put +EXPORT_SYMBOL vmlinux 0xb41e7780 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb446acaf do_truncate +EXPORT_SYMBOL vmlinux 0xb463f3d0 proto_register +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb4813ba9 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xb4911391 ping_prot +EXPORT_SYMBOL vmlinux 0xb4a28e20 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xb4c5aa68 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xb4e40112 vga_client_register +EXPORT_SYMBOL vmlinux 0xb4ff4d3c bd_set_size +EXPORT_SYMBOL vmlinux 0xb50281a9 pci_choose_state +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb52f1067 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xb559207a fsnotify_put_group +EXPORT_SYMBOL vmlinux 0xb55ea229 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xb56f6949 sync_inode +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5a10daa vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c28bad mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xb5c4ba09 proc_create_data +EXPORT_SYMBOL vmlinux 0xb5c76cdb md_error +EXPORT_SYMBOL vmlinux 0xb5c84b2b ilookup +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5cc103d mpage_readpages +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb6158b14 icmp_send +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb64334ab xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xb6694652 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6846dbf prepare_binprm +EXPORT_SYMBOL vmlinux 0xb687d9ac pnp_request_card_device +EXPORT_SYMBOL vmlinux 0xb68a5d3d set_binfmt +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6ab5f19 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xb6b0cb4b generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xb6bccf2e read_code +EXPORT_SYMBOL vmlinux 0xb6ca160b __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xb6e9d9ae lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xb739a3a7 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb7614227 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7cfba8c blk_peek_request +EXPORT_SYMBOL vmlinux 0xb7e6ab40 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xb80e9215 amd_iommu_complete_ppr +EXPORT_SYMBOL vmlinux 0xb813c700 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xb8140c80 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xb8174885 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xb845de38 genphy_update_link +EXPORT_SYMBOL vmlinux 0xb852d455 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xb868c81f fddi_type_trans +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8762ec3 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8d9a39f eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8f79963 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb93d035a set_device_ro +EXPORT_SYMBOL vmlinux 0xb93fe466 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xb9476791 param_ops_string +EXPORT_SYMBOL vmlinux 0xb971e151 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xb97b0484 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xb9c494ed i2c_master_recv +EXPORT_SYMBOL vmlinux 0xb9c7f872 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ecf8d7 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xba027612 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xba0834bc qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xba238c27 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xba24d559 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba320da0 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xba400d45 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xba46daf4 kfree_skb +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba6ea1b1 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xba6f2730 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xba7414e2 input_register_handler +EXPORT_SYMBOL vmlinux 0xba785698 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xba831533 nd_pfn_probe +EXPORT_SYMBOL vmlinux 0xbaabcaee nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xbab33fcc i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xbac72c67 udplite_prot +EXPORT_SYMBOL vmlinux 0xbaebae60 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xbaf61cd3 inode_change_ok +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0f9001 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xbb29d429 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xbb319ffd pnp_device_detach +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb46585f netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xbb470706 bdget_disk +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb4f85bb end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb7f651a simple_follow_link +EXPORT_SYMBOL vmlinux 0xbb7fcca9 netif_napi_add +EXPORT_SYMBOL vmlinux 0xbb82f93d dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xbb8b28a4 input_inject_event +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 0xbbb06243 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xbbd89aaa nd_integrity_init +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbbecfdd6 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xbbf200da pci_request_region +EXPORT_SYMBOL vmlinux 0xbbf72259 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xbbfb332b do_splice_to +EXPORT_SYMBOL vmlinux 0xbc09f632 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xbc0aa446 __scm_send +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc21b98f compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xbc2af381 unlock_buffer +EXPORT_SYMBOL vmlinux 0xbc5a6fbb compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0xbc79974f inode_set_flags +EXPORT_SYMBOL vmlinux 0xbc7aa96a param_ops_ushort +EXPORT_SYMBOL vmlinux 0xbc864d2c nf_afinfo +EXPORT_SYMBOL vmlinux 0xbcac4be0 phy_suspend +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc650a0 amd_iommu_domain_set_gcr3 +EXPORT_SYMBOL vmlinux 0xbcc93900 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xbcded110 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xbcdf2a11 get_user_pages +EXPORT_SYMBOL vmlinux 0xbcf8b9e4 generic_getxattr +EXPORT_SYMBOL vmlinux 0xbcffc34b twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xbd0cd261 read_cache_page +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd366817 write_cache_pages +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd5aa8c1 tso_start +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd9ac53b ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xbda28481 amd_iommu_domain_clear_gcr3 +EXPORT_SYMBOL vmlinux 0xbda5961c nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdde8381 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xbdef45e5 bdevname +EXPORT_SYMBOL vmlinux 0xbdfb6dbb __fentry__ +EXPORT_SYMBOL vmlinux 0xbe0985bf dquot_enable +EXPORT_SYMBOL vmlinux 0xbe0995a1 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xbe1988be pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe476988 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xbe87bf0b param_set_int +EXPORT_SYMBOL vmlinux 0xbe92ac68 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xbea3ba72 devm_request_resource +EXPORT_SYMBOL vmlinux 0xbea5c566 __kernel_write +EXPORT_SYMBOL vmlinux 0xbebcf3df textsearch_prepare +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbed7d0f6 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xbeea9b23 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefb3add sock_create_lite +EXPORT_SYMBOL vmlinux 0xbf020772 fb_set_var +EXPORT_SYMBOL vmlinux 0xbf100cc1 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xbf40b0dc mmc_start_req +EXPORT_SYMBOL vmlinux 0xbf5cff58 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xbf5e8ccb read_cache_pages +EXPORT_SYMBOL vmlinux 0xbf73eecb skb_trim +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf8d24ca vlan_vid_del +EXPORT_SYMBOL vmlinux 0xbf8e4738 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa5df2e abort_creds +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfda6e8c elevator_change +EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff1d6eb fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xc00483ab inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xc0244b4a devm_clk_get +EXPORT_SYMBOL vmlinux 0xc028d79c __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xc03ec60a __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xc051f710 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07c5153 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xc07c5fbe tty_name +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc082f8d6 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xc08ab5c6 pci_clear_master +EXPORT_SYMBOL vmlinux 0xc094d260 vme_slot_num +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b6418f tty_port_destroy +EXPORT_SYMBOL vmlinux 0xc0bf0414 dev_addr_add +EXPORT_SYMBOL vmlinux 0xc0c63c2c __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xc0c8127e mount_nodev +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc0d1279e security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xc0d919db fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xc0f2bbd6 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xc0fbf41c sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xc1216c81 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xc148d8a0 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xc14e8b72 setup_new_exec +EXPORT_SYMBOL vmlinux 0xc15058dc netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc167e678 block_read_full_page +EXPORT_SYMBOL vmlinux 0xc16e2fc6 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xc1c9a131 amd_northbridges +EXPORT_SYMBOL vmlinux 0xc1cf7b9c pci_iomap_range +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f6479e pagecache_get_page +EXPORT_SYMBOL vmlinux 0xc222d3e9 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xc2334a37 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2444132 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xc25e249a dump_page +EXPORT_SYMBOL vmlinux 0xc2684c24 bdev_read_only +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a3a362 __lock_buffer +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2c1256a elv_rb_find +EXPORT_SYMBOL vmlinux 0xc2c894bc should_remove_suid +EXPORT_SYMBOL vmlinux 0xc2e04734 padata_do_serial +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e71eb9 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xc2e8dabf neigh_seq_start +EXPORT_SYMBOL vmlinux 0xc2ebf1a0 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc2f049a0 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc32395c6 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xc3270ead devm_clk_put +EXPORT_SYMBOL vmlinux 0xc347d489 skb_copy +EXPORT_SYMBOL vmlinux 0xc350b4eb wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xc35aec22 sg_miter_next +EXPORT_SYMBOL vmlinux 0xc35d4c2c cdev_alloc +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c3e544 param_get_int +EXPORT_SYMBOL vmlinux 0xc3c3e70a ppp_input +EXPORT_SYMBOL vmlinux 0xc41aea07 tcp_close +EXPORT_SYMBOL vmlinux 0xc42a2035 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xc432663a sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xc45d8e49 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xc467a19c pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xc46b8081 seq_escape +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc495ba93 netdev_notice +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a45c24 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xc4b68530 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xc4be6160 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xc4c9acf4 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xc4ce1882 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xc4cf0c06 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xc4d9e48f con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xc4f149ba free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xc4f331c6 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xc4f75eda blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xc5070478 blk_init_tags +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc5160767 devm_release_resource +EXPORT_SYMBOL vmlinux 0xc518f87e eth_header_cache +EXPORT_SYMBOL vmlinux 0xc51c3468 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc558530d profile_pc +EXPORT_SYMBOL vmlinux 0xc5763e53 netdev_emerg +EXPORT_SYMBOL vmlinux 0xc5840f12 sync_filesystem +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e460ef d_find_any_alias +EXPORT_SYMBOL vmlinux 0xc5eb36af generic_read_dir +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6092ab7 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xc6137ec0 finish_no_open +EXPORT_SYMBOL vmlinux 0xc61c9da8 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xc6268437 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xc62c935a sock_no_getname +EXPORT_SYMBOL vmlinux 0xc62f1aa5 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc64787e4 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xc64b05f0 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6612ff7 give_up_console +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc67cc112 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xc681f81c free_buffer_head +EXPORT_SYMBOL vmlinux 0xc6959246 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xc69c7ddb inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xc6a1ca35 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6b3830a abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xc6b594e6 release_sock +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6f67088 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7261b66 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7569890 tty_lock +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +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 0xc7940c63 genl_notify +EXPORT_SYMBOL vmlinux 0xc79bb4cb gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7a8ebf5 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xc7ad0355 dma_sync_wait +EXPORT_SYMBOL vmlinux 0xc7b9fb3b lro_flush_all +EXPORT_SYMBOL vmlinux 0xc7d140a6 ata_link_printk +EXPORT_SYMBOL vmlinux 0xc7d1934e mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xc7e9e0c3 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc806c86b __devm_release_region +EXPORT_SYMBOL vmlinux 0xc822efa7 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xc8315705 crypto_sha1_finup +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 0xc8669f23 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8753e47 compat_mc_getsockopt +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 0xc8dcd349 revalidate_disk +EXPORT_SYMBOL vmlinux 0xc8fae826 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xc9019554 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc914582d d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xc9237216 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xc92edc0e d_alloc_name +EXPORT_SYMBOL vmlinux 0xc94251c9 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96c635d neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xc96ca37f km_policy_notify +EXPORT_SYMBOL vmlinux 0xc96e3a90 dm_put_device +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc99a1563 noop_llseek +EXPORT_SYMBOL vmlinux 0xc99c0e31 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9b4158f mmc_can_trim +EXPORT_SYMBOL vmlinux 0xc9e974d1 dev_alert +EXPORT_SYMBOL vmlinux 0xc9ed93e1 napi_get_frags +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0ce0f6 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0xca0d8553 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca21afb5 netlink_set_err +EXPORT_SYMBOL vmlinux 0xca45d5b8 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca612a33 neigh_xmit +EXPORT_SYMBOL vmlinux 0xca7038d5 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca918ecc vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca95213e agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xca95b145 pci_pme_active +EXPORT_SYMBOL vmlinux 0xca9c9a89 is_nd_btt +EXPORT_SYMBOL vmlinux 0xcaafbb42 touch_atime +EXPORT_SYMBOL vmlinux 0xcab7a696 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xcabb2482 input_event +EXPORT_SYMBOL vmlinux 0xcac7f5ed dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xcae6ed59 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xcaeaa972 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf739ce get_agp_version +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0fad42 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xcb10ca67 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xcb163310 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xcb328218 md_integrity_register +EXPORT_SYMBOL vmlinux 0xcb568bef netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb81e98f phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xcb915e93 cap_mmap_file +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbb07ed2 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc44624 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xcbc4ebf6 ps2_command +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd12529 freeze_super +EXPORT_SYMBOL vmlinux 0xcbd33018 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xcbd9345f tty_mutex +EXPORT_SYMBOL vmlinux 0xcbdd00f1 nobh_write_end +EXPORT_SYMBOL vmlinux 0xcbde9680 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xcbee8075 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xcc1127dd arp_tbl +EXPORT_SYMBOL vmlinux 0xcc166f97 netlink_capable +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc27a57a unregister_binfmt +EXPORT_SYMBOL vmlinux 0xcc4edf12 put_disk +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc7da372 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc9077b9 serio_interrupt +EXPORT_SYMBOL vmlinux 0xcc9aa2a6 register_sysctl +EXPORT_SYMBOL vmlinux 0xcca66dc6 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xccbf0a6b blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccd4cdf2 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xccd4cf5b __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xccd97678 mmc_release_host +EXPORT_SYMBOL vmlinux 0xcd0ebaa7 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2b05e6 generic_show_options +EXPORT_SYMBOL vmlinux 0xcd2deeab serio_unregister_port +EXPORT_SYMBOL vmlinux 0xcd4b0c14 __vfs_read +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd6a76d9 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xcd73d33f napi_gro_flush +EXPORT_SYMBOL vmlinux 0xcd908455 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xcda377ea ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xcdaa8bfd swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd00a75 __getblk_slow +EXPORT_SYMBOL vmlinux 0xcdf0b29f new_inode +EXPORT_SYMBOL vmlinux 0xce113da7 bioset_create +EXPORT_SYMBOL vmlinux 0xce1d9fdb do_splice_from +EXPORT_SYMBOL vmlinux 0xce25d68a dev_uc_sync_multiple +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 0xce64b8ad dm_unregister_target +EXPORT_SYMBOL vmlinux 0xce65440c agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xce6a1b8b fs_bio_set +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceb2a871 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xced5290f dquot_commit_info +EXPORT_SYMBOL vmlinux 0xcedd04ad nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xcedfa706 skb_queue_head +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf2930d0 udp_del_offload +EXPORT_SYMBOL vmlinux 0xcf2fac82 param_get_bool +EXPORT_SYMBOL vmlinux 0xcf356015 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf939bb7 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xcf9ba304 do_SAK +EXPORT_SYMBOL vmlinux 0xcfa9a462 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcffde962 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xd0101faa inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xd01f64a0 tcp_ioctl +EXPORT_SYMBOL vmlinux 0xd023e9c1 set_bh_page +EXPORT_SYMBOL vmlinux 0xd031b92c down_write_trylock +EXPORT_SYMBOL vmlinux 0xd032f5c7 dst_alloc +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd099a375 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a1d7ef dev_get_iflink +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b5ed34 dst_destroy +EXPORT_SYMBOL vmlinux 0xd0be3d54 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xd0cd7587 set_pages_x +EXPORT_SYMBOL vmlinux 0xd0db3345 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xd0eb8f6d padata_register_cpumask_notifier +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 0xd11b2e41 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xd1315c4d max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd16f27d9 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd18448b8 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xd1a30fe7 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xd1b84074 bioset_free +EXPORT_SYMBOL vmlinux 0xd1c2797d mmc_can_discard +EXPORT_SYMBOL vmlinux 0xd1c7b763 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1de5e1d amd_iommu_domain_enable_v2 +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd223883f sget +EXPORT_SYMBOL vmlinux 0xd2286ae4 amd_iommu_domain_direct_map +EXPORT_SYMBOL vmlinux 0xd247b194 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd259a060 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd2789081 eth_header +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28514ac led_update_brightness +EXPORT_SYMBOL vmlinux 0xd2b0241f skb_free_datagram +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2cc8b4d set_disk_ro +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2df8142 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xd2e7d1bb abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xd2ee54bd nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xd31246e5 __serio_register_port +EXPORT_SYMBOL vmlinux 0xd3227d0c pnp_possible_config +EXPORT_SYMBOL vmlinux 0xd338a90c ip6_frag_match +EXPORT_SYMBOL vmlinux 0xd341b128 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd3709557 __get_page_tail +EXPORT_SYMBOL vmlinux 0xd3719d59 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0xd38d1994 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xd38e10ce sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xd3b028bc pci_set_mwi +EXPORT_SYMBOL vmlinux 0xd3b677e1 blk_complete_request +EXPORT_SYMBOL vmlinux 0xd3bb8588 __pagevec_release +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3d1fa86 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xd3d637c1 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xd3eb6cc7 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xd3f25931 tty_do_resize +EXPORT_SYMBOL vmlinux 0xd3f3f167 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xd42f2b20 security_path_unlink +EXPORT_SYMBOL vmlinux 0xd43d55c0 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xd4402b93 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xd456fa40 seq_file_path +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd471e337 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48f1aeb dcb_getapp +EXPORT_SYMBOL vmlinux 0xd49420e2 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xd4bf1d8f locks_remove_posix +EXPORT_SYMBOL vmlinux 0xd4bf8f09 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xd4c7b627 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xd4da89ad dput +EXPORT_SYMBOL vmlinux 0xd509f357 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xd50b542e tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd51055bc sock_register +EXPORT_SYMBOL vmlinux 0xd51393df arp_send +EXPORT_SYMBOL vmlinux 0xd52c9c19 down_write +EXPORT_SYMBOL vmlinux 0xd54cd66c jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd568ef51 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xd58049d0 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5e7d8b4 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xd60f5a9d devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63dbb32 nobh_writepage +EXPORT_SYMBOL vmlinux 0xd640692f pci_disable_device +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd66f7bff I_BDEV +EXPORT_SYMBOL vmlinux 0xd6818acd jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd6a2ba32 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xd6ad0107 bdget +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6c4f9df complete_request_key +EXPORT_SYMBOL vmlinux 0xd6d79fdd dm_io +EXPORT_SYMBOL vmlinux 0xd6e85443 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd70afa43 kthread_bind +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd735fcda pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7729f86 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xd77a932b acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xd77fc849 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xd7960eb2 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xd79c5d22 __genl_register_family +EXPORT_SYMBOL vmlinux 0xd7b59b6b netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e9832f inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd80b7354 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xd81c97cf generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xd820f194 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xd8813d19 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xd8987b20 uart_register_driver +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89dc9d6 blk_put_queue +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b652d5 tcp_seq_open +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8faef2c set_page_dirty +EXPORT_SYMBOL vmlinux 0xd9029ec6 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd90c10dc nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd935e26b request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd94ab354 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xd94e73cd pci_iounmap +EXPORT_SYMBOL vmlinux 0xd969b2c7 amd_e400_c1e_detected +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd983cc6d tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9c23f1a default_file_splice_read +EXPORT_SYMBOL vmlinux 0xd9c35850 sock_i_uid +EXPORT_SYMBOL vmlinux 0xd9c67fa9 cpu_info +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9df11c8 netif_skb_features +EXPORT_SYMBOL vmlinux 0xd9eccf81 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda419aee skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xda501748 mount_single +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 0xdaa0677e phy_device_remove +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac5922d nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb0bf09d lro_receive_skb +EXPORT_SYMBOL vmlinux 0xdb141b64 pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb2247ac pnp_is_active +EXPORT_SYMBOL vmlinux 0xdb24b140 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xdb34fb0e ___pskb_trim +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb413a6e elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xdb516c22 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb71d594 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb789e80 amd_iommu_flush_tlb +EXPORT_SYMBOL vmlinux 0xdb7b457c set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xdbc6c974 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xdbd48cc1 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xdbd9dcdc __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xdbe8d1d0 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xdbeb3eb4 pci_release_region +EXPORT_SYMBOL vmlinux 0xdbf9ff58 qdisc_reset +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +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 0xdc65a465 get_io_context +EXPORT_SYMBOL vmlinux 0xdc682e5d bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xdc6fdbc5 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xdc863cba security_path_chown +EXPORT_SYMBOL vmlinux 0xdc9be721 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcdb752a netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xdcde2082 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xdce11064 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xdcf0cf34 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xdcf3d41e blk_execute_rq +EXPORT_SYMBOL vmlinux 0xdd09b91f vga_put +EXPORT_SYMBOL vmlinux 0xdd0dca27 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xdd12046d dquot_alloc +EXPORT_SYMBOL vmlinux 0xdd2efdfb __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xdd3c73a3 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdda1bb7c blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xddb283a0 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xddb583f6 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xddc04382 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0xddcab5d5 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xddcee16b kern_unmount +EXPORT_SYMBOL vmlinux 0xde08236a get_phy_device +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde18a4b1 key_revoke +EXPORT_SYMBOL vmlinux 0xde33dee7 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xde5d174e ip6_frag_init +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde693901 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xde6e0b3c pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xde8ef9f8 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9aefd0 dquot_drop +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeca902e zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +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 0xdf36ad33 fsync_bdev +EXPORT_SYMBOL vmlinux 0xdf406aa8 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5c82ec nf_log_register +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf655780 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xdf84e245 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc5df30 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xdfc8c8e6 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xdfcba640 vfs_link +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfee6699 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe001d795 proc_symlink +EXPORT_SYMBOL vmlinux 0xe029d0d0 dev_notice +EXPORT_SYMBOL vmlinux 0xe02fb4fe md_check_recovery +EXPORT_SYMBOL vmlinux 0xe046b095 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xe04baa7e ip_defrag +EXPORT_SYMBOL vmlinux 0xe04bffd1 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe056725d skb_split +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe068242f phy_start +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0781a1a skb_pull +EXPORT_SYMBOL vmlinux 0xe07d9d3b scsi_execute +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe086f045 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe0924664 free_page_put_link +EXPORT_SYMBOL vmlinux 0xe0987e8f get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xe09e06b7 uart_match_port +EXPORT_SYMBOL vmlinux 0xe0a89853 mutex_unlock +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c27716 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xe0f51f24 serio_bus +EXPORT_SYMBOL vmlinux 0xe0f980b9 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11453a6 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1424604 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17719a3 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xe1d5d5aa blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xe1da3f06 node_data +EXPORT_SYMBOL vmlinux 0xe1e30caf elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xe1ebac1d put_filp +EXPORT_SYMBOL vmlinux 0xe1f09a5b try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xe1f0b665 pci_dev_put +EXPORT_SYMBOL vmlinux 0xe1f297b5 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe1f3666f iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xe1fd380a agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe2057338 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xe20b80f8 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24c5497 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2522398 set_posix_acl +EXPORT_SYMBOL vmlinux 0xe257ce84 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xe257f5e0 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe25d2f9e remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xe2742a84 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xe2912d2e kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xe29b04e9 acpi_set_firmware_waking_vector64 +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a43200 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xe2af6e06 __block_write_begin +EXPORT_SYMBOL vmlinux 0xe2bed315 ns_capable +EXPORT_SYMBOL vmlinux 0xe2c0c275 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e2ca01 pci_read_vpd +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 0xe321a456 param_set_uint +EXPORT_SYMBOL vmlinux 0xe338b6aa vme_master_mmap +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe34cb94b netdev_features_change +EXPORT_SYMBOL vmlinux 0xe3719d2a acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d3fa42 vme_dma_request +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3dfcf71 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xe3eac755 md_write_start +EXPORT_SYMBOL vmlinux 0xe4163e41 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xe463aa99 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xe46c0d0a dquot_resume +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4b11c77 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xe4b57a77 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xe4c7f859 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xe4c8b44d load_nls +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4ee47b4 dev_set_group +EXPORT_SYMBOL vmlinux 0xe5081096 netdev_err +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe53d6aca udp6_set_csum +EXPORT_SYMBOL vmlinux 0xe54059e7 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xe5481786 security_path_mkdir +EXPORT_SYMBOL vmlinux 0xe5612a59 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58898c1 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xe58c7f6b input_close_device +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5de913a inet_bind +EXPORT_SYMBOL vmlinux 0xe5e21fe6 __inode_permission +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6026436 path_is_under +EXPORT_SYMBOL vmlinux 0xe6078e0b sk_receive_skb +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe6230b68 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xe6238b3d __register_nls +EXPORT_SYMBOL vmlinux 0xe62a3342 filp_close +EXPORT_SYMBOL vmlinux 0xe639cf64 param_ops_charp +EXPORT_SYMBOL vmlinux 0xe648ead3 param_ops_bint +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe653252a sock_no_bind +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe66e2d90 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xe67286d8 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6ebf0bc blk_sync_queue +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe70ad6e1 __put_cred +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe72014dd xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xe72bd4cf save_mount_options +EXPORT_SYMBOL vmlinux 0xe739654a request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xe742c438 skb_insert +EXPORT_SYMBOL vmlinux 0xe7450200 __kfree_skb +EXPORT_SYMBOL vmlinux 0xe74e270e elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xe75d330a pipe_unlock +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe782c9b0 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xe7848884 simple_statfs +EXPORT_SYMBOL vmlinux 0xe7918df2 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xe79508d0 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b0dfea __sb_end_write +EXPORT_SYMBOL vmlinux 0xe7bc4716 simple_release_fs +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d83656 kdb_current_task +EXPORT_SYMBOL vmlinux 0xe7e921fb tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xe7f6c8da key_invalidate +EXPORT_SYMBOL vmlinux 0xe81d06b5 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82b5a2a __dquot_transfer +EXPORT_SYMBOL vmlinux 0xe84aa457 pci_request_regions +EXPORT_SYMBOL vmlinux 0xe8731918 x86_hyper_xen +EXPORT_SYMBOL vmlinux 0xe8756124 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe8867e3d acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0xe89e6c64 current_in_userns +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8ae649e tty_kref_put +EXPORT_SYMBOL vmlinux 0xe8afaa3d i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c493df mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8df4551 d_walk +EXPORT_SYMBOL vmlinux 0xe8e193c6 cont_write_begin +EXPORT_SYMBOL vmlinux 0xe8e61e4b pci_bus_put +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8fc4277 mmc_put_card +EXPORT_SYMBOL vmlinux 0xe8fdf979 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9374d59 tty_devnum +EXPORT_SYMBOL vmlinux 0xe93d763f blk_recount_segments +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95db3f7 misc_deregister +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe9806e58 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xe9918a50 tcp_poll +EXPORT_SYMBOL vmlinux 0xe996e11f soft_cursor +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9a91dc4 init_buffer +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9cf2ba6 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea01bee1 nf_log_set +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea15f948 inet_put_port +EXPORT_SYMBOL vmlinux 0xea2380d4 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xea2d679a iov_iter_init +EXPORT_SYMBOL vmlinux 0xea35907f path_put +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea4e53b6 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0xea613381 scsi_init_io +EXPORT_SYMBOL vmlinux 0xea78b6b8 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea9d5b14 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xeac73847 irq_regs +EXPORT_SYMBOL vmlinux 0xeac9f66d dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xeaddbcbd stop_tty +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaeba863 make_kprojid +EXPORT_SYMBOL vmlinux 0xeaedb203 tty_throttle +EXPORT_SYMBOL vmlinux 0xeaf962d0 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xeb107da1 would_dump +EXPORT_SYMBOL vmlinux 0xeb26a034 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xeb28d5e2 tty_port_close +EXPORT_SYMBOL vmlinux 0xeb2cff07 skb_pad +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeba80dd4 security_file_permission +EXPORT_SYMBOL vmlinux 0xebba4ef3 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xebf962d9 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec0ebd03 bdi_register +EXPORT_SYMBOL vmlinux 0xec126bf3 con_is_bound +EXPORT_SYMBOL vmlinux 0xec1494be pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xec32d725 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xec33a510 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xec407689 d_splice_alias +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec546f51 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xec585756 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xec5b4236 pci_restore_state +EXPORT_SYMBOL vmlinux 0xec5f239c __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xec8bf69c blk_stop_queue +EXPORT_SYMBOL vmlinux 0xec9653d7 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xec9a629e dentry_unhash +EXPORT_SYMBOL vmlinux 0xecac8407 __memcpy +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xecd2adc3 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xece05229 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf558f4 iterate_dir +EXPORT_SYMBOL vmlinux 0xecfd68ef acpi_get_node +EXPORT_SYMBOL vmlinux 0xed0434f2 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xed3522c4 set_blocksize +EXPORT_SYMBOL vmlinux 0xed3617ab sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xed4a2150 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed5b61b6 napi_disable +EXPORT_SYMBOL vmlinux 0xed9b5590 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedd4dc1c locks_copy_lock +EXPORT_SYMBOL vmlinux 0xede3c509 kill_anon_super +EXPORT_SYMBOL vmlinux 0xede42aa7 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xedee4bea inet6_del_offload +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf4d951 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xedf78d4c mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xedff07e9 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xee079995 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee35fc6d xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xee6461e1 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xee7aa3cf iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee895e4b __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea77888 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeec94a02 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef427cb lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xeef65507 skb_find_text +EXPORT_SYMBOL vmlinux 0xef59692f max8925_reg_write +EXPORT_SYMBOL vmlinux 0xef722da7 inet_offloads +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xef9f34cf vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xefa2898f cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xefbd059d inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xefc37fdd udp_disconnect +EXPORT_SYMBOL vmlinux 0xefc8d93e tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xefc9e389 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xefd10c8f pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd56725 inet_shutdown +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 0xefe77226 amd_iommu_flush_page +EXPORT_SYMBOL vmlinux 0xeff2d150 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xeff97766 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0015e4e ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xf00f67a9 load_nls_default +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf0222017 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0xf02a4025 alloc_pages_current +EXPORT_SYMBOL vmlinux 0xf0337a14 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xf04b0513 input_free_device +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf062be07 free_netdev +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08836c2 udp_proc_register +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 0xf0adef22 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xf0b121fd __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0fe4aa6 mmc_gpiod_request_cd_irq +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 0xf123039d nf_getsockopt +EXPORT_SYMBOL vmlinux 0xf1257fab vga_con +EXPORT_SYMBOL vmlinux 0xf1318d62 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf1413bc2 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf155ea82 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xf168169e skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xf176a8fd nlmsg_notify +EXPORT_SYMBOL vmlinux 0xf18d15ef sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1b8d840 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xf1c6be93 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1eff93f cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xf1f592e6 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xf1fab0af __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xf203005f devm_ioport_map +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf213583a __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf21edbc4 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xf2248d81 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xf2253288 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xf22662bc bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xf22fc188 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf270368c uart_get_divisor +EXPORT_SYMBOL vmlinux 0xf28ed6e2 machine_to_phys_nr +EXPORT_SYMBOL vmlinux 0xf292c6ce param_get_uint +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 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf302fff4 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34bb584 generic_removexattr +EXPORT_SYMBOL vmlinux 0xf34c5380 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3772356 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xf3776f24 blkdev_issue_flush +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 0xf3c45163 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xf3c8764a find_inode_nowait +EXPORT_SYMBOL vmlinux 0xf3c9318d scsi_host_get +EXPORT_SYMBOL vmlinux 0xf3d58312 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e8a4b5 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xf3eea08b bh_submit_read +EXPORT_SYMBOL vmlinux 0xf4089ad3 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xf424548e devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xf427393d jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf439b8fa param_ops_byte +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4420d85 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xf44422ad nvm_submit_io +EXPORT_SYMBOL vmlinux 0xf465bde2 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf4719772 dev_load +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf480cf2d write_inode_now +EXPORT_SYMBOL vmlinux 0xf48c266c pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4aea00c phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf4b52f99 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xf4b5cd30 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c10a69 file_update_time +EXPORT_SYMBOL vmlinux 0xf4d2eb1c frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xf4dd91e9 neigh_update +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4ffbc36 thaw_super +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 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54809b8 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xf54d676c default_llseek +EXPORT_SYMBOL vmlinux 0xf5547749 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xf56a5e8e inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xf56e648e audit_log_task_info +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a33ce6 inet_add_offload +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5b14b8b blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf62209e5 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63d7f06 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xf6544709 nf_log_unset +EXPORT_SYMBOL vmlinux 0xf65fdbec ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf68ab6d2 open_exec +EXPORT_SYMBOL vmlinux 0xf693a145 irq_stat +EXPORT_SYMBOL vmlinux 0xf699984e kobject_put +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6bc741c is_nd_pfn +EXPORT_SYMBOL vmlinux 0xf6c67ae6 block_write_full_page +EXPORT_SYMBOL vmlinux 0xf6c69e8e sock_recvmsg +EXPORT_SYMBOL vmlinux 0xf6e2a18f mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ecfbd1 tty_write_room +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7238b0d input_release_device +EXPORT_SYMBOL vmlinux 0xf73f3333 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xf74c50a3 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xf7576fca iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf7759f38 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xf77a0e4a iget5_locked +EXPORT_SYMBOL vmlinux 0xf7825927 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7ac4ee9 udp_add_offload +EXPORT_SYMBOL vmlinux 0xf7b9a5c9 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xf7d099d9 force_sig +EXPORT_SYMBOL vmlinux 0xf7fc0c2a pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf816173f cfb_copyarea +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83254a5 simple_dname +EXPORT_SYMBOL vmlinux 0xf8538eae i2c_transfer +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf893f1ce blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xf89e50be ppp_input_error +EXPORT_SYMBOL vmlinux 0xf8a0dafb put_cmsg +EXPORT_SYMBOL vmlinux 0xf8aaf8d9 input_open_device +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8da2db5 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f659ac __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xf909fafb mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xf9485761 register_netdev +EXPORT_SYMBOL vmlinux 0xf958405b nd_device_register +EXPORT_SYMBOL vmlinux 0xf9717ef7 module_layout +EXPORT_SYMBOL vmlinux 0xf975f675 dma_supported +EXPORT_SYMBOL vmlinux 0xf98e69d3 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a63be0 blk_get_queue +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9d8ee89 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0xf9fab090 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xfa0c51cd bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xfa20d003 inet6_protos +EXPORT_SYMBOL vmlinux 0xfa3007b6 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa743a7c compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0xfabcd036 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xfac4e7b9 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacbd81a jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad02dd0 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xfad36c02 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xfad918c4 dump_align +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfb0287fc udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb1f401c dev_alloc_name +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb3a07fd fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xfb52d29b sync_dirty_buffer +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 0xfb81e99c nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xfb87b747 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xfb8ed09c elv_rb_add +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb979649 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xfb991bc8 simple_getattr +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab01c6 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xfbafcfde sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc54a31 generic_make_request +EXPORT_SYMBOL vmlinux 0xfbf318da d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0b4408 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xfc2a02de sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xfc2a52ee skb_copy_expand +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc46e2d4 __frontswap_store +EXPORT_SYMBOL vmlinux 0xfc69c1e7 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc896ee8 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcc082dd tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc93279 d_set_d_op +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcef7406 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xfcf1d082 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd330a26 sock_rfree +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9bb601 copy_from_iter +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdf24856 __scm_destroy +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 0xfe05db17 pm8606_osc_disable +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 0xfe2e7260 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xfe34ecd0 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xfe4a8e05 __find_get_block +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5def0f ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xfe6d94c5 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe7c6230 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xfe846c7d dm_put_table_device +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfea610aa nf_log_trace +EXPORT_SYMBOL vmlinux 0xfea68b42 kill_litter_super +EXPORT_SYMBOL vmlinux 0xfea791f2 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xfeb08e12 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xfeb58ddc km_report +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee46cb3 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef00d3a vfs_statfs +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xff1ac06c dmam_pool_create +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff369fb9 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xff53bc40 __frontswap_test +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff72cf74 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xff9ddf59 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xffa355d1 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xffc81924 get_fs_type +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffd65f17 inet_accept +EXPORT_SYMBOL vmlinux 0xffe2b176 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xfffe88e3 vme_bus_type +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 0x3a85f466 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 0x54290bd4 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/camellia-x86_64 0xff38d480 xts_camellia_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x28d0453f glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x2fbb82ca glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x7fad57e8 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 0xd67cb3e3 glue_ecb_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xe0296c54 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 0x43cee0f3 lrw_serpent_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0x44d5b84b xts_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 0xa84ea33d serpent_ecb_enc_8way_avx +EXPORT_SYMBOL_GPL arch/x86/crypto/serpent-avx-x86_64 0xcf5f0332 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 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 0xb2a50cf0 lrw_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xb5be5448 xts_twofish_setkey +EXPORT_SYMBOL_GPL arch/x86/crypto/twofish-x86_64-3way 0xebb0516f 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 0x0073a722 kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00922f5b kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01b62bc4 kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01ccd216 __tracepoint_kvm_fast_mmio +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02c4627d kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x045850f5 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x053902cb kvm_clear_guest +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 0x0a425ba2 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0b0446b9 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4adf8b __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x113fa5fb kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x140889be kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x14861666 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17c114b8 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1b0c40a2 kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1cc82679 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1ed909b6 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1edea73d kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2089f3e9 kvm_emulate_hypercall +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 0x2644a783 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x26e0de34 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27a1676d kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2835005e kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28a92b21 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x29e6b12d kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2a0d87ab kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c6db8b3 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3236a3c2 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32a18811 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32e4fe6e kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x354b9f74 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3772bce7 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3d31487f kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x403c8904 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4094ba1b kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41b40810 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x41c4b9ad kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x42064b3c kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43c76e25 kvm_requeue_exception +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 0x4de40f9b __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4eb2428a kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f6353d5 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x502323e4 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x562859bf kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5953f469 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a95411e kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5d97b58b kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x601d50db kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x603c9734 kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6061aa58 kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64d79242 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x660c22a6 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x672131b3 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69097e31 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6945aab2 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x69b35228 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b0b097d kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6bf87a45 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d6d0d64 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ec9c14a kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ef538ea kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f75e3ea __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fe53bfb reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x709cd8cb kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x721be82c vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x722f52a2 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72cb42a5 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72e7b8d6 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73ae496a __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x791abd92 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c4f7293 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7cf95a77 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f9ea290 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ff1ca84 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81943cb6 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81a276db kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8333756b kvm_get_msr +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 0x8ef8e561 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92e6ec6f kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93db3a9d kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99768c02 kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a50ffc3 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b6c58db kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9d415bf4 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e202fd7 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e9b6878 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa08381a4 kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa150ceac kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa156dac7 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1e9f808 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa2c2983b kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa3dd2f34 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4d57013 __tracepoint_kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7d6bdd4 kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa93ade60 x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa48f87c kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaae4bf42 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab1c605b kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xab6b7b9c kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae28e6a0 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0521518 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb094cae6 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0f79e48 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1cc6be5 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1cf0ab6 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb23d372f kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb326aecf kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb850e350 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb90d1a7c kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9bd8ac6 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb9e2205d handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb9b29c4 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbbf5d657 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbdbe780b kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1adc2cb __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc1f3cb55 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3a2f279 gfn_to_page_many_atomic +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 0xc9e8138f reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca8cd192 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc057fd5 kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce00e7de kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce03da85 kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce6cd163 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xce7d50af kvm_valid_efer +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 0xd07e3042 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd3ca35c8 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd4a3d74b kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd586ff7b kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd5ac9749 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd70d66e9 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd73f703d kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd9108ec9 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd924639e kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd93bbd46 gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd99bf968 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdd4e1ea9 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe19da15a kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe65a8b5c kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe77f902c gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe94e587b kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea77a8fa kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xea99a6b2 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xede36fd3 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf167d7b6 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1eb76da kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2312a76 __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2c419bc kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf352dce1 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf3707882 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf41e94f5 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8f4642c __tracepoint_kvm_nested_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf8ff6628 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf909134e kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbd95c91 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfc012a78 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdfdf0b6 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfed39714 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x051ebe40 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1ca20fa9 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x410e7156 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x61994330 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x67de6df2 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8f742de2 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf7dcd544 ablk_set_key +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x2586b64c af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x283c029f af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3b66e54a af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x5bc4476d af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x681e6850 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x6f71f150 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x7cf378a3 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x9365e5f1 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa7a71317 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xd757c465 af_alg_release +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xcc693d26 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6e730f5b async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x830de7f4 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x48de48b7 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x61b40606 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3f2fe2dd __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x641e1f20 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xce204c19 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf4412447 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x16c56982 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xeb2165fd 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 0x090cbf58 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x9079cb15 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x2639fc53 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x4b62949a cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x721300bc cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xacd5480f cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xbb9ea8c9 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xbf555e7f cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xc0a66a66 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xe1725e92 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf37c2808 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xfdfe7759 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 0x47fea7ab lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x0a786024 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x51b3e571 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5ac74907 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x95584c5b shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa2980f64 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc28ff85a mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xccdea779 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xefb23c22 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x00e6bbc5 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x523a1ffb crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xbec5b75b crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xcb011d0f crypto_poly1305_setkey +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 0x3f222057 xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x50e230ca acpi_nfit_attribute_groups +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0xd04058a0 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 0x02d4645c ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x347247f8 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3dd5f3fb ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x40cac1f0 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4e2d4a98 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x63694dda ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x642d3c31 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x66619531 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x676830d3 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6c1914ae ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6c4f71e5 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6d1d683b ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x747ad88c ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8049ab32 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x83cb89d5 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9ed4f370 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa043b2c6 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc87afa78 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd1aee918 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd2b7925e ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd69b967c ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef2a4210 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xfde695e1 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1dd3d4f4 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2ec28049 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3cbd5470 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4f4bab23 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x62ae48d9 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x72047766 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7660448d ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x811c68cc ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88a27c1d ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9b062e20 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9f686ee2 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe73422b4 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf02b0dc9 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x14598cea __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 0x2a9ddfd2 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7e875bdb __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8ddfa8f4 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xcb1fb8c0 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0155d0fa bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0a7b989f bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0d94ad75 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x14963a50 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x16ac3c3a bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x19e6d679 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x217bdd15 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x29d7823e bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3db4b2ce bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50cedb48 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x562ce03e bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x64fd9685 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x67bb3236 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x68245f3e bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x709d2cb0 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a49f831 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x90118a28 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x90a9ec61 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa0d0fcf5 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaa1efe16 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xaf13e1e1 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc47b0ada bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdcc7ebec bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf8efa738 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2d449688 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x334aa764 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3789a1c0 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x5be15272 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9971bd60 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x9e4f0a50 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x22261b4d btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2339ccfa btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4c043904 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5ed2923d btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6ad1a288 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6e73ca9b btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8ee176b8 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa0f88814 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaaba8303 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf0e89268 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfddd0337 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xff8da864 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x09f181d6 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x155eb6c6 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1a0bdcce btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3297cb27 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5ebdb5ba btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7bcb29dd btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7bfb373e btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbe7ce860 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf6dfb46 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xde8df1a0 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdeb7ba57 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2c95cf0d qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x3fa03e0c qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x1a2407b6 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2d135707 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 0x459c6735 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x00f14cf1 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x086f1786 adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0f2ee031 adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x19b8c52d adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1ec04d75 adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x2d09c51b adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3159a15d adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x34bbf897 adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3932ce60 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3a43cdd2 adf_service_unregister +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x40651fc7 adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x411200c9 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x427d5452 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4392aed2 adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x46c6f681 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x488ee3d2 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x49f6191b adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4d17593a adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x575a66d9 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x61248321 adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6b9e30e2 adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7f47fc1e adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x856e347e adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x918ebf8a adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x91f8561b adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x98b31b80 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9ad57850 adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9eeb9829 adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xaa7fa974 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbfc0a880 adf_dev_get +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xcb043e6f adf_enable_aer +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 0xd7af7d11 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdc51c40e adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdd99e167 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xeb11afad adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xefff8fee adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/dca/dca 0x01a33ab9 dca_unregister_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0x08675b0d dca_remove_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x31a2c8df dca_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x42409eae free_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5517f1b0 dca_add_requester +EXPORT_SYMBOL_GPL drivers/dca/dca 0x5cc3169f dca3_get_tag +EXPORT_SYMBOL_GPL drivers/dca/dca 0x64f3f65e register_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0x9dbeec87 unregister_dca_provider +EXPORT_SYMBOL_GPL drivers/dca/dca 0xac34ecec dca_register_notify +EXPORT_SYMBOL_GPL drivers/dca/dca 0xb2cf97f8 alloc_dca_provider +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x307fa823 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x53fa5688 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6afff5f2 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8675bde7 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa63d4454 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x55dc7130 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xd1ed7f93 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xf232a9da hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x430d45ad vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xb35f1c3d vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xec37b37e vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xfdc82d3c vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x096fbcf3 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x01464612 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0d292045 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x13b17933 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x170795db edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1c188eb1 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x240aed52 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x27a1563d edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2994ace3 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4f42b259 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50e41fa6 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x52270f61 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x56481e43 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5c3247da edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x72fa6c81 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8218d2de edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8d19feef edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x980d6be1 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9fd3ce6a edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9fd7a739 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbabf0710 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcd32ada0 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdda21cb9 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe7219d56 edac_mc_alloc +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 0x23c9fa50 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4c3b46b0 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x645b59b7 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb3044aa9 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb6791a9f fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe6dd81e0 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x5271efa9 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x87f388fe bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x80f4db62 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xbba9fa12 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6bd50d15 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d23f481 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb37f9cf3 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 0x6326821e 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 0x812e18f7 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xbe294584 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 0x13a9668d hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x258b0a84 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x37ece817 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43cdc57d hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44883bd7 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x62d46be8 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x682e9aa9 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6d1d140b hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x703c9f34 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f978735 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82427319 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82c10e02 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x84944e39 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x85064c4c hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86cb8b31 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89db887b hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x89e2ba3c hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8d21d2a9 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8dcf7c2e hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9342422d hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa1f99795 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa56ed349 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xabff31f2 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xae41c1e5 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb61b0040 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd8485f1 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbeee33f3 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcd4e0d06 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcfea23e4 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7e2af7a hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd594df7 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe213fb62 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xecf2e8b7 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf335acd3 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf43c24f8 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf7a8fcdf hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x792decdf roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x522aacb6 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8c50b4a1 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa7cb130c roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa86c0af1 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xaf12ecca roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcbed3501 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x06e6b6b4 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0a31977f sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x18eea583 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5c28aec8 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x62b8e981 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9ed61527 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xde7702fd sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf7ae788f sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf89b051d sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xde208754 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1f83795e hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x23019577 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a85747a hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7b27ae55 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x878b9f80 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8dcb64ee hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9a97059e hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa3423fb9 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xca05c593 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcf566b02 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd5588b02 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd9ddddb5 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdb050b01 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe32cb970 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe8a01b88 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xecbb6acb hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf7d26bcc hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x01297d5d vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x0ee0039e vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x10f08f06 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1f7f10cd vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x340f1a2f vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x342f2d2e vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x45690bf8 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6464eea0 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7929ef96 vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x79628907 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9fc31f05 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb58ffad5 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc68e7817 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc9fb42aa vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd2938cda vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd81dfcaf vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xde497834 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf3179dc2 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xf393ae23 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x00b35ec7 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x2cd28bb2 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x778177e6 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x16b2bb10 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2eb5be2e pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x36b6866f pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x429f917c pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4de555d8 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4fb81ee3 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5e11c18b pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7ccce97d pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8b753917 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x92dbbb6a pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x95960ede pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb9af8c17 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf23e0f3c pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf24ab087 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf8204cde pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x01371f94 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1efca492 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9a54b0ec intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xa079a8a9 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xca3caec4 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe9bae8ce intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf3da2605 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5ea52f28 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8e5b11ec stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9a3422f8 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf9317a50 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xfa5ea3bc stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x6d973a47 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7fe8a0e5 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xaf34a324 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xc4b1652b i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xcc0c1d76 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xef5ff720 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2706d8b4 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xba4d685f i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x697bb998 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xd789b511 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0dc6f3d8 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x4b6e50eb bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcb16e0cf bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1b2d2dde ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2672835b ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2e7112e9 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x35f1cfe0 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7937dbcd ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8048a6ea ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9b19906a ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9c0e5563 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc05562bd 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 0x1ac6ba3d iio_channel_get_all_cb +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 0xf840a181 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xa9589c79 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xb2e3fb35 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2f0cb183 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x7e2cbfb6 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xab288462 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0f0b1635 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x56f5c374 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x65c3959a adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x754beb78 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x855759ae adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x95a4682d adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x97a22afc adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9effd29f adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa1ec2094 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc90ea85e adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xdffef26c adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeda20052 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x06dec538 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c5369c9 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e982bfd iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1783f889 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22e2e020 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x295380b6 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e9ddfa9 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x44179530 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54ca0ee4 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x554c676a iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x60562fd0 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x69703534 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7e529015 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8974918a iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8a405823 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x944c4d06 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9476a2eb iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9b500ae9 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9dadf34f iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9fc43784 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9ff3c2ca iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa5f77e27 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae70ec41 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7963932 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc7c5173e iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcaf703c2 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd814ee97 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xda76e700 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf27a8cb2 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5e3e82f iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xffc1fc86 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x66e38218 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 0xc6e1a8a2 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xa2786d20 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xae87c33f cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xb049bf2f cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x929bd6d1 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc6503cb1 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xfcb308bf cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x9473c6a5 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb0d31559 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x5fdbae1b tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6088217e tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xda48be36 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xef16fcaa tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0238a8e7 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1353d457 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3bb328fe wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3fd75100 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4926927b wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4c00b29c wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x52d3b7dd wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7a3f22c2 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x80aab202 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9d14af58 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd39dd36c wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf9c946b8 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x03a749b3 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x196b3988 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x23032977 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8f16a7c1 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa79cae06 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc90528b0 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe24140ad ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf84d77ab ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfe47d1be 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 0x13bb5bc8 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x24143bf1 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x245c876e gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x247eb666 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2a20bba4 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2c01f0b3 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2f6ddb17 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3f356071 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4af45129 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x594f79af gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x681998dd gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8d0d1cdf gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xaf953a7c gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb950349f gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcde9e86a gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xef1f51eb gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xef2bf145 gigaset_start +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2aeea648 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3fe52347 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x82dd5976 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x971aa923 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9b9e0346 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb59115af led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1a88d9bf lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x36f8ed2b lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x40cca49b lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x642618fc lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x822ee373 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x86bd038f lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9de4724a lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcb9ff897 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcf56ae39 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd3af9d0e lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf964b2d9 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 0x08a2d8bf mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2ed7838b __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x300f2fc6 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x34786185 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4cdcbbc1 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4e16619b mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6816b3b0 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x69e8525b mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa08b36d0 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa881ccab mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb23a899e mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb7523805 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe2e8231a mcb_device_register +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 0x3a3e237f dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3a9d0601 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x445ece36 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 0x9a06daa1 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xabd4536c dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb5ae2ed0 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 0xc952822a dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd5821579 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xeba4e298 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x1d5fe1ec 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 0x082fe7fc dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x09e1e520 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x1824710e dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x52803dd0 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5a36b324 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xedc25423 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfda0d35a dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa47ccf08 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xf28ece69 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 0x3e92dd6c 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 0x59e517fa dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6d91cab4 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x70de207d 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 0x77e5d19e dm_rh_dirty_log +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 0xa8d82e40 dm_rh_delay +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 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 0xc7926dff dm_block_manager_create +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 0x034c2a80 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x232ff6fa saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x44c3c2e0 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4f7556e5 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x75d99148 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x84647f44 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa9d8d4d8 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xbd109cbb saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd63a4127 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xddec665f saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x135e5ef5 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x499bfca5 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7623d380 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7d3fa883 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd0fe967b saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe33ec20d saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfc63a4ff saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0188784b sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x023dd108 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0e4f3ba2 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x344b0612 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3642d3f4 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3e504c4e sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5704dde2 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5bc80351 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 0x8052b43d sms_board_lna_control +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 0xae299324 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbce42721 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc2f68853 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc300bd81 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xcf8cf6d2 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdffc4d34 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeedddef3 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf68b14c8 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xde21d012 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x4b80fa02 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x8051ac8f tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x06a57307 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x091e1811 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x0dfb39ea media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x330609e2 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x35131762 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x50506cc7 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x6d3d8a9e media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x805feda7 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x90ae9be9 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x9b37fc2b media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xafe16bc3 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb9239a3f __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xbd6cb07c media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xd8cc2cb5 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xdbb48412 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xef3ddf44 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xf587e94a media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xfbd24d26 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xdd50ad6d cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0b6c3be6 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0e1a9956 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1a15868b mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d03990b mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2149afbd mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x281eca60 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x380300d3 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3a388aee mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4be5dbb9 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x619b2455 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6931b143 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x956497bd mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x975f1d80 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa31630cb mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xace04854 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb0640e65 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xca308583 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd7842cef mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf1a6ed0b mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x00f0bdfd saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x251953f6 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x302a8f2c saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6980cd86 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6f7ab48e saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x733bb787 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8afa97db saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaffd910f saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb34db15b saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xba6b9893 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbc83be3d saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbd4c877b saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbe845d40 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc0758a5c saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcf9ae13b saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdb8e3656 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xec38b56b saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee0b694f saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfa40ece0 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x0bca81a6 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x34491006 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x66c77c14 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7e1b4afd ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x932ed91f ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc573206c ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xfff86d38 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x1a8c3a41 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x1c7e8ff7 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x036ab309 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x10422a6a rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1778a85f rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1d0e7e7a rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x21f36502 ir_raw_event_store_edge +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 0x621fa83e rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x66a835aa rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x66f2717c ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9bbfda9a rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa14dfb27 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb6f2f950 rc_close +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 0xd2092c74 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd4da01af rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd5ff2761 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb7822b0 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfbaae4ab rc_keyup +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x60d95e4a mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x676db5b4 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xaf79c81a mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x56a1aeaa r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x4057399e tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x54389f3f tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x40551b65 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6e6109ae tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x30ebde1c tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x151cadab tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xdc2c3c8f tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xe5c8e2ce tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xfc9207f5 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x6324b66d simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01c580a2 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x229be71d cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x27663cbf cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2b185f38 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x341bd90b cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x345d7210 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x614b0a68 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x63560912 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7d652596 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8531a950 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x896abcf9 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9a52b73c cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9e6921c7 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa912b513 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc4a4557f cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdaa653a9 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xdf5afa36 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe2be23f6 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xee74a06b is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfb81fe85 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x5952ddeb mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xebbd610d mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0e8b4c37 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x14ec6fd4 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x206cf974 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3bbc4e6a em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x41582b68 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x565be0aa em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5c0befc1 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5cedb760 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x60bf7596 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6c59acb4 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x70d8ae33 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7d90d2e0 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa7184f60 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xabbbf669 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcad225c2 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd7cfa4ca em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe8b2053d em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfe41e8bd em28xx_gpio_set +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 0x97a48a51 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa83b2680 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe310b8e2 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf593bdea 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 0x07c85c25 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x134959c6 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x227ddc16 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x36e9290f v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x79420967 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 0x88137cc7 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 0xb609c90f v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xe48543e1 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 0x1ee5e581 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x21f01c09 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24b9ba40 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x26e02f7b v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a670c8f v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x32c9fb86 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x414af8c0 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x49f18391 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x69b176ae v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x74ac1538 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79ec7260 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f7a0504 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x85e4ed8b v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x92a7f471 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa57e1513 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9630f62 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaab41a65 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xab298b57 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb17f7d54 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb37bc06e v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8e644f8 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbaf620b0 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1385d4c v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4564cbe v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb0f6d9d v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5856a88 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfd5d8563 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12d5fccc videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1a5c44a1 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20b5c129 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x24a68907 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2cb2280c videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2ddfc0ee videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x430c5b42 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x47bf9ea7 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4e05d162 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5092375a videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x622ecf52 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x672dd2de videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6db26820 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x70fe9389 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x82e5f6fb videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x943bab34 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa4b6b9ab videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaa5f3b45 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaad5c34f videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb0f414c8 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb652fac0 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb9495602 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbbeccc59 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd72586c8 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x1f3214c0 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 0x807c8e3d videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa9c5ef9d videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf977acd9 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3f24512f videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9ce0a276 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xff66c8aa videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x081cd083 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x08e4c164 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x30c4db2e vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3c4b7fff vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4249ac9d vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4d8501a2 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x63bd1bef vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6bb3ce71 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x715813c6 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7483059f vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7cd9c873 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa6a8735b vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa9c61c71 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc94acb24 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd2abc3cc vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd38d74ae vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe2138c36 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf92409e5 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1737dae1 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x2f42cdd0 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 0xd30ec30f vb2_dma_sg_cleanup_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd7e076b3 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xf79f15f1 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x766d1400 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x053e15d1 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0a5d77af vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0b0b8cea vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0e4cfee7 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2bae2296 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x30400401 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3262b028 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x342d7165 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4800f045 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4adce834 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4fb975aa vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x586727dd vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x680f4f8b _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x69766f8f vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6c4a9b06 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x78f27d7d vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7913287e vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7f7560c5 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x861ad07b vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8710d98b vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x898c83b4 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8d8a8d13 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8f18f79c vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x958cc2f4 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x97d34984 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9a68335d vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa5d04634 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaacb1f45 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb74aecb3 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcd67c8f8 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd1d7f8fc vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdd3b120c vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x2b62787d vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x02728b6a v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x07007803 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b76b00f v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b8dd552 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x10334f8c 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 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4135da27 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d034656 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x56f62c21 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e7b9efa v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b983df1 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78b44ffa v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x924e02e7 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x92861f74 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x945f277d v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x97e0e44c v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98d0e270 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9a65d7c8 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b902c7e v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaa699198 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xadb9bfa0 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba46655a v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2a2fdaa v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdde92032 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdfdb9fdd v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe31002b1 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe47ddf07 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf21e203d v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf74d5bb1 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf8d5bab3 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x65edf5dc pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x8e608480 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xbe3a7d24 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x02282c97 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1dec609e da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x260720dd da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x26c2b605 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbb1d21fc da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xd1d50603 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe2437f25 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x31155d6e intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x56fbf8db intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x594d28ad intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x82d7108c intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0xdf50e88d intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0ec77636 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1602e281 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1ae96fe5 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x27d770a5 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3f647228 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x7261e0ab kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x76eefe88 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcaaaa94e kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb942745b lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc35b8e10 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xc73f6c8a lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x15059799 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8220e307 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8a1ddaa2 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc3ad119c lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd12e87e2 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf44ed4fb lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf73a8f37 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7ca74a74 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc3e2dd8d lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc5b38332 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x15640d07 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2f284c41 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9a57dd7a mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb899f7c4 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc8e26332 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdaed965a mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0093279b pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x00a5f200 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x23744cd1 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2452f833 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x51ea8193 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x725c698a pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8eeee0bf pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa01781c5 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa9f9ebc0 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbff0d4d3 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcbf6ac04 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x2a212a13 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x7cdb2fba pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x37efc079 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3d145e95 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4ec285ab pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x84137f29 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xeebd985a 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 0x0be895d8 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x29358e40 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x33692afb rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4331e194 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x433964cb rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x48101a00 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x611da9cb rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6965a901 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x732c50b8 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x837243e9 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8768a77f rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8e1a4ad9 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9088a6a6 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa0f3cea9 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa1a0cc4f rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa4ef5d5a rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xad570aee rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb1e2d6f0 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc2269df6 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc3d42ea1 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc4c2a678 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xce2d8521 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd3ece543 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd9bb2c54 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0da00dc6 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x14493a94 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3c9794cf rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x454255fa rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x54a1200a rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6a4fa0ea rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7b9aac6a rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8047d619 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x819ab514 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8a46aee2 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x94c7f466 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc5db8ffb rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf704ca01 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x05153f26 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x17de5def si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x181d9845 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c2098bd si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1f63707e si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x374c7299 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x454044c8 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ae780f2 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x548f283a si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5adeafb5 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c834e50 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6096293f si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x658b4616 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x678725f1 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e9b52f1 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6ee929fb si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x767b5987 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x797878dd si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x885eb059 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c39afe0 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x912f7e59 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa5664ca5 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xab1fcc65 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xadc92602 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb95c5779 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc960188 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc01522f1 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcc18472b si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce027805 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcf6e225d si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd85df54d si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe8be9629 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xead5ca3d si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeb247ee5 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x02316e5b sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x56e9acc5 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa22d5032 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc110aa82 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd5e29f5d sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x628ec766 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa1118a9c am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xda79bfbf am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfb54497d am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb5876d6c tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc8131d56 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xdc79abfc tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe7cd0789 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x5c1433b0 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x4538da97 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x6060e040 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x69843409 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xda98cb90 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x58217d96 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x6eb3f496 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x82f7d075 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xedec0262 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 0x3eba671e enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x46915b90 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb3e203aa enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd3be0649 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd84249a5 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf6cf8e0a enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfcaf8c5e enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xffd42a06 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1acb0cc7 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4189127d lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5be0e4ac lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x70e7fb6a lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa325996d lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb4b8e4ae lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc3b96871 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf2819ca4 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x075b9a35 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0f4946c8 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x13e95dd5 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x235a970e mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x246e2b14 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2e1089b7 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3c774fa2 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3e9116cd mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x42e188b0 mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x44467ad5 mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x493dddfd mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4edb7179 mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x816df304 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8954add9 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9ffd41fb mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa0dc83c7 mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa34157bf mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xaa3449fd mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbd731fe4 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd1561027 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd1982bb4 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xded957ea mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe389485e mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe6b1d5ad mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe7a749eb mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe8dd0278 mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xecd3827a mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x1a30bdd8 cosm_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x3dcd870e cosm_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0x53d5033b cosm_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xd710daaf cosm_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/cosm_bus 0xfd908dce cosm_find_cdev_by_id +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x15790a13 mbus_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x465ab532 mbus_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x56fd3932 mbus_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/mic_bus 0x9c05110d mbus_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x437acf67 scif_register_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x578cca6f scif_unregister_driver +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0x9d94f46a scif_register_device +EXPORT_SYMBOL_GPL drivers/misc/mic/bus/scif_bus 0xc585db6e scif_unregister_device +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x02e0605f scif_unpin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x03866237 scif_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x04af0852 scif_client_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x1bc843fc scif_client_unregister +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x242afb36 scif_fence_wait +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x24ae8811 scif_get_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31d0ef3f scif_readfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x31f517c5 scif_get_node_ids +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x53fdfc94 scif_bind +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x6378fdc5 scif_writeto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x66f1bf5a scif_register_pinned_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x6e51f5fe scif_poll +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x7b72c537 scif_send +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x85088c0e scif_recv +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x86a6d88e scif_register +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x889552cf scif_vreadfrom +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0x90c5544c scif_fence_signal +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xa1bd3cf0 scif_pin_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xb16dfa21 scif_vwriteto +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xbc1dd1f8 scif_put_pages +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xc545bb53 scif_connect +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xda8d405b scif_listen +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xdc1ac39e scif_open +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe1c35ef4 scif_accept +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xe911f45f scif_fence_mark +EXPORT_SYMBOL_GPL drivers/misc/mic/scif/scif 0xfcbe788f scif_close +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 0x281dfe9d 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 0x4adf41ea vmci_qpair_enquev +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 0x53c334f4 vmci_qpair_peekv +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 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 0x0d2d99b0 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2f5f1719 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x38cae075 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3fb46022 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x652c7dad sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x740e116c sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x818ea7a8 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9590620f sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x96b814de sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc81c4f7a sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc924fde2 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdccc5421 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xef2e1d11 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf3d75373 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x46a4fa86 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x50bd7fc1 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x56c6dab7 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5fba049a sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x61244e8a sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6ae5b1a2 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc269823f sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd590b655 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdd2661bc sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x03bf2f01 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x3c960ae9 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfea10a97 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x2f373ab1 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xa29cbee7 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xdccef537 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x8decdb72 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x05221abf cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x35212280 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb715941a cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13e04dec __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27a99a0d mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27db1811 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e9dd722 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ef68eb4 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2f3cd7d3 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x334da9fb mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c1d9d1a mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3c2d0c58 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44ac7f51 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x49cd6c60 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4f76ec15 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5012f917 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x543d0d5a mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x58257dab register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x59cb54dd mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5be04617 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5c8ef695 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x66dad45e mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6979ef4e __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7584aa0d mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7781621d mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x79fbf011 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88051b61 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x89f4a97e mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9bd0a945 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9ecff10f mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb2692b5c mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb7b4b50b mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbaf6f152 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc58676c1 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc68e963c deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9b0bbb0 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3b2f4e9 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe2a724a9 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4eb3782 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1dda052 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf31ff243 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5bf0c28 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf7c15ec2 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8f721ea __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff3bdd36 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0cfbcdf6 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x0f875144 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3f3f4736 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9fc7cd2a del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xb75da093 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x6b5d93fc nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xe4e9c45f nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xf1961853 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x22610730 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5d06e063 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x39d7fb1f spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4068d997 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x51918ae3 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x76b3b902 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7bc046c4 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x80c20f5c ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8f8e4c1e ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb8260f47 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc1b95e9c ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc47b036e ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcbccdd9f ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd702a483 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xef5afdce ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf8b2b18f ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfe93bd43 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x538def40 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xee6baa3c arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x09d53449 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1ab9e53a c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2165f3fc alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x28536c63 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x35e3ef21 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xff5a2273 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x02f5a85e can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1ce35136 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x21512758 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3def5167 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3f343999 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x536b6fc6 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5e72d0fe can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x602112e4 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x768341ee can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x83f64b0c can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9cc8d668 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa23f04ec alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaff231a1 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb2b02928 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd7db55d8 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xea70c17a alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf3be97b7 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf622c438 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x03f1a095 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x37f468b1 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5a391ee5 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6b96ef05 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x368baeac register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa1a910d0 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc5fe8ff1 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe8089039 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x011fb3f7 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07aec911 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x07dd465b mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09919272 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09a86379 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a3e5124 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c74bbe4 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d14da62 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14bf44f0 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x189879cb mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a640f97 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b1eb5ac mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f7070dc mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2500761b mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x269979c6 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2aa1d344 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b61360e mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d1492ae __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dbd01d4 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e03bcf4 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33bb85b7 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33f89bcc mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34d6195f mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35e00a12 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x364864c3 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x36e617d2 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37a90ab0 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a550d50 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x434b8249 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43ca459f mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4501110c mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x496a6efa mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cb8abe0 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d617056 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d7c7020 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4e95ca21 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50775a6a mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x508a28ee mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52cbdbab mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5791eef1 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x583a6fae mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59a75bbd mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a3512d2 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b8632fc mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c7621fe mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e41b259 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x602b27a1 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x618cecf2 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61e82a44 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6243e9a9 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64300d53 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x66c37674 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69463620 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a44056e mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cf17e03 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6df235fc mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70a20c6f mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x730d4d5f mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75602e0b __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76c59309 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d80f3f2 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7df6a9fc mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8020de26 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x809d29ea mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81d6631e mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84445543 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84e2e126 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x858fb5b1 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8707bfe0 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b2503a4 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8eabd4d2 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fed8cda mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9032cfa3 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95d7704f mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x988e14be mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f6527b0 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ffc073c mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0080c3c mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3b036ac __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6034efc mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa71465e3 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa433b4e mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab0bc5e0 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf223aee mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf2d8035 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0b7adb0 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb18c3cb1 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb26f22b9 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2898fe2 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb46c4d49 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb78d43c4 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbda2e3b mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbda5cc30 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe7d3209 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeb07f64 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1779149 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc33a5707 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3c8a0f2 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7c23461 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8b6feca mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcab20dc6 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd0156a1 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd11d5ecf mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5f0896b mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd65df173 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6b2667d mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdae3dadf mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdcba3f5d mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4aa3648 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6149e0f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe622807c mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xead4020c mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb5406cc mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee026f5d mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf134c5b0 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1ca3bce mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf27e2d53 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf576b0c4 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5fdbba9 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa947eea mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd30fcbc mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffa1ed21 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffbe4c10 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffdb1161 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02ff0240 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04324f49 mlx5_query_nic_vport_mac_list +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 0x0b04592f mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c20b70d mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f2b3698 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x11c00050 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14eacd39 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15e06e83 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16c5aa2b mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b46e643 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ded8644 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x213b7e79 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x280d6474 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32306474 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ea24dc8 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a860017 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x64d66864 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x679d0abc mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f70f6bf mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78f79040 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x802c25dc mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83c795e4 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a316c87 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ad11a68 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eb29cd4 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x916bb26b mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x953bbcd4 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa08008fb mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0e81965 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8d2f3b3 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab4e310e mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae2358c2 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3ed58f9 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb727ac11 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc218dea1 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc40193b4 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6fac155 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcedf588f mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd359a0c1 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe05484f3 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe817ef32 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xead1779f mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeddfc42a mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0c268e5 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaa1f38f mlx5_query_port_oper_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 0xc319435f devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x767c1e86 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x8646a772 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa95ae1da stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc3b756ea stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x51a40318 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8fd18afd stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb982d977 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xea85469b stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x2c2a7fb7 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x308f72b8 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x324f0041 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x510f5912 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x53ef99a2 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x65563e30 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7086b08f cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x883c2a20 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8e44b6ac cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc3633b1a cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcd397913 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf138c3d9 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf6924531 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf696fc15 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xff25aaff cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/geneve 0x2ab75222 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xa8030070 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3c9c6e82 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x63def099 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9be27d84 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe5fd0ca9 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xd7707d40 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x09e22624 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d678fcb bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1be7e38c bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6ab06776 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6b003b71 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x779d96c9 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8682f73f bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8976dc6f bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xcde6797c bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf7dec137 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x206bebe0 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8838f6e0 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb68c9739 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf5590598 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0cd1eb86 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x118e0438 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1b7b59ec cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x38549f85 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x444e6c02 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x56f9ce6a cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6565e810 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7d270bd6 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf2f76aad cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x202a8616 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8e99d6a6 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x928b4272 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb1051024 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xb47f304a rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc0605477 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x002a6a7e usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05796838 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x07a5fe93 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0dbb60db usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x116306b7 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1a5aae6d usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x266ab3d8 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x27696df3 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2d072226 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x379135dc usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f23a164 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x502a4af3 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x52b32bab usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64194f5b usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6579d659 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x68c2c2a7 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7c3e577d usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7fef2cc3 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8320e0ba usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89489d6f usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9a2c8d4e usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c434da6 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d867d02 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xae8d242b usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb47e8ef8 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb86dab19 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc5737864 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc885ad2f usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcbbcb6bd usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe14113ed usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf1f30d0a usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf64bca45 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x08c90b68 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3cf7a393 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x018e4285 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x04e08ffd i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0cda231a i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2840cc3c i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3941e88e i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x44674e98 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x581f659d i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7308b5fe i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x74ef3207 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x88a8d789 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8e9dbcc5 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc8881dd3 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcfa894e3 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd318c636 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe805dff5 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfcc73e61 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x4d7bb837 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x638dac64 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xeaf7b730 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf1971e04 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x8f59a48c libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x220a53fb il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x2a6a16a6 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x313c2c48 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x442287ea il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x50fc08f3 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0053c357 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1815a7f1 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1a650ea1 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x30952788 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x41ccaef9 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x457c4bc6 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x46d8604c __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4972022b iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4d5acd9a __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4f3f1259 iwl_parse_eeprom_data +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 0x528d7254 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x53838fd9 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 0x75c3acc2 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x85fef132 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9bc89377 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xad79c80a __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaec06ffb iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb83ed60c __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xba7e2fa5 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4692928 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 0xccc5170b iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd70e3edf iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf66749ae iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf9972e50 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfbd85045 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x05df82d1 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x461406e5 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4d515a5a lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5ade25af __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x62b48674 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x64886899 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x83e8322b lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8461acbf lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x88a89d74 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9a3469af lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9e8a3a67 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc0f0ab4e lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xcb22e829 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xcb96a606 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd877c1c1 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf43ca8e2 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x33cfe31f lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6668846a __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6d88068c lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x883223e8 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x97e1ccc2 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc29f3af3 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 0xcc07ffa2 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd128e71f lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x048fd683 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x184800dc mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1ae2538a mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x234d7b8e mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x349c3ea4 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x678545ed mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa6931807 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb16b5151 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb2ae1e18 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb80a1667 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbe310ca5 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbfa821ff mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc826f070 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd36c4eaa mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd4f14947 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xde13202d mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe0fb613f mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe4b331b1 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf0524ce6 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x01b73faf p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3ef6d991 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7bc79704 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa8c43a40 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xaf9356b9 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc8243ddb p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd32e2f64 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe7b05fe5 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xed6a4e61 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x109fcede dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7fd71d0d rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa449cb3f dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9bf34b5 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03e68f70 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1537011d rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1a6c074c rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3840273e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x45860565 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x473b8ff0 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x525577d5 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x64b29061 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6a9dfeb6 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6cc47231 rtl8723_dm_init_dynamic_txpower +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 0x740628cb rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x800604fd rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x820683b2 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82d65acb rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9a9c4653 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa6523944 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 0xb1aa48df rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2262869 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb263e989 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb2a848f8 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe09a5ed0 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe137dd62 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xee0af226 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf09b5bb8 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7c6e73a rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf87b94fb rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfd8028d8 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0da95e3e rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x143bad31 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x21a70a04 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 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35485fba rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39d5c74f rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x537686b4 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x678abf5c rtl_tx_mgmt_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 0x84437e0f rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa113fce9 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3ec4bb7 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6b9dd62 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xacd6da91 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbd072a87 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc296c162 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc82bdec3 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd04fc0b5 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdb4f8fff rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfd76f2a0 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe59c37a rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x025673c0 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xbe82bd63 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 0xe842de8d rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xffcf6c60 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x11be1d79 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1a0f7580 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x241415c2 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2dfb8007 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3326f271 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3781a3fc rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x55e64b19 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5e958d17 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x609d09c7 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6804932f rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6cd6e4f8 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6e605579 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x79d2b3d6 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7ca9d450 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x817fcd8d rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x89a09bc4 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8f79c283 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x94bdf060 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x95e85a74 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x96309d19 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9eede614 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa0306fb3 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa9dfcdc6 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb3d250ee rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb704edeb rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc9609a16 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd9302c3a rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd972cbde rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb078f60 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe08a3da8 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe4e76345 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeedbcf75 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf15ad1ce rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf9a6c5db rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfaaba470 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfc950757 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfd5c226f rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfe0e3a8a rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x06c7e557 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x14c68fef rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x24c2bd5d rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2ade3518 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x42415502 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x45610eeb rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x544f6161 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5460bd53 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x54b454c4 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8f3a23c3 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x982e8ad1 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 0xe2b7862b rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xffdfedce rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0377878d rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x082fbcb6 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0da62a31 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x16544286 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1a403402 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1d8d449c rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x24c8cad7 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x278d7a10 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2fb45e3c rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x448b9d60 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x478de07b rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x486a60e8 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4e17103d rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x50f648fc rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x52a65fc0 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x560e86f1 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x59bf5f4e rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5dc63f89 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x602f09d1 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x648384c5 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e9dbbf7 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x70179a72 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7161a5ab rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x72ba91b4 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7a3a253f rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7d025065 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x85b85ba9 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x866e2e08 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8cc92fcf rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x96b05fdd rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb084a543 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbe53b7f3 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc95c36c1 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcb63157d rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcbe9b260 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd36ea267 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd64bf448 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdda6f71c rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe5f468b8 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe97ebe49 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xeb164b86 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xebd163b1 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xedae22cd rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf1804942 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf3f22c23 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xff88606c rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x6ba6b57d rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x868fd2d3 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xa6f3feed rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xb966237c rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xdc016da1 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x9690010c rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd2e2103a rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xf9818d8e rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xff70fe53 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0bca9fbc rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x10923df9 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x162ab927 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1ce22ba9 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4145776d rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x428ec307 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x488fd733 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4b4cc291 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5ac07c89 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5fc52c76 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6c3d140c rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6ea7f9d0 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xad2801ec rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xce0e7e6c rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe92af294 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfd60dcbd rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x17a483eb wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x4765a4cf wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x635cad3d wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x02c3647c wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x115ab8fd wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1b3869f2 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c8c80db wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1fd6bc44 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28f27f3c wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x339e77c4 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x36343a6d wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x377c4dc2 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x38103083 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4c2d5a96 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4dfcc0ab wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5097857d wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5109b682 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 0x545ba9f4 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5d4d61ae wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61f48436 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6344e618 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d165b7b wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7cad5ff7 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7e4f586d wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81ee16ee wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x85ead520 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x874fbe84 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x962b499b wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x967abde5 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9a3b3a69 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa3dde194 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa4c40c4e wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8bb5146 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 0xbd447a2e wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc0438d43 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc514bfd9 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc85fb04c wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8960d99 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd17463d1 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd3ac8d4b wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd9b63ccc wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdbd5ba63 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe58274d8 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe5ce7715 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xefb04495 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfdea7180 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff0d9e5e wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x1dc0cb65 mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x74846011 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xd9c2f0e6 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x03e3e313 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x4ae901d3 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xa01ccd0f nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbfb332b1 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0036574b st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x0857b06b st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x703a8053 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x8f575f52 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9336dbcf st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9f08cef2 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb1e7f99f st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf93a4dc3 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x202e8031 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 0x4d2f8c37 ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x80b83867 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 0x1dc54162 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 0x2db228e4 devm_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 0x64dfb8ba devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x7fb0a3cf 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 0x9ea961ac devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf353bf97 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x378bb5ad intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x7d323dea intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x9cebda07 intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xb0ded0d1 intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x837776ce asus_wmi_unregister_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xf3231e00 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 0x11beb917 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x602c5a65 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xc709b030 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x6365870a pwm_lpss_byt_info +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0xa33ff765 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 0x1377af0d mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x8e3cfb1a mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xea75d874 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1ccb8db4 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4d244332 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x864d181c wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd3659d0d wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd869af2e wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf751f4b0 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x12defb1c wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x003c1ecb cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x03a8c9c7 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0494892e cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0cebd8b8 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1158b651 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x15f81501 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1eb9d165 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e96c13e cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3cac2ec9 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4037ee65 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x453ab50c cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x493f3f47 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c34071f cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x53d13ac0 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5abc6c6e cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5dd46b18 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6195e97a cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x695e8252 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6985e101 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6bd2ac7c cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x766eb2e1 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7b2076ab cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f6fa1b5 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8a7a65b6 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91ece17b cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x971241a6 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9d9c6935 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac1223e7 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xacc516ae cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaeb3c8b2 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb67cded9 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbad38396 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc00f0c65 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc460660e cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9c53389 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcee3d3f5 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd02c2476 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2c6be5b cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5bdec62 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd9bfdfd0 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdac592a6 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe19ff703 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 0xf90ad9a3 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfa3bcbc5 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd047dba cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff2ccd1e cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2bfe14c9 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x45d71d91 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e7172b1 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e8b4100 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x54eabbe3 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x619c0588 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x686c638e fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x907a41d7 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa49fe785 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb01075ab fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb92868ca fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc304d2fb fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd4d1456d fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe1769706 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe4831942 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf5bfb44b fcoe_ctlr_device_add +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 0x044956c5 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08ee0ccb iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x09c43b8e iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0a8a0991 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12e10de5 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16817879 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18c876a4 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1b3f00da iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c62f7d9 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3acab635 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b94948c iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51b8077b iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54040bf6 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x573897cf iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5daf0a9e iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6084475c iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60b0f485 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64ebb0c8 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6763489f __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71945895 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75bb95b2 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b5446e4 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7ef1a883 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f053867 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x804375d0 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x86a85733 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x928d8f5c iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97797b3c iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9c20111f iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa3318eaf iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa8efa45d iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb315b8ff iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb44600e1 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb48c9549 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5ebd4f3 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7e7db26 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdc1ff09b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde9738f7 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe29026e1 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe9cf4bdf iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf24b6c9c iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5b80645 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x14f1fa68 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1c0e8130 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2190474e iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x296717b7 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3742c42b iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x43a6a13c iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x492570ae iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4a4106b9 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4f0b47c6 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5f126403 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x72234ee8 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8267f023 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8c2a872e iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb8319455 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd8fc1638 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdaa958a3 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdf33f82b iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0368ab22 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0530aacc sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0c782cb2 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0dcac071 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3b990154 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3ce65263 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x43b3c741 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4bdda3b3 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4d3eeaa5 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52e7813e sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x54c2bf69 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x55804072 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6409d139 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x69920915 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x710ceddc sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x751314f6 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8a4b39e5 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99c74cfd sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb090398f sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb26ed19b sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb356151d sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb8dea6d2 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd92f8be5 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2b39d3d sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0aa93ae2 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0df1e59c iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x160039e9 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x271705f4 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x32a5dd1e iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3db29985 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43590de7 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ca459d7 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5519cc41 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x553ecbc5 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x56fc1514 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5c46caca iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61d7a6ca iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67f422ee 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 0x7481a7b4 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77135abb iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x77a394a3 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79696208 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x796bfeaa iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x79b2cb0e iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8662d07e iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e20dc98 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x946ef4ef iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95000e24 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d5414c5 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e5d786f iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7e35409 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc341fca9 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc44d4be2 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7677694 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcaef106c iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc987f82 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcdb3ddc0 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd18ad2c2 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8f3b8f0 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe94f0db7 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xee98ca3e iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf74215fc iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfaaaf51c iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfce8b4bf iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x31c0942d sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3c9744b8 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x7b2ee32b sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf70a9df6 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x884b4af9 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 0x5c1596ea srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5fe9ac51 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7826a9d8 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x89a18026 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe0e41dd3 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf643a4e4 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x4e40e0f1 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x58331ffe ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5e7d9a44 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6b02d6d4 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8319382d ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x84dfc4f6 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8d5f6b20 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x0bfddb12 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5b588f70 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5f88f495 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x881a4d8e ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa67db736 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xda9fdbd9 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf7f5571a ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x030e23b1 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x69eb10e6 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9ba08555 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xce8c36b4 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xeae4f5b8 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x2c490840 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x9c602ad0 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa670bd7f dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xaa2eacfa dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x02d797aa spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x142fe80c spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x14765542 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x17f17f2b spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1d32d8fa spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1e4f912f spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x226cfaca spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x231e484b spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2b73e054 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x62a51781 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6b106679 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x70979ca0 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7889f6f1 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa1375531 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc3568c75 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdafc40a5 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdb59b565 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xebcb64c5 spmi_register_read +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x55c96a8c ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0c542edd comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x10d8e409 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x13d41349 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x13d50252 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1430a87b comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d92f785 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x238b25cc comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x24a9794d comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2985e993 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2d23f752 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2ec11d6f comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2ef1423b comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x30b3c1b2 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x36a79438 __comedi_request_region +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 0x5ae1c2c6 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x61c886d7 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6a6aabd1 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7ff987e1 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8925f241 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9018ae54 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x921dac86 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9288b52a comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x99e76f49 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9e939d7d comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa9e35e22 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb07aa709 comedi_load_firmware +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 0xbfebf004 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc02f43d8 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc39e8129 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb137828 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe99b7355 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed52c9f8 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xedff9753 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf434e226 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfe28e3ee comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x083791e3 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0b005909 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x3c57608f comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x4893ed96 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x528d3300 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8396fa2b comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb8628cc2 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdc8fa9b9 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x001f5e96 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x87fca55e comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9dfc3505 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xc930697d comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xdfc73b67 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xff076a3b comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xff539f7f comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x02479698 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x2de0b14f comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x37c22a7f comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5e999597 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x908ff860 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc93bc722 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 0xa3acfd2f addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x758ed6d8 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xddbf98db amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x0ead1290 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x22728b8c comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2647a890 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2c7f79f1 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x32afe866 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3bde4685 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3df129d9 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4ba553fb comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x986e790e comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x98e320b9 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc1b51821 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xce7eec64 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd57a1e7a comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xee4eeb65 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x48da650c subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5ebf2276 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x8e06b1a3 subdev_8255_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 0x60ba6118 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 0x285dc50e das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x07619aa6 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1469500c mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1d528703 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3dc82ea2 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x498c9b87 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4b93af0e mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5280dad1 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x56981ebe mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x56bb4901 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x648518a6 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7134f599 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7f8959f0 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8c94f686 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa61fed16 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa9fe4dc4 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb3d8308f mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc7376e75 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcca962d2 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xeb084924 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf5f5b5af mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfeb73537 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xbaeabe73 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf6d660c6 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x2c487246 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x541b6130 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x58677666 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x90b92d26 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x9a56d8dd labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0bb1f810 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x11f1b3e1 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x12034b84 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3bf75a49 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x57ef7e63 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xab7c620e ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb7d63780 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf529bbf0 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x177e86c6 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4902d68c ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x53a1ef07 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x63de11c9 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6daf68af ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd3be50d6 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x18e8602c comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x23bf4e21 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x752fd21e comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xae05f9b0 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc21a8eac comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xeb07503a comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf71f5379 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xfb971081 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2f9573c4 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x42fe058e most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x53414f3a most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x61d033e3 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x67494801 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x690be016 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x76725a21 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe27b5072 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xeab49e14 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf30edc8a most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfd5e5154 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfe8c8c0c most_deregister_interface +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 0x18010ebc spk_serial_synth_probe +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 0x4ab4c5c6 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x869aceb3 spk_synth_is_alive_restart +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 0x91759477 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xad2275d1 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 0xc639bc9b spk_var_store +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 0xd4512e9e spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd4d9e032 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe109d480 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 0xf6d6bf65 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 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 0x499df3a6 visorbus_read_channel +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 0x60aaf74b visorchannel_uuid_id +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x6ae6cc4e visorbus_register_visor_driver +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 0x8b8ce580 visorbus_write_channel +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x96401fe5 visor_periodic_work_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x997a87f9 visorchipset_register_busdev +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0x9f6fab40 visorbus_disable_channel_interrupts +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa40863df visorbus_unregister_visor_driver +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa428b832 visorchannel_create +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xa6f5ec92 visorbus_clear_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 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 0xd9f51d57 visorbus_registerdevnode +EXPORT_SYMBOL_GPL drivers/staging/unisys/visorbus/visorbus 0xdc24a972 visorbus_enable_channel_interrupts +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/staging/unisys/visorbus/visorbus 0xfbb074f8 visorchannel_debug +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x9df167ff int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xfc6fbfa5 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x5bec8509 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x9906e41d intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xa432fb47 intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xa46c62c8 intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x32c59860 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xaa5980f8 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd7b32bed uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x5c3279a6 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xeced54cf usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x00357120 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x987cd109 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0044aad5 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4ab2d622 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7706801f ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x93fb2960 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xba10a7d7 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc0f933b4 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x02f7225d gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x207a0bf1 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2cd7f134 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e32fa24 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x40448d56 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4745db7b gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x58d45757 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x749aca6f gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7c3e2e48 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7f81302c gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb6e6c777 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbb158ac5 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdab8a045 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe5acf349 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfdcf5908 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 0x36d80865 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xacfb1464 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 0x3b880450 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x3e51d2fb ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x64a2a14b ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x02cca299 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 0x1ee94cac 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 0x2d10b6a7 fsg_common_create_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x31c2bad0 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 0x40ba2d6c fsg_lun_open +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 0x4c280e67 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5211aa49 fsg_lun_close +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 0x72685272 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x79d66492 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 0x8d0e0dfd 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 0x95d62fe0 fsg_show_nofua +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 0x9b6266a5 fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa192f0ed 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 0xc2e359a7 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xca3d124d 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 0xe824e90d 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 0x097b3624 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x124cbb2f rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x15bc2bbb rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x47fa91b1 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x50a9fd0b rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xadb47c9d rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbaa1e14f rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbcc52825 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd6be9904 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd8fd75aa rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda29ef54 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec889170 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfa3c542e rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfbe69524 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfc847754 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00937a83 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x034c7b7c usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x05c6a01e usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3d0c78f1 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e38517c usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40566fe3 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x414587fe usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x44757ae0 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4edcf445 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x645a1d2e usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x690cfaff usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x69ea955c config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7556ee39 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a7d07c0 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b262f3d usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8cf4ceda usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x96ff9cc6 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x984234d8 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9b45bd8f usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xad3461af usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc120aeb7 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc310eed4 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcdd3140a usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd51af329 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd874147f unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xda44e799 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe6f9e7f8 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9262024 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfb2aed60 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfdb6c6e0 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x00144050 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3520e919 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3847b9b9 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4ce0d590 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x50d509f1 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5974c62b usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x749fa52d usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8da4a322 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 0xa8e0bd22 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xafb37790 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb20c7ac2 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc242efbf usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcafefb92 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x0f0af5f7 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x431a29e5 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1dcef54c usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x483d3c47 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x52ce7874 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x716cfc03 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x76fd67d7 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x79bf8a76 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7a09de4c usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x95bc8e1c ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb7b9c5fe usb_ftdi_elan_edset_empty +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 0xf0697866 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x1f02be31 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x59cb2ed0 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x01a299cd usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0bc14f9a usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x11002849 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x19aa096d usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x239d0fc7 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x29443eb1 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2c399335 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3a6cf182 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4abd3e24 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x509c307e usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x51e6e877 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5e5d048f usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x72acca70 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x84dbe527 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8dc5242a usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbdd5dece usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc568f6ab usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeb2fb50a usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xecccab69 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf2089d77 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf3856d43 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x02abc43e usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0b34e964 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x15f9ffbd usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x176ecdba usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bfeb0a4 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1d9430a6 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x21803921 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x238692fe usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x38f26a39 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3e238568 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x57eb3390 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5c32652a usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x605dde07 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x66973f1c usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x72c88fd4 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x81b7fd64 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x91cfc7d9 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x96dc05e6 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa6bbf9ee usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbbbbc6d8 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc26af425 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc72d87e9 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd2185cde usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf74e0b3b usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x36c65c5f usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x49efefc7 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x58d20d4a usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5da8a0b0 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7b986129 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x923a1857 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x92f7925f usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x97272be7 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9e8b9b1d usbip_dump_urb +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 0xf1616451 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf8707dea dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xff37524f usbip_event_happened +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 0x18793301 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4494340a wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x497ede84 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6fd021f8 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x73fd2609 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8b73c943 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa50609d5 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x01906954 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x02a493be wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0a57a301 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0b914fc4 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2d2c4d1f wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x35e27101 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4fd9c175 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5759e5a1 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5da5237b wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x65bb9fba wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x859aeff8 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa6e68ea8 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbb1bfb82 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xee7c2893 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 0x8ef47e62 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x91b4b81f i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xce1a5b3b i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x074c8bc3 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x678e383a umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x85841c34 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbf38e096 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xda4d1ad5 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xe46aab46 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xed8b55f8 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf24fce3c umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x08cfd5ec uwb_rc_put +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 0x16a6178f uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x16d3ce00 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1cff11f1 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2b5cd49c uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3186571c uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3986826a uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3a19c122 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4012c79b uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x47240a5a uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4c156d87 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4db53d30 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5482d430 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5dcaa2fa uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e3928eb uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x72281f26 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x76e7acaf uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dc7605e uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x84fdae30 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8e68cd30 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x986c93f6 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x99a6cb6d uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9af1d4af uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb871aca0 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb8f530a9 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbef72d1a __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcc368935 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd26fa186 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd7472603 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd8392982 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdb59a24f uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdebae3f9 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe3512b83 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed2bd6cf uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf0ae5738 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf555720a uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfe36a443 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x7b0b279c whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x346ee3d7 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x35d6db77 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x5be0bccb vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7cdd5d03 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 0xa2cb186b vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb21cdf98 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 0xe87443c7 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xe6cb819d vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xe7434da5 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x04a4ef42 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0bf586b3 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x126a019c vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x13453330 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x167cfe2b vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x175b7171 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1875a375 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x19ceb7ce vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23230e50 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x31ce919d vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41b264b6 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44d48909 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4756e984 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4abf5f48 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ed9ba4e vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x730ffb97 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x76842d92 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8385f9ae vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8665f760 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ad7ccf8 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaa1a1a84 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xada2aa14 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaea8994f vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xafbfeedb vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbb24edfe vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc257565e vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2694042 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xed825a7d vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7fda509 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 0x0021214d ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x01925be0 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3f214117 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7a6d3257 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8f45ac12 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xa463c791 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd71c6da7 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x460ff136 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x54bdb475 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5ddc74c0 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7a6d4b57 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9ea56dd7 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa749c6a6 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xae0ba7b8 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbe682296 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdbbf7274 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfb9f152a auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x1ffee92e fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xb021f638 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd7feeb8d fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7818c1be sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd201ebae 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 0x8e451486 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 0x1713d9e4 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1869f527 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x23b7c47a w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2cc8d444 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x40ffc788 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9d703e25 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa05c7866 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa4a811de w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcb3bc5ac w1_read_8 +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xc7bebcc9 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb55eae6c 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 0xd695e5ec dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xf811d6ad dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2a9a2e32 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3ddcf008 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4a016308 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4b4fff1b nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9e5bec9b nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc324888e nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xeb2460cf lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02c643f9 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02d29772 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04b12f00 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09ccb5d1 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c2cea9c nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cf74c6c nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e12cd5a nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f800c04 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fd360d3 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11019565 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x116bab36 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1325817f put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15a514db nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18e70e04 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18e7cbc2 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b7b9eaf nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e87cdd6 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21209a52 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29af3675 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2cfd492e nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f0fcac8 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3527f20d nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35afddf8 nfs_init_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 0x3e1615b6 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e1a2354 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e537f7b nfs_submount +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 0x43c4350c register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4578bdba nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48632672 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48f62ef3 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49770922 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x498cc24a nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cd12e4b nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cf809a4 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d5dd2fc nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fa31353 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50477c33 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x512c33ac nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5584de43 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56b61639 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5da83b2b nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dfc8adf nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60715e0e nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62a6500b nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65c6bcd0 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x666220a0 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66a703d9 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67e24eec nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x685e199c nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6df9b376 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f3ed167 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x766e47d4 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x78f3c946 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a935f6d nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8008c37b nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80caae3e nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80f844a9 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8275c75d nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x828c7d1e nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x865bfeb1 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87e20a8a nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x893764b2 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a82384c nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a87d2c6 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c7a4e98 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8cc0b5d3 nfs_file_mmap +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 0x9266b098 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92df5f20 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9376eed2 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97bc37d7 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x999ee220 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b05c59f nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b4c5b21 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa452bfbc nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa93db20f nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xad17b1de nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf31f8d7 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb2fc2a43 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb64db560 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6e893d4 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb01c846 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc03a2bd0 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1a09896 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3983ad8 nfs_create_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 0xc84302d1 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc96192e8 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcaa96c8e nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb8c7c19 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdf254aa nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf1f5a11 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3aa25cc nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3aa6e2d nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3ee8045 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd47259cb nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd81241ec nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaac97a4 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb9d236a nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc425a00 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdcd3a663 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdeba92d5 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe03e157f nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe080fc56 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3d11c74 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe52a6368 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe53cc23e nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe880032d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8b17d1c nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebfdf487 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed90d8f1 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeffa3ad2 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf013d89e nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0b3d081 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2a559ec nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3090184 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf316ff92 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf370d8d7 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf455595f nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf59de940 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf70ffc7b nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7e3c287 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa91b0e6 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbf42a4c nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7e3fa5 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x5a6d960b nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x021150b8 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a853079 pnfs_report_layoutstat +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 0x17c55bbf pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b4ee83a nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1fa19a47 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x235d8b33 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b520635 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c33761e _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3068387c nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3366e307 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38fa9d4e pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x398cd447 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x40ab22b7 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41cf7279 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x45a55eb8 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x530dade7 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59807867 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x59bdef36 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a17747f pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5dba7727 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6890afcf nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72247a80 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72d01075 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x731d3c35 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7a9e445d pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d4d55a9 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x82171329 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87f02f16 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8861319b nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a711262 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cdf8dae nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91ef20f6 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x939e021a pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9458280a nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c4916c7 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4aaf7bc nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa73ee740 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad1f0b56 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad2f8351 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb325154e nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4033481 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc6ba627 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc2490521 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6ba9ec0 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc683a63 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd28e4539 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd582bc0e pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6ddb0c3 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddbffe30 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0fd7b2f nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef099b28 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0e1e5cd pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3e87580 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf52e6ae4 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5665e77 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf703b318 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7bfdeaa nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfa746e46 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x28d8d7cf locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2dad7d3a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf0fb5df7 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x84233644 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xf5939c8d 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 0x4173f786 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5dc54eac o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x82619fd4 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 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb60844c1 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb613adfb 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 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 0xdfe223a2 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf4ba1b1a o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf56c2017 mlog_not_bits +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0cc97386 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5a8542d0 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5f60f881 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 0x958eb143 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 0xe6e107f7 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xfb86b96f dlm_errname +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xff7cf43c dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x18823a58 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 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 0xccdcd8eb 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 fs/ocfs2/ocfs2_stackglue 0xe933602f 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 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 0x54389d6e _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 0x99e33076 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xa657373f 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 0xa9889808 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc51798bf 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 0x1f445abc lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x28fbf4e6 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x120fef1f garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x47045914 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x6a482ea7 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xa01c7e96 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xc78ea907 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xe27bdb0e garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x01dde766 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x6f78e41d mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x763a9810 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x86a3f9bf mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xdba88b79 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xe7c8ed58 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x15742633 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x5aee1fa9 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0fe8a089 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x9ed4c64f 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 0xc4af8451 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x103f9173 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4027060b l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4e387ddd l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x82b20a65 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x82d8bb21 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x996a6ac6 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xcec8bf09 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdb4d33dc bt_debugfs +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x13010cba br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x65a60c7c br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x710f5069 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7d23aced br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7d322ae4 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x841ef1be nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaae7a736 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbbeec63a br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x2c53b298 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x539f01c1 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x000127d4 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x075c8adc dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x17f09def dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28b03a0c compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x29e11020 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b8a9375 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3af1d260 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a7fdafa dccp_sendmsg +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 0x5513c31b dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x62dcb61a dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6acd8164 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6eeca1b1 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x737a91eb dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7715bf4b dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7721b5d1 dccp_recvmsg +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 0x9791466c dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x97a69b0d dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f2cabf9 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa2047320 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xafb9296c dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc5830ea dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe9bba29 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc208cc86 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcbf76084 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd6965313 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe268bbfb dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe8ed9fbe dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeab34632 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xee51c1dc dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf04ecd6b dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf1559fc0 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfbe07d4c dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xff3c45df dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x100753b4 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3d0d6f22 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x53bd101f dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8017273a dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb75c6cd5 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xbf5e3158 dccp_v4_connect +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x207bdf7f ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x3d584a2b ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xce4a49ef ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xdd99ee1e ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3304885f gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x47971dfd gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1c90aef0 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x807e59e4 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x80cfd66a inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa3ff8af2 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbd58d0eb inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc188db43 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xb64494f6 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x11946547 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x388fac1b ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5da4dfb7 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x67aa8113 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7044bea2 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7f0f553f ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x85b0096e ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x85efaa8c ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8bc0b362 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x938f011c ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x938f4d0d ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xafdb7091 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd519b3df ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdd80cbdd ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xeb4997c1 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x4366a2a5 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xb2a8e767 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 0x5f8e435e nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x308944ae nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x76e71dfa nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x7b788922 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9ff0e091 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc9e9efb2 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 0xb173142d 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 0x0a400032 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x346ca0b1 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3c30ad53 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6c95a136 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xea7b4639 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x560dcb21 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0e3cd39b tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x24e5eddd tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x45940252 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6b845a79 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7e375ad2 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x71efa3cc setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x99ad1f44 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa01e605c udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xdf0b002f udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x26277879 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3a010506 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9fc5ae23 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb23e0603 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc488c229 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc89a6c94 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xeac4a173 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x6a7eec6d udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x887e4e57 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x7bf646fc ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x65600f1c 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 0xe7f991aa nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x2a179eb4 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x63e0c5d8 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7719b5af nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xccf02030 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe81bac1b nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf084b3e5 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 0xdb8c94dd nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x08205e75 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0b12b7fd nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x95de3ea6 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa9f4f524 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe2d413c4 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x5d5ac4f8 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x018a8e77 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x065ccb60 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x21613e60 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x231bd316 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ec8ee75 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x453d8b25 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x45a5a7a1 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8eae2347 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8f7adf8c l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xaa61a9e8 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb497b427 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xba4b983b l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbaee2dc4 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7faa381 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf1ff14b2 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf8d12c1b l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x0a87fb65 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 0x236dac23 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x27cf802e ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2af0d1bc ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b2572f6 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x617ce5dc ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x61fb17d5 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x77399825 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x78dc0a9b ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x930d3579 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x96ce9a5f ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9fcafd0d ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc4d3ccf8 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc662299d ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xccaf5304 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9b194c2 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x1c95ed54 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x89301c46 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8da35a27 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf3fd5910 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1c94eaa2 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22ac9d10 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x237d7901 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x28541a20 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2d1d15b0 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x347ae3a6 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x353059c2 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3ba5b80a ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4bced3a7 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5773de21 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x71d3aa94 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 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x872e506d ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x874a19b5 ip_set_type_register +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 0xb4398bca ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd25966e6 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe0008801 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x5de01f5c ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x63a83ed0 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa814fa1c ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc61c2b2a register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02c6a9ea nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04369888 __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 0x0ef45a32 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1259d43e nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c1dba69 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fc8718d __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ffbec49 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29d49b53 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d819e1a nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e2bd8eb nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x311e5309 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3419e538 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36b99070 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x379354bb nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37b8b61a nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x390e31ff nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a9cc96e nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42f4bc81 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46b1fba0 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47548170 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4866a6b0 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4933561e nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4c3d62c2 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x521841ed nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5613d29b nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ae2c4ef nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64721be4 nf_ct_l3proto_find_get +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 0x6c118818 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x704e4ae1 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72c9321c nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78429fd1 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x795ee951 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b2d4761 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b5eb593 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85d855cb nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87bcb540 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8baaf2cd nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ec7638c nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90de0076 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x91d8baa4 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9493de50 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ad1ee61 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ba2895c nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa53e1c58 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5e50f0f nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7c32ae3 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab2d2b61 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 0xb3026749 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb83aecb8 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb87b7825 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba9ffea0 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc380ef6b nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc735b6dc nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9e4e63d nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca9f4711 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1107a94 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda369fd2 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1dab23d nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2885d93 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe40fffa1 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4548316 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7277b01 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7a8c4c2 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb1d4fb5 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebe26ea6 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee130f2e nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xee22e4e1 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeedb1738 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeffa29b5 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf13bc1e2 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2e3a900 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3118092 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4b04578 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8a92593 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9117d64 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbb8d419 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe74afa9 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff2d61fb nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x4ffb10e8 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x8a0cf977 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x0d4227a8 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0c60ca92 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1269716f nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1b4092f3 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1dbe580d nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7874f4e6 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x87f28792 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x90da3d82 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd5e9c03f set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdb775ffc nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf1a3ecd4 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x50e20382 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x44cdd96c nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x90a7fbdb nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd93be3e6 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xe4b35ca7 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb2baf4c6 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xf6cb54ac nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0e1f2eed ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x24e4460d ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5653da02 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x64c057cd nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x72ef20af ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xa478a6c0 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfba77078 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xb5b6c83c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x0c60ac36 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x0fd487cc nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x207d5e60 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x848ec65d nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xfd3efac5 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 0x1aaf6bca nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3ba8515d __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x714fe165 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x940e875d nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbb3c380b nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc56b0750 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcf12fb71 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd1864697 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdba9291d nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x0baf5803 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xe120ba2a 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 0xa3332dd1 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xd5f3456d synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ee90d63 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x11cd1143 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3b693683 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3ccf3223 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4710a86c nft_dump_register +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 0x771b4464 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x968d17c0 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa95e62e9 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae7b1cbb nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xafb3da3e nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xba122e55 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbb3eb7ef nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbbb0610b nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc27c04b0 nft_set_gc_batch_alloc +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 0xe1ad60ed nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe6ace8cc nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc45d8c8 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3c17b7b5 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6ec35819 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaaf05f54 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcdf29a91 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xda93fece nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf44f9f77 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfe7367b6 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x356d1e86 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa3c43206 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xb75215cd nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xa2fb131b nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x27910703 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x96577324 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xf112f2c7 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x02f1d2a2 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x38951585 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x528f91b0 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7ce2b569 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7ed6edf6 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x8d243740 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x1f6b2d79 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x2ff5e725 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x8d9a2b56 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd1413f58 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 0xef7ffd5f nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x0e0f9fc9 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1e4a91bd xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x39cc9d90 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x55f5b790 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f389b6e xt_check_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 0x6f5969ec xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x79c31719 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x82798c0e xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9bc147ed xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa66b4d05 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa954c95b xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaa0fe944 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xada28bd8 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb2316491 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbd8adbf4 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe13104ce xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf5d34cf5 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf8626c69 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfdc23862 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 0x51dc1051 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xae5fe77f nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xafed6433 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x2e0872b3 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x75d90a62 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x961bea9a nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x05db6d64 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1e8487b2 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1f9af495 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4ccee86d ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xac73d17b ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xaee59fc3 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd9fd2b1d ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdd078400 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe5d2d718 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0bf5db50 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x2370d074 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 0x3549df65 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x49433f5e rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x502667e5 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x504397b8 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x59d1e086 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x6dc32465 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x6f0a0cf7 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x724d58a4 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x775e6e76 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x852f0624 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x909da2a5 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x9c45aa77 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0xa08a7a64 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xa78cc895 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xbb3c1821 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc3cc0d89 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xdcf8f246 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe045c970 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xe4080537 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xed753d2d rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xfd4983ad rds_conn_create +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x977809c0 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xcd5af79d 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 0x21008af8 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x4bcfb326 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 0xd371cf9c gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01451555 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02b8f03d rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03180971 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x032e7302 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x041f48db svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x042cecfb rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04ee329b rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0579230b xdr_enter_page +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 0x076767b5 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a97c7db xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bba1fe0 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c5f548d svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cc204b6 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cf835d9 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d17cb3d rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e3a69e7 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e875815 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x106bf102 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x127a35a5 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12d9fc21 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1326005b rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134fb540 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x137b906b put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x143905e6 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14fd52f9 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15f468ec xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1916ef9d rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a7c2932 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1be97b32 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cca1cf2 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d460f1d xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fe956df xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x23e370ed svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2626cd0f rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2903dd7f rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b49fe8b xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bc2b50c rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bdb27ba sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e6dadd8 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f43294d svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30e95cc2 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32421071 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x340125b4 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x353c1883 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3733fdc5 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37f9a13a svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39f0f7e1 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c40fefa _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e0a7f05 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4024bbc6 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x429e713d xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4352b825 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44572288 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4489d953 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4798923e rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47af7a3f xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4e49d1 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ba5cb8a xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c2a2a0c svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c3659c1 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d5b2bd9 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dcb2fef xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e2b42a4 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e8c6fa3 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ef66599 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f8212d9 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x506de0a8 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x548ede91 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54c2482f rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5553973a cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x581dc085 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58d20ad9 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a00baf0 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b0a9c5b xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x608d7169 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64050c6d svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x658525da rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67b6d6a4 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6881be44 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68c11200 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6924f08e rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a42cb53 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aadcfab auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e77acb1 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6eab4d49 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x705bfa53 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x728e5b1a cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72eb9f86 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x748851ef svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74965014 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75fedeb3 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76ed7b68 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77cade65 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x789fbaf5 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78f978a8 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7db5d3d9 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f5208e3 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80f0ab76 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x817d319c rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81b96878 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82d48b75 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8330e0c3 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85d89d1c xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c7049c8 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d95ffb6 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e1c5c4b cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e4e46f8 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fb741e4 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x903d11ac xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x922baa8d rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93b13801 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94df63ea xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96479e85 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x967f8a23 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96aafeac xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x978e99a8 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9797a459 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a8f7200 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b098959 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b0c67e9 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bd4e37d svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c87fc34 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f0ed54f svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ff1c9b4 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa177ef4c svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1b219a5 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d3d7ed rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa22f6792 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b2a427 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3a8a0c4 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa56cf0ed rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa63ab820 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa733a118 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacb1a3dc svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad785642 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2038810 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4f7f51c xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5b2eeb8 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5bcdafa gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5f66fab rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb704f1a2 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9b292aa sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaeaacdd svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc15e86b svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc6fb8b7 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc95055f rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd3fa151 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd5758e1 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe396682 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc11770f0 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1f0459d svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc49eceef cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67ca31c svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc699bbcc xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7ebf9e4 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc93203a6 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc977ae33 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc98ab1db rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbd70e51 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcddb65f6 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcea34f67 svc_prepare_thread +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 0xd194dbab rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3374309 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd436e9b2 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd50c1a62 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd74d53ba rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda46baf3 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb8aebf7 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcacd2eb xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde8862d8 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf866846 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdff55577 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c809ad rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe36566c1 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe372ad9d svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe51d4598 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe57d1a5d rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7f671bb svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe81f4558 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8778680 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9ecaeb5 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeabe511b svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec101c79 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecc5bad9 rpc_restart_call_prepare +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 0xf4f02dfc xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf51411f3 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf541c262 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf59bf147 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6cada5b sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6e0c823 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf886b695 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8dbc192 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08d4c4d3 vsock_find_bound_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 0x36dfb550 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4d6bae75 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x565bec17 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5fec9de9 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7bffd52c 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 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbebbf0a3 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe2b4f4b4 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf1f2dcc3 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf2caeb79 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf45349a5 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf47d1a1c vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf6b55959 __vsock_create +EXPORT_SYMBOL_GPL net/wimax/wimax 0x26f7b383 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x31e56a23 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3ff28708 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x539011f9 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5bf59931 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7e99c911 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8674d4a9 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x87fec3a4 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa7123bc2 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb7afac79 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbd288c7c wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xca8afc42 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xcfc5c5c7 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x10e9bbbf cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2b93745b cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3cf55e6d cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4cd49dc3 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6a9e5071 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x76b4c87e cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8d776c4a cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xdcde83f5 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe33b1aca cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe73ef763 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xecb22544 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf06ca62a cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf64adcb0 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 0x2dc49527 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x43fe0fed ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x714f637f ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf8f09e7a ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x863eb9d5 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x79aed78b __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf84b88a2 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x17111d6f snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x23ec0966 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x3eb6cd71 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x666602bc snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x68b696d2 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xa191deb6 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xaa49dd05 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x3ebd3357 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x6ebc3717 snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x7bd3e4e5 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0503e4c8 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x082f089c _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x0acc2a0d snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x176aa6f6 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x27ddc815 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x59330ce9 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x836b6fc3 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xaaf0092e snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfa001df4 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0935c440 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2829b3de snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x48e81b56 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x51332744 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x66ece37c snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6ec9c56d snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x71fa68a3 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7456817f snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7c9f19c8 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa333b615 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfac53f16 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1031f204 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x15edb81d amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x24ff434f amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x44f8be95 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5bae658a amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7ccdce50 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe14606b5 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x018bea6c snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x06826bb9 snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x13bea4db snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x19b68939 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x21ce5cf9 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2fb7819b snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3c0853a6 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3ce93124 snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x43455e17 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x44d03289 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x45f3fb40 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4bbe955f snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x5b7dc913 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x604b46fb snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x624e9fe2 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6466b5d4 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x651cb93a snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6a5de8a1 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6dc86d9a snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x85e0efc1 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x8818861d snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x88b3d090 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x94cefd81 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa0bcc92c snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa68d1d5c snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb207d7d9 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb32dd7a7 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb692bd32 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb9f28f5f snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xda063549 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xde3c05b5 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe02c14e1 snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x028b1c5c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x067aa87a snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a96468c snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c155faf _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d807fe4 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10cfd763 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x128299a6 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x12c24ee5 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1576a837 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c7b820d snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fb6d680 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2159eb00 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23150a19 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x273956fb snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27c3700d snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28a6d10e snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x28f87e77 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ca59ad1 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x361903be snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39b87183 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3f03e505 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ff5a9e0 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x448188c7 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x458ef4a2 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x48eba6bc snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x515c7937 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f37421a snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fe24785 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60915450 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64de9d23 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6ab20159 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b853005 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6db69d7b snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x70a9de79 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72da137e snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d5130b9 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e288cf3 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7eda409e snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x831cad45 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x866e829c snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87293fd2 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90c55bab snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x927fc9c3 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9483d84c snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9495cb5a snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9737d4f1 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x995d8211 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9992822b snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99cfe8be snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b76d7f3 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bd06abc snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9cb5a919 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9eebb242 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb3892406 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4b0b7d1 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8ec07b3 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba176039 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba971162 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe94bcb5 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbefb3316 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf5ca955 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbd492c4 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdeb37f7 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0fcc019 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4485bc6 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7875b2d snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd82e403d snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8a3e53e snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xddef7b12 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0ed2305 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7811aef snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec7ee5c8 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf33d4a80 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3b89c2f snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf94dca05 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbc6f705 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe53f0ab snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x070c4141 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5f46c9a8 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x81c3f549 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x889f6a8c snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb7c321de snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xef128ae2 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x012332ba snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01cda814 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01d036f6 snd_hda_multi_out_dig_close +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 0x07a3e3a2 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b34cb89 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c3838d4 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cc62b57 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ce4acc4 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e40bf4c snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e9fcb58 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12cd4049 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x155972cd snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16951dc3 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x17eea7bf azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b6d6def snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f2495c3 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21f5a481 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23721268 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23b9d64a snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23c238fa hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x243e7299 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2509f2fc snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2513b920 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25792bcf snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2965b2c6 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c228f1a snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e3d3878 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ea51b57 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f8d419f is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fa3ba80 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30b6c1c0 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32e35923 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x347164c7 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35f63a1a snd_hda_codec_set_power_to_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 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a7982a3 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ad815fa snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e39e1e5 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3edb3875 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f25c9aa snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x408fb0d6 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45b233a9 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46bb0f93 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cc6a2c5 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cf9ec69 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e26e8aa __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e63db69 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x525524f8 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54f7949c snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55e19087 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x581bd1e4 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58a7e5ad azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58dae277 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a576e95 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b7f1abd snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5baaa142 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ce303ba snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eb905da snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eea3855 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63d90224 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x641d62dd snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d6a7238 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7069eced snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x716bcd19 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x741599a4 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x777b2857 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b99e09f snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cdb358c snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80811284 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8261aa97 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8924eede snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c97cdd9 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x906a7200 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9507d46a snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x967e124b snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97ea1fb3 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa31fbf3a snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7efa3d5 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa812a5e4 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa97ca19c snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa1db4fd snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac75fe50 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad8a04cf query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf4097fc snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xafea4068 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb225a094 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3f1311e snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb454dbd9 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9d3d152 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb8d1540 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbbd6d512 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc4da316 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0b7b784 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc12ba4fd snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1df2568 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4d31b97 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc4e48773 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc62c521a azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca253eb7 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd720fde snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf64f433 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd19b7e48 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd201f17e snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd333d838 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd580ee6d snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd712a70e snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9e6bfd4 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb263ca7 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf1a77f6 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe22948bd snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3867e57 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4a3cd8b snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe824b554 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe856c6ba snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9558119 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeae26669 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed06c465 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xee9808a5 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeeeb70bb snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf2e205b4 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf753cb82 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7e2de3b snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf830f767 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf914a6e4 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff829182 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01d855ca snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2d3a8974 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4207fdc0 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x48dfec72 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5071cb45 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6de89dae snd_hda_gen_add_kctl +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 0x7d58c90e snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x80d3be5a 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 0x8e626962 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x91ee1bea snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9b409e2c snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa35b952b snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xaab708cb snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb471dbf5 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb8d14455 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbbf4355e snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc8eb8c4f snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd75d7e88 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe4699d00 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf2f0ccb2 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfb0d0d69 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x0849fad9 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x22278cf4 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x672313ba cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x714cfd50 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x47db54ab cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x94bc5f5d cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xb6aa29a6 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x03fe5609 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x1a81f210 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x35e2f1b7 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1a80533d pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x48a4f7c0 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9ba1de1a pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe26fae2b 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 0x19ceda74 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0x8121e6eb rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x77c340d2 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xfea9015b rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x1f53e697 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x46beea18 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xb2960019 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xd45d5c36 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x0f806dce sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xbb110e93 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe08f1bb9 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf5538d8c sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf819b676 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x96beb96a devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0c68a996 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xde9a778f ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x2f045956 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa532ce11 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x3a674828 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x0c0b09d2 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4ca6a33f wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc380f487 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xdb2995bb wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xac7be374 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xd7fcf344 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x6a651672 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xfbd97eb0 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 0x6b7acda7 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xe73751b6 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x0564c72d sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x1ecf20c8 sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x599aba85 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 0xd416d9a7 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xfdd11fb5 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x650e3e3e sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x8fd92b85 sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd54f77c9 sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xd5c1a667 sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xe0748db9 sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x07837bd5 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x10fc87ed sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x14d90dcf sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x150251fb sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x17923208 sst_memcpy_fromio_32 +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 0x1dbd6a0c sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x21557c56 sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x29a4045a sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2d6b2be4 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2f16970d sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x307436f6 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x319e4365 sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3814e780 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x46b30b81 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x48aac3ad sst_dsp_ipc_msg_rx +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 0x4a97c9ec sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4aa59f4a sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4f4e9507 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x503301c8 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x50be8b7e sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x624eb6de sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x62f14285 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x648f6aae sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6498414f sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6b908fda sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x75ce47cf sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x79f2e8e6 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7b49a5af sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7d31418a sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x836cb402 sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x83dd5fc8 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8baf3cd4 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x91d203bf sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x93982494 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x95eae01e sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x97e1d199 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9b624beb sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9e713798 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa1a8d0ae sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa522c1a7 sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa8cf5f2a sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb0146f1f sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb08a3b13 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb3ae8ff3 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb596113e sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb674e360 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb8742b38 sst_dsp_outbox_write +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 0xbf0421f5 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc15166fe sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc3c36995 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc5b770a3 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd2d16fdc sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd8716ce3 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd8d16d2a sst_dsp_sleep +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 0xe1f8ffab sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe2c775ce sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe440ccd2 sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe8ffe8e5 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xefd23f5a sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf6f5a2ed sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x0a33f37c sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x245544b1 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x51e81dc1 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x73fed5d5 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x8aafbcc2 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc53211f6 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xfc2e4e27 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0x863900f7 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/haswell/snd-soc-sst-haswell-pcm 0xfd74ea95 sst_hsw_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x29d0fe5a skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x29e916b7 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2c58eac2 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x3504c2ed skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x4f91bd90 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x67ee142e skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x69d98c90 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x6bc80fc5 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x7d81583a skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x95615985 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x97aa33ee is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xa73fd4ed skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xbee5ee82 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd9955b14 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xeca5733d skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x008495a3 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01159124 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01500430 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x021026c2 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x040576dd snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0468f9ac snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05a7a9b9 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05ee299b snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06c46509 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x073409f4 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x098c2678 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09aaa2cb snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a568bac dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a8da7e2 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c06a15d snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10babe07 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10d47990 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x119cdd66 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x184c4efb snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18967349 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a53efdb snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bb6315e snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1e6d488c snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2038d258 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2099dd0b snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20a7f3c3 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22afe274 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23a6e2db snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x262ca7db devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2694d08d snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26b61b39 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29cf4a43 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29eedf84 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29f5b191 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ba1aa28 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f0966ee snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x349a16b3 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37a5bd9a snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39827402 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39b0e96d snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3ac2a27d snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c2511b9 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e498f13 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f8a3a7a snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x422e521f snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43e0e6fd snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43f6b72e snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44c24993 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46973251 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4aa497a4 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ac65939 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b54e8d2 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bf29c38 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d5c8ff7 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e81805e snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x511e06e9 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x529dbcaa snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x571a62cc snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x573c53d1 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a08cb62 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a0deda5 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ada239f snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cdeff6d snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d435c22 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ecc42a9 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60f74f59 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62f4fe57 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63f0f2c4 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x667d0477 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x67ba4584 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c788ea2 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cf629a4 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e566514 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e628de9 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f67be74 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fb47be3 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fd8fb75 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74c4beb9 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x762d452c snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x775b5d6f snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79a785fd snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c609db0 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x824ec121 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x84423aa1 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8698e3e7 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x89ecf311 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a95e98b snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e3453e3 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ea924e1 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91af9721 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92e13e1c snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9429f42f snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96a614fb devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9942a917 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b92c04c dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bd95467 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa44631d1 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6579c57 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7082152 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa831e2c1 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8569bdd snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa742e64 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaac2403c snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab578017 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabcff921 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabfd510f snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae2443a5 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae3c2160 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf0048b9 snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf485f6e snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb11b9639 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb35d1bea snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5153b65 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6148a26 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb656bb52 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6d9c71f snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9c90ea0 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbcc5e689 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbdcf3dfc snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbecde8ad snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf07aca1 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfe813e9 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1e04dda soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc362ac8b snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7fe7f82 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 0xc858088d snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca580c9f snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd422015 snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcefd888d snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1743618 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5499e31 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6b667b9 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6f22b78 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6fa6ff4 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc40ae4d snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde6281c3 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf5129e0 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf5350dc snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe35e0093 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe50867e3 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7dd3056 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xea5776c5 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb785812 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee9c185b snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefd72ae1 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeff42d0f snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf33dcf9b snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf9640431 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb76eb0b snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd0c8439 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd16564c snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd496025 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfedca204 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff8bba71 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x151b2cab line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1dca15a5 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 0x4272ff4e line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x47382a11 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4d37e318 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4da2b99a line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5bd6bd3d line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5f464323 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6c7ea85b line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7330e33e line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x76783216 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x90ff2234 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x960ae55a line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa1d3a06e line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe3552a23 line6_version_request_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 0x0a931221 rsi_hci_attach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0ac07284 rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x12559313 rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x192536c6 ven_rsi_read_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1d2f2f08 rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x229d8a52 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 0x806d404d rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x9524862d ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x9c089b21 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x9ea41a4c rsi_hci_recv_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xac21abcc rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xb1cf1010 rsi_deregister_bt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xbe7a5cf7 rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc29d62f0 ven_rsi_91x_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xeca6b501 rsi_send_rfmode_frame +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 0x00027165 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x001c99e1 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x002bb583 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0060b9b6 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00768008 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009bf453 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x00a365d2 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x00a8a2ec gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x00b0d8e0 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ecfc42 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x00ef5d3c devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0112f1de xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0132dcfd inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x01363227 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x013cced8 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01439b23 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0153be4f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x01767dd5 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x017f18ff usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x01ad0990 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x01d25144 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02037422 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x022e91c7 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x023a7e37 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x027e5944 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x029084c7 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x02922bd8 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x02ae2b29 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x02b6da37 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x02d19cf7 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x02e550d6 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x02f2fdf9 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0311388a list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x031fde07 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x037c8748 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0x039f97dd ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03c546ad usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e7c530 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x03f016aa pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040716cf device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x042a66f5 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x04517482 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x045a6e0f vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0474b503 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x04771591 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049a2f31 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +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 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x050231de aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x054b409d subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x054c1a60 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0569cbd3 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x056f1710 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x05781926 xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058d44e6 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x059140bc component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x05a6d1ce device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x05b7231d devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x05c7784f nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x05da3f37 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x05db78db arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x06185c78 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x063901fe __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x064e06d4 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x0655dc9e dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x06641bb9 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x066bdaa4 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x06af7591 pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x06cf656c blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06fdf696 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x07061f69 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x07262d55 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x073d2ae9 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x074e9dda ata_eh_qc_retry +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 0x079788b8 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b30780 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07e81db3 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x08419a20 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x08444c93 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x08453256 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x0849beb8 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x0859f9a8 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0868906e dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x086ff8ab pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x087686c3 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x0879eb78 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08973b71 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08c293a5 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x08d4f55e do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x09015611 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x09122ce0 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x0914abe3 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092686ba virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09590520 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x097976e2 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x09b8c457 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x09cb2848 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x09d253ca hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x09f997df regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x0a022205 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x0a3fa2d0 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x0a46afbd tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a4c4ab5 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a57a19c tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x0a5eab19 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x0a836909 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x0a8667e6 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0a911dff cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x0aa74cf0 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0aaa9656 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x0ad385b8 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x0ad54506 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0ad84da0 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0af19f33 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x0af841d7 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b25a749 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0b2cd8a9 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x0b2fbc0f usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x0b4c87d1 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b5b32c9 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x0b73200e pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x0b9b6aed dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x0b9e3096 fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x0ba302ce sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x0bc71abd dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x0be10f60 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x0bf2f5f8 led_trigger_blink_oneshot +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 0x0c2f7553 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0c34c3d6 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x0c441717 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x0c44f479 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c4f1276 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x0c6d2e2c vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c98bce8 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x0cb55a4e dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ceaa970 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x0cecc83d iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x0cf5f0a9 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x0cf7ae30 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d567091 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x0d58570d dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x0d60d412 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x0d69207d uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x0d6f02f4 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d8a8c17 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0d9d2eb5 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0d9e1ff1 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x0dd7fa14 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0df209d9 pinctrl_put +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 0x0e0c5784 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e1a59c0 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x0e5fe0dd device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ebf2481 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x0ec450ef i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x0ec58c80 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x0ec7d377 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x0ecb1d37 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ed8201d __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0edeff35 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0ee7d3d2 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x0ef803e5 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0efdde69 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f0c2d49 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x0f0d6fad rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0f21b486 public_key_subtype +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 0x0f350ec7 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x0f3c1599 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x0f4e7a36 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x0f63740d unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x0f74b3b0 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f869d50 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x0f97b335 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0faa77a0 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x0fabea64 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x0fcc1969 copy_from_user_nmi +EXPORT_SYMBOL_GPL vmlinux 0x0fe0dcdd scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0ff0a61f usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x0ff7a153 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x1009c9c1 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101f172b xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x10324813 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x10490e98 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x10501d88 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x105ebe47 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x1065ab6a dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x106d7bd8 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x10889466 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x10be41b9 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x10d2f4f5 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f14b1b regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1106994a fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x1122a4b2 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x11398c86 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x11645805 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x1185f9bd ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x118ee0e8 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x11b412da pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x11b92991 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x11c0a96e alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x11f88e24 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12294aba device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x12303455 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x12493be5 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125ae0d0 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x1262d5a4 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1278f4fc ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x128502e1 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x12940356 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x129a9a80 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x12a2ab02 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x12a47a3c iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x12be8ab9 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x12d0f0b5 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x130663c4 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x130969df pm_relax +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 0x132c44ac xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x13488309 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x1392a9f5 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x13a84122 irq_domain_xlate_onecell +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 0x13d6cd89 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x13e60221 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x14208e72 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x14513b8a crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x14524a1a bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x146dc236 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x147a65ae mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x14889e9e ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x14b298e7 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x14bc6092 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x14c953e3 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x14fb3b35 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x14fd747c queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x15201045 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x153b1d2c iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x153bd427 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x15416857 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1547aec3 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x1555199d wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x155cb7f8 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x155ddb63 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1567bf5c dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x1569b74b sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15e45ef2 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f5ddc3 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16135a85 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x161be0c5 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16528e84 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x166c7d59 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x16788162 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x168fc94c crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x16a4512f devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x16a7b213 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x16d85487 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x16fc860f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x170263c3 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x1717ae5f mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x17258d27 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x174e1b3b cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1780cb4a __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17bfd7e7 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x17c52c6b usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x17df8a78 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x17e4f9ef bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x17eb45ce __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x17f99175 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x182a98f2 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x1849c755 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18582826 amd_pmu_disable_virt +EXPORT_SYMBOL_GPL vmlinux 0x185c8c12 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x1879989e crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x187f3c64 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x189c4101 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x18aee8cf sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x18d14a7a hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18d1da06 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x18dcc4a4 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x18ed301b device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x19049973 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1915afd2 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x192cf97f pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x19630ba0 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x196b661b iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x197e7a00 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x199bdd9b wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x19a1fc8c device_register +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19e08e01 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x19e182fd bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f63d50 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x1a0c1ed8 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x1a190a4b clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x1a23f6bf regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1a55a6e3 xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x1a63c88b inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x1a93f704 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1afcd064 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x1b0512ee of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1b062150 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x1b08ebca xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0x1b14ffae transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b4a13be arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x1b4dca41 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x1b5f8f75 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x1b839ec2 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1b9d1ced acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x1baef5f3 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1c0e1c96 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1c1f8455 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1c519640 cpufreq_generic_init +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 0x1c77fd12 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cb99bfd usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x1cbbc2ff irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1cdc94af extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x1cf0f57e driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x1d0ed0cd sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d286250 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x1d3ad344 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x1d459685 xstate_size +EXPORT_SYMBOL_GPL vmlinux 0x1d4734d2 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d597444 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1d652735 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x1d6610df devres_alloc_node +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 0x1da4520a task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x1daf763b crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1db666d0 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1dcbd6d5 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x1dd0aa2c regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e3ee329 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x1e407058 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +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 0x1e992fb2 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x1ea409ee gpiod_to_chip +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 0x1ef6db09 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x1f00c45b virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x1f0138f4 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x1f1868f7 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f1e5260 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x1f369a5f __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x1f46ca56 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x1f65bd54 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f891fb6 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fa539af tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1fd42604 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1fd9532d blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x1fe4c827 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1feda407 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x1ff7539f bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x20229433 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x2029d370 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x207f2ede hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20a46af5 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x21065cf1 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x210e7e7a rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x2134d04c inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x2149835e devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x2189011f pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x219408d2 clk_hw_get_flags +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 0x21d198e8 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x21e4c1e9 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x224ca361 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x227d6a82 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22cad1ef platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x22d3df03 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x22dd5a12 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x22e0f4d7 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x22e7c383 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22ffcad6 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x2309fab2 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x230e673a to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231bf4bf gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x232e71dc clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x233b7640 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x23425ab8 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x236a1293 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a92b57 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x23e9de67 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x23ed137c blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x23f13425 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2420d8fa wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2433f7e5 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x245d8f14 device_add +EXPORT_SYMBOL_GPL vmlinux 0x24640b59 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24803c40 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24d444d0 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x24e42a22 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f2a7f5 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2503b12c crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x250cc8ee __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x2516dab1 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x251f0ae2 xenbus_unregister_driver +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 0x25508195 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x2560e5b7 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x2577d70a apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x25876bcc tps6586x_irq_get_virq +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 0x26124d2d ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x261b6bbc gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x2627ee8a ip6_dst_lookup +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 0x265da64a rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2660e5fe fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x268254f9 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x26985a0e rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x26a72bda gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x26ae2248 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26bf2516 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x26c572b9 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x2754cf1e regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x27951465 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27b34e47 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x27b4ee44 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x27b6c512 bus_find_device_by_name +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 0x27f62f6b irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x27f807cd rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x27f8b0a5 ata_sff_qc_fill_rtf +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 0x283481f4 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x28596cd1 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x2881a79b device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x289abc7a usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28d4647b tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x29054430 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x290c1385 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x29118257 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x295e8aac platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x295ff195 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x2964fd76 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x296fdd0b acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x29832f6b led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x298addac debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29c10e23 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x29c52233 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a08fe01 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x2a0d59e6 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x2a26aab7 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2a3cfe65 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x2a3d667e iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x2a4ae1ca sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6d740d pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x2a95d55f io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2a9d739a pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x2aa5cba2 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x2aa6d1c3 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x2ab20702 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2af99e4f class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x2b085e14 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b3c1500 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2ba6e774 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2bb44584 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x2bda2243 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c054fc9 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x2c1e3912 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c22ddaf driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3204f7 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x2c345022 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x2c4b3ba0 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +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 0x2ced6835 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x2d19c870 crypto_init_ahash_spawn +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 0x2d613a0c wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x2d6433cb sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2d70d9c2 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x2d7db281 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x2d8adeb7 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x2d922b61 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2da523a7 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x2db4c864 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x2dc42dd2 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2df5486a usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x2dfe6226 devm_power_supply_register +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 0x2e48988c pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x2e5b2118 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x2e715138 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2e82373e nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2e8d84d2 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec3afa1 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ecb1e17 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x2ef238c5 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f37156d relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4beb50 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x2f57cbbd acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f66eb26 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x2f76d463 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x2f7d84f3 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2f84ab87 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x2f9e6304 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x2fa1c1db blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x2fa28e88 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x2fb03e38 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x2fd71c63 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fdd7355 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2fdff472 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2fed2d1b fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x2ffa5189 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x30103661 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x3013dab0 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x301fff08 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x30487e01 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x304b344d __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x3064eadc __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x3077552f xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x307ead7b crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x30905541 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x3092e638 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x30936caf ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3096790e n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x30c5ea10 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30dde2f6 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x310131a8 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311d9a3e to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3143e793 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x31448ca6 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x31644cc1 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x31652dbb crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x316de7ee regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x31999b42 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x31a93e27 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31c88960 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x31dc97a1 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x31f585cd usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x31f5f341 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x320ed2ea eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3245c863 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x325b30ab gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x3267e4ba dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x326da856 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x327aa383 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x327fdfea xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32a01da3 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bc90b0 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e9cd93 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x32f79a7f verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x330a6939 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x33308b3a class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x334c83b2 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x3358e691 register_pernet_device +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 0x336aea19 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x3376eaa8 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x339c600f ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x339da217 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x33a10055 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x33a7de07 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33bdad89 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x33d70f21 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x33dd9f92 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x33ea1df0 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x33f35ba5 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x33f5bc38 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x340f5c9b acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x34447a58 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x34558c0e rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x3478a883 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x348f417e pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x34a4dbb4 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34a9278f __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x34ce4fd4 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x34e45c16 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x34fe99b6 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x353440a0 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x355584f4 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x356419c4 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x356cfb5c register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x35701a1d dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x35709459 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x3576c0f6 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x357d7600 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35a1c4c7 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x35a5c754 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x35ae86ac hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x35b0bf57 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35cb6098 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x35d20e0e wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x35d21229 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x35f50d73 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x35f61b9a tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x35fadb38 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360b1f34 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36316b4e crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x364d00fa root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36542a6a trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x367a1b98 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x367b763f task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x3697f56c rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36da1c09 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36f03852 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36f7ad2a devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x3704595a attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x3711e0f5 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x372937b4 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x37293f4d trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x374aef6d usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x374e7388 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x37657f20 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x376c4a6b rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x378a26b5 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x37ee19ad xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x37f1ffbf gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x383cb075 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x385070fc rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x385212e0 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x3856fe3c regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x3859c066 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x387ab204 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x389ec70e ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x38b0b666 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38b28cc9 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x38bc7649 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x38cbd02d rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x38d07552 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x38dd363d extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x3907c4be ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x39673f9a thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x398e9e83 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x39b02f9b pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x39b107a2 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x39c813ba __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39dc9928 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x39e4119a ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a1c6207 pci_hp_remove_module_link +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 0x3a47db8c bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a51453b rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x3a530297 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a802ec6 tps6586x_reads +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 0x3ad6cbc2 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x3aef245e nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x3afe2723 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x3b08c6ff __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x3b19717e usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x3b3d6d58 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x3b405ceb pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0x3b4ed30b hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b57503d devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3b6f9ca0 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b81a870 user_read +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b9b22ab aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3ba611b8 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x3bb192c3 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3be94a6f xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x3bf547b7 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9f0e1d wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3ca9a739 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x3caebe9e pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3d04748a key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x3d13b340 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x3d167003 __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x3d1ab0e5 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d4c187b devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d6d7581 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d83e952 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dae0464 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3dae6404 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x3dba4799 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd6cb58 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df53c6a xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e1f5c81 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3e2050b6 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e49a003 __init_kthread_worker +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 0x3ea3992d pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3eada445 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x3eb2357c da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x3ed5a994 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x3edf783e virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f076655 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x3f0be40f ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f2e939b xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3f30efb9 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3f5f6acd gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x3f766dd2 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f87b57c gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fa63698 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3fadb340 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x3fb5be8d pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x3fb867bc ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x3fce3667 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x3feb8020 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x3fef0cd0 power_supply_get_by_name +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 0x402b03a8 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x402c1364 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40422eea platform_device_alloc +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 0x406e5559 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x40731c23 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x407a5f27 cpufreq_unregister_driver +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 0x40e73d2e acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x4110beba nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x41232adf __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x413cf760 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x4170df8b tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x417304f1 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x4195d933 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x41c8a523 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x41cc4337 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41dcd97f class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x41f74014 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x4223b4f6 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x42242f8b irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x423328cc vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x423b353d page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x423d1bb8 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4243fcd6 nd_blk_region_set_provider_data +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 0x426e46d3 register_pernet_subsys +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 0x428db6a4 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x428fbc6f extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x42986f6a page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x42bb8d80 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x42e12651 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x42e6824d dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x42ebcd74 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x432669af transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x432e77f5 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x432ecbf9 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x434a7b25 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x4351ff83 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x43680e61 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4399c5cb ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d49d9f iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x43dd4bfd powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x43e3bb01 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x43e67983 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x440409f6 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x44519ec6 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4496ba58 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44d81622 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x4505601e cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x4506332c crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45346210 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x453859b1 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4548b7d8 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45ba6a2c fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45ceedf4 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45e59014 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x45ecda48 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x4629460c rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x462b6dae fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x463c650e reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46434934 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x4655ab3f skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x465cd3a1 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x4663d883 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x466cdcd0 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x467b3ec0 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468e5d7c debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4697940f device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x469cfa11 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x46c12671 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x46edef72 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x46ee4579 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x46f56396 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x4702da42 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x470bdd0d __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x470e02c9 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x4712993a percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4712a31a device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x471ebef1 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474f7c73 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x4750b16f nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x475aa21d rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476f748e unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4780d464 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47892d7a pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x478d8094 led_trigger_unregister_simple +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 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x48336460 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x48576663 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x48682db9 perf_guest_get_msrs +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x48736f8e virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48990a9c pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x48a5414d scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x48d21d5c blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x48dd9b34 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x48eba144 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x48f8d9d0 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x490205fd platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x490cddb7 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x49130a4e crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x491791a0 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x4921b7b9 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x49380dc2 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x4975fecd fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x498ad60b unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a90ca5 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x49c1855a ata_sas_slave_configure +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 0x4a043599 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x4a072160 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a4711fa device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x4a4a875c regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a803492 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4a9c2dd8 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4acfb4fd ping_close +EXPORT_SYMBOL_GPL vmlinux 0x4ad609ce __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4ade9b4b serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x4b07b1a9 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x4b27798c usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x4b2f851e get_device +EXPORT_SYMBOL_GPL vmlinux 0x4b55e286 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x4b58d779 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x4ba0a408 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x4ba852a5 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x4bb61406 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x4bc3674f fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x4bc38ce4 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4be779ee usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x4bff74ae gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x4c07a815 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x4c251d39 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x4c2a2827 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +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 0x4c814eaa rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4c97a232 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4ccf92f4 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x4cdc4dec pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x4cff2753 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1c686c arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x4d2ec0e5 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x4d395007 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x4d3f6291 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4d70fea6 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0x4da0de5e pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x4da1732e usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x4dd6b597 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4ded6ca4 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1777ec wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e47bdda srcu_notifier_chain_unregister +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 0x4e78bd55 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x4e7aae25 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4ebd4f0b crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x4ed7fa89 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x4ee72b71 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f0c58c3 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4f215534 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x4f262d6b device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x4f28cdd7 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f632ba9 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6fc060 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x4f7285ad ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x4f7cb27a clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x4f808a3f component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x4f816bc6 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x4f8bd811 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe454b1 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x4ffbe2ed crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5005a695 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x5010687e blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x50173aad pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x5019b82b cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x50319c1a iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x5038d12e tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x505d1956 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x5068cf15 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x50710963 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x507daf2d set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x5085ee6b usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x50909885 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50bc713a ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x50d1f870 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0x50e050c2 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x50e263c6 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51220508 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x512b1d19 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x512ff001 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x516ab206 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x517aa684 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x517b54ec crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x518154e6 fl6_sock_lookup +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 0x51a46725 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x51ba9ba1 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x51c9da5c unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x51ce76f2 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x51e2406e powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x51f95bb1 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x521cbc43 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x521e0370 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x521e5d97 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x522483ad yield_to +EXPORT_SYMBOL_GPL vmlinux 0x522b4a0c devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x524fe804 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x52598e1e to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x525db781 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5275554a subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x528df336 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x52920692 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x529ccf88 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a828ae extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x52b16209 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x52ceb78b debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x52d1879c acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52e20fcf aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x52fc5e0c wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x53483f64 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x5355564d acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5368042a __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x538adfdf __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53a07762 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x53a7a50b ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x53b425ae smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x53ca8fd5 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x53cf75e5 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x53d030e4 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x53d207ff phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x53dfd2ac usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x53e0541f tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x53f38db2 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x540ad2a6 xhci_dbg_trace +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 0x5424660a subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5444a543 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x54455afd alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5457ccca blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x545b6ee5 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x545d234f bio_trim +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 0x5480ca78 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x548882a2 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x549445b5 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x549aced3 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x54a4fd4f wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d66770 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x54d9e4ab tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x54e874a2 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x54f7ad85 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x550e8238 component_add +EXPORT_SYMBOL_GPL vmlinux 0x55181725 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x5540c381 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554d8200 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x5555fb2d register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x5566ac3c rio_unregister_driver +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 0x559a7499 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x55ae769d set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x55c00a84 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x55d34115 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x560d3292 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x56181974 regulator_list_hardware_vsel +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 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5676b7b2 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x567fa7c7 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x568673b8 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x5693eac5 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56b4de30 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x56c0f122 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x56cf57ef pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f1e80b regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x57043077 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x570fc83d shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x57352f3a disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x57367648 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x573a7f13 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x5753e7f4 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x5757ff34 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x575a26ce pci_msi_mask_irq +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 0x57bc6822 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d40d5d regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x57df6366 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x583d3f9f regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x586098d9 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x5867c86d devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x5878f056 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x588e1485 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x588e855b skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x589d8f83 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a6ef19 user_update +EXPORT_SYMBOL_GPL vmlinux 0x58ccac71 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x58fe37e9 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x59004f37 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x5931fc2b tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x593294a6 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x5970029d phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x59818edc pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x59966b16 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x5998183b mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x59b0882b md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59bb3e8a crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x59e239ef virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59ec35d0 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x5a0ffa4c pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x5a26a2ba iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a30542a tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5a390109 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a835b1e sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x5a9bf16f acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x5a9dc041 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x5ac3eddb dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b44f1ab crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x5b734db4 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x5ba68c3f serial8250_rpm_get +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 0x5bf778a6 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x5c08cf1d ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x5c2859be usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x5c2dd796 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x5c30206f sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x5c42b3f7 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x5c4f6693 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c994e3b device_reset +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cbc2f44 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc71758 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x5cd6345b usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x5ce17053 efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x5cf49f32 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5d0c5f52 __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d18de54 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x5d1a97cb wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d37fb29 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x5d4fb842 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d5e2711 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x5d6aba12 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5d7877f2 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d7f41fa key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x5d83bcad wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dcb6c7b cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5dcbe444 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5ddc6440 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5ddd4a75 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x5ddfa357 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x5e0d564e nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x5e315c42 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x5e37347c usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e530880 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x5e662e16 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x5e7c9f49 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5e7cc2a6 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x5eada0d0 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x5eb3cc08 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x5ee7a8d6 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x5f1b3578 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f3f94f7 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5f61829d tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x5fac0dc5 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +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 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60349d7d dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x60469c43 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x604c7cec mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6051d2d4 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x6055b7e0 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x6058302c spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x605bd53c tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x60800127 sdev_evt_send +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 0x60ac7fcc pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x60ad2b1b mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x60b3eb39 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x60c24e13 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x60c3041a pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60d0ee3a clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f426ea acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x6117558c debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x61362464 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x6156f80c crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x61691add pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x617c0c45 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x617eb1bc ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x61886b32 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x618cc3bf da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x61944c19 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x61b21e78 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x61b6d0ef sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x61c952cf nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61dba1cb platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x61de0f2d invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x620d188c regulator_get_hardware_vsel_register +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 0x623991c7 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x624484d6 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x624788e9 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x62787841 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x628387c9 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62b3bb38 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62c0113a xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x62c85e78 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x62cf3cb4 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x62dcc1a1 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x62e11388 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x62f41d34 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x62fdf0d3 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x63099073 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x6311ba39 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6333072c gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x634bafcf rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6356242b fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6358750d __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x635b57db irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x635dc08b phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x636389c6 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x63684cc6 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x638fe045 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x63a04f57 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63eaf460 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x63f30ff7 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x640d6480 md_run +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64197fdd gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x642fded4 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x6436199a input_class +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64464e1c pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x645dc64a cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x645dd55a __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x64853452 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x648556b6 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x6485d727 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x648b0a79 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x64a0db6d ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x64a783ce blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x64b3db38 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x64b7069e apei_mce_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0x64c450c0 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x64de2ec8 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x64e09372 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x65166cb7 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x6527a231 dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x6536953b btree_last +EXPORT_SYMBOL_GPL vmlinux 0x654b9239 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x6594cfc0 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x659c229e tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x65b05f8e tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x65b48b12 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65dae95a __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x65e065fe devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x65e3a0fd __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x65e64938 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x65fb922f regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6602bd9f tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66181641 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x6623f48c ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x662cf3da virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x662fe7d9 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x667401da dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6678b24b init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6689512f gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x66af0885 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x66c00a63 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cf28d2 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66f1fe6e irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x670c036b gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x671819b6 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x672028ee virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x673ae0e6 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x675e9411 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x67864a10 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679be5b6 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x67bdca62 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x67d85510 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x67da24b3 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x67e55191 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x68181e82 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x6837801c dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x684e3ae0 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x686d8729 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x687c62e1 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x68a26c0c scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x68cb890b thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x68d75342 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x68e57cf4 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x68f04fe3 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x69058ba8 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69253140 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69454730 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x69574b52 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69c1154f regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x69caf47f crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x69dd85c5 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x69f3140c save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x6a0ab7f7 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x6a136c65 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1de0c3 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x6a475c51 __fsnotify_inode_delete +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 0x6a788028 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6a9f16ff rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x6aaf9520 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6ab34a6b wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6aee6068 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x6b0a34f8 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b118b9e extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b398d76 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x6b45756e tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x6b45872a pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x6b4611bb alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b86a8bd ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x6b92c48c regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x6b99d069 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x6ba744f2 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x6babe89b rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x6bb06a3a ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6bb19de5 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x6bb34354 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6bf6bba6 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x6bf89e7a regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c12338c pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c2ba161 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6c34bd75 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x6c3871b3 iommu_unmap +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 0x6c6283e8 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c70f1fd crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x6c7daa65 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c9201a8 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca604fc netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cc3938e perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x6cc41c0b inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6ce2e104 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x6cf3b4b8 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6d0d67f1 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d619c93 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6dc515e4 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x6dfce5b6 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x6dfe16b2 acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e26a59d pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x6e367309 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e4c2c31 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e7358bc skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e81efad kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea26498 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x6ea98361 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x6eac755e user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6ee7c5c1 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x6efd97f0 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6f00bb17 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x6f0de07d vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f2d4800 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f435d4f sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x6f676b0b acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f9fcc5e fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x6fa7dbf7 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x6fbfe2e7 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x6fd8b5b9 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6fd90635 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x6fd941dc pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7005df1f cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x700b1279 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x70197832 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x703e2363 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x704d0d51 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x706d38b1 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708f99a0 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x7092e5c4 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x70a4368c iommu_domain_set_attr +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 0x70d8df37 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7113f7f4 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x71320bd3 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7170e19f tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x71825fdd devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x718bb777 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71d1bd58 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x720956f8 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x722223ef devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x7253ec82 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72793af2 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x72900518 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x729f2c2a cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x72bacb81 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72d77b73 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x732ec191 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x7358ca49 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x7363b8b6 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x736acf86 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +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 0x74241593 regulator_can_change_voltage +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 0x74757e16 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748e15cc gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x748f264e do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x749b8808 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x74a0afdd serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x74a3843e synchronize_srcu_expedited +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 0x74d380bc devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74f25bdf extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74f88f8f pci_find_next_ht_capability +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 0x7532ab38 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x75376fd1 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x75574205 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x7567f19d wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x7572ab1e subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x757b805b virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75a73b1e devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x75ac2b25 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75b166ff tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x75b8fe86 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75cd1363 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x75da91e1 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x75e3fdf4 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x760c0e0d acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x760f11ec ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x76437689 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76a2e8d7 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x76aad031 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x76d4afbf virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e3f28c skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x76ef9a14 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x76f6ceba sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772cbc94 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x773e766d br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7756dcdd add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x775a6ef5 kvm_read_and_reset_pf_reason +EXPORT_SYMBOL_GPL vmlinux 0x77620c3a bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x779d395d spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77fc9bca rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x782668f5 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7831c88b regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x78419860 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x78575bee atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785ad46b usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x7893a3c4 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x7895963f __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x78978d6c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78d8e9fc usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x790b07ed i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x7930c830 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7954524b device_create +EXPORT_SYMBOL_GPL vmlinux 0x796a7a15 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x797679e0 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x7980c734 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x7980cb28 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x79880681 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x798e6107 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79926680 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x799b36fe led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x79a78209 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x79b69583 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x79c052db ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x79d9525d ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e2522a devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x79ebb18f devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x79f76d40 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x79fd0052 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a0f6c00 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a18850e devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x7a23dc0b securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a4c8565 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7a5cea9d dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x7a7e7419 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x7a83e05c arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a8cb918 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9a031d serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad0901a usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x7ae4c4b7 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x7af25ec2 xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x7b0b17f0 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b17e662 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x7b1d106b phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b2dafc8 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7b655a66 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b754c2f sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x7b7f28b8 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x7b8f3c3c usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7ba0e802 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x7ba80353 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x7bc516c3 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x7bdcac90 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7bf08151 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7bf1a070 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7bf9c92d dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c005570 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7c136b34 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c2a5de7 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7c2ecf80 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x7c317246 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x7c3400e7 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7c6c9390 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7c9ef754 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x7ca8e0cd usb_enable_autosuspend +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 0x7d0e1d95 hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0x7d1b137c sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x7d1dbd16 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x7d2b8899 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7d2baf9d phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7d464baa tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x7d511b39 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d6cf8fa rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x7d7e78b8 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x7d84fbfc xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0x7d8c6a00 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x7d938383 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x7d98c0e8 klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7d9c5cb0 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db7f3aa mmput +EXPORT_SYMBOL_GPL vmlinux 0x7dcdc93f __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de16fe3 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7e10cc79 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x7e17b8c0 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x7e45b1a7 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x7e552d5e sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7e5e0ce3 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e9eaf8c rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea7f756 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x7ebf73e4 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x7ec94144 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ed4af20 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x7ed7177b gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x7ee999d0 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x7eeeb57a acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7f13ac94 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f35a68d inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x7f3658e6 fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x7f3bee1f pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x7f3f7a72 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7f72f623 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f884aed bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x7f88d5c9 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x7f9750a6 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x7fab2327 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x7fba47c7 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fca4757 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7ff6963b sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x80156244 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x8035425e led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x805720b9 skcipher_geniv_free +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 0x80995a86 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x809c9646 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x80b21724 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x80b5769f ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c862af ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x80d1c2c2 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x810383cf wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x810d5f02 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8124cdf4 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x81485455 debugfs_create_x64 +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 0x816f74d2 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x8170c9d2 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x8174d68e irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x81760927 split_page +EXPORT_SYMBOL_GPL vmlinux 0x81a84515 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x81bdc5cb cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x81c99e9d usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x81fa874a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x8228961b apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x82299b8a pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x82335b19 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x825c9b70 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x8283f516 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x82880309 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x829205f8 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x82c6f564 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x83010508 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x83074773 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x832a0170 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x832a04d3 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x8339a3fa tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x833bdae3 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x8340571e crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x836f3d5a relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83ea790c pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x842966c7 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x842aea36 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x84354a70 debugfs_create_x8 +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 0x845c4992 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x845e6b72 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x84729780 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8484461d spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84ab0172 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84f0ea8d phy_pm_runtime_get +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 0x851690d5 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85270f7b ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x854ba34e usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x855615d0 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x857d4f17 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x859999ee extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x859aea9a xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x85a75d27 power_supply_am_i_supplied +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 0x85e8a20a spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x85e8ca45 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x8609e825 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x862a13cd reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x865fff67 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x86607534 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x8670f18b irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867db62c pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x867ec9d4 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868e4842 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86ba47ba pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x86d05776 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x86d22ad8 ipv4_sk_redirect +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 0x872bdb84 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8784fad4 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x8786860b ref_module +EXPORT_SYMBOL_GPL vmlinux 0x878bf037 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x87d1b91a wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x87e3aac6 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8814da67 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x8814ee3b find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x881e6cc0 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x882367eb posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x886786f6 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x889834ea iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88aa55ac pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bfe947 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x88c9a2a2 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x88d0b723 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x89084e62 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8926c354 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8933ac25 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8950bc48 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x8956aeae apei_exec_ctx_init +EXPORT_SYMBOL_GPL vmlinux 0x896546f3 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x897631db efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x897ed4a8 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x89bb09cb rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c54750 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x89ddd05c unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x89dfe56d crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8a06f5d7 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x8a0f00b4 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8a1f321b efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x8a2884e6 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x8a302bb2 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8a350eec cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0x8a35e2ba gpiod_cansleep +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 0x8a5c8125 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x8a6ce825 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8ab4a8d8 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad67389 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b117dcf rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b19c348 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8b2c0887 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x8b536676 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x8b5d03aa blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b82971c blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x8b9200fd lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x8bc8b523 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x8bd23cae fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x8bd71bcf acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x8bdb94c0 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x8bdff0c2 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8bf98420 blkcipher_walk_virt +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 0x8c091f23 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8c0cbb8a phy_init +EXPORT_SYMBOL_GPL vmlinux 0x8c5ea76a devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c6b6c56 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x8c6c39ae pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x8c6eca36 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c99c436 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cc0d53e ata_sas_scsi_ioctl +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 0x8ceb2b10 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x8cfbdab0 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x8cffc095 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x8d07f244 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x8d09036f ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8d0a0f68 find_module +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d6e5314 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x8d7277a4 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x8d7df87e pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8db315fd pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x8dd98bec iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8dda42ab regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x8de70471 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x8df51a08 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x8e0b28d8 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e39e6fa __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x8e542fbf fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8e551db8 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x8e6980fe ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x8e9b6f0c shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x8e9c2bb0 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8ea22d94 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x8eb1c27e irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x8eb4b6a2 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x8eb6db1f bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x8ed22b6e xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x8ee37e7e gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x8f05618c thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0cc7e5 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x8f3cecac devres_add +EXPORT_SYMBOL_GPL vmlinux 0x8f65ead1 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f71870d module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x8f80b7ba device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x8f8202f8 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x8f82065d ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x8f860a98 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8fc99af1 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8fd20326 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x8fef2037 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x901d4c02 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x9032bc70 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x903b0f79 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x904c90a2 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x90595a91 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b29a54 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x90cf7cd7 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x90d191ca pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x90dc29df aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90ead6e8 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x90f583f3 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x911b2b87 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x913eb81b crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x915b2afb xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x915de55e scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x916f2447 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x917ee6f1 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x91830888 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9193a968 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x919ee7e9 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x91a8591e cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x91b22be7 device_store_int +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 0x920e846b skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x920e8f90 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9252bce7 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x925f88ee extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9273028d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x92742c24 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x92864dcd fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x9296bc7a usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x92c0c848 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x93018294 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x930ec420 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93442897 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x934c4b77 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x93ac2780 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x93dab225 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x93dc2586 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x940a4e43 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94342b3e register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x9445b5b6 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x944d43ed crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x9450550e percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9450a31f irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x947d0f47 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949187d4 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x94960d6d pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94aed556 acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x94b47d66 pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94ec6abe init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x950e2087 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x9513641e __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x9519d328 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x951f204e da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953d8337 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9547c44d __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9566fc38 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x956e92ed cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c36b57 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x95e28885 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x95f1f1f2 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x95f5ddad usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x960b0c33 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x96193783 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9633df26 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x96359189 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x963d63ac fuse_abort_conn +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 0x964d5c92 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965ccc73 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x96626387 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x96a1609c ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96bb90fa iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x96c2685b unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x96ea31b9 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x96ee0f42 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x96f5aae9 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x96fad435 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x96fb2b20 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x971388a1 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x972bf1cb debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9780f0d1 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x979ac42b xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x97c558c1 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x97cc0ad9 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e13028 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x97ed5451 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x97eecbf7 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x9807f092 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x98163314 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98484c28 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x985d59ed fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x9860234b raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98858c2d locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x9888433c __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x98959027 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x98be43b5 iptunnel_pull_header +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 0x98fa37e3 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99368900 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x995368b8 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99625a9c irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x996b30d1 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x99718b6b crypto_attr_alg2 +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 0x99a370d5 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99ad00ee shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99d1c38b mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x99e1adf7 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x9a0813f9 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a200ba0 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x9a214ae9 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x9a4b4d8b wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9a7515a9 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a93963c scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x9aa629de debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x9aa6abc4 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9aab5eb6 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x9ab3dc47 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9acb1c63 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af50123 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x9b0049a1 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x9b06bc63 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x9b369e6b pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x9b38ba7b ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x9b4f7e98 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b583e96 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9b6a7412 idle_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bc66123 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9bdba4f5 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x9be402c8 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x9be6a7eb sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9beedaee ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x9bf1ff3c clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x9c0811dd inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c19e96d ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9c23e872 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9c24047f dev_pm_domain_detach +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 0x9c5d23b7 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x9c753bca da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x9c9f677e ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9ca64b4e class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x9cb4aae1 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x9cc118d0 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cddad0a pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x9ce29bbe tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x9ce51d22 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x9cf826c8 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d1cfd16 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x9d219294 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x9d2d60cc inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d5b59c3 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9d617362 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x9d6dc2fb klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0x9d89bacd ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x9d97fdf9 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x9da50e47 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dd683b1 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x9df42233 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x9dfb6fd4 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9dff5ef7 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9e05499a init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x9e1e9210 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9e28af53 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x9e379201 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x9e3867eb ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e969802 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x9ebe5040 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x9ecd38f0 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9efd094f efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x9f001415 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x9f0988c0 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x9f0b0c9e device_attach +EXPORT_SYMBOL_GPL vmlinux 0x9f1ad41d tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x9f4ede8a __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f59db62 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x9f92af83 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x9fa38e6d securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd66fb4 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x9fe30b10 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff98113 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xa01151dd tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xa0129a16 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa046265a regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xa04b2e0a xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xa055af54 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xa060bf0e napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa06a62a5 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xa097efec tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xa0b402cf xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xa0f334d1 arch_add_memory +EXPORT_SYMBOL_GPL vmlinux 0xa0f35495 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xa10f378e tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +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 0xa1785046 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xa17cb9f2 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1b4e7d0 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xa1c28ccf xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xa1c3dbf5 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xa1c9854b thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f19902 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa263df1f mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xa26bb289 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa26da41c power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa29cde01 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa2aa350f sata_scr_valid +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 0xa2d07f00 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xa2e16e04 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xa30ff5e0 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xa317fff2 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xa3208df5 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xa346a9df ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa35cfc87 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xa360d762 scsi_dh_attached_handler_name +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 0xa3a6526a __skb_get_hash_symmetric +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 0xa41a93a2 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xa41c2ebd device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa42951c9 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa431ee1c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xa4415fc2 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xa446ad97 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa4568764 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xa45fbea8 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa4621eb3 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa468d6df bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xa47bb427 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4915cdc scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xa4b5e2a3 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xa4bc014d ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa4f76900 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xa5228088 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xa5534769 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xa5719fe0 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xa5770935 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xa57e5190 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xa5b69338 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa5b98c3c handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xa5b999ad perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5df74cc skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa61339f4 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa62b950a i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa6320bcd blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xa63d6a9e gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xa64db99f pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xa64debc2 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xa65d4832 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xa66438e8 erst_read +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6785065 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xa68bfea6 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa6a0220b __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c8c24d blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xa6d2badf sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e5f559 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xa6f2a188 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xa730b5a7 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xa74f3748 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0xa7763cc3 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xa77f2816 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa791155b device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7c75d6b devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xa7d9cb69 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa7f22bad gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xa7f35e53 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa7f6825f ata_dummy_port_info +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 0xa820b160 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0xa82c321b gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa82fc681 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa852aefc blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xa875739e ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xa877657c adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa878317a usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xa87d02a6 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa8a37249 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8d03b8d pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa8e29523 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa8f19268 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xa8f4ceed blk_queue_bypass_end +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 0xa93ac51b usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xa946f006 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xa95f48bc inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xa97434b6 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa9810cfe pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xa992536e shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xa997a6f6 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xa9acdfb8 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9d56029 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xa9dc8207 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9ec9a73 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xa9fba126 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xa9fec730 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xaa0c23ab inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xaa12f36c ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xaa2601e4 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xaa42b5e1 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xaa4830c5 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xaa7b4618 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xaa83ed47 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xaa900655 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xaa92ac8e pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xaa9d0bbb ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab53d8a usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xaadaae72 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xab007d42 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab10dd85 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +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 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xabb081f5 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xabc1019f sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xabc1d447 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabfab223 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xac096d8f adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xac0e66c4 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xac19ece1 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xac22debe platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xac49585f regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xac4c56d9 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xac5bdb3f phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xac72b3ca power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xac8d021d adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xac8f5b66 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacb064ee subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xacc5d60a pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xacc75435 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xaccc6972 klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xacdf304b cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacf6541a ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xad1c381f pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xad2cf9b3 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xad2d7ece regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xad4d6139 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xad615090 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xad6fd9c2 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xad73dd98 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xad81c677 device_del +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xad9158ad fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xad94003c regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xad9e9634 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd1895c pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0xadd81f90 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae1e5190 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xae319dfe bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xae6627af usb_get_from_anchor +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 0xaeba36bc pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xaec36efc dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xaecba6be percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xaed8b5eb wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xaedcca28 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0xaf00d5ee pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xaf176a23 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xaf4991c4 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xaf53774b sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf81388b pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf994968 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xafa79f87 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xafcc0a29 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xafd4d091 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xafdfe8c2 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xaffe8b17 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02b91db ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xb032c2e3 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xb03efef8 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb067ffe6 devm_rtc_device_unregister +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 0xb0be545f xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xb0c2f1f7 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0f877cc ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xb11fc462 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb129847c usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xb12ec0c0 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb13536bc __online_page_increment_counters +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 0xb14df33e blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xb167a977 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xb16f32d6 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb183d6b7 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18e5c5e __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xb1a2374a tcp_register_congestion_control +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 0xb1d4877f desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xb1dba957 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xb1e0ddd3 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f098fb devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2216b43 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb2661c5c blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb288e83c bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xb291ee6a ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xb2aed20f sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xb2bd6d0b thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb2d2daf3 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f2295c sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xb3134a3c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb332ce12 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xb3441ecc irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb38b9cc3 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xb398127f list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xb3af923f platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb3c2aa6c driver_find +EXPORT_SYMBOL_GPL vmlinux 0xb3ca04aa acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xb3d2fc59 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0xb3dbff5a posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xb3f18d21 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb3ff1ee7 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xb403662c irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xb4058096 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb43d0a7a pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb446f80b clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xb4479103 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb46f561d inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb46fb96d cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xb473e09e scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xb4a72d4f spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4de6582 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ff154d net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xb518b990 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb5292bc4 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5763ec2 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb585a9c5 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5b3937d kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xb5c98641 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xb5ee4676 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60fe13c ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xb612ac4a crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb6887d34 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b0536f rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6be58d2 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6eb79c9 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xb70ebe5d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb72e1aea mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb7547f14 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb75a9e59 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xb75e405b acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xb79fff75 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e876a7 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb7fd1e23 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xb8004774 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb82eded4 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xb83eefb6 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xb87ea2f5 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb890b1c5 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xb8b0270a perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8c3872f regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9106fab wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb912b1d6 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xb9169fb3 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xb919fbf1 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xb91de661 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xb93ae13c md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb9442f5b ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb94c144d rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xb96de604 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xb96fd80b sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb983dd5c sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb99280e3 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb99f4d3f pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xb9a3df7e devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb9b60c4e __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c58a99 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xba03e67a device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba30b5c7 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xba4284d7 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xba52755d tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xba55dd0e gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xba78786b input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xba81e93d usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xba83b0c9 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbadfadfb __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0728b5 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xbb09b744 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb4b41be usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xbb6975b2 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xbb6e2fad thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7be13d vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xbb7c05d1 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbb83d82e wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbc04a74 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc5addca ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc74c094 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xbc7a46c4 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xbc964bf3 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb20bbd sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xbcb838a1 amd_flush_garts +EXPORT_SYMBOL_GPL vmlinux 0xbcc215d1 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbcdd63a6 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0xbce49734 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xbcf6906c dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd65244e da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd6c32b3 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xbd8286b7 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xbda2f477 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xbdb661bc blkcg_policy_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 0xbdf91566 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xbe10e882 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe27fd99 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xbe2a5327 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xbe2dc691 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xbe5d0996 idle_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe638ca1 intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe77ea57 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xbe837b58 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xbe96ba97 blkg_lookup_slowpath +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 0xbef1b128 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xbeff7061 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf17c0ff usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbf324a44 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xbf35a478 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0xbf36de7f uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf3dfc1e acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbf5f56b9 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbf6c34e8 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xbf70c548 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbf7de6a2 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xbf89d87f devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbf9f836a pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbfa1d56f exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbfa2a5fc fixed_phy_register +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 0xbfdab3d7 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xbfdf20e7 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbff9c46e lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc010fe5f ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc04ff9f5 crypto_aead_setkey +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 0xc0a842cc skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c38448 usb_hcd_amd_remote_wakeup_quirk +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 0xc0f6ef82 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xc10679ef ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xc12b5d2e rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xc12dfa2a set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc12f7173 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc1737420 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1cf8397 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22d53d4 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xc23f9986 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xc2598640 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc27fc78d irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc28631ca scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc296aa24 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc2a7dfd9 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xc2b9c152 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xc2dbe2af pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xc2f2ecaf swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xc3117d9e __put_net +EXPORT_SYMBOL_GPL vmlinux 0xc321deba device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xc32b17bf adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34bac30 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc368720e user_describe +EXPORT_SYMBOL_GPL vmlinux 0xc368e913 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc38f5fa9 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3a743b5 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xc3bf8f6a regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc3bfa79a pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xc3c9a1da blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xc3d8dfd7 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xc3f252e4 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4366e7e thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc447dd93 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xc450498a tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc46d56b1 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc471e245 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49de012 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xc4ce2ecf inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d24142 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4d760c7 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc502e38e nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc508896f posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xc512626a __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xc5302593 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc5357381 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc53cc729 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc56554f3 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575bdfa of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5a5f0b9 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xc5add4a1 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xc5d22373 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xc5d285b8 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e20e1d devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc5fb51c5 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xc6034ff8 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61cb309 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xc635dbe4 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc642cd41 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc65a73b7 __dev_forward_skb +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 0xc673e878 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xc67664eb thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc68e690f pinctrl_dev_get_name +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 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc726bc6b devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7449409 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xc744ba84 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xc7617bb3 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc764ec98 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xc766a3cb tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xc776b9d4 use_mm +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 0xc7e1fc11 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e87201 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xc7f58ccf tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc815857e xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc82ccb10 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc8386d23 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xc8453119 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xc8547237 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xc85f8100 anon_inode_getfile +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 0xc8879a0c dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xc88ad7b7 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xc894fadb usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xc8a10097 dma_get_slave_channel +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 0xc9283dd6 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xc933e1c2 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0xc94cedbe led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xc94d44db da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xc952ca52 __sock_recv_ts_and_drops +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 0xc97286c7 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xc9975115 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xc9c02f69 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xc9c18ba6 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9d0c7b7 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9fcb2ef cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca1595b1 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xca385623 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xca460086 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xca4a7f63 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xca5b31ec attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca7903a1 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xca7c6400 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca9a6c10 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xcab6eca9 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcadf803c pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xcae5f094 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xcafac3b4 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xcb02f4a7 put_device +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2c9bff kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4bad22 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcb8ca4df regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xcb951ed4 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xcbad348d devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xcbc77725 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xcbc860a0 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xcbc90a98 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc424cc4 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc4dc461 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xcc6f54a0 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xcc76cec9 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xcc7f663f __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8aafa6 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xccb5536f agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xccc066ef usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcccf1e4d crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xcd1a7d95 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xcd37b243 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd74f8a5 pm_generic_resume_noirq +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 0xcda56da0 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xcdb2b7f9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdba0096 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdce506c crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xcdd7a5bc dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcddc6949 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcde5d54a __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xce06078b mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce2645eb raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xce3b666c devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xce3b6e4d __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xce465f33 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xce4bf41c __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xce4d25c3 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xce65824e blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6cca7f default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce703820 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xce76edc6 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xce8801c4 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xce98f016 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xceabd8fa blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcec2d6af gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xcec41d5f xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0xced3e198 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xced771e1 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcf0d9887 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xcf176209 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xcf296463 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf6f1647 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xcf7f8d50 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xcf92bc3b dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcfa467ea device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfb67bec da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcc8302 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xcff064ee bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xcffeeb8a sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xd01352ca rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd023ba4d ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03e60dc raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd063b9e1 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd06b549a clk_register +EXPORT_SYMBOL_GPL vmlinux 0xd0a49405 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xd0a4e61d devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0e5d9cc xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd0fd62be ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xd105d27a msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xd10cbdf9 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xd10f8cb5 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xd11edf99 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xd13acd02 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd1553b3b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd165b942 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1718fcf bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xd1835033 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd18f6435 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xd192a820 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd19eee15 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xd1a267b6 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd207e9de wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd22464e0 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd2534dc8 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xd254e1c3 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xd2628be3 __add_pages +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 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2d65316 register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e88de5 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xd2e99af9 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd32a0995 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xd33961fa sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xd3635532 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd39358a5 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xd3a887b6 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3caf8c2 acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd3d1199d spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4087a5a device_move +EXPORT_SYMBOL_GPL vmlinux 0xd40da8d4 component_del +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd420312e tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xd426dbc4 erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xd42f1bdc nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xd43b955e sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45af20f rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd4683ba4 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd472231d rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xd4843432 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xd4a8895c regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c15a1a usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd4c2bfa6 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd52d0796 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xd537e16e __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xd543953f ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd59696c4 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5f6ae8a crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xd5fd69b9 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60ee95e mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xd618a5ea tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xd628160e __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd6293b48 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd635813f devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xd648ca20 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xd64dd8cb regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xd65078fd scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xd658e01c kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xd66f4c69 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd6731e02 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd695d417 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xd69a525a __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xd6c07521 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd6cd29d7 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xd6cdff19 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7022d43 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7214ed1 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7383576 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd74c1187 crypto_ahash_type +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 0xd79fcea7 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd7b15844 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xd7b791aa ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xd7cf8930 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7defe71 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd7e17111 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd82851f4 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd833d456 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xd8412618 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd84c5100 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xd84d5284 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd8557659 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xd85ecaa1 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xd8632792 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd879c395 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd881e19b bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xd8afd8c9 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xd8f6c7e3 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd90a5b78 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd935292f apic +EXPORT_SYMBOL_GPL vmlinux 0xd93d9d43 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd95cacae rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96cdae0 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd9738cc7 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd9a0c1e6 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xd9abb595 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xd9bdd929 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xd9c5e1f2 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda22c1ea serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xda2edfd8 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0xda389561 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0xda683e6c subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda87f5ea __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xda8b98ae scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xda97e702 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdadcb8ba spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdae85ace max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf1dc60 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb1b2d41 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xdb1b98c0 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xdb259c2c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xdb27618a ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xdb3fb50f perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb82d2bc pm_generic_poweroff +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 0xdb942c78 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xdbafc9f3 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xdbc1d45b pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xdbd5d2c7 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc0678c8 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xdc0eea07 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xdc11c821 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc23682a sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xdc3587a5 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc7c2230 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc99c58b i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb3ba95 driver_register +EXPORT_SYMBOL_GPL vmlinux 0xdcffedea dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd3832a6 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3df1c7 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xdd41400b acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd5f5a8e rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xdd60d1f2 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xdd923332 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xdda6a32d __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xdda6f589 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xddaa5d5d aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xddb8d20d get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xddbd8969 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc6b01c ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddefb688 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xde048fbf sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xde04edf3 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xde09e17f xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xde1caf8c fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xde276408 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xde27fffc devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde4be699 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xde67b043 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdea109ff pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdeb913eb sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xdef58e4d rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xdefbdd56 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xdf04956c class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdf0e3468 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf118205 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xdf1786fd blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf1a2f89 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xdf6d6744 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xdf8dfb3f disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdf91336f ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xdf9c099c acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xdfa87882 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfc5d58f mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdfd5a076 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xdfe4b8a2 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xdfee27ad __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xdff03578 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xdff719b5 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xe0003dde kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe0032a33 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xe00725c5 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe014a130 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe0594f44 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe077ed32 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xe0829a2d ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe08eb93b inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xe09a813d led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xe0a498cd pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0b1771f bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b54f8d devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0c811b0 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xe0d99c4a flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe135bb8e devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xe16b0d30 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xe16b868f regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xe16c6e89 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xe16f3579 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xe173190d tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17fe7a1 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xe182702c ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xe198a434 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xe1ba60fa regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1ca7e64 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xe1d1fc84 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xe1d5e607 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1d64ad8 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0xe1db2912 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xe1e96bdc ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xe1f1f309 x86_vector_domain +EXPORT_SYMBOL_GPL vmlinux 0xe1f3d6ef fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xe2137c3d irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe21e8000 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe241f862 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xe27498d7 pci_vfs_assigned +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 0xe2ab322e ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xe2c5a9e3 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30a4181 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xe34ac4cf ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xe3694fca bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xe373a07c __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xe38b7638 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xe38f9c7a sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe3afa1ac sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe3b46732 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3c01c6e sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xe3d4df98 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe3dcae4e blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe3ff964e usb_string +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 0xe4622e20 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4793a87 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xe48e3b84 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xe48f3f5c inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49b82b0 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xe49c79ff skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4d8eeea wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xe4e60dfb ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe50bf9aa devres_release +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe516d3ef usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xe518e900 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xe5338fc1 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe546fee7 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xe554abe1 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe5586ef7 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xe56f79e2 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xe580664e xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59d18f5 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5d94657 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xe5f0b80e swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xe5f69bec ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe605989f serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe624b745 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xe638d426 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xe64329ea regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65cc810 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe6696b1c vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xe6bc794b pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xe6c2bf2d tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e5a588 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xe6e87a6f blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe6f845a4 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xe702b9f7 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xe707968d spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe73e0229 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xe743fe75 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe760c75f cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xe763d3e5 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7702828 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe77909b7 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xe77b4826 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe78a9c03 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xe7a332a1 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xe7a389d5 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe7b3164a rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xe7c263c1 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xe7f90a38 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe83d4759 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe83d4902 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85406e9 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe87a44e4 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8d888b4 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xe8e3eb3f crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe8fb3102 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe90f650d watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe91af926 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xe9228b7f pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xe9243f9c cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xe92b3dbe ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94cc0fd thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xe956f4a5 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xe983770b unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xe98fd2e7 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9eb9b00 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0xea0d3355 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1faed9 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xea398abd rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea7acb00 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xea7d100f md_stop +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea91ed5f tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xeac46b7d ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xeaf4dc47 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xeafedc50 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xeb054e65 gpiod_get_optional +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 0xeb5d93c6 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xeb5f4dd4 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xeb6dfda6 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xeb727d00 tty_ldisc_deref +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 0xeb845037 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xeb8ca5bd iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xeb9ebb47 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xebbfa9a7 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xebce1a71 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xebcf4fa8 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xebd5a578 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xebdc8ef3 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebec896f put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0xec1471c3 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2edcbd bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xec42ee95 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xec4afebb ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xec4e3224 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec6e210c klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xec7cb753 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xec834430 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xec8f0e65 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xecad3b34 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0xecb20b9c mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xecbba664 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xecca749f relay_open +EXPORT_SYMBOL_GPL vmlinux 0xecca807f proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xeced40c5 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0xed001a7c usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xed0a196c crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xed10ff88 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xed7b1607 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xed83b700 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xeda95582 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xedb198a2 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedc74094 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xedc9acff inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedd84a0e power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xedf993a4 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xee05519e ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xee0b0ca0 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xee13e697 set_personality_ia32 +EXPORT_SYMBOL_GPL vmlinux 0xee1fac78 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee3640dd of_css +EXPORT_SYMBOL_GPL vmlinux 0xee41ef1a rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xee572403 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xee698725 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7ba35a usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xeeb5d3a1 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xeec45afa sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeee3a663 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xeeefe1d9 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xef092c31 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xef0c41d3 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xef1ca95b wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef3a1550 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef8c1345 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef9adb89 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xefa02f35 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefaf8f25 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xefb05f6f gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xefc6b810 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xefd25990 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xefe325d7 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xefe47577 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeff77bbf __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf00a12ae sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf012f693 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xf0138df1 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xf0188461 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xf032fee9 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xf0363573 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04d7060 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf05b9082 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xf061cd93 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf082e0dc arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xf0a8e331 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0c59e02 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf0d07430 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xf0d591be dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf14d52ff bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf165fbba max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xf172c3d9 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1983cc2 skb_splice_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 0xf1bb00c9 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf1c8da36 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xf1cc83b5 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xf1e8d102 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf208d54f regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2560c3a blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xf26135cd pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xf2729d8c crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2a9ad9f rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2f4f428 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 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 0xf35ab442 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xf360cfd9 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xf36f3fa7 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37f9840 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38304ce ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xf38b9354 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf396df98 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xf3adb1e9 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3b6c0dd __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3cbf98b ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xf3cef911 pci_intx_mask_supported +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 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f4d8c3 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xf416a98f driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf41cc720 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xf44d642c devres_get +EXPORT_SYMBOL_GPL vmlinux 0xf460122b simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xf4884458 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf488cd60 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499c048 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf49a73e8 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf4aaa610 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xf4f242e8 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf511bd76 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xf51945c7 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf52a8ffa call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf53df576 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54ef286 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf58b723d regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a32bed gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5c256ac rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf5eb6920 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xf60218c0 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xf629650f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xf630c9ef rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf64a8668 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xf686c34e blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xf6a9556a btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xf6ad9f8c spi_async +EXPORT_SYMBOL_GPL vmlinux 0xf6c08940 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6def5ed blk_rq_prep_clone +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 0xf74a2020 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xf75c8157 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xf77db2e9 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7e1521e usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xf7e53bcc pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8385a5b print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0xf84ba7ec __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf86e4221 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf86ea20f nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xf87919ba regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf87cf588 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf88d88de wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf8c1c1eb register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8ed4c40 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90a6c12 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xf90ca861 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xf9145d4f xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xf91b2b97 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xf92899a8 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9455b24 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf954d75c extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf98457ae bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xf9885fd4 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf99dc3c5 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9c71722 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d0874b ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9da455b mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xf9f787a7 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa308a60 shash_ahash_digest +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 0xfab865d5 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xfabe5045 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xfae2d680 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb2ab25f mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb340460 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xfb38610d acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7ee811 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xfb8a801b pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xfb8a8beb fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xfbb17cde usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc03ec0e fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfc0a8a29 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfc1aea9f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc2a3a35 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xfc2d64d1 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xfc341c32 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xfc3ad770 sk_setup_caps +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 0xfc5542f5 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xfc6a664f mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfca57e60 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xfcc49878 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xfcc4ef96 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xfd01a667 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xfd0d8957 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfd12cbf5 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfd181bdf print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0xfd2fc7d0 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd5ae00d usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfda98b45 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xfdba47c2 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xfdbef790 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xfdce6a9e tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xfdd32cb1 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xfdd8627b disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfddda7d8 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xfdee47d2 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xfdf914c0 xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xfe0e7264 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xfe14cee3 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xfe2a3bb3 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xfe447619 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xfe63ff69 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xfe668dc8 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea84e42 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xfeaa2cc4 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xfeb078a6 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfef3f8d9 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfef782d7 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff064b57 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff52ffec device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff8b3121 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffbba849 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xffbd1273 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xffc3a0d3 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0xffdf2ec5 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xfff6137c i2c_bus_type only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/amd64/lowlatency.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/amd64/lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/amd64/lowlatency.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/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 +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 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/arm64/generic +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/arm64/generic @@ -0,0 +1,17648 @@ +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 0xfb63388a suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xa3bb41d7 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xdc5e5fd9 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 0x7bdcffc6 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x01c40c98 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 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 0x95e993bd 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 0xb7b1e04d ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xcc19b97c ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xde0e0456 ipmi_smi_watcher_register +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 0x71ea3a48 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x90702e86 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa98d5feb st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf1831b5d st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6b016722 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xaf201faa xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xc0fc8a58 xillybus_init_endpoint +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x08cf6a4c dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x4411fc6e dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6599688f dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb40687c3 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb5bebcfe dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe58bc427 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/pl330 0x2bf60ba7 pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0x070f1cd6 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x021bd5bb 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 0x0fb4db5f fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1928c13d fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x20d519c0 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2608e99e fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2b1b8460 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2c8b2be8 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2cc04138 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x30556795 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ac92c65 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3f267d75 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x401f27fc fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4854c856 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4940e8ea fw_iso_resource_manage +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 0x701783d3 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x77d2e156 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7a8bc9ec fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x83c4095a fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8a41fc11 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8c6e72a8 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9dcf0db3 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbc36193c fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc15c56c6 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xdc3acf6d fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe079fd54 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf028ea77 fw_bus_type +EXPORT_SYMBOL drivers/fmc/fmc 0x18a1daf2 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x4411b240 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x718cb87e fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x7f059ec0 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x9472b70e fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x9d480f1b fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xa68d269f fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xa766f0ef fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xe504f676 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xeb5362aa fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xf6b21a43 fmc_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x000b16fa drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00a35886 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00f828f1 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x010dac82 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x024dd8a8 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02eea572 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03cb34e9 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x041e2bd6 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x046f1df9 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x061bfb82 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06dbc31d drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07fd4fde drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x088e51a8 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09a092a1 drm_pcie_get_speed_cap_mask +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 0x0b67297a drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c5008d9 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c79f9e4 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c7fa294 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d131465 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df502f7 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fe5f337 drm_dev_unregister +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 0x1350255c drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13c0ce4a drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15350f43 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b9a9d0 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15c8488d drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17129e5b drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18021e42 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x185fe74f drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x187675cb drm_atomic_legacy_backoff +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 0x1ab4b55e drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd0a731 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bdd1580 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1be4021b drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c8f82e3 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cdf3626 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de66c2d drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ef27da9 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fbdeb2b drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fce6306 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x202f178a of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x203b3a43 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21c394e7 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21e13778 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21ff1d2f drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27e145f5 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c3f290 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f5a648 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x296b6e7c drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29f3fff7 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a48d3e5 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c961bc4 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e3f61e3 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3065044f drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31660260 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x322a0332 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x333102e3 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33705bbb drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x348b96a2 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x358b0c7f drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35c213b8 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x364b096d drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x376d7e67 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x377768a5 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x378def9d drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x387b3e73 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39274d8e drm_i2c_encoder_restore +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 0x3ca42d8e drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cf6322e drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e18874e drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb86cc2 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f667b7d drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41d737e4 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42d85ff3 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42f78c0a drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x440c1d6b drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4583419e drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45914f67 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x479accf6 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47a61b2d drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4831297e drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x492df7c1 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b97a82f drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cfcd49a drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d6e6c80 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd18721 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de659b4 drm_pci_exit +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 0x4fdf5225 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5183544d drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52bfe84d drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53bbbb74 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53fdc3c2 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54169978 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54338b12 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5512f322 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55e0d2a9 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56738120 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58ac159f drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ad3f30e drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b5886fe drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e212257 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60ef268f drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e3eb30 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61f87c8e drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x636e0917 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65606cd6 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65697bce drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a858db drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66388ec4 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x680593b9 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x685250ac drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68a27455 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69610333 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69ca6621 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69df0376 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ba71446 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c8d7c7e drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ca86181 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d9195a8 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f75cd80 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703d6a80 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70bed927 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7215f080 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73a90517 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75ff4514 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76ab543d drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77ec6c5e drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78491ad4 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78a47c26 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7981e274 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x798dacfd drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aec1712 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b70d6f8 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c7f01bb drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e920ea9 drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ee6ec9d drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4b7a08 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f59e304 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80985dc5 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x811ccc40 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81728cae drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82011ae3 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x829fe8c0 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8331e69f drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84dde59d drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x857ae592 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x885231a4 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8980fc39 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ae48598 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c4b97d8 drm_mode_config_reset +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 0x918d1928 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91f38dfa drm_atomic_plane_set_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 0x92cf0d8d drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93645d69 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93ea6693 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x943e8922 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94a9a1eb of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x950f217f drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9545e7d5 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x957c5365 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95a0248a drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x975ea961 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97981a5c drm_prime_sg_to_page_addr_arrays +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 0x9abbb1eb drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c926acd drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9de7d443 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed1d798 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9efd2b97 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa049f0ea drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa26c94b5 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2a8dbd5 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa337ade3 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3a20d1d drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3c3c3e8 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa403fcee drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa61da143 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa743c77d drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7528c60 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaaf3735c drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab49c194 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac7df1d7 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae868ee6 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafa0b3fa drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb01d5412 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb06d87a6 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb29242d6 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb55f0a8e drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb595c54c drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5bc031c drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb620156b drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb93bfb87 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba0bd9dc drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbab85860 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac4eb44 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbb51395 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbe73d9f drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd161d8e drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe9d7222 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0e92b3 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1d60566 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2024c22 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc257e24b drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2f5c9a6 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc383cebf drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3d3d121 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4b6bb7a drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc582b24e drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc80dbb4b drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc917a771 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca380165 drm_i2c_encoder_destroy +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 0xca9a5586 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb464053 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbb60b2d drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce2455bc drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcea4457c drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf4c8ee6 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd004a3c1 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd024c608 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd03a8f20 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04f7561 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f82d04 drm_framebuffer_unregister_private +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 0xd3918841 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd403e591 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60ab4d6 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60d8c89 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd60dbbf1 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6c53af3 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd711eec9 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7e9f322 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd846cf11 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd84f6d81 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8c338f8 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9744e54 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd98a208b drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdac12b9e drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb9c113 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdec77549 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfc3137b drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe028ef16 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe177c359 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3031b22 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe484eb47 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5cfc33c drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8f059d1 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9220573 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe93b446f drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb4fc0fb drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba1ace3 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed88d3d2 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee1ddd22 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee6aaf19 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef4f1739 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf08345a2 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1c6ffae drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2e5cc7b drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf317cf55 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf31d9f0d drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf36e9c54 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3e53ff4 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5cee9b1 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf83690da drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8777543 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9420bd4 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf94e2aeb drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbed0091 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc92f4c0 drm_i2c_encoder_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 0xfd0beed9 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfd3b1345 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe45685c drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff2a96b6 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff602ac8 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffaa39b2 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01135e60 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x021fea15 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02a9eb55 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03cbd613 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0639d489 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x090c413c drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0939abd8 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a90502e drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c40de40 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d859a4d drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f5adbc2 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x104a694a drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x131d3ec3 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15ecfb8c drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16a1c5ed drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18e776e4 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1985993e drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19d90024 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ceee0af drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f099b44 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22de677a drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29cdfcc1 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a4f5331 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a75f54b drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d88db70 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dcf7a01 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e3359af __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f7c435e drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31153d74 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31afc21b drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x326fd9b6 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34297b80 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x344156b6 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3524c528 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3894330c drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x394a5666 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44c704f1 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x458afe5e drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x477b81d7 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49f7bdc3 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4a9c682a drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cc84348 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d71f7da drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ea68d36 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fbfc337 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4fcf01b5 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x538457a5 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53cdfb09 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59866964 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59a1d3c6 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a5a779e drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c8e36aa drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x618d39b2 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6787d54d drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6a5baac6 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b94e2cd drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dc0662a 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 0x744c8586 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74ab6453 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79b124e4 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ce517a9 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dd33a5c drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ec2c6fa __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f5243bd drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x801c4aa0 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x804793dc drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80693c3d drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x830a7b1b drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x85a09fd6 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87750ce4 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8991592a drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89b1e54e drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89e0de3a drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f42b39f drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f99c123 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9188ad50 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x973a3ec8 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9bf08c7a drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cdbf68b drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9db2d2d6 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0b83d23 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0f41e79 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa20b15a0 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2253c88 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa67ece9d drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa73c4b5f drm_fb_helper_release_fbi +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 0xa9358e20 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa813179 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac348f45 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadbd57d5 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf5c1024 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf8b2395 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafb0d8ed drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3c07f47 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3d6044f drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb486ce8c drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8601c7e drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb904f7ab drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba76a206 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbafc8877 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbbb3b521 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbeb798b8 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc037d977 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc40bc2df drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc50a9cbc drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc741a793 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc89a6629 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8e91334 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb1e5c08 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc8beb87 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd0419e53 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd63c85f7 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6b5ba72 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7c1b763 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7c8155b __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7e46422 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9fc572a drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda34ddd5 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdccb1547 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe05a35e8 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe198c0c3 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4a1cb3a drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe76b7463 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8aac3fb drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe8ae012b __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe96bfa86 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe98e2c0c drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9ada2a2 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9d0606a drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9db1db9 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecd3b6cd drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf085180e drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0c9e023 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf11d7faf drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf12c089f drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1ed968b drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf236dbc0 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4498008 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf7be9965 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8ca2fd1 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf920c884 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe3ce85d drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x028f4d89 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05f788a6 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a305501 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f8d674b ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13111ce6 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18788b8f ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1aedaac4 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f3edab7 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25855ed8 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x261949cd ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x263756e0 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27f62feb ttm_mem_io_reserve +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 0x3581748a ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39617a12 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x412457f7 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x48eed46f ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x497e8c76 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50097d77 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52a3f231 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5570c7f7 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x560cb67e ttm_bo_unmap_virtual +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 0x5ee757e7 ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x62d4363c ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x662964f0 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66ca0cf7 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d5add78 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6dbb54bc ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fa23711 ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7931768c ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x805e2b8a ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80c1691b ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x819e9cda ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x83598522 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x837b916c ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8623c73f ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d31169a ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x920aef9d ttm_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 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 0x9a6ed1fc ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fd1dc51 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa0e1f89b ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3d573ff ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa578f8bc ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaea96059 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb21d7d7d ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3d45f4e ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5bf21de ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb64b4ac0 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc9cbc0f ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfe1d040 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2b9673e ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc734b670 ttm_mem_io_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 0xd7a11bf6 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdaf453f0 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe380a3fb ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6ec87f5 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf0d58abe ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9664bdf ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf9ab2be0 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfee8f432 ttm_bo_move_to_lru_tail +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 0xae87390a 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 0x2f528870 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xae3ca78f i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb6838585 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x477c454a i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x8fa570d3 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xf15af1fd amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1efe1c7f mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x23ea2d3e mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2ce01deb mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x39da651a mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x402dd400 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4ae93381 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4e74148d mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6205b9b6 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x684cdbfc mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x743d705c mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa163b892 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa5d1ba5d mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd4aa1ae8 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdb3d8846 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf44047da mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf927f689 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x36d91de5 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb1de2db0 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xbe16c19d iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xd5abe8ca iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x713b967a devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x722b6fff iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb71bd8f4 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd6cf93ca iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x30f47173 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x46237558 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa2e526e6 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xaf1c8d90 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc5e7b430 hid_sensor_write_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 0xed6294e5 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x26fa074a hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x5377f822 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xa15eddaa hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xc58170be hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1f66b8b8 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 0x2a96d7b3 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3208897c ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x34235cc9 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 0x83079c38 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x882401e6 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb2b1ef95 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 0xeb4f997e ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf88b22b3 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3940ffc5 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4b3f5460 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x64f36040 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6a60ff27 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6e4fd90f ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x32d55eec ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4d9c7c72 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4e41a59c 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 0x2475d06c st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x27d1e6ad st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x33fbfe4f st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x456d5ee2 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x65f0c527 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x68b911ee st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6c3924c5 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x949bce1b st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa0b8d9e9 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb006ede9 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb383eb80 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb988d211 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc29d1f87 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcd5b757e st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdfeade38 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xea03be27 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf7cd4063 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x2023c68e st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x448b93cb st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xac742e55 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x8d517aed st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x25da30d0 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x9bc0a476 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xa616590c hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x49b93781 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xfdbab409 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x019f5e32 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x10bab550 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x1e5cd8eb iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x294dc6ff iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x2c02770e iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3eadd01f iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x754b7854 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x856adb7a iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x8a0d1c24 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x96abe649 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x9c4eb530 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xa859b9c4 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xb02319d8 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xb1a6f9fa iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0xbd4b8475 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe855264c iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xf49a618d iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x1e77a890 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x5945f296 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x05c6b27d st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xb296ef4e st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x7364996d ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x085b8bf4 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xd5ab5093 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 0x0b67a54a rdma_resolve_ip +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 0xa5891ffc rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xad5d6f71 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xedaa7e00 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xfe6e58a5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x01dc667a ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0f96aa9c ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0fc103d7 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2a76bb15 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x303a4a06 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3522a4f6 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3f43d2ad ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4b49685b ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5babb6fd ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x602d0b7f ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7e499210 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x80252879 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa521c8ad ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbb24f0eb ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd3caee5d ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdcccad3c ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde7368a8 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe539da33 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x012b4f18 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0956abfc ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b262ca6 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b8efe24 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c5eaa58 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c953535 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d41315f ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d750196 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11632901 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1303d952 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16890be4 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171f48a5 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a2c8c41 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1d472d00 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f035d05 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f2fe0b8 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f495cd9 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2067ed0e ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2145e97b ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23cba52c ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2458ce15 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25d6dcdf ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28b985d1 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d420928 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x366a3492 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a2caeff ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dde3879 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f2f264c ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4092e280 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x41e5f4f9 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43f9fb53 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4496096b ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48cb6eaa ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4af4b256 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f33dec1 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x506cd85a ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5131e11b 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 0x59703bc4 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f45f7e8 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62ee4dbd ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68891985 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a9321b5 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x785dcf78 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7998abb6 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85aeeb24 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8728ac10 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bb59ec1 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bc69538 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c84bbbb ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8e82acb0 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x907df314 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90d5eb51 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94c941fa ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98300e98 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9907eca1 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa37818d4 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa69009d8 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa74b58ac ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae5aa476 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf4fa3a7 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb08d8f62 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2be34da ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb80b11d6 ib_modify_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 0xbef4ba99 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf76d717 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4e4e6bf ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc878ae86 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca2cecb5 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xccec03f1 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce18422d ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0917b5d ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd383993b ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd55aa784 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdaa1b7b2 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe44bb6e4 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe715d8c1 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8ff273b ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xec0a4c5b ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeed7949c ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf46a64b8 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf553f3a7 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5a3521e ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7f8939a ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x167e2885 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x190edcc7 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x242235c6 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2e00c59a ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f47f3db ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x44a2dd10 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4c2fa13c ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5027457f ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x67d2febf 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 0x7d53a3b3 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9813e670 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xceeed935 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe2766070 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0bc753cf ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1929e4d3 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x309a4e92 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x31a1d39f ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x537df55c ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6f7e97ab ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8509bb93 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8b3aec1b ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8d4d95a7 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x8ed9af46 ib_sa_register_client +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_sa 0xf7aea598 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 0x6fa40fca ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb758496f 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 0x0d18450a iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x31d51437 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x48bc0261 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x51119f1a iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x52f9f4df 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 0x78c89872 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x84e498e5 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x86b4446c iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8909168c iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x90915862 iw_cm_listen +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 0x932e4ad5 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb2d9ceaf iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb5ce65fa iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb8b60f6a iwpm_mapping_info_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/iw_cm 0xfe2adb7b iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x157f889d rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d2f88ab rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1d3d7133 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35c221cc rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47bce007 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47c3c54c rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ef284e1 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62e36127 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68807503 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x68f2b9f9 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6faf80ea rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78f6b459 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x85b9585b rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x87a47337 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94967460 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x95da384e rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9e03c404 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc5833676 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1d65560 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5be5718 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf4c0f0c6 rdma_connect +EXPORT_SYMBOL drivers/input/gameport/gameport 0x199c0205 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1c852351 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x42ccfb0e gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x79c93156 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa91c7f01 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb3f4417c __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbb3f0d33 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xed4e0762 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf12bae38 gameport_unregister_port +EXPORT_SYMBOL drivers/input/input-polldev 0x30a4ecf1 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x50ef87fb input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x5dd56d8e input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb2b5907f devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc9237e35 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xdb1e20d9 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x05ae7815 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x57a37b0a ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x96515792 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x5db86832 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 0x1c51d00d sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2dfdd586 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9c100b63 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9fce9448 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa6702e89 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd4748063 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x261201a6 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x526521fa 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 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x4e246d2c capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x544cc026 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 0x69a8ebf9 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x6cc5a0da 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 0x72f6b21c capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x77dbcbf6 attach_capi_ctr +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 0x7fc5e5aa 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 0xa949a289 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xac45cbf0 capi20_put_message +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 0xb84a032c capi_ctr_suspend_output +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 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3943bb5f avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4a385363 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4e3adcfe avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5ca1873b b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5ceef57d b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6ea9cdbd b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x81cfb550 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa900eae0 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xad571fad b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb85fea11 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc15b21a5 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcb4302a5 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd9b71469 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdbfa4518 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe8972662 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x14b168e0 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2d4517cf b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x77c0a7ab b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xaaf27ce0 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xaf30986d b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd2724e28 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe0914dec t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe6b4ac96 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf1ef4a40 b1pciv4_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 0x93c291d7 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x97233489 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa6defeb5 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd9c10323 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x3462b5a1 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xd4791285 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 0xe436a849 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 0x04e32376 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x0f2e525b isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x432e5043 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6397550f isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8f359ab7 isac_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x49e0726b register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x603a3f4b isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xe9d81a37 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 0x003b1499 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x018c7deb mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0450c3fd recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0457fc9b mISDN_initbchannel +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 0x1e24a4fa 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 0x2c58bd14 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x389f36e1 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d6866dd mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x55d811dd mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x65fd74ca queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7649039b recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83740f39 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x87f46c38 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8ff26a64 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa8dc4ada recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbb7c3d9f create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbf5dbb74 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2f1b4bf bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd10c44ad mISDN_unregister_device +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 0xd678020e mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe1616330 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xeb7f150c mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfbfcfd8c dchannel_senddata +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 0x41b2d8b0 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 0x6d7dda0f bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x74ad3c5d closure_wait +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 0x8ad863cc closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa3c5c702 bch_bset_fix_invalidated_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa90763dc closure_sub +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 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 0x2e477858 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xd1a258d4 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xf0b1541a dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xf1718fd4 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5da9be50 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6e5c0592 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x99a54528 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x9bb30259 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe23042d8 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe770cfdf dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0xda8abeea raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0848fdd5 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3c7b076f flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3dcfb114 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x428fc220 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4e2faf93 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x57d8de40 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6016c713 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6478c94d flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x698cfca9 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8948952a flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa4eca464 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb263b3fc flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xed23f918 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 0x38819f46 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x4ac9ae8c cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xadbbb290 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 0xf7efb22d cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x15473410 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x263708e8 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x66b7ac03 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x01d7cca4 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0315a2e7 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x09d92365 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a733a93 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c192bbc dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x10c15b3f dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x220bf861 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23a24313 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2615d8d8 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2975b9bd dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3cc1ec2f dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4aeebbc1 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4ff69689 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x50ec2e91 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5294278c dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5ab4496e dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c7962e7 dvb_ca_en50221_init +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 0x77cf3894 dvb_dmxdev_release +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 0x9510a851 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9fe3fe21 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa10e976c dvb_ringbuffer_flush_spinlock_wakeup +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 0xae7eaeb6 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5cce0d1 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc060f146 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3c77f8d dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc9278a72 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd19b88aa dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd9545d39 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd95cd9ca dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe09bd7a7 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe292d7ed dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe33c4e0a dvb_ca_en50221_camready_irq +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 0xeeab1e56 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf23a08e3 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-frontends/af9013 0x77c16a21 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x29548050 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xb4e30422 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x03cb22e7 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x190a04d7 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3e3a0a47 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5f4b0166 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x670c9937 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb8c2c5dd au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbfed96d7 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc92e10ae au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd9095463 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x5945412e au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x8331a06e bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xe0ddb60b cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x1440cc0d cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x2f447ad7 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1442b277 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe9b4adf6 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xce275e5e cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x286df37e cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x8fe32761 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x98a4d2d3 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x37cb27c6 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x022d584c cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xe86e32f8 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xfa3c01e0 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0181349f dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x0b67341a dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x43e62383 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa58f1427 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb75ddb31 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x16442501 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1e53c8c9 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2b6f470c dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x47bc7af9 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x48522bad dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4e1e2108 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4ffa0f7c dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7d8ac4aa dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x83cd411b dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x87b5e83e dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8bb96f2e dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xae7f529d dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbc465a9a dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcce80682 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf4e2c5c7 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x7c6d99f6 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2259d962 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3523ecb1 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x3c16447c dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5215f4eb dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xaf6fd5b6 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xce24917f dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3e7d350e dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xabba6468 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xcff68b36 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd8e4038f dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x46fd60eb dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x996e5d09 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x301ade86 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x461e0ff1 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x99e0bcbf dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xebcddaec dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xff6aa393 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x95463819 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x28758a84 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x59519b18 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xb37b3e2d ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x08146c86 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x9b1527ba ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x11c6a929 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x0311cd11 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xfc8a55be isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x3e9b2763 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x3117724e itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x7cc0cd9f ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xe93ea3ec l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x24b3f37d lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x71d0a84f lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x074b83fd lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xe33a40db lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x4e4669aa lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x44a26080 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd0b01641 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xd27d9182 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x6a3e4a06 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xabe9f6d8 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xadb3339d m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x5af58668 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x5ad2638e mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xab8d2050 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x3af4cc3b mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x60037b82 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xc68d14e4 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x47194c64 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x7d53e4d1 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x0d0f5e99 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xcfad2433 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xc409ed38 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x83e7227f s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xfaee3c58 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x46e47de4 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xcc2b7574 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xab17aed2 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x442c59fb sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x17999b3a sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x2ce2dacb stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x05de0b1b stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x536df3f1 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x62c56690 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x3acb7c77 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x9b777801 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3938bb2c stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x3a618336 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x99d1fa8d stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xe6e408ba stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x285255ea stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x730f598d stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xd8530f2e tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x7095a1ef tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xde3f80d5 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x55387254 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x612dda3c tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf220a70c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x6e11df9f tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x8d67b657 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xaf95f240 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xcc4c41a9 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x5aaacf5b ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xce1496da tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xb3694e2a ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xaa74e0a7 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xf2288f26 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xf5cd8c6a zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xa677f1d1 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x116be0cb flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x28bb6597 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5248e98a flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5d14b464 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9cc71bbc flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xcdac3cd2 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd1afbd74 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x01c778fe bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x05513b68 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3051411e bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa1fe2bc0 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x0356ad28 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 0x9eb03d13 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xa537e144 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2a931fcb dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2b438990 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2c6f53a5 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x42b7c67d read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6657c222 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8a9565b1 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9ab02e25 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd6196437 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf8c4304e write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x10a87d07 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x024ccb7c cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x554850a2 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x7d82b8de cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8d1cc088 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfb221afb cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6483bb11 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 0x3ca73be7 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x48b641d6 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4bcbf662 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x582036bb cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5c17a02b cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x82b08aaa cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe6397b19 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xcc7252a2 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe762655a vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x1e70deac cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x251851ad cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5c48976e cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x896e5d49 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x16b52c47 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x395821b3 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4a85fd13 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6d7e62f6 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa55b0e39 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd1eef0aa cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe7db928d cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1c873bef cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x23ca3752 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25ce9a8b cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x26b8aee5 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x374d4451 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5941f1a9 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x651c1e03 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8737479b cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x93aaac1c cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x974dc877 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9f625976 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb22a81e3 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc81a9ce1 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xda7622c7 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdcf2365d cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xddfab622 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe3f92383 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe4243785 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xed22460a cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf24c52fa cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x386cb0e4 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x45d03516 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x59b4998a ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6acba3fe ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x78231709 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8ee818f0 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x90627357 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9995543c ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9a70aebb ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb6dfd73d ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc2949e74 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd1d6abb6 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd5b9a34d ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe908e355 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xece9599b ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfc34a8c2 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfcf1c34a ivtv_api +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 0x2478f653 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x548ddf24 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x618ade9f saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f8d198c saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8a936229 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9421f26d saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9f44cea4 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa6e38723 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbb0c03c8 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc9729799 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd50fc4ca saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdd91599b saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xee84e361 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x359bdcb7 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x4d3155a2 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x55101025 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7a8fb6eb soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x95c28fb7 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa6b90921 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf220eda8 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 0x192b07bd snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1bd1456d snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x311eca2a snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x84bda2ff snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x9ccae2bf snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd2e65050 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe6aade17 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0a1e1734 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0f509e17 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0fa5a474 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4a2d926a lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x85296e65 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbe58a81c lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc167dda5 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdbf4658c lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9cb58525 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xbce92936 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x54b53353 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x1fe5c161 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4f20e3d2 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x63d6606f fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa5108dca fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x255a8877 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x25da93b9 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x749717a6 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x4cdfa083 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x49ed4810 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x6aac22b0 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x30424b3a qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xb9774d73 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 0x2a14b556 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xf8b3b316 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x5208e681 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x3ac8d04e cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x87b853d3 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x077d53ed dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x130b8142 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2e4a5475 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3ecfdbe7 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x77f93c72 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x913b4567 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa2295180 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc5163cb3 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xef905184 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1bf994ad dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x44421441 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4a8ad525 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6fc73267 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x766f95dd usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd506b390 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfe32adb6 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 0xd4e288db rc_map_af9005_table_size +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0xd6582c16 af9005_rc_decode +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x15a541a2 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x20e8528f dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x281137eb dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3c86ac0c dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5a48990e dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x735f3626 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x85e5bcde dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8f7f08d2 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x92331884 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa676383d 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 0xef83fc53 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x43195ef2 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x512c2055 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x216ff4f5 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x266b6d1d go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x34d30aaa go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x629a5984 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x66309cf4 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7c3cd2e0 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9dd0e275 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb35890cb go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc4f3ff1a go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0842b922 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x149c2cee gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x21103904 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x57ac1cc7 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x97bf59dd gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa1f3231e gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xae4d161a gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xddbfe849 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x5a3083fb tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x9e33d6b3 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xccaa67fc tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x49d25a37 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x62155bfd 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 0x488d69f4 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xbcccf686 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc03a1c5e v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2f4bf918 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x683051c0 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7b37b060 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc3813474 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc4eff6de videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xfb2e4b3e videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x5cf67cf8 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x89c8e029 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x197fe7c0 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x7adb2f48 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8b567d47 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa1a96f67 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xab7e26a7 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xafb77705 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 0x0c70482b vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ca787c9 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f2e7d50 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x13dc49f4 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14b9fe85 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x14e1894b video_device_release +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 0x1cab58e1 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20f6c38f v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22d7e860 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2377f59a v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27a7d262 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x28d4826e video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b6dbab9 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e64718a v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f35e219 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32d281a7 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35600795 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35aaabb0 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39fa5698 v4l2_clk_unregister +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 0x3f8b2926 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43abd7b3 __v4l2_ctrl_s_ctrl_int64 +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 0x4ab80e58 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4d3d3734 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5808bc5b v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59432201 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5e725334 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f2eb694 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x608ae6e3 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6815162b v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68bdf137 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x68dc514a v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b73fe8f v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c4fff23 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6e8a217b v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79cdb6ca v4l2_ctrl_subdev_subscribe_event +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 0x7f1b1ea1 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88bbba2d v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8eef3ee3 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x905b470c video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9127f1a2 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9205b6ae v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9591296d v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x993648fb video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9f61bba3 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf3e2dc1 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf5740c2 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb20d8502 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb26b2815 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7c0c3ce v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb8deeb9d v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf848547 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc3295e2a v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc33dcaf6 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbaf5562 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcc03a3cf v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcef923a2 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4ff4c07 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd72d867a v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb37768b v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc0d2bdf v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd29d1e3 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde908068 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdf4d4678 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe58609ae v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe61cc56c v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe6a1ea0c v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe7a180c4 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe85cf29a v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb5d1395 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeb86a574 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xedc24c41 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee2aaf2a v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf66a5168 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/memstick/core/memstick 0x111aea9f memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x215bf50e memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x26d73712 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2ce11e3d memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3071ac3b memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x37c1b1fd memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7e4068da memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xab772915 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc1ddf2ca memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc4953f8a memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcb5c20cc memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdac8ada8 memstick_register_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 0x1080a3aa mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1149fcb7 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2489f889 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c589acf mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x34b1cd4d mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3835b970 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x40f5890d mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4945ac5e mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x50f0cb7a mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5a8dacf3 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5bea7b11 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61516e1f mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6bb0fee6 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x70e995f4 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7cd5c08a mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x81d275b3 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8c87d338 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8c9078ec mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d86dd6e mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x98282f82 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa01c8fe2 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbaf9419f mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc3133c2 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbf91ac2b mpt_clear_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 0xd486133e mpt_halt_firmware +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 0xe500b938 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf33612fb mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf3a082cc mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xfae5f222 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x015688b1 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x099dfc06 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c1caf2a mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0f2358b6 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x277af861 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x32b3f489 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a5989c4 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4bf06046 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4ecd8465 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x668375fa mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6e1853a8 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6f9f59e2 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x723a0a16 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x756452d3 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a20d1af mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7c45f7b9 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83a8e396 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84c9ca87 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9002b2e2 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0fada0e mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc1762846 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcf7bd2d0 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd961e4a0 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdc44cc78 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdc4b052a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe4a68f01 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeb535d16 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/mfd/dln2 0x3a84ca06 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x52e257d9 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x6a2b0f62 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x374d80c6 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x62a5997c pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4c7f27aa mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x55af26ca mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8332e4a3 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8f64209e mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x93711b07 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa16c46a0 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa748058c mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xac44f9f6 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcfbb7124 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe6cebf19 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xfbc6a4da mc13xxx_irq_free +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 0x283171a7 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x6b50ccf7 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x02ef1aa9 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x48fd09eb wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x9d8d1884 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xafb7a31d wm8994_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x872eb26e ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xfe4e8a9e ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0xd2c54d67 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x0cf20305 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xb3637fc2 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x45007ca6 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xf53eba32 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x2dbf1d72 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x33c5ebfb tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x3776f141 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x45411a96 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x5259a760 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5e085778 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x6935f716 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x9e3a5252 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x9effdf0b tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xc61fdf6c tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd00c8037 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xf00b9119 tifm_map_sg +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x27c8fb9b dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x69ee82ac dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x84366fbe dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xd6a3152b dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x50025b03 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xdaa3f0a5 mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x36dc8da2 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x38f35147 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x71285375 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7c2e40be cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x87e5be2e cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaf605977 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xbacdce55 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x171ce35a register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x549f0ba2 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x8706e3d2 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa042538a unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x0fe57ff1 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x6de29bd6 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x535a7c11 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x5bcc0b15 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xc8f6fb90 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x19e3360f denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0x2a85cce9 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x07c92d28 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x4d989f18 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x68abb075 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x7b209361 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa0d2070b nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa6b627f9 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x314164ae nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x4aad1e0b nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x6506058b nand_bch_init +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 0x908ad327 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x933292d4 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 0x4f7351b4 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x69845880 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x76c6ec9b onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xb03cf207 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2ecc7039 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3b7f0cc2 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x604ed578 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x797722a4 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x997e01d6 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbd3d7b3a arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc98f15b4 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xce4f770c arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xd3652722 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdc526182 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x961e3f4e com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x9802d927 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xad86e7d8 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0318c8c4 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0a3b667c ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x156decd3 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1c468d1d NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5bf64a24 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5eb1470d __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6238580f ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x825986aa ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x857e4710 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xaac1436e ei_open +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x1d08f1a7 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xa1880463 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 0x1ba7e8c1 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2a4234dc t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b08351a cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4c5355b4 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x540b98bb t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5ebb3d76 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6028433a cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x72d80068 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x755f926c cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x99ea6790 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa5906fd9 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc9fe71c8 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xce734667 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xde4cd5b5 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe47283cb cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe9f7b26b t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0185be65 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0507c731 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x09d07c55 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ebfcadc cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x116ce70c cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1ef2743b cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29b50b54 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x29e6980e cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ac06fb0 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2ca5d353 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a8496ba cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x44185d40 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 0x5f90d51b cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64bed69e cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66315dba cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69043386 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7066dad0 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x747b9b47 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x882adfdd cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8fac195d cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa27cf5b3 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa4cacc2c cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa6fb1741 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa775a186 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa8088b49 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb3b397d5 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6160433 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb9bf8b48 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc757ed27 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 0xded1d584 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf6f01ecf cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf850674e cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff04e425 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x1c1fe1c8 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2f8299f6 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5238eef6 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x524128ba vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc80bb150 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe31b9420 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x6843e671 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x843f11af be_roce_unregister_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 0x385bfcd3 hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4b751530 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4e6ef8d2 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x4fd1877d hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xb1266858 hnae_register_notifier +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xceeb8d08 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xdf24adef hnae_unregister_notifier +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0eeb6aa3 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x146b808f mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x176611b0 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20ab3b95 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x236649a8 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2743cd64 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a684dec mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31e34669 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4040deca set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x466ecb57 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4670631d get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ba9aeaa mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bc330e8 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62931bb5 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68322871 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b1b2e34 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d7120a6 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6df4150a mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e5d014d set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x749364e1 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76e7fd83 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f278746 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8db160a6 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f0bb9ed mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x928f4b71 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93f0288a mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98e1b1f1 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6c429f5 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1d72c00 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc44acb6b mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9689fee mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcaa0350c mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc1d03d0 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda26f80e mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe061e111 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea2887eb mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5085876 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfca3f3b4 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x02dba614 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x06a374d1 mlx5_core_query_vendor_id +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 0x125ad593 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1979b9d9 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f3e2cad mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ad2f9f0 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ae80249 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3df07802 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e157e90 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c001df8 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57538559 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ed282c8 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63aeae29 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dd80185 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x725cdff1 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74877b3e mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75ca02f2 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cff7f6c mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b0a8e97 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e1c30f2 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8ed89f71 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92875ac9 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93a6baa8 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9499e829 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1cb2f48 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa86b2d89 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb52bfbc6 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7d422d8 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbdc2159e mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc1406596 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcae1dbef mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf08642c mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0aac69a mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7b18970 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdeaa881d mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf5246f9 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 0xf5ebd8b9 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 0xff3ec43c mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x49ebb47d 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 0x80822927 mlxsw_core_event_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x811b3d08 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x84d95b53 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x8a61c556 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x94c24e88 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa72a5799 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 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 0xffe64e62 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x645fe163 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 0x2e19731d hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xbcccd1ea hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc31720b3 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xcb97bbb7 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xda477f5a hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x030069ff sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0c7e8fe1 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0e30f679 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4a94cf4a sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4ae6332f irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x766bba6c sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8bca70b9 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8ea49854 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcb2c8f86 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd9dfe1a3 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/phy/mdio-bitbang 0x1976e750 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x792f4c8c free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x67c30811 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xd55b0502 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x700a6e8b xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x953bbb17 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xbd08160b xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/vitesse 0x2167d2a6 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3d1f4df4 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4e95a627 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xabc00a59 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x7eb57535 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x12ea8a23 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x2e98eb63 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x2fc89d6e team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x80dbdb3f team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x81591b52 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x934b71df team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x9e0e1cc8 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xa5b86e5c team_mode_register +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6e9f1977 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x8c718284 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc05d5790 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xc2dcfbba cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1cfa6eaa register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2a868f82 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x64d45e4f alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x73a40ce3 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x90a20c6b attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9f7f7331 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbbf41c9a detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcce38377 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd2d1ac79 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd4b82eb3 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xda93bac3 hdlc_open +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x83141369 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3979e408 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3bed0b8d ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x55dce9dc ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6c5521a5 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b9ca03b ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x832fb68c ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8af04503 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa14d2ef0 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa3c99d35 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xac8c76da ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb72f0115 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xff01ba9d dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0460bd75 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x051aa260 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c450b94 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x38f294d0 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x476308ac ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5554acc8 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6044c89d ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x763e94aa ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x79fef8a0 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9f3bf362 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xabcce6ce ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc9bbcdd ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd654ca34 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe59f73bc ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe5a67fdb ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0ba53a6c ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1f53c0d1 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2213d703 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5b55114a ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x77cc2106 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 0x8dc673a4 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 0xa5742e07 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb1a86e2d ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc541c7ce ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcdf0d986 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf996d871 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0765cf81 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0e2cec0c ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0fdc070a ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x232989d0 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3182b9f9 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x373f579b ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x37e55141 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3fa43fb4 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a0b69a5 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6375e48c ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6f1e7bff ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8046153c ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x923e8142 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x925f1ac3 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x942d699a ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa9703d39 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb1d89791 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc187f111 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd8b6d1a6 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe766a5c1 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe9f10ca3 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xea913a36 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7bc0ed3 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0033e041 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03a3bade ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x058c41de ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x066dc264 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09dfbc75 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fde4a8a ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1128b029 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x149d0b94 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x180f3046 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b80fd19 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f8e9126 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fd3bd19 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2074371b ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20b7afe3 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x258094de ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29de2994 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a3aa2a9 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2cf80d1e ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e788890 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f9d8503 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x315d1c38 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31b338db ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32a6c997 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35b2b574 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x382257cc ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x395efb0d ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ad404f9 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3ea486fd ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49cede37 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a3902b7 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d9bef0d ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e6fdd6f ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5220db3a ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52c97230 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5341569a ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53a9da94 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56f1d80e ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b192c33 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f1761cc ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6755fe42 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x684f1976 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69d880b3 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a14ebed ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6a710a17 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70753583 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70a39581 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7124c6dc ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x716fe319 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x733bbd07 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x768b876b ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76a60770 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8016e00f ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x806d589d ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8110ef2e ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88d635f7 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a31c4f3 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8e6d8c3c ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92234ba4 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x944d661e ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x971e373b ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x974ba58d ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa120bf8e ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa451fc38 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6fa02b9 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa72783df ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa72b77f6 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa750b4c1 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xabb7ce92 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf01119a ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb28c6431 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3d78418 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb51824de ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6405584 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb843b154 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc375574c ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3e543f2 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc45fb7a3 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6bdbbeb ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6f6d2ef ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc7e59da1 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc983be2b ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcce5ca2d ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0f6f1c9 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4a23a5a ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4a2ef95 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd60fb878 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6c5e4bf ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbe751f5 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe13e68c9 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe28a51f6 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xea6a4e1d ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec1df2a4 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec28c89e ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee71141b ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf06110be ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf21f2c04 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf2a592fd ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4217eec ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf437d2f3 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4e1c464 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6291c2a ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfabd23c8 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb91b9dd ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb924560 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe5fb3c8 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x60280318 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x9a36e499 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xbcb26c32 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0db4e2f7 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x16fe9eab brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x170ae581 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x45a84501 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x47438005 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x54e94941 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x697c9a4a brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7f2c2559 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x96e60f20 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xac9a553b brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xad02517f 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 0xeae1f0fc brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xf612a0e3 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x06cdae2a hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0765c14f hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x18ad1fd2 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1d8d3b5a hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2ed161c2 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5b1d32f1 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5c050a54 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6562a506 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6cac8210 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6f855bee hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x73cb9def hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7c8fc615 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x803ae859 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x83d72e37 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8e480bfd hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x90c00060 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x917495da hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x945cd65f hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9d763876 hostap_set_hostapd_sta +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 0xb4f0d895 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc714e10f hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcaac4767 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd582440b hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xda65d45d hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe43da5de hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x07f7f01a free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0c8ace60 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0fe15e9e libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2700dd37 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x300845f9 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x39ead089 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3ad50784 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3e3ab299 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x751fada5 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7abab142 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7b3155b3 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xae8be45d libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc699ca23 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcc6f3545 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdbb923a2 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe0638d7d libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe878ebbe libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf0d20185 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf169f2dc libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf2feee97 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfed80049 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x001ba4d8 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01485318 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0193900e il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02524666 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x052dfe9a il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08bd7192 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0e57294a il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x140b4a53 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x151f07b9 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x16c4fea7 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x172b8b43 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d8c8ac3 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x240c878f il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x253dbf9f il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2be94c28 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c3b1037 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d5c1526 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x300dd05b il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39bc63be il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d649fe0 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ef7ec6b il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x407bec43 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40f5ed11 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41eb3ecb il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44c20221 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4846277b il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51a0f39a il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53cd9729 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x53cf6fa7 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54f82be4 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x597a9534 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x599fad97 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x59b1e953 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5acf63b2 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c3a2883 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f20bed5 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6673d848 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66f68173 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68b74766 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6bcb04af il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x707e9473 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72b6ea35 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x738e3c5d il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75f35639 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b5d0c04 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x83c458c4 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8908d167 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8914b266 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8974806f il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89d4f70c il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c35031b il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ecc1404 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9492f98d il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94b5cd4d il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x94e1b28e il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96d39def il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99dd83b6 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9af24291 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b972f75 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9db5b939 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa127b1ff il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2ec962d _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa4311b19 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa79c0c6f il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa79d32a4 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa945c8b3 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabcaaea3 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xadf3dad1 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaeadcd7a il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1a24ffc il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb5c4063a il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb62b336b il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb731adce il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba9ab534 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbead586c il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbedd33fd il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc1ab3400 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc396ea84 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc413ab98 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5f0097f il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc834f23e il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc9618d7a il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf038861 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf651be4 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd0f9cd4b il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd34d2846 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd754ff41 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdcbb7317 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdcfcee23 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xde98f876 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdebde716 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe1f096db il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb450aca il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf21323a8 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf622815a il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfad4aa39 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb3bd209 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xff5ccfcf il_set_rxon_ht +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 0x1037fea3 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1cc94311 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4bb72dfd free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x51170aeb orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5203447c orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x53fcbcae orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x65f2bcf6 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x66d03cdc orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x691f2ab6 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6f1127b2 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7293026f orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x857a1d01 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9b588b1f orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa12222f3 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc84db73a orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdc6af903 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xef64033b hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x683770ea rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0297fc42 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02fb02db rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0fa76efb rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13b618c9 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1513546a rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b9a2a78 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1cb5d08e rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1d0fba75 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24b689a4 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x25c1c63d _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29d49df0 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ec54e18 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x318532a7 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35cacf56 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4023245e rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44bbf37a _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4f39dc1d rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58e97b3a rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x63961efb _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69c9a1c8 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c893757 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7248ae9a rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79a2ebad rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7feb1b19 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8bf627f6 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8f764641 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x93473fb5 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9923c85e _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa5c1e4b4 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xad7ccfbd rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xadc953bc rtl92c_set_fw_rsvdpagepkt +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 0xc5bd9ed6 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8df83df rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd15f0a9b rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2b4e35d rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd482e814 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb509f42 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd9b1640 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebe76a48 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf38dea86 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xff872667 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x1dbff0c2 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x4e62be7d rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x94791871 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb1a3777b rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x0a8073f4 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x977c4123 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc9bced5c rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xceaa2741 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0003ac49 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00fd5c39 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x039e92a7 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 0x2d3178c6 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f449555 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x55c50c09 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5aea8002 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f4fea62 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fd05aa7 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6fea089f rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7139aa04 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72f25aa4 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7977dbe8 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ebe6ab1 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87a7f9a5 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93e97562 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x94057a82 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x95de4400 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 0x9862085d rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9b13a6a5 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0e4e996 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa80eed00 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb07fbba rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbecc64cc rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc3984ffc rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xce6b6ee9 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd41dc360 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe243b397 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x22aed164 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x59eb8be0 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x689df09d wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdfa946b5 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x1dc356a7 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x27da8a44 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x646a5dcc fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x722ae704 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x96230a19 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x0f9e5fa1 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1580421c nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6a3b049b nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x98cdb9a7 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd4136cc7 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3880e152 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa5597d27 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xdfeb0356 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x09f42672 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0f313b17 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x290eefe0 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5bbfaedc ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbbfe108e ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbcae5c16 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xce9ff9f7 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdb920103 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf183b1ff ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf28f6aa6 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfdb1817e st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0baecf1f st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2453d3ca st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x33fb6da7 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3c481632 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3e493589 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x879c6ac4 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa43178b4 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xac5c250a st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb034e4af st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb1d162d0 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb4144172 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc08ddcfe st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc358e395 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xcd2b2c4b st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe0c3f374 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe2b26c17 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xeec88ec6 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8d5f8d9 st21nfca_se_deinit +EXPORT_SYMBOL drivers/ntb/ntb 0x02243a4d ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x0ef9bf59 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x2b994ecf __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xb03d20c6 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xdb4eff9e ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0xf218c6af ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xf6ccc009 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xf89eb62f ntb_unregister_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x22fdbcdc nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xaf6e0a5c nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x875a551e devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x023dc3d2 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x0440aeac parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x059b3024 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x09bb982d parport_write +EXPORT_SYMBOL drivers/parport/parport 0x14f91ca6 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x195a0abe parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x1beb3911 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x231ad081 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x2724846c parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x272a0bfb parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x3474adee parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x36551d9a parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x566a9520 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5ebab75b parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x610890c1 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x625abcb2 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x68fd2166 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x69b1b7a6 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x7f83822c parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x8bbeb4fe parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x9142bc77 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x97bae32d parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x9d45ef33 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x9d91670b __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x9db8ed40 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xa41a8157 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xa5af501b parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xb1c58db7 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xb38b5f2e parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xb5be8231 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xb7bac062 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xe04bb75f parport_del_port +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x4c743886 iproc_pcie_remove +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0xf68d84d1 iproc_pcie_setup +EXPORT_SYMBOL drivers/pps/pps_core 0x94ecd25f pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xa4819405 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xbd81b97e pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xdda86f6c pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x4bdc0df2 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x8073b633 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x9ce12317 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xa5a60ff6 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xf23904b2 ptp_clock_index +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x02e4c189 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x28d1a2c7 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3d1a9dcd rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x40bd51f8 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4e381e31 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x822183f4 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb44b326b rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc35017e1 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd00b060f rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xdbd51243 rproc_del +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x98fb9f0d ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x08513f2b scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x0da86e26 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3ae4795d scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9c7e7fe3 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0fe67c09 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x220774bb fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2a255f2b fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ad15552 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x462a1014 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x5045bdee fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x674795b7 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7dfe4c2a fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x81fabaa6 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x86d21eef fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa779755b fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd8b4c7d5 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02d1724c fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c93dcb3 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14603813 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18b28d85 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ac984b0 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1aed5c66 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23c21cb4 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2838fe9c fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2cb15677 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2de55c43 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x356874e0 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x382229dd fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3fb96b34 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ffdf5c3 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48f85d53 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d4e4c02 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55b299b6 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5bcbfec7 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ca66bf4 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x62f50c89 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6306df83 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x631db08d fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6428c4f5 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6828c38d fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75e31000 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7c7c85b6 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e1c6c22 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bd1d1d0 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a51c8fd fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9e4e98f fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xac2e33bf fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad6bd37e fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb6306d81 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc6cc25bc fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc79ee283 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc871cb76 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9575fa4 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3f987ae fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe52fcbcf fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed218652 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xefd74364 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2df471e fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfa11d826 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x44d50c10 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x47d22a9e sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x96eeb2ff sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xc2604d0f 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 0xc47775cd mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x00e47f34 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0675f7cb osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x09186795 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x149ca8b6 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1628de1e osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1e40191b osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2036bbe2 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x341c8911 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x388b473c osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x38fdba3f osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3a9467d6 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40977ef8 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f1c8f97 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5154314c osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x52e7ed6a osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x53aa664c osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5e303cef osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x60f8e350 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x61d1cabf osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x640e7df3 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x801c0108 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8449a641 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9295fa51 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x953275bb osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9910f62e osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa8010aa6 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad976e5d osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb29ea209 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc0f2fd9c osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc3ac3174 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xce52e3cc osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf9a27d0 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd1187105 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda5c3383 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe29b2fa0 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf87de503 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/osd 0x1a6c2574 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5793fc0f osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa34210a3 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa9c41ac8 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbd6236d6 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xff4524f9 osduld_device_info +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1bf9d4ba qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1e9c0264 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x205b71f6 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x26f3ba65 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x58643707 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x68fcea52 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x731923f5 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x80e86d69 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x84cdf650 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xbadbc818 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe2e66ca3 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf435ab91 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/raid_class 0x4de4fbfd raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x69a74728 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xaf300226 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x01cb9193 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1da1074b fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x213e9025 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x385f5d06 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6c17777a fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x77889e5d fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa57b6eb5 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb149f683 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb419bb88 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xbb956069 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd33e35e2 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf711ec24 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfe629fad fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0789baab sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0833e4d0 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1b4ae413 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3955f053 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x40ab226e sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x421f50fb sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5101be8a sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5353ec8d sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6b31e82b scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ca8d1f1 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x74fda3bd sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75bbd83a sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75d04846 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7deb50ad sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f34f152 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8689d5a5 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x928deeb3 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa997dd66 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xae68015a sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2583b6a scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb48d0a5 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbbb750ad sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc382b32f sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc41da30a sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf9353f6 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdd2efd21 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf91dcfb7 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb34f3d4 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x36fe8dab spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x73f3cb31 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb9239def spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xbbae620a spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xed6fb556 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x17fc5409 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x54d06664 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa8a2e98d srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xfe156b9e srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1186f8ff ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2c6d9166 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x4e13d853 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x51ffbb41 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8a25498c ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbbd2f7e2 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xbfcc6309 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/soc/qcom/smd 0x69b5b5b7 qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0x7ce3b1e3 qcom_smd_driver_unregister +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 0x11b96b0f ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x2813b5d7 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x2c629ea9 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x3ae8e15b ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x3f4ab48b ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x724d9ba5 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x726b88b7 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x74a5a452 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x803371e7 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x91df5314 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xa2cebad0 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xa5291d06 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xb712d49c ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc78cf338 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xcda93360 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe01ae052 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xe1e2b8fa ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xe78bb7ff ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf2cca435 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xfd325c50 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10793efd fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10981a2d fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x12f9b255 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x161248c8 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2c7bcd8b fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x410a14cf fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47ad83c7 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x52ad3aa7 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x77a9a4b0 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x78c27e19 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x864f96ec fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8b1cee1a fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8cb5526d fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8eaea70a fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbc41bdfd fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc1e04066 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd2abeccc fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda2eb13a fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe6d8a86c fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeadf5432 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeb83f68e fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf10c5c37 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf8737ffb fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfcf4eb95 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x21aa62ff dpbp_enable +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x3fbe8340 dprc_get_obj_count +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x482ff8e5 dpbp_close +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x4ca741b0 dpbp_disable +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x554560c3 dpbp_get_attributes +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x59f92742 dprc_set_obj_label +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x8c881dbd dprc_open +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0x92f03dd8 dprc_get_obj_desc +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xa91e7503 dpbp_open +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xaa811e6e dprc_get_obj_irq +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xc5d3061f dprc_set_obj_irq +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xe2408519 dprc_get_res_count +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xf1494685 dprc_get_obj +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xf3e40424 dprc_get_res_ids +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xf475e511 dprc_get_obj_region +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xfd9456ba mc_send_command +EXPORT_SYMBOL drivers/staging/fsl-mc/bus/mc-bus-driver 0xff484141 dprc_close +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x45a594f7 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x5b43ff23 fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xafeea332 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x0bea93d7 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x737da037 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x90ba2397 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xfc350491 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x3e082fac ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe0b97396 ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x4a29fbf3 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x9fa505cb most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0390f93b rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1368afb5 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1af9ea7c rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b37f442 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c85b3ac rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d7f9f91 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1edc1d31 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23ac7910 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25d004cd rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27a17a8f rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x296086e0 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2afa6197 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3398e341 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3cf2728b rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d4290c9 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3dae6d8c rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f2d1a07 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x45e29e97 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x489dad21 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5c0da525 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5cae5944 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x61c37770 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x666af10c rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6a1a79b9 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c2887a5 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6ff7ef29 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x74557813 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x77569db3 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x782926db rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90a468c8 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x935b2269 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x937b0044 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9487addb rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae53f08a rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf2abfab notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb235ccfe rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbef9ba5c rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3ac6aec rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5c740aa rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xccc6ec1b rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd8fb2b9 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xceac580c rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0c24bd1 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1a60523 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe48abb84 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe573a648 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe6accec4 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf6a72406 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf888a3cf rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfd95bac2 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x03aa36d4 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08834118 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0dc6c434 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0fa1957b ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23f311b6 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25a7de9e HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27843189 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2c87ba0c ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2e471afb ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31ddcbe7 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a9c63cc ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40d3bb16 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4137ac34 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4206e219 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x44386dc9 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x489a1738 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4cd9754a notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4fcc77d5 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x51b08692 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5322a09e ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57fec275 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x59d7ae15 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f869bc2 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61e11c1d Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62e623b3 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x68aeca62 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70cdc6ec ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a7c90e5 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c13129e IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ed2f715 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fca0d28 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x82b4f39e ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8dee744e ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x915a7a8a ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94d34c12 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96b41d5d ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9fc5d50e ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa70b35c3 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb91bdf6b ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc5099c6 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc06a2469 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc85079f7 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc019d46 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2c0a94f ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd55d4117 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd93de7df ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdbbdc7aa ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe41b4451 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe906eb16 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed3b8f7f ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf63198b4 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf994fada ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc98772e ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03162f39 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b271e31 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1b1d14ae iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1bc41790 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x21b1d9eb iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x289f3cb7 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x337b7cdf iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x356cdf34 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x378c3aff iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x595a8b50 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x680cc343 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6f945e55 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7b1334ce iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f2064b5 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8fdda647 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x909929c3 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9203372d iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3f3604e iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5288706 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae5082eb iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb67f01d4 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb7102d6a iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbb91ef46 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1d458f9 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcb323b60 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe5e54908 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf23ff8dc iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf4da38ba iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x05516d2a spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x0754ce01 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a49b48e transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x0eb9a4d6 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x116aa864 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b31625b transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b349e70 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c6501a9 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x234810a1 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x25c16d60 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x25f1326e target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x294380cf core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x3460be66 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x34be4a39 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x3d393aab target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fe790e9 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x49e23e29 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4b7b04bd target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cb36cef core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x543b3370 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x55eac28c core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x5bd743a5 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x5d01b3ad passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e7cdbe9 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f45058e core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x639a6579 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x68811c60 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x68fd044d sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x6b38d1a2 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d4e560f transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x7397f6c3 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x75cd5e11 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x78ff9637 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x84d6cc31 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d437996 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x920a414a transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x97007491 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e8ac092 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xa334ec5c spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa43976a3 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xa43e7d89 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4717ed6 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xa67635b8 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9d441fd core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0e6f374 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7053687 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb79a1f80 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8019aa3 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8cb5b89 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8ffdbc0 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xbac3e7c3 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xc16cfb3c transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xc34d4fe5 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc494634e core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc503a239 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xc696d37b spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8b7b41f target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9d3972e sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdf504fe target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0308ab2 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9c05a7f target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb74b3e6 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xe757b9ac sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xe78e984c target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8baba16 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe955a7a1 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xef2af7c3 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0a01f7e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd5c864c transport_alloc_session_tags +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xe09e6e88 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x9be7ad7c usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x8c8ce7fe sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x17744036 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2424c7bc usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x276cce00 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x306c1d00 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3b2b655e usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8745c764 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x94ba3e01 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa79aa48b usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca21ab53 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd368bf7c usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf3fc25d4 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xf69baed5 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x4d1cf631 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x9b2ab8b5 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 0x1e133501 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x2e38c62e lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x689148f4 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa396376e 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 0x54902ca3 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 0x83226515 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb5fca1f8 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 0xda67efff svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xdc8929f3 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xddac8e55 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe1f24c18 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/syscopyarea 0xbd7adc71 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x92886a9b sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x7cd4f78a 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 0xd4537bb5 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0x19e9da01 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 0x2136110f matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x7c2d1fcf g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xde3707da matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1f84e17d matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x24f3638f DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x39e553db matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xc9a4a263 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xc3720b3e matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x9b21a117 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x36daa2f0 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x71ef926a matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xacac1d94 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb3585603 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x86de6003 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xc839c71a matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0e73e419 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x65e51b8a matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x974949e1 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc8f8b08c matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe6ea73fb matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x2d5aa200 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 0x3f171f9b w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6990a03d w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x7f00be34 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xdf2198f7 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x4bcc041a w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xfe679591 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x1e1ad644 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x211e5d83 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x4b76e081 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x8bb9fd41 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xde663d3a w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe1013ea1 w1_add_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x10308adb config_group_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x13b81491 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x2a9362d4 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x2de311dc configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x36c87d3b config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x3799f715 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x59da897d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x661a940a configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x6bddcff4 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x7ca2254f configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x9cc0ca95 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xaace2e5f configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xc65ed1cd config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xcedb4fc8 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xe39c9a98 config_item_init_type_name +EXPORT_SYMBOL fs/exofs/libore 0x1dc4eeb2 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x23bfd009 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x3b6479e9 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x41e0d571 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x663f5641 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x8d6c360d ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x8f0d85a1 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x9ac5a3df ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xdf119d8f ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xf20b10de ore_read +EXPORT_SYMBOL fs/fscache/fscache 0x0230ac59 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x0513a912 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1d2f55bf fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x3a0606fb fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x3c539d76 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x3fd04f7a __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x409eec9a __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x4dbe6c59 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x5b3b9e49 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6839caf9 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x6a8e40c4 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6ccd1371 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6d450f39 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7f8e4d0d fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x841510b7 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x8486b42c fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x8885f28f __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x895c8026 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x8cad9695 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x8ee50435 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x8f848743 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x93822627 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x93986cfd __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x95deb0a8 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x9abb6c08 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x9b2f48bf fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x9dbdd7b3 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x9feb21fb fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb51859b9 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xbe3694a5 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xcba8d4bc __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xcc7628f9 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0xcf0c5161 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe155feb8 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xe7ceae4c __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xe95224be fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xf0415d76 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xf27979ba __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xf52584eb __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfa1d6218 fscache_io_error +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x38b21af0 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4194c4c7 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x5e4296ff qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x61831a67 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xd069b05c 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 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 0x7f2f075b lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x9134feb7 lc_get +EXPORT_SYMBOL lib/lru_cache 0xb5ad845f 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 0x2fe4654f lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x44c54803 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xe8af4ac5 lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0x6aa040b5 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xe4859127 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x8cd5afba destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xd71195b5 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x1920c369 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xd2fd8e51 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x05349632 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x0cccb9fc p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x0f0c0f70 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x121886c3 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x1f5a9be2 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x2f4c7538 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x35ed4c41 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x3a8ead4d 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 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4644ab41 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x4f567d61 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x587cd205 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x606df6d7 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x6266be6e p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6304fb9c p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x64a366d9 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x65db6f68 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x666fcc5d p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x6b2f6ff5 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x6c40b1e5 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x6d72d2e4 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x6e2508d7 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x736c02f1 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x807628cc p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x82ba282f p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x938b06a9 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x970af7e2 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xba2c0084 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xbca3b97f p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xbf9c4012 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc645d937 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc73a2908 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xc759020a p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xd1fe96cd v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xd2f49268 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xd3a220fe p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd3bb647a p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xdd946103 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe58efdfe p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xe8885772 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xea2b27cd p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xeced17f0 p9_client_symlink +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 0x0f1293fe atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x50b4cea9 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xf732378c aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xf8b071ff alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x089651d4 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x0d251b22 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x34d41a1a atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x3d5d2bfb atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x3e18f10a atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x6168183f vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x6784e2ef vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x690be3c0 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x7508a93d atm_charge +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xd546193e vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xde814ec7 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf5bfa4f3 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf90e96e1 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xfac5ae25 vcc_sklist_lock +EXPORT_SYMBOL net/ax25/ax25 0x0373a5f9 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x1f560a90 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x20eafac2 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 0x621e16cb ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x6f77c314 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 0xaed6a2df ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0xb3468cbc ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xeb1ca21c ax25_send_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x00e85be4 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03a5be5e bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x04c54943 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b8b59af l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1accbe7b bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fdb9e8f hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x215aed60 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2d08b336 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2de4623d hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f316a06 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x339658df bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37e8e7f9 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3abfa4ce hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3fbf24ad __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4938bd10 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x60e25327 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x69ea3291 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x816987e7 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8bf10e8a 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 0x93ac36f0 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9643f1a0 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9d5ebacb bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f363a60 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xad574da9 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaf605340 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb2e72ff7 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb3be77dc bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb3d5c0f0 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5b354db hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfe76505 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc97ac644 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9dac9a4 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xce77402f hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd2c8e09e hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb4b5449 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0c22d4f bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3a781c4 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea878469 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb8747c6 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf2fbdcb9 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfc18e5a0 l2cap_unregister_user +EXPORT_SYMBOL net/bridge/bridge 0xd7970e73 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x0fa0d835 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x24ea0787 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xffdebf26 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 0x6aa86f9c caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x78225116 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x91c80131 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9aa975b2 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xae57c65c caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x2fbecef2 can_rx_register +EXPORT_SYMBOL net/can/can 0x32db2808 can_ioctl +EXPORT_SYMBOL net/can/can 0x7160a1c7 can_proto_register +EXPORT_SYMBOL net/can/can 0x7758ac06 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xc9784259 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xd0403911 can_send +EXPORT_SYMBOL net/ceph/libceph 0x039362a4 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x03dff497 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x0626247c ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0bd84385 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x0cfc9f5d ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x13af3131 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x14137682 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x16105323 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x19cb3b92 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x1cdb60d3 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21359122 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x24619c69 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x29b257cc ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x32094273 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x35eeb759 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x383403eb osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3dc142c3 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3de2aacc ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40006dce ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x40468b11 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 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x4505c0ec ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4bbb95f8 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x4fae6795 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x50059ea2 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x5196d057 ceph_osdc_new_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 0x5813b378 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x582e6838 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x5832941f osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x59171873 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x607f3ef2 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x62fb0520 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x66d83060 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x679e0100 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x68ce2376 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x698446a8 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x6a90c2a7 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6db8b13d __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6eac6b97 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x71b0f24f ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x743ab618 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7683fe95 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x7d3b6648 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x85f4fd43 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x86c118c3 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x8bcb8f74 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x8d38be6f ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x8df84049 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x9280614b ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x9628b5ec ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x97df55ed ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x98014891 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x986cee0b ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9e113f2a ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x9e3698e1 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xad20fd7d ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae71721a ceph_put_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 0xba640b3d ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xbc6fb355 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xc05081c0 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xc1a42e0f ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xc396d230 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc3c4ea35 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 0xc9444121 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcd55249b ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xce7694c9 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd3e405d8 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xd4ba1da0 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xd4cb954b ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd4dc3f9e ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xd4f28b3c ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xd5bd216d ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xd6a1baff osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xde3b38b3 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xde9c4dfc ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xe168aff0 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe755857d osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xe93c42b6 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xe96dcff3 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf3a0812f osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xf851a7c1 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xfb0008be ceph_con_open +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x16cd42bd dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb0134307 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x049466ff wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x17c363ed wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x74f3113a wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb61bb1ef wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe9803f05 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf93af860 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x9cc3acc0 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xe3f1e2be gue_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2feeb740 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x36992c60 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x39aa581f ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3ecd0f9c ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x63d8689a ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xeee3e911 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x4750187f arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf29d5807 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf650e1e9 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3097a6ad ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3f1c8cd9 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xe673a681 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x1bdebfd9 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xd7209bda xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x554e4d45 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2f8fde73 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x379337cb ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x853cb4a6 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x99bf44e5 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x61e0718a ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x94029d5c ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd55b791b ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x2f412d5f xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x3b292e80 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5aa9d003 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x67d7ff2e xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1822d06c ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7c761b92 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x965fc1c2 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa001502e ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc464bd87 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdf101e27 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xe885cdb7 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf0cd6a0f ircomm_connect_response +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 0x13d11dd5 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x1a9f11b6 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x1e3301d5 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x2a17732a hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x2f6548d4 irttp_connect_response +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 0x4f7bd984 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x4f976f75 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x54f47023 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x56b99f6a hashbin_new +EXPORT_SYMBOL net/irda/irda 0x5ada35a0 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x62abe4a9 irlap_close +EXPORT_SYMBOL net/irda/irda 0x68175fc9 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x6b043eba irda_init_max_qos_capabilies +EXPORT_SYMBOL net/irda/irda 0x6b7f50b3 hashbin_find +EXPORT_SYMBOL net/irda/irda 0x6bd04be0 iriap_close +EXPORT_SYMBOL net/irda/irda 0x7042bc54 irlmp_register_client +EXPORT_SYMBOL net/irda/irda 0x711efc5e irttp_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 0x7c1ad5a5 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x8866a969 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 0x9516f690 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x9b2dae32 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xa0b62455 iriap_open +EXPORT_SYMBOL net/irda/irda 0xa77b9ae5 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xaad2d90a irias_find_object +EXPORT_SYMBOL net/irda/irda 0xaec635e4 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xb270ed33 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 0xbdd70f97 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xbe40ace9 irlmp_discovery_request +EXPORT_SYMBOL net/irda/irda 0xc6299275 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0xcea0dc3a irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xd0721711 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xd22e8861 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xd512d861 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xd7702e20 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xdbd05e76 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xdd988ce6 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xde2f32af irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe58ba397 hashbin_get_next +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 0xfefd4800 irlmp_connect_request +EXPORT_SYMBOL net/l2tp/l2tp_core 0x13a81f31 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x33ade830 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x057f7221 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x09738f88 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x0f8ea15c lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x1b795e7f lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x220682d3 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x7033db70 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x8c15fda1 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xbaea56c6 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x0f3d72cc llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x1de00e4c llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4747d093 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x7740c63c llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xd09fe328 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xe7421e30 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xfca44713 llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x04a9eddd ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0e974670 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x0ecba2f7 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x0ed00a19 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x104f5a2b ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x13901868 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x13e94cca ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x15afc727 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x16da969b ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x1782e7ca ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x18de40a5 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x1a7fd896 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x1b6e2db4 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x1fa64b00 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x29c2c388 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2d663703 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x2dd17bb5 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x30a87b83 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x33080d73 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x3567cf31 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3983cb21 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x3df46285 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x43abcc47 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x43c3bb74 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x458bca4c ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x45dc021e ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x4835a841 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4b145152 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4dd71df6 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x4e0d9027 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x533d2fc4 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x539c4970 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x547d2d3e ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x5be4ab39 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x5ec22450 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x66058956 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x68fc8a8e __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x6934057d ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x6dbda75b ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x6fd04c59 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x720cb100 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x7375d513 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x7799b6e7 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7a4b469f ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x81185b71 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x8166b310 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x8218f805 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8248b4fc ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x86adf0b9 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x888bb695 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x923c7e0f ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x946a5de6 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x955e3f04 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x96e6530b ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x98901ca5 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x9b302ad3 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x9f088c26 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa1d358d5 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xa2657f2c ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xafb5b474 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xb4ab10a5 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0xba44ca1c ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xbad8deee ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xc3ee3a78 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc3f056b9 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc68adb45 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xca3f5d9d ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xcd30f585 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xd4f982ae ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdbf663dd ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xe11c1e9a ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xe8483e22 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xeedb79b6 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xf1be63ed ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf336e24c ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xf44b04b5 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xf6c2416b ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xfe5518e7 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac802154/mac802154 0x79671b28 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x86434f13 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x9577122f ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xada4b143 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xd441fcc5 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xdba286da ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe4ee510e ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfebc39fe ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1178062e register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x173d4f2c unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1971ae08 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1c9ec883 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2256bdc7 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2bb16be6 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5c7f0017 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x87f77eae ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8bc92f84 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa27310a7 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xaf02efe9 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbede172f ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd954c96e register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdfea160e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x0d13a6b7 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x26c54e7a nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x71cea900 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x032e3bdd nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x1bd30c64 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x9ae43cd1 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc38ac3f0 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xd1139451 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xfba2ce44 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x3dfd6e30 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x525824b4 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x63ae3a7d xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x6ff3df2d xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x8d5c752e xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9d53f693 xt_register_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 0xc4a27293 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe0fae7ed xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xf1f5c94f xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xf2c8b9fb xt_unregister_match +EXPORT_SYMBOL net/nfc/hci/hci 0x00883fca nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2455fd05 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2a1df8fb nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x2ce92fe3 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x37537254 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x3d02f6fa nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x472071c7 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x4ec147a9 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x659875c9 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x68d76ccd nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x9168ecf5 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x9d59de50 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xa9eaa43e nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb646d75b nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xca166ece nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0xcc793758 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xdbcb9fca nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xe600181f nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xe72568e4 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xf7aa062d nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf94d6a61 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/nci/nci 0x04f133b9 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x0e4cd942 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x10505405 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x18e95ef4 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x1ca76275 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x273fe1b6 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x3354ebd7 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x39fe7a7d nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3ac0630c nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x3d296466 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3dcf41c1 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x523204af nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x52eed23e nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0x62cdea82 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa1e7b7db nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xa635fd45 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xa9a3b806 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xb53eecd3 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbb9e41cf nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xc2eceba4 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc5ff1454 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xcc0887e3 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xcdb1b105 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xd67ede5d nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xd84bc4fa nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0xd86c1d1e nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xd92176de nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xe3c8deca nci_core_conn_create +EXPORT_SYMBOL net/nfc/nfc 0x01876655 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x2fc8f84b nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x3bcc6d6d nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x3be8f60c nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x5e762991 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x65f507ba nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x6b462009 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x72910f54 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x95929182 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x982d7849 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xa213eac9 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xba3f316d nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xc2fd7e3b nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xc4e0cf5d nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xc4fb3839 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xd66fddfe __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xe3b73750 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xe57cfbb9 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xe8839627 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xe8cce4ad nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xeb4a371d nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xfa45fb2b nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xfec63aa7 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xff3443f6 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc_digital 0x1f98b7a3 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2579ed93 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xacb2740b nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf2b5fa35 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x3670a158 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x49ed0520 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x837ad27a phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xa40fe401 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xa7ce8644 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xb22463be phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xf298f6f1 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xf7efed72 pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x02c28004 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0f8e4933 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x20794e8a key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x226b4ec4 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x250999cc rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x420f3ca9 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x51321772 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5ba90928 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6f5ed22e rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x71780892 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x78494caa rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8495524c rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8f41f3eb rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9e62e6d8 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc202c7d3 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/sctp/sctp 0x1b6f22f0 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe829814c gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf760fbec gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf7ff904e gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x03809240 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x116440ff xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x4a16b890 xdr_truncate_encode +EXPORT_SYMBOL net/wimax/wimax 0x11dd7b55 wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0x93bca46c wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x01d9017e ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x062ece72 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x091f9a6d cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0f26b23c wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x18b2e6d5 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1f197ae6 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x2118a28f __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x26fb4d7c cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x27ba6f47 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x29baf22a cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x29c9f01d cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x2af6c919 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2be8761d cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x2cb7b2fb cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x2dcf0a4c cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x355a0bb0 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 0x4621909c cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x4779df39 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x484b23cb cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x4862769e cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x49474264 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4b1c9e34 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x4c9017e4 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x53a46007 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x53fe3074 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x5636f687 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x5649a9ce __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x571f9596 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x587a185a ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x66e7b89d 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 0x702bca2c cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x70f887d2 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x768dcb82 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x78af6efe cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x79b89353 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f585750 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7f651a6d cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x873013dc cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x893811ce cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x89aa2292 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b4de4eb cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x8b7b2e9f cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x8f6910ce cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x948bf645 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x99a4ecb8 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x9ab5039e cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9ac7d027 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x9b205a81 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xa02e3440 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xa082429c ieee80211_data_to_8023 +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 0xa2fd389a cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xa7b14f0e wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xa822cc24 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xa86c7bd2 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xa9043573 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xafa6d343 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xb72ab21e cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xbb6fe47f cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xbcc06499 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xbefefa42 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc362249a cfg80211_inform_bss_data +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 0xd0b04769 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xd325f6dd cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xd3382aa7 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0xd3a3dc4e cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd77fd7e3 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xd7dd6ad3 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc9370c5 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xdfdabbf3 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe192e7c6 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xe3e65b10 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xe52fc826 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xe55f6dae cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe72f0546 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xea3d40d1 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xea8215ca cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xecd692b6 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xef3d7715 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xefc81e91 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xf410f7aa cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xf719d78b cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfc7407c8 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x3564befa lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x7d4f3dff lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x839d762a lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x9fcd869d lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xa737723f lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xe38c90c1 lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0xa9c6332c ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x98e9f7fa snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x0afd1ac3 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 0x8afc159a 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 0xe331aebf 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 0xe9e6aa09 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 0xeea4cf19 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 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 0xc591392b snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0ac63e97 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x0b269ae1 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x10c1a6a8 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x16c94a60 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL sound/core/snd 0x1e5df1df snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x20d1f286 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x2164b10f snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x239dea91 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2a497312 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2d3f07e8 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x2ddad966 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3e8ad7af snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x4633dd71 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4bcdb89f snd_device_free +EXPORT_SYMBOL sound/core/snd 0x588ebf71 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x5b105425 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x5bdc356c snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x5c75d3e0 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x5eeeac90 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x5f88f0a6 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x70706dc4 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x720b307f snd_card_register +EXPORT_SYMBOL sound/core/snd 0x7502cafd snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x796ec130 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x7b777a2d snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x7ce51cdb snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x7de766cf snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x84e3a2ef snd_card_new +EXPORT_SYMBOL sound/core/snd 0x861eed93 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9433aec9 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x986f4619 snd_power_wait +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 0xa391e75f snd_component_add +EXPORT_SYMBOL sound/core/snd 0xa966a9ad snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb5ac5d32 snd_cards +EXPORT_SYMBOL sound/core/snd 0xb7358393 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xc8af34f1 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xc96e8f2d snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xca902789 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xcac7968d snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xcc2ac353 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xd13117f9 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xd1ec02d9 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xd5740270 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xeb8457fe snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xf481cbbe snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xf6863fb0 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xf69517ca snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xfb4b0e97 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x57aa86cc snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x0305bceb 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 0x17ea3474 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x1b4fe17b snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1d7655dd snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x1f2a3c57 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x307a883c snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x3086ecde snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x3571c650 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 0x461801e6 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x4af8a944 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0x4ba7f2ea snd_pcm_stop +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 0x585cc528 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5d09cefb snd_pcm_set_ops +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 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x6fb4771a snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x72226113 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x761d5ac7 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x776ab534 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x79843668 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x857ab290 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x9343ed2e snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x93c1d6d1 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x95c03fc3 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x9c08fa07 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xa5425ef6 snd_pcm_limit_hw_rates +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 0xaf07100a snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xb04a9f0a snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xb156b74c snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb55318fb snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xba351388 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xc196e8e1 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xc32528dd snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0xc604ba2b snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xc6f8d799 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xce1eee8a snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd074d2a8 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xd278c9e9 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd34bdb0c snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xdba0f09d snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xe3c7be6e snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xec24c6bf snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0xf001b842 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xf1d4c847 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xf76ccf5b snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xf7c584ba snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xfa045a17 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-pcm 0xffb089c4 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-rawmidi 0x06dfbd2b snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x120f88ab snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1b4a19cc snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1c1e1a6e snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2baef93e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2e0a0866 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x48a4fe09 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x48c8ed7e __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x51502885 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6003e0f0 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x93e7891c snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x984ed58a snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9a9de511 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa71da82e snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb647ad4e snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbbd073a2 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbcde06ca __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc745852a snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdf92525a snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-timer 0x1cb3d2e0 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x2f0fb595 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x361be6f2 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x44d6b02c snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x52060a4b snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x5f853c43 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x6d264c17 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x816320ac snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x881cdcdd snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xc0b0e524 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xf236cbd8 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xfaa789ac snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xfd788876 snd_timer_notify +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x2ef175cf 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 0x03534919 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1bedf7e1 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2f50ea16 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x64e4c0cc snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x82d7fcbf snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x90971148 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9426afc4 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x987ec061 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf7bc3a98 snd_opl3_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0cc585ac snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0fda3044 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 0x323b879a snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6626c4b6 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x90ca5ffa snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa1082a23 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd7f1b2da snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe0200056 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf943fcd6 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f83cf0c amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x16fe7a8b cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ee972b4 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1faf657c snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x278106a5 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x28db492d amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x363b6094 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3d713567 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x438df6ee amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x496679b3 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4ad416d7 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4f41e41d cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x55cc65e7 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x602861eb cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66862e06 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x672f24be fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6b5b3ef4 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x70be8ff9 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x79f83afb amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x93f0ae4d avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x97f5889a fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa132ffa4 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa38ecaa9 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb402b7aa fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd0e6d3a0 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd91d4180 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdcc62db3 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xde255448 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xde2ccccb amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe416d130 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9b8c421 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfea55d66 snd_fw_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xafada7b8 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xd6a69cd3 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x246024df snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x427b2708 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5bce15d4 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7bc6a394 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x87e023b2 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9fb0d919 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa8fc6feb snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd6d3f0d6 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x101951eb snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2148673e snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xca47258a snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xfaa250bd snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x7e301fb1 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x9375d082 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0863a349 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x710ce610 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x87e999c9 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9f1bd3c7 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdeadfd81 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xec9ff3f1 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-i2c 0x13ef78cf snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2410b94f snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x265026f4 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x6d2e6b91 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe81a6a54 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf140d384 snd_i2c_probeaddr +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x03293bf4 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0dad146c snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x111640ac snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x17693c42 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2e4f76a7 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3b3fe03d snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3d31777b snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x404cbd66 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7693ab72 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa8daa67b snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad624d00 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc38243d1 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdc0fcf36 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdeba70dc snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xee3a62a4 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf1da1150 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfdcd4916 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x121bd3f2 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1a115a36 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3f4f90a4 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4a02920f snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x53ae312b snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8377b045 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x910601fb snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd3ea4665 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf8787fb3 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x00958aa9 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x98fdef84 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xf9868335 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1382e36c oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x24540335 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x36825ff2 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x49619ea1 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x580e020a oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c333142 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6202f9fc oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6eb07f1d oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x76921eff oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x82d1654d oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8c481ec5 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8d710c03 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9233e6ed oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa2910c2c oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa8eb7e13 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc1db6674 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd8cfea66 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe3172f02 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf07dc733 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf8b77679 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfd982f41 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0cff7c34 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1d776019 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x2417dd8c snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x3d455981 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x6e2eaf91 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x014d59c2 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x0d69db7a tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0xd3c08228 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x23858d05 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x2b3ce3da register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x31e6ccf2 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xb9946f52 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe1c1f838 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xf02bb10b sound_class +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x23bb127e snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2498b372 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x55ac6fac 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 0x7d59cc9f snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9ea49a73 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd2368783 snd_emux_register +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0bb3641c snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x390cf032 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x490698b8 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x778f7a7a snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x81b899a6 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x860992b0 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa284768b snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xdb1fc7ab __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 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xdbcc82dc snd_usbmidi_create +EXPORT_SYMBOL vmlinux 0x00011513 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x00143ba9 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x002ab48e d_drop +EXPORT_SYMBOL vmlinux 0x004b86a6 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x007b13d9 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x008e7400 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x00b67b4f d_lookup +EXPORT_SYMBOL vmlinux 0x00b7129e ip_ct_attach +EXPORT_SYMBOL vmlinux 0x00c66a21 pnp_get_resource +EXPORT_SYMBOL vmlinux 0x00ced31c inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00daea84 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x00e3e512 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x00e87883 rwsem_wake +EXPORT_SYMBOL vmlinux 0x00e8e5e6 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x00ec5900 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0109e027 dquot_release +EXPORT_SYMBOL vmlinux 0x0137eede param_ops_ushort +EXPORT_SYMBOL vmlinux 0x0155caf2 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01703b30 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x0171d14d tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy +EXPORT_SYMBOL vmlinux 0x019fe240 skb_trim +EXPORT_SYMBOL vmlinux 0x01a549f2 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x01a69d62 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x01a84a54 nf_register_hook +EXPORT_SYMBOL vmlinux 0x01c9b88a kmalloc_caches +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0214d997 __put_cred +EXPORT_SYMBOL vmlinux 0x0224b768 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x0254cf06 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x0256f745 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x02680455 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x028ce84f filemap_map_pages +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02afa126 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x02c025ef from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x03211606 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x0333ba81 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03484955 blk_make_request +EXPORT_SYMBOL vmlinux 0x0353fadd skb_make_writable +EXPORT_SYMBOL vmlinux 0x03552ecb generic_delete_inode +EXPORT_SYMBOL vmlinux 0x03554c31 ps2_init +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035f891b down_interruptible +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03798e6b cfb_fillrect +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0385e4ab elv_rb_del +EXPORT_SYMBOL vmlinux 0x03b412fa locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x03c489c7 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x03cb761c dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x03fe4dfc bd_set_size +EXPORT_SYMBOL vmlinux 0x040a2025 param_ops_string +EXPORT_SYMBOL vmlinux 0x041317be nf_afinfo +EXPORT_SYMBOL vmlinux 0x041cc2b1 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x04330a3c put_disk +EXPORT_SYMBOL vmlinux 0x043c0af4 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x04457239 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0458e1a8 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x046ba480 dev_uc_init +EXPORT_SYMBOL vmlinux 0x04765f21 __devm_release_region +EXPORT_SYMBOL vmlinux 0x0476c8bb alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0486926b tty_lock +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048d9384 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x0496e771 pid_task +EXPORT_SYMBOL vmlinux 0x04a70f87 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x04ae38b5 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x04b95aff blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x04e1d15b udp6_csum_init +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04fe9bda genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x0504bba8 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052d5a80 devm_clk_put +EXPORT_SYMBOL vmlinux 0x052ed74a seq_lseek +EXPORT_SYMBOL vmlinux 0x0538d986 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x053c368c xattr_full_name +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x0562c261 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x05736f44 ip6_xmit +EXPORT_SYMBOL vmlinux 0x05c0c452 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x05c9c375 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x05e14323 blk_run_queue +EXPORT_SYMBOL vmlinux 0x060ce1bd __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061f4039 acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0x062b8075 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06578572 put_tty_driver +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068b09ff __bread_gfp +EXPORT_SYMBOL vmlinux 0x06b05195 phy_device_remove +EXPORT_SYMBOL vmlinux 0x06b717ef mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x06bd0939 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x06e1e9bf nvm_put_blk +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x07068494 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x0708eb25 generic_getxattr +EXPORT_SYMBOL vmlinux 0x0709bbeb finish_open +EXPORT_SYMBOL vmlinux 0x0717d610 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x072fa599 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x074021bd netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x075b8d25 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x075d86c5 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x07715558 override_creds +EXPORT_SYMBOL vmlinux 0x0776663d tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x077f8903 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x079a48f5 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x079a7a68 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x079a7fca abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x079d669a dmam_free_noncoherent +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 0x07d54556 noop_llseek +EXPORT_SYMBOL vmlinux 0x07fdeaf2 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x07febe2d skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x0826fbcc seq_path +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084598fa fb_show_logo +EXPORT_SYMBOL vmlinux 0x0848a726 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x0848becb inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x084f00a0 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x085d9400 pci_bus_put +EXPORT_SYMBOL vmlinux 0x0870562b tty_port_close +EXPORT_SYMBOL vmlinux 0x08bd3cc1 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x08bd6c5d netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x08c056da __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x08c67461 seq_open_private +EXPORT_SYMBOL vmlinux 0x08da899e account_page_dirtied +EXPORT_SYMBOL vmlinux 0x08e77af6 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f5205b pcim_enable_device +EXPORT_SYMBOL vmlinux 0x08f6f7c8 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x08fc3985 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x09143265 pci_find_capability +EXPORT_SYMBOL vmlinux 0x0917916b security_path_rmdir +EXPORT_SYMBOL vmlinux 0x093bfc3f proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0960bc48 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x09696626 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x0974b151 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x097fbfd8 __register_chrdev +EXPORT_SYMBOL vmlinux 0x098431ba acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099f3a0d bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x09bc8ddd pci_match_id +EXPORT_SYMBOL vmlinux 0x09c2e57d xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09f42502 empty_aops +EXPORT_SYMBOL vmlinux 0x0a0c02d4 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x0a0f1c0b tso_build_data +EXPORT_SYMBOL vmlinux 0x0a114d56 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x0a1621dd mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a4c3ac4 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x0a4d28d3 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a74fb98 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x0a7d7322 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x0a80b0e6 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x0a865207 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0ab5fff3 pci_save_state +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae31f48 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x0ae93706 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x0afb4198 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x0b0a663b kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b10a3c6 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b347123 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x0b4a472e no_llseek +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b63ccb4 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b767ef4 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x0b7b626a xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x0b8e6da1 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x0bacf150 replace_mount_options +EXPORT_SYMBOL vmlinux 0x0bb5bf9f kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd66afd xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x0be07594 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c2c1b03 padata_alloc +EXPORT_SYMBOL vmlinux 0x0c3639bd serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x0c37ee77 mount_single +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4a7f20 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x0c4c4239 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x0c5645db km_state_expired +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c59afc0 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c815307 proto_register +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb35d8c pci_choose_state +EXPORT_SYMBOL vmlinux 0x0cbe2b8e kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x0cbe6ed8 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x0cc62817 gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x0cd73cf6 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x0ce9c6f5 __invalidate_device +EXPORT_SYMBOL vmlinux 0x0cee1291 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x0cee2fe5 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x0cfb4f24 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d73461d bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x0d7d393f devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x0d80efb5 acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da5c389 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x0da8d513 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x0db84648 phy_stop +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dd19304 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x0de39f20 netif_device_detach +EXPORT_SYMBOL vmlinux 0x0dfa8239 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x0e030941 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x0e28d9a0 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x0e367971 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x0e46892f bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e77a781 lockref_put_return +EXPORT_SYMBOL vmlinux 0x0e9c5500 generic_write_end +EXPORT_SYMBOL vmlinux 0x0ea508f5 sock_create_lite +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed290e0 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x0ed8cc7b acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0x0ef29c57 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0eaa6b fsync_bdev +EXPORT_SYMBOL vmlinux 0x0f1b838f mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x0f4a07b4 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x0f4c18bf skb_copy +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 0x0f86b913 would_dump +EXPORT_SYMBOL vmlinux 0x0f9d963f abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x0fabbd12 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x0fadfc9b dev_addr_flush +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbfe57c d_delete +EXPORT_SYMBOL vmlinux 0x0fce57ce of_get_next_parent +EXPORT_SYMBOL vmlinux 0x0fe7d46c skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff2c759 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x100f9b6f d_obtain_root +EXPORT_SYMBOL vmlinux 0x1027a276 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x102c0475 rt6_lookup +EXPORT_SYMBOL vmlinux 0x103784a6 security_path_link +EXPORT_SYMBOL vmlinux 0x103d4859 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x10436f1b tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x1064d270 set_cached_acl +EXPORT_SYMBOL vmlinux 0x106b7e16 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x10773d28 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x1097165c inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x10aeccf0 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x10b6b509 inet_listen +EXPORT_SYMBOL vmlinux 0x10c51a23 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x10c54184 seq_vprintf +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10ee72bc xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x11075a98 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11124a8a adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x11315167 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x1144fe3c vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1185a4f6 generic_update_time +EXPORT_SYMBOL vmlinux 0x1188a1ac inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x11898408 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11bc4b19 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11f8acbf acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120ebdfc ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1217f78e __register_binfmt +EXPORT_SYMBOL vmlinux 0x1220472f vme_irq_free +EXPORT_SYMBOL vmlinux 0x122f8f79 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x122ffa96 dev_printk +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x124d1290 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x1251fa44 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x12831698 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x128d29eb pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x128eec14 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x129c42e7 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b327c5 inode_init_once +EXPORT_SYMBOL vmlinux 0x12b89480 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x12c6e188 pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e3cdc4 blk_put_request +EXPORT_SYMBOL vmlinux 0x12e7ce08 mutex_trylock +EXPORT_SYMBOL vmlinux 0x12fff4ff d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x1305d532 ucs2_strncmp +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 0x13250659 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x132651ed path_get +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1333fd95 xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x133438de swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x13599fe3 mmc_put_card +EXPORT_SYMBOL vmlinux 0x135e7cc3 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x1374898e tcp_ioctl +EXPORT_SYMBOL vmlinux 0x138f7891 dev_activate +EXPORT_SYMBOL vmlinux 0x139cc248 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x13af3c28 bdi_destroy +EXPORT_SYMBOL vmlinux 0x13c739af eth_type_trans +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e1800c pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x13fce3eb iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x14093ad4 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x1418dbf2 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x144de030 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x148d906c blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x14c088b9 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x14cecdd9 blk_register_region +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d0f74c unregister_nls +EXPORT_SYMBOL vmlinux 0x14d6caf4 tty_write_room +EXPORT_SYMBOL vmlinux 0x14e78f9f load_nls +EXPORT_SYMBOL vmlinux 0x14f0dd6c udp_set_csum +EXPORT_SYMBOL vmlinux 0x15007503 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x1511ce14 dquot_enable +EXPORT_SYMBOL vmlinux 0x152373cb blk_queue_split +EXPORT_SYMBOL vmlinux 0x15364b63 ida_remove +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1550f951 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x155c3297 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x156b7a7c mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x157d4280 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x15a9610a gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x15ac26f3 single_open +EXPORT_SYMBOL vmlinux 0x15afca86 current_fs_time +EXPORT_SYMBOL vmlinux 0x15b630b3 qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x15b6f7b5 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15e695eb amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x15ee84a1 dentry_open +EXPORT_SYMBOL vmlinux 0x15f2adef sk_stream_error +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x1629e92c __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x16351177 vme_dma_request +EXPORT_SYMBOL vmlinux 0x16467668 udp_ioctl +EXPORT_SYMBOL vmlinux 0x1665583b nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x1682ea05 proc_douintvec +EXPORT_SYMBOL vmlinux 0x168c5c07 bdgrab +EXPORT_SYMBOL vmlinux 0x168c6794 param_ops_charp +EXPORT_SYMBOL vmlinux 0x16a97bac twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x16abc13e vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x16d5d2cd cpu_all_bits +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x17219ecf qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x1743b38b pnp_possible_config +EXPORT_SYMBOL vmlinux 0x174e88c1 mntput +EXPORT_SYMBOL vmlinux 0x176b63d8 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x177fb755 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x17865b23 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x1793af94 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user +EXPORT_SYMBOL vmlinux 0x17aa735a tty_port_hangup +EXPORT_SYMBOL vmlinux 0x17aabe7d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b28d3d starget_for_each_device +EXPORT_SYMBOL vmlinux 0x17c92146 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x17e52209 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x17fc5bd6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x18008ae6 bmap +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x185703c0 update_devfreq +EXPORT_SYMBOL vmlinux 0x185bbe5a napi_disable +EXPORT_SYMBOL vmlinux 0x18663220 iov_iter_init +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x18968d27 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18b48e28 __memset_io +EXPORT_SYMBOL vmlinux 0x18b4f674 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x18c2e976 pci_bus_get +EXPORT_SYMBOL vmlinux 0x18d04b38 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18fef9cb xen_start_info +EXPORT_SYMBOL vmlinux 0x190c53a5 key_put +EXPORT_SYMBOL vmlinux 0x19164b84 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x19225e60 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x19360cd3 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x194d7596 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x19629928 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x19873e1a devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x198f6ec1 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x1992d8dd tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x199eb6e7 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a54707 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ed26ad max8998_update_reg +EXPORT_SYMBOL vmlinux 0x19f8a8cb netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x1a160247 __frontswap_load +EXPORT_SYMBOL vmlinux 0x1a1da400 __brelse +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a5f708b pcie_set_mps +EXPORT_SYMBOL vmlinux 0x1ab06748 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac8eae6 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x1af11f5c cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b14a12c dup_iter +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b465330 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b5f7820 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x1b60f1c6 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b65a2eb bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x1b6f1ab8 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bbf25df mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x1bca2a90 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x1bdaf3b6 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x1bde16da kill_bdev +EXPORT_SYMBOL vmlinux 0x1bf408f7 kobject_set_name +EXPORT_SYMBOL vmlinux 0x1bf8a06b xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c1ad9b0 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x1c1b8748 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x1c375bec __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x1c3aa6f0 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x1c3bb905 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x1c523da8 get_io_context +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c8c6a68 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x1ca546e2 profile_pc +EXPORT_SYMBOL vmlinux 0x1cb5f308 of_dev_get +EXPORT_SYMBOL vmlinux 0x1cd4651f ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x1cf566b2 registered_fb +EXPORT_SYMBOL vmlinux 0x1cfac25d dcache_dir_open +EXPORT_SYMBOL vmlinux 0x1d01dc7c mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x1d0a4d68 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d1a724d inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x1d1e5c8f of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x1d3c9345 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x1d4ed4f9 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x1d6c52b4 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x1d89bdac neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x1d8fb3b2 passthru_features_check +EXPORT_SYMBOL vmlinux 0x1d92d898 complete_and_exit +EXPORT_SYMBOL vmlinux 0x1db7e410 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x1dbf57d8 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de1aed7 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e18cd96 input_free_device +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e2e079d inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x1e2ee0bb tty_kref_put +EXPORT_SYMBOL vmlinux 0x1e41c7d1 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x1e585597 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x1e6b0199 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e94240e netlink_set_err +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 0x1ebaac20 genphy_update_link +EXPORT_SYMBOL vmlinux 0x1ec5dd13 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x1ecdc0fb blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x1efd7258 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x1f027ed4 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x1f0fba18 PDE_DATA +EXPORT_SYMBOL vmlinux 0x1f2ef63f bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x1f439ef9 udp_prot +EXPORT_SYMBOL vmlinux 0x1f5e2536 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f786d01 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x1f8fff5f set_posix_acl +EXPORT_SYMBOL vmlinux 0x1f950731 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x1f9aaa9a led_set_brightness +EXPORT_SYMBOL vmlinux 0x1fb52f61 kset_register +EXPORT_SYMBOL vmlinux 0x1fb64a37 unlock_rename +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcf4d4b _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd1ef00 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x1fdc7df2 _mcount +EXPORT_SYMBOL vmlinux 0x1fe23703 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x1fe4487c tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x1fe8c8e2 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe92f0b vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff83317 security_path_chown +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x204346af proc_dostring +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205c5f2d nf_register_hooks +EXPORT_SYMBOL vmlinux 0x206dca10 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20891912 setattr_copy +EXPORT_SYMBOL vmlinux 0x208a1b0a jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x20906cd5 idr_destroy +EXPORT_SYMBOL vmlinux 0x2092bc3e abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x209e3054 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b31c20 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20cb0001 blk_queue_max_segment_size +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 0x20f5d255 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x20f7e66b tcf_em_register +EXPORT_SYMBOL vmlinux 0x20ffa7f6 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x21085cd0 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x213c6094 dev_uc_add +EXPORT_SYMBOL vmlinux 0x213d3b1d swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x214d5ea8 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x2150944d cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x21661752 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x218652ed kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x218982da serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x219c8acb register_sysctl +EXPORT_SYMBOL vmlinux 0x21b8a6ef netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e25823 dev_err +EXPORT_SYMBOL vmlinux 0x21e613fe pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x21ee45df blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x21fe664a generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x220fcc32 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x2224fd47 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x224c5d45 pnp_register_driver +EXPORT_SYMBOL vmlinux 0x224ff4ad wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x2257803f memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x226275ad fasync_helper +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22817dd7 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0x22914437 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2294e6d4 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x229c04be xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x22a1a45f __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b83fbf unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x22baea3d proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x22c08be1 skb_queue_head +EXPORT_SYMBOL vmlinux 0x22e7e15a block_truncate_page +EXPORT_SYMBOL vmlinux 0x22e9b18f nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x22eb8c1c textsearch_prepare +EXPORT_SYMBOL vmlinux 0x22efd2ed read_cache_pages +EXPORT_SYMBOL vmlinux 0x231865d1 i2c_transfer +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2323ddb5 set_security_override +EXPORT_SYMBOL vmlinux 0x2360fabc dst_destroy +EXPORT_SYMBOL vmlinux 0x2364c326 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x236aa61f backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x2370d5dc compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x2391d488 generic_setlease +EXPORT_SYMBOL vmlinux 0x239ceaab blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23ac540d bio_clone_fast +EXPORT_SYMBOL vmlinux 0x23aec71e udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23ed7a37 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x23edbfba kfree_put_link +EXPORT_SYMBOL vmlinux 0x23f9eb93 netdev_alert +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2414c24b capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x241a0e6b blk_init_queue +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242579b9 scsi_device_put +EXPORT_SYMBOL vmlinux 0x242e0624 find_vma +EXPORT_SYMBOL vmlinux 0x242e31a3 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x24341de3 uart_update_timeout +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 0x2474fbf6 of_get_next_child +EXPORT_SYMBOL vmlinux 0x2479bf2e __napi_schedule +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24abca4a revert_creds +EXPORT_SYMBOL vmlinux 0x24bf465a tcp_seq_open +EXPORT_SYMBOL vmlinux 0x24c118a2 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x24caa3bb generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25449d19 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x254bef06 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x254da0d1 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x255bb072 change_bit +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25930cf3 generic_readlink +EXPORT_SYMBOL vmlinux 0x25982fdb iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x25988522 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x25a999ce fs_bio_set +EXPORT_SYMBOL vmlinux 0x25c89741 ilookup5 +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x260ef8b1 single_open_size +EXPORT_SYMBOL vmlinux 0x2626fa53 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x26383eaf __seq_open_private +EXPORT_SYMBOL vmlinux 0x263a4dcb blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x266378f0 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x267ba480 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x2687cda2 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x2689497a new_inode +EXPORT_SYMBOL vmlinux 0x268ed366 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x26c20650 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x26e10877 kdb_current_task +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26fad415 vme_slave_request +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2724ba66 __ioremap +EXPORT_SYMBOL vmlinux 0x2727f0f6 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x272b1c22 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x273a82e1 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x27457425 tcp_filter +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274926ba __breadahead +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x274e7917 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x2753a9b2 mmc_erase +EXPORT_SYMBOL vmlinux 0x276d71d3 path_noexec +EXPORT_SYMBOL vmlinux 0x2777efcc generic_perform_write +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x2793749f elv_rb_find +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27b210fd twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x27b9191e __sock_create +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27d65e82 fb_find_mode +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e6fb89 release_sock +EXPORT_SYMBOL vmlinux 0x27e9733a locks_free_lock +EXPORT_SYMBOL vmlinux 0x27f141c2 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x280e974d qdisc_list_del +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28197692 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x2869dbd6 add_disk +EXPORT_SYMBOL vmlinux 0x28763793 iterate_mounts +EXPORT_SYMBOL vmlinux 0x28807883 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x28901b2f bdev_read_only +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 0x28b6bf8d pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x28d7ffea lg_local_unlock +EXPORT_SYMBOL vmlinux 0x28dcd427 inode_permission +EXPORT_SYMBOL vmlinux 0x290efe24 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x291ba05d udplite_table +EXPORT_SYMBOL vmlinux 0x29383fc7 serio_interrupt +EXPORT_SYMBOL vmlinux 0x294d6baf inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x297cd7e5 pci_dev_put +EXPORT_SYMBOL vmlinux 0x29812f83 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x299e508f set_disk_ro +EXPORT_SYMBOL vmlinux 0x29b023f1 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x29cc732d max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x29dfeb45 __frontswap_test +EXPORT_SYMBOL vmlinux 0x29f2dda9 __page_symlink +EXPORT_SYMBOL vmlinux 0x2a14bfd4 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x2a2255ff dquot_resume +EXPORT_SYMBOL vmlinux 0x2a2a6745 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a7623a1 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x2a7bc10a set_create_files_as +EXPORT_SYMBOL vmlinux 0x2a86e067 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x2a8b0099 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x2aa1ad41 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2acd1135 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad5c283 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x2ad68a96 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x2ae4684d __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3b735c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x2b417fae netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x2b5694ba posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x2b90db87 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2baae8a6 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bb7ba7b devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x2bbde2b2 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x2bc91550 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x2be22715 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x2bead3fb acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x2bfbab10 __memmove +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c044b1a dmam_pool_create +EXPORT_SYMBOL vmlinux 0x2c0cce89 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c3c08a0 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x2c3ec356 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x2c5b33cd blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x2c6020d9 tty_register_driver +EXPORT_SYMBOL vmlinux 0x2c6b338f __getblk_slow +EXPORT_SYMBOL vmlinux 0x2c77ad4f md_error +EXPORT_SYMBOL vmlinux 0x2c78586c tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x2c86f6f2 input_register_handle +EXPORT_SYMBOL vmlinux 0x2c8b3881 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x2c9dbead invalidate_partition +EXPORT_SYMBOL vmlinux 0x2ca89eca complete_request_key +EXPORT_SYMBOL vmlinux 0x2cbdcf1e padata_add_cpu +EXPORT_SYMBOL vmlinux 0x2ce5d88f pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d0c8125 vm_map_ram +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1490d3 of_device_register +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d50601a dev_remove_offload +EXPORT_SYMBOL vmlinux 0x2d54b9fc neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x2d5e6936 module_layout +EXPORT_SYMBOL vmlinux 0x2d62b925 do_SAK +EXPORT_SYMBOL vmlinux 0x2d6ea07c csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x2d959cd8 of_find_property +EXPORT_SYMBOL vmlinux 0x2d964347 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2dc7f6ee elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x2dcc4671 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2ddf48ee iov_iter_zero +EXPORT_SYMBOL vmlinux 0x2de1327b bit_waitqueue +EXPORT_SYMBOL vmlinux 0x2de4c0bb blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2df486e4 read_dev_sector +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e18d0d4 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e470384 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e7be112 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2e7e2a3e jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x2e7f6d01 netif_skb_features +EXPORT_SYMBOL vmlinux 0x2e93004a of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x2ea4c1c9 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x2eb3ffbb __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x2ebcd9cd twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x2ee8b28a vmap +EXPORT_SYMBOL vmlinux 0x2eeeb06f skb_clone_sk +EXPORT_SYMBOL vmlinux 0x2ef3d4ac from_kgid_munged +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f058947 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f1ed81a cdrom_release +EXPORT_SYMBOL vmlinux 0x2f2459e3 backlight_device_register +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f3857e2 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4c3a09 console_start +EXPORT_SYMBOL vmlinux 0x2f5020d0 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x2f7c6774 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x2f96e2e0 do_splice_from +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe4782c dput +EXPORT_SYMBOL vmlinux 0x2fe74844 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x2ff063b5 acpi_get_name +EXPORT_SYMBOL vmlinux 0x2ff33e6e vme_register_bridge +EXPORT_SYMBOL vmlinux 0x2ffe0798 kill_fasync +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x304ec72b _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x30537f15 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x305cec12 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x3067d546 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x3069d985 generic_make_request +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3089f2c6 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x309681c9 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3098ce17 make_bad_inode +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30af3de2 lock_rename +EXPORT_SYMBOL vmlinux 0x30bf7458 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x30d09eb3 get_tz_trend +EXPORT_SYMBOL vmlinux 0x30de166c tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x30e39dcc to_ndd +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3156d3a8 file_open_root +EXPORT_SYMBOL vmlinux 0x3157505e nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x31584cfe mdiobus_read +EXPORT_SYMBOL vmlinux 0x315fab20 module_put +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x318d1056 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x318df010 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x319be4f7 set_user_nice +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31a55031 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x31aae143 skb_clone +EXPORT_SYMBOL vmlinux 0x31ad9e6f scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x31bc20ca truncate_setsize +EXPORT_SYMBOL vmlinux 0x31e671cb skb_vlan_push +EXPORT_SYMBOL vmlinux 0x32239695 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x324b3877 up +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32574716 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x325c687a scsi_register +EXPORT_SYMBOL vmlinux 0x326149a5 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x3275244c ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x32811c8a km_query +EXPORT_SYMBOL vmlinux 0x329c7450 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x32c3dc74 bio_put +EXPORT_SYMBOL vmlinux 0x32d2d5d1 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x32d38b00 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x32d5f476 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x32d63419 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32fec801 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x33003450 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x33165695 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x33361abd put_page +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x334377a2 dquot_operations +EXPORT_SYMBOL vmlinux 0x338b6c66 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x33979b0d pci_release_region +EXPORT_SYMBOL vmlinux 0x339bb785 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x33a765be dquot_scan_active +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33ebd736 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x33fd42e9 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x341e83fa rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x34208e51 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x34623a5d nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346dfa06 of_match_node +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3489b82e vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349d9fa2 load_nls_default +EXPORT_SYMBOL vmlinux 0x34e0fc45 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x34efba60 clk_get +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f887dd elv_register_queue +EXPORT_SYMBOL vmlinux 0x35054016 ps2_end_command +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3518473e security_inode_readlink +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x35594e9c submit_bh +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35689d2b tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x357949d5 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x3595f6eb clear_inode +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ba02fe __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x35cbb2b8 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x35d22952 key_link +EXPORT_SYMBOL vmlinux 0x35e95562 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360f8f8a __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x360ff19f down +EXPORT_SYMBOL vmlinux 0x3627adf0 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x363ef06c gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x366bd52e serio_rescan +EXPORT_SYMBOL vmlinux 0x368883e0 kill_anon_super +EXPORT_SYMBOL vmlinux 0x368effc6 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36a14d23 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36bfab74 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x36ef1673 amba_device_unregister +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x37258d6d inet_del_protocol +EXPORT_SYMBOL vmlinux 0x372ab074 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x373e46fc __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x375c39dc lease_get_mtime +EXPORT_SYMBOL vmlinux 0x375e7180 init_buffer +EXPORT_SYMBOL vmlinux 0x377192c2 simple_readpage +EXPORT_SYMBOL vmlinux 0x3774a966 __check_sticky +EXPORT_SYMBOL vmlinux 0x3775ea7d user_path_at_empty +EXPORT_SYMBOL vmlinux 0x377bf51c sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x37904209 dev_get_stats +EXPORT_SYMBOL vmlinux 0x3793cd62 __lock_page +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37af86e2 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x37b92e8a __skb_get_hash +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c250a7 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x37c38b9f simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x37d4bd9d dev_mc_init +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x38098a34 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x380ee87a abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0x38123ec1 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x38163170 inet_shutdown +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x383663df __blk_end_request +EXPORT_SYMBOL vmlinux 0x383e6fe7 wake_up_process +EXPORT_SYMBOL vmlinux 0x3844a1c4 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x3852cf14 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388a36b0 dev_addr_add +EXPORT_SYMBOL vmlinux 0x38928911 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x38a33dff neigh_event_ns +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38bc4ad5 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x38c61368 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x38cd6191 mpage_writepage +EXPORT_SYMBOL vmlinux 0x38dd46a7 d_add_ci +EXPORT_SYMBOL vmlinux 0x3905fa17 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x390f187a blk_end_request +EXPORT_SYMBOL vmlinux 0x39124a0a delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x391a1d6a phy_device_register +EXPORT_SYMBOL vmlinux 0x391bdcd3 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x39290687 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x394e20f9 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x397948b0 from_kprojid +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x39ad8dc3 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39cb0941 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x39d5b9cb vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x39eb5b79 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x39f06684 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x3a02ba1c input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x3a0e1b43 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x3a15d634 generic_writepages +EXPORT_SYMBOL vmlinux 0x3a42b218 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x3a676af9 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x3a69ffea scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x3a6d99d7 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x3a74b68f i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x3a78783a of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x3a9557f8 phy_device_free +EXPORT_SYMBOL vmlinux 0x3a95ee0d tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x3a975923 up_write +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aa3dc22 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user +EXPORT_SYMBOL vmlinux 0x3ab62e00 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x3ab85b60 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x3abd74b9 noop_qdisc +EXPORT_SYMBOL vmlinux 0x3ad1dc34 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x3ad5bafd tcp_init_sock +EXPORT_SYMBOL vmlinux 0x3adbfbbc mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x3ae59132 blk_complete_request +EXPORT_SYMBOL vmlinux 0x3af804cc block_write_begin +EXPORT_SYMBOL vmlinux 0x3b300948 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b68eee2 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b8a5e84 blk_finish_request +EXPORT_SYMBOL vmlinux 0x3b99ad52 tcp_prot +EXPORT_SYMBOL vmlinux 0x3bbe0618 of_device_unregister +EXPORT_SYMBOL vmlinux 0x3bd2744b mpage_readpages +EXPORT_SYMBOL vmlinux 0x3bdb5ce8 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x3bf092c6 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x3c0427d4 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x3c1dd712 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c50da4c hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3c6fbca0 mii_check_gmii_support +EXPORT_SYMBOL vmlinux 0x3c7dfe2b generic_setxattr +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9e197a proc_symlink +EXPORT_SYMBOL vmlinux 0x3c9edb64 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x3ca200ea __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x3cc87c2d security_mmap_file +EXPORT_SYMBOL vmlinux 0x3ccc0225 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x3cdd2fa0 is_bad_inode +EXPORT_SYMBOL vmlinux 0x3cdf5e60 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf4733e __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x3cfae893 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x3cfe43c5 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x3cff99a6 free_user_ns +EXPORT_SYMBOL vmlinux 0x3d093081 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x3d097967 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x3d161a24 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x3d179459 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x3d298afc free_page_put_link +EXPORT_SYMBOL vmlinux 0x3d2bbbd3 filp_close +EXPORT_SYMBOL vmlinux 0x3d447b0e ps2_drain +EXPORT_SYMBOL vmlinux 0x3d64a5ed mark_info_dirty +EXPORT_SYMBOL vmlinux 0x3d6617cb down_write_trylock +EXPORT_SYMBOL vmlinux 0x3d8546f9 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x3d9332a3 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x3d9ee9f0 clear_page +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc2afee phy_drivers_register +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e145410 __init_rwsem +EXPORT_SYMBOL vmlinux 0x3e1692fd input_allocate_device +EXPORT_SYMBOL vmlinux 0x3e1d3345 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x3e21efa7 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x3e44d39a netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x3e85e31f mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e99c07b keyring_clear +EXPORT_SYMBOL vmlinux 0x3e9d233d rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x3eb058c2 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x3eb7373b inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x3eb8d37c sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x3ece31a4 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x3ed7e0b9 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x3eec37bb dev_printk_emit +EXPORT_SYMBOL vmlinux 0x3eef36e8 param_set_ulong +EXPORT_SYMBOL vmlinux 0x3efe93ab __nlmsg_put +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4d0d6d blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x3f632a2d xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x3f73b424 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x3f90bb10 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x3f934f3a clocksource_unregister +EXPORT_SYMBOL vmlinux 0x3f9511fd devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x3faa563a bio_advance +EXPORT_SYMBOL vmlinux 0x3fb2e143 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x3fdb34ce inode_dio_wait +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe760a0 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40308908 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x4033924c pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x404a318e generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x405d54f9 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x408f4b36 flush_signals +EXPORT_SYMBOL vmlinux 0x40928d8e vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x4092a89f pci_bus_write_config_dword +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 0x40abfeec scsi_add_device +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 0x40d477c1 bh_submit_read +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x41041b3f blk_free_tags +EXPORT_SYMBOL vmlinux 0x410f4bb7 __irq_regs +EXPORT_SYMBOL vmlinux 0x411e0fac skb_tx_error +EXPORT_SYMBOL vmlinux 0x4145c246 dev_get_flags +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414fcbb6 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x4165781a install_exec_creds +EXPORT_SYMBOL vmlinux 0x416bfd20 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x416c51ec i2c_verify_client +EXPORT_SYMBOL vmlinux 0x416f4506 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41909cff km_policy_notify +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41be54cd alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x41d7c0a8 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x41dd0e17 security_path_unlink +EXPORT_SYMBOL vmlinux 0x41e0460b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x42039344 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422e593c alloc_file +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 0x4285b640 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42ae5af0 dqstats +EXPORT_SYMBOL vmlinux 0x42af5ea7 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x42cb2950 xen_dma_ops +EXPORT_SYMBOL vmlinux 0x42cb7ccb bio_split +EXPORT_SYMBOL vmlinux 0x42e661b1 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x4302619f sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43060488 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x43106fc8 proc_create_data +EXPORT_SYMBOL vmlinux 0x431d5bae posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x433754ed blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x433d6070 vfs_readv +EXPORT_SYMBOL vmlinux 0x43454047 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x43469dd3 __vfs_read +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x438279b8 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439013fa vme_irq_request +EXPORT_SYMBOL vmlinux 0x43995002 km_report +EXPORT_SYMBOL vmlinux 0x43a7efa1 pnp_device_detach +EXPORT_SYMBOL vmlinux 0x43ade089 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x43b6c54a acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x43be3a71 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x43de1376 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x43e4bc14 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x43e70c01 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4402d053 user_path_create +EXPORT_SYMBOL vmlinux 0x440a220b inet_add_protocol +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44566d9b dev_set_mtu +EXPORT_SYMBOL vmlinux 0x4460b840 phy_suspend +EXPORT_SYMBOL vmlinux 0x446183d5 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x4486f95b qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x4492e107 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x449ad0a7 memcmp +EXPORT_SYMBOL vmlinux 0x44a81d5f acpi_evaluate_object +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44b8f9cd inet_frags_init +EXPORT_SYMBOL vmlinux 0x44bd83a5 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x44d276aa pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x45009a97 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x45220471 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4562deee open_exec +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45987b0f fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45aca2b2 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x4615db54 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x4627231f fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x462c660f proc_dointvec +EXPORT_SYMBOL vmlinux 0x463d0029 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x463d2e54 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x4646a1a1 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x46512c92 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x46665cdd mutex_lock +EXPORT_SYMBOL vmlinux 0x46670bd5 clkdev_alloc +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4670a29a dget_parent +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x468752c0 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x468a3237 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x46bbaa54 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46f0d332 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x46f99154 notify_change +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x47142100 serio_close +EXPORT_SYMBOL vmlinux 0x471941c1 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x4721fdb7 inet_ioctl +EXPORT_SYMBOL vmlinux 0x473ea45e ns_capable +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4742dd8e tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47658340 neigh_update +EXPORT_SYMBOL vmlinux 0x4776dd5e swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x4778c311 param_get_invbool +EXPORT_SYMBOL vmlinux 0x477f5220 vc_resize +EXPORT_SYMBOL vmlinux 0x4783dc3e prepare_creds +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x4793a488 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a58b42 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x47b14b77 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x47bba14a simple_statfs +EXPORT_SYMBOL vmlinux 0x47d1b9de nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x47e4d3e5 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x47e728fc __lock_buffer +EXPORT_SYMBOL vmlinux 0x48024f67 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x4802bf94 __break_lease +EXPORT_SYMBOL vmlinux 0x4808f958 tc_classify +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x48532dfd rfkill_alloc +EXPORT_SYMBOL vmlinux 0x48540ed2 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x4859371e ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485e0a42 param_get_int +EXPORT_SYMBOL vmlinux 0x48708a93 node_data +EXPORT_SYMBOL vmlinux 0x48a1b10a tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x48aacb5a seq_release +EXPORT_SYMBOL vmlinux 0x48b30ffd blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48c02b99 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x48c0fc86 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x48e8c11e sock_i_uid +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49080729 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x491c02a3 __scm_send +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49705bf9 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x497aa142 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x497bb5a0 set_groups +EXPORT_SYMBOL vmlinux 0x4985a38f pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0x49879b01 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x498ff6b1 param_set_invbool +EXPORT_SYMBOL vmlinux 0x49930938 idr_replace +EXPORT_SYMBOL vmlinux 0x49962822 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49c2c512 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x49d5cd37 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x49e0ef8e nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a0eb5cf dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x4a2ad781 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x4a559419 down_read_trylock +EXPORT_SYMBOL vmlinux 0x4a593e61 bdi_init +EXPORT_SYMBOL vmlinux 0x4a734254 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a972127 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x4a9aa84a is_nd_btt +EXPORT_SYMBOL vmlinux 0x4ab957a4 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x4ab9f38b con_is_bound +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4aef56b4 input_flush_device +EXPORT_SYMBOL vmlinux 0x4aef667b proto_unregister +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b2ee0d7 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x4b3c1d32 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x4b44213a of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x4b5d3b9f generic_listxattr +EXPORT_SYMBOL vmlinux 0x4b5d7565 dev_mc_add +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b70ee67 inet6_bind +EXPORT_SYMBOL vmlinux 0x4b7a8907 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x4b95cff1 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x4b96feae inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x4ba6dbc5 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bf93b42 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c268894 amba_release_regions +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c46e43c pagecache_get_page +EXPORT_SYMBOL vmlinux 0x4c5d57f5 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x4c6f9ef3 test_and_change_bit +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cbfd7e4 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x4cc91674 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x4ccf3cef i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x4cd9bf8f ip6_frag_init +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cdfb337 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x4ce2bbdd fifo_set_limit +EXPORT_SYMBOL vmlinux 0x4cebe716 security_path_chmod +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d0ecd05 d_genocide +EXPORT_SYMBOL vmlinux 0x4d12a370 get_gendisk +EXPORT_SYMBOL vmlinux 0x4d1674c4 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x4d3735c0 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x4d41c27f nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x4d5130a2 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x4d6054cb blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x4d764783 lease_modify +EXPORT_SYMBOL vmlinux 0x4d7d9af1 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x4d84264d inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da6bbb4 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x4db600b3 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x4dde0456 blk_put_queue +EXPORT_SYMBOL vmlinux 0x4dde3fff blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df89149 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x4e020c6a param_ops_byte +EXPORT_SYMBOL vmlinux 0x4e0bd0b9 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x4e10d344 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x4e2b0225 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4165af blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x4e63606c invalidate_bdev +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6af669 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e82ade4 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x4e85ddbc default_llseek +EXPORT_SYMBOL vmlinux 0x4e8e3ab2 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eb9d0dd set_anon_super +EXPORT_SYMBOL vmlinux 0x4ececfdf scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x4eeec192 simple_getattr +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f1e6df5 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f5400af of_find_backlight_by_node +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 0x4f945e5f netdev_notice +EXPORT_SYMBOL vmlinux 0x4ffb5a2f cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501e46bb tty_unthrottle +EXPORT_SYMBOL vmlinux 0x50530bfc of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x50542d11 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x505c8a41 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x505c9fed security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506fb882 bio_copy_data +EXPORT_SYMBOL vmlinux 0x5088c449 dev_driver_string +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a3781f iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c57a25 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x50cdc938 of_get_parent +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x510285d4 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511923a6 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x5128c217 clk_add_alias +EXPORT_SYMBOL vmlinux 0x512c2f0f blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x513d8e14 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x514a6731 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x515b51d6 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x5163b8b2 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x5166f2c7 misc_register +EXPORT_SYMBOL vmlinux 0x516b02c6 km_new_mapping +EXPORT_SYMBOL vmlinux 0x516ef16f iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x51749fc8 _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x51ce80db __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x51cf272b dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51df2b08 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x51e6753b try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51fa8281 of_get_pci_address +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 0x52256e3d seq_pad +EXPORT_SYMBOL vmlinux 0x523385a5 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x5239ce3b ___ratelimit +EXPORT_SYMBOL vmlinux 0x523c09a8 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x5240e11d nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x525248c0 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x525463a9 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x52570e37 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x525b8405 fb_set_var +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x5270fcf8 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x5289a052 pci_dev_get +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529f0b68 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x52af4fb7 skb_unlink +EXPORT_SYMBOL vmlinux 0x52e54430 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x52fd84ce led_blink_set +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53206f4d bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x53209da8 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53350a21 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x536ee27c tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x539fcbf8 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x53c2c1ef nd_device_unregister +EXPORT_SYMBOL vmlinux 0x53d2bbac tty_name +EXPORT_SYMBOL vmlinux 0x53f19eeb blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x54090bb3 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +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 0x547bbb55 nf_log_set +EXPORT_SYMBOL vmlinux 0x548f22bd of_phy_attach +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ad5919 simple_open +EXPORT_SYMBOL vmlinux 0x54b33ce5 vfs_read +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d4bded ida_init +EXPORT_SYMBOL vmlinux 0x54d6e55b sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54fda450 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x550c3214 security_path_symlink +EXPORT_SYMBOL vmlinux 0x55184ad3 page_waitqueue +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5522b12f input_reset_device +EXPORT_SYMBOL vmlinux 0x552326bd fb_get_mode +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5545eecf sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x555b828b __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x556112ae fence_signal_locked +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x556e08f8 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x5570b556 of_dev_put +EXPORT_SYMBOL vmlinux 0x55741aa7 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x557bffa2 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x55923882 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x5592d74d freezing_slow_path +EXPORT_SYMBOL vmlinux 0x55cd2ffb input_unregister_handle +EXPORT_SYMBOL vmlinux 0x55ce4081 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x55cf9b77 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x5614f64e update_region +EXPORT_SYMBOL vmlinux 0x561e4f07 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x562f0f22 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x56342ce1 down_timeout +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x56371085 input_register_handler +EXPORT_SYMBOL vmlinux 0x564dc652 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x5651d01d dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x565b2a42 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x565fae12 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x5687b557 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569dc8d0 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x56a0c420 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x56a75287 security_file_permission +EXPORT_SYMBOL vmlinux 0x56b7fcdb phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x56bad2b2 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x56bee2ea genlmsg_put +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cc365e of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x56d0f050 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x56dc7395 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x56dc9c77 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x56f1f4a2 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x56fd6b81 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x56fe7edf devm_ioremap +EXPORT_SYMBOL vmlinux 0x570720b9 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x572d0104 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x57331a2c skb_copy_bits +EXPORT_SYMBOL vmlinux 0x574a1e66 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x5759f481 neigh_for_each +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57743688 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x577bd98c unregister_shrinker +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x578b19bc thaw_super +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579e7953 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x57a8792d walk_stackframe +EXPORT_SYMBOL vmlinux 0x57a90e60 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x57b46e79 phy_resume +EXPORT_SYMBOL vmlinux 0x57b950fa tty_unlock +EXPORT_SYMBOL vmlinux 0x57e8fa59 do_splice_direct +EXPORT_SYMBOL vmlinux 0x57f7c4da __sb_end_write +EXPORT_SYMBOL vmlinux 0x5806cbd7 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x5807a63e xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x581bb64d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582c1670 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x582e4140 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x582f6b4a pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583ef8e3 scsi_host_put +EXPORT_SYMBOL vmlinux 0x5852f630 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x58604e4d alloc_iova_mem +EXPORT_SYMBOL vmlinux 0x5868a9b0 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x5874e7d5 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58795ba2 phy_init_hw +EXPORT_SYMBOL vmlinux 0x587eb2b2 pci_restore_state +EXPORT_SYMBOL vmlinux 0x58806d7d poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x589529ca iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x589529fb icmp_send +EXPORT_SYMBOL vmlinux 0x58a419ef rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x58a69410 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x58a816e3 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bc6d62 skb_pull +EXPORT_SYMBOL vmlinux 0x58be1e44 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x58c512be skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x58de2291 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x58e252ac tcp_disconnect +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58ff2ac5 sync_blockdev +EXPORT_SYMBOL vmlinux 0x5915e60a mapping_tagged +EXPORT_SYMBOL vmlinux 0x593bdb77 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x5947b622 netlink_unicast +EXPORT_SYMBOL vmlinux 0x596149a0 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x5962926a sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x5999e84c generic_mii_ioctl +EXPORT_SYMBOL vmlinux 0x59a121db tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b4bf01 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x59d06aa5 skb_checksum +EXPORT_SYMBOL vmlinux 0x59d8361f md_cluster_mod +EXPORT_SYMBOL vmlinux 0x59ef68a1 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x59fe323a mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x5a07f17a blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a0f4880 sk_alloc +EXPORT_SYMBOL vmlinux 0x5a23f01b inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x5a2b9ac4 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x5a354d31 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x5a3bc345 dquot_acquire +EXPORT_SYMBOL vmlinux 0x5a50435b dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x5a729137 netdev_emerg +EXPORT_SYMBOL vmlinux 0x5a7d8011 simple_rmdir +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9c9cf3 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aa4f898 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x5ad3a1ae dm_register_target +EXPORT_SYMBOL vmlinux 0x5ae47745 register_framebuffer +EXPORT_SYMBOL vmlinux 0x5aebcc2b insert_inode_locked +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b0ea6b3 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x5b1e97e5 stop_tty +EXPORT_SYMBOL vmlinux 0x5b2225d2 dev_addr_del +EXPORT_SYMBOL vmlinux 0x5b2927b9 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x5b3556b0 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x5b3d061a dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x5b405e85 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x5b4e3367 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b77fb36 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x5b85d099 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x5b8b8990 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x5b92e808 kfree_skb +EXPORT_SYMBOL vmlinux 0x5b94712a ppp_register_channel +EXPORT_SYMBOL vmlinux 0x5b96f153 lookup_one_len +EXPORT_SYMBOL vmlinux 0x5b9c808a acpi_get_possible_resources +EXPORT_SYMBOL vmlinux 0x5ba7b88f read_code +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bcdb616 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x5be603a8 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x5bf75809 import_iovec +EXPORT_SYMBOL vmlinux 0x5bfbb77c kthread_bind +EXPORT_SYMBOL vmlinux 0x5bff1dfe jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c06b3fc rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x5c17f70e tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x5c2ffe38 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x5c3606b0 do_truncate +EXPORT_SYMBOL vmlinux 0x5c451345 md_register_thread +EXPORT_SYMBOL vmlinux 0x5c4f1ac0 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x5c6023a7 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x5c735e43 param_ops_bint +EXPORT_SYMBOL vmlinux 0x5c7efde6 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x5cac0c34 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x5cd30318 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x5cd885d5 _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x5cdd87b0 generic_permission +EXPORT_SYMBOL vmlinux 0x5cea71c6 should_remove_suid +EXPORT_SYMBOL vmlinux 0x5cf22f2a input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfceac6 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x5d0a6e9d vfs_link +EXPORT_SYMBOL vmlinux 0x5d112304 __memcpy_fromio +EXPORT_SYMBOL vmlinux 0x5d1d056f msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x5d33bf62 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d628fc6 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x5d67827d rtnl_unicast +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5dbbaea8 netif_napi_add +EXPORT_SYMBOL vmlinux 0x5df3d12a max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x5e57d91a __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5e7a62e1 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x5e7c285f default_file_splice_read +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea79efe fence_default_wait +EXPORT_SYMBOL vmlinux 0x5eb1b7bc jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec78b0f kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0e8131 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x5f1d569a dev_change_flags +EXPORT_SYMBOL vmlinux 0x5f2af021 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x5f4d025d send_sig_info +EXPORT_SYMBOL vmlinux 0x5f55145f request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x5f635b82 phy_attach +EXPORT_SYMBOL vmlinux 0x5f741f31 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x5f74f5fa vfs_setpos +EXPORT_SYMBOL vmlinux 0x5f79b9a4 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x5f9eaa45 dqget +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe48455 filemap_flush +EXPORT_SYMBOL vmlinux 0x5ffab2b2 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600fee34 __neigh_set_probe_once +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 0x60359a3d blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6077b687 clkdev_drop +EXPORT_SYMBOL vmlinux 0x6080baf8 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x60821273 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x60823a6a tcp_release_cb +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609ee0c1 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x609f5b35 ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x60a03ee3 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x60d1fe7a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x60daf43d mdiobus_write +EXPORT_SYMBOL vmlinux 0x60dc12ea i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e8fc1f ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x60eb7e14 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612d2102 module_refcount +EXPORT_SYMBOL vmlinux 0x613143af inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61520529 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x6158d444 pci_pme_active +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b06cd1 drop_nlink +EXPORT_SYMBOL vmlinux 0x61b08aa8 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c411d7 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x61ce8de4 inc_nlink +EXPORT_SYMBOL vmlinux 0x61d26b93 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x61e6b78c nf_log_unset +EXPORT_SYMBOL vmlinux 0x61ec3227 redraw_screen +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x620849e3 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622a5ad3 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x6270c14d dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x62719075 write_inode_now +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 0x629399ea splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x62b4c11a rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x62c8fb73 of_node_put +EXPORT_SYMBOL vmlinux 0x62cf0e9d param_get_byte +EXPORT_SYMBOL vmlinux 0x62e6f7fa netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x62f0969f submit_bio_wait +EXPORT_SYMBOL vmlinux 0x63047bf9 of_match_device +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631f1ad0 acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x6321abde dev_disable_lro +EXPORT_SYMBOL vmlinux 0x6330c4cf __blk_run_queue +EXPORT_SYMBOL vmlinux 0x63357407 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x6359f4e7 simple_lookup +EXPORT_SYMBOL vmlinux 0x63601977 dev_addr_init +EXPORT_SYMBOL vmlinux 0x638dfadb netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x638ee309 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b6bb81 blkdev_put +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d053b6 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x63d3cd3a vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x63dee8ff mmc_of_parse +EXPORT_SYMBOL vmlinux 0x63e559bb dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x63e759d4 seq_escape +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640fd7f7 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64168978 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x642bca68 param_set_charp +EXPORT_SYMBOL vmlinux 0x64325a59 from_kgid +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x64561592 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x6459d921 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x646c0450 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x647f8658 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x64815152 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x64894b78 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x649849ad request_key_async +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64b7ba4e blk_requeue_request +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c1d3a2 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x64d206e7 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x64dbe83c phy_detach +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 0x65345022 __wake_up +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6542695b vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65835ccd pci_write_vpd +EXPORT_SYMBOL vmlinux 0x659fdbca compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x65a16e03 free_netdev +EXPORT_SYMBOL vmlinux 0x65ab771c request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x65bdb5c7 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x65d83dd6 mmc_start_req +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 0x65e0d9b8 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x66104e19 framebuffer_release +EXPORT_SYMBOL vmlinux 0x6635c20c __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x66391354 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x6642fcbf ip_setsockopt +EXPORT_SYMBOL vmlinux 0x665488c9 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x666ce7aa component_match_add +EXPORT_SYMBOL vmlinux 0x6675ebb0 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x6693fad1 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x669e1d9e set_device_ro +EXPORT_SYMBOL vmlinux 0x66b2f3f8 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x66b7e08b sock_efree +EXPORT_SYMBOL vmlinux 0x66d25d44 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0x66fa83df lro_flush_all +EXPORT_SYMBOL vmlinux 0x670670ee kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x670e2856 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x6711f685 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x67208bd0 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x67276286 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x6734ed94 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x673fdc59 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x674bb884 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0x674dbb7f dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x675aa6ce swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x6777c598 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x677f9242 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x67876ba1 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x67964c83 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x679b5bf5 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x679fe05e generic_file_fsync +EXPORT_SYMBOL vmlinux 0x67a9b30b __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67e7a724 nd_device_register +EXPORT_SYMBOL vmlinux 0x67f5d08c mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x67fe9766 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x68018206 dump_emit +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680adbda gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x680e0450 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x682368ef mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x68282ab2 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x682de901 param_get_string +EXPORT_SYMBOL vmlinux 0x68554c9c clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68af6dcf of_root +EXPORT_SYMBOL vmlinux 0x68b02cac sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68d4fe98 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x6901c52f bio_phys_segments +EXPORT_SYMBOL vmlinux 0x690abd77 end_page_writeback +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x6917ab4d __d_drop +EXPORT_SYMBOL vmlinux 0x691debb1 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x692d5429 pnp_device_attach +EXPORT_SYMBOL vmlinux 0x69489531 kmem_cache_size +EXPORT_SYMBOL vmlinux 0x69508423 nobh_writepage +EXPORT_SYMBOL vmlinux 0x696184d7 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x696d02cf xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x69707606 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69867882 gen_pool_create +EXPORT_SYMBOL vmlinux 0x69a15079 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69ae775f tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x69b96907 simple_dname +EXPORT_SYMBOL vmlinux 0x69fbc0a2 acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0a6a14 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x6a25a426 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x6a2b016b scsi_unregister +EXPORT_SYMBOL vmlinux 0x6a3e2609 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x6a4f5712 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x6a5c0dde phy_register_fixup +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a60277d acpi_buffer_to_resource +EXPORT_SYMBOL vmlinux 0x6a68af94 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x6a7332d5 soft_cursor +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a781367 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x6a7b0268 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x6a943552 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x6a977c56 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x6abf19f0 ata_port_printk +EXPORT_SYMBOL vmlinux 0x6ac52c49 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6ad50397 tty_port_open +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b160eff tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1f1c4a ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b331094 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x6b5b71dd netif_rx_ni +EXPORT_SYMBOL vmlinux 0x6b5f2db7 commit_creds +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b7f14c5 param_array_ops +EXPORT_SYMBOL vmlinux 0x6baf1351 follow_down_one +EXPORT_SYMBOL vmlinux 0x6bb2cdee dev_set_group +EXPORT_SYMBOL vmlinux 0x6bbdde77 arp_tbl +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c17dd13 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x6c25eed4 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x6c26ad30 tcf_em_tree_destroy +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 0x6c6991e7 freeze_bdev +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c9ac776 scsi_host_get +EXPORT_SYMBOL vmlinux 0x6c9e85a4 param_set_long +EXPORT_SYMBOL vmlinux 0x6ca76c81 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x6cfc7b38 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x6cfffb7d bdevname +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d31944f dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d379538 param_get_short +EXPORT_SYMBOL vmlinux 0x6d420c32 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x6d5203e0 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x6d53bcd2 get_empty_filp +EXPORT_SYMBOL vmlinux 0x6d566bc6 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x6d65c694 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x6d812d29 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x6d9fd6f5 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x6ddc2208 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0b75ef devm_iounmap +EXPORT_SYMBOL vmlinux 0x6e6d4084 simple_write_end +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7efc40 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e805810 fence_init +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea63694 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x6ea76843 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x6ecff6d8 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x6f04accd dev_get_iflink +EXPORT_SYMBOL vmlinux 0x6f1be6a3 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x6f1e6c38 register_filesystem +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f26cb7b idr_get_next +EXPORT_SYMBOL vmlinux 0x6f2a827f flush_old_exec +EXPORT_SYMBOL vmlinux 0x6f5ec7ec idr_init +EXPORT_SYMBOL vmlinux 0x6f84e37e __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f976583 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc39275 dquot_destroy +EXPORT_SYMBOL vmlinux 0x6fc605d7 unlock_buffer +EXPORT_SYMBOL vmlinux 0x6fc6fe00 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd02db9 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x6fd65f9f mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x6fddf543 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff73f33 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x7009efc4 sock_no_getname +EXPORT_SYMBOL vmlinux 0x700c3a4a kernel_accept +EXPORT_SYMBOL vmlinux 0x700e5c1d sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x700f8e65 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x70106cbf uart_match_port +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x703f8d9e devm_memremap +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x705cbf95 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x705d6a98 tty_free_termios +EXPORT_SYMBOL vmlinux 0x70671d6e check_disk_change +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x706ee444 ether_setup +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708b1dcf sock_kmalloc +EXPORT_SYMBOL vmlinux 0x70935174 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x70af80c9 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x70b81d4e nf_reinject +EXPORT_SYMBOL vmlinux 0x70bfadc6 cdev_alloc +EXPORT_SYMBOL vmlinux 0x70d0593d key_revoke +EXPORT_SYMBOL vmlinux 0x70d180f6 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x70de6260 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x70eefc4f nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x70f705ad __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x713287b7 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x714002a3 dev_add_offload +EXPORT_SYMBOL vmlinux 0x7156eacf __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x716d8289 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718c72e0 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x7192c5de mount_nodev +EXPORT_SYMBOL vmlinux 0x71955e06 ppp_input +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a54953 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b38fbb cdev_init +EXPORT_SYMBOL vmlinux 0x71b74744 dquot_transfer +EXPORT_SYMBOL vmlinux 0x71c9d59f security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x71d7bfa4 setup_new_exec +EXPORT_SYMBOL vmlinux 0x71ff23c3 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x723b2581 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x725cc5a2 kern_path +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x7272b00d tcp_make_synack +EXPORT_SYMBOL vmlinux 0x72866625 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x728e2eff dump_page +EXPORT_SYMBOL vmlinux 0x729f1691 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x72a94960 pci_get_device +EXPORT_SYMBOL vmlinux 0x72a9d96d pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x72e4e3d6 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72eb139e d_prune_aliases +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL vmlinux 0x7337ad75 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x73635aa0 devm_free_irq +EXPORT_SYMBOL vmlinux 0x737837fb __serio_register_driver +EXPORT_SYMBOL vmlinux 0x73eaf964 __inode_permission +EXPORT_SYMBOL vmlinux 0x73eff599 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x73f71214 pipe_lock +EXPORT_SYMBOL vmlinux 0x73f900f0 mii_check_link +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x741608c3 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x741d8d74 lock_fb_info +EXPORT_SYMBOL vmlinux 0x74243325 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x74449980 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x746317c2 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7480b440 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x7497212e bdget_disk +EXPORT_SYMBOL vmlinux 0x749dbc17 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74eae7f9 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x75068af0 genphy_read_status +EXPORT_SYMBOL vmlinux 0x751769c3 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x75271348 genphy_suspend +EXPORT_SYMBOL vmlinux 0x752b75ad fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x754b1eb9 amba_device_register +EXPORT_SYMBOL vmlinux 0x7554c495 kobject_del +EXPORT_SYMBOL vmlinux 0x755d9314 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x7562fb98 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7570062f d_alloc_name +EXPORT_SYMBOL vmlinux 0x758111d0 __find_get_block +EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc +EXPORT_SYMBOL vmlinux 0x759711bf lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x759a081e inet_offloads +EXPORT_SYMBOL vmlinux 0x75a8e00e vfs_rename +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d01f05 textsearch_register +EXPORT_SYMBOL vmlinux 0x75d79413 sync_inode +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x75fde19c __alloc_skb +EXPORT_SYMBOL vmlinux 0x760256b9 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7623404f prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x762d868f sync_filesystem +EXPORT_SYMBOL vmlinux 0x7642e4a3 iget_locked +EXPORT_SYMBOL vmlinux 0x76438490 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x764e00b7 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x765a0568 vme_register_driver +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x76636005 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x76677937 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x7668ac4e netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x7672602e __mutex_init +EXPORT_SYMBOL vmlinux 0x767dd8fd acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0x768c6c92 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x7691d1e0 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x769dcd38 ip_defrag +EXPORT_SYMBOL vmlinux 0x76a228c9 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x76a5b343 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x76abe3d1 generic_write_checks +EXPORT_SYMBOL vmlinux 0x76acb98b mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x76be2495 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x76c7fa6a kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76f11a60 __skb_checksum +EXPORT_SYMBOL vmlinux 0x7708b3b2 param_set_bool +EXPORT_SYMBOL vmlinux 0x77174d64 param_get_ullong +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x771fca43 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x773153fe __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x7738631a copy_to_iter +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x7755f4de vfs_writef +EXPORT_SYMBOL vmlinux 0x777f30fe scsi_device_resume +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77f53abc acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x77fc2812 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x78039323 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x78303e96 scsi_device_get +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78455c6d scsi_register_driver +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x78504784 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x78680503 netlink_capable +EXPORT_SYMBOL vmlinux 0x786c3af9 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x787e20d8 netif_rx +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a5b3fe mii_ethtool_gset +EXPORT_SYMBOL vmlinux 0x78a83b3f seq_read +EXPORT_SYMBOL vmlinux 0x78c19a6d mempool_resize +EXPORT_SYMBOL vmlinux 0x78cfcbca secpath_dup +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78df9952 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x78e76686 alloc_disk +EXPORT_SYMBOL vmlinux 0x78ef0d83 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x78f4126f blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x78fab8f7 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x7908422d is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x79359a50 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x7939fc08 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x793a9d0c kernel_bind +EXPORT_SYMBOL vmlinux 0x795dc854 brioctl_set +EXPORT_SYMBOL vmlinux 0x7960ea0a of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x7961d811 mmc_read_bkops_status +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 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79e2b439 iommu_dma_init_domain +EXPORT_SYMBOL vmlinux 0x79e49ef7 path_is_under +EXPORT_SYMBOL vmlinux 0x7a057383 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x7a18836f mmc_can_trim +EXPORT_SYMBOL vmlinux 0x7a4223b5 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a515ffa pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x7a548a95 node_states +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a6e49b5 elevator_change +EXPORT_SYMBOL vmlinux 0x7a7e9fc0 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x7a837691 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x7a8710bc blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x7a9baf44 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x7a9c067c inet_csk_accept +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa9f9ae __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abf3ff6 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x7ac61d02 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7afb4a22 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x7b11b3c7 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b242301 skb_dequeue +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b591aed sock_no_poll +EXPORT_SYMBOL vmlinux 0x7b65e8aa mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x7b6646bb _raw_read_lock +EXPORT_SYMBOL vmlinux 0x7b76d1c5 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x7b809578 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x7b924e2e downgrade_write +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bb36a15 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x7bc73048 input_set_keycode +EXPORT_SYMBOL vmlinux 0x7bd2f34b swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x7be75ffc acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x7bea9a56 bdget +EXPORT_SYMBOL vmlinux 0x7bf02764 set_wb_congested +EXPORT_SYMBOL vmlinux 0x7c09ab48 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c195826 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x7c2a2939 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c4b6470 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c763f96 touch_buffer +EXPORT_SYMBOL vmlinux 0x7c78f77e gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca993d6 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x7caf2a8d ppp_input_error +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cdcda79 elv_rb_add +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7ceb737e kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d08193b register_md_personality +EXPORT_SYMBOL vmlinux 0x7d0984dd simple_nosetlease +EXPORT_SYMBOL vmlinux 0x7d0b3469 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x7d0dae50 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d22bc0f acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x7d2ea2a8 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x7d498104 dquot_get_state +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d7cddf3 bioset_free +EXPORT_SYMBOL vmlinux 0x7d7d63df cpumask_next_and +EXPORT_SYMBOL vmlinux 0x7d7dde99 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x7d8b6c10 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x7d8f95be phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7dacebb7 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x7dafbf0c xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x7dc30e23 softnet_data +EXPORT_SYMBOL vmlinux 0x7dc9f3b4 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x7de6eaef of_iomap +EXPORT_SYMBOL vmlinux 0x7decc2f0 vga_tryget +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df27529 make_kuid +EXPORT_SYMBOL vmlinux 0x7e07a8b6 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x7e18d08d pci_release_regions +EXPORT_SYMBOL vmlinux 0x7e1d614a xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x7e3ea819 filemap_fault +EXPORT_SYMBOL vmlinux 0x7e4d243d blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x7e653c3b ilookup +EXPORT_SYMBOL vmlinux 0x7e6f501b blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x7e7628a9 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x7e8be4b3 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x7e9189d7 genphy_resume +EXPORT_SYMBOL vmlinux 0x7e952319 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x7e9da777 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x7eb5ca0e nvm_end_io +EXPORT_SYMBOL vmlinux 0x7ebd4be4 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x7ecb17e7 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x7ed7db6f xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x7ee3f711 of_device_is_available +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0b4175 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x7f0f2546 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x7f2114ff put_cmsg +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2a536d vme_master_mmap +EXPORT_SYMBOL vmlinux 0x7f3a42d0 dummy_dma_ops +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f8b0e85 dst_alloc +EXPORT_SYMBOL vmlinux 0x7f9cc652 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x7fa58823 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x7fa98278 dev_crit +EXPORT_SYMBOL vmlinux 0x7faabfef skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fccd2ad cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x7fd70eed abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe38f48 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x7fe786f3 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x80016b9c tso_count_descs +EXPORT_SYMBOL vmlinux 0x80391b29 __kfree_skb +EXPORT_SYMBOL vmlinux 0x8043bc1a __free_pages +EXPORT_SYMBOL vmlinux 0x80491049 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x80559f4a register_netdevice +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x8087fb40 tty_vhangup +EXPORT_SYMBOL vmlinux 0x809649a6 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x809ed52a cap_mmap_file +EXPORT_SYMBOL vmlinux 0x80a5fca3 get_acl +EXPORT_SYMBOL vmlinux 0x80a70cdd nf_log_register +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d7a4cc register_netdev +EXPORT_SYMBOL vmlinux 0x80df5e9f of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x80e460d4 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80f6602f inet6_release +EXPORT_SYMBOL vmlinux 0x81073b69 d_make_root +EXPORT_SYMBOL vmlinux 0x81225377 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x8148c927 set_page_dirty +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816d194b input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x8186d904 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x818a5ea9 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x81906f44 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x81b47f19 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x81ca1eca netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x821954a5 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x82356140 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x827515f0 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8288a9b1 iput +EXPORT_SYMBOL vmlinux 0x828d1a1b tcp_connect +EXPORT_SYMBOL vmlinux 0x828ed00c flush_dcache_page +EXPORT_SYMBOL vmlinux 0x829c3a3b ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82ad23ee inet6_offloads +EXPORT_SYMBOL vmlinux 0x82c1f570 proc_remove +EXPORT_SYMBOL vmlinux 0x82d17ed9 md_integrity_register +EXPORT_SYMBOL vmlinux 0x82e05f2d md_unregister_thread +EXPORT_SYMBOL vmlinux 0x82e20307 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x82e2dbd9 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x82edddcb __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x83516d7b vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x8353eb5b scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x835748a2 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x836ddda1 kern_unmount +EXPORT_SYMBOL vmlinux 0x836e05e0 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x83728cf5 key_task_permission +EXPORT_SYMBOL vmlinux 0x838702a5 mmc_get_card +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b950ec follow_up +EXPORT_SYMBOL vmlinux 0x83bd5dd9 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83d64b22 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x83fcf0a0 of_clk_get +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x844ab560 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x8461325f blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x8470d83b i2c_master_recv +EXPORT_SYMBOL vmlinux 0x847d1c5b sock_no_accept +EXPORT_SYMBOL vmlinux 0x847f708f __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x8480a222 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x84949948 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x84c76f6c qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x84cdd331 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x84d4279b rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x84e8dbcb blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x84ed1299 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x84fbd409 netdev_state_change +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85061b76 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x85175609 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x8551e83d thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x855ba9b1 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856d6efb done_path_create +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x8590a8f5 fb_pan_display +EXPORT_SYMBOL vmlinux 0x85a4b1cd vfs_statfs +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e8cd80 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f094f4 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x85f62388 sg_miter_next +EXPORT_SYMBOL vmlinux 0x8601873b skb_queue_tail +EXPORT_SYMBOL vmlinux 0x8607675e tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x86200979 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86609de3 eth_header +EXPORT_SYMBOL vmlinux 0x8663d49a acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86af4516 tcf_register_action +EXPORT_SYMBOL vmlinux 0x86bd42c0 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x86c347ec __f_setown +EXPORT_SYMBOL vmlinux 0x86c955e0 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x86ea4d38 complete_all +EXPORT_SYMBOL vmlinux 0x86f0d25e devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x86fa96d2 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x871a2ad1 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8728e228 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x87394ba0 dcache_readdir +EXPORT_SYMBOL vmlinux 0x873fea09 tcp_child_process +EXPORT_SYMBOL vmlinux 0x8753e219 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x87595b23 security_path_rename +EXPORT_SYMBOL vmlinux 0x875f7b4c scsi_print_result +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x876f1808 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x877767c8 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87a93ae7 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x87bfdbfe send_sig +EXPORT_SYMBOL vmlinux 0x87c2056d of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x87d7123d input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x87eb69f5 irq_stat +EXPORT_SYMBOL vmlinux 0x87ec9fc4 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x87f8d52b vme_slot_num +EXPORT_SYMBOL vmlinux 0x87fa38ec scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x880474f9 dst_release +EXPORT_SYMBOL vmlinux 0x884868db of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x884cd4f2 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x88553b44 pci_bus_type +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x888660d7 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x8894095f blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x88b4a457 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x88b4e83b down_trylock +EXPORT_SYMBOL vmlinux 0x88c99660 kern_path_create +EXPORT_SYMBOL vmlinux 0x88d62643 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x88db9a15 dquot_alloc +EXPORT_SYMBOL vmlinux 0x88ecc7f4 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x88f029f6 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x8911c6df ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x891f7f11 set_binfmt +EXPORT_SYMBOL vmlinux 0x8958136e sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x8980e76d pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x898e5424 md_flush_request +EXPORT_SYMBOL vmlinux 0x899c395f lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x899ea2f3 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x89a380d3 dev_close +EXPORT_SYMBOL vmlinux 0x89aa7c81 touch_atime +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b57830 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x89b7b45a copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x89c2c1e7 nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89da510b pipe_unlock +EXPORT_SYMBOL vmlinux 0x89e09904 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x8a01e33f elevator_alloc +EXPORT_SYMBOL vmlinux 0x8a02944a tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x8a112e92 xfrm_input +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a3a4d05 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a65050d kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x8a6709a0 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a87f65e sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x8a954615 serio_bus +EXPORT_SYMBOL vmlinux 0x8a970fc7 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9bba92 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x8aa380d5 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x8aa57c4f udp_table +EXPORT_SYMBOL vmlinux 0x8ab50cb0 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x8ad5c0f6 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x8ae65cf4 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8b01048e pci_reenable_device +EXPORT_SYMBOL vmlinux 0x8b1c91fa pci_iomap +EXPORT_SYMBOL vmlinux 0x8b2255be nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x8b2a42e6 serio_reconnect +EXPORT_SYMBOL vmlinux 0x8b31179a kill_block_super +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b484538 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b64c36d ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x8b6739c1 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8ccc1f jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bae4ef9 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x8bb8693a pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x8bd0a3fd _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x8bf8010d __napi_complete +EXPORT_SYMBOL vmlinux 0x8c1933b2 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x8c226e86 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x8c23a770 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x8c2d242a eth_header_parse +EXPORT_SYMBOL vmlinux 0x8c590f7d phy_connect_direct +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c65b01f genl_notify +EXPORT_SYMBOL vmlinux 0x8c6743c7 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x8c7b18d0 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x8c7c8e0a xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x8c7fe470 try_module_get +EXPORT_SYMBOL vmlinux 0x8c8f7c1c pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x8cbe283c uart_resume_port +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8cf77d1a put_io_context +EXPORT_SYMBOL vmlinux 0x8d168b2d rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x8d4b375d tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x8d508d40 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d57d84e __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x8d5b8269 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x8d603ba6 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d9eaa5e search_binary_handler +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8dc34c45 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x8dca7114 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x8dcd1113 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e07f104 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x8e0e8ae1 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x8e1fa3aa simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x8e4ae034 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x8e551fa7 proc_set_size +EXPORT_SYMBOL vmlinux 0x8e58f3df rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e77dbc9 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x8ea14df4 tty_hangup +EXPORT_SYMBOL vmlinux 0x8eb315d1 param_ops_uint +EXPORT_SYMBOL vmlinux 0x8ebaa876 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x8ebef12a neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x8ec31ec0 pci_disable_device +EXPORT_SYMBOL vmlinux 0x8ee4d999 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x8f115509 __destroy_inode +EXPORT_SYMBOL vmlinux 0x8f21e981 param_get_uint +EXPORT_SYMBOL vmlinux 0x8f3787be panic_notifier_list +EXPORT_SYMBOL vmlinux 0x8f38a54d pci_get_class +EXPORT_SYMBOL vmlinux 0x8f3a695b neigh_table_init +EXPORT_SYMBOL vmlinux 0x8f5eb3e9 phy_start +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f7dc4ec netlink_ack +EXPORT_SYMBOL vmlinux 0x8f8c057a input_register_device +EXPORT_SYMBOL vmlinux 0x8f9005ba pci_fixup_device +EXPORT_SYMBOL vmlinux 0x8f9358ef neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x8fa904d5 sk_capable +EXPORT_SYMBOL vmlinux 0x8faea181 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x8fc35bb2 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x8fd956aa blk_start_queue +EXPORT_SYMBOL vmlinux 0x8fd9c5cf uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x8fe92fb8 mii_nway_restart +EXPORT_SYMBOL vmlinux 0x8fee5d2c dev_emerg +EXPORT_SYMBOL vmlinux 0x8ffb6f08 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x901da21c elv_add_request +EXPORT_SYMBOL vmlinux 0x9022b268 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x9028c553 bdi_register +EXPORT_SYMBOL vmlinux 0x90541f7e tcp_req_err +EXPORT_SYMBOL vmlinux 0x905d60ba inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x906c15ce jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x907221c4 padata_start +EXPORT_SYMBOL vmlinux 0x9079f17d nf_getsockopt +EXPORT_SYMBOL vmlinux 0x909a7fb8 first_ec +EXPORT_SYMBOL vmlinux 0x90ac3102 dev_base_lock +EXPORT_SYMBOL vmlinux 0x90adb772 rtnl_notify +EXPORT_SYMBOL vmlinux 0x90b77e21 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x90c20674 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x90f5fa37 copy_from_iter +EXPORT_SYMBOL vmlinux 0x9115a944 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x912c8e98 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x912fc4a9 arp_create +EXPORT_SYMBOL vmlinux 0x913dabec scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x914559d1 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91530b52 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x915b43a9 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x9165e975 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x918c6374 mempool_alloc +EXPORT_SYMBOL vmlinux 0x91ac36a2 register_gifconf +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b24b0c xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x91ba441f xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x91e2794c __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x91e9d738 param_ops_short +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9214543d arp_xmit +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923f8149 d_splice_alias +EXPORT_SYMBOL vmlinux 0x924253f2 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x924cf6ee devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x924f2fe2 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x9261ff90 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x9272349b __genl_register_family +EXPORT_SYMBOL vmlinux 0x927a758d fget_raw +EXPORT_SYMBOL vmlinux 0x928bdfdd jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x928f39ac kmem_cache_create +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x92a44a80 fence_add_callback +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92ce7969 uart_register_driver +EXPORT_SYMBOL vmlinux 0x92d09bcc abort_creds +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9307abb3 unregister_key_type +EXPORT_SYMBOL vmlinux 0x93116544 init_net +EXPORT_SYMBOL vmlinux 0x93124182 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x93134d9a request_key +EXPORT_SYMBOL vmlinux 0x9325c177 netdev_features_change +EXPORT_SYMBOL vmlinux 0x9340f4a0 inet_addr_type +EXPORT_SYMBOL vmlinux 0x93518be1 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938a6eb9 seq_file_path +EXPORT_SYMBOL vmlinux 0x9390f226 ida_destroy +EXPORT_SYMBOL vmlinux 0x93b141ad blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c1da89 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x93c93dd7 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x93cc1731 request_firmware +EXPORT_SYMBOL vmlinux 0x93f2165b blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x93f3e52b acpi_extract_package +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93fee96b bdput +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94054ae2 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x9413b47b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x9420c074 skb_put +EXPORT_SYMBOL vmlinux 0x9428e5d3 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x9431532c ip_options_compile +EXPORT_SYMBOL vmlinux 0x943ac818 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x9453c51c dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x9468e245 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x946b3c78 processors +EXPORT_SYMBOL vmlinux 0x947560a7 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x94798ea0 unload_nls +EXPORT_SYMBOL vmlinux 0x948910b3 tty_register_device +EXPORT_SYMBOL vmlinux 0x948bb1db pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x948e37a0 prepare_binprm +EXPORT_SYMBOL vmlinux 0x94949891 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949771f2 param_get_ulong +EXPORT_SYMBOL vmlinux 0x949b754f mempool_destroy +EXPORT_SYMBOL vmlinux 0x94db26ad dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x94eb0717 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x94fc00e5 dq_data_lock +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x95133623 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x952a296b dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x953d994b locks_init_lock +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954fc257 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x9559f123 sk_free +EXPORT_SYMBOL vmlinux 0x955bec8d msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0x956359f3 key_alloc +EXPORT_SYMBOL vmlinux 0x95845600 flow_cache_init +EXPORT_SYMBOL vmlinux 0x958880b4 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x958ae9e4 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x95b3d842 ps2_command +EXPORT_SYMBOL vmlinux 0x95ee6103 seq_printf +EXPORT_SYMBOL vmlinux 0x95f8a6a4 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x961d1928 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x96220280 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x9632199d fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x963d9d1b param_get_long +EXPORT_SYMBOL vmlinux 0x964b1d40 of_node_get +EXPORT_SYMBOL vmlinux 0x965180b7 register_quota_format +EXPORT_SYMBOL vmlinux 0x966bccdf smp_call_function_many +EXPORT_SYMBOL vmlinux 0x969a6268 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x96af88c8 __inet_hash +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96f38512 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x97067a77 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x9706e866 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x97246014 register_qdisc +EXPORT_SYMBOL vmlinux 0x973180a4 dev_notice +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9743f047 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x974ef2be sockfd_lookup +EXPORT_SYMBOL vmlinux 0x9754d155 of_get_property +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x978dd01c dst_discard_out +EXPORT_SYMBOL vmlinux 0x979750d2 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97b05b32 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x97b0699f sock_wfree +EXPORT_SYMBOL vmlinux 0x97bf6776 i2c_use_client +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97d4c77f revalidate_disk +EXPORT_SYMBOL vmlinux 0x97e4a441 sock_release +EXPORT_SYMBOL vmlinux 0x97f65fe3 md_reload_sb +EXPORT_SYMBOL vmlinux 0x97fdbab9 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user +EXPORT_SYMBOL vmlinux 0x98126c16 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x981b1ffc i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x98232211 netdev_crit +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x9868b9b9 genphy_config_init +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x988e5013 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x98a93216 posix_lock_file +EXPORT_SYMBOL vmlinux 0x98b62324 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98cfe57b napi_gro_frags +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993b3e5a led_update_brightness +EXPORT_SYMBOL vmlinux 0x99430c0c skb_insert +EXPORT_SYMBOL vmlinux 0x994e14ce __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996ffeab inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x9986c360 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x9986ec7d generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x998a1415 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x999f92ea always_delete_dentry +EXPORT_SYMBOL vmlinux 0x99a3cdfa consume_skb +EXPORT_SYMBOL vmlinux 0x99aaf6d4 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x99b1e319 param_get_charp +EXPORT_SYMBOL vmlinux 0x99b4204d compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99f3bd06 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x9a034b43 simple_follow_link +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a20fbc9 cont_write_begin +EXPORT_SYMBOL vmlinux 0x9a29cbc9 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x9a45a55a pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x9a81baaa dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x9a889085 inet_select_addr +EXPORT_SYMBOL vmlinux 0x9a908b80 test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x9ab0fa2b dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af7cb61 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x9afc2b0b inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x9b0c7f54 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b41a1e0 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x9b4883a9 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x9b7cf0b0 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x9b9aacb2 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bb59599 vga_client_register +EXPORT_SYMBOL vmlinux 0x9bbcc5af get_unmapped_area +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc6ef31 add_wait_queue +EXPORT_SYMBOL vmlinux 0x9bcb257b dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x9bcc65a3 get_phy_device +EXPORT_SYMBOL vmlinux 0x9be05dc8 simple_write_begin +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c04ed1a fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5bc552 finish_wait +EXPORT_SYMBOL vmlinux 0x9c61df84 gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x9c9b002d clkdev_add +EXPORT_SYMBOL vmlinux 0x9ca0b4ac kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9ce01bd9 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x9cf17569 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x9d06a06b blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x9d0d5037 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1a5e3a __memcpy +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d772082 input_unregister_device +EXPORT_SYMBOL vmlinux 0x9d87a037 __serio_register_port +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9dcd314b udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x9dfc12fe fddi_type_trans +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e2d9039 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e56df67 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e663a67 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e87f34c scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x9e93a1a7 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ead7c34 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x9eb6f25f sock_no_mmap +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec92582 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x9ed1866a try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x9f009f25 poll_initwait +EXPORT_SYMBOL vmlinux 0x9f0b6db7 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x9f0bf802 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x9f10143b scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x9f11be7e down_killable +EXPORT_SYMBOL vmlinux 0x9f122829 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x9f17558b ll_rw_block +EXPORT_SYMBOL vmlinux 0x9f294f75 qdisc_reset +EXPORT_SYMBOL vmlinux 0x9f33c344 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x9f454d5b padata_stop +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f51e527 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x9f56c494 sock_register +EXPORT_SYMBOL vmlinux 0x9f726c89 __ps2_command +EXPORT_SYMBOL vmlinux 0x9f7754c0 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f914836 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa866f7 kobject_get +EXPORT_SYMBOL vmlinux 0x9fc84097 d_instantiate +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa005510e mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xa00a9d63 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xa01dcb2c input_event +EXPORT_SYMBOL vmlinux 0xa0277fd9 dev_uc_del +EXPORT_SYMBOL vmlinux 0xa0416cd8 dev_warn +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa0510e64 up_read +EXPORT_SYMBOL vmlinux 0xa0591d8e netdev_warn +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 0xa0ad2710 do_splice_to +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c9c43d ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e9f02d blk_peek_request +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa10750b3 save_mount_options +EXPORT_SYMBOL vmlinux 0xa107cb29 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1186574 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa13a3ce4 nf_log_packet +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa1649a0f xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xa170323e __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xa1745ff3 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xa176b461 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xa18961f1 d_set_d_op +EXPORT_SYMBOL vmlinux 0xa199072c devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xa1b27e5b posix_test_lock +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bb2f1c noop_fsync +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d607f2 inet6_protos +EXPORT_SYMBOL vmlinux 0xa1d84f65 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xa1dba1d6 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1ea64ba dquot_quota_on +EXPORT_SYMBOL vmlinux 0xa1f23ac7 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xa1f5257d mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xa1ff80ce dentry_path_raw +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2176c1d netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xa2236eae crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xa2238609 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xa24d458b filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xa25b6569 iterate_dir +EXPORT_SYMBOL vmlinux 0xa26caae1 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xa26ff43f tcp_close +EXPORT_SYMBOL vmlinux 0xa281bde3 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xa282bac0 pci_find_bus +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28a62af scsi_execute +EXPORT_SYMBOL vmlinux 0xa28fd5a5 dma_find_channel +EXPORT_SYMBOL vmlinux 0xa29157c2 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xa29ade1a nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2ddd694 dump_truncate +EXPORT_SYMBOL vmlinux 0xa2e43b7d ppp_channel_index +EXPORT_SYMBOL vmlinux 0xa30383ef __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa32dcafb skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xa3333013 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xa36f7e12 have_submounts +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3803adb fb_blank +EXPORT_SYMBOL vmlinux 0xa3a0fc36 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xa3ccec3c ipv4_specific +EXPORT_SYMBOL vmlinux 0xa3d94705 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xa3df6451 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xa3dfd924 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xa3e17f56 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xa3e926ba tcp_prequeue +EXPORT_SYMBOL vmlinux 0xa3f8bbbb inet6_ioctl +EXPORT_SYMBOL vmlinux 0xa4125dc7 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xa43396fa of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xa443cdeb kernel_param_lock +EXPORT_SYMBOL vmlinux 0xa44a4627 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xa44bed52 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa45fa065 phy_connect +EXPORT_SYMBOL vmlinux 0xa46bb738 pci_clear_master +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa473b9b6 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0xa4778dc3 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xa47f024d blk_rq_init +EXPORT_SYMBOL vmlinux 0xa4b63b7f param_set_short +EXPORT_SYMBOL vmlinux 0xa4de4bcf flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xa4fd7551 netdev_err +EXPORT_SYMBOL vmlinux 0xa4ffeb0d finish_no_open +EXPORT_SYMBOL vmlinux 0xa500e30a pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xa513ab79 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a193a2 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5a792a1 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xa5bea55f __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xa5d39978 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xa60228c1 get_cached_acl +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa657e348 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6b74c2d fget +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6db5498 block_write_full_page +EXPORT_SYMBOL vmlinux 0xa6dbd526 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xa6e15a38 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7729c00 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xa779d280 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xa784cb2b compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0xa784dba6 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xa7a7dcda d_obtain_alias +EXPORT_SYMBOL vmlinux 0xa7ad93db tso_build_hdr +EXPORT_SYMBOL vmlinux 0xa7be526f _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xa7c15352 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xa7c2a160 init_task +EXPORT_SYMBOL vmlinux 0xa7c7fe6c param_ops_long +EXPORT_SYMBOL vmlinux 0xa7e19dec __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xa809db06 vfs_write +EXPORT_SYMBOL vmlinux 0xa80c00de md_write_end +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84847c1 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xa86605c0 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xa86eff0e km_is_alive +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87cf413 clear_bit +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8d2e34b of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa90346db posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xa908ac7e tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9227a00 devm_release_resource +EXPORT_SYMBOL vmlinux 0xa9286ef4 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xa931b1ad bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xa942fd69 kill_litter_super +EXPORT_SYMBOL vmlinux 0xa957c910 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xa96b4f1a task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97f608b jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xa994c670 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9b248b6 idr_for_each +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cd46e6 get_super +EXPORT_SYMBOL vmlinux 0xa9eb0912 pnp_stop_dev +EXPORT_SYMBOL vmlinux 0xa9ecae9d __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xaa0eec55 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xaa13b5b9 freeze_super +EXPORT_SYMBOL vmlinux 0xaa6154aa kernel_write +EXPORT_SYMBOL vmlinux 0xaa6e4be3 phy_device_create +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa9dbc16 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xaaa22935 xfrm_register_type +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 0xaafb4882 register_key_type +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab17ee9d serio_open +EXPORT_SYMBOL vmlinux 0xab2269c8 mmc_release_host +EXPORT_SYMBOL vmlinux 0xab2f3e19 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xab40cca9 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab5da451 wait_iff_congested +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 0xab8cb26e neigh_lookup +EXPORT_SYMBOL vmlinux 0xabaa58aa neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xabb1fdba d_tmpfile +EXPORT_SYMBOL vmlinux 0xabbb4993 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xabbbd444 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xabc2eadd sk_dst_check +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcd77ab kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xac055a8d max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0fadae mmc_detect_change +EXPORT_SYMBOL vmlinux 0xac15b46d of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac23e59f fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xac27338f padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac67ba64 vfs_symlink +EXPORT_SYMBOL vmlinux 0xac732a81 param_set_byte +EXPORT_SYMBOL vmlinux 0xac8b2dbd follow_down +EXPORT_SYMBOL vmlinux 0xac8bd110 file_remove_privs +EXPORT_SYMBOL vmlinux 0xac9d2d83 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb6dd67 napi_get_frags +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xacc5ebf5 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacde80e8 generic_show_options +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf9fc0c fb_class +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad13f16e vfs_fsync +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad19dbcf pneigh_lookup +EXPORT_SYMBOL vmlinux 0xad1a049e d_path +EXPORT_SYMBOL vmlinux 0xad240116 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xad32af60 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xad424c75 __block_write_begin +EXPORT_SYMBOL vmlinux 0xad5cebb8 blk_get_request +EXPORT_SYMBOL vmlinux 0xad6748ed udp_add_offload +EXPORT_SYMBOL vmlinux 0xad678351 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xada96d88 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xadc6b131 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xadc98ecd __quota_error +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae18c05c netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xae4a1bda csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xae82c782 set_blocksize +EXPORT_SYMBOL vmlinux 0xae8c4d0c set_bit +EXPORT_SYMBOL vmlinux 0xae90638e bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaee355f4 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xaeff65b3 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xaf0e4989 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xaf359581 kernel_listen +EXPORT_SYMBOL vmlinux 0xaf35fd2e amba_find_device +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf483e31 sk_wait_data +EXPORT_SYMBOL vmlinux 0xaf532bd2 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xaf534836 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xaf5e0735 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xaf60efbb bio_add_page +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf6b9bca bioset_create +EXPORT_SYMBOL vmlinux 0xaf6bdf89 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xaf787466 nd_integrity_init +EXPORT_SYMBOL vmlinux 0xaf83baf2 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xaf8fce64 kernel_connect +EXPORT_SYMBOL vmlinux 0xafb2caa2 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xafbd17bf linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xafd4b945 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xb00dcad5 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xb02fef2b mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xb031647e peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xb049643f netpoll_setup +EXPORT_SYMBOL vmlinux 0xb04ac3c9 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0836693 vme_irq_generate +EXPORT_SYMBOL vmlinux 0xb090b7b5 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c00e04 bio_unmap_user +EXPORT_SYMBOL vmlinux 0xb0c82236 sock_sendmsg +EXPORT_SYMBOL vmlinux 0xb0d769c3 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xb0d96a65 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xb0dcfb32 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb10ae472 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xb1165775 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xb11d82a0 sock_edemux +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12d9cea mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xb131c3cf single_release +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb14b4fa0 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xb15c238c mount_pseudo +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb1671d55 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xb167655c pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xb1893ea2 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xb1a13c75 pci_request_region +EXPORT_SYMBOL vmlinux 0xb1bf18d9 udp_proc_register +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cf951e tcp_check_req +EXPORT_SYMBOL vmlinux 0xb1d74d5a phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xb1f69642 read_cache_page +EXPORT_SYMBOL vmlinux 0xb207bde3 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xb20ecf88 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xb22ad652 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xb2366359 release_pages +EXPORT_SYMBOL vmlinux 0xb241a9e5 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xb2471e65 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xb247b8a5 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2a18969 bio_reset +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d8324c generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xb2f2c17b inet_release +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb2fb9293 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xb322e292 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb342d9f4 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb34ba20d mmc_free_host +EXPORT_SYMBOL vmlinux 0xb3507790 console_stop +EXPORT_SYMBOL vmlinux 0xb3646b2e generic_fillattr +EXPORT_SYMBOL vmlinux 0xb37bee52 rename_lock +EXPORT_SYMBOL vmlinux 0xb37e9283 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xb39be34f __register_nls +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3d96439 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xb3dc5319 udplite_prot +EXPORT_SYMBOL vmlinux 0xb3df6356 simple_fill_super +EXPORT_SYMBOL vmlinux 0xb3e148d3 nobh_write_end +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb40bb20e ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb445f23b locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xb463de36 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xb466f6fc dm_put_device +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb470d628 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xb47189b5 reservation_ww_class +EXPORT_SYMBOL vmlinux 0xb475d648 make_kgid +EXPORT_SYMBOL vmlinux 0xb485d32c get_user_pages +EXPORT_SYMBOL vmlinux 0xb4a09220 eth_header_cache +EXPORT_SYMBOL vmlinux 0xb4e36508 param_get_ushort +EXPORT_SYMBOL vmlinux 0xb4f759ab acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xb4fb9d1d drop_super +EXPORT_SYMBOL vmlinux 0xb4fc735b idr_remove +EXPORT_SYMBOL vmlinux 0xb5134ca2 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xb555062a vfs_iter_read +EXPORT_SYMBOL vmlinux 0xb55ae947 md_update_sb +EXPORT_SYMBOL vmlinux 0xb5618154 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xb566c3ff sg_miter_start +EXPORT_SYMBOL vmlinux 0xb56d27b0 lro_receive_skb +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb578ebd1 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xb57e4228 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xb58420ff inode_set_flags +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5af1011 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5dbe2ea dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xb5ecfcc8 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xb61c6708 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb6267f8c mount_bdev +EXPORT_SYMBOL vmlinux 0xb629fa30 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xb633af39 dump_skip +EXPORT_SYMBOL vmlinux 0xb643876c dev_add_pack +EXPORT_SYMBOL vmlinux 0xb65855db audit_log_task_info +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb687b49d page_readlink +EXPORT_SYMBOL vmlinux 0xb68a0564 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69f9b00 mempool_free +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b7020a skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xb6bcb3bf jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xb6bd933f security_path_mkdir +EXPORT_SYMBOL vmlinux 0xb6c297b3 file_ns_capable +EXPORT_SYMBOL vmlinux 0xb6d32686 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb6e35b16 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xb6fe505d __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xb704dc60 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xb70623a4 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xb71c76df mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xb71fb74f _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xb722867d genl_unregister_family +EXPORT_SYMBOL vmlinux 0xb736ec33 vme_bus_num +EXPORT_SYMBOL vmlinux 0xb7455a11 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74caff7 gen_pool_free +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb788e236 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xb78b389f tty_set_operations +EXPORT_SYMBOL vmlinux 0xb78c5067 ping_prot +EXPORT_SYMBOL vmlinux 0xb7aa6361 address_space_init_once +EXPORT_SYMBOL vmlinux 0xb7abc9f4 bio_endio +EXPORT_SYMBOL vmlinux 0xb7c4e6b6 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7f511da lockref_get +EXPORT_SYMBOL vmlinux 0xb7fe8b72 page_put_link +EXPORT_SYMBOL vmlinux 0xb80b7b2d create_empty_buffers +EXPORT_SYMBOL vmlinux 0xb82040c3 cdev_add +EXPORT_SYMBOL vmlinux 0xb8444f2a iterate_fd +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb885e3d8 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xb89dd85f tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xb8a06d6d pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xb8ad81ae of_get_address +EXPORT_SYMBOL vmlinux 0xb8bd4e14 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xb8fc9062 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xb9099c73 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xb916838c dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xb92e3af3 acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0xb9319a77 blk_get_queue +EXPORT_SYMBOL vmlinux 0xb932faeb pnp_start_dev +EXPORT_SYMBOL vmlinux 0xb93be6d6 dev_trans_start +EXPORT_SYMBOL vmlinux 0xb93c4e20 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xb9421db6 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xb9477ab6 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xb94822c4 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xb949c4d4 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xb9532a9d inet_bind +EXPORT_SYMBOL vmlinux 0xb9541f1e balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xb956ddbf blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xb972690f dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xb9b72f92 udp_del_offload +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9ecad78 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xb9f27831 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xb9fadbe6 from_kuid +EXPORT_SYMBOL vmlinux 0xba0e4490 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xba220ba0 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba2dc0c0 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba38d069 tcp_proc_register +EXPORT_SYMBOL vmlinux 0xba3b1726 page_symlink +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba49fbb2 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xba6773a9 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xba6a9b41 of_device_alloc +EXPORT_SYMBOL vmlinux 0xba79a6da vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xbaae0573 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xbabb8a90 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xbabf27ef scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xbad08266 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xbad93f6f i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +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 0xbb6544ad proc_mkdir +EXPORT_SYMBOL vmlinux 0xbb7b31db nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xbb7c5680 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xbb943f51 dquot_commit +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9b5942 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xbbae51d8 elevator_exit +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbc37141 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xbbeb87be blk_run_queue_async +EXPORT_SYMBOL vmlinux 0xbc0cfb7d audit_log +EXPORT_SYMBOL vmlinux 0xbc0e04b0 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc33507c __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xbc464585 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xbc62411f tty_port_close_start +EXPORT_SYMBOL vmlinux 0xbc6e69c9 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xbc882281 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xbcbc5287 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccc8641 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xbccc906f blk_sync_queue +EXPORT_SYMBOL vmlinux 0xbccd112f migrate_page +EXPORT_SYMBOL vmlinux 0xbce97af8 dquot_file_open +EXPORT_SYMBOL vmlinux 0xbceed278 of_node_to_nid +EXPORT_SYMBOL vmlinux 0xbd0cf726 __module_get +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd4326b0 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd4df33b vfs_unlink +EXPORT_SYMBOL vmlinux 0xbd5e15c8 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xbd6a870a tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd822ad5 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdbc13a1 complete +EXPORT_SYMBOL vmlinux 0xbdc014bb generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xbdc086d1 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xbdcbc403 tty_check_change +EXPORT_SYMBOL vmlinux 0xbdde4f8d dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xbe08cfb0 key_unlink +EXPORT_SYMBOL vmlinux 0xbe103b35 build_skb +EXPORT_SYMBOL vmlinux 0xbe126f1e eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xbe1add73 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe1fc414 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xbe365bb3 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xbe7c3b6f gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xbe817b6e __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xbea0dd05 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xbeb4907d netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xbebc9b14 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xbee775c9 kill_pid +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef7ca80 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xbefdb1e2 get_disk +EXPORT_SYMBOL vmlinux 0xbf0de9e1 tty_throttle +EXPORT_SYMBOL vmlinux 0xbf2ba4af netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xbf38df9e devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xbf5f576d page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xbf6eb571 give_up_console +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf92a3f0 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xbf9337ce pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xbf9768de mii_ethtool_sset +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa3100d textsearch_unregister +EXPORT_SYMBOL vmlinux 0xbfb346b3 phy_driver_register +EXPORT_SYMBOL vmlinux 0xbfc12f4c __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xbfd1ca17 skb_pad +EXPORT_SYMBOL vmlinux 0xbfda3b04 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff266cf genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xbffb61b8 unregister_netdev +EXPORT_SYMBOL vmlinux 0xc012d515 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xc01501b3 account_page_redirty +EXPORT_SYMBOL vmlinux 0xc047a935 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xc057dd57 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xc060c08c kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xc064dd05 datagram_poll +EXPORT_SYMBOL vmlinux 0xc066e46c inet6_getname +EXPORT_SYMBOL vmlinux 0xc067d973 seq_release_private +EXPORT_SYMBOL vmlinux 0xc06b78f8 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0a0b55e __scm_destroy +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0c09124 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xc0ea736f inet_put_port +EXPORT_SYMBOL vmlinux 0xc0fe73eb dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xc1080829 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xc138dd56 dma_pool_create +EXPORT_SYMBOL vmlinux 0xc13bc90f param_ops_int +EXPORT_SYMBOL vmlinux 0xc13d91c8 follow_pfn +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc16cd9a5 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xc171cb73 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xc172313a __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xc18f2b6b pci_select_bars +EXPORT_SYMBOL vmlinux 0xc192b1a3 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xc19b7eaa scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xc1a272ef phy_start_aneg +EXPORT_SYMBOL vmlinux 0xc1c57159 mdiobus_free +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f0f2bf dquot_disable +EXPORT_SYMBOL vmlinux 0xc1f25dcc blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xc1f88337 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xc2063aa5 seq_dentry +EXPORT_SYMBOL vmlinux 0xc2349918 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xc25399b3 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xc2917c94 vme_bus_type +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2c321b9 simple_link +EXPORT_SYMBOL vmlinux 0xc2e024f3 fput +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f381ae security_d_instantiate +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc325f007 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xc3283cb5 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xc3319294 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xc36f3397 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xc37a3afa key_validate +EXPORT_SYMBOL vmlinux 0xc3a7be25 lg_global_lock +EXPORT_SYMBOL vmlinux 0xc3aa4c9a tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xc3b9bd9b blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xc3bfd1e6 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c49a2e add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xc4069439 mpage_writepages +EXPORT_SYMBOL vmlinux 0xc419c214 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xc41b754a inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xc43c99fe pci_scan_bus +EXPORT_SYMBOL vmlinux 0xc44c0140 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xc46273fd __dst_free +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a5d564 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xc4b52bbb pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xc4c2999a devm_memunmap +EXPORT_SYMBOL vmlinux 0xc4e83e99 get_super_thawed +EXPORT_SYMBOL vmlinux 0xc523eab1 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xc554c1d7 nvm_register +EXPORT_SYMBOL vmlinux 0xc55a76a2 make_kprojid +EXPORT_SYMBOL vmlinux 0xc55cdc41 bio_init +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b5e401 sock_create_kern +EXPORT_SYMBOL vmlinux 0xc5b7c4b5 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xc5bbfb53 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xc5d228a4 skb_find_text +EXPORT_SYMBOL vmlinux 0xc5f3157d devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6128a3e devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xc62af186 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc634a44a of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0xc640d513 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xc65a4648 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xc65ed682 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc6783270 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xc6890514 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xc6a24026 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xc6a9bc7a uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6b55371 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cebfc3 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xc6d0d4dd sock_i_ino +EXPORT_SYMBOL vmlinux 0xc6e38963 param_ops_ulong +EXPORT_SYMBOL vmlinux 0xc7021e64 kobject_init +EXPORT_SYMBOL vmlinux 0xc70f240d jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7273f26 gnttab_free_pages +EXPORT_SYMBOL vmlinux 0xc74e974c netdev_info +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc761d927 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xc7691f8f _dev_info +EXPORT_SYMBOL vmlinux 0xc7715cd0 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xc77c6b9d blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc78b6a2a __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xc792dba8 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7add092 cdrom_open +EXPORT_SYMBOL vmlinux 0xc7be50cb skb_push +EXPORT_SYMBOL vmlinux 0xc7cfd2ab gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xc7dd82aa acl_by_type +EXPORT_SYMBOL vmlinux 0xc7e80bca dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc812e4c4 mount_ns +EXPORT_SYMBOL vmlinux 0xc827fd50 sock_from_file +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83f5cfc cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xc846ff68 napi_complete_done +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc855b9b5 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc8569bb2 inet_add_offload +EXPORT_SYMBOL vmlinux 0xc8583e20 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xc869ecf2 inet_del_offload +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc874042c of_get_min_tck +EXPORT_SYMBOL vmlinux 0xc88fc9e7 deactivate_super +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 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b83a0b find_get_entry +EXPORT_SYMBOL vmlinux 0xc8bf8960 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xc8c70c9b vfs_create +EXPORT_SYMBOL vmlinux 0xc8ca3227 unregister_console +EXPORT_SYMBOL vmlinux 0xc8d91416 mmc_request_done +EXPORT_SYMBOL vmlinux 0xc8da3e9c phy_init_eee +EXPORT_SYMBOL vmlinux 0xc90dc5bf pci_get_subsys +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91ed2e6 elevator_init +EXPORT_SYMBOL vmlinux 0xc9315e38 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xc9425275 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96b03ca fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xc96ebd45 sock_no_listen +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc98f94b5 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9d964f7 misc_deregister +EXPORT_SYMBOL vmlinux 0xc9e19a21 i2c_master_send +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca466a28 dev_mc_del +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca8324d2 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca87862a padata_do_serial +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca8c0992 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa08955 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xcabc7888 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcac1913c unregister_md_personality +EXPORT_SYMBOL vmlinux 0xcadd2a31 padata_free +EXPORT_SYMBOL vmlinux 0xcaeeef49 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xcaef4496 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb128141 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0xcb1481a4 seq_write +EXPORT_SYMBOL vmlinux 0xcb211a60 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xcb4ace6a pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xcb4d9dec d_walk +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb9e61f6 seq_puts +EXPORT_SYMBOL vmlinux 0xcba36169 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xcba53510 icmpv6_send +EXPORT_SYMBOL vmlinux 0xcba89e99 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbbcff21 free_buffer_head +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbd1f291 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xcbe162f9 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xcbead854 netdev_printk +EXPORT_SYMBOL vmlinux 0xcbff5e68 mempool_create +EXPORT_SYMBOL vmlinux 0xcc1b9465 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xcc1fb65e sk_mc_loop +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2adf25 sock_init_data +EXPORT_SYMBOL vmlinux 0xcc4bcedf in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc58fce5 param_set_int +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcca38522 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xcca99529 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xccb0106a sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccc94100 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xcccf60fc lwtunnel_output +EXPORT_SYMBOL vmlinux 0xccdfdbd3 keyring_alloc +EXPORT_SYMBOL vmlinux 0xcd1f955a fd_install +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd276872 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd353ae0 dquot_drop +EXPORT_SYMBOL vmlinux 0xcd4f1694 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xcd524864 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd5d3330 I_BDEV +EXPORT_SYMBOL vmlinux 0xcd7bb870 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xcd7e8b49 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdcd18f8 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xcdd0cf09 netdev_change_features +EXPORT_SYMBOL vmlinux 0xcdec05bc ata_print_version +EXPORT_SYMBOL vmlinux 0xcdf85935 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +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 0xce5e2a79 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xce624ceb bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce863623 param_set_bint +EXPORT_SYMBOL vmlinux 0xce9f93a3 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xcea68341 proc_set_user +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceae9117 sk_net_capable +EXPORT_SYMBOL vmlinux 0xceb1717d completion_done +EXPORT_SYMBOL vmlinux 0xceba4be0 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xcebea6ef nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xcebf7c2e jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xcec36e97 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xcecbff78 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf04a447 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xcf1a5191 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xcf2e7783 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xcf3150e9 current_in_userns +EXPORT_SYMBOL vmlinux 0xcf52f0ab __dax_fault +EXPORT_SYMBOL vmlinux 0xcf64ed42 kthread_stop +EXPORT_SYMBOL vmlinux 0xcf94eb96 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xcfa87b0d elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xcfb4a296 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xcfe4457a param_set_ullong +EXPORT_SYMBOL vmlinux 0xd00a2a3d crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xd00df305 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xd01119d4 udp_disconnect +EXPORT_SYMBOL vmlinux 0xd018edf2 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xd0440edc devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xd05f39f0 sget_userns +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd077fc0d dev_get_phys_port_name +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 0xd0ca4d47 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xd0e7024a 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 0xd109bc05 kill_pgrp +EXPORT_SYMBOL vmlinux 0xd112fac2 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xd11a709c dm_io +EXPORT_SYMBOL vmlinux 0xd1511c54 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xd152dcd1 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd17a223d mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd183c0c9 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xd18ff827 cpu_present_mask +EXPORT_SYMBOL vmlinux 0xd19fca92 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xd1aeffb6 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xd1b252ec mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xd1b535f7 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xd1c18043 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xd1ce2e8e filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xd1d81191 pci_enable_device +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1def640 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xd1e9e482 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xd1eb9085 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xd201f721 dump_align +EXPORT_SYMBOL vmlinux 0xd2179923 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xd24ba4c1 fence_free +EXPORT_SYMBOL vmlinux 0xd251ccaf blkdev_get +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 0xd268dcd9 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd293f06f vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xd29610f1 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xd29a613c thaw_bdev +EXPORT_SYMBOL vmlinux 0xd2a546fe mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xd2a5f96f pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd2a860b1 f_setown +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dccf75 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xd2e01852 dcb_setapp +EXPORT_SYMBOL vmlinux 0xd2e0a375 iunique +EXPORT_SYMBOL vmlinux 0xd2e96828 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xd2f91332 __devm_request_region +EXPORT_SYMBOL vmlinux 0xd2fb9eb8 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3259d65 test_and_set_bit +EXPORT_SYMBOL vmlinux 0xd331e2e7 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xd354ba0f inode_init_always +EXPORT_SYMBOL vmlinux 0xd3559ef4 __memset +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd37359e0 sock_wake_async +EXPORT_SYMBOL vmlinux 0xd39c812b tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xd3b12742 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3d194e7 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xd3e9f474 __get_user_pages +EXPORT_SYMBOL vmlinux 0xd3f09f48 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xd3f39f14 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xd410dd17 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xd41fe818 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd421e6ac pci_claim_resource +EXPORT_SYMBOL vmlinux 0xd42bae36 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xd42e0557 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd4762163 sock_no_connect +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48af93b dma_async_device_register +EXPORT_SYMBOL vmlinux 0xd48c999d ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4bd8180 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xd4c77349 iommu_put_dma_cookie +EXPORT_SYMBOL vmlinux 0xd4d18d5e tcf_hash_search +EXPORT_SYMBOL vmlinux 0xd4e7aa3d ioremap_cache +EXPORT_SYMBOL vmlinux 0xd4e8a243 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xd5098656 param_set_uint +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd51015d1 input_inject_event +EXPORT_SYMBOL vmlinux 0xd5288b40 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xd5324b8b vga_get +EXPORT_SYMBOL vmlinux 0xd53addf5 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd576b6b5 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0xd578a213 md_finish_reshape +EXPORT_SYMBOL vmlinux 0xd58c33d7 vfs_mknod +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd596e1d1 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xd59e8267 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xd5c3f666 dev_alert +EXPORT_SYMBOL vmlinux 0xd5d81296 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xd5e0282a simple_rename +EXPORT_SYMBOL vmlinux 0xd5f2f3f6 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xd5faebe7 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xd5fe5631 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xd60103ec blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xd60250c4 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xd6085af8 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xd60ccbb2 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61f5a6f redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xd6293e17 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63c3929 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xd64323a3 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd655f199 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd6707efd keyring_search +EXPORT_SYMBOL vmlinux 0xd676b9f8 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6921ef5 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xd6a40a83 netif_napi_del +EXPORT_SYMBOL vmlinux 0xd6c469bc phy_disconnect +EXPORT_SYMBOL vmlinux 0xd6c7f4ec devfreq_add_governor +EXPORT_SYMBOL vmlinux 0xd6d540b9 simple_unlink +EXPORT_SYMBOL vmlinux 0xd6e7169c simple_setattr +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd707ce76 user_revoke +EXPORT_SYMBOL vmlinux 0xd70cbb66 clear_nlink +EXPORT_SYMBOL vmlinux 0xd71d7f44 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xd721e88f elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xd722da4f scsi_print_sense +EXPORT_SYMBOL vmlinux 0xd7247688 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xd73896fb inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xd73cef21 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xd74d7713 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xd758c8b9 file_update_time +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd78327f9 scsi_register_interface +EXPORT_SYMBOL vmlinux 0xd79a2d27 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xd7adaf7b vme_master_request +EXPORT_SYMBOL vmlinux 0xd7bd2744 tty_devnum +EXPORT_SYMBOL vmlinux 0xd7be8ee1 get_fs_type +EXPORT_SYMBOL vmlinux 0xd7defaaa mpage_readpage +EXPORT_SYMBOL vmlinux 0xd7e4c217 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xd7e4d839 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f389d8 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xd8046a15 __kernel_write +EXPORT_SYMBOL vmlinux 0xd820ac59 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xd82fc5a6 unlock_page +EXPORT_SYMBOL vmlinux 0xd84e1452 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xd86d0417 force_sig +EXPORT_SYMBOL vmlinux 0xd89a2244 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b842cf ip_do_fragment +EXPORT_SYMBOL vmlinux 0xd8d66e70 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e8c5ae write_cache_pages +EXPORT_SYMBOL vmlinux 0xd8e9e660 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xd8f31eb3 dst_init +EXPORT_SYMBOL vmlinux 0xd8f3c352 kernel_read +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd90f21cc neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xd92a362d tcp_poll +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd9468197 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0xd96adb07 pnp_is_active +EXPORT_SYMBOL vmlinux 0xd9710b6e mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xd978f3af get_task_io_context +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9b878e7 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xd9bd76d3 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9da4bf4 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xd9f28bc4 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xd9f854bd bio_map_kern +EXPORT_SYMBOL vmlinux 0xda01479c mempool_create_node +EXPORT_SYMBOL vmlinux 0xda0ac00a lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xda0e61a2 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xda114cf0 register_console +EXPORT_SYMBOL vmlinux 0xda180445 dentry_unhash +EXPORT_SYMBOL vmlinux 0xda1c9ffd set_bh_page +EXPORT_SYMBOL vmlinux 0xda26caa0 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xda28a8b9 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xda2daeff pci_get_slot +EXPORT_SYMBOL vmlinux 0xda3c4404 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda409406 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xda6d5d9d vme_lm_request +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7fe346 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fa23c xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xda9fc7ae kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xdaa8f036 dm_get_device +EXPORT_SYMBOL vmlinux 0xdab449a0 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xdabf0377 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac5091e __elv_add_request +EXPORT_SYMBOL vmlinux 0xdac8574f phy_print_status +EXPORT_SYMBOL vmlinux 0xdacc9684 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaf4c660 dquot_initialize +EXPORT_SYMBOL vmlinux 0xdaf67000 nonseekable_open +EXPORT_SYMBOL vmlinux 0xdb001960 of_phy_connect +EXPORT_SYMBOL vmlinux 0xdb11ec2a jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xdb1ffd63 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xdb2ae8f0 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xdb38cf5a mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb421575 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb75b808 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb87a79e padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xdb8e4777 param_set_ushort +EXPORT_SYMBOL vmlinux 0xdbc01c12 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xdbec73e5 iget_failed +EXPORT_SYMBOL vmlinux 0xdbef7ae7 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xdbf319fc find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xdc01a706 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc05920f ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xdc083801 loop_backing_file +EXPORT_SYMBOL vmlinux 0xdc0a0b7c blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xdc132641 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1d3507 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc4af10c pci_pme_capable +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc6ddf18 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xdc7fa4f4 __frontswap_store +EXPORT_SYMBOL vmlinux 0xdc83beba inet_frags_fini +EXPORT_SYMBOL vmlinux 0xdc8897ff blk_init_tags +EXPORT_SYMBOL vmlinux 0xdc954dba vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xdc9a863a input_set_capability +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcdeff9e pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xdce1725e of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xdce61f2a pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xdcf3ea11 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xdcf651ab backlight_force_update +EXPORT_SYMBOL vmlinux 0xdd03b04f xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xdd04457e tty_do_resize +EXPORT_SYMBOL vmlinux 0xdd1f5221 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xdd2093f1 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xdd349708 scsi_print_command +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd74af14 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xdda586a6 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xddbee1b9 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xddc08b6b skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xde0ed188 tty_mutex +EXPORT_SYMBOL vmlinux 0xde20c9dc inode_init_owner +EXPORT_SYMBOL vmlinux 0xde22b71e skb_split +EXPORT_SYMBOL vmlinux 0xde2b8d02 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xde2bea13 da903x_query_status +EXPORT_SYMBOL vmlinux 0xde2d80b6 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xde370c45 start_tty +EXPORT_SYMBOL vmlinux 0xde434656 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xde5f7d3a bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde670e1b tty_port_put +EXPORT_SYMBOL vmlinux 0xde730b39 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xde760f42 find_lock_entry +EXPORT_SYMBOL vmlinux 0xde8300cd scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9c7c0e empty_zero_page +EXPORT_SYMBOL vmlinux 0xdec20146 vfs_getattr +EXPORT_SYMBOL vmlinux 0xded48618 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xdeddcc58 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xdee576d1 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xdef3e770 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xdefc4a0f mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xdf05e126 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf166ff1 kobject_add +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf37dc1d con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xdf47300b ata_link_printk +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf620341 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xdf653304 vga_put +EXPORT_SYMBOL vmlinux 0xdf803f98 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf92a1dd ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xdf9932df sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xdfa50dc0 devm_clk_get +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfc7514f locks_copy_lock +EXPORT_SYMBOL vmlinux 0xdff86e9e mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe010b7d3 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xe0268e45 blk_start_request +EXPORT_SYMBOL vmlinux 0xe0437d3e dev_open +EXPORT_SYMBOL vmlinux 0xe0463b03 init_special_inode +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0656110 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xe069a243 scsi_report_opcode +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 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0ddef88 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xe1091422 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xe110189e ida_pre_get +EXPORT_SYMBOL vmlinux 0xe111ceee submit_bio +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe115a238 of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xe11f3cbc _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1379938 input_open_device +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe13da6f2 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xe14daa27 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1770193 simple_empty +EXPORT_SYMBOL vmlinux 0xe180ce16 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xe189d160 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xe1af1140 vfs_llseek +EXPORT_SYMBOL vmlinux 0xe1b60f25 kobject_put +EXPORT_SYMBOL vmlinux 0xe1bd8c57 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xe1ddc95e cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xe1dfe4bc devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xe1fc298b sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20306a0 d_move +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe23ab64f irq_to_desc +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe24eda8a md_check_recovery +EXPORT_SYMBOL vmlinux 0xe254f82b blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xe2934237 kset_unregister +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a2573a ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xe2a4804a input_close_device +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e11740 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xe2f094b0 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fe592a serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xe3006fad led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xe30f9448 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe3199bcc ihold +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe31ac791 del_gendisk +EXPORT_SYMBOL vmlinux 0xe339f991 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xe3837f66 km_policy_expired +EXPORT_SYMBOL vmlinux 0xe38d9535 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xe3a2e635 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3b42790 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d5b9fc uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe40be7b5 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xe452b1f3 irq_set_chip +EXPORT_SYMBOL vmlinux 0xe453c964 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xe45ee0f2 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xe46b26d1 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xe4715cd4 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xe4a173f6 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xe4aed02c pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xe4c34517 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4f69ce1 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xe513a145 dev_load +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52fa321 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xe53e9654 mii_link_ok +EXPORT_SYMBOL vmlinux 0xe54a5d8a seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xe54c094f fb_set_suspend +EXPORT_SYMBOL vmlinux 0xe56553be neigh_xmit +EXPORT_SYMBOL vmlinux 0xe574c43f tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57a49f2 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xe57f60e7 sock_no_bind +EXPORT_SYMBOL vmlinux 0xe5866b8f sk_common_release +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5c5196d __bforget +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5cd3a8b twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xe5dc1455 security_inode_permission +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f5e692 register_shrinker +EXPORT_SYMBOL vmlinux 0xe5f86ca3 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xe62e842a acpi_device_hid +EXPORT_SYMBOL vmlinux 0xe631e2e0 down_write +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe688122e skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe707cbf4 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xe737061b forget_cached_acl +EXPORT_SYMBOL vmlinux 0xe748d75b iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xe74c1cb6 sock_rfree +EXPORT_SYMBOL vmlinux 0xe74dd116 security_path_mknod +EXPORT_SYMBOL vmlinux 0xe7621323 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xe762a06b netif_device_attach +EXPORT_SYMBOL vmlinux 0xe77af827 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe79b47ca pcim_iomap +EXPORT_SYMBOL vmlinux 0xe7a20c80 __neigh_create +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7ea8e52 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xe7f0fab7 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xe8085271 udp_seq_open +EXPORT_SYMBOL vmlinux 0xe8164090 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82dbd3a scsi_init_io +EXPORT_SYMBOL vmlinux 0xe833571a jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xe8390f06 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xe83d0fe2 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xe844df87 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xe84e2209 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xe858c915 cdev_del +EXPORT_SYMBOL vmlinux 0xe8629f85 vfs_writev +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87c879b simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b68fb8 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8cd61a2 input_grab_device +EXPORT_SYMBOL vmlinux 0xe8dde085 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xe8e8e055 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xe8ea4089 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe919cc08 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xe91e2be1 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xe92867f4 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xe928af09 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xe9432d8c get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xe945f315 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe97849f8 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xe9b686ee i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1cf685 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xea54be0e dqput +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea83f32b audit_log_start +EXPORT_SYMBOL vmlinux 0xea8d1a81 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xeaba757f pci_remove_bus +EXPORT_SYMBOL vmlinux 0xeacc06f7 fence_signal +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeaf82168 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xeafde6b9 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xeb100e42 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xeb1943ed netdev_update_features +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb384deb pci_iomap_range +EXPORT_SYMBOL vmlinux 0xeb40a063 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb66cb35 key_invalidate +EXPORT_SYMBOL vmlinux 0xeb73eaa6 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xeb7ce9a2 path_nosuid +EXPORT_SYMBOL vmlinux 0xeb93a66e udp_poll +EXPORT_SYMBOL vmlinux 0xeb9e8e0c inet_sendpage +EXPORT_SYMBOL vmlinux 0xebb11f1f jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xebb8d65b unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xebd78a46 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xec092bb2 generic_removexattr +EXPORT_SYMBOL vmlinux 0xec19b42e inode_add_bytes +EXPORT_SYMBOL vmlinux 0xec2e249f phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec80fb67 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xecb45ebf __get_page_tail +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xece304e6 d_alloc +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed0e0cf6 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xed433664 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed610247 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xed647658 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xed7b2ffd try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xed83de4e elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xed97a88e sk_ns_capable +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda12459 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedbcc9d1 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xedc11f22 nvm_register_target +EXPORT_SYMBOL vmlinux 0xedcd2825 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xedd95d14 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xede5cd02 register_cdrom +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf3d44b unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee39ed59 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xee43b816 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xee495f55 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xee6a8033 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xee71a6be mii_check_media +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee81a8aa file_path +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee95190d devm_kvasprintf +EXPORT_SYMBOL vmlinux 0xeea3a66c insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeb31aab remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeed27f2e dev_deactivate +EXPORT_SYMBOL vmlinux 0xeeeba9fa tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef011b6f scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xef03adb5 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xef1aea69 path_put +EXPORT_SYMBOL vmlinux 0xef3aa289 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xef458453 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xef538597 md_done_sync +EXPORT_SYMBOL vmlinux 0xef699258 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xefa22e1c __pagevec_release +EXPORT_SYMBOL vmlinux 0xefcf32c0 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefdcbb2c bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefe723fb tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xefe838ef set_nlink +EXPORT_SYMBOL vmlinux 0xefe947f2 devm_request_resource +EXPORT_SYMBOL vmlinux 0xefed0c8f phy_find_first +EXPORT_SYMBOL vmlinux 0xeffcc00d unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf04543df __netif_schedule +EXPORT_SYMBOL vmlinux 0xf05046a0 release_firmware +EXPORT_SYMBOL vmlinux 0xf058f863 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xf05c7037 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf06164bb vfs_mkdir +EXPORT_SYMBOL vmlinux 0xf062576b ucs2_utf8size +EXPORT_SYMBOL vmlinux 0xf06449a1 mdiobus_alloc_size +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 0xf0d83a70 block_commit_write +EXPORT_SYMBOL vmlinux 0xf0d89d56 filp_open +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf118ad90 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xf13eeb7f sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xf1417f73 vfs_readf +EXPORT_SYMBOL vmlinux 0xf1476877 twl6040_power +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf14b6072 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xf1578bc1 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xf17a7fb7 param_set_copystring +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a1fe62 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1dbb337 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f00268 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf211be02 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf23ba413 skb_store_bits +EXPORT_SYMBOL vmlinux 0xf23eab64 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24e1a1a arp_send +EXPORT_SYMBOL vmlinux 0xf263d33c write_one_page +EXPORT_SYMBOL vmlinux 0xf2700840 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xf278d7b9 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xf27e7785 amba_driver_register +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 0xf2b60f63 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2fa6ebc bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31a38ec bio_chain +EXPORT_SYMBOL vmlinux 0xf3267809 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf3434181 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xf343c570 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf368ac70 vm_mmap +EXPORT_SYMBOL vmlinux 0xf3699444 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xf38178e6 mipi_dsi_driver_unregister +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 0xf3a426a4 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xf3b08aa3 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xf3b69c68 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xf3c9f290 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf3cba3de i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xf3cbaf86 key_type_keyring +EXPORT_SYMBOL vmlinux 0xf3d97193 block_read_full_page +EXPORT_SYMBOL vmlinux 0xf3dcb86c ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ed1e64 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xf3faa714 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xf404b9cd md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xf40a1680 generic_file_open +EXPORT_SYMBOL vmlinux 0xf4398674 cad_pid +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf47b6af5 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xf4804db1 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xf4835f92 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xf487b847 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xf488a0e2 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xf4b02171 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xf4b0b643 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bd4c94 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c6b9d3 block_write_end +EXPORT_SYMBOL vmlinux 0xf4d1ea74 mdio_bus_type +EXPORT_SYMBOL vmlinux 0xf4e66ab7 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xf4e8d574 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f892c7 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xf505cdd1 seq_open +EXPORT_SYMBOL vmlinux 0xf51a91bc mmc_add_host +EXPORT_SYMBOL vmlinux 0xf51bf88b nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xf52b04a5 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xf5371137 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf551a2dd iget5_locked +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5b09ddc d_find_alias +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5cb155d scsi_ioctl +EXPORT_SYMBOL vmlinux 0xf5defafc tcp_splice_read +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf6231852 vlan_vid_del +EXPORT_SYMBOL vmlinux 0xf63032f8 inet_accept +EXPORT_SYMBOL vmlinux 0xf63497b8 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf639d1e2 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xf644def3 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xf65df373 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6786440 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6970029 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xf69864e6 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xf6ab3e25 input_release_device +EXPORT_SYMBOL vmlinux 0xf6b237f0 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f0ffed _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xf6f1cc41 vm_insert_page +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf6ff9eb8 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xf70f385a nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xf742b777 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf77555cd __memcpy_toio +EXPORT_SYMBOL vmlinux 0xf77f0e4c __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xf78a4f19 mount_subtree +EXPORT_SYMBOL vmlinux 0xf78b58ea inode_change_ok +EXPORT_SYMBOL vmlinux 0xf792a0ab sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7a3027c pci_scan_slot +EXPORT_SYMBOL vmlinux 0xf7b0695a mem_section +EXPORT_SYMBOL vmlinux 0xf7bcae74 try_to_release_page +EXPORT_SYMBOL vmlinux 0xf7be56de writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xf7c461da pci_request_regions +EXPORT_SYMBOL vmlinux 0xf7c740a5 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xf7c8c250 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xf7df3aad inet_getname +EXPORT_SYMBOL vmlinux 0xf80bb8d1 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf822974c devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf8790b4f d_rehash +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8cabe53 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf9075535 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xf956c339 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xf971b318 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xf973e0d0 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xf993784e dma_common_mmap +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9dde891 wait_for_completion +EXPORT_SYMBOL vmlinux 0xf9e26119 sget +EXPORT_SYMBOL vmlinux 0xf9ecac8d vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xf9efb976 scmd_printk +EXPORT_SYMBOL vmlinux 0xfa1565d3 skb_copy_and_csum_dev +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 0xfa5b47b7 simple_release_fs +EXPORT_SYMBOL vmlinux 0xfa6f8640 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xfa7d2456 pci_map_rom +EXPORT_SYMBOL vmlinux 0xfaab8c4c mntget +EXPORT_SYMBOL vmlinux 0xfac1f3f1 param_ops_bool +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfada862f dcb_getapp +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf583df of_translate_address +EXPORT_SYMBOL vmlinux 0xfaf6dc82 put_filp +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb06489e vc_cons +EXPORT_SYMBOL vmlinux 0xfb0deb87 pci_set_master +EXPORT_SYMBOL vmlinux 0xfb0e8d33 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xfb151f73 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xfb172ad1 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xfb481496 km_state_notify +EXPORT_SYMBOL vmlinux 0xfb554485 security_path_truncate +EXPORT_SYMBOL vmlinux 0xfb64cd0d param_get_bool +EXPORT_SYMBOL vmlinux 0xfb66fce8 input_get_keycode +EXPORT_SYMBOL vmlinux 0xfb680a35 tty_port_init +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7ce35f bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb99cc63 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xfba269ed lookup_bdev +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbbd704d inet_frag_find +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcbed69 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xfbe8ff5e cpu_online_mask +EXPORT_SYMBOL vmlinux 0xfc019f52 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0aeba6 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xfc1b7e3a padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xfc39070f igrab +EXPORT_SYMBOL vmlinux 0xfc4b6bcf tso_start +EXPORT_SYMBOL vmlinux 0xfc4b6d0a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xfc4de1f4 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xfc4f0437 may_umount +EXPORT_SYMBOL vmlinux 0xfc52047f __wake_up_bit +EXPORT_SYMBOL vmlinux 0xfc89744e iommu_get_dma_cookie +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 0xfcc5bb3d dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xfcd1d4ef mutex_unlock +EXPORT_SYMBOL vmlinux 0xfcd98990 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce0392e __vfs_write +EXPORT_SYMBOL vmlinux 0xfce89667 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf1b737 seq_putc +EXPORT_SYMBOL vmlinux 0xfcf8b4c2 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xfcf8f024 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd048c99 may_umount_tree +EXPORT_SYMBOL vmlinux 0xfd1f9727 md_write_start +EXPORT_SYMBOL vmlinux 0xfd299453 free_task +EXPORT_SYMBOL vmlinux 0xfd375dea poll_freewait +EXPORT_SYMBOL vmlinux 0xfd712d13 i2c_release_client +EXPORT_SYMBOL vmlinux 0xfd72e2be to_nd_btt +EXPORT_SYMBOL vmlinux 0xfd7a6735 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xfd7b412b neigh_destroy +EXPORT_SYMBOL vmlinux 0xfd81bf20 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdbaed08 nf_log_trace +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdce4e51 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xfdde3c34 amba_request_regions +EXPORT_SYMBOL vmlinux 0xfdeef563 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe047ce6 acpi_enter_sleep_state +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 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeb3123b ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xfeb696b1 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfec48c99 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfeede712 sock_create +EXPORT_SYMBOL vmlinux 0xfef33c41 generic_read_dir +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2a4a07 skb_append +EXPORT_SYMBOL vmlinux 0xff2c2c2a __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xff314d17 skb_seq_read +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff885f4d __sb_start_write +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffa74d54 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xffabe16a d_invalidate +EXPORT_SYMBOL vmlinux 0xffbba024 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xffc316c0 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffddfc4d wireless_send_event +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x4331d858 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x56350282 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x6fa80e8b ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xb15848fb ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc0b802d1 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc52eaa9b ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xe98da0b8 ablk_exit +EXPORT_SYMBOL_GPL crypto/af_alg 0x021a2bfa af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x10bc78b2 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x310330af af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x7f8e6eb6 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x932b069e af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x98e22310 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xb964179f af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xcb39de78 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xccab5b9f af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xdef78743 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xee97f51d af_alg_register_type +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x6bbc1c7b async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x209130f3 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xeb44a031 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x16ebd7c6 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x4c780070 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0796cecc async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x57abc679 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x5d579b2c async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa4eafb49 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x2de9e8c3 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xbd690cd4 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 0x5a58ae27 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x83dabbcf crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x083fade7 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x27e7700e cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x2d3d1404 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x32ca76af cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x788b914a cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x97fe9842 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x993d5495 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xae28a619 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xb4766d55 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xfa82fe5d 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 0x2a824140 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 0x180fa91e mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x4f63781a shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x64d4cd72 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7f78395a mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x82d1ad3b shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8732323f shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8b27333d mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xfc4f4fd4 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x2505fcab crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x770351f3 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb03b6249 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd0596c49 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 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 0x16ee8b70 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0699cb2f ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x14dd2614 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x16c64f88 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1b316f11 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x36e55351 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x43d12083 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x45f6c718 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4c499186 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x543a1bef ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5581e0f2 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x55929ba4 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x70ac4ced ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x71c37bff ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7650c398 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7cd67295 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7ddbe72a ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x82ef0568 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x86256207 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8dfa5dc1 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a26171b ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa7eb662f ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc93b4d4f ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xcfedb654 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x03ff5ccb ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x1d69eb79 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2d306760 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6e5bc57f ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7a4063d6 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7ec636d1 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa17c44c9 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa2123143 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa250093b ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb92aed55 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbef03d40 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xcef2811f ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xd4f7fcf1 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x96308ad7 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x7da6587a sis_info133_for_sata +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x611386d2 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x68be257d __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x6ed434eb __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x7879dab2 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0108a2a9 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x037898ac __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x064ec92d bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x06f4c5f1 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0e7879f9 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1649a79e bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x18155fe7 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2fe84f11 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x52b84697 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ee6ce1d bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7047d37a bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7238a4fa bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a49c831 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x91df4107 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa11cf476 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa55860db bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb4effbf0 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb57b7529 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd043ec39 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xda80200e bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe761dd97 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe84cb4bd bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeab49649 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec584828 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0f70f48b btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1cc5a158 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3a121c4e btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6573cc9f btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7a90d0fc btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7b7c732c btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x05789a60 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0d5fc320 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3199563d btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x38ff2cc1 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x5733f687 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6bff2617 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6ca468d0 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7b6eec6c btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8e7a3a66 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb1c92109 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcd9b9e86 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe47340b7 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x244724b0 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3cb60709 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4765e7be btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x72cfe22e btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x89f6ba6e btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9533e25d btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9d7a056e btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd1e8f8ca btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xda76dde8 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xeb391ff5 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xff3cf1f7 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x34b7eab3 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xf9a36363 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x8c6a6d02 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xd8a28e08 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x0024d6c6 devm_clk_register_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x08e534d4 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x19ec341f 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 0x4be4ee62 qcom_cc_really_probe +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 0x6d88ab43 clk_disable_regmap +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 0xaace56b1 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xb095ca26 qcom_find_src_index +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xc1f08cdd clk_is_enabled_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 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 0xf2c11da1 clk_enable_regmap +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 0x8e5c8c6b bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0x9ea17b0b bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x217d137e ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1e15a615 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5950ee1a dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8648fbc1 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8b208491 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xefb48538 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x3bb76731 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x672f6e61 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x67372812 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1cd18716 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x276ceb1c find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2b06f810 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2e3ec158 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x302cd0ff edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x35a8050b edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3c48a78d edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x469f0f95 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x47e15a7d edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4fb3e624 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x58249cff edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x5b1e8581 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x61146fae edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x62355f23 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8587000e edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9c5aee43 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xba0cd006 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc6804736 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc942919e edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcb434cb0 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd0d18e0e edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf84c222d edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xffbfacf9 edac_pci_handle_pe +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 0x49fe498c fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc4dc5d47 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd633d17d fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe4757273 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xef6820ff fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xfff47195 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x10dbe22e __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x39a791bf __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0bedb399 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7287d8b4 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8a96e39e drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9f4ba861 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa6aafcaf drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc519ebe7 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6adf436b ttm_prime_fd_to_handle +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x82db11c6 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x9c0cdf64 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 0xd8de33c4 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x006aedce hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x018f5319 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x077c09a4 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d2049b1 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x129de28e hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2694c055 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x287b8a81 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2b9c945e hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c7e67e0 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d7f7d0b hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4a27b163 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x557bf5f6 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x597b9862 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e32e988 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6a291f9b __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ab4c456 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6afed4aa hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6fdfd919 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x76ca78ff hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77f2831f hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7a1d8136 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f8045e2 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x867d2ae8 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86a43d4b hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa24d3b67 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6047eee hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb16a8617 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5a3a222 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdb1e89c hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7e938c3 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd894feb9 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xda20d259 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5dc1c9d hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeec4e578 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf0e0055c hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe1ca181 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x16adbec2 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 0x1b6a57c8 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x71e4ea77 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x83ea56cd roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8d3b487a roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x95420c9d roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xb254bcbd roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x20f179fd sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x295d3b4d sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7c43cd5b sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x941e54ee sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa82f3f1a sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc097ede2 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc566c98d sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdf727139 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf421976c 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 0x1d527ce0 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0dbfd553 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x13f82d99 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1bf9851e hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x27a1bfee hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x33b4f17f hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3c0871c0 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x71cec185 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8fe31519 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa2ba4586 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbfbb88b5 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc9384c6c hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcffd063c hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd4fc264a hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd8354008 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xda98dee1 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe48b8b95 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xec3485a2 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf41042db hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x1e33ecd7 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x34968a18 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd6067627 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1b93d27b pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x260121aa pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2c158c1f pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2c6cc25c pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x33bbd73e pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x40474a99 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x507ed1ab pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7922875f pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9f8be8e2 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa4d9ce1c pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa68e409b pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbe2abc21 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcd0086ec pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdbe503cc pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xea370629 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x16d89ee6 __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x59e53538 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x5bb79618 hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x8905487d hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x900e1cc0 __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb79f41a5 hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xbf0ac420 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xc747c4b7 hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xe5ab6c01 hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xf0db6e43 hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x16aa76d4 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x26c1c2f4 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xac5ab68c intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xacbdc219 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb572e805 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc6883f4b intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xed9625f2 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5d4fb69e stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6e4290d9 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa4c33280 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb9f8239d stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xc0794483 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xc8594610 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd9932a81 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xdc69749e i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe2c76342 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xf3798f1a i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x148428f3 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xcbbfec4f i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x09e2588d i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x4d57606c i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x1d476426 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x671d9d8b bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xcddb7401 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x017ad9bf ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x13214cc3 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x168527f1 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x39f2b4ff ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x54ac71ca ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x70399c1b ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb41cbe45 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc20f021f ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe1c88ee1 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 0x86911f14 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xbe3a4cb9 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x5f05fe0b ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xcfcfead9 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x658b827e bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x96374be7 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xede57f57 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2ca415ab adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2f538bc4 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x70222c72 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x88fe96e3 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x90c3cada adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x925675f3 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa3adbc07 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa7e1c70d adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc17efe43 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe0f88b15 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe742202d adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfb2b6b39 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0308d63c iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x04e504d8 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x090553a0 iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x17207ce3 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1b73f9a8 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1db38c78 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2a66c01f iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2e1da7a7 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x421cb0da iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4ebd4e0a iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x508bdfc9 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5842fe9c iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6387ee16 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6522c969 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6973c947 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7cf41376 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8a72dce2 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x944f6bf3 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95fab04f iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa00d6d95 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6c7e312 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb3cc4d86 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb6c77ef0 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbfd62fcb iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc4dba1c6 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc98235ef iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd8865193 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe6269ddf iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf2372c9b iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf4cfebc1 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf6b4b1d0 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x5b4fdf58 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x8469e6fe 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 0xecc9430a adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x1f466b15 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x65149180 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xd3523e49 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x6563823b cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x78ccba63 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x830ae2f0 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x1d6c9f06 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x21c246b8 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x151c6f95 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7ab6a1a6 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x8efa1c6a tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xadffcb99 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0cfed060 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1140cd3a wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3786decd wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x66be13fd wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7b624f54 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7c38c90d wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd78b7518 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdaeb8d73 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xddeacda4 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe374f405 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xed019f03 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf10d2ddc wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x00016c9b ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x328e65bc ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x494efaa8 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5d6c593a ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5fcb9c11 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc31d9991 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc34e2596 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdf409907 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xfb017109 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 0x213416bd gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x216ba5ab gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2b282d94 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x304d9e5d gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x35c41696 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x39f85154 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5c3a25e2 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6a2fe1fe gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8157e351 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x97995c5b gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x99b53fd5 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9aa1ca26 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9d1e8e53 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3bc65c6 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc9d3f156 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xdac0aa47 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xedb888af gigaset_add_event +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x109bc124 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x26cbe10c led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2d9ced87 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x9fc7e771 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb758a739 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf015e344 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x25a8ab7c lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x2682387c lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x32661c72 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x516c24a0 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53b52553 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53d0b435 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x787565bc lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa4e0d327 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd8a3bfd5 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdb74c9f2 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf26d9080 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 0x1f690241 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x29dfab30 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x385f083e mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4d932159 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4e5e2d80 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5b9a7c84 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6a95df94 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6b0efa1f __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8a5b1af3 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9bd2bd0b mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb941e342 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe407a934 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfcca8570 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 0x00498ab7 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x24c15781 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 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x70d7d266 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x80e1ac70 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xad57f2ab dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6d5c65d dm_deferred_set_add_work +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6eef68f dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb70b342a dm_bio_prison_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb99837ed 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 0xe595bdc9 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf3027282 dm_bio_prison_free_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 0xdeb1b481 dm_bufio_client_create +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 0x15ad9fd5 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x36ce2964 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x39c38c03 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x68cea473 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8c139b53 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaf05304a dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf6b3b013 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x5ee09246 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb1c7c93f 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 0x269da1c7 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 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 0x55596a49 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 0x86de5540 dm_rh_delay +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 0xba67f3f9 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 0xc44a73d7 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 0xe44c9a72 dm_region_hash_create +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 0xddfea67d 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 0x0a1862bf saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x0e570118 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x19444762 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x467721be saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x62441e48 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd302bc0f saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd5925519 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd692eb4f saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdaec31a0 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdf5d9f65 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x05801411 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x21cb63da saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x35f82a37 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x47ec0dad saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5555954b saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x76ec86e8 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa96f31f8 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13ed8fa1 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14ee25ed sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x18ac21f2 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2a2a73fd smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x315d6005 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x349d8701 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3521e043 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x408c911f smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x511b639e sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6916a04f 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 0x86ed3a5a smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8e34817f sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8ee3e9f3 smscore_set_board_id +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 0xa46325d4 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa5b487db smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbe93f3c2 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc50581f2 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x51902347 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xeb0f5ae9 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x01b0a979 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x062ab65e media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x09a89bd2 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x0d6563a5 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x2cb5a60e media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x4bf14d60 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x5589cde9 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x58d41d12 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x79efb40d media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x8cf8e817 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x8ea5d0ed media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x9c416225 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb0035f16 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xbbc81571 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xc6b2c0a7 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xd5c147dd media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xdc7480e1 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0xdf4c8613 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xf3a40543 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x123ec4f5 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x02c7efb3 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x06124fa7 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x147dc989 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x16714c2a mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x16f13e7c mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x33ebf281 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x34564081 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3d61fd60 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x48fc99ee mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4c6a4beb mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x69708716 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x77f38f05 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x804a9be6 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x868c53a6 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x889b6839 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xadc37fa0 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdad1ee71 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe10f5546 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfa59678d mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0dffc5a6 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x26cbbc7f saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2923a9f0 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3c657356 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x439134d3 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4f950d9c saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x516ce6f9 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5b086142 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x81781ac8 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9c642ae8 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa10881fa saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa58e99c0 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa92c5b20 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbbdd2333 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf4954aa saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd2669dd6 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd905ec00 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe9042baf saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xebab27a3 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1e6efa39 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2bc01be5 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x40b151cb ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x95fabeba ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xae8a8b06 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc25b62c7 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdf226f22 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x02a61cdf xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x078170a3 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 0x2c943c0f 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 0x55f298d5 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x5af80e02 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x97ff052d xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdce1f4d1 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 0x6d8374a0 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x9f247fdb radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xc4babcd9 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x100ac69f rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x241bd7b1 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x310d84e3 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x392c1698 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3b6514c2 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53f0be8e 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 0x64a04068 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7b229cc6 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 0xa5319677 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbb4c6c77 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbd0f75e4 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc1b41c55 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc3b4b091 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcee47d7e rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcf85224f rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd296472d ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea903456 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x9fa87c91 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xb87ec96b microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x49185434 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xe1301f6b r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xb0dd6fc2 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x872942d0 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x6c0ea6cf tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd3eeffe7 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x24854ccf tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x5a16822c tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x75b7a316 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x498f81b4 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xb3982872 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x151a3178 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x18de9de5 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x23b8e2dd cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x306aacfe cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x35f6e10b cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3684b27d cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3c912215 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x41ec6612 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x555f943e cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x59973fe7 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6904eb84 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x799aaba5 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7b8bf2b4 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x95407875 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9fa1c8ed cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb734ee56 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb79246e3 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xde5cb92b cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe06c647a cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe4a0fe3c cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xecceb6d7 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x5283a4dc mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x5e5f80e4 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x061f98f4 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0dd9eb01 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0ddfd242 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x43980e9f em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5bfbd973 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6a3aec59 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x74af9386 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x75291411 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8084babf em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x82e85618 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x837e9781 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x92741c4d em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9c918a23 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa1dee762 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa7a083d7 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa91f84f3 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc65a1301 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd4e70959 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x05b17a50 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x775876db tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xae9fb54b tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb88c95f8 tm6000_set_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 0x369fb2e7 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x4f3e99bb v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x534fabba 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 0xbfc98b13 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xc59d8276 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 0xf3b788ee v4l2_spi_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 0x1d23af59 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x74bf9e58 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x02a5d9cc v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x126ca0a2 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 0x2be83cec v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2cb4bb74 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3463fc69 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x349633fb v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x48a869ec v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x579d9488 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6153d90f v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6430791b v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x668bef0d v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c450935 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7330db40 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8232b5a2 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8cd49179 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa0d1c1b8 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa33a9d84 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa42959a5 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa592634f v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xadfb67a4 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb00ee8fc v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb57f1332 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc785adc4 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd0140cac v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb505910 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe1f49e67 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfb5981aa v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0c7bbd95 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x113120c3 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x27917aeb __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2c747428 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x69586dbf videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6bb71564 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79b2e10b videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b1e8dc7 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7bb60fb2 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91e68c2f videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x91f53682 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa087486f videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa3092290 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaf003c8e videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb09b9f95 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbace3290 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbda13b16 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc8a02b5b videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc9a59ec2 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0002361 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe4fce1fc videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xedae2dc3 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf42c9986 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf4ef013e videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0f0f3a75 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 0x724be479 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9b18952e videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xdca20997 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x5a828bd8 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x65033d80 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe7626fea videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0d34fa71 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x13be6615 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2a77840a vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2eb268b1 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5bb52a96 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5d0f1bbd vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x67c32701 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x6fb1ac61 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8517d3a5 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x9f81d8f0 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaa6ef2de vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb10c6418 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb29cfbfb vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb700e40a vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc2a5f2ce vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc99c1c5c vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdb73c679 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xefa3317f vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x0f357222 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xd2fee1c8 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 0x02d91fca vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x034a5bbb 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 0x79399e34 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0e036de0 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0e9f5fe3 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x17092730 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x20cea869 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x21e7687f vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2a3ba795 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2dddfc2c vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2f8bcaf6 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2fcf70f8 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x321ae84c vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x34c9fd4a vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x374fe846 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3b792d0c vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3d41f157 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x537640b1 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5a43a199 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x76f18a96 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x78ba840a vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7cc7be2b vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x99fb2705 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9d6bddcb vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa09f07ef vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa1ca8c85 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xae72025f vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb8959094 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc7015371 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc858c2fa vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcd0a6265 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe9cb1ed0 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeddf69a4 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf0ccbf29 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf52c6bec vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x256d5a62 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x077761aa v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0bcade55 v4l2_event_queue_fh +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 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30c5bf66 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40aa0580 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4b901df6 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d7491a4 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4ddb8572 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 0x52c63fee v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x53c686c1 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x648fdd13 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6ab1f3eb v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6de19f6b v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7404b7cc v4l2_event_queue +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 0x7d2bcf3b v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x898a0b78 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9b116f0e v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9ec89c2b v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb44b62f2 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb6824052 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb6dacb3 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc2d3b234 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb9b2084 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd0e489ad v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3426db9 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3bcbf59 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9b0a9c3 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9b51ff4 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9faf1a8 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfff73d4b v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x07df0d14 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4834ffac pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xded66ec4 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x34191095 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x37c51098 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6d29e0cf da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6d87497e da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbc11ff0e da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc2e52215 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xee9865f2 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0c5cf400 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x27df3685 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2f1c90c0 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x428c7e86 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x5808c557 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x80e227af kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb4f8af10 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xedf085b8 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x78b01ee4 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x7f08fa23 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xea292ba5 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0ddccac6 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0f98473a lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4fe72566 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8b313d04 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa14b904e lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xada0c886 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfdbced65 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0cade0cb lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x123e4eae lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7376f8a2 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0aacca85 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x18a33fed mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x32d99653 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4a1681a5 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x71ce2009 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd65f58c7 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x370a1f07 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4a79847c pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4ba6ba4b pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x80b61bc3 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x82129b8c pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8a655da9 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x95fa9b87 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xad169194 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaf4d0546 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc7060c08 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd12d9716 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xcc0918b0 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe00760c6 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9059ab54 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb8262d69 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd846bb82 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xdde7b475 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfa2f5420 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 0x07c67466 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0c12af0b rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1864abd0 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x338eba2d rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x40566b90 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x48f51f88 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4d22a8c5 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5a0b3532 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5e73ba25 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6e10f3f1 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6e99cb2d rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7bd5f529 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7dc8be18 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9bea5456 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa446417a rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb743d81f rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xba542d0b rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbd350f4d rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc9ce66a9 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd0bdfb83 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd6463f80 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe6eece22 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xec962773 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfacb6a99 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0bae6aef rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0dffdaa9 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x13d99a6d rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x78a2cfd0 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9050aa2f rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9b51bb9a rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb3cf000b rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbbee90b3 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc234b5b9 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd730a687 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdfa0e2ab rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe18ce715 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfab9813c rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x002cffad si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x011348ec si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a9bfa37 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0c208119 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f57becc si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x18e982b0 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2a4a4651 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x45ccc890 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a33bf31 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fa77653 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x53e8c9e1 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c44e808 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6028a63d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x651622d8 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x69a081c5 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d9b3d05 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c41fe99 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c850bd6 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8538e27b si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85b1da44 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8d64f351 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8eaf885b si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f0b04c6 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x96bf1c5c si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d5f5aa6 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9ea755c6 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa9880120 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xafb58c07 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xafde6004 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb6a6d511 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc7a21c25 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea04952c si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xef88e762 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeff33420 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x06913b77 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x183528de sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2185d2d6 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2c2eed13 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xedaf56dd sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x05d3495f am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0dda25d1 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xa6f4925d am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf61422b1 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2a96de25 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x35e99319 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7ce5220f tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xbb982809 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xe592bb00 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x22aeaf5b bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x558272c0 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x61a47971 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xdac78c85 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1dca2f26 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x1df7cdaf cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc9fd7a7a cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfca3b587 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 0x0a756aed enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3d4a010e enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x94d1a8b1 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb16071ae enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd44b1ea8 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe15d55f9 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xea0e7765 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xed5ca946 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x08430504 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x28bec748 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3a1b0756 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb3f08e0d lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc75f9bf9 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcba7ed5c lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xcd98ba81 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdb7fb0a9 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/dw_mmc-pltfm 0x449a6758 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0x884c8bbf dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xb11081f0 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x021f00f6 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0231037c sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x03e2da71 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2bf63442 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2ddae5d4 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3aee40e2 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x44a8c5be sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4fe5f3ed sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7e4ffc1d sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8c609fbd sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc499bc70 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcd6d3f27 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe202f359 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xed700c7f sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x09206648 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x27ba0bd7 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3b88741a sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x3ddd83c9 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x59f1c1eb sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x613297a3 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdcb80139 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf0444e44 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf2a06d2c sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x642bddc4 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x9935f852 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xa61cddba cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x20139c99 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xadb818cf cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd3ea531f cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x17660c21 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x53bb5dd9 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x6c0772e7 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xa01a5ffa cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x060fc591 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0a80e806 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e497ed0 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0fd002cc mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1016255b get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x12db5efc kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d77c036 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29397da8 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2e46a9d8 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x39a5ee23 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3cc79cb7 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3d042b3b deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c6aab95 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4cb58427 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d833abf mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e037ff1 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ed86fc0 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4fa7460a mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6855b310 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6b72bb8f mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6de74697 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78daea38 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7b41beb0 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81484816 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x829ca292 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8357ad6b mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9090831c mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x954531de mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c6a0454 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9e41ce8a mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa7d00219 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xabf741ab mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd1d25e8 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe13ac531 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4e2d8d8 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9448085 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9948355 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf0a834d6 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4107255 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf4293bd3 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf90d39db mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf97cdc8b mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3c28c6f2 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x51bbf612 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x53be0b2e del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xcde483bf deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xea1cf8be add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x39e6aa1d brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x80f2f93b brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xca13d603 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x012e9398 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x17d45cb6 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x800bd09e sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5291885a onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xc6aefec1 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x67969a20 spi_nor_scan +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 0x4ceaaeec ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x54389091 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x56c487b0 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5ec33f98 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x61dcba57 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x7d6698ce ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x837b7fcb ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x90553dcb ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9df165a7 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa8749e8f ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xba5d278a ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc6040957 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe7012b27 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf0937564 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x155a3c2b devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc300b699 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x121847a5 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4b702a31 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4cb51121 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x8e57349f unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xcabdf785 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xe386ffb0 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x070d1f2b devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x22295c16 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x265cad8b can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3090459c can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3735c497 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5bda290d alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6e3d2f24 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7345160f can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9e08e6e1 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa80057a6 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb6824fe6 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xba6df86e free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbaa315e4 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd113343b can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd3e46b5e safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf292114f register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf798c7d7 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfc3090c7 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x0fd181eb free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x898c6d6a unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xed9b70ce alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xf44496d5 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x138a788e unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x347296ad alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x5ab89ca5 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x98aef98a free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x14179aa8 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x9482dc09 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x034c662e __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a34b2b mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05bf998b mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x071c2cb9 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0847cbe8 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ef3e2c4 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f1af11f mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14959eff mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x18aece57 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19179c34 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x195cf6bd mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b18914a mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21e9bdab mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23995bd9 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x23a37b0d mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x250ceac0 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27832ae1 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2853e183 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x288e2536 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a3a2320 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c592ecd mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f1ecf6c mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f6d3408 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fb51a9a mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3102ea13 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x343d49b5 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x363695c8 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38f6938a mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e7e698f mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f63ea76 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3faa368a mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40862ea3 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43689b11 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4769e45d mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f05b5d3 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x517fa86f mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x550fd6a7 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58199710 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59048ecc mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59a6fd31 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5aae287b mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b8e821c mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c7d943d mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61962077 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x642df148 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68dbc3d7 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a5d7769 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e9db397 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x712df139 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72a23f86 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7626bba8 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77679c8b mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79d3e046 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ebdcd44 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8078fc79 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83658875 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83e4bc5b mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86b10dc0 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88b7828d mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8be866e7 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e792182 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90462fe2 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93d35089 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9491a338 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a069f6a mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cbf9c13 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cda68a8 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d01c8c1 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d4515e4 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e86b923 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa42f0667 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4874113 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa565ff8d mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa66849e6 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa77a596e mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9085537 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa29f665 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabac2266 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad7f9125 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf78c9fd mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafcac6fb mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb068ca14 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0f70f17 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb46648ce mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb56b0292 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb591dcbc mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd8cb19e mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfad9fce mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfff00fc mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc321b2b4 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc38cb50b mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3b1a3ba mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc42bb511 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc43556fd mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc929305a mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbbaa636 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcce26b88 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcec361bb mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd26b44a8 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2746e1d mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd447edc1 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd60258d7 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8d1321a mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9156a82 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb36f0af mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd5636f2 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2409a0f mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4df6ed0 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe54a5ffc mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6f39a04 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7f38996 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9d4a76e mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec1d4538 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec3c0981 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec52965f mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf228aa9f mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3bea0a4 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf44a2359 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6b60523 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf85e3d21 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf95ab7fc mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa3a8faf mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfcb02ed4 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd30014f mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x046bfd53 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07c7ed4a mlx5_db_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 0x0d8b78a6 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x135ea02c mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x13f320d9 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c82189a mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20826fba mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2828f03e mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d31b33b mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dab34bd mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35c6c300 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3703eff6 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37754eda mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3ba582f6 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d105931 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44e5e1d7 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46bdc5b8 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f2bdc00 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54f95a77 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58207a09 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c6df3a1 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62e5c04a mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63ac71a0 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cdde4a6 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6fa9e0a1 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7524a919 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7817b2a2 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78e907bc mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f616716 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92ca699a mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95238051 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x988a2868 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fc8b2bb mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1d9615b mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6e5e776 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc32331b5 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc7df2485 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9ce7cce mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd691b25e mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde21404d mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe03293c1 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe3675d04 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7073a1a mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed188736 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3368180 mlx5_query_nic_vport_promisc +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 0xdeaf3ead devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x29f8438f stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x2f1991c4 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x45e2cfbb stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x878026f3 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x70d41749 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7fe3d94d stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe8221cfc stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xf215eb2d stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x04e94f00 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x18a07db0 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3f7327d0 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x48ec1e70 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x51ef417e cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5ae23f8b cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x62f9eb1d cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7241d3bc cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x95539ee3 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xad1ed9f8 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xca9f3b86 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcedc1cf7 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd61324d8 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdd01c676 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe4206557 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/geneve 0x40b8594d geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0xf987a762 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1170a63a macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3eec17f1 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x87819140 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xda2bca24 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xa9ab5cd0 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1113aa51 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x19c67d86 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c620d20 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x49315640 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x63517a3b bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x6c2f08d0 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x729cfefb bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa92528b5 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb250e480 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb54a77b5 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x2d1aa6b4 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5db57b75 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x68870659 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb0aeab61 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xff3d8fa2 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0a46abe8 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0eaecdeb cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2e773c6e cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x585999b2 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8e3c8f9e cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaac71b43 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xac8c4db2 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbbca9746 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc4f31edb cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x253e642f generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x414e1dde rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x676fab7b rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8460266e rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8dc47c78 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8eb7e034 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05e5ee8a usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x28df3c84 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f2eb47c usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x323d0ee3 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3659b404 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ea9d3aa usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f7d90db usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x699d5a3a usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6bebf97b usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e83d4ae usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6e849cda usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x71499c17 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7ad896cf usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8706a0c2 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8830488d usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x884cff34 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ad2bed3 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x90861d74 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x940614cd usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x95758be8 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x980e4b01 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb38191ad usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb9b5f7fd usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce35109f usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd4713225 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xddbaca46 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xded3b1b8 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe46a7a8a usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe4a7c9f1 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe87751ed usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9e45505 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfc2130be usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1d636a9e vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x98dcc10d vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x028f8ec7 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x02cc2021 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3e1d4fd8 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4605ebfa i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x553afa03 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x88c00c4c i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8b1c5952 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9c79d8bc i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa3d036dc i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb8d01f40 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xbcdc35cf i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc8d69b87 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe4c674ac i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xec1a0eea i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf6770c88 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf93eb4aa i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x0ee67571 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x1a3487d7 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x397a861d cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x732ee0f7 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xb9332473 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4407ddbd il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x7f2195d5 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8193d072 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa0c9c898 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xba1b6059 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x021597fe __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1af64750 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1c4cb4cb __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x216d960a iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2c33ce4d iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2d54bbd8 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2ff3d145 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3b5298cb iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3c35788d iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3cf6ced1 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3e47eb1f iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47e5051f iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4e3086ee iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x563389c7 iwl_parse_nvm_data +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 0x6d1b7565 iwl_read32 +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 0x7dde5b58 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x84ba4c56 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8da16094 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa5700e3b iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa916fa0d iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb3e6543a iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb7d9cc94 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc5ecc902 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc8969a97 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc97bde2d iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd70b644a __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd8573e82 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdba18633 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdf886281 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x08d7d4c7 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0fa75a2f lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3e0fd16f __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x45103348 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4697fa3d lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5c1c1609 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6316e45b lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7da7456b lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8fb435ee lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xabf2eec2 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xba556833 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc193aaae lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc3b9b838 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdc7a48db lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xde3a9cbd lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf50dc6cc lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0b76e1f0 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x51f03be4 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x560605d4 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6353f037 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8f9a6a13 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa32bfedd 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 0xf4b20ecb lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xf5f0d2e7 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0c1d8a2d mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x12a466e8 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x13537778 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2c0abb9f mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2ea93592 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 0x5105a00c mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x87f68907 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x888d3a71 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8b6c2dbc mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9a717728 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9c6e40eb mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb8404d77 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xba686d10 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc0686f1f mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc3166f3a mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd11fe294 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdcfc1696 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe37c9999 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf4411fe4 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x27afbb78 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2a021bf3 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x37d5173f p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x45ce375c p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4777b2d5 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x95c045bd p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcf6d1274 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xebad7df0 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xfa00a0b6 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13fa49d3 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa46d9165 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc42b18b dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf52f0c3 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x08201351 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0fee1645 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ee6b47d rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x203e9466 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x232f7976 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x237f63f8 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2688246e rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2a67dfd2 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2f554941 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c0eede7 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x62ed59dc rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x68acf806 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6ac406a1 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6bb14aa0 rtl8723_enable_fw_download +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 0x73def2f2 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x84ec5171 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89a114ae rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8df0c2d1 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa3019aeb rtl8723_fw_block_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 0xb7ac5fbe rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcbdc1989 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe640bb3a rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe802a930 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe95a1209 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf2565533 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf592cfe1 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfbd71331 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1023d228 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x152d9462 rtl_attribute_group +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 0x3a3c3b64 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47b09a7c rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d8d686f rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5612dcff read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61501ac8 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x64a0b4fb rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x65ac297e 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 0x6c9f1c96 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f530b6d rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86094397 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8763184a rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x927038de rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x98281d3c rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab6b8ad0 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7060a7e rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcb910964 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf7ef7a6c rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8b45ce9 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x009edd59 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7923afc4 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x85f85167 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa3babc6c rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x02cc5e03 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x04031f2d rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b7ab037 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x15486a09 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x28f72362 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3333950f rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3d86bd19 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3fc0f74c rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x48393f4e rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4d2e203b rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4ef78e8e rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4fe99b62 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x505ffd38 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5998463c rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5d856e50 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6026786a rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x60af260a rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6521f2af rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x74b868f0 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x76d6f8bc rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x88e94a0c rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9e32eb9c rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa30aa3f5 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa9d21921 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb4809ddc rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb563339e rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb5992e76 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc2f826e4 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc54dde0c rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc5c6c8f3 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xca8c5651 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe0e16143 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe4faf3e7 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xec661344 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xece0e385 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf60d439d rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf7abe2f4 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfc39245e rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x13f511ab rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x358f6ffb rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4c800429 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x727b95fd rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x88ace6cd rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x97ef9598 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa01635bd rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa8ccf4f7 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb781c9d3 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc8b445de rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xceed1ef7 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe908f411 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf69e48db rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x06a5076e rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a7dcc1c rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0f2ac0b7 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1f0bef49 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x228e56c2 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x234b8957 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x25befaec rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2cf43155 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3063bab3 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36df7bd1 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36e1c019 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e520ded rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f2f781b rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x41c50534 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x467dc1ab rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4bb52f8f rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4e9706d4 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x57fbe926 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x597446cc rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a840313 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5b7c22ed rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x641f6e5b rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x69085e57 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6bf5b4d9 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x700748e3 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x75c63c49 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x779141c0 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c4f8964 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7fa3c873 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8279c451 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82b125a7 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x892539ab rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x929bc703 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x96b19b95 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9fc7d2fb rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa875c8ec rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb3f5b87d rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb670f7f rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc0d1dffd rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc23086d7 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc26113f5 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc9380ac8 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcd9f35c6 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdc2b71f5 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed349f55 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xffee1020 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x2819af40 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4ceac527 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xb70ebe5f rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc38849be rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xdb6280f2 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x56537f9d rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x8045b7f6 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xbb2d1300 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe08e14eb rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x03475555 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x22adfd8c rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x235521aa rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4be816ac rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x526da19d rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x54f99bfb rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x57444008 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8eec5875 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x92334e44 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x98029dcb rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xad5fe2df rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc312e5fe rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe1503efa rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe40d53ae rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xea17348e rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfcb8ed80 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x8876dc70 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa3179f8d wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xe1f10048 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x01d43703 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0695ed37 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x11115b0e wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15e7abe5 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1c05649c wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28e01c51 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28f2088b wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f062555 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x480b551a wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49b4f397 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e9f241e wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x57073181 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x60963ea8 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6184e263 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6449ca8b wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6af5b822 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6be5daf8 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e5180d2 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x721ffe4e wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x72fe41f4 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x758c67a5 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 0x78dd10db wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x794e41b2 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f7786ba wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90a39648 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x92e90b7b wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x944ce5e0 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99b329e1 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8546aeb wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaadabb50 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xac265c9f wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xad813017 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb15bb98 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc04526fa wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda9272b6 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdad1b6b2 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe34e4eb6 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9078aa1 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9626a24 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xecbd524a wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf0fdba6f wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf4fa5930 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb22c3f6 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xff8bc2fa wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x323299a9 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x60bfdf97 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc1c5b46e nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd9f22661 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2a72b5f9 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4babe384 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4d2f9c2b st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5d9570d8 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x80c60776 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x906b0efe st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb0ba810c st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xed2a223b st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x008bae0e ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0862001f ntb_transport_tx_free_entry +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x0a8b42f8 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 0x4e832769 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 0x03e61263 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0f2afa15 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x147c6063 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 0x461f5617 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4e5e2b08 nvmem_unregister +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x502e0590 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 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xd83b2964 nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xeb31635b of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf1bf59bb devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x04853aa7 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x1b3c03df ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x38d24525 ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x3c7df6ac get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x416640ed ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x44ae8d3f ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x5d6ec591 ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x656ee81e ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x6c122ec3 ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x835597bb ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x91d85f52 ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x93546df0 ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xaa001378 ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xb2da0e7b ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xbff4eb88 ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd786dbac ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xdc9f6961 ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xed8d0e08 ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf5139fe2 ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf9e0ab40 ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x0f36d966 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x57190a5f pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xa03a7743 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x29e8a671 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x575ae60b mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x80c94f82 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc95d4b7b mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf7fb04e7 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3902ec7f wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4aeca545 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4e9c3072 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x8b1c6f88 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xb6cb22a0 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd2f53e6c wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x2ec1f174 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x07ed8fc3 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0887e0a9 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f114a2a cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x13573119 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1fc2e7fd cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23a50000 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x34d96aa6 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3d2f397f cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e1bec87 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4e6111e0 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ef00497 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5069798f cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x54f5edbb cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x590ed31e cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5afe51a0 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5d4f27f0 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65e5a3e5 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6d42a4eb cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x70037508 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x720d6aca cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x771119d0 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ab62323 cxgbi_iscsi_cleanup +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 0x97416f66 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9a3d4c74 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9f4a04db cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0c0e201 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa76e66e0 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac9e1ffd cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc1ed5514 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2444441 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2b0871b cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc9839535 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcada371d cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce5d1db4 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2785947 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd489fee5 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5eeefe9 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd90c142b cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2094996 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2e0721d cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe95f29a7 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb95328a cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf0072b29 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf10115e6 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf135e845 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4591156 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0511fd84 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2d2269ab fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3f2cd724 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7abc00f3 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7ed30490 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x888bcb65 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9b5719ec fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9c4524cb fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa3c669bb fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa92bc125 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb78559ad fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb9367b46 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba0a9cd0 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbffe3307 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc4ae6342 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdfe3ea3e fcoe_ctlr_device_add +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 0x07a8d718 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0b7695e4 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c75a3bf iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0db472c2 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0dc2d7dc iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x119b4f80 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18d4bbf8 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a13bfd1 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x22da460c iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x336f1f20 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34f5420f iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x35812d03 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3edc95c3 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4652d2c5 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x521551ef iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x543ecfd8 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5919922b iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60803490 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x60b84c91 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x656665c6 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x66daee8c iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7a8be692 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8dcdbe74 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x989b9858 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9cee2fa4 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9d50abb4 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa236d8e7 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa466afea iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa471f5cd __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9d99e1f __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaf7e8255 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb0ac36f3 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1a4eedd iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb7e26b9e iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc04db3c7 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0e8bc9f iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc56091be iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc8bb0df3 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcadb9caf iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe1e68131 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xedb37a3f iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb329487 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0bf21b37 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1933a430 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1fbc71aa iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x37c69f3f iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3dc03d68 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x52e70d58 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x56aec6aa iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5781df0d iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5a4abb6a iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d4569d2 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x74d6d7ad iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9bb658a4 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa1bc0534 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb3268389 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf54d2aa7 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf8968927 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfcc8fed8 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x03338c6b sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14d88da8 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18137c64 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x296fb88f sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x29d68fb2 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2a69d755 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x32843286 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3421f825 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39325d0d sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c5de6fe sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x494248de sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4f42d9bf sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x52cbe58f sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7182afdb sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7527ca15 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x910206b4 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x98f7f009 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x99515808 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xad30c786 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc4e59355 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc3c6b7d sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xecde54bf sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2148478 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf93097d8 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x051f4c34 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d2046c6 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0da04e3e iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1795b81b iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x25033f05 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3998236d iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3d98537e iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x54068f1d iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x541010b9 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5785a547 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x57bbd53b iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6178ba6a iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6234e50e iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x627c10a0 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x675fdecd iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x696ac175 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 0x6b33e2a8 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x73bc233b 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 0x8d38b788 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d5bd73e iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8e796785 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91d5d70f iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x927f71b0 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9accc742 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa0d58d97 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4d95ba6 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa5256abf iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacc4e9bb iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2834986 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6077dff iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6be9061 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc7d26ab1 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc922c8a8 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdce574cb iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe557efef iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9909cbf iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea521c09 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf1fcd90e iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf4d12028 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfed5bb92 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1498408d sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x28896581 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x29dad38e sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xdb214569 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x4ce415d8 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 0x1606f4d0 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2a879974 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4bd30844 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc99c2ee2 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe052c23f srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe1cfed23 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x43c00575 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5af80286 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6ecd51fb ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x78f048c7 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x79d2d98a ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa87df90a ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xbaf92e42 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1d11d8a8 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x38f8e47e ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x50138198 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x75a88be9 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa689a58c ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc8aff304 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf6666884 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3821e26d spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x76e2234c spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7ae79b98 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x84fea9d8 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb8f5c988 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x15963040 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x7f69f992 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xbe90d69b dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xca343647 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1fcf71ce spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a33db3d spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x481539fb spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x48da58ce spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4ce6eb53 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4d3d286d spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4dd1821e spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5fd8b6a0 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6015c586 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x774e2a72 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x80662848 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x83eac841 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9f936b84 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaec4f3ac spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbff95ac7 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc8814a67 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd226c73e spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf46a1e43 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x7f71fc11 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x03f0dfee comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0806176a comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0c42478b comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0fed8ca7 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1879c48a comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1b50febd comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x221d9656 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x27eede1a __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3f8ecb51 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4a5dff86 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4a88a5a7 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4d887e0f comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4eef73ae comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x56cbca78 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5d56b5bc comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x67183c52 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x68115ecd comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x710aa8d7 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x84e2e070 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8b8933e1 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x90019c4f comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x90d01880 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9c5d6086 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xac4a6d95 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb091b589 comedi_readback_insn_read +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 0xc1a2bcd0 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc44dd57a comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc9c3fdb2 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc9f3d33c comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd20fba9b comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd7e4cc03 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xea51f7f1 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xec7b80cf comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf0710d22 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf2248120 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x36216407 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x41b54fb5 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x592a44d6 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6c802ce9 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6e636e10 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa598408e comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xaf28a0b8 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe92dc495 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x06324f7d comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4e264f4c comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x79795103 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x903fceaf comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9b9b9103 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xae5e4f0c 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 0xe6c135f6 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x392e7960 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xf0908b7b amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x37f2b670 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0e484ba2 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x33b6d621 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x373b2f17 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4ff277ae comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5bbbec5b comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5d0a489f comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5d0b0865 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x826fd3c2 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x97347e5a comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9c50df94 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa2f5da17 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa9997dd0 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xabcbb46f comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb386fa8f subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xc0bfc9ed subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xead2d9dd subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xfca15609 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x061b1b1b mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0686171c mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x09cf4e11 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x18b90221 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1ec08275 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4f39e3cc mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5ce8f05f mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x60e19055 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x620e0a9e mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x64c6cad2 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6bc6b223 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7197dc65 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8a853a7f mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9f5e85bb mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa2a816b9 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc6af6cce mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc8dad101 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xccee716f mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe5722e0e mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xeff1b086 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfcafdae2 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x84ef6f72 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xa224bbb4 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x03673164 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2eaa1a98 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x46a3387c ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x739d487e ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x826dc05f ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa1399ae6 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb0f852c1 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xddbb29db ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x086e1d13 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x10eab4b0 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1cb37e88 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3637dc86 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3bdc72de ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x5db65490 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x40ffb1aa comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x57573245 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7060310e comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x96ac9ffe comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xabb6bef7 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb3c85249 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe1846731 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x152897ed __fsl_mc_driver_register +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x2ef98422 fsl_mc_portal_free +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x3076222a fsl_mc_bus_type +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x49845224 fsl_mc_io_unset_dpmcp +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x52f4a406 fsl_mc_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x54985121 dprc_scan_objects +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x62bdc2de fsl_create_mc_io +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x679299e6 fsl_mc_portal_reset +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 0x7263482c fsl_mc_portal_allocate +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x7c2e6363 fsl_mc_device_add +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x7f308487 fsl_mc_device_remove +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0x9a172423 fsl_mc_object_free +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xa5a1819f fsl_destroy_mc_io +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xaddc20f5 dprc_scan_container +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xc39f325b fsl_mc_resource_allocate +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xdd63840a fsl_mc_object_allocate +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xe09969d2 fsl_mc_io_set_dpmcp +EXPORT_SYMBOL_GPL drivers/staging/fsl-mc/bus/mc-bus-driver 0xe7b30206 fsl_mc_resource_free +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0xf006fc29 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x04528512 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1793eed5 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x226b4eac channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x64070d44 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x65b656f4 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6cb09e1f most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7147434b most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x75010055 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb79c6d63 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbc89500d most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc6c25863 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf9969881 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 0x1ac79fd2 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b8405aa speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x321c4b48 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x40543104 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x41a160e5 synth_buffer_empty +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x433cff3e spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4449e1dd synth_buffer_clear +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x46e46977 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x56355aa9 speakup_event +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x7947d46d spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x89ee5e3d spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x98c1248a synth_add +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 0xbc8b7850 spk_var_store +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 0xdddf17e9 spk_do_catch_up +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 0x18379c19 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x70593ee3 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xb0c8500a uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x29fca9d0 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xabb34da4 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x1599bb5e ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xf258b18b ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x58b91fc4 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x655c2693 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xb351350d imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x04a79311 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x183945a7 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2b609255 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x618990aa ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa3e0f8c7 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc2da76c0 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x32c4bf7f gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3397c364 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x38f7300d gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3c3aec99 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x417d63f6 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5dad9264 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x61d57225 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x658b7311 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x82f67b06 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 0xa36a0edf gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xad21a256 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc985a289 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd3afe779 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf7c0825e gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xffa22d7e gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2e1d9d63 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x890a90c1 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 0x433a9197 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x7daee99e ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8e249417 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0054033a 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 0x21aa9642 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2391c36a 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 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3b469537 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 0x6acb4179 fsg_common_set_inquiry_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x6f4d8c8c fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x73fcfafb 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 0x9a0221c7 fsg_common_free_buffers +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x9fdbd10d fsg_store_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xa3ba8c11 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 0xa68c7af1 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 0xbe3929f9 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 0xe5d5b9f5 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xec367349 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xed31b5c4 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xee0deb6c 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 0xf6edd5e4 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x14471b0f rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x24aefeb8 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2f7cc248 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x34553e6e rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x45f7d707 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x48440474 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4f8f3637 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6557bfde rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6c37a22f rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6d5f81b0 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x874c62c5 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x98b07866 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xae750d5a rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe6a2806f rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xecc8cd8c rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x017bb210 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x03e5ae50 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x055170fa usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x085cd9bf usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x180a7e0c usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e68e7e8 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3b80090b usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x43c4d2de usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51b7f4e1 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x567af5c4 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5a6816a5 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x61bb155f usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6da1e366 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x82226701 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x889499b8 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b32f7fe usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8e6d5baa usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94737ca2 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9512166f usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9c6dbc2f usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xabdc19d4 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbee19c18 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc166fb4c usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc45e1044 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe1adcc28 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe49d5f98 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe7fb119f usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb557a88 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeffdcccf usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf871576f usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2458e462 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4aea3a3b usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6593e32d usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x66588eb5 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x76963801 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x914022c2 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 0xa513768e usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xada3d1a8 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbeeea602 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe2712327 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe99639f8 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf3983320 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf707f6e9 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x2c8cd809 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf73fd8fd ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x038e8acd usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x19d866a4 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2739142d usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3fbf5e6b usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x40d8897c usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x62ca238f usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6b4f9372 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x708905df usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x807aabf9 usb_ftdi_elan_edset_single +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 0x9f6ab83e 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 0xe339f6c5 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xeb58b03d usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0f2e721c usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b90b087 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4bffcb71 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x50fc18ad usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x517b6705 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5271e230 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5cbde3df usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d886b8f usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x63e3886a usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x729a70f2 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x733b5ef9 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7b605cc1 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x93bcf644 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9e7bfc29 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa2f2bee0 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb2f8cff3 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcd56d7a0 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe16fae30 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf6c57b32 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf91f0664 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf9769781 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0865445f usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0a4060a8 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 0x23dc06cb usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x30cdae82 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x347e9882 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x38072510 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4611d251 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4997f79b usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4fe6171e usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5efbd34f usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x671b6d0e usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6bb2b207 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x937532f1 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x94f54b62 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xad57c62b usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb43080c3 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbabad3ec usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbd195b78 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcf4049e4 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcf8f93c2 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd88abfe7 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdbc18c9b usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xea585c29 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xecaf76f5 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x01b2bb6c usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0b20f7df usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1d077430 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2bd4098f usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x47aa7ffb usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5e4436c6 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8272b8db usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9283e945 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbc719136 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd1a0dc32 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xda39de77 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe728d3af usbip_alloc_iso_desc_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 0x37da91a6 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3954da72 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6e446eee rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x8351c02a wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc44e0ef7 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd71dbc8d wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xe51c212b rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0da5cc1f wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2602a66e wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3e176131 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x729c4358 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x78c3bb0f wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8a5efd5a wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9cd2dbf2 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb324760e wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcc5fcbb7 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe82c172c wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xedc2c642 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfc94dc2f wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe773c67 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfff82596 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x80660b33 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xb428219b i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xb84f4c9c i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0ea1cd28 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x35acc7c5 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x5f94ff4e umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb6e7624d __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc6424659 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdc9336ad umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xec72e2e6 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfe696066 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0648aff6 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0c13a233 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0dde5e9f uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x11b7b3b0 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1450eb62 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x15d5c87e uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d55ffe7 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x24715227 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2506564e uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4db54357 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5ff1457e uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6022e363 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x67ffee97 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6860e797 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x77b5e6cd uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x788ef536 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x79184777 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x851111d0 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8e9711ab uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x90b2bc28 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x958aee08 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9959d048 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa0fb419b uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa544ba03 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xae963220 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaf34cd3c uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xaf6c836c uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb3348ee5 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc20d8c10 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7f77f22 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd70b29e2 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd76a0ae6 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd8e9813c __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9744c3a uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf17aabef uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf81a28c5 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfc32e058 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x841701d0 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x17f793c4 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x1d8a9e9d vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xc945b797 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xec053582 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x149cf290 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3fcae41b vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7c3547f0 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x818796ab 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 0xbe4de95b 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 0xe0c9b7e0 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf2f85d12 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x65cb6ef0 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x67fdc805 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x006456a6 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0418f7f1 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x150bde15 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1e52f6f9 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1f049acf vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2c2510e0 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3d593780 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e89ba6c vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x41ddac7f vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e0d2cfb vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e4b3c19 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c284459 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c188a34 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x70df8514 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x84982e2c vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b5d734c vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8bb55ced vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8bce2cf9 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8ed1ef4f vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ac53cab vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e5bf11c vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f3d14aa vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa38711cc vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa75c7363 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb045b9c3 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb3b9a2cf vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc5e355cf vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcbae2d38 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf9877d5f vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfaa29e07 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x614ce440 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x676b496b ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x701ef0aa ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x72628f9a ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x747d1943 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8516688c ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb852daa8 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0e694ca5 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x32e8b31f auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3958bcf0 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x3c7c276d auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x41a3f843 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4cee7087 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa24226dc auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb9c3fe6b auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdf5a5212 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe4b2ce3c auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xa8933381 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x7e5ceb57 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xde2aac4e fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xaf571f10 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xe43891af sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1c9bf7a3 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x35b40563 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x39f843ae w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7cf851ac w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9e39c0b2 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xaae03d6d w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xb10dc906 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc0201f83 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xfa9b10f2 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0xca8b03be xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x079d759f dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7917fb59 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 0xf777ca56 dlm_posix_get +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 0x87f207bc nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x8861ee18 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9117df76 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x99ad7d62 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9afe4c13 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb7ad7f27 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xd5247331 nlmclnt_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00ed21b2 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0145ce23 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02d464d0 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0380bc7f nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x060179f2 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08c9ca3e nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b50bae0 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e4f4633 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13549a19 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13916f9a nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16f04df2 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x197e4913 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b9eaeec nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c978a7c nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20bb4877 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22cafaaa nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2349fb18 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x25274553 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x255bc388 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28bfd9a3 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a3b906c nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d780b71 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2dd3b648 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2edf3144 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30f6b9a0 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x313bbe60 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x31ec9b09 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32519cf6 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x331cd113 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x338c3470 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36c93334 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39d8dc30 nfs_alloc_inode +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 0x3ec5f64a nfs_pageio_resend +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 0x42694b0f nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4317fcac nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45e58939 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4884876d nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49705945 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a910229 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ab699d2 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x510ef5d2 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51fd0ae7 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53539af5 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53b6014a nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x548f3da0 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a34449b nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b61eb64 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ba6adbd nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c3338ce nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e9d0972 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x603d98ab nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6292c976 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64e9b19f nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ac15bae nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c211a8c nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d42a6bd nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dc26f8f nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71c2c16c nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x726569d3 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x732c789f nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76158e83 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x765ff396 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x793ff0f6 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x798bc61b nfs_put_lock_context +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 0x7daf3af7 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7eb41a2a nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ed01fb3 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8010d18c nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x803df8ed nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83007038 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84481eee nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85f0f101 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88ca2674 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b9eb7c2 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90f05de7 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94201fd5 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95ece2d7 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9613f347 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98614872 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98ff1c16 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99831d43 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3370353 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa38ce161 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa40c97fb nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5fcc901 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74f961e nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa76d3a7e nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab1289ee nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xacea0501 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0b9cdd5 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1487787 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb33a7278 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3be0d3f nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb450a6c2 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb51623ae nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb64cec8b nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb74b486e nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb97c713b nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb860eac nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf79985d nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5e675bf nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc630578a alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc97df073 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc4627cf nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfcf11a0 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3baae6a nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd514945d nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda9c46d0 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdaf2d03c nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc6a21b0 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdca53897 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd059d98 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe33f5825 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3dabe42 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea5974df nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea995b3e nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef563135 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8df7d9e nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbbd76d8 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcf999e7 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd7edf7e nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfec332b4 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff34944c nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x99ebd748 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ec115c7 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f68055d _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10a845b8 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11f38ca3 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x126cf26f pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18c676b7 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2134e45c pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x238a80a3 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27b12ae5 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29dc37bf pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2cbf29dd pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2f0f79e4 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37f6391d nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d97f558 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3f897806 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x448a37dc pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47984451 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fc993ac pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x592db3dc nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5fc6001a nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x64062c96 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6a804f40 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6aa53d2e pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e38718c nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72a5bbff nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x76b370ad nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7999c6b3 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81c8bc6b nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x865fc605 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87190628 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8848422a pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ae30889 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f377b12 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9fe21c07 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa190beee pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa49d1307 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa71e001f pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa71e9de6 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac1e40ad pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xadcb4a56 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb504cb18 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5a2455f nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb920280a pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb92ee164 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9565360 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe95b50d pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe99fede nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbef2c771 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7658219 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca0e6125 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8e68afa nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdb50c62d pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc7985ff pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0bb761c nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe164ab97 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe643b94e pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef0150bb pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdc82f00 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2c9012dd locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4d9ddcb0 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x67417529 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xc7f3cde7 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xcffb99b1 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0b49c4d4 o2nm_get_node_by_num +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 0x358fb345 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 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9f5ca77a 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 0xa2d417bf o2nm_get_node_by_ip +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 0xc56353a6 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd256f253 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 0xfffe81b1 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x014482d7 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x262d43d2 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x526cf9b6 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8544b10a dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcb56df36 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 0xf5bbb19e dlmlock +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 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 0xcdea43fb ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xd110bbae ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xda2053b6 ocfs2_is_o2cb_active +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xdd6ab4e0 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 0x6c3a1223 _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 0xee12d8e6 _torture_stop_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL kernel/torture 0xfe2f6847 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 0x59c56119 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf499b457 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 0x516e9e2c lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xe2252bf3 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x08a772b1 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x2039c54d garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x25b73b85 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x89f952a1 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xa0d6206f garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xa1508cb3 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x01651dbf mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x0dbe6137 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x2ee3b642 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x53a67591 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x7a51995f mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x86b6ed97 mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x08e1cc3d stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x239b50f8 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0e4c449b p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x611a9acd 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 0x7124aadb 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 0x3ab36835 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3d74b418 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x510d17a9 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x96b8273b l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa24db1f4 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbb619f76 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd4a8c754 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfac56518 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x06cd70ca br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0af877fe br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1cc0db69 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5128b167 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a06c85b br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9104b81d br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x91b4d23e br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcc9ec848 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x595c033e nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xb4937806 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0123ab90 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x062a4f3c dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16fa31fc dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1760406d dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x24eaf40a dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3095ffee dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x32d666f3 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4086b1db dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x459403d9 dccp_disconnect +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 0x55970686 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x56c94e7d dccp_destroy_sock +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 0x5c7d415e inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x609abaa7 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x64561472 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x64e8ebe0 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b132def dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fd0ce14 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x728fec7c dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7cd0e59d dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ded7034 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7fe823c4 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86eedaa3 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x94ae2985 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9532c82c dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9b1ee46e dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8483e63 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xafb56554 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbfc17831 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc97ecfed dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd5c06307 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd7506105 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda179a4c dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2dc86f1 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5d7265b dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfadf198e dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x422f77a7 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x677fad35 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x68879f3a dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x886ee853 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xce8e0492 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfa2a5ca5 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7b4ed4b2 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x8c6208d0 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa07ced6b ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe3b90b43 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0x0b07cfd8 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xb2ebcffe gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x19569a08 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x435592dc inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x69c7b48f inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xba0a5cac inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc44c5c71 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf8227633 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xfa68e815 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2da68f03 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x33974bfc ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3a79ad8d ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5254f7e9 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x67dc9410 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7299eaca ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x871e1697 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x89f7b97f ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x902d0593 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x988201c9 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xafd0863d ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb65ddf15 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbf68fc3d ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcde9cd86 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfcaadf35 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xaeb9c1f5 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xec5fc254 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 0xa747288c nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x195ae5d9 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x24cd62ec nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xb4e16ffd nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xd8d0a744 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdb34c0b2 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 0xc29b6256 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 0x3ced5f38 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x569abcfc nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa15e743f nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb0493542 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfe53ce50 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x619fbddd nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5df55bf0 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x86a02e56 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x920dce77 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x99aabd75 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xb728dbaf tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1a87fd94 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x57a52e61 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xce358c91 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcf2f29da udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0ec5770b ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2133dd4c ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9bdece6c ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb70639c6 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xd3387a86 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xeea13031 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf9e66718 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x59330d6e udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xcd26a41c udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x2cccb081 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x12b6ca0f nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x1898e049 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 0xe8468e64 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2dfc9ceb nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x66572247 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7993c141 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xbb30cc1c nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd7dd0f4e 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 0x5c85e633 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0b1be622 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x24ffa41b nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x99a0a061 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9e2b66b8 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa3c5685e nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x158bf3e7 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x09c7b44f l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ca3e5ea l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x240b4ece l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2f623531 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x56b0bb2e l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e490dfd l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x692bfe0f l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x74ef0897 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7b3ca3eb l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x82b2a8f2 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x93482287 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa15f3ed3 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb0c7b152 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcf99303d l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd144c23d l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe1dc75cd l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xf90f4744 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0111e3df wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0e5ec9db ieee80211_gtk_rekey_notify +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 0x20e31b69 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x351550ee ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x81754c5f ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x84ca6415 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8a38efa9 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x988e7db1 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9e7bde83 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa832f0c1 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbdb20e90 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc2a64bc1 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf8e72456 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfddbff57 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfef7bdb3 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x57a28a56 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x8161b090 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x867b4669 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc442b9b4 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x131eef0b ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x15686178 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3608b11d ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3af56fdb ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40fe51f7 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x46a3d6b1 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x47ae8a61 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x482ca977 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4ae97448 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5854e42f ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5a29a346 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5f10b100 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x685469e0 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 0x8c06aa52 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9f2e77cb ip_set_get_byname +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 0xca271103 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x620e56e9 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x69cd0b88 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe0f68dda register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe50c2062 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01f7a6a3 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07eb08c7 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0cff9195 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1345d47b nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x138595c9 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15045022 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x162b7aa3 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1ab71a56 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c6fa7c1 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f0c42ce nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fa6ea85 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21b3f74b nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x234491a1 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x26600d4b seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29cfcde9 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b5e76e2 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b7c03f5 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2cdff2ae __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d096ce8 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f52eac5 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32651e6c nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34384ca9 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35be867f nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3706b582 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4124e611 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x473adfeb nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x493048c5 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4e4357fc nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x505fef59 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52b4a053 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56749c11 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x585ef5fa nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5904581e nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e65e3c5 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 0x6368255d nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x660823f1 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67dc7119 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6874694e nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a1d7177 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e04fde1 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f444f45 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76577dd7 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 0x7dccc06b nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x815d420c nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d1d0cb9 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f7427cc __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 0x9544c52f nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95a95f98 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa298e359 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa3c52e4d nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa98a57e6 nf_ct_timeout_find_get_hook +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 0xb3a3fad0 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbb88555d __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc4a1057 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0a16f4c nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0b973c2 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0e84c78 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc10323a0 nf_conntrack_l4proto_udp6 +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 0xc665aa66 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca52b7c4 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcaab560e nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc374686 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf52c778 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd39aac99 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd4ea273d nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8d62369 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdbfaaddd __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe050b4d1 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2f74a57 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4c079c1 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7217c46 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe76ef43d nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe84fd881 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebfedb08 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec115c26 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed8784f8 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2aaf4a8 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3354122 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfbd29416 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x930ba5bb nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xcf530b76 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x678b987f nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x05cbd651 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x181b64bf set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x268a8e33 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x324c9792 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x54748b45 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x944156e5 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9cbf6b0e nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcc720466 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xec2b94ad get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xff01cb2c nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xee9a8b2a nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0b8cb107 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3b83f42b nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8556295e nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf6e25042 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x1efcc369 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x60298314 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x020b1f04 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0c1365ca ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0dfb9e3d ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6a1ef8d5 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdb2769e0 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xe4f9ded4 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf98dbc3f ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x13f4e24c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x52a011b9 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x4feccdf0 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x635b3d2d nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x7da22106 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x973b3ab2 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x06ebbc29 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 0x2d4ea984 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2d9a6939 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x33011fd7 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3578b621 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6196d109 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6e2844ce nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xadfd56ab nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe0c2cf8f nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x5c1113f3 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x6e9939e9 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 0x58aa1d1b 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 0xca0b364c synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x026dec86 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x15415e41 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x250e2acd nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x26d87cc5 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3651111f nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4944e741 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4cfa1ca7 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b012a73 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x641d16e7 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6e2c20d5 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b48ee37 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9e804e95 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2d8e64d nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb868a5bb nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcb595941 nft_unregister_expr +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/nf_tables 0xf48e82ac nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff01d614 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x1376cf8a nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x599650fd nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5b5ec74c nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6ed5ce17 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7744e7a2 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7e375a31 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8b75c352 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x05d1226b nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7f7a16fc nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xd82e6c5d nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x883a7dd8 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x33b5cffb nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x4548c11e nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x6688adfc nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x09775a6c nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x71a5544b nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x92afc47d nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xbe10e2be nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd107afdc nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe601b136 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x082baa0c nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x0fe4a58e nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x33759983 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1e10db65 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xbd218eb2 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 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x178a9507 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1838cc66 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24815a59 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2ba99065 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2e30ef9f xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x32f5cee3 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4fde327c xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x62a34c5c xt_compat_match_from_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 0x76f16505 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x835f4c17 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8b890ba6 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9328a9dd xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa527b6f2 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb995e709 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc80b378c xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xccb44f16 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0dcef2f xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xea78e73b xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf79cef3a xt_request_find_target +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 0x00ab4f42 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x410192a2 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb3f04ea0 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3035201b nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x65e19b34 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x87f7f3fa nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x007ac917 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4927d717 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4a9b20b0 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x56232531 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x67fcc3aa ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdf69440e ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe0a3dae2 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe144891f __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf671072a 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 0x1321dfcd rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x204ae170 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x24077724 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x296db1ac rds_atomic_send_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 0x402cc955 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x45988855 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x579ac68f rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x588e6aca rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x5efe9447 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x71491734 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x78fb5a70 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x7ef5f4d0 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8ba038f8 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x9b88bdbc rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xa1aa568b rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xa3f7c795 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xa6b26857 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xdb65b397 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xe15ff915 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xe178badf rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xe3593291 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xe5aed79f rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xf0a16dcc rds_send_get_message +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x3257caa2 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x99d889b7 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 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 0xbea9801e gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd076bb10 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd51d65d5 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00019ee6 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x028381c6 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02a99d47 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05b2fb44 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05d0fa0d xprt_wait_for_buffer_space +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 0x0bf55371 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c0b5fb4 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c5a0d8c gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e8cb477 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f5aa4f9 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ffd9170 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1169aee4 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1416414e rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x184f045b rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a9c9253 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b5a16df svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cb87c74 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ed136ae rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22838d2f rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22da4742 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24344feb rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x248e56c0 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24b0b2c4 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2641a621 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2644fc46 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27406f08 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2757eb29 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28452c40 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x294bcf6e svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a04ce1e rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f986224 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31128354 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x327457b2 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x334adb28 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35028803 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3578f0af rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3736bcb5 rpcauth_init_cred +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 0x3abe5934 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aff49f4 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bf05c15 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d309665 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e008938 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44e484df rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45589893 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x455a2f3e xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x463fde10 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47ca2ef8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c35cc85 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c576135 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c9a91fd rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f047c7d sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50fe011b rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x511462d4 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x514fae43 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54821491 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55a2130d rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56313fc3 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57204f96 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57941432 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58e4e7f4 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5946ea43 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59e255f0 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c7cba13 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x606b8116 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x623a58f0 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63434870 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64dc8063 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x683ba6db unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68fde290 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69cac9db xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a078366 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6bd43124 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fdd7aea rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70abeeb6 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7225d48b svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x733a8dae svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x754449ee rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x756cfe9a rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76fb38d1 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78019184 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7803c820 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d91ef3f xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7da4922a __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eb8aa90 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x811dfb7b bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8132ce47 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81395d8b rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x821cbc05 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x839e9721 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84e4456e cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x858ab1da sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x878aed72 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87997ee3 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x897585ee auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c146487 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e8eaf9d xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f07e726 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8faf1f8a svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9020ce48 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90931e3e xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92c798b6 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9389e4f3 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9533049f svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95395554 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9565abe2 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95dc1ce3 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98ae88a2 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d8a7721 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d941294 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dc8b057 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e1acc6d sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f1eeb86 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa10e92fa xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa48d9c1b rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa54c1191 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5f830d6 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa72373e7 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7475b51 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7dc23a2 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa87da488 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9383bb6 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa93e3227 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa651e30 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa7a3876 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaeb4087 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaf00ab8 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac46ca73 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac663b5c rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad4451b8 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafb57c10 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaff75cbe rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb13a0001 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb27a143c csum_partial_copy_to_xdr +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 0xb5c68cc5 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5f2d0c1 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6c15703 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6f733a1 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7810e8c rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7b774cf svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7e4f263 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9025473 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbacc3967 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcbd6d78 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdf7eefc xprt_set_retrans_timeout_def +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 0xc18d1c55 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3a635a8 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc4ee957a sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc57ce89e rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc59561ae xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc774a4af rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8290ab6 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc83b7a30 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9eb89cc xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca0b4e89 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb76ba9d svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc1a2bc0 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd45a919 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6d85ff xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf5f2d91 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0389547 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0502465 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd460d338 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7dd1e8f rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd971e33f xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9f83eef rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda2c4d83 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdafde4a1 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb8f43ce rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc3af366 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddc038a0 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdde18dd1 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf35bc35 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe25a4b5d rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2aebf65 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe394338a rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b5e9e5 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7852234 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea0cea93 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb778b9d svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec1aaa4f rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed8721f7 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee33f689 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeef97d2d put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf01f55f4 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0ede22a xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b3d502 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3ec7b15 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf56916eb xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6d905ff svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf87a83a2 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a58d18 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa3f7da0 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa70981f svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb10d73f svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb2c2498 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb8c01e7 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdef4284 xdr_buf_trim +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 0x1c94ba6a vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2977f297 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2efbf7d4 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x50f5a5ed vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5977ece2 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x67d99b94 vsock_stream_has_space +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 0x8b272ceb __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8f05d364 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x95536401 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a7fba2c vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbef9b72a vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdfbd2d90 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe3b98415 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/wimax/wimax 0x043f5318 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0e1f350f wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1d45f590 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x351ebd62 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x40aa731b wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x661796fa wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x67d8d6b6 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x78342150 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7f8d9dd9 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8f44ddb3 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb6841dd0 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb83ddfff wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf8187efe wimax_dev_init +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x07c052b8 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2ded35ca cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3252cead cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5f93e622 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6d5ddfc8 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x81bf75b9 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9a2d1064 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbb0d7042 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xde30090d cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xde5bcaf1 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe6d716df cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xea710e14 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xea8d4a5d 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 0x0637c0af ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x16a685ed ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2ea5c129 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x3008e31f ipcomp_output +EXPORT_SYMBOL_GPL sound/ac97_bus 0xad50e74d snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x260886ee snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xbec7faac __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x135885ce snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x27f2960e snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x8220960a snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xb18014ac snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xeb73a2ae snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xfd806c9d snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xfd98c19f 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 0x71b2a4bd _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x82e50dd9 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x90c013e5 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x93cbf923 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9e9f0ec9 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xaa6117f4 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb25f3de8 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbf9680fc snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf3ef0ae4 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x08170171 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x089ac8c9 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2958de6b snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2ab03415 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x469d8539 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x94f9e950 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xab87d3a8 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdd98910d snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe44bc9f6 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe5cb83ff snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf4d38f57 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0a90e45c amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x27a67410 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x75b21c2b amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xaf6de300 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb4096919 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf4581fb4 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfdc6ffae amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04223a2f snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07af5e46 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x09604cc8 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13338600 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1572e9bc snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x15abb7b7 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1685475f snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1cdd4b2f snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f719cf6 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2025fe61 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2282eaf0 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29348531 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ae3ca9b snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x32591efc snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35357c5c snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x367b3547 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ea36a67 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x42c995bf snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x439795be snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x439cf8f2 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50cb0d58 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x519c18bb snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x527e1c3f snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5565312f snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x57e4e7d1 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cd63137 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x602673fa snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x621e054b snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63f76174 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d4f349e snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72538f06 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x735130cf snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76cd764e snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77992220 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7dcd528d snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80d8fc7e snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83563818 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83d0efed snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x86aad987 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e23a7b4 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x91a6c7a1 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b0088c8 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa0834604 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa3407857 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa59fc5dc snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7610d09 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa952724b snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab26da0d snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2d8f153 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7c2fb89 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7ded076 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb9276c7c snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6d40042 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca4a1a39 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd252b9ec snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd41f69a5 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4a23a12 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd5d267bf snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe39a4618 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5634846 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6b39b44 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe77e8cff snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0416583 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5b9dc85 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5e84f4c snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8269601 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf8aceaa7 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf9400795 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa5a5dbb snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc694251 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfcfe274f snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x485aff7d snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5bd1d9c8 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7d609028 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x81a209ed snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xc1b91fa0 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xdc7562b3 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x04fdbd7a snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x050ba31f snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0650e605 snd_hda_get_int_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 0x07cdb0de snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a3bbb12 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bbb297f _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bf254bc azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c501b82 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d85ef4d snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0da2b5f1 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12d1a1dd snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x151714ea snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15b65bd4 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15f9e63c snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d19bf07 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1dfd142c snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1efc4d14 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21c4ce2d snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21e93d02 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24b2bea0 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x265aa1e3 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26e993bd snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27588ce4 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x278d3a36 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2adabf64 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b60717b snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f240a8a snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2fff0854 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31f2142a snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x345f21e2 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36d2fd8e 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 0x37ec4645 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39c9957d snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a7a034b snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c91e073 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3ef1a972 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42803700 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x450952ba snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x476515e0 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x479b2dbf snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47a0d8ee snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48b625cf snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49773b5b snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a819dc3 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c0513ea snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cce05ec snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4e9512bf snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4f83835f snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x508b7485 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52302d6f snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54d23e01 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55b48470 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x58ca265f snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ab2f4c2 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ac000ab snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cb543b5 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62d9674f __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6661ef56 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67d5feba azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a194198 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ad1f6db snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6aff4044 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b39e623 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bfc04f3 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e95efb8 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71975399 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72df1eae snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7339c8ef snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75451207 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77e97902 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ba188b2 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ca5a56d snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e1df6e2 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f3e3586 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x835c1567 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85c0a39c snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x89ebc225 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b31b33a azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fabb6f7 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95dfd622 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9654dc12 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97600580 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x997b057a snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c4eb88c snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f2ca3bd snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ff6e160 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa60fb8ea snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa721560f snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa90d5517 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaa60b50e snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac5b608d snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xae311071 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaec2497e snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaff8a344 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0ea78dd snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7f44d4d snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcb72173 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe23069d snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf910aa5 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc11ec8da azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc147b4ef snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5f24ad6 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7551d70 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbd1e1a5 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc1f904e snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcf2151e0 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfe7de1d snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfeb4c83 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd081d1c4 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd15ee4ca snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd18f52f7 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3f1c0de snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe07cb3db snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe09b3ae5 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe46642b6 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6a8e2ce query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeae49edb 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 0xedc4f542 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedf9eaea snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef79b8df __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef972722 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9abc6cd snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe18f65d snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffbcb962 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09a773f0 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1861e477 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19090658 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1b6b6179 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x27258f01 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e030a18 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3f7572ad snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3fda08df snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6119b014 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6b151388 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 0x7737aeb9 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7c8fdb96 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 0x8ba2d77c snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x97981e37 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9b4cf9a7 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc2b2937f snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd78f2ca1 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xde580dfb snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe8868d1c snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf0a0f619 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfc3bfd67 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x3ff867f1 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x59b30338 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x000c0ef4 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2d860866 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 0x1a387104 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x40e6fbd6 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xae66963e cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2d5fb422 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xc9b53957 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0xb444ecc5 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x47a01f70 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9e3307d2 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xa57dec3c pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc76b2b2c 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 0x506230c0 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xfb713244 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x8a102d5b rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x2eb1bc99 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 0x1d68f22d sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2f193358 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x89198e18 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xcefca5ea sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfd224532 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x07dea5c7 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x72082f2d ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x805aae48 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x386906ab tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x726c7401 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x7ad3a787 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x38056db4 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5d2199ae wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x93eb9083 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf5887790 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x4ac70f97 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x2320f0fd wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x303b8272 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xf58ad9d9 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 0x17d3e14a asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xbdc88924 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xc7320e8e asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xe7f2a18d asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xce05b37c asoc_qcom_lpass_platform_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00b364d4 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x016b23e9 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03351b75 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06f97c50 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07e33674 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0809ee08 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0924e372 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0aa94dc4 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ac61e39 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b26d61c snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0db7edb4 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0dff559a snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0ec4e2d4 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0f57237e snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10fa5764 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11cf9bc5 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x123be9d0 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x130864b8 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x143a1f33 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x155b439e snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x183787ee snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19467442 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b383538 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1cfeafe2 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1efbe04d snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21b8f802 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2248e191 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22ac14f5 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24a61c47 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24de7289 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28c1cb68 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a4fa381 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2af83cd2 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b4e05e4 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c15d657 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2da4c7c4 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fb16756 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x304b3835 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34084b8a snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3816da56 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x381f1d0f snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a1fce08 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c5b0c6e snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x407deab1 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43dc8bbc snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x451e3141 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x457bf54a snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bae5845 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d77403c snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f954f96 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fd5f26a snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57b61d1a snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5af07f3a snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b86452a devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x608ded9b snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x613599fc snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65147566 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65997dd6 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x662037a0 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x662aa096 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x666615b4 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x682b9af7 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69cb407e snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d537751 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d64a2e0 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7019e75a snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71a54ad7 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x72f37232 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76254f29 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76cd2370 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79810ee2 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b1bf53d snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bb0389c snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bd5fe82 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d7151e0 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fa6ff1e snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86e206c9 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x882d5b26 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x88d79b9d dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a532caa snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b60d246 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8d3243c8 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e0c97b9 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8eb66792 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8fa12ca7 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9070ccc8 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9224f2ae snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93af9661 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94bec466 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x971bba4c snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x979397a2 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x999d6296 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c8fc127 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f34f83d snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0125b79 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1e2bf38 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa20e690a soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6959c90 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa771f4a2 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8caaaf8 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaac31383 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab3d27f8 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabb27665 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac27b048 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xace6332f snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaddf6cc5 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae2afe2e snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0421873 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4b210ca snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5b6f80f snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5d4de87 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb657a6ce snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb68a363e snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbddd7e5f snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4801696 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7a90581 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc85cedff snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc99f3d9b snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd057050f snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1659da7 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2b707c6 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4b7ae74 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6ea7394 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd8654746 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdac5a9c8 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddbc5197 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddf4dbe9 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0daf898 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe161233c snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe190efdf snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe37a3314 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5f1dd5d snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe71bd0c1 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe88fa4ba snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeac11016 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec47eab6 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xecaf5202 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf096e570 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2105673 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2e8271a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf309c002 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4059fec snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf61db2d8 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc182bc9 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe210026 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe78bfa6 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfea654a3 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff33d119 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0b83bde4 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3f9bdb36 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5a594b82 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6667632a line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9332c78b line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x936e54bc line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa0d7229f line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4dbfa62 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbb3fe86e line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc732f44b line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcb3ea28a line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe1f16ae2 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xefde76f0 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf2d2864f line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfaed046c 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 0x0002bb5e ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x0015dc4b ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x00168828 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x004830e1 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x005289bb wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x00604cfa ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006dc22a scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x007336be crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x0079dabb pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x007ce3fc register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00b16a62 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x00bca6c8 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x00be614e dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x00cf0d9d crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01165f74 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x013bbf50 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x014a8f05 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x01563fa7 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x017061dd raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x017a937b __class_create +EXPORT_SYMBOL_GPL vmlinux 0x01836a05 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x01a5b969 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x01af862b regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01cac14a device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f40ab4 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x02519c22 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x025259ea inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x025f7190 xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x029bf73f class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x02b14b77 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x02c4750f dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x02d1fd85 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x02e1f5e9 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x02e8c8ef ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x02f7474c devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x02fe4755 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0303bd46 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x031fa025 bus_unregister +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 0x03941d19 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a6daf6 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x03b2ef32 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x03c451bc pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e9df7e perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0433d164 acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x04363114 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046b7513 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x04725093 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x0489570e fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048dc28a blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x048f770b vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x04963c25 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +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 0x051986e7 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x05198b9a skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x052e5251 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x0537d1fe bgpio_init +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 0x05742ea6 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x057db067 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05a7ae6c irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x05c6add7 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x05db3961 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x05dec3ba gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x05e49272 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x06047f4c regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0611c465 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0632cf27 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x066c7460 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0674d7f6 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x067a8731 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x068fa2e8 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x0695966f tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x069d3a23 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06e3310d virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x06e91729 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x06f0b930 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0704c287 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x073325c3 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x073914a2 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x073d2f40 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x07413134 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0767ffdb shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x078fb4cb blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b3223c spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07b5e5b4 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x07d3282e pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0x07f2d184 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x07f32463 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0820a867 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x0825fd47 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x0826e25b __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x08640073 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x0865ea0d extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08954889 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x08a7bfb0 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08beb64c serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x08c57da5 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x08de572b dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x08e24e01 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x08e265ed nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x08f8a9e7 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x09075099 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x093fdb1d tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x095160d0 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0956196d pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x095eba5a __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x09768366 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x09acc639 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x09b45cb9 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x09b5f4ef __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x09d0d909 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x09e99300 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x0a1095b8 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x0a578a18 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x0a7a1a92 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x0a86a69c regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0a878d26 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x0a962317 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0ac3d59b gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x0aed2263 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x0afa11fc pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0a7f0a dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x0b41049f ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x0b57eb0b subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x0b7d6c82 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x0b8cbe1e ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x0ba1dd72 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0x0bcd59e1 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x0be13fff smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x0bf95f98 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c328c7d nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x0c5e6570 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x0c641416 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c8907cb tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x0c8fa575 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x0c951b4e da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce0f486 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0cea8b4a pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x0cf04b8a of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x0cf5d7b0 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x0cfdabfb virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0d12244b xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x0d28c68d ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d790ee4 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d8fd5d8 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x0da29f34 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x0da3bd78 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x0ddacca9 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0debb227 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e05fdc4 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0e2d2ec3 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x0e30be2d shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x0e382f89 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x0e38d7ec list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x0e6d0c15 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x0e76ae39 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x0e8106d8 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x0e831519 xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0x0e8ccc2c pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x0e8fb0d0 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0eb5380c kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0ec94ae9 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ee2b652 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f16e17e component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f3e4a8a is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x0f4b1fff inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f75ee07 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x0f7b9b89 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x0f81998b anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x0f85c56f exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x0fad3a54 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x0fadbec2 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x0fc19ae3 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x0fc9d887 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x0fcf9199 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x0fe2d570 xenbus_directory +EXPORT_SYMBOL_GPL vmlinux 0x0ffa2f89 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x100bc032 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10610d87 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x107c8700 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x1087db23 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x10a9e7f7 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x10b633d9 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x10d88919 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10ee56ad sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x1106e703 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x111378c2 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x111e1fdf xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0x1145e7e7 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1145fcc1 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x1148f75d regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x115396e0 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x115dd8ef regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11815176 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x11b21c67 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x11c974ac regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x11caddc7 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x12212781 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125403dc dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12b17889 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x12e1311d __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x12f63b35 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x12fa4054 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x130099b2 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x130de01d trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x131717bc pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1317626e rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132d7bd2 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x13398a19 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x1342d6b7 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x1348386b led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x134aa313 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1368152b ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1369a4bf __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x138a7ea9 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13a21f04 thermal_zone_get_zone_by_name +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 0x13d5116b pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x13d72eb5 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x13dc39a5 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x13fc44e0 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x1405e4f3 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x1416fd1d file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x141739ee platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x1470340c devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x14797ebb crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x1491d477 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x1496e6ed usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x149a356b shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x149d0998 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x14f161e5 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x1505b21c pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x150f70d9 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x151d3f26 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x1530022d pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0x154be5f0 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x1568d983 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x157555be sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x15823318 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15910e3c ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x15a2db5f sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x15a9099c single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x15b2c68a xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x15dc1219 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x15ea21d0 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x162515d5 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x1643895e fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x16650815 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x16678083 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x166bc939 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x1682a4a7 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x168676f1 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x168c40c8 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x168c742c __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x16c5d075 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x16cbcf2e tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x16e48389 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x16f83ac3 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x17784400 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x177da470 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x17f93207 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1802b862 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x1809afd2 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x180c8340 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1820b3a2 vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x1836e301 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x185a0dc6 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878ccd9 dev_pm_qos_add_notifier +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 0x18839d57 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x18ad4d53 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x18f87988 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1916e727 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x19217696 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x1932756a regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x1948fa47 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1965ff83 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x196bcc89 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x1982a919 xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0x198a6ed7 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b67fb3 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x19c27d92 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x19d06d3e ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x19d0d593 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x19d5babf get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x19e91955 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a1a3c90 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1a43a230 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aae3bdf i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x1ac98f2e tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad04755 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x1afca083 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x1afde381 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x1b023772 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x1b06dab2 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x1b0f3e82 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b1ce030 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1b214b94 devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1b36b097 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x1b36c76f __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x1b3bc72e sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x1b5d33a0 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1b659bdf xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b9333ed sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x1b97c661 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x1ba4e671 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x1bb4aea1 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bce0ae9 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x1bde88ea get_device +EXPORT_SYMBOL_GPL vmlinux 0x1bee17cd __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1bfd17e6 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x1c115150 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x1c246038 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1c4beeb7 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5dfd18 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c652f50 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c908265 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x1c9bb4ad ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x1cbd282a gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x1cc9bded __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1cdead21 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x1d08c3e3 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x1d12fe4e __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +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 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d7cb586 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x1d9e30fc mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1dabf5b9 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1db6c1c3 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x1dcd5674 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1df3f46c fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1df796c0 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1e1452c1 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1e21ddb7 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1e220372 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e68ce14 trace_seq_putc +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 0x1e942e4a dma_buf_detach +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 0x1ed179d0 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1eed1051 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x1ef2dd8c of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x1f41aa3a blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x1f619653 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f663c22 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x1f6d62bc smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x1f6db526 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x1f7b1710 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f9d9c91 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1fb2df4e sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x1fef2190 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x1ff57aef gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x200eb3e3 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x200ff780 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x201b3532 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x203bf2f4 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x2048d510 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x204f5ea7 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x206e5561 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x2077c606 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x2084a2da rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x20898d34 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x2097fd98 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x20a376d0 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x20a3ec48 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20d8d226 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x20da125c serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20f1efff devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x21088bbc devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x211ca02e alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x211f804d pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x21394ac1 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x2151f5aa usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x215d6d61 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2165460e __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x21905f68 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a6f3bf dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b5df55 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x21cb568d sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21f4aa9b __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x221eb471 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x2227edba ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x223cf9d7 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x224b0d44 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2262d6c8 find_module +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22af4a84 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x22dcc293 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x22dd3262 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x232109a5 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x234084a3 pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x23425be3 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x23703e36 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238a3976 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239e59de page_endio +EXPORT_SYMBOL_GPL vmlinux 0x23b797db btree_last +EXPORT_SYMBOL_GPL vmlinux 0x23d0d2bb sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x23d41ae5 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x23d7e0f5 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x23f4792c crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x242fe566 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2443984d msi_desc_to_pci_sysdata +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 0x2471835c powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x247af805 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24954e9a sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c00fc1 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24c78e53 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x24ca1ce5 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24fdb122 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x2509d734 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25297404 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x252d2405 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x252e8a15 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x2553d837 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x259900d5 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x25be31b7 xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x25c54e31 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x25c81117 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x25d5a779 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x25e00aa6 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x25f6c369 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x260726e8 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x261afc7a __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x2621348f xen_swiotlb_unmap_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x2625df1b ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x2627ead4 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26349f0d nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x263b9156 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x265f759e kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266e87d6 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x2679b530 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x267f1df7 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x2684be01 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x2686ca91 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x268ed7fa ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x26ac1f8e fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26b82e97 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x27133038 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2721294e inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x27251cd1 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x27279663 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x2729de1e udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x2732f611 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x273eb024 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x27584fd8 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x2762eb63 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x2772fc49 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x27942e8e usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x27953058 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x27b5f73e ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x27b7a48e relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x27b80763 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x27c0b020 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27cdee3d spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x27d02fa9 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x27d34291 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x27e3d3f7 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x27e61da5 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x27ef4bbf ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fcd2d1 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x2808e021 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x280f8508 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x280fe86e of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0x282c740f ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2834ad17 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x284e5887 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x285ab9bc ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2870b81f ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x2880c6c5 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x288d11a5 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x28df18d4 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x28e08b20 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x28f064ea dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x2900b562 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x290625c0 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x2929afc0 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x292d08bb blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x29460956 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2967dbec mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x296c0b87 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x297216bd elv_register +EXPORT_SYMBOL_GPL vmlinux 0x2986a10e cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x29893bb3 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x2996900c tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x299cdb35 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x29a1cf19 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x29b961a3 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x29d16a6b l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fd9516 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x2a09db53 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x2a252c00 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x2a450876 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a45d8fc vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2ac4a86f mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b1f67c4 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b4c4d8e sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b99c2e0 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x2ba2181a dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2bb9a264 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x2bd3d221 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c020cb0 fat_dir_empty +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 0x2c394ac6 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x2c52744b bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x2c5b3ac3 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x2c78d74f generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x2c7d527f kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8674c6 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2ca8ea10 amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x2cb75af7 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x2cc3885e inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2cdae53b irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2ceb5d43 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x2cfaf44c nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2d106ad9 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d23150b regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x2d36ae89 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4f74c9 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5dd3db ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x2d893597 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x2d9c63b7 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x2d9ee328 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2de389d9 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x2e1da9fb probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2e3e02 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e47f19c dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x2e4c7c8e blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x2e75c5f7 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2e823858 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2e8a615c phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2e94fb8c platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x2e95f85e crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec419ee modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ecedb75 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2ee0af59 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x2ee1fee4 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x2f001944 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f126b30 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x2f2f06ca sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f638ade srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f79efe4 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x2fb3fb0f stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x2fbb5ee3 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x2fc07ccb tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fe669a2 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3004dacf pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x300642d0 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x303b0e81 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3047fc2f rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x304fa7d1 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x3051c358 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30a4968b x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x30a82784 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30b58dc8 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x30cb6d84 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30e21f99 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x30fb297a ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x30ff83ad acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x3116204f task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x3116e4c5 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3126d1d5 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x313d4e6c cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x3161aea6 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x316a71e9 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x3170f235 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x317a1674 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x3180c75d rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x3180d45c ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x318ba847 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x31ac5d2f blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c2749b regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x31c4c837 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31f5b8c2 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x32058865 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x321040bd sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x32198f4b posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x324b22fd securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3258862d skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x32638046 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3266261c __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328c7930 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x329473d7 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x32b4273e kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x32b9bcae devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bc62f3 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x331d2124 pci_destroy_slot +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 0x338f450e rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x339ad9ba alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x339da3a2 component_del +EXPORT_SYMBOL_GPL vmlinux 0x33b912ca crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x33bafe73 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x33cdabfe md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x33d85fa0 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x33dbd916 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x33df096a rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x34331655 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x3439a9eb gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x3461416a rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x346fa099 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x3474a3ba init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x3486ad82 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x34987748 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x34a5ade6 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34b0deaa device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x34cd73f4 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x34d6e78c __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x34fa8cfe device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x35045f39 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x352947d5 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x353bf5ab sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x355abcd0 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x355d5e1d regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x356079b1 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x3561d89c sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x356909fc skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x356cb71a rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x35784f13 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x357debee regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x357e3ba8 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a55b06 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35c363df iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x35cc7436 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x35d46e2d usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x35d5b90c ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x35dccc40 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x35dec964 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x36072dc0 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3656cd1c __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x3670df49 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x367fdb23 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x368323f4 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x3690dd0d amba_device_alloc +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 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x372701cf pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x372861aa irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x3751af3e uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x37722704 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x37798a9b crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x3779df9d fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x3780dc95 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x379fecaf nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x37a72805 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x37bca99d platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x37bf59e4 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x37c5f46e efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0x37e99eb4 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x37ec5db7 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3802ee81 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x38137f2b pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x382e7f97 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x38463141 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x3856bdab of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x3856c6e6 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x38580bc9 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x385b5a21 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x386173f6 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3887fc34 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x38c9f4a8 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x38d12242 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x391dcdc1 gnttab_unmap_refs +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x395b1c16 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x3965b4e4 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x397ef399 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x3990bad0 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x39986a59 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ebec1c crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x39f6b5ce sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x3a067b46 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x3a0b7a84 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x3a18b7b8 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2d8b8f tpm2_do_selftest +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 0x3a7c0702 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x3a8908f7 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3a9a90e3 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x3a9bbdfc md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aac9f88 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3aafc881 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x3ac182b8 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x3ac3f26c con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3aef5673 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x3af44a7a usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x3aff3d53 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x3b08b627 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x3b153bcc crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3b499020 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x3b53fe91 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b69a99b iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x3b6d4f1e debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x3b7fd910 bgpio_remove +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b973324 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x3ba3ffaa mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x3bd582d3 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x3bda6d77 device_register +EXPORT_SYMBOL_GPL vmlinux 0x3c0004f8 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x3c049709 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x3c0850f8 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x3c17bde7 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x3c2eadb9 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3c315505 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x3c3ee0d1 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x3c67487c crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3c6ac511 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x3c78767b ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x3c86ea30 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x3c8780d1 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0x3c8afdce kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3ca09268 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd2d9b5 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x3ceb7cb7 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x3d06bcad add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3d0f2fbf usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x3d3273b1 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3b81d0 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3d5248cc efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x3d59410e blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3d5d9fe5 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x3d5e9e76 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3d5f392d acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0x3d64abc6 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3da29ecb stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3da86bc4 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x3dae830a crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dcae180 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x3dcbd44b devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3dd6c80f pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dec2230 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x3df0a43e dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e11e3ab dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x3e13fd4d xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x3e1a8fe6 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e5ec8eb xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x3e68f50e nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x3e6af7fa crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x3e6f13a1 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7603f0 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x3eb39ee7 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x3eb859bf thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x3ed00315 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x3ed5edee regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x3eed5054 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3ef8f76a device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f0b8d5f scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x3f4f4ea0 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x3f5341af efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x3f5dbf90 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x3f815e81 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f91e3a3 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x3f992ac2 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fea5c4e thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4012706d i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x40142b86 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4047734f dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x40660aa7 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x4085bf8f crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b5ab0e dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x40c2c890 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0x40c52755 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x40cae566 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x40cc34de fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40dbc442 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x40ddd6bd invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x413d780a ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x41443c3c skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x416ba866 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4199833c debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x419bcb7c mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x41c2f4ef get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x41ccf510 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41f5234c acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x41fa8881 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4203e4b4 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x420c8a2e regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x4217d3c2 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x42208643 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x4220e86a __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x422771c8 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x424c174b clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x4260b865 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428ba3b9 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x429ec61b devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x42a3b95b platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x42c0f9c1 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x42c2ac62 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x431194f6 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x432ad102 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x432ae1d9 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x4359021a find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x435f223e kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436a48f7 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x43875083 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x438ddaf6 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43b4fed6 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x43b651bf bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x43c04fad crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x43c2a786 __cpu_clear_user_page +EXPORT_SYMBOL_GPL vmlinux 0x43c5a714 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43e73836 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x43ed25a2 pwm_set_chip_data +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 0x43f8be10 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x4448db5c spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x445f0c6a of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x44669d6a gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x446de478 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448bc82f scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x44a793ab HYPERVISOR_grant_table_op +EXPORT_SYMBOL_GPL vmlinux 0x44ad6bc9 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44cd71fd tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x44deed34 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x4503c9aa of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x450737b4 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x451d2fb3 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x4526a941 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x45314d30 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x453602c6 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x4576337f atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x45917bed mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x45a02115 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x45acd832 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45e80b89 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x45f4a600 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x45f5fc4b mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x45fe039a ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x4611917e sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x461a2e5d clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x461dcbdb irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x461e267a bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x461f9c5b fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4644332c devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x464e3642 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x464e9619 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x465c1210 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x46615a96 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468ce4da of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x468dfeaf __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x46b7d56f irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x46c6fce8 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x470025b8 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x471daf86 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x471f54c2 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x472075b4 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474cd35c power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x47515d8f irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x477b9e2d dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +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 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47fcb9a1 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x47fe8fca usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x47ffe71a gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x48263794 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x48675006 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x488689e7 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x489d06b6 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x48db6f3f devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x48e63314 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x48f57cd9 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x48f612e3 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x49030cf7 mmput +EXPORT_SYMBOL_GPL vmlinux 0x49615e67 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x49709a4f cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x49860b5c tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x499170ba irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x49b83951 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x49df222b usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x49e0fd21 __cpu_copy_user_page +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49feb496 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x4a255f90 pinctrl_utils_add_map_configs +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 0x4a603541 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab126c4 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x4abd52cc regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x4af33b23 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x4af56a26 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x4b028d36 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x4b44b407 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x4b50be60 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x4b531540 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x4b68eac0 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x4b6e74a6 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x4b76ac9c acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x4b9aee1c wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x4be05f2e class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4bf08b45 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x4bff9396 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x4c0cfb28 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x4c49e038 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x4c4ce689 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x4c517bac exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4c6c782d pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x4c7baaa2 clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4caa453f ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x4cf0d055 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x4cf77fe5 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0e1c3c regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4d15d7ad of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x4d515f1d percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x4d541aa3 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x4da4fb5c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4dafb0ff xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x4dc5d7f6 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x4dd7f93f rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4dee88d3 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x4e08ae4d ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e113519 elf_hwcap +EXPORT_SYMBOL_GPL vmlinux 0x4e13f720 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e26910b regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4e367a10 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e62dbc5 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x4e6dad6d mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x4e84ceca gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x4e9851e5 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4eac8914 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x4eb86451 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x4ed02942 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x4eda18a5 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x4edbf71a gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f1e568c sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x4f2024a3 amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x4f2c6fbe inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f35dbae pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0x4f3c8acf ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x4f3cd95e validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa1e430 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4fc754d4 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x4fcb97a6 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x4fcc9595 __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe067a5 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff03fa9 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5005b69e btree_update +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x502e5e26 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x5031db7b kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x50576d9d _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x505f796b irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5077df8e pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50b35dcf scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x50cb1ed0 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f44309 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x50f4b874 arch_pick_mmap_layout +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510d23c1 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5115b3c1 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x51418189 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5153dbfd iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x51666b85 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x51686373 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5180b21e tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x51826715 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x5187ac4b xen_store_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x5191bd3c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x51b1de44 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x51b9fbb2 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x51cc76cc crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x5219125f virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x52256da2 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x52295f5d regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x523ca802 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0x523f3f4b ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x52422064 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x5243352d register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x525e1e5d kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x5264b58e perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52776d3e of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x5281668d acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x52924d14 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a58abd init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x52cc558e class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x52d73c1a ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x52e10c7b iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x53061cc2 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x532d8cbb crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x534116b0 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53592c20 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53bcac49 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x53c403b8 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x53c54bd9 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x53da54a6 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x5408ff6f tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541f7cd7 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x541fc468 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x54600213 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546be176 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x547bd641 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x547fca23 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54c223bd ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54dd1f56 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x55039699 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x550e17f6 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x551e7fca irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x551fabb9 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5543fbf1 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x55526907 xen_features +EXPORT_SYMBOL_GPL vmlinux 0x55641fbd of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x556de043 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x5571790a cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5578e808 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x55a0117f amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x55a33b5c skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x55bf3c21 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x55c0be9e dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x55e035c4 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f6c17b driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x5606adb5 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5617fb02 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x561c1027 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x561ef824 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x5620e981 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x5621bb32 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56293fdc ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56327af8 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x56360602 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x5676a98d ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56bff3ba __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d9e5bd xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x56e0b839 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x56e39251 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x56e5960a debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f00dd5 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x570ac4dd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x571921f6 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x5719eff1 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x571fe9e1 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x573d2e9f dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x57530f3b mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x5782b328 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x57835093 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5787e7dc bpf_prog_destroy +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 0x579f1e96 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x57acc9a8 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x57ad3d90 pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x57b4c29d kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57e5748e platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x580af734 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x581b9f83 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x582c60df pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x583b638c xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x5859599d xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0x585ce9ea pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x58687be2 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x58882354 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x58918fc2 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x58944521 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x58958b43 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58ccde45 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x58d3c0c7 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x58e14f15 HYPERVISOR_event_channel_op +EXPORT_SYMBOL_GPL vmlinux 0x58e64813 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x5903c344 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x59387e59 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x5987a4dc xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x59a6006f clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b4298d devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59ebaf38 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x59fdc676 user_update +EXPORT_SYMBOL_GPL vmlinux 0x5a0adb14 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x5a1b2fd4 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5a25d02a irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a30b238 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5a322201 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x5a55af7a irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x5a5bea81 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5a72b670 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ab5c438 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x5ac00712 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x5acfdcf2 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5ae79466 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b07f55e crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5b1c9b1b devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5b35126d tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x5b42d815 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x5b5505d9 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x5b5682ed xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x5b747b9d kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x5b82b030 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x5bc939f2 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd20c14 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bebfd68 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x5bf69bf7 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5c05a9bc securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x5c0b6822 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5c1d63a3 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5c52241b acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c6eb736 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x5c82b18e vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5ce2c6d2 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x5cf6b85b trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x5d045727 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d29ae57 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d71a5ef pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x5d7960fa xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x5d7b53af cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x5d8ec2b8 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x5d94864c devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x5d9f4249 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dac312e regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x5dbba1bb __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x5dcb8fd2 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x5dcd7160 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x5dcea21c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x5df8fdf0 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x5dfb9282 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x5e0bcb78 xen_dbgp_external_startup +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6e06c3 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5e972f47 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x5e9cbad7 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5ea81111 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x5eb967b2 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x5edb335a pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x5eeb3613 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5ef65858 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x5efa61c9 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x5efd4493 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x5f054cbd pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x5f08a8e2 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x5f0bc667 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5f160ea4 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x5f1d6fe8 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f821920 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x5fa7c7e2 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x5fa87567 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x5fb9ae02 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5fbbd708 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fc50301 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x5fd55f69 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x5fe1ff89 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x5fea4ee9 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x5ff52bbd inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x602b8acc pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x60442822 phys_to_mach +EXPORT_SYMBOL_GPL vmlinux 0x604613f8 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x6046bceb acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6095a8a6 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b7d149 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x60ce98c8 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x610695ee perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x614c6482 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x615c5b37 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x616f36a1 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x61913b20 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x61a72200 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x61c998c5 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61d449f2 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x62016bf6 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x620bf64b cppc_set_perf +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x62208646 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x622ba09e pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x622bd72b __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6230cdb4 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x623e7108 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x623f010f thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x623fe635 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x626db1a4 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x62aafeb6 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62d6c33b ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x62ff5dc1 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x63008809 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x630101b8 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x638c09cc inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x63a259b4 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x63cea922 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x63d7b571 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x63dcf167 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e6420f pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x63e6f051 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x641624f5 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x641a0393 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x642d6144 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644642bc scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x64470db9 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x64784b01 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x648d0846 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x648fe36f adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x6493d62c pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x649fc66d usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x64a17df2 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x64a1b7eb max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x64d37459 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x64d91dd2 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x651828eb virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x65228340 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x652a0d31 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x652c6aeb scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x653e5a46 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x6550dc9e usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6554bb39 of_css +EXPORT_SYMBOL_GPL vmlinux 0x65b5928b shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c40763 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x65c60d4f fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661903d0 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x66197eee user_describe +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6636cf3c xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x66447d6c of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x6647ad44 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x6670ab04 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x66811e38 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66866b3c inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x6697e8e3 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66ab55c2 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0x66b8ef91 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cd76ac vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dc8fd3 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x66e3a4d2 pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x66e3dd03 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x66fec86c subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67006fd7 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x671c11a0 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x6720d0e7 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x67275626 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674c95b5 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x674d3ca4 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x675281ce __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6754c7ea __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x67605f7e acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6798dc00 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x67d160c7 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x67df205b tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x67e8a4e0 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x685b1911 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x685c00ce virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x6862ffb4 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x686ca12b ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x687439e6 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x689df322 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x68bb9358 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x68c20662 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x68d59bd2 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x6917d3ea hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6920c4e8 bitmap_resize +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 0x694f967a rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x697605f0 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697e57b2 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x697e769a tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x6992b554 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x69b7f4d7 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x69c24bf8 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a220a39 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6a386eab crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x6a4003b0 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a53c90d scsi_schedule_eh +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 0x6a8ac867 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6a950ae4 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad851cb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x6ae09be5 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6b0ab0b6 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b325730 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x6b7de85f extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b936da4 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x6b9e5daf ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x6bac7216 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x6bb08775 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6bbe6cc3 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x6bce37ea of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6bf4cba7 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0a17d8 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x6c1e00df __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c641bdf tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6c6cca15 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6c6ebc18 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x6c7800ae mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x6c7a538f of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c8a4606 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x6c901cb9 dm_path_uevent +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 0x6d08a0cb pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x6d2acd06 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d379f7e ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x6d3fa925 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x6d49489b module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x6d5a458d alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x6d674345 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x6d6ffdf2 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x6d72b9f2 component_add +EXPORT_SYMBOL_GPL vmlinux 0x6d7ce4dd dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x6d877479 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x6d8e120e uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x6d9a1aed of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x6dace178 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e1ec1b7 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x6e4f58be bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e5a02b6 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7d97c3 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6eaeda10 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6eb08044 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x6ed021b4 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x6ee56c9e pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f36f606 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f416afa device_move +EXPORT_SYMBOL_GPL vmlinux 0x6f433ffd __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x6f48b304 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x6f6b7615 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f8c295f __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x6fac0b87 xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x6fac959c regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x6fae8090 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6fbbfd2b dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x6fe3314b wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe85397 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6feb18ef fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6fffce9f blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7010c5d3 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x7023b5b2 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x704e9a07 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7051c58b __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x70604ad7 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x7064da8b btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70a36416 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c76f07 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70dee9a4 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x70f626d0 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x71013655 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x7104cc74 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711a5225 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x711abf23 efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x7120a747 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x71334e86 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x714bdd2d of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x714cce7e get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x715b2fc4 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x716df46c dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x718a28e0 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x7205c08f usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x72355210 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x723e0e85 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x72542b51 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728affee ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x72916cfe pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x72be45c6 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x72da2b6e ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x731053b5 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0x7314e0d9 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x7319fceb thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7337cdab get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x73389731 __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x734ac239 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x7359b905 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x738700bf acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x73997523 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x739dda56 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73ae1aeb wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73cd8a40 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73fa2112 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x7405c619 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x742b8d63 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x742f15cb serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x74370744 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7468d7c4 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x746965d9 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x74813eba transport_destroy_device +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 0x74d2368a unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x74f22cf3 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x74fd5888 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751faf65 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x754b4be5 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x7581cf61 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x7583f64b cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759925e9 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x759ff347 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x75c17f9a inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x7600164c reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x7615fa12 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x762fb47d mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x766eeb79 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x7677bd76 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x768088dc ref_module +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76911fdf regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x76a7c27e usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x76a83857 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x76a958a9 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x76cec96c l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x76d4d4a6 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x771f3da0 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7726e4bb regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772c4b27 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x77349fb0 stmpe_disable +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 0x7787482f pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0x77983975 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77d1897e devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x77f12f3e pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x77f3e29c xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0x7808ec6a event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x780d02e3 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x782041bd usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x782fa32f tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x784048f6 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7850a378 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x789b7919 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78c40286 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78c7ca69 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78cfcc48 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x78d32e77 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x78f4fb7c of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x78ff6dc0 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x791e1e72 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x79394321 sdio_claim_irq +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 0x7998e6a6 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x79b2eb33 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x79b7b26e xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x79d8525c of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e71448 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x79f53a4c devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x7a172794 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7a1dcc05 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a2f9d7f regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a40a246 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x7a788fc6 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a9ba1a5 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7aa74d85 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x7ab137c3 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ad073bb unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x7afabaf1 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7afd76f7 blocking_notifier_chain_unregister +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 0x7b230261 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x7b609011 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b99f75e gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7b9fb143 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7bb2a438 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x7bbe763d of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x7bcd0ce9 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x7bd810b4 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7bd9a283 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x7be7365d kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x7bfbc208 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c147be2 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c342448 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x7c39fa4d skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x7c3ebb0c __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x7c5b2495 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7c741b7c of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0x7c772af4 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7c7992e3 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c7df949 acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x7c8123b1 init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x7c92f72d iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7caee811 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd8c6e5 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x7ce04bc5 mpc8xxx_spi_tx_buf_u32 +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 0x7d042b0b of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x7d0b9677 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x7d111b25 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x7d13e9f7 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x7d56256d power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d979707 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x7d9cc0e4 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc0598e sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x7dca0518 HYPERVISOR_multicall +EXPORT_SYMBOL_GPL vmlinux 0x7dcd5bce single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de40efe bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x7de620e5 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7deace64 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x7deede8a inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x7df8bc12 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x7e4c49bf da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e6464ff regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7e6be858 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x7e736ef1 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x7e7a330a bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7eaf0bb3 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f18f17f irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7f22ff47 md_run +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f282a48 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x7f56c34f regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x7f604f9a proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f82e7e9 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7f9891e2 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fe491e8 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7fe505d2 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fe8debb devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x7ff9f84c ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x7ffac984 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x802e1d46 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x8035b4cc crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80b06096 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c8dd61 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dadc03 trace_event_buffer_reserve +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 0x812ccc22 blkg_print_stat_ios +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 0x81a8f650 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x81ab1db7 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x81cbfd72 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x81d91b4b skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x81d9f3b3 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x81e01a9b phy_create +EXPORT_SYMBOL_GPL vmlinux 0x8203c541 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0x82215181 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x825fb0bd devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x82674fe8 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x826d952f class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x827b1bf8 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x82b1c92e fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x82b88987 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82ecf18d regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x82f4c7d0 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x82f53e0b cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8311dbf7 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x8319b9ce PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x83354c89 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x8346aac2 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x83591e0e ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x83652412 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x83786ea3 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8398e803 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x83d82a18 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x83ea2476 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x8401ceb2 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x84155e51 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x84188234 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x842063fc fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x84558d15 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x848f90bb is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x849ce2fb tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x849e8cb9 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x849fa60b pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x84aa8124 of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x84aec141 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84ef7fe8 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x84f5f613 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x850063b3 device_create +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 0x8521108c vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85433e23 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x857e443f of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x858100a4 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x85931ed2 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x85a43f19 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x85bdcd92 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861e2606 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x8634d5fb __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x86476f20 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x8648b854 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x86503526 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x8653cd3e param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x8673531e pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867d9f02 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x8681fabb ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868ab43c sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x8698ea40 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x86a381fa pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86bc36af subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x86cdc18a sysfs_create_bin_file +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 0x86faa238 call_filter_check_discard +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 0x8746dbbf dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x8755661b class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x877423f8 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x87795935 amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0x87b74ba1 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x87d47ab7 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x87db404a crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x87f7d554 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8824d880 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x88325d89 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8837c95a debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x884879e7 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x884cba34 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x8850f000 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x8860ef69 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x887d78c2 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x88919664 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x88a9b934 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88c520d3 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x88facace xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x890908a2 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x890bc30a acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x89101455 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x8916ceca tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +EXPORT_SYMBOL_GPL vmlinux 0x89233095 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL_GPL vmlinux 0x892c31ec usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x89358893 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x89476318 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89ba7688 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89cf0d32 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x89e1ff65 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x89ef29fe pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x8a312db1 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x8a4c3cb1 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x8a531b2d devm_hwmon_device_unregister +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 0x8a79e1ac md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x8a7c637a kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x8a826360 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x8aad33dd inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b0aa479 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b25add3 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x8b2af831 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x8b47aa3c blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x8b5a9650 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x8b5fd04f usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8ba5afe9 HYPERVISOR_memory_op +EXPORT_SYMBOL_GPL vmlinux 0x8bb7c90a regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x8bba7279 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x8bd18252 crypto_ablkcipher_type +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 0x8c07f14a vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x8c089580 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8c1eaf76 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x8c238353 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x8c2ba667 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x8c371367 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x8c426607 rtc_device_unregister +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 0x8c831c18 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x8c8c495a pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x8ca1d81e iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x8ca1e204 percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cbf34cd kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x8ccc84d0 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x8ccf41ae usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cda54ea devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cebbee5 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8cf75cfe i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8d175d6d kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d331524 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x8d36fce8 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x8d63ed79 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x8d692bd3 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8d975bfc nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x8d9fa235 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8dad3915 dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8db13636 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x8db7d6ed shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x8dbf7aaa privcmd_call +EXPORT_SYMBOL_GPL vmlinux 0x8de0a8d5 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x8df67613 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x8e07d8ca gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x8e0f1bcf eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x8e164981 shmem_add_seals +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 0x8e34372f ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8e3f4f18 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x8e66d6a4 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x8e82e537 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x8e90b06b crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8e963a6e crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x8e9d7b21 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x8ea3d517 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x8eab694e tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x8eb21f5e kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x8ecdc246 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x8ed89d20 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f2c5a85 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x8f3b2245 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8faac947 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0x8ffaeee4 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x8fff8221 xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x90139146 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x90227cda set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903bb65b acpi_dev_resource_ext_address_space +EXPORT_SYMBOL_GPL vmlinux 0x9057ee1e powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906982a2 acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x90934e4f usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x909fa03e arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b763f1 HYPERVISOR_console_io +EXPORT_SYMBOL_GPL vmlinux 0x90c43c41 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x90cdc299 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x91106daa wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x91125d13 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x912b648d rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x912b935e device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x914f2517 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x915b7a3c sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x915f1a29 acpi_cppc_processor_probe +EXPORT_SYMBOL_GPL vmlinux 0x91789479 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x91793b7d dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x9181556a crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919ad0b6 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91dc9b36 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x91dee4e4 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x91ebf917 arizona_of_get_named_gpio +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 0x921e467e ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9237bfac regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x926f3d00 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x92782a05 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x927df400 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x92a2baa9 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x92bc3c05 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f1f140 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x92f69123 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931517ce thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932475a4 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x934114f8 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x9354c146 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x938e5fd2 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x93aa73fc clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x93ce0556 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x93daff1d iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x93dc6285 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x93e04aa9 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x93e805f8 xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x93e8e059 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x940cf996 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x940e3953 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x941b9bae usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942002a0 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x943d9301 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x94446379 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x94547b8a crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x9461ed62 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x946a2b99 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94c67825 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x94cc6713 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x94ce83cb pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x94d6ad52 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x94e62d2e __set_phys_to_machine_multi +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f95e38 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x94f9a50a pm_generic_freeze +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 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x95810f8e acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95a7be18 dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x95ac0a85 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x95b4b9c8 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c2e707 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x95cc7fb6 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x961736dd cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9625e652 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9626a87f ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x962a8600 reserve_iova +EXPORT_SYMBOL_GPL vmlinux 0x9633bbea spi_alloc_master +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 0x96ba3299 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x96c284dd netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x96c8cd3c ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x96d1245e crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x96e7d9b4 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0x97163ffa dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x97183a86 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x973a90f3 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975b22a8 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x97645e97 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x977822cb inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x9794c440 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x97dc991b of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97f20cc8 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x97f2bbaa regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x97fa035a of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x97ff013e virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x98067cf3 xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x9806ccbb pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x98479fe2 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x9847e861 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98756634 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x9875de90 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x987a12da gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x988b9e28 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL_GPL vmlinux 0x98d75d44 of_fdt_unflatten_tree +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 0x98fb680d apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9906ba5e gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x99120a3c ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x99174857 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99414a7b pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x9941dc72 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x994252e1 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99657ebe iptunnel_metadata_reply +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 0x99b43f90 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x99b51060 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x99b8792c kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99d0c5a3 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x99d8fc24 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x99e67cf4 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x9a009c6b kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x9a101a8d sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a127ec1 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9a17ac5d xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a923583 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9a9246e5 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x9a95f686 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x9a998af8 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x9a9af1ba virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x9a9fecd2 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x9ab0b943 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x9abb1be6 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9acb1d92 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b205a2a sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9b262966 pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0x9b45ec2e hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b4ef3f8 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x9b6b58c9 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bbba521 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bdb40b8 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c067f02 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x9c1e7fa1 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c5b30b2 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cea6a30 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9d033a90 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d1ed04b swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x9d2bc06c perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9d367cfd debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d68999f devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9d6ec455 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x9d8e1fa8 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x9da0c9ef gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x9da5ee62 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9db349b9 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9dd2144a gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x9df88c12 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9e049e83 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9e0542dc irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x9e166589 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x9e1d6c16 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x9e2eb730 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x9e45aef8 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e536330 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x9e61ddc9 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x9e8a66f8 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x9e9cd0c9 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9ea59f44 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9ecc89fe pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee42ebe put_device +EXPORT_SYMBOL_GPL vmlinux 0x9eea816e usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x9ef7dfda btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9f20c163 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0x9f3e1d29 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x9f517986 HYPERVISOR_hvm_op +EXPORT_SYMBOL_GPL vmlinux 0x9f85aca9 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x9f9fbf4f of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x9fb8da7a i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa014a6ac trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xa0187f7f netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa02f08f8 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xa04c7939 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xa067bdab regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0xa07933f7 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa079f374 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xa087c9e7 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xa0abe2bf usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xa0c2736d add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xa0efaefc sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xa0faab11 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa1030f06 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xa108e15c blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11988ab usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xa12d3802 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa132780a sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa14b6721 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa1660302 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xa186541c phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xa189dafa of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa19b0491 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xa1b663aa wakeup_source_register +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 0xa1fc7574 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xa2272f74 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0xa25cbabe debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa276c3d7 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xa27c87af posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa28431aa __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xa2911fe1 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xa291b51b unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xa29dcf68 wm8350_reg_unlock +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 0xa2c1c727 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xa2e5407d dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa2e564f3 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa2f54312 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xa2f55ad8 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa306543f spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xa319aec6 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xa33239d3 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xa34f9334 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa367c25e zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xa368d103 gpiochip_find +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 0xa388e60b irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b10adb unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c27302 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xa3c48b4a crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xa3d9b97c key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xa3da8ed9 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e5cd37 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa41f722f of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xa41fdf81 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa42b62f4 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa42d96a5 acpi_cppc_processor_exit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa463c6e6 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4822ff6 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xa4914b04 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0xa49665ac trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xa4bfb441 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xa4c20a5b crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xa4c95c12 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xa4da0450 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xa4e04ca3 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xa4e56733 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xa4e9b032 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xa4e9cde9 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xa50519d9 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xa5108d59 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xa5224229 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xa5443a58 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xa561b9d0 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xa56c59cc fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xa582382a net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xa583c4b2 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa585cfc3 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa58a3b1f pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xa5b7fa99 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xa5c97937 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0xa5cbd615 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xa5ced426 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xa5d153d8 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5d29717 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5fbdafb crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa61fd267 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xa620d8d8 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa6443a1f wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa64a67fc devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xa6574daa devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa662bcde dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa66ad5e9 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xa67c4cd2 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa68ad0ea usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xa69722a2 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa69a5153 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xa69c0f8b reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa6a2f90c get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b997d4 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xa6daf97a rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa716dbca kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xa72152f5 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xa73c5a77 efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xa7554a85 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa76f2472 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xa78367a2 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xa7898923 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xa7a69106 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa7afaaeb kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xa7b88ce8 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7c56848 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa7c87bc5 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xa7ce9025 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xa7d44ae0 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa7d6f9e4 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xa7df0709 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa7fae979 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa8053c53 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xa81bc96c scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xa827414f pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xa8308131 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xa850dafc idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa858ce08 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xa87199b4 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xa8733449 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa88e56f5 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xa89f6b3f devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xa8aa6450 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bcaa8f task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xa8cd8fc1 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0xa8d22402 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8d46a06 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa8ee60e6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8fe3231 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xa92190a8 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xa92d8c2e pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9342b81 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xa9438be0 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa98b30e2 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xa9936bff kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xa99559c5 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xa9a0b6cb debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xa9a1838e usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0xa9a551b9 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa9a90195 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9b76fdb scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa9c0795f dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa9c0e6ad bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa9c461be __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xa9d7dfea __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9ed0dc9 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xa9f43b01 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xaa0b690b power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xaa10805e phy_get +EXPORT_SYMBOL_GPL vmlinux 0xaa1315db ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xaa16ff5d filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xaa41a148 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xaa43404c iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xaa867bb7 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xaa8a2dfd usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab6e58e ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xaabbf517 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xaabd9afc virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xaacc1ccd i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xaad26bd1 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xaad34a81 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xaaf7b7d5 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xaafee5a0 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab064268 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xab257c5d fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2ea8fd usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xab3668bf class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xab55dd96 led_classdev_register +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 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab7a225e gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0xab8ceced gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0xabab79ed usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd1bb7a to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xabeb91c5 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xac024671 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xac37ac0a acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xac638a68 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xac8d35e8 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xac9f127e of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xaca04cfd cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xacc7fba3 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xace8fa8e blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xacec2ed2 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xad1e8685 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xad29382b ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xad36966e usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xad426b8b blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xad4620d2 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xad4a9089 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xad568307 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xad5e8453 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xad6c6765 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xad79e837 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xad7e05ae sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xad83bce2 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xad8578b4 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xadbe8d72 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf0c234 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadff7a79 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xae1bca11 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xae505f83 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xae66524c xfrm_output_resume +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 0xaed5b6bd dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xaedb3ca6 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xaf1822de tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf53b512 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xaf6c3d0a devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xaf8a6b14 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xafb07262 __pfn_to_mfn +EXPORT_SYMBOL_GPL vmlinux 0xafb2ff51 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xafb5e728 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xafd9d26b ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xaff3c6a4 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb00408e1 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb0156b4a pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb02d7edb crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xb032186c crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb043cef4 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xb047604d i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xb05c79c0 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xb05e0021 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb081ab73 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xb083d440 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xb0845bbf kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xb0874933 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xb0882ab0 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xb0940bee sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xb09e58b8 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0af5f51 arizona_of_get_type +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 0xb0d9b398 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0xb0f3bf6f dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xb118b1ab ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xb1299b5e pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xb1377719 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb162212a flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb178392e ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb188ed32 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xb18fb520 md_stop_writes +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 0xb1c17592 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xb1c6f9c1 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e30237 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb229b11b virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xb260bfa5 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb2a08974 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xb2b7fd93 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb2d37942 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xb2dc3187 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xb2e72afe usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ecea5d of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xb2ee9f93 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0xb2f50f7c crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb2f51b46 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xb2fc4166 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3024907 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xb3068b9b devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb3169a8a pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb31a9b89 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xb31ad3fb gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xb3313954 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xb3343574 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xb3344cb6 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3512975 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xb35af140 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xb37e6a22 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xb37f4018 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xb3a14544 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xb3a985e8 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb3acc585 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xb3ba8b91 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xb3d53fc1 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb3e5794e usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xb3f8a62e gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xb403a557 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xb412674f power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xb436becb handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xb4596cab acpi_get_psd_map +EXPORT_SYMBOL_GPL vmlinux 0xb4706e91 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xb47c1cdc ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xb47d67f3 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xb4822bd8 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xb4931fbe shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xb494c197 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xb4a19da1 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xb4ae5ecf sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4cac147 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xb4dfe678 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb502ab50 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xb5068be2 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb54aba3f xen_dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xb54ae693 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xb57bede8 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb591c3b3 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xb5974362 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xb5a0713b user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a930ff ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xb5cabf0b devres_add +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63eb9d9 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb645b131 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0xb650f243 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xb6581caa pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb663e29d ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb66eb0f2 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6cace29 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6fa67a6 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xb70292c5 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb73b740a trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb73fff8b ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb748de44 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb772a133 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xb7b2d6e1 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb7c6652f regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb7dc2dba efivars_register +EXPORT_SYMBOL_GPL vmlinux 0xb7e17ac6 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xb7f44065 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb8156587 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xb818fcfc i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xb829ec80 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb8371336 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb85901e9 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xb85ca5ff sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xb869980c tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xb878dd9b tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8a09795 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xb8a954bc vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xb8b1c30c ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xb8c42776 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d1f25c dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb917b6d7 return_address +EXPORT_SYMBOL_GPL vmlinux 0xb93b7cb4 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xb940baa1 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xb942a8a5 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb946ccb1 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb94cd69f platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xb9726d60 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xb9926dbc arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb99d5f80 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bf1093 pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d1fc04 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xb9e343c7 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xba1a0052 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3018fe spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xba699cc1 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xba8e5198 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbad282ea srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xbaeefade pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb00d718 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb864695 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xbb93cbfa usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xbb99d623 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xbbbe5644 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xbbfcb77d rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xbc27150d of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xbc2f72b0 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xbc3b3bcf max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xbc54ae1a regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xbc693383 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc76033a usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xbc92d130 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xbcaa6b21 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcace37c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xbcbcdd2f hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xbcda7f15 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce360be ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbcee366c reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbcf0d2af dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xbcf4aa38 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xbd230501 tpm2_gen_interrupt +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 0xbd8a7845 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xbda94165 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xbdba31b9 acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbdc5906f devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbdcfd7e6 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdf027de ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbdf79aa3 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xbdfbdfa1 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xbdffc0e5 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xbe00292b phy_init +EXPORT_SYMBOL_GPL vmlinux 0xbe07e62d devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xbe0b2f08 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe234550 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xbe391cca wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbe3edd54 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xbe4e09e6 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe929d82 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe97566f tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe98d24c kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xbea2ec73 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeaa43cc skb_partial_csum_set +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 0xbef3eb89 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf07175f blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xbf16fb26 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xbf1bace7 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf237928 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0xbf3f61bf irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xbf45b8c5 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xbf4c028f bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xbf63e7d2 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xbf6a557a metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbf7085de dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xbf8d459c pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xbf9b7965 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc58fff trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xbfdb2825 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbff5abfb regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc018a95e power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xc0214d7a usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xc03c5b8c regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc04335ea cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xc0489554 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xc04b21bd acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0509455 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc06ed920 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xc06f7695 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08e9b90 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xc0900fcf acpi_os_get_iomem +EXPORT_SYMBOL_GPL vmlinux 0xc0906049 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xc0983468 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c0814c ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xc0c25ab7 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xc0d027d4 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d380e4 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0e48c3c of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xc0ea8e03 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f37e79 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc0fa303b virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xc11a794d blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xc139e27a platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xc1413882 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc143790f device_add +EXPORT_SYMBOL_GPL vmlinux 0xc14580f8 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xc14b6403 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xc14c2824 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc1738a06 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0xc17409bb nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1c4dc68 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xc1ea24e0 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xc1f9e9fc regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc20b76a0 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xc21eac92 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xc220e565 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xc221df66 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2456aa0 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc24abae7 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xc24dc75a ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xc25d2a63 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc26d266b regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xc275fc86 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc292e4e6 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xc2ae4272 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xc2b23717 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc2bc96a9 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xc2bd7249 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xc2d1d934 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc2d8fa7e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xc2e1599a vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xc2e78cf5 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xc2ecbd1d dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xc2f8b3fc usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xc304253b crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xc305bec9 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xc30f2ade ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xc322f9eb user_read +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc352cb02 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xc357215f kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc357bf91 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xc35ff5e3 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37a6ec9 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc3a0118e get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3eac09c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xc3f9ebe0 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc4079e4d debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xc41563f0 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc439cc14 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4591179 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc46f5a55 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc489996c regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4a7b161 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0xc4afc16e devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e9e47b percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc50bc429 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xc518d125 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc5222a6b uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xc529bf57 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc552a959 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc56a4ff5 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5a402e9 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xc5aa5f1d vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xc5c49d9d vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xc5c8e990 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc604a25a bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc61f450c rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xc6216ce4 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xc63aafc2 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc63f79d7 __root_device_register +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 0xc67817e6 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a0224b device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6cd770b sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6f5635c __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xc6f59673 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc71f1d42 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xc7278816 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc74a0fa1 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xc76317d5 acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xc766a0c3 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc76888c0 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xc78aa1f1 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xc795b6b6 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b756c1 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7e3e43a devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xc80e238f mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc81eddb5 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc8246d4b vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc8802936 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xc896730c device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8cd54d2 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc8d17fcc init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8f4da7c stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xc8f72eef ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xc8fda183 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xc8ffbb57 input_class +EXPORT_SYMBOL_GPL vmlinux 0xc9017e80 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xc90fa74d regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9393a97 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xc94ded04 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95be5ac vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc96963b7 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc98764a3 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xc9aa8639 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xc9b09dc2 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xc9b1c154 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc9d094dd crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc9d6314b acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xc9dc8d46 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca06f0ec wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xca32f1c0 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xca33c3e2 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xca5960fa dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xca6fd7ea md_stop +EXPORT_SYMBOL_GPL vmlinux 0xca71de65 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xca79e0f5 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca9c45bd pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xca9c6520 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xca9f165f register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xcaac9027 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xcaafbedb usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcad49fb9 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xcaeb3f12 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xcaf61595 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcb029490 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xcb09a692 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb28e77c queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb6cb53a clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xcb78ae26 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xcb94c8fd to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xcb9ae841 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xcbaa3816 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xcbba1c65 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xcbc4c08f regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xcbdee81b bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xcbe55c73 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe9284c pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc08d2a5 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xcc47183a sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xcc5dc5b0 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xcc63b871 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xcc7482c5 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcc76dd96 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc9856d3 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xcca99fdd bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xccb0fb91 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xccb5fc66 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xccb69a51 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xccc11b68 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd67760 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xccd7ff3e rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xccdddea3 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd1e887d device_del +EXPORT_SYMBOL_GPL vmlinux 0xcd2ade1d __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xcd63e77c thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd89ccdb spi_bus_unlock +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 0xcdd78617 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xcdd7ee47 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcdff9693 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce18df2b kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6f31b7 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xce898acc acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xce8ce1e8 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xce956999 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xce9603b0 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcebeaccd scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceed8c16 __set_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xcf13ed21 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf1c6021 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xcf1d83c6 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xcf2e2464 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcf4f4ade register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf55857a wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xcf6ef73a inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xcf7c6604 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xcf8aa6d7 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xcfac8c46 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xcfb3ef99 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd251d7 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xcfd33b01 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xcfe508b4 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xcff663a2 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xd00d78eb key_type_asymmetric +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 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 0xd07303a4 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xd073696a wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xd09695d7 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xd0b85c48 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0cc2242 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd0d1e90a crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xd0d631b6 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd0d750c3 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xd0ea7417 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xd0ebcd79 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xd10e0217 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xd14fc3b6 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1783fc0 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xd182291f of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xd185228a wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd1b01fef xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xd1e7fcc9 unregister_pernet_subsys +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 0xd22d3963 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xd2446d42 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xd24c80a1 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd24f7e6c blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd256b3e4 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd2579ffe ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd2ab202f usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd2b1e9eb ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xd2b30153 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xd2cdfef4 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd2d1e158 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd2d39257 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2f10d10 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd32a46fe md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd348069e pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xd34baf40 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xd35575e4 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xd35d630b flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xd3700c07 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xd3a63d4c ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3c09f1d ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd3db8008 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xd3e20cd2 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd4021c09 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd417cee4 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd420a859 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xd429dab3 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd433123d device_show_bool +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 0xd484b61b __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xd49b8f81 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xd4b559ab da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4ff9cfc blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xd50ecfd5 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xd5101c60 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd58c1469 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xd5a67bed ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xd5a9a781 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xd5b91396 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5dad7b1 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xd5e28630 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd5f8a040 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xd5fcfd97 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd618bca8 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd61d4610 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xd628d2f1 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xd636b962 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd64d166a sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd672c593 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6bacae7 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd6d8aa67 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6ddfc40 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd6e4a6c6 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xd6e66ccc ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xd6efaf99 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd71aff46 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0xd722f078 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd7250898 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd7529d05 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0xd763e029 pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0xd7660881 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd7701f9e fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd771f69b sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd792294d klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xd7ae1209 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xd7b9d5ba regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xd7c83456 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd7d76b97 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7d7eaa9 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd7ee4f81 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd825b0f9 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xd85c4494 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd860526d usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xd8736047 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8840638 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xd8bb6fac usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd8c5ee2d do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xd8cee229 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xd8edc057 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd920d55b shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xd927d94b __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xd9396c4b clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd950006d regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xd96315fc usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd973bd93 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xd9746650 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd97e7348 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd9912687 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0xd9b2c8cf blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f207d7 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xda0a0a33 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xda1ecd45 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xda532e01 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xda6a4bfb bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xda77adc5 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xda81554c crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xda824cf7 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa5a757 xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xdaa8e81a gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xdac31056 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xdadc7de9 copy_reserved_iova +EXPORT_SYMBOL_GPL vmlinux 0xdadcc57f of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaea9e83 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xdaebb632 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaef1e90 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xdaf48817 unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb1e0ae5 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xdb28277e sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb74c49a led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xdb75c9e2 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb916fd0 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdb91c60d xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdb96c290 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xdba3b974 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xdbcc9135 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xdbdfc66d spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xdbea41be acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbf8d11c of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xdc052d27 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc340a97 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0xdc34fcde regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xdc42ea56 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xdc4d66eb irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6a77a8 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xdc775454 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc8db6e8 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcbfb80b rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdccf5f7c sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xdd0a5de9 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xdd1655e0 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2bb635 pinctrl_lookup_state +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 0xdd60597d of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xdd93064b irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xdd93788a mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0xdd98f885 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc9444f crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf43720 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xddf8fd47 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xde1006bc devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xde312bfb blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde7666c6 pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xde7dd88e gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xde91f2ff blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xde98cdab relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xde9dce03 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdea41b53 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xdea9b6c7 efivars_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdec7f7ca pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xded9077b power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xdedf548c device_rename +EXPORT_SYMBOL_GPL vmlinux 0xdeec6910 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xdef39460 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xdefb943b of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf156a8f alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xdf16f220 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xdf46ae12 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xdf4c8d45 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xdf4ff8df bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xdf55be01 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xdf564e98 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xdf7948df usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xdf876efc irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdf906a8b pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xdfae5e66 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xdfb2ff85 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xdfe2e7bc sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdff9b02a of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xe00017d1 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe062d0da ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xe06856bd wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe08636a5 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xe09463c3 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xe0a16b70 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xe0ad641a ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xe0b125ec xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c2d21d pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe0c5a770 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xe0d7c869 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xe0d9ff01 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xe0df7e59 acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xe0e01bdf fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe0e3147c HYPERVISOR_sched_op +EXPORT_SYMBOL_GPL vmlinux 0xe0ea9358 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xe145bc0f mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1711a7f adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xe176b558 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1849aa9 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xe187c99c usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe18e69b3 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xe1947633 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xe195c04d dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe1a09f41 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe1ace9ff ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xe1af46cd crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe1b89818 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xe1bc5374 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe1bd9837 dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xe1bfea2d pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xe1c157a8 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xe1cea462 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xe2347ac8 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xe263e122 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xe264fc0d virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xe27db784 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xe27ec8ff devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe299165f inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xe2a5e620 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe2b1f441 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xe2b3d219 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe2dca9be phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xe2e329c1 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31150dd stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xe314c89b ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xe380e63c ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe3970a13 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xe39ebb0d cppc_get_perf_ctrs +EXPORT_SYMBOL_GPL vmlinux 0xe3a0429d of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xe3a14793 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xe3c4897e regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xe3f21109 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xe412f8b3 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe417388c mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xe4309353 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe452fef7 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xe4570eb7 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xe457db54 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe47118eb xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4ad517e aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0xe4b18667 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xe4b415e2 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4bf8567 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4c569d7 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xe4cb8dfa devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xe4d69bac pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4edc25a clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xe5142090 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe519cfcc pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xe51c03a9 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xe527c6da mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xe52c8fcb stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe52fd242 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xe53d056d klist_next +EXPORT_SYMBOL_GPL vmlinux 0xe545f0ba bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xe54cdc21 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xe55e5a81 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xe57c123c pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5b65bd8 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xe5bd0fca devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xe5ce00eb irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xe5d11a6d get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65aeb78 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe664a03e device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xe692c031 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xe6999efe kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6c872a6 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xe6d7f924 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e8f965 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xe6ed8cfd ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f56652 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe6f83837 acpi_bus_attach_private_data +EXPORT_SYMBOL_GPL vmlinux 0xe70e4ff1 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xe7216340 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe74983d5 devm_kmemdup +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 0xe77d5c97 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xe7815aac pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe78cf0bd rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe793a82a tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe7eaa82e dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xe7f21ac9 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe802f7b5 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe822afb0 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xe83027d6 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe8392cbd pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xe84c7d17 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe856fa30 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe85dc448 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xe85dd9d2 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe88911de pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8a96073 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xe8cffefc ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xe8d3a7ff ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xe8e6cb21 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe9054e0c regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xe90b1278 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xe9104bba __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xe92d95ca request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe95628cb debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe965cd85 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xe96d0f77 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe9afc122 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xe9b3e73f find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xe9b6b675 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xe9b85476 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xe9c851b0 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d3a40f class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xea0d9734 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xea0f8403 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea155057 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xea18eca9 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xea208eaf securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xea22211c hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea5d229f attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea93be9e arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xea9bee5d of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xeab1c12b ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xeab4d8b8 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeac39ebf uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xeae10851 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xeaf0856a rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xeaf315f7 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xeaf76a20 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb28d73e tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xeb2e83cb ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xeb2eb288 efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0xeb3a2ca6 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xeb567395 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb93bcd5 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xebaadd5e system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xebad7d81 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xebbd0ed5 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xebc1ed8f __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xebd0bc01 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebee41e2 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xebf30418 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xebfc6885 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xebfe13d9 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xec013f76 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec1d0aca pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec3fbab2 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xec44c04e trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xec6045b8 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xec71c2b0 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xec994d29 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xecd3db17 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xecdaa42b device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xecf045a0 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xecf30b72 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xed64fe11 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xed829799 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xed9d3edc serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xedb67db5 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xedbb9075 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedd26dec cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xede3b195 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xede48be9 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xee05a523 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xee2a796f posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xee400149 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xee669260 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee6f6106 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xee805cba task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xee87a30c gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xeec34e4f inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeeee6e0b pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xeeeec973 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xef059e88 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xef157ddb trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xef302581 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xef3aa3b4 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xef444145 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef710786 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xef763b66 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xef7c7c4c pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefbab8a9 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xefbdc61f i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xefc3b57c event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xefce391e clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xefe04c2f register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xf016bf57 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf050ec2f wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06c5f7f inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xf07125eb usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf075ba89 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xf095f19e ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xf09dc083 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0xf0a26a82 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xf0b3155b debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xf0b63756 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xf0c0b70e kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf0c2cbce wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xf0c35dcd get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0cc89dc usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf0cf83c0 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf1581dd9 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xf160e790 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xf1790f16 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xf17a9616 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xf17cd40e ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf187c26f of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xf19645ab device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xf198c263 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xf19e615c clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1cfbe42 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xf1f4cfba gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xf1f80707 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf2049f7f relay_open +EXPORT_SYMBOL_GPL vmlinux 0xf212d668 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22e720a blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xf239dc50 max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xf249cc17 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xf261581c ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xf26766c4 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xf274ee0a ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xf278bd6c device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf27dfaf7 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xf28baf57 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf29b17d0 kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2d237e2 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xf2da41a0 efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0xf2eb8999 xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf2fcabc9 pm_generic_suspend_noirq +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 0xf3215cfa of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33c3005 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf3535bf5 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf3696ccb nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf373bc63 device_remove_file +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 0xf3c4a323 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf3ca9416 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xf3d16a69 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf410a15e napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf43e417b handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xf440f8e8 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xf4481f54 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xf45d11c4 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4ae43e7 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xf4affcf3 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xf4b262e5 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xf4d1b6a0 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf4f7e0ea xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50e9ab1 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf52c1806 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf53abcba inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf555f614 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xf56d2c2b wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf5785b42 evtchn_get +EXPORT_SYMBOL_GPL vmlinux 0xf57a4448 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf5816221 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf59f44c1 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b71652 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf5e02243 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xf5ed9c65 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xf60c7158 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf619bbf4 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf62b6d08 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf6426881 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xf64dd845 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xf6750eb6 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6a93fad led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xf6b98c37 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d47de6 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f18523 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf72c297d swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xf7405b7a devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf7492a0d dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0xf75721aa devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf765deeb yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf77303ff serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xf7763d02 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xf7769eb2 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xf77e3320 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xf78355e2 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf7a13dfe of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7adf168 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xf7b2f4c0 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7e9da4b otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xf7ed7dce sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xf807a44d of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xf809ebd7 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xf80f76da tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83478bf ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xf84023d8 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xf85cf946 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xf87c601e gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf89543a2 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf89cbf73 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xf8ae9dba debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xf8b2118e acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf913e231 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf91fc3cf device_create_vargs +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 0xf9517ae0 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95bda68 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xf967422b HYPERVISOR_xen_version +EXPORT_SYMBOL_GPL vmlinux 0xf96b0934 vfs_kern_mount +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 0xf9cd7ee9 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xf9e3b218 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f297ad pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfa1127fd scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa654d4c ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa976ba2 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xfa9caea3 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xfaa212e6 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xfaaa507b bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xfaed4d6b iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb09410b watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xfb0b1e6e fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xfb126139 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb40fa5c key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb88f0a0 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfbb2b0af da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc22a70 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xfbdad27f dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xfbe3cfa4 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xfbf0d4a8 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc10f7c1 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc25da26 put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc530a62 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xfc55a84c device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xfc8ad884 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xfc996a64 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xfc9ee47a hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfca3d123 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xfcf14490 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xfcfbb779 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xfd01dd86 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfd1e19ca of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xfd43f729 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd52be1b tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xfd548f7c ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7b47a2 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfda88e2a regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xfdc1305a nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xfdcdf06c sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xfdcfefd8 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xfde8f84c clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xfe09dcdd vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xfe401c2e device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xfe453a2b acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0xfe59fc48 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe9c696b devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xfebab310 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xfec013fc devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xfece5c16 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xfecf3360 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed4252a scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xfee3314f stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xfeede3f6 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xfef546c4 split_page +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff06ec83 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xff0a3f3a ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xff0e47c1 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xff157488 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xff176047 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3e2c0a serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xff57197b da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6c4820 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xff75e979 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xff8c1692 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xff931da8 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xffafd2ed skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffe1b96c mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xffe6f304 kvm_get_kvm only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/arm64/generic.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/arm64/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/arm64/generic.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/arm64/generic.modules @@ -0,0 +1,4392 @@ +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 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/armhf/generic +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/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 0x22d060be crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xac0be0d8 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 0xaccf62c1 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0xa481166f bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xf3394687 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 0x01abb775 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x14f5e303 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x2352ada4 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x290e4afb pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x302f0a1c pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x3c239d8a paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4a56b054 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x745fafbd pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xba8f1f88 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xbc33c9b3 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xce793531 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xd94d6100 pi_connect +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x911a43f7 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x02a720df 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 0x355db6b7 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 0x6023c48f ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x67cb9784 ipmi_poll_interface +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x6b4ca172 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 0xa11a3c82 ipmi_register_smi +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 0x165f06f1 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4b748309 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa6be02a0 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xad1f68d5 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x10686cb9 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb20c06e7 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xec867a31 xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x5a7ae183 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x631709cb caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x67236890 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x789aa102 caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x85021412 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc4d9f9b2 caam_jr_enqueue +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1edc7411 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3e70b238 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x9dfca082 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xccb80259 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xf603041d dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xfce089bc dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/pl330 0xdde783f2 pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0x554553f1 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x136fa694 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x23755ce2 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x337e436c fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x33fae40b fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x33fd078f fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3ea3e603 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x40cc88a2 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x473123b6 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x48be6ec4 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4c9a15ec fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x50dec5ef fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x738d3c70 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8534ad1c fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8e984b1e fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x928c05ad fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa085f5c2 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaa344cde fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb4e14807 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb54a5aa3 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6da7703 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc796e5c9 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xccc8bc00 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd11d0c9b fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeb0c9049 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfaf175e0 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd48baec fw_card_add +EXPORT_SYMBOL drivers/fmc/fmc 0x5a4894c3 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x7e82bbe2 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x809d6c49 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x859bb680 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x959c9f04 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x9801fa90 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc91f670d fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xcad29409 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xd30c53ac fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xdda39d5e fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xfcf77f29 fmc_device_register_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x009f497d drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x013f88e1 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01467518 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x016afedb drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0193db27 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02362a32 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x025645c6 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03555001 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04091811 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0582de99 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06aaf7bd drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06f7132c drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07f02518 drm_property_reference_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 0x0b6487a9 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0df88294 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e48e733 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fb5337d drm_mode_create_aspect_ratio_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 0x0fd6295f drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10782880 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11d2e10a drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14437b3e drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x164bddc4 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16ae1bc5 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18152499 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1885c726 drm_mode_create_dirty_info_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 0x1b76b914 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c2ddd5e drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c762ed7 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f214413 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f66d2e0 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x201eaa55 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22540545 drm_gtf_mode +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 0x232791ef drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24a18e1e drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x262bc2f9 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x269c5589 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b17f415 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b350d13 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cde45c2 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d91bd41 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e9a4225 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f2b0b2b drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f34dd3a drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a170d2 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f733db drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33190665 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x369ab960 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x370eeec2 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x373b19c6 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x379fe366 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x386aab73 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38c9ab5c drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a87572a drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac7abf2 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac9e7d6 drm_plane_force_disable +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 0x3c58b43b drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d40b681 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d559723 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dd8673a drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dff3fce drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4083822e drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4097a293 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4135db0f drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x430e1962 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43c9eed6 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c7988d drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46004f52 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x464019cc drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x467188c9 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x474fd032 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47f5c5e1 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48077fc3 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49409626 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4af9a697 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cc6fc15 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4de46f5a drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f8b166c drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x500493fe drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51427861 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5287da08 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54e4b26c drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55029624 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55eab8a8 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56445c21 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57caeccd drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ba44a0 drm_unplug_dev +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 0x5a74550f drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ac176d8 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c683055 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cd0a767 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d47c92c drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5da50608 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e5f3cce drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f099a35 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f1d5d9b drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f4fd4e9 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x607a5ae2 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x615801ba drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61a5f434 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62800d86 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62df39de drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6304fb99 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x637aa7d1 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64dd60f2 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x668e0cba drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67e87249 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6938b4ec drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a069b57 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cb3ae09 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cefd784 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e20c781 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e8d19e5 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed9a8e9 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x700654b6 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70cce685 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71210191 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x717ca0d4 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73e9935c drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x758000f2 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x764de9f6 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77780e2b drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7784d3e5 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77a8f616 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77c9bf75 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7815fc82 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78e0f800 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79251f06 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b0d900f drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b558d1a drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bf4c9b6 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cebe216 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d860645 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80539313 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80979423 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82f375ff drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x844b1838 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84d6e4a7 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86609f25 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87dcf819 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8860c583 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8876d8ad drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88a2d10f drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b88818 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88fe0e2b drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89770780 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89a49561 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a2f209a drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c795d1d drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cf25a98 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d56458c drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e5485d1 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f3d85c6 drm_legacy_addbufs_pci +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 0x92f72d37 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94cb67cb drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95d0c5db of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x965c55e9 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96dfb8fd drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x970bcf39 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x971ba9e8 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97312900 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x978e943b drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97b7fb07 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98ea8d56 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x993124be drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99ac5391 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a17bfcf drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b0023f7 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ba23e60 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9be61b10 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d534153 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9eb1866a drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f9cd2d3 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fcd5d14 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0de9484 drm_dev_unref +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 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa54eeb1a drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa73e2f05 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e07c61 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa82e2117 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa83dc332 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa219d81 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaac02e37 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab72af25 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xade0c249 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae7382e3 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeef1e9a drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1d2e71b drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b1b1ce drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6f86fb0 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7d49a79 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba45fc96 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba55e4cf drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbae96d1c drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb3da1a3 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb69cede drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0b165e drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc4f1a09 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc63fe9f drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd3ac4a7 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdbb8b4c drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfea5292 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0043ab4 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0496faa drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc063fd2d drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc084b7f7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc087c31b drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc089c887 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e4941f drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4315fff drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4a967e9 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc529db1f drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc556c072 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5584268 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc57fb798 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc791d17d drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7ebe184 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc7ffffb2 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8f822a5 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca27716c drm_crtc_handle_vblank +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 0xcbe522ad drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc444ca5 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5a37f9 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf35c5fa drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfe00117 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd086f628 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b71e04 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd31402f6 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3a049a3 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd515cca3 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd556ba07 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5dab088 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6ae051b drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6fc9e81 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9bb58f7 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbe8cbd1 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdccdeac4 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdee7fd8c drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf75d0fd drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf8e866f drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfcdcccb drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0cda4e5 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0d14049 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe36c8a4f drm_gem_vm_close +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 0xe8e1f9cf drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea36513e drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea875cfc drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec691c94 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xecf5056f drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed1ddc36 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeb73ac7 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefa461d2 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefdd4be4 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefff6c77 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0cd8415 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf137a64f drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1463cc6 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf14bef5d drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf20d459c drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf43b283a drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf606dcdc drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a307af drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6ec0e09 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9e37721 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaba4e6a drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb3ae12c drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc603bfc drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc911a99 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcc9b9f5 drm_debugfs_create_files +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 0xff5128ee drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0038695d drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01cc42bc drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x062b569c drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x077d9ab0 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x07d6ac9e drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09104dd5 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a65eba3 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a694595 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c4fedfb drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c85853f drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cf12933 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f895978 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fed5b1d drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10583831 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11774d41 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12aabc4a drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x143e01d0 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16b07c26 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19c26bb8 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dd10f71 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e95e471 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x209b4e32 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x221c8974 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22498f8f drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22672a9e __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2296ddde drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23af431b drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25c83882 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x262cd4fe drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26595086 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28876731 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28aa58d6 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28aed755 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x298ef0e6 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a5d7cdc drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2bd1406c drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ce538eb drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e53daab drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30864375 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3134d253 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31e1da49 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3754748a drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c02b13b drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e323d4f drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ed51cc4 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41b1342f drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c3e7817 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4db69d55 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e25e854 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54a0d9fd drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5547a6cf drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x56e9dbbf drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59fae92d drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5af6bf63 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5eee0ff1 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61ad4c1e drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x620a44a9 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6306b72d drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x632ef956 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6823057b drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68f05759 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69adea3e drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aa1e239 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6df1c766 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70a2a47a drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70ca013f drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7183602f drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72c9021f drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x736432cc drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74fc2a22 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7978d6e2 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79c52f84 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bd62d0c drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc191fc drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dc9c03a drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7e0ea4b5 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f979986 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81c86111 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8217ed34 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82deb002 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x834ad7b6 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83fffc80 drm_lspcon_set_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 0x880d754e drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8854eb78 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8970bd84 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89c3a5a6 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f879943 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x925514d5 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94a79242 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x965c9b9c drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9aff6fb8 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b476110 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b879a1f drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9be85bea drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9e886cf6 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9eab8ec6 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa019efc4 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa16a44e7 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2b551ca drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa304454f drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4a782c6 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6cb468b drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6d9fb52 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7010fe4 drm_atomic_helper_connector_set_property +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 0xab09b1ba drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0218628 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4f3e98e drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb553e049 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8c421c4 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9169c49 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb97008cb drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9f3b975 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaa81830 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0efeb4a drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc42cc3c6 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc45343d7 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6a5c96f drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7c29495 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9e5fdf3 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca152263 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcad43170 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb83eece drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce540d2b drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd70620ca drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1087ae2 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe2b60894 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5206a51 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5cbca5c drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6e0331f drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7828dfd drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea142480 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaaa4581 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeba98d45 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec79d9ee __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec92c4c9 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeee0ee3f drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0133b52 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4b12dfc drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf503c018 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6d3d2a6 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb46b7a8 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xffb95571 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x00b38b14 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x022429be ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x02a4ed4e ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03de3e8d ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05e62bf9 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0693b7c1 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x069a4704 ttm_mem_io_free +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 0x19395b28 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x19804706 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d2de332 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x218f775b ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23c4a495 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2851155b ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b5c29e3 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c3cc601 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c7fac9b ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ef4c2bf ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3067cab7 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36a466e5 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38d39e35 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39c86ef7 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a495cfd ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x400354b5 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47bc33e5 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49319e7f ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a2932c2 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5017ac71 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5525bfe4 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x614fb30d ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x661b05cb ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66d6b419 ttm_eu_reserve_buffers +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 0x6c1e7e2d ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e623e49 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x714a008b ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x800e9fd6 ttm_bo_mem_put +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 0x893162dc ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x90869d62 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91b1403b ttm_mem_io_lock +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 0x9e89b626 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb0df593d ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4778f5d ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb4db252f ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba8187ea ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd2cf1a9 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbdeb9474 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfb782be ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7884f44 ttm_tt_set_placement_caching +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 0xcea06d64 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2d2010a ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda9ff89a ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdfcee4b4 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf03cf36f ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf1a76ebc ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbcc6520 ttm_tt_init +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/host1x/host1x 0x09a191e9 host1x_syncpt_get_base +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0bd2e0cc host1x_syncpt_read_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x0d5423ad host1x_channel_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x120826a3 host1x_syncpt_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1a5e77f7 host1x_job_pin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x1dbb6c7e host1x_driver_register_full +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2b962d4c host1x_client_register +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2d789f8a host1x_job_alloc +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x2e6d7c72 host1x_job_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x43799a4e tegra_mipi_calibrate +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x470fe338 host1x_device_exit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x490f8fa6 host1x_syncpt_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4af01f40 host1x_syncpt_read +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x4c25660d host1x_channel_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x58510071 host1x_syncpt_read_min +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x656ab67a host1x_syncpt_incr_max +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x6cb4355f host1x_job_submit +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x74920100 host1x_job_unpin +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x88d7645b host1x_channel_put +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x8f7dba6f host1x_syncpt_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9344d4ef host1x_job_add_gather +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0x9451a33e tegra_mipi_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa158b6e7 host1x_syncpt_base_id +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xa2196971 host1x_driver_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xb3972c81 tegra_mipi_request +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xbca2d7ec host1x_syncpt_incr +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xc8edc26c host1x_syncpt_free +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcde93000 host1x_device_init +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xcf159a9a host1x_client_unregister +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xe5975543 host1x_channel_get +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xec945efc host1x_syncpt_wait +EXPORT_SYMBOL drivers/gpu/host1x/host1x 0xf2abdf54 host1x_job_put +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 0x3477e45a 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 0x156a7526 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb9edf190 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xda1740e1 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x6d887c3a i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x9f18634c i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xb74134f5 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1480d1d7 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x366e840b mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6de769f7 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7f3a323d mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x84e63771 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x88574fb5 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x992955b0 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa38397b6 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbdc4f8d9 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc3907233 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcdb9bff2 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd6170eff mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe8f6ea11 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xec6d7688 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf4cd9821 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfed711e3 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x985b8247 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xf1bd97d0 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x5169a566 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x9609fc8c iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x55838a44 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x719c9cd3 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc8919b48 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xfc643926 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x17d3a10b hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2c43a0f4 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x53c91bd3 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x673fe391 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x8964252a hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xab337536 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 0x03c194db hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x16f4e063 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xce6b8e88 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xef20751c 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 0x2210c3b3 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2c55227a ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x6a10cbc7 ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7ce60764 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 0x8f266cae ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa97572ec ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb5c5736c 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 0xe7e3d672 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfb20cde6 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x11ece8f3 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x43627f8d ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4ee012fd ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5ad7026a ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf2b81be4 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x87d5513c ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x8e802c0d ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc6b2321d 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 0x076d31de st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0850e4a8 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x092d1a02 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0e85e7c4 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1320f125 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1b73982e st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x47b3cc41 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x547d6458 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5c9bbf3c st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7bcea4f5 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x984f4c64 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa4ddc243 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xabcf89ea st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc758792a st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe054cbb2 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf4358192 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf9addec7 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x38ad08bd st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x6c90806f st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xaa33420c st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xf5266856 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xf6616845 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xbefa25b6 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x194460e3 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x4b9b303b adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x05ecc742 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x10dfa49a iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x25b5fbdf iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x310f64c4 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x3db1806f iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x4bd8ac19 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x67934474 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x701fa68a iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x84e736d3 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x8df9c032 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x9528360f iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xb281a9fb iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xc60d7978 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xc9ad4441 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xd9df1ab2 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xdb597aaa iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xec1d02b0 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x76795410 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9c397e25 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x5e6503d7 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xeb8f9e55 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x01fe4d08 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x77e1f623 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x9ed9d993 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 0x6c5f2308 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7df81f32 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x997eb28d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9b03bd62 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xc8e408f4 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0eb3a0d8 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x16b5fe7e ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x376b3d8f ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x496bbbec ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x571fddb3 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5a80cb23 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x695d8ac9 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8694a839 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8e809e1f ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x975fcbcf ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x986e6f27 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9bcd221b ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa20fa969 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaedf6f54 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd26141d5 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xde484068 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf028c1d7 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfa1476c8 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x031a55c3 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05716c5e ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0896cd91 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d083b37 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10a4cc2d ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x112c3591 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x11aa4bd6 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x12edf1b4 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x179bc6d6 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1925ba6f ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c0fb73c ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dc41394 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fb54dc4 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22d1c44f ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23afabeb ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x25428d00 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2690c0e5 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29bc347b ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a68099a ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c714e1f ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ea1a5dd ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x31422878 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35f4aacb ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42d2936e ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43a6d43c ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x459631a7 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45fb6b5f ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e9b8b8 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ba3e7a4 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x507d90aa ib_umem_odp_map_dma_pages +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 0x55bab93f ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5738413e ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x600be85a ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x614f5c0a ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61c99377 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x627d3042 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6398b9dd ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6433f78e ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64fe5b88 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6574d84d ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6741f66d ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68a3ced5 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f2c97b1 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a7416bf ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ab994be ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bf59f1b ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8298a69b ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x829f1921 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82ade98d ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9205b59c ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x949dcde9 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94ec7347 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x95c59c32 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4f31efb ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa7c858c5 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xabb76224 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae7b3059 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafeb1b5e ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafeb6065 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb23f3562 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2893ca3 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4fcf4dc ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb81fefdc ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb8e03ace ibnl_multicast +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 0xbfa8a10e ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32713f6 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 0xc65bd2be ib_close_qp +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 0xd05a5fed ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9cfda89 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe2a83538 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xee6f0a41 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeec7f749 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf31eb5e8 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf34e6bab ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf45e5b88 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf4f9b067 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf6e8d0d7 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf98c8f34 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9bb2779 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa3e2d80 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfa4bc8ea ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb262cfe ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdd5d434 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x11b77e55 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1df1e728 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x21207198 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x31c16595 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x45f0548b ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x5943ef84 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x74ca05d1 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7f51d57e ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8d7a9f50 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa7336cec ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc42043a1 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc962e85f ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfef1fe67 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2c5e0671 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5eb3b554 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x69aa0463 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9afd9eb8 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9e7aad54 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa8368ece ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb3186a33 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb90f0f6d ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc4993fd7 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd6019365 ib_sa_join_multicast +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 0xc6409da9 ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xd6b59710 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 0x065ef60a iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x173c4a84 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2341e6db iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3149d2f3 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3192b33c iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x495ee201 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4d209082 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x615513be 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 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 0x97dbf7e8 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9d8e73b0 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc44151c8 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc6bde6c0 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdbf4a216 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdf3f1f2d iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf4387bb4 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x148f6bb2 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1aa21768 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3512cdff rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35dace9e rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41be0496 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x424adebe rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6655897f rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7566914b rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7eb06e79 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81152dd4 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c925f8b rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa00e512c rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa9d9f1c5 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbd7e20d1 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc3d11aac rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcc1e2123 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd38e277a rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xde61b13d rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xea001163 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf32e0ef6 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfd8b2e84 rdma_create_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1ebb96ce gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2500f1a8 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4fd4bf5b gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x755d1723 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x97b0317f gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xab33c232 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xb3b1fc11 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf43d19c8 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfe0f6251 __gameport_register_driver +EXPORT_SYMBOL drivers/input/input-polldev 0x32587ad3 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x5ad40c00 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb1deb84a input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc819b965 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xf5ec3aab input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x4fa7ad38 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0xa9f7b44a ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe361e37a ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe6d01224 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 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xf59660a3 cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6d0f71ec sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7c26f0fb sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7f7b3561 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb759844e sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xec6c700c sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf89ea90a sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x55be0acd ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xad73b91c 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 0x23214cd2 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 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 0x79dd68fc detach_capi_ctr +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 0x8b2415a9 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 0xa06a7af8 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa37f87cb 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 0xc10fe128 cdebbuf_free +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd91d887d capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd9f38ce4 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe60e9695 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8645b44 capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf5f85972 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0130d066 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x227966b6 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x355bb413 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x63139416 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x63476b7c b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7cd7609b avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7e59203c b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8cef8e73 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x99d2ff0e b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9fb97928 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa52a2636 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xacd6d685 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc1f65c05 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd38b9e9d b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe5d7c8c8 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1a3f9562 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x2ae07055 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x38285bc6 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x65f3503f b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x72f08fe5 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x866a3aa5 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8b8f092c b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc2452090 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfadeb7d3 b1pciv4_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 0x0ba0b96f mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x49494650 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x85790baf mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xaaa85362 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x54b4357f mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xfb4ae42e 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 0x185358b0 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 0x23dd0d9c isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x5b7b47cd isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x64cc90d9 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9d3a20a9 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb68b0cc0 isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x1c5f7466 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x5aaa86c5 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xf1cf91e1 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 0x0cf7d5e9 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0d484db3 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x10b0ea94 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x14706054 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1bd6cb8b recv_Echannel +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 0x2c2a2390 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3aa27f80 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x447f0b55 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 0x6122bbc5 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x65c45412 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x65fb6123 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x660a70eb mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7be56bb9 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8872631c mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9aa59edf create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9b1325ac mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9bf57ad8 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb1956d24 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbd44b554 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc9edea3f get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc44303f bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcfa9c3d1 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 0xe0219aad recv_Bchannel_skb +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 0x213f9a1f omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x521bf729 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x6695063e omap_mbox_save_ctx +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xacdbfd88 omap_mbox_restore_ctx +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xfaa8b73c omap_mbox_enable_irq +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 0x3815e593 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x390c2d88 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3bc80f5f 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 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa4461e60 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 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 0x6cfa10ba dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x79ff5cf6 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xae192ae4 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xc3ceacef dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1ce04be7 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1fe17354 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x4b258cb6 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6d32e074 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc4c0628f dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xeaab0970 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x4b1c7c14 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x05799835 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2ccc9b98 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2d2a3f7f flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3a9a1c1c flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5509abf2 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5b123f87 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5c8ba8c9 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x89bbb29b flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa3273285 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb5be8bb2 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe6fc6b09 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfa4fef5e flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfb538a43 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1b2b0353 cx2341x_handler_init +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 0x6d2d0e35 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x8f478a22 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0xa4e1c7da 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 0x87affd74 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x089ee166 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0x10e3fa2b tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0be40fca dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0f7a498e dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x11140b3d dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1398bc6d dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x13d89939 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1983ca17 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23594f1e dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28dfeac0 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c16773b dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c917be6 dvb_generic_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 0x4a732850 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e12b88f dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56f94d3a dvb_ca_en50221_frda_irq +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 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 0x89c7840c dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x911d1365 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 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb066f2b0 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb5861208 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xba37bb2d dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbf465028 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd6670738 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd70b1d5c dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb1a8bd4 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb9100cb dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc094c39 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdc4d3e8e dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebdf23b6 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf31f398f 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 0xfa06d299 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfafc81cd dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfd4435fe dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x1e90aaca af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x7631ca53 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x0ba9afe0 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x36dc756d au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4546093e au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x57923bc0 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5e62b53c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7fbd1a13 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8a16e2d9 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb7290177 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdcba0dea au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfc445943 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x122f48b8 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x5c5bd954 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x3d21a65c cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xbdefc1a7 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x02f4416e cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x33a1d3d8 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x942e0104 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x9c8fbbba cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xd93227ce cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe35feb8c cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xf22d84dc cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x1bdc1ae3 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x0fb64e59 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x6453f291 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xcb607402 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x4db5b1a3 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5abac650 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6586eef0 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa3a7fce5 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd6303b13 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x172b9800 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x242f35bd dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x39c85666 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4bc85719 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x509dfde0 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5191d8a8 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x52617a58 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x64d8049f dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x86af1ddd dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x88824806 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xafa83e7a dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdca38bf5 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdf8eaec7 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfb515e46 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfff6923a dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x0bb1ed9d dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x6b9d8b31 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7140e361 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x73065cfd dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x84676eb5 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x9496978a dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xce5bd0d6 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x463ea6f2 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x61a66f6e dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x6f10d889 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xea5b0a47 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x7b803451 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x9850f527 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x05b39c66 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3e415581 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8091c033 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xa8b7412f dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe267248d dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xa54017e6 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x11bb793e drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x6239bb0e drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xd1f463e2 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xea347210 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xab5e2323 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x81840e09 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x650083ff isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xcacf95ea isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x66430bdd isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x5a4908ce itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xee5d3b2e ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x10f7a3c3 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x3b689977 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x4519ccf0 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x50c32519 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xf689ddf5 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x57e3d343 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xe578937d lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x0b0de8ab lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x7f0b4dcd lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x77bb14e4 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x25432f16 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa8105dc5 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x6c4ee2b2 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x8193be80 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x909b7797 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x97084b39 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x67a4a3bd mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x49a6040b nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x0051710d nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xe7bdf474 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x5def02ca or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd284fc73 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x5600dbf3 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0f356b25 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xe96e7470 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xa71cc65d s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xc1e99be3 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x51ff7d26 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x07905547 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x26bbd426 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x88d26e7f stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xa10b9bb2 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x014a4db7 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xb680bc4f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x12f7439a stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x323c620f stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5c3c1536 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x8ade10d1 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x2919d9dc stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3dd6d54f stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x2cfdb7db stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x6f48af0a stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x099b6db6 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xa26b5bd2 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x3b36c2d0 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x2c8cc406 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x3e72574c tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x2dc78c8c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xcfdfab62 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xe422a60b tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x5f2e9d6f tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x79e2862b tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xfa77027c ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xe96d8767 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x7c7b713a ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x3721c5e6 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x6f0d5abb zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xcdb06737 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xead62523 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x485477a4 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x62d98a80 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8c4d9fd7 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x96428269 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb03435ba flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb988b6ce flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xc6f1a556 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x66eb0856 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x90ae4aab bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc7dc0b29 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf0df92c6 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x118b3eb6 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2eef6a1b 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 0xd8859f9e bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2d6f5831 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2f2437d1 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x355ee2e7 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6b0213e3 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x6da6c1de dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7460c957 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x95e08615 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb5a41abd write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd22c9299 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x0223ecc1 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x1caf077a cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x475272ca cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x59c33d70 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x78050be2 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd97d7f79 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x3ddc5b1d 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 0x0dd549fc cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x20d65077 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2f6164b7 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x386eecf8 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x856a345c cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe189b280 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xed92808c cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x6a27dbbe vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xf824fac3 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5ad08d03 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc2a37943 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xc4f5e461 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xdb00b7ad cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x06c855bb cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5f4df272 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x61b63287 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7decfa96 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x91fb3bd1 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xc03224f9 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe20e8cfc cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0aa1116e cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1bef0294 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x229bd9d9 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2d3ca1d8 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2f3d89ab cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4433a0ab cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x46a3316a cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4d5ae23b cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f3a940f cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x597b0de7 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5cf6badd cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x70529a1d cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x712a9467 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x74c7c5ab cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x75aaa1ea cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8e3a8342 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xac7365e2 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc47b4b45 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc5893b08 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe5ad2b68 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2050c4ff ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x23b2d049 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x267fea00 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x28ea6276 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x35dff285 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5935585f ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5d8ec7d9 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x66e02341 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6ddcd730 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9cc3a946 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa95edf19 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xaa4b7adc ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xabad0453 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb41e34d3 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc8018837 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcae52e62 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdcd7f838 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x067a0efb saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1aff1716 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x31175ec2 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x32921f74 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5ef6d441 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9d9ec22b saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc35b8aa7 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc7bdfe2a saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcc3f55f8 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd523399a saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xedfb6aa3 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf4094d9a saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x1bc569bf 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 0x1febb028 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3d49f06d soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x5c656adc soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x9fd8b196 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc201bda9 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdf869dc5 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe4c163f8 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/platform/soc_camera/soc_scale_crop 0xb9bcdac4 soc_camera_client_scale +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xc1d0f848 soc_camera_client_g_rect +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xed03c057 soc_camera_calc_client_output +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xf34435ad soc_camera_client_s_crop +EXPORT_SYMBOL drivers/media/radio/tea575x 0x0e65b1fe snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x31b28d4c snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x515d5667 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x65a85c8f snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x74d9dc23 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb99483f8 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbefca5db snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x17898b9a lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x228bf1f6 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2fbcfcb5 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x42d413cb lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4c289a41 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x96cbf01f lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc61384fe lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc7b558f5 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/rc-core 0x689bfeba ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7bc5739a ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x8cdd4566 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x219b64e0 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x495209e1 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb7fc375b fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb99184e0 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x0128aab3 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x80ebb3ec mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x08aa5379 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x8b62558d mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x09baec2c mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xee129979 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xbc07bb04 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xd8554ef9 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 0x7c469c0e xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xb5e40c46 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x1e346029 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc691f7b0 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xe86a9593 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x04b75e41 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x38c74c9e dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3b5d0cfb dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x4e9e1d79 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x86843180 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xae5e30ff dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc72f7570 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd7cf3b3f dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe643208b dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x088ff9d9 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x83e2ea47 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x887403f7 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8f32208b dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x94187e63 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xcfdbfe66 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe26c8e5b 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 0x193c9c82 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 0x07c90eed dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2423005e dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x26dc14d5 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2d69bf6a dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3b4d1613 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x54b5e7dd dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x78074fbb dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa5ebea7f 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 0xb95a48b5 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xc5e10f40 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf86d038d dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x48ccb2db em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x87700414 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x43c6d67a go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x50b1183c go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x55683307 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5f3435ec go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6fe21f18 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x74a27997 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x74dc1bf6 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xadb3e8ad go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe2562037 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x18b5c983 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x2abcf2e7 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3d59e4f2 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x89cc24d5 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x983ce580 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa880b08b gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb8854861 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xdbf5a085 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x3ccea1fa tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x96eeb754 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xd5d69264 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8869c4e8 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa3aec522 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x44678b41 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 0x633844a7 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xde0e216d v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x17814734 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x2b7e6ddb videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x409de5d7 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x42420be3 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x64735416 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb103f138 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xc8406d79 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xd1213d5d vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2c440da5 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x33af799f vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4469d390 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x68cf21e5 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6e79a8d1 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc1d9af41 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 0xb60b9447 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04e5b2a2 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05bf5bbf v4l2_ctrl_add_ctrl +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 0x13aead98 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16197e87 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16271706 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x17adde1a v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1828eb6c v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1a54f75a v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ce499c2 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d2bb63c v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21c3e34a v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22052ee2 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22a9f7e8 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2793f19b v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b0d73e6 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33c0c51b v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x357cc52b 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 0x38ce35be v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39724183 v4l2_ctrl_handler_init_class +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 0x3c9cdcc1 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3d88c2e3 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3ef94497 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43f5536d v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x457d8164 v4l2_clk_set_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 0x4c1fd267 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52da82f4 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x53b4c739 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x57df4222 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a59bbf8 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c14ea82 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62dcdefc v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6962dd7e video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c17b950 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6cddee25 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f1bda32 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x70247cbf v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x72d229af v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ef6e7c2 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80523a42 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x814bea40 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81d776bc v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x846bd842 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x86062005 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e512eb0 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ea1810a v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9442616f __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94a5ad20 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95fd032b v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x967018c9 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fc50488 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa222303c v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0ae88ff v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb99fe7cb v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbda2f71f v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1e45546 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc587ef2f v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd8bad4a v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd679f6f0 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdab27ff2 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdfc5c7b2 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe0d62d0d v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8914395 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeae34add video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed2a55ea __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xef24e5fb v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf85525cb v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf85a66d3 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf9c8ad68 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfa01b3f7 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/memstick/core/memstick 0x13d2c60b memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x213bc44a memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x25c1608c memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3da80d71 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x43821a39 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4aab9bab memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x78538b33 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7d9bd801 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x7f5028d6 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x93687fe7 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa4558260 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbd609f7f memstick_next_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x040ce976 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x18ef7d54 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39f1abb8 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4261c521 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x43370501 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4997cfe3 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d364b2b mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x504ed2eb mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x61f973d0 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x62e170a7 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x681611c2 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ec232f8 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x74dd5bc1 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ca85363 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x822b1512 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9cf2022f mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9f707c79 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0a60802 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaa2130a0 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf24bb4e mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf8f00ec mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb22fb2a1 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc337ac7b mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc802e03d mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xca1467b6 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcfc5c4a7 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 0xeddb8a00 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0eb62a0 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf818d76e mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x12a634dc mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x14086e9c mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1577fe60 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1efd16dd mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x280795f4 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3ed92b03 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f195cd1 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f73fcb6 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4270c2e8 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5840c057 mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5ea051bc mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x69b14537 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b4ad1eb mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x71299a98 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f44b2ea mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x958a5f5c mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x966f1ee6 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa19bcce0 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb7e7331e mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xba240baa mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc84bb76c mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb99931c mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe10721a7 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe99a979f mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xeff97f67 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf0694771 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf25fcc23 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/mfd/cros_ec 0x09478b69 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x336e8713 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x9cc9674d cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xcc598e5f cros_ec_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x4b20f863 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x57ffe3fa dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x5966f8ba dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x548622e7 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf072d7f5 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1a8b07fe mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x21c193fd mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2486231a mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2d84fc3b mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x396b746d mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x627fe9dc mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x897d7b03 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x94da81a1 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd58e9c39 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xee1f229a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf4e19415 mc13xxx_lock +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 0x9d4fd054 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xe42c7b03 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x6b276f57 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xc67fd6e3 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xc89ba06f wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf4456d7a wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9259e84b ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x98772e46 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x1067cb42 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x81faa641 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x9e748bbe ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xebdc25ab ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x301533de tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x3b0874e6 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x51a4f746 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x79bb4283 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x8c952588 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xa0ed50f1 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xa19a3f74 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa4b35e59 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa69b2d3e tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa9377011 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xaaeeaeb3 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xe47133fb tifm_register_driver +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x1ec72552 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x2e160513 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x35004b4b dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x71d55661 dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x2945850f tmio_mmc_host_alloc +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x378f2335 tmio_mmc_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x428d92a0 tmio_mmc_host_free +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x4c48ed4c tmio_mmc_host_probe +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x576aebba 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 0xbd466c86 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xec905ab7 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x05a2956f cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x0ad14dcf cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3b65f58b cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa495a54c cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xae26b4bd cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xafe813e7 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe3cf46d2 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x548d995e mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x609fdf92 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/denali 0x6c572b27 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0x818fd53b denali_remove +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x387c8439 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x652660c8 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xc5eccf5a onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd0d115d6 flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3afeefee arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x408877de arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x47e9476e arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4afc74a0 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4fe138e9 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x76b4572a arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x79f46c4f arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x903335c1 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbd09d630 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xbe88ad7a arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xdb80241d com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe08c7b87 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xfb829fc4 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2acb8770 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3fea85b1 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5c7524f0 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x685da136 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x79806ae1 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8a25e054 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc84e6c54 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xce46a462 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xdbb489f5 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xec2e7d33 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x7318d5f8 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x748a8c86 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0613b838 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x12315fe5 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4a931eff cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4f89df73 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6e149ac4 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7787dcdb cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7a8b5b76 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x90b05b28 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb82214a6 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb89c9aec cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc66bcb82 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc9af4c59 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd05617c9 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe3677621 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe6036ced t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf8d1ac44 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x069666b3 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0939a97b t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x13722f59 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x15562a1b cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x173981c3 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x19459f8f cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1f8aa549 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x448f3b34 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x473a991d cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4de31aaf cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4f9af032 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x524700ca cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5bf73072 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62bd7fb6 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 0x749f1a41 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7b68dd52 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ce73131 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90700218 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9bb9789a cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa223b8f5 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa58ef91a cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb07f2e99 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc8dff536 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcabf6b1a cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcd915acb cxgb4_clip_get +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 0xd53413c5 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd69a0294 cxgb4_best_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xde2f1f21 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe5b6fc3e cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf657fe95 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf776905d cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x00e4910f vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x806a28ba vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x92e51d93 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbe5ee3d1 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc33138c8 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe341db84 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x3ccd28fc 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 0xce9c310f be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/freescale/gianfar_driver 0x79f28897 gfar_phc_index +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x325b5d99 hnae_ae_register +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x526bdf00 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x59752dc2 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x5e874afb hnae_ae_unregister +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 0xe33b4732 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03e00d41 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04cc4a96 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x074e3293 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12521c85 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d6c204a mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26f36e01 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29762cf5 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3735c6db mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d38f142 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f68d047 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63431249 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x639b933c mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a5cd9d7 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b36de2c get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77e56705 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8589eb84 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x889b9da9 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c7cf11b mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94a71dc0 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97b3d865 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1852352 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa94e180f mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab34fbb8 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6308820 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6416ae8 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb81524a6 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdbbca35 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc269451a mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5bd4295 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9e11d20 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda8b6b3d mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc33f972 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63bf111 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb6a4096 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec3fc7b1 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9577da5 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa6a10d9 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xffa43128 mlx4_is_eq_shared +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 0x18216e2b mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cb92b1d mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2101ed49 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21d2ba56 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34d386ff mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4514f51a mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a95ab8f mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53c5eb42 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x54d69853 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57f8259a mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f6b6fee mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x677debf8 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cc1a337 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e817c65 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8438bdd9 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8891060a mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d6bfed0 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f657a06 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91101093 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95bec56c mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99ed40c8 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c3d6c3e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fce0b41 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa78ab6bf mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8049419 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab83ceda mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3c7dc66 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8392320 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba5a6f0f mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbadfa00d mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc85f33e3 mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd13ca3d6 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd197ce01 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xde07df7a mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe088e632 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe37a8e3e 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 0xf53c24eb mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfaac9993 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 0x1a154d20 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x211c4f3d mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x31b62112 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 0x5c257ff9 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6f313323 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 0x914a2855 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 0xf49c61aa 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 0x2948f3bb 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 0x13270947 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x4de7bba3 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x687b6463 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x9bea43d9 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe2f5ce43 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x06c35a4c sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x11600dfb sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x43ccd10c irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5e239db3 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x696fbb4e irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x83224c8e sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xad1cb8f6 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xca50aa39 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcc638a07 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe3e7f922 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 0x0dc4838e mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x175e49bd mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x59680967 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x840c3565 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x9bc85573 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xbcdf13db mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xbdaede2f mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xc1d4628d mii_check_gmii_support +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x070fd6b2 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb05404a4 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x29a1bb57 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x2fc423f5 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x48328a7a xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0xae82150e vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x4f00c1b1 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8a9f64e5 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xad388ba2 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x51215001 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x080aa182 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x5c957184 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x6bc9e640 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x73f93ecd team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x774e310c team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa83b3acc team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xc69c0c22 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xdc196976 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x27e06ab5 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x27f02e8e usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x70991496 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x939a8927 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0a399bcf hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0f4048a9 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x65def66c hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x6b2282b4 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x796c06db detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7ae0f257 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x9c830f20 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbee668e8 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcc8d68a4 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xde89cbfb unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf45f1411 hdlc_open +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x9385d6d0 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x069c67e7 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3424ca61 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x43cd7366 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x52ee2a26 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5baafa4d ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5e03ab77 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x75f2946e ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7a63db6f ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x95256335 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9d046e96 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xabdba2bf ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc2086ecd 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 0x03152e89 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1e5a94fa ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ea62f8e ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2f43f74c ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4159a6a4 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4c265ea2 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x63000d1f ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9659ec54 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ffd4213 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa3f01b87 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa86db14e ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac2f7a59 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8914587 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd7a10fa4 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfdbd5a93 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2a777cbd ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x40ae71fe ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4c0ef0db ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6c27571f ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7d8296d8 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 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x96a4d3cc ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa2531a9e ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xadbfbc43 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb45dbf9f 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 0xd9321be1 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xeeb74ab2 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1991572e ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x27900f45 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 0x30bca244 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x378edcb6 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39e142e0 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x440356a2 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x46e3480c ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4897fa31 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8ce8c405 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9a13bd0e ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9d7ba85e ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa179a8aa ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa1e8e78d ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xafd8b376 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb23d2e0d ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb6e20522 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe831a18 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd254b257 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 0xd298d9dd ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe3c7a2a1 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3d3e7bf ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4c5f2a4 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7f59542 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01416992 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01f23e0c ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03d9ff11 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x094223c2 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0dbb56b0 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0fd8ce5b ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1002506f ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10ba6c57 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1459a5b5 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1dcd7062 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e88f539 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1fe6e2e7 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1ff6a7ef ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x206b0d0c ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x217982f5 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2470cd10 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x266c7620 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27d930d7 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2905a72b ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2920019a ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29326eec ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c324383 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e3f5976 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x368c44f5 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a3674ad ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b428b79 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3fbabc71 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x406614eb ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4225b7f4 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42ed1166 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4435cefe ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44ed8a97 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x46eb505e ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47600b36 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x49bf9373 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4dbf5e48 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f357876 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x50054d1a ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5017eb77 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52a5b055 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56022202 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58cc0b82 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ab56ae8 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c8698c6 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e6fb87d ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f2f6faa ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c1c04db ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f308620 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x727d8b01 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73f7fba5 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76b14d23 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x783116f2 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x786dba29 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e339476 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7eeba02f ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fb59177 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x812f4d50 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x81d4c4bc ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a1e2c76 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a60f8b0 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8ed49e87 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9268e6bb ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94d49fc3 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x96df3863 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a1a4b76 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b17d16c ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9da48d9f ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9da564f8 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f37277e ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa012f7cc ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa10483f3 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa87ea1ad ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa8cb5036 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9cd7787 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab02587f ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab61e273 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf993c6c ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xafe0f1b1 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1e78189 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb31d716f ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb352c9f7 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4e76d66 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb55711aa ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5bf9fad ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb5fa6627 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdc88b7c ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc64c367a ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcacaa594 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcff5207b ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd07a7b13 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1b9a8fe ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd25a8f51 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd72c135c ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda11bf3c ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0851e84 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe100789e ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe43d2be9 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec5c07be ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef06b3aa ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefa1c3fe ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefe08db3 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf14a6e4f ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf309035d ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa25025f ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd8587f9 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x595d44b9 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xa2c93723 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xd7727569 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x07d06b5e brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x10de9565 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1517aadf brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x23860913 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2448b6d1 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x266a1659 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x393dd09c brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4746224f brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x89b859f4 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x89c02a90 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb8c3a36d 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 0xe62b8551 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfd927eae brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x029969c4 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0740809b hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0e50fe1b hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x21c2adde hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x260a23db hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2cd22589 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x34d9d535 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x44a9f6ee prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4e942299 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x614750c1 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x61b0bc3e hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x70a82f12 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x71e7566f hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x792efc21 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7c43c96e hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7e95a2a9 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x84921257 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8fe2fdc7 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa03d5c31 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 0xc3d04585 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe342c944 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeac7604a hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf3a15759 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf3f6162e hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf88b2077 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0ab33956 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1d2e07d3 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x29758080 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2a705534 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2bff72e6 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x34f6d765 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3dddbb0d libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3fd51da4 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x43918043 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8a435f0c free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8c43b0e5 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa13f2770 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa7756776 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb057a0df libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb3804696 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbd5dc3fa libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc1d88144 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc2a6da88 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdbba4d7d libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xde9ea506 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfd6fa897 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x000bc220 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01615bae il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01e395e3 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02a8ab35 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x04d3878f il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a845eac il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0d9189aa il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f265cd2 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b78a6ed il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d2cdc10 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f69c8f6 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2745bdad il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d089aa4 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x343087b0 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3980f16b il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ab73e5a il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f1e3dc4 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f3b3f42 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40da2d33 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41a6588d il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41b65bcf il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46a37747 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47d84114 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x48007050 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x48140fc1 il_hdl_error +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 0x54e18478 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55fe9dbd il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d70212b il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5e6e1776 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61371076 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61915505 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x64d66070 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x673c943b il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d451c5d il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x70f10bf0 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x71be41cb il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7448d067 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x746c50d5 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79b491a8 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79c2b232 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a7bcc1d il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b3caec9 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c326736 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7e975e3e il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7efb9554 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84527d4f il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84d40a6d il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x874275ef il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8acdb54d _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d8e69ae il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d91d4a1 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8dd5f936 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f95b28d il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x90494079 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x929f3476 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x981f3771 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d047bd6 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9fb3db69 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa229b486 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa35a1601 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3883aa7 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab140d64 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf980e09 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb32f57a3 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb5137bd4 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb61eb3bf il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb66bca58 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf80e04d il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc13ccced il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc30ed1fe il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc32f439f il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4edf2bf _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc5b00121 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc60badd7 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc715b09f il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc82ef50c il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8ab4d2e il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc1e4139 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd312dc3 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd53e59c il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcee16aba il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd143f21c il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7d87c5a il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd90a758d il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc0640cc il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe330c8f3 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe810e471 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec9dbe38 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf13637ed il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf1573487 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf15bf20b il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf43b5bd3 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf601adad il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf60e8348 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf828d52f il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfa6dbcd1 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb7b2398 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfcbe3c9b il_connection_init_rx_config +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 0x009ec002 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x275ce59d orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2ec13705 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3567b05a orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x54e603f1 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5de7e0d5 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x825b0d18 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb152f723 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb3f3d100 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbcd7105c orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc1330553 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd50029d3 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdfead7eb orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xebd3359d __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf1b8cd91 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf5f9b3fe orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xf7f36914 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01250d0e rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x030dedf0 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0b2983a9 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2d8d823d rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x31897784 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x343323c3 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x348bf690 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3940b4fa rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39c71eb0 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3ac77a9c _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3d4fcf05 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x43a8a816 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x50115baa _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x517b852c rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x559a1637 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b5ac68e rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6492b15d rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x696eb046 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6be809e7 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a21ce01 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7a8900a0 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7b8108b8 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7c8d0316 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x903f0228 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c9c4ab5 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa5da9a83 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0974f6f rtl92c_phy_set_bw_mode +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 0xb8c1e566 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb23c8be rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb524a0f rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc806d277 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcc99b81c rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5264a19 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb99707a rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde23145b rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe3bd70a7 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8de0a3a rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe9f6f3b2 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xed57135e _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef1d1232 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf02bcd33 _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 0x67ef9a72 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb378de52 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xcddea09e rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xedff6599 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x218f5458 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x32dfc2c9 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x4b3550fd rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf59478cf rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x018c409f rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x054efa92 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0dcb0d30 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0de46208 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e3d8062 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0ea884ed rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a163ccb 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 0x29f63b9a rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4fb9e461 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x503e3d22 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x581a1d73 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c06ec9e rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61404bd5 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x708f9c2c rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7102956b rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72d3b51d rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7cce8561 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d39d636 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa89010f0 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaee460c7 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc107645b rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcca5e98a rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdd288e27 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdfff4e2c rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5498b5e efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedacb24f rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf401a04d rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc39e783 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1036f0b4 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1c23bd0e wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbbc0f146 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xca27865e wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x87b7c2e4 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa38ab84b fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf9e92827 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x5be454d2 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe7cb023f microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8152e960 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9205d84f nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xc51f58b1 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb53b7b3b pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xe96e7c28 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x382e80c1 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x53efe594 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9a40aaf6 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2ec04d63 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6529f371 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x83cab857 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9222739d st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x95a7b167 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa644f064 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xba18aff0 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc673482e ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd0bb3622 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd90d2458 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfce676f0 ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0404c430 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0c5ee2fd st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1898f21c st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x27d4be8f st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x407ea1ad st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5bc81f3c st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5f8c0b8c st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x63cfd48d st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x667505ef st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7d4afc79 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x86f76606 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x89bcf925 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9baef152 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb8c86345 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbd92f2fc st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe45cd0d2 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf06ca74f st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf3bf67eb st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/ntb/ntb 0x0bbbc769 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x463f4181 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x47becc68 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x6df9a45a ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x92297a4d ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb0f21113 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc9296c0c ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xfa664658 ntb_clear_ctx +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x81301102 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0cbb1912 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x13124b87 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x257444ef parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x3e4f1a0c parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5ca93a7d parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6a244f6d parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x702ef657 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x72cd66af parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x7b9afd6c parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x7df22bcd parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x7fa65cce parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x87e28b62 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x8ef18d01 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x97c26e8f parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x9890af98 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xa392bb2c parport_release +EXPORT_SYMBOL drivers/parport/parport 0xa847da47 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xab25c1b6 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xbe0bd188 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xbf714acc parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xc87bc9d3 parport_read +EXPORT_SYMBOL drivers/parport/parport 0xd0333ca7 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xd6844ab0 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xd892650d parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xdc08a051 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xdd7f41ea parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xdec8eef1 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xe4cba3e9 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xe685ee2a parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xe89530fc parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xf002e9d1 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xf0a1f4c6 parport_del_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x4a00454b parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xf3932aaf parport_pc_unregister_port +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x62799fa1 iproc_pcie_setup +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0xfb8f102f iproc_pcie_remove +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x20c1a357 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2937c115 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4de1701f rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x697cb5ef rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x719bec97 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x79d7d672 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8d5a0a5a rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x9449c2e7 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb59fb897 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xddfc2a05 rproc_get_by_phandle +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x06140e5a rpmsg_create_ept +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x212f0a24 rpmsg_send_offchannel_raw +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x6652af1d unregister_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0x763ae21d register_rpmsg_driver +EXPORT_SYMBOL drivers/rpmsg/virtio_rpmsg_bus 0xc697eaab rpmsg_destroy_ept +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xd72fc73a ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x2aa104fd scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa7e92727 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd07656b0 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xf20037a5 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x043ec82d fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x0e0a9c25 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x16fa9bdc fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x20dedd64 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x30875482 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x48ecc1a4 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6473f503 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x760dee05 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb46f6dc2 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xde63d758 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe6193661 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeca30bf1 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01cffd80 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02b04f79 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ee521c3 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x111b9e4a fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14529d96 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19209758 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x196c3e57 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e115fe5 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x356ff3a6 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x41fb5c93 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4be42e0c fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4dd5b937 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e0a445c fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x570f26c9 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d803606 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x650165b4 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x684ba949 fc_fcp_destroy +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 0x6d6414de fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fb4a493 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6fc1a3dc fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x721a1699 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75493cb6 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x83f473df fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x866d2fbb fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x867d2cab fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ab61b8a fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d35bad1 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9080d828 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9246936e fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97d11fc7 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b5639dc fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa45ad374 fc_elsct_send +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 0xb645e8dd fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbdf973af fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc22f1c29 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc52e7b50 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0248430 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6ad7fda fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd86a94eb fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe64ffc4e fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf03a39db fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5b5ae46 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfae765db libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5af5d40b sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7a106aa6 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xa9708956 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xea6584cb 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 0xd6942d53 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x059d5ae9 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x094aa6ad osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1cadd90e osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1ec614f4 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x25207fa4 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2581300c osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2ae6af8f osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3c0d7d4e osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4675dc0a osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4e25cb00 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5e5018c8 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6c0b6375 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x72104e51 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74c26677 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x80ad5434 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d19d4fe osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9259dd65 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9316f048 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9bcc42f6 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9c14f1f5 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9c1ef00c osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa024e380 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa913bb67 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac8fbbe7 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb8017405 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb83a8524 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc38b7f26 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc48ed689 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc68afc8d osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc706361e osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcbabda03 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcfc72f27 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd27e0dee osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf7ead152 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfe5cfb51 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xffa57f75 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/osd 0x036d59cb osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x25bcc91f osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3da820ed osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x49ff7792 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xdcc864ec osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xdfdb158b osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x16b09b8f qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1a5d21f6 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3ed130eb qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4c0cd486 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x4cd8858b qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x802ef756 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x84f19eda qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa1812217 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa3045e03 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa740be30 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe6f719fe qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf5be5fa1 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/raid_class 0xa07716ae raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xd3937c78 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xfa9fe90c raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x063904f3 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x089897a5 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2616b916 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x38ccf315 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x60281b67 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x61c5b91c fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6fce6bb7 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa0725f59 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb3498198 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8aed5bf fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd2f7bf93 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd4e8106c fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf531bbdd fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0262a1cd sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x089f13dd sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x091260a2 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x150e6d67 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d872992 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f93fc9e sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x472dc374 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5425fc84 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x59fc0064 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x61cd8fcd sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x64c96534 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x64e02e0a sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8cf29f9b sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x927cd460 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x98161fc1 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa2350214 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa9224da8 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab23c1f8 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xafc26450 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7667d59 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbdd07dab sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc654d4e4 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0dae66b sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0fa93b4 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd407ff87 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd58efe8e sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec77c913 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfe82473a sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x19274d2d spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8f85600f spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc24a2ddc spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe4dbeb6c spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe4ec2dbb spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x64f4b333 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xc5b18942 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe20df778 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xe272cbbb srp_rport_get +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1b67d215 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x50d43595 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x812b8233 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8ee0b360 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xab21f423 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xce99979e ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf1fd6ef4 ufshcd_system_suspend +EXPORT_SYMBOL drivers/soc/qcom/smd 0x0de417e1 qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0x9d6c6e6f 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 0x09ed5cb6 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x0c330ae7 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x288a59f9 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x420f394a ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x54ff801a ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x5dfa8613 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x76f46537 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x9e0d2485 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xa416128b ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xa92df81e ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xae479adb ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xae4a1dde __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xb2aae996 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc1f796ab ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xdc387ef2 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xdc659993 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe08769c2 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xee47f56e ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xef6dd253 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xf66ed869 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x059d8afe fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2e4e2031 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x40738cd1 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x415f89d2 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4acbb3bc fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5484ad02 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x72a4d183 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7f91b0f1 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8242590b fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x89d38ee4 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x912b0fdd fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9151c08c fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9516ca0a fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9e6db711 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa3ff6ba3 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa60c3a69 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb53e9d0f fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc27be89c fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd21cb977 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd7140c23 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda6ca036 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xec4263ff fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf6a07d05 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfe2f12f2 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x059ea555 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xc6401ce6 fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xf268c8e0 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x0572b236 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x2c663d5a hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x5772efdf hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x67bcc266 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x29581d7f ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe11a5118 ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x7421274a cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xb867da7f most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xb4a5acbf nvec_write_async +EXPORT_SYMBOL drivers/staging/nvec/nvec 0xf06550c1 nvec_write_sync +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x028f9b16 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x092f2c8e rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09ca2a84 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x101005d5 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x107a0307 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1286e1b9 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x15b8335d rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a230562 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a80d735 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ab8801a rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x35f579ea rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x396f451e free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x39e374c2 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3fb1850a rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x42037ba7 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4eb93581 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51025b79 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5aa2ece1 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6182316f rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x643b4d45 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6492e985 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d6f821f rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a025028 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7fe88bc4 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83069fe4 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x840e8dab Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85e6c8cf rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8c0370fd rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8dccd3d0 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa4270fc1 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa783e5e0 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa8ed836b rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa2d4ec2 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf823a35 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb600c8d4 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbae2ae64 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb1576d6 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc742c861 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd519335 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xce672e1b RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd00c3689 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1c12a91 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd2c464b3 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb93e3c8 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdea76e68 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4c382a9 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xea20a3ac rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeed0d9fd rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4f96e18 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf879cb2e rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1301468c ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1bca461e SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30087185 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x336467af ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3724fb81 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x37afb442 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38381dfe ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3e245cde ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3ecea536 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4138c17a ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x42cb1008 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43adaf8b ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4424ba75 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x471bda45 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a8ccf3e ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b7b35a4 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d87ef4c ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ddadd00 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5f561735 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ac8842 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64587074 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65e53d72 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x66cd1e85 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x67a5088d ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x69319188 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a3ec017 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6b537b89 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x735f0969 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x826b71e0 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83f64dca ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x884b1615 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8e718f18 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92108b25 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99ef559e ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa68c326e ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa71fceba DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaed35798 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaf72a93e ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb0a2e0fd ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb2e7a180 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb3ace7a9 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb54c54b5 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb7224cb5 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc19ed836 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6b5b5d6 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcbb33070 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda789497 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6f0a22f ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe705ee40 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb024dd8 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee1b6e4b ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf75d8ec5 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfbb59d72 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0360da71 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0738bf31 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x07ce5af4 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0b6f1a8e iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x113cd35c iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x13ea0e3b iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x17338164 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1933d84e iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1ae4adb3 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1d6747b4 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2d92afa2 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3304b318 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4a793ca3 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ad31051 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ed17d2d iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4fc2c41c iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x521b497b iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x627d42b4 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6309b0d3 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8283788c iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83c839c6 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x86ffd130 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x99065542 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9910b5a5 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xab9bf64c iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xae568e9e iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbcfc192b iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcd5fcc74 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0029a047 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x025cc6ae target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x081db040 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b435d11 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x109d1c6d target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x10b8ba51 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x2021ecaa sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x2079215e target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x20ae59cb target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c0a42a0 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c37c00c core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x2dea1e24 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x3281d8dd core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x37b3b127 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x3cb8b02f transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x40b66be8 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x446f8cc8 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x46a75663 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x49c05f98 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4d522625 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fe88012 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x5803d404 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x5842e67a core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c2d198b target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e1490df core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x60fe3698 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x6850225f transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f714441 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7332877e target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7370b2d3 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x776dc97c passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x801eb5ea transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x80227b79 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b915ebd sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x933d7d2d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9604233e target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d8ace03 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ea34d40 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa23de55 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xac27ff0b target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xace609f3 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xb3bd8d51 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5ce7cfd transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8c6ff5a core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc212815 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6178ded core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc66e2ab7 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xc9c6e578 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xcbd1aeab target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xcdc23d0e transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5c8b476 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7885a18 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xd7a0b728 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9044ace core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc2d4301 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd3f7586 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xe0f1d55a target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5a2c560 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xe5cc3314 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb0ae296 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xee2366fa target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf168f584 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xf20c20e8 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf25a1dcd target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2b49777 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4999cef target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9efded9 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa5ea6c5 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xffc4daf3 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x824412f4 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x51b59a5a usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xca204174 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x43eebc56 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x706f68d4 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x766e4cfb usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7a438f85 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x97c29f43 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb714e29f usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb9a43c9c usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc81de238 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca622fe7 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd393cc07 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd534b299 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd5dfb377 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x7b40befb usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xfb60d937 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 0x00e15310 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x02807358 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x5ef394d0 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb5e2e3c5 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 0x251135ee svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x56097b08 svga_get_caps +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 0xa4885f7c 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 0xd4f43678 svga_tilecopy +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 0xf42eff57 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfaf9dc31 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xfe6d79b5 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xbd4acfbb sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xe0ea8726 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x781d31ad sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x1dfd4732 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 0x11f3cd95 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 0x1cc755f1 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xd2444268 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf68c1d58 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x26b3d643 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x700441ee matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xbae52da3 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xdbfb5a19 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x92faf121 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x0b7a869f matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x0f0a9e85 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2a40046f matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x90530593 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xddf05555 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x0ce1b461 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x329f99d2 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x26d7039c matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3b9a9860 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x42394196 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcb44ff54 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd79b2813 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x5668e3fb 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 0x6ac418ed w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x909dcf86 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb2e9477c w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb8763e5e w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x0f5f011a w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x8d325782 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x41128d94 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7ca3a59f w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x52dd99b7 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x5dc179c5 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x91deaa79 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xc59089c0 w1_register_family +EXPORT_SYMBOL fs/configfs/configfs 0x0b9d2009 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x149975e0 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x1e7b9a8a config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x428804c1 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x460ddbbe configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x4fdf250d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x505f26b6 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x68e68da0 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x7187eb1c configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x90e70ea9 configfs_unregister_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 0xf1119032 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xf5cdb856 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xfb3e1e85 configfs_register_default_group +EXPORT_SYMBOL fs/exofs/libore 0x174ceb9b ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2fb9ae2f ore_create +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x50243cdd ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x502fd741 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x6c8260a7 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x90429616 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x93bde77b ore_read +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xcc35b9a8 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xd864c8f7 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xe2ced997 ore_write +EXPORT_SYMBOL fs/fscache/fscache 0x0624e283 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x0630fc37 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x0b5e27f3 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x15baa903 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x23db92d6 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x2448b3f6 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x27c0c7bf __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x295d1b30 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x2b90b708 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x317bdef3 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x32af6e92 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x333f6685 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x3561a2a3 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3aa189e4 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x43cc21be __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x45d70840 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x47cb4a51 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x590c68eb fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x5fd5d5bd __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x60ca1228 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x6155eef2 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x63cd9f55 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6a178439 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x7202b7be fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x72ba11d2 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x73e6ce01 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x8050144b fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x891f8f33 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x895361f7 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xbe9fcf90 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xc118c406 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xd0618351 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd089975d __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xd1d5f014 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xd309e594 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xe1a99146 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xf059809f fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xf4f0f14b __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xfa2d742d fscache_enqueue_operation +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1b08d558 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x9409c34d qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb7c193d1 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb9d3d5ed qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcaf15972 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 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 0x8a72f902 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 0xec14eefe 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 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 0x566ec67c lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5c6c0c57 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xa204721a lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0x5d174b63 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xc4a4a9a5 register_8022_client +EXPORT_SYMBOL net/802/p8023 0xb443ccc0 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xf45c4cfd make_8023_client +EXPORT_SYMBOL net/802/psnap 0x55869644 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x6cf83f5f register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0b2181b5 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x11f45590 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x16ab0927 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x18a8c761 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x1989f747 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x20d70baf p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x2be1b0a9 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x2d2265c5 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x2ed68835 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2ffa210e p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x33467736 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x36a92156 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x36d00b7b p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x3731665a p9_client_getlock_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 0x487d28ea p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x4931de0d p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x5614757c p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x7326b1d9 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x752e71b9 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x8dd94793 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x957c1e03 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x9647dbd5 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0xa645ca84 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xb43dafa7 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xbb048006 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xbfad0446 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcf5bb41c v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xd2303cb6 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xda08e227 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xdd0d759c p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xdd957b28 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdf10ac2b p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xe0f3d1ff p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xe3647978 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xeb48d480 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf17b7cb0 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfa87ad1c p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/9p/9pnet 0xfed0fd12 p9_client_renameat +EXPORT_SYMBOL net/appletalk/appletalk 0x1353fd29 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0xbae30b19 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xbeacf23c aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xf3f5d779 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x0b7d52ce atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4280d42f vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x4955e3c1 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x56d2f0aa atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x6422ab98 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x6b5fec84 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x94752214 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa8b5fdeb atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb0c9d271 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xb42ace72 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xc91cffe2 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xe087e02e atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xefff95d9 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 0x1b1ecde9 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 0x499f4dbb ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x7fd1e392 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9064e6e8 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x908e14b3 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xbe347bac ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcb8dffa8 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xf465b48a ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x01e7cb3d bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0588ac71 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x070ebfec hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d3a33ef l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d75aefe hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x123a6220 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x16de0133 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1759fc4c l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x25ce91ed hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3069d1c7 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32fb545d l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x36a2b6dc bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f828329 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51a7679d l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58a91a82 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x611fd568 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x634fb2b7 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x674aedcd hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e4a009f bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x71fde301 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c55eca4 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x879aae1f hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x89a96b17 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x929f9a53 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9b8195c7 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f6960d5 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9fd43618 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa8d6e8ce bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc11c13e3 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc39c8751 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcd492000 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1f48db5 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7bde31a l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb96e082 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc21c99f bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xddcca1e2 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe63dcb03 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3353ab1 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf3e21f84 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6e4f7e1 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7578617 hci_conn_security +EXPORT_SYMBOL net/bridge/bridge 0xed4677ba br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x296c0a71 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa1eba21f ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xecbcead5 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 0x44492ac3 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x65e0314a 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 0xc9503adb caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xd8be984a caif_connect_client +EXPORT_SYMBOL net/caif/caif 0xe4a25465 caif_disconnect_client +EXPORT_SYMBOL net/can/can 0x1e5e55a2 can_proto_register +EXPORT_SYMBOL net/can/can 0x547fd191 can_rx_register +EXPORT_SYMBOL net/can/can 0x89b597e8 can_send +EXPORT_SYMBOL net/can/can 0xa9a33f7a can_ioctl +EXPORT_SYMBOL net/can/can 0xbf7deba8 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xea2b0143 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x0327acb2 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x084cc8d5 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0f34f6e1 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x10514a91 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x1da513c1 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x201e8541 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x25b75d75 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x25c3f8e6 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x267dee2a ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x26d26008 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x2848004b osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x30518c3a ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x32ce78ab ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x3377738e osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3a56405b ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3aa9cfba ceph_auth_verify_authorizer_reply +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 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x48fb21e4 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x526e423e ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x552f6f41 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58d7daf7 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x5dee9d93 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x5e165883 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x5e4179fb ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x61abccef osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x631627d8 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x632ce88c ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x67cc1560 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x682ddc08 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x6929eec9 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6e10f2fa osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x6e6c7763 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x6fe8a133 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x711812a2 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7259969c ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x74afbe63 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x7d88136f ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x7f1b6bc6 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x7fff5dae ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x810431de ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x87022b85 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x8991e61a ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x8caa86ef ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x90047787 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x90fc26ca osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x92bcac6a ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x93a49847 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9504831b ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a303c0d ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa2aafb36 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xa32a712c ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xa3bdc79f ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xa417c51d ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xa448cd09 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xa632731d ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xa970989d ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xa97ac168 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xaaab5617 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xad9848b7 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaf64f617 osd_req_op_raw_data_in_pages +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 0xb652d873 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xbd7491ba ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc31e95c7 ceph_monc_wait_osdmap +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 0xcb887f1b osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xcbe7ba83 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xcf2105be ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd16868c9 ceph_osdc_cancel_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 0xd6081d0e osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd8b4e998 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xda209c73 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xda2228c2 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xdadd65db ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe4e1e2de ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xe55b04b2 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe6acaddf ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xe9db7be3 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xe9e2f039 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xe9f47a30 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xecadc860 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xef762153 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf615e0a1 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xf7aad459 ceph_client_id +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x78fa9bf3 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xb3ece1c3 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x05a8e6e9 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x347dc756 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4124b7e9 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xcaf1acce wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xda731f23 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf0197578 wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x2505d7c4 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xe2fc8231 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x1683ab09 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x67d0ff4b ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x70e09546 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x7a0940fe ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb6de36d4 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd2dec242 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x312ee014 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x57f7d541 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xad881807 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x274d191d ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb2ba2770 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xf5cc38c3 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x22fa3c5d xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x7f9c04bb xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x54794670 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa06cfe5c ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xa0a30ae2 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdb7633c7 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xdfe53f55 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x07026c27 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x0a6a8284 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xf7023186 ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x547e4f99 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xc7c64149 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa242194c xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xdd5b2d68 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x19cc619c ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1d94b5ca ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4fa0e849 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5873026d ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x61f58571 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x673a7ba5 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xa4f55db9 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb454e1ed 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 0x0fff0ce7 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x1b107026 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x2f515903 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x369e0db8 irlap_close +EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x3bf31fe2 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 0x489137c4 iriap_open +EXPORT_SYMBOL net/irda/irda 0x53162298 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x5f6ed713 iriap_close +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 0x71d86269 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x721d9c6d irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x731cec71 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x763e54a4 irlmp_unregister_client +EXPORT_SYMBOL net/irda/irda 0x76b0c8af iriap_getvaluebyclass_request +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 0x8e05745b irttp_data_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 0x9d697df8 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x9f1b82cc irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x9ffda243 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0xb3c13d7f irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbb5eb1a8 irlap_open +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 0xc54c35ee irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xc8b55dca irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xd6f51b74 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe7964d3c irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xe8de490c irttp_dup +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xee72784b irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xef9cd83c irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xf08872d4 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xf199cba4 irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xf96b65db irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xfc3ec03d irda_device_set_media_busy +EXPORT_SYMBOL net/l2tp/l2tp_core 0x4c2f9fa6 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x73a86af5 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x086c2686 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x299e716b lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x6ab37a6f lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x6f5106a7 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x89275a2d lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xa28bbddc lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xaf5a3fcf lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xe2e9846b lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x25827ecb llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x356c4889 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x5155edb8 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x7381aeb6 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xbead7b71 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xc4a14cbb llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xe7d4370b llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x014ae4a2 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x0c1be5d2 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x14a2e2f0 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x18263152 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x1b2a8df7 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x211df014 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x23a253fb ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x275d37d0 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2980bf37 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2c8ce46f ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x2c9431f6 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x2d3f4d56 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x322c7b11 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x39676fa2 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x3d92d6e7 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x3dacad1e ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x3efd2923 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x3f862ceb ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4098ea81 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x412f01b2 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x46f85c2c ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4c7c17e6 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4f9cef06 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x55c8b205 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x66aef0ec ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x671bb046 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x673ea08d rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x6996b679 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6c4560ca ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x6db5c90f ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x7399c3d4 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x73c14583 ieee80211_rts_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 0x7c1ef4cd ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x7df41d2e ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x811f401c __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x86bf788c ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8b785b33 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x8f81eb00 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x90644142 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x915f9c0e rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x9b598a37 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x9cdc254b ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xa0a5b31b ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xa1572151 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa71c0d60 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa91a4a9b ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xabea8bc3 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xadd9febf __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb45510b9 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xb4df1171 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xb52c1e13 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb54c5ef4 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xb9a21073 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xbcbc7ed0 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0xc099e5aa __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xc30874a5 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc45f6340 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xc5461ff3 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xc985b024 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xd303c2d6 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xd5dd4b2e ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd6072763 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd72bdc28 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xd84bf50c ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdab639a8 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xe71b41df ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xe76349b9 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xe789cd6b ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xef719525 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf17a8309 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf1ae993b ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xf25122f0 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xf4b5e91b ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xf622fa70 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xf65b69f5 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xf81864d1 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xfa288e2d ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xfe979534 ieee80211_iter_keys +EXPORT_SYMBOL net/mac802154/mac802154 0x2dee3715 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x47f6d72d ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x4aaff6be ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7cee86ea ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xcb68c0f0 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xd91e0993 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xead95542 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xf63f373f ieee802154_free_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x294e309c ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x47bbb991 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5cba0f26 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6770420d register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x81d32432 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x83f9af22 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x84ee2301 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x95a899e0 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa70b38b4 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc6647efb unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc7367652 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd58c99b8 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdacc5792 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf5457481 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1c8de55d nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6d4a22b5 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xae7b5869 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x1e16c5c1 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x435487fe nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x9d84809f __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xaff801b7 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xcbde503b nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xe9757ea7 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x0edcbbcb xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x127a2121 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x28b3d458 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x4ca6361e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x687079a4 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x83b0711d xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x9b2a37ad xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xbc108e9e xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd15ba24a xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe3b8d766 xt_find_match +EXPORT_SYMBOL net/nfc/hci/hci 0x06ab3b86 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x0c4df14a nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x10fe016d nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x11b20b90 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x21888db4 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x23fd7343 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x314f086a nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x32a428db nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x3dc4e578 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x460a3b60 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x56c91fd4 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x6d87de92 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x6ec830a3 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x6f77920a nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7726b5c5 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x7dc98b5f nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x935cb9b2 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc2a6069b nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0xcdd87016 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xe153b53b nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xfa413a21 nfc_llc_start +EXPORT_SYMBOL net/nfc/nci/nci 0x01c0b1be nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x05e67681 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x0be2aa2e nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x31b3c53c nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x331a577f nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3982420e nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3a526c71 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x3b90312a nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3fa2d137 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x57ef3235 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x5fc5caa8 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x67b0dda0 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x6dcf9c1b nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7018456e nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7fa88193 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x81115e0d nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x8e115522 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x98a6dfc1 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x9beade31 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa31bc5c6 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xab30d3e4 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xb33ffb0a nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc1e268e8 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xc8f2e3fa nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xd328ed10 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xe1e83576 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xfda1af85 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xfdfcb54c nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nfc 0x0baabddb nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x0d53f60b nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x0efe2669 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x22bce6e7 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x289a3c39 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x2fb9e63f nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x39a57c65 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x43225593 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x43a67801 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x4f9e60c7 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x6dac17bb nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x6ef94706 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x7495d671 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x813c417a nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x981f9593 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xa26ed1b0 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xa904b5da nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xa9acd40d nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xb8e44895 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xc87d5910 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xc8afe83a nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xcfc0f3a4 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xd9c1cbd9 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xe2530c65 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x0136d9e8 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xbbe865a4 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe17c8cc1 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf7f6b362 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x296575a6 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x333c82d1 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x4f4a8666 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x6bb9eeb4 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x7644cada phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x9fff4570 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xafcb597d pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xdb111caa pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0ad247f1 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1cc9aa40 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1d91627f rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x23194d4d rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2eb7e3c5 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x42f349b4 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x82b5c380 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x893cb512 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9736d9aa rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9758a65b rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xba6afcde rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xba6eac26 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe2f7c3cd rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe859cae3 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf3ca3bef rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/sctp/sctp 0xb03e7b67 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4136338d gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6a4a6a9e gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xb207e656 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/sunrpc 0x0b727cfc xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6df84c93 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xea8d2ef9 svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0xe6a9238a wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xf5737022 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x020cfc6a cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x05209bea wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x084cdd00 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0bb1fb92 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x0be6e150 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x0c6ab252 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x0e52e4e0 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x115a408e cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x1425bebb cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x17b41d56 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1c9d7fd1 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x1fd6192e cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x260d38c7 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x2b7b5342 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2ef09905 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x30da3e1e wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x3131db1f cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x34ee52d5 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x3be4e3cc cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x3c488865 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x3e5bc50c cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x419a87ff freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x41ba6613 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x42552785 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x438e044f cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4906e3f9 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4b28dcd3 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x4c4bed25 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x4e275270 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x4e80efe8 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x4fa83ec3 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x50daa44f cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x5284e498 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x54d6b13b regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x5b91d061 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x5ccdba0f cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5d86ca5f cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x63d1383f cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x645e515a regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x6499e085 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x68e89b12 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6d70bedb cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6e5c0b96 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x72835024 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x73535f7e cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x74ac6e9e ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x7ca54849 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7eb82eae cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fc0c5cf cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x80a1b4bc cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x860705aa cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8a01fb88 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b2cf59b cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x8b77c530 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8bd2cd93 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9143fa4e ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x9314bc48 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x95cf3b14 cfg80211_rx_spurious_frame +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 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa23991f3 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xa8ab0c96 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xa96f6976 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xa97da93e cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xacbc6668 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xad190d23 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xbe97c2db __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xc35f76c0 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xc60e9bfb cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc70b3b77 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xd6906573 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdbeecae0 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xdfbf256e cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xe0907ffa cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe1c72a40 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe2b6f1f6 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xe2e1f2db __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe3535749 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xe7cbe409 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xec331fc9 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xec81d666 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xece16b65 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf3200b3c cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xf9135434 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x39407655 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x3ff4f6e8 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x90ff8136 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xbde08693 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xd553c461 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0xfef3eed7 lib80211_get_crypto_ops +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x9bab179e 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 0x33b59a02 snd_seq_kernel_client_write_poll +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 0x6c10e9e3 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6df2d540 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x7ab9d3af 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 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 0xc63d43b8 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 0x709e85d7 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0xf2e6d69f snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x363c9dac snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3f4b7cb7 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x48af5f64 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x48ea0cdf __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4cf32dde snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d3438dd __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x733c39e7 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x76667723 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x93c4de36 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa142c1fa snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa8d2bd1f snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb31e25be snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd351b44b snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd7beff11 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdbaf118c snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdfefdad2 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe9b47ceb snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf2301ac8 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfbc76603 snd_rawmidi_kernel_open +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 0xee12ef43 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0bb4e266 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5bbbbec3 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6f95bde0 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7d25e782 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8587b491 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa3f6412e snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc2e0ae9d snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xda8a703d snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xdd216743 snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x06c2db20 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0a450b3d 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 0x3e29162a snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5b53f435 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x97fc8415 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb8f3834b snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc188e2cc snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc54c168a snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcbd2a9c0 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0ba54788 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0f4326d5 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x19a61466 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f4669a7 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x37c76f78 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3bad8d9f amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4a056abb amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4e7616bc cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5c67a921 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x63be893b cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6522ffd3 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x664dbe61 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x68cd81ba fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6c7f1af9 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6cbdfdad fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d729550 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x769bc833 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a6a9240 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x925f6ece snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x980cfecf snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb75e0de7 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbc98b47e cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbf27b7ec fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1d9572f amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc51c650c cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb2580a6 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbebee6c fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe321edb9 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe8a662ab amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe96e96bb iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed255cf1 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf2f8fac7 fcp_avc_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x76dc55d6 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb225a04d snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2a1d17a7 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3f7eff01 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x42e2d92b snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x59522fe7 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8fe52f5c snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x97d18f12 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9cffd70c snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbdd48981 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x0c69a56e snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x27b1650a snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4f681b61 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xf2e57ab2 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xdb6822de snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xdbf82bda snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-i2c 0x131994a0 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x41730082 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x5cae818d snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x9fad989c snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd91c2dfb snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xdc3aa306 snd_i2c_device_free +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x15cb7a16 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1fc6156d snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2543d52d snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2833e001 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3d6ce9b6 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x44e88096 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5e7eb571 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x647ba144 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a048be7 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x952034f0 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa7f6b675 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa8b1be14 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xaacc57ac snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc619c721 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcbd58db3 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd423d2da snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf59c2390 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x053c184e snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xeaed2fb6 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xff796e68 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1dbe6d84 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x25d1683f oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x324d2435 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x398113e9 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4a6f0f02 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x537007f7 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x539492bd oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x56eacd9a oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x572cb226 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5c76e9c4 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6a883c62 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6f48df92 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6f9e2a90 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x72f0ab4e oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7f29ed40 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8ed4d24b oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9f50b531 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb9b3bf39 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc23392dc oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd1d41450 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdee80fc2 oxygen_write_ac97 +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x646877a1 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x8cd96574 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/fsl/snd-soc-fsl-utils 0xa584ac16 fsl_asoc_get_dma_channel +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 0xd487fa28 snd_usbmidi_create +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xd9d2bb03 snd_usbmidi_disconnect +EXPORT_SYMBOL vmlinux 0x00044052 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x000dca2a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x001ee95a imx_ssi_fiq_base +EXPORT_SYMBOL vmlinux 0x00313c1a skb_split +EXPORT_SYMBOL vmlinux 0x00362258 dss_install_mgr_ops +EXPORT_SYMBOL vmlinux 0x003b3474 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x00664e82 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x0083dbda dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x00928438 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x0093393b frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d8736d tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x00de4415 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x00f0c36a tcf_action_exec +EXPORT_SYMBOL vmlinux 0x00fa8ec3 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0103640f jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x0108a72c netdev_err +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a9e53 elf_hwcap2 +EXPORT_SYMBOL vmlinux 0x011b252d nobh_write_end +EXPORT_SYMBOL vmlinux 0x012b2261 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x0148cf35 put_filp +EXPORT_SYMBOL vmlinux 0x0152829a path_get +EXPORT_SYMBOL vmlinux 0x015509f1 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01821437 dump_page +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01a7eff7 __d_drop +EXPORT_SYMBOL vmlinux 0x01ac9dda xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x01b423d9 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x01b7fd59 dispc_read_irqstatus +EXPORT_SYMBOL vmlinux 0x01b827aa omapdss_unregister_display +EXPORT_SYMBOL vmlinux 0x01c394a8 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x01ceca7d swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x01d13ac3 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x01d9ec41 udp_ioctl +EXPORT_SYMBOL vmlinux 0x01ddcc89 scsi_unregister +EXPORT_SYMBOL vmlinux 0x01e44502 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x01ea132e dispc_runtime_put +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x0245e985 dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x024691ac blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x025543db d_splice_alias +EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x025b54df alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x02646606 empty_zero_page +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0265fde4 of_dev_get +EXPORT_SYMBOL vmlinux 0x026b8c3b invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x026bea5f register_sound_dsp +EXPORT_SYMBOL vmlinux 0x02735cf0 netlink_unicast +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x0288fd98 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x0292a5fc snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ad18 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02a95b6c devfreq_add_device +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 0x033187a6 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03375223 md_reload_sb +EXPORT_SYMBOL vmlinux 0x0349b9ae shdma_init +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035ce768 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x035d05b5 nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037b95fc forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x037f9b2d mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x038ee1a1 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x03ac54f8 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x03ae9954 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03dc4f24 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x03dc9401 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x03dca65e __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x03e9874d skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0416e835 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044b8ff0 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x04578b10 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x0462cf9b padata_add_cpu +EXPORT_SYMBOL vmlinux 0x04672e58 simple_follow_link +EXPORT_SYMBOL vmlinux 0x047f61ee key_task_permission +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048a5fa2 simple_map_init +EXPORT_SYMBOL vmlinux 0x048f1410 __genl_register_family +EXPORT_SYMBOL vmlinux 0x04af4e3d skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04de7443 dss_mgr_disable +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f001ab posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x04fc54c0 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x05004223 unload_nls +EXPORT_SYMBOL vmlinux 0x050e41ce lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x05193243 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x051d04c9 km_state_expired +EXPORT_SYMBOL vmlinux 0x05226e89 processor +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053123e5 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x058969f3 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x05a405bf from_kgid_munged +EXPORT_SYMBOL vmlinux 0x05c44d5c inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x05f3b6ab neigh_table_init +EXPORT_SYMBOL vmlinux 0x05f525db skb_queue_tail +EXPORT_SYMBOL vmlinux 0x05f84757 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x06022f0c __alloc_skb +EXPORT_SYMBOL vmlinux 0x06158d3d nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06381f1b __dquot_transfer +EXPORT_SYMBOL vmlinux 0x0655f071 shdma_reset +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x065f4a35 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x06607f92 dss_feat_get_supported_outputs +EXPORT_SYMBOL vmlinux 0x067cb535 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x067eb528 migrate_page +EXPORT_SYMBOL vmlinux 0x06920bb6 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x06986645 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x06a7588b jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x06b05395 _snd_ctl_add_slave +EXPORT_SYMBOL vmlinux 0x06d50f31 nand_scan_bbt +EXPORT_SYMBOL vmlinux 0x06ddb702 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x06f6df8d blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0701cfe5 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x07125046 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x0725d20b scsi_target_resume +EXPORT_SYMBOL vmlinux 0x072a8f8d __set_fiq_regs +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0753b833 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x0767c8d6 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07afe6f5 __bread_gfp +EXPORT_SYMBOL vmlinux 0x07b02031 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x07beaa82 unregister_key_type +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x07e45774 blk_get_request +EXPORT_SYMBOL vmlinux 0x07ef91ae __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x07f05867 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x081f3afb complete_all +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x084f00df module_put +EXPORT_SYMBOL vmlinux 0x08647707 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x0868971b pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x087c424d pagecache_write_end +EXPORT_SYMBOL vmlinux 0x087e949c __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x088b4ea2 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x089e9022 mdiobus_write +EXPORT_SYMBOL vmlinux 0x08bfbd01 irq_set_chip +EXPORT_SYMBOL vmlinux 0x08c45fd8 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x08d8c038 scsi_device_get +EXPORT_SYMBOL vmlinux 0x08e939b7 phy_connect +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f77400 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x08f7fd13 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x0912e2dd mdiobus_read +EXPORT_SYMBOL vmlinux 0x09242651 phy_detach +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x09744765 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x097c6d36 register_filesystem +EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099d3538 pcibios_bus_to_resource +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 0x09f50cc1 snd_pcm_lib_readv +EXPORT_SYMBOL vmlinux 0x09fa0744 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table +EXPORT_SYMBOL vmlinux 0x0a0f91b8 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2fc96e skb_put +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a372df5 serio_open +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a5806d8 freeze_bdev +EXPORT_SYMBOL vmlinux 0x0a5896ea of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x0a5a2ad6 __get_user_pages +EXPORT_SYMBOL vmlinux 0x0a6fdca0 dss_mgr_disconnect +EXPORT_SYMBOL vmlinux 0x0a86d36c inet6_protos +EXPORT_SYMBOL vmlinux 0x0a9022ad ppp_input_error +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa79172 make_kprojid +EXPORT_SYMBOL vmlinux 0x0aafa941 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0aece1f6 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x0aee08e9 param_set_int +EXPORT_SYMBOL vmlinux 0x0afb7471 kdb_current_task +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b3d7976 find_get_entry +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b515ef9 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x0b57155e tegra_io_rail_power_off +EXPORT_SYMBOL vmlinux 0x0b571594 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b665f0e snd_ctl_remove +EXPORT_SYMBOL vmlinux 0x0b71d89d registered_fb +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b79254a bioset_free +EXPORT_SYMBOL vmlinux 0x0b9cbfab bio_clone_fast +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc23629 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bdb5e5b find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x0c043246 inet_select_addr +EXPORT_SYMBOL vmlinux 0x0c2f65a2 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x0c443af9 mpage_writepage +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c549551 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c89baf7 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0caa97f7 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb621ed blk_register_region +EXPORT_SYMBOL vmlinux 0x0cbb93b9 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x0cc49b8c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x0d023989 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x0d0a4bde abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x0d262028 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d4c426a vga_get +EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5ef975 register_key_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6a9f99 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x0d74fa4d eth_header_parse +EXPORT_SYMBOL vmlinux 0x0d794b85 override_creds +EXPORT_SYMBOL vmlinux 0x0d7c3875 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x0d7cba75 input_release_device +EXPORT_SYMBOL vmlinux 0x0d7e7c43 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x0d966f28 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x0da02270 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da1916e fs_bio_set +EXPORT_SYMBOL vmlinux 0x0db82220 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0ddb9a16 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x0ddee210 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x0e35dd27 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x0e4f4d6b vme_irq_generate +EXPORT_SYMBOL vmlinux 0x0e54d874 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x0e57a7fb dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x0e5ba880 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x0e6175e3 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e778918 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0e8d3698 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x0e8e5015 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x0e929e44 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x0e9ed8a7 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x0e9f2950 nf_log_register +EXPORT_SYMBOL vmlinux 0x0ea61004 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecd3386 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x0ecd66dc rwsem_wake +EXPORT_SYMBOL vmlinux 0x0ed3e9fd snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0x0edb0383 inet_bind +EXPORT_SYMBOL vmlinux 0x0edb1641 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x0ee64f5b fb_set_suspend +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0efc762c cpu_user +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f2ab7d4 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x0f4584ad sock_rfree +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f58c75e netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f85288f tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x0f911fcb account_page_dirtied +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb27064 write_cache_pages +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x101eea73 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x1025fdf9 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x10314407 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x105c7f90 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x106df011 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1070a3dd cdev_init +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x10756c3e __quota_error +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1088b4a9 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x10994736 md_register_thread +EXPORT_SYMBOL vmlinux 0x10b44283 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x10d73b49 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x10e5a6cc mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10fada24 path_noexec +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1113efbd sk_capable +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x112748bd omap_vrfb_adjust_size +EXPORT_SYMBOL vmlinux 0x1135b359 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x1140d72c of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1178e202 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a82d2a n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x11c6ae20 vme_master_request +EXPORT_SYMBOL vmlinux 0x11e3005d dm_kobject_release +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x11f94643 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x11f99afa sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x120afd2e __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x124b76b2 make_kgid +EXPORT_SYMBOL vmlinux 0x1257bdc6 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x128f5bf9 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a54158 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x12aba146 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x12cf0553 register_qdisc +EXPORT_SYMBOL vmlinux 0x12cf7724 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12ef0b83 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x12fd21a7 dm_get_device +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131c98ab __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x1328ca7e inode_add_bytes +EXPORT_SYMBOL vmlinux 0x132a3039 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x133800cf blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x1340dda6 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x13479114 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x13921e6c mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x13c48208 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f775b5 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x13ff4dfc tcp_make_synack +EXPORT_SYMBOL vmlinux 0x140c772f devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x1417de65 napi_get_frags +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x14624b89 snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0x1464064e sock_efree +EXPORT_SYMBOL vmlinux 0x1474a968 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x147af622 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x148c36bb scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x14b0f99f iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d20e6f pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14e03ba4 fb_get_mode +EXPORT_SYMBOL vmlinux 0x150d3a79 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x152289ef param_get_ulong +EXPORT_SYMBOL vmlinux 0x1529ea35 ip_options_compile +EXPORT_SYMBOL vmlinux 0x153015df shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x155eaaa2 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x156a9e33 eth_header +EXPORT_SYMBOL vmlinux 0x15759de9 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x15a296d0 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bf3e35 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x15cf2088 input_close_device +EXPORT_SYMBOL vmlinux 0x15e50578 audit_log_start +EXPORT_SYMBOL vmlinux 0x15ec5b50 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x160c6ef5 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x160e2190 netlink_ack +EXPORT_SYMBOL vmlinux 0x160eb08b dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x16396af3 free_buffer_head +EXPORT_SYMBOL vmlinux 0x163e42a5 flow_cache_fini +EXPORT_SYMBOL vmlinux 0x164051a4 touch_buffer +EXPORT_SYMBOL vmlinux 0x1643fd27 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x1661a246 netdev_notice +EXPORT_SYMBOL vmlinux 0x166d2c12 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x168d9780 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x16a08dd7 pci_clear_master +EXPORT_SYMBOL vmlinux 0x16adbf81 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x16bb4c8d snd_pcm_lib_writev +EXPORT_SYMBOL vmlinux 0x16dfadda nlmsg_notify +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16fd6843 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x1700965c __register_chrdev +EXPORT_SYMBOL vmlinux 0x17079671 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x1718a132 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x174ab447 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x1753a3d1 kern_path +EXPORT_SYMBOL vmlinux 0x175f8963 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x176459c6 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x1784f057 dispc_ovl_set_fifo_threshold +EXPORT_SYMBOL vmlinux 0x178a93e2 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b71007 sk_common_release +EXPORT_SYMBOL vmlinux 0x17c4ee12 block_truncate_page +EXPORT_SYMBOL vmlinux 0x17e2e924 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x18369a3c generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184be4a9 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x1867afd4 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x18738156 input_set_capability +EXPORT_SYMBOL vmlinux 0x1876c569 stop_tty +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188b92d1 abx500_get_chip_id +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 0x18bd76a4 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18d2c56c eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x18ddbf91 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f01996 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x18f68b3a i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x1900ffc1 account_page_redirty +EXPORT_SYMBOL vmlinux 0x1903bea5 request_key +EXPORT_SYMBOL vmlinux 0x190975ea generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x190ce001 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x191b519c netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x191f102a dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x1928b9d3 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x192947b3 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x19607884 dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x1962e63b param_ops_uint +EXPORT_SYMBOL vmlinux 0x197381af sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x197d0e03 generic_fillattr +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 0x19a12a11 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19bea41d vfs_whiteout +EXPORT_SYMBOL vmlinux 0x19ca07ce vm_event_states +EXPORT_SYMBOL vmlinux 0x19ed14cc sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x1a1a53f1 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x1a1c8dc9 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x1a20c540 omap_vrfb_supported +EXPORT_SYMBOL vmlinux 0x1a291d75 snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x1a4b30be inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x1a4f48c9 cdrom_release +EXPORT_SYMBOL vmlinux 0x1a50a0f6 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a7e1ca2 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x1aaa780c fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x1ab11edb pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x1ab1e593 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x1ab96140 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ad2d45f down_write_trylock +EXPORT_SYMBOL vmlinux 0x1adcc921 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x1afd4fed mount_pseudo +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0501e5 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x1b11767e key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x1b261609 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b46a2e8 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1b56214f inode_get_bytes +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6d0d08 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x1b757f8f sg_miter_start +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b9b1970 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x1b9fd9d9 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x1ba0b61a pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x1ba92652 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bbcb1cc tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x1bcea8e3 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x1bcfb5f5 omapdss_find_output_from_display +EXPORT_SYMBOL vmlinux 0x1be86783 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x1bfa8872 vfs_readv +EXPORT_SYMBOL vmlinux 0x1bffc5cb netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x1c081ccd keyring_clear +EXPORT_SYMBOL vmlinux 0x1c0f8899 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x1c2d5713 pps_unregister_source +EXPORT_SYMBOL vmlinux 0x1c302038 ns_capable +EXPORT_SYMBOL vmlinux 0x1c4f1b2c skb_checksum +EXPORT_SYMBOL vmlinux 0x1c518fef serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c784096 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait +EXPORT_SYMBOL vmlinux 0x1cff50b3 tty_lock +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d1b4ddf scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x1d2eac60 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x1d3e150f unregister_shrinker +EXPORT_SYMBOL vmlinux 0x1d445fac pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x1dad17c7 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x1db289db mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x1db7dc40 pgprot_kernel +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dfd06a1 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e09c6ba __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x1e25e842 iget_locked +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e304cb5 serio_rescan +EXPORT_SYMBOL vmlinux 0x1e35c712 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x1e42bd11 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x1e45ae88 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e74ae78 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x1e7fb99a bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x1e883293 udp_add_offload +EXPORT_SYMBOL vmlinux 0x1e9809f6 neigh_xmit +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea81777 release_pages +EXPORT_SYMBOL vmlinux 0x1ea93a16 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x1eb1b203 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x1ecd8118 dquot_alloc +EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1eeed93f uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x1efebcd3 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x1f0e07a6 up_write +EXPORT_SYMBOL vmlinux 0x1f15e55e single_open +EXPORT_SYMBOL vmlinux 0x1f175169 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x1f17f72e blk_free_tags +EXPORT_SYMBOL vmlinux 0x1f1b0029 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x1f3a40f8 down_read_trylock +EXPORT_SYMBOL vmlinux 0x1f55efb1 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x1f59d065 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x1f6deadf mount_ns +EXPORT_SYMBOL vmlinux 0x1f7e6558 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f8d4614 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x1f9a5ce8 of_match_node +EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc462d9 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd08b31 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1febe9ef check_disk_size_change +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2015577f pci_get_subsys +EXPORT_SYMBOL vmlinux 0x201bd7af snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x20283c9a __ethtool_get_settings +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 0x206ca15e jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ad4055 path_put +EXPORT_SYMBOL vmlinux 0x20b9a2f9 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x20bb9ee4 padata_stop +EXPORT_SYMBOL vmlinux 0x20c042a3 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f5c6db xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x20f95e6c audit_log +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x2161c5d2 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x2198edc0 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x21c2816b fb_validate_mode +EXPORT_SYMBOL vmlinux 0x21c633c9 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x21db18d6 vfs_link +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f72cce get_user_pages +EXPORT_SYMBOL vmlinux 0x21f7eb8f claim_fiq +EXPORT_SYMBOL vmlinux 0x21feb7ef kill_litter_super +EXPORT_SYMBOL vmlinux 0x220edee2 poll_initwait +EXPORT_SYMBOL vmlinux 0x22258c9e pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +EXPORT_SYMBOL vmlinux 0x222f8f6e backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x222fa684 lg_global_lock +EXPORT_SYMBOL vmlinux 0x2232a8a5 mempool_free +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 0x226973d7 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2277d558 mx53_revision +EXPORT_SYMBOL vmlinux 0x22923582 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x22a7bb07 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x22a980b7 vfs_writev +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22dd831a snd_card_file_add +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22dfec67 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x230e58e3 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x233dcd40 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x234b7931 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x23590a10 ilookup5 +EXPORT_SYMBOL vmlinux 0x2362ca03 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x23754d3d tcp_conn_request +EXPORT_SYMBOL vmlinux 0x239959ad blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x23b20059 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c33174 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2404d341 component_match_add +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244b556d __check_sticky +EXPORT_SYMBOL vmlinux 0x2458eb4b elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2477b52b pci_iomap +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24a98e2c mmc_remove_host +EXPORT_SYMBOL vmlinux 0x24c2d673 clear_nlink +EXPORT_SYMBOL vmlinux 0x24d25f38 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x24e5a1cc tty_free_termios +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x2507520e kern_unmount +EXPORT_SYMBOL vmlinux 0x2512390f of_match_device +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set +EXPORT_SYMBOL vmlinux 0x2531683f inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x2535eb69 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x25383024 tcp_req_err +EXPORT_SYMBOL vmlinux 0x254f2e52 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x255acb5f tegra_powergate_sequence_power_up +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x2594319e xfrm_input +EXPORT_SYMBOL vmlinux 0x25a597cd generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x25b846ed tty_port_open +EXPORT_SYMBOL vmlinux 0x25c8717b led_update_brightness +EXPORT_SYMBOL vmlinux 0x25d01620 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x25e2cc0b sk_mc_loop +EXPORT_SYMBOL vmlinux 0x25e63f83 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f08611 dquot_operations +EXPORT_SYMBOL vmlinux 0x26033dc4 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x261b34b0 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x262d5de4 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x26738219 thaw_super +EXPORT_SYMBOL vmlinux 0x2681cfcc of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x268ee0a5 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x26957b9e qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x269b137d inode_permission +EXPORT_SYMBOL vmlinux 0x269c5fb7 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x26b16e33 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x26b5f3cf padata_start +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x26e1df94 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x26e38a61 scsi_host_put +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x270e7e41 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x27131800 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x27139a39 fget_raw +EXPORT_SYMBOL vmlinux 0x271f8257 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x2727371e tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x272d4292 netdev_change_features +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2749bdad tty_unlock +EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x27713531 __devm_request_region +EXPORT_SYMBOL vmlinux 0x2778d59b of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x27828e3c sget +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27abf058 pps_event +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c7633f param_set_bint +EXPORT_SYMBOL vmlinux 0x27d3f302 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x27d70e7e zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27ee4a5c bio_map_kern +EXPORT_SYMBOL vmlinux 0x27f9611d cfb_copyarea +EXPORT_SYMBOL vmlinux 0x27f9c59c omapdss_register_output +EXPORT_SYMBOL vmlinux 0x28037ed7 wake_up_process +EXPORT_SYMBOL vmlinux 0x280d4a49 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2820400c twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x28387b88 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x28407785 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x286931da dcb_setapp +EXPORT_SYMBOL vmlinux 0x2879134f inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x289bebd6 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28aa2e5d xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x28d6861d __vmalloc +EXPORT_SYMBOL vmlinux 0x28dcd970 locks_init_lock +EXPORT_SYMBOL vmlinux 0x292b4873 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x292cbff9 sock_register +EXPORT_SYMBOL vmlinux 0x294cb89a generic_write_end +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2953d5c1 blk_make_request +EXPORT_SYMBOL vmlinux 0x2962967f mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x2982c403 inet_addr_type +EXPORT_SYMBOL vmlinux 0x298ca9c7 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x298e052c block_commit_write +EXPORT_SYMBOL vmlinux 0x29a1317a elv_register_queue +EXPORT_SYMBOL vmlinux 0x29af4966 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x29d144ba dev_addr_init +EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x29e5e7c4 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x29ead0d0 tegra_dfll_runtime_resume +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3a81f6 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a63a582 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x2a6b8722 kernel_read +EXPORT_SYMBOL vmlinux 0x2a7a8d66 netdev_crit +EXPORT_SYMBOL vmlinux 0x2a7cac99 pci_add_resource +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aa65546 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab6d74a scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae3e1db remove_proc_entry +EXPORT_SYMBOL vmlinux 0x2afd34c5 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b20d69a scsi_execute +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b2e73c0 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x2b37ce50 param_array_ops +EXPORT_SYMBOL vmlinux 0x2b482828 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create +EXPORT_SYMBOL vmlinux 0x2b64d7b7 dst_alloc +EXPORT_SYMBOL vmlinux 0x2b870633 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bca35be serio_bus +EXPORT_SYMBOL vmlinux 0x2bcaea2d vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x2bcb4518 dev_uc_init +EXPORT_SYMBOL vmlinux 0x2bcb4fa6 inet_frags_init +EXPORT_SYMBOL vmlinux 0x2bd71a13 key_unlink +EXPORT_SYMBOL vmlinux 0x2bd9d7c4 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2becf8a2 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x2bfe4363 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x2c03f991 mmc_start_req +EXPORT_SYMBOL vmlinux 0x2c138d6d proc_set_size +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c227c7b __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x2c23efa0 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c40b85f pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x2c4c0d7f snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x2c4e9b90 elv_add_request +EXPORT_SYMBOL vmlinux 0x2c4ef87e snd_jack_report +EXPORT_SYMBOL vmlinux 0x2c54a507 param_set_invbool +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c80fec1 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c882c50 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x2c8d2f16 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x2c90e3e2 snd_timer_start +EXPORT_SYMBOL vmlinux 0x2c94ca6b zero_fill_bio +EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x2c9a5028 nand_scan_tail +EXPORT_SYMBOL vmlinux 0x2ca31482 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x2cab5943 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x2cc752d1 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x2cd609a9 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x2cd8dc63 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x2ce3fc4c sk_wait_data +EXPORT_SYMBOL vmlinux 0x2ce76fdd md_update_sb +EXPORT_SYMBOL vmlinux 0x2d004cb9 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x2d1327e0 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1ec5be tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x2d1f161b dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d3f4df3 dev_deactivate +EXPORT_SYMBOL vmlinux 0x2d43b798 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d770676 dispc_mgr_go +EXPORT_SYMBOL vmlinux 0x2d8aced4 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x2d8e6278 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x2daa3e13 misc_register +EXPORT_SYMBOL vmlinux 0x2dad2011 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x2dba47da mmc_erase +EXPORT_SYMBOL vmlinux 0x2dcaaee3 d_alloc_name +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2dde0c45 udp_seq_open +EXPORT_SYMBOL vmlinux 0x2de3ac29 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1caa9b snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e623ca2 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x2e7df11d fasync_helper +EXPORT_SYMBOL vmlinux 0x2eba0bb2 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec52fb8 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x2ec77d15 omapdss_output_unset_device +EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free +EXPORT_SYMBOL vmlinux 0x2ecf2fd2 elm_config +EXPORT_SYMBOL vmlinux 0x2eda1245 dev_mc_add +EXPORT_SYMBOL vmlinux 0x2ee1e9d4 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x2eefec05 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f507fe6 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f6b6d0b simple_write_begin +EXPORT_SYMBOL vmlinux 0x2f6d7e48 dev_uc_del +EXPORT_SYMBOL vmlinux 0x2f909650 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x2f940d3a commit_creds +EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put +EXPORT_SYMBOL vmlinux 0x2fa0e397 proto_unregister +EXPORT_SYMBOL vmlinux 0x2fad6f4f phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fcc9086 tty_do_resize +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe79b8b skb_find_text +EXPORT_SYMBOL vmlinux 0x2ffe2bb5 nand_unlock +EXPORT_SYMBOL vmlinux 0x300892a9 devm_clk_get +EXPORT_SYMBOL vmlinux 0x3008d860 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x30160d86 param_ops_long +EXPORT_SYMBOL vmlinux 0x301acefa simple_getattr +EXPORT_SYMBOL vmlinux 0x301ea50a __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3032faff of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x3034e4a3 sock_init_data +EXPORT_SYMBOL vmlinux 0x3036e70c vfs_read +EXPORT_SYMBOL vmlinux 0x3048ae08 dev_uc_add +EXPORT_SYMBOL vmlinux 0x3050e651 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x3061f06c devm_gpio_request +EXPORT_SYMBOL vmlinux 0x30714874 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x3076a0da clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3082a0b3 dss_feat_get_supported_color_modes +EXPORT_SYMBOL vmlinux 0x308aad56 omap_vrfb_min_phys_size +EXPORT_SYMBOL vmlinux 0x30912a97 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30a96829 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x30d1124f phy_device_register +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310be80f ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x312146ba check_disk_change +EXPORT_SYMBOL vmlinux 0x3129f9f7 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x313ef4b7 kunmap +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3161d57d __secpath_destroy +EXPORT_SYMBOL vmlinux 0x3162e155 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x318771a9 vga_tryget +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31a8994b devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x31b0e062 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x31b2cf95 dma_find_channel +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31c8085e fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x31d59717 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x31e81bc9 inet_frag_find +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f5ed5c __f_setown +EXPORT_SYMBOL vmlinux 0x31ffc205 dev_mc_del +EXPORT_SYMBOL vmlinux 0x32046a95 blk_get_queue +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32584d81 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x325ea66c default_llseek +EXPORT_SYMBOL vmlinux 0x32613921 udp_disconnect +EXPORT_SYMBOL vmlinux 0x32898cca ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x328d0734 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove +EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next +EXPORT_SYMBOL vmlinux 0x33180fbc mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x33453afd xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x335297ff inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x3364d663 inet_shutdown +EXPORT_SYMBOL vmlinux 0x336d8aac ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x337dab48 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x338449af mmc_can_trim +EXPORT_SYMBOL vmlinux 0x339d88f5 snd_ctl_boolean_mono_info +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 0x340290a0 skb_store_bits +EXPORT_SYMBOL vmlinux 0x3412e5ed vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347641d6 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x348068a7 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x348194f2 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a037bc vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x34d1fe8c dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f6a72f udp6_csum_init +EXPORT_SYMBOL vmlinux 0x3507a132 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0x3512b44c mmc_get_card +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3518ca21 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x351c1b27 netif_device_attach +EXPORT_SYMBOL vmlinux 0x351d221d xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x352b9787 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x3558522c pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x3563e509 iterate_dir +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35824a0c reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x358ffed6 pci_request_region +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b11c1d snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0x35cd25f1 tty_port_init +EXPORT_SYMBOL vmlinux 0x35deeca4 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x35f0b942 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x35f5314a tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x35f82ec8 register_gifconf +EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x360c4176 ata_port_printk +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x3617d312 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x36186525 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x363ad951 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x363f3d3e rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x36500499 seq_pad +EXPORT_SYMBOL vmlinux 0x365244ef bio_advance +EXPORT_SYMBOL vmlinux 0x36542f4e vfs_symlink +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x367fb8c0 register_sound_mixer +EXPORT_SYMBOL vmlinux 0x36a28a3a ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x36a7715d devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x36bb7fc0 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x36bbd88e blk_start_request +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36d55810 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x36e63333 dquot_release +EXPORT_SYMBOL vmlinux 0x36e6c557 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x36ec0f1f mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x36fd350d dget_parent +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x37016f8d blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x3733446b ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x373bc46c msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x374dc3e9 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x375488d1 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x37722224 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x37725f1d dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x3777d555 ll_rw_block +EXPORT_SYMBOL vmlinux 0x378214d7 kill_anon_super +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37a90b9d xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37e37d20 input_get_keycode +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f3be32 tso_start +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x3813c6c7 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38203875 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x387ca15a vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x3882f802 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x389efb8e blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x38a6a281 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a7597e clear_inode +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b7fd39 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x38ba3356 current_in_userns +EXPORT_SYMBOL vmlinux 0x38bb8b02 flush_signals +EXPORT_SYMBOL vmlinux 0x3924dd56 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x39272f1e should_remove_suid +EXPORT_SYMBOL vmlinux 0x3931d2ca fb_set_var +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39410b1b sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39464889 free_user_ns +EXPORT_SYMBOL vmlinux 0x395d2387 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x3965e539 inode_set_flags +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify +EXPORT_SYMBOL vmlinux 0x3978b232 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399e42c4 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x39ad5e34 prepare_creds +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39d14f9f linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x39e217ec unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x39fa84e3 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x3a00d888 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x3a07ce29 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x3a15135d neigh_table_clear +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a1b0f85 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x3a22d866 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x3a2f0ea7 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x3a4694a5 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x3a519e88 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x3a5f0832 dqput +EXPORT_SYMBOL vmlinux 0x3a65a45f of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x3a681013 cont_write_begin +EXPORT_SYMBOL vmlinux 0x3a6b67d2 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x3a71394d user_path_create +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aae8da3 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x3abb26b0 ioremap_wc +EXPORT_SYMBOL vmlinux 0x3adced7c security_inode_readlink +EXPORT_SYMBOL vmlinux 0x3ae2d346 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x3b385331 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x3b4cc12e vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6af46c dev_close +EXPORT_SYMBOL vmlinux 0x3b8502bc xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x3b87c80d snd_component_add +EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages +EXPORT_SYMBOL vmlinux 0x3ba2a07e __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bc2f0cd skb_seq_read +EXPORT_SYMBOL vmlinux 0x3bd403ba acl_by_type +EXPORT_SYMBOL vmlinux 0x3bd69627 user_revoke +EXPORT_SYMBOL vmlinux 0x3bdfb18d mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x3bfa562d of_get_address +EXPORT_SYMBOL vmlinux 0x3bff0f37 console_stop +EXPORT_SYMBOL vmlinux 0x3bffe8a9 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x3c0639a3 sock_i_uid +EXPORT_SYMBOL vmlinux 0x3c0ad215 posix_lock_file +EXPORT_SYMBOL vmlinux 0x3c113356 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x3c159c1e netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x3c202ab4 datagram_poll +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c4bdd80 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x3c5550d3 file_remove_privs +EXPORT_SYMBOL vmlinux 0x3c5aec30 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x3c6958f7 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x3c7dcf66 filemap_flush +EXPORT_SYMBOL vmlinux 0x3c80acb9 mapping_tagged +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3ccd083e jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x3cd451a8 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ceb6d1b vfs_getattr +EXPORT_SYMBOL vmlinux 0x3cf1ebfe sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec +EXPORT_SYMBOL vmlinux 0x3cfc1f69 pid_task +EXPORT_SYMBOL vmlinux 0x3d058e1d qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x3d119ab8 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x3d1bd082 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x3d36b133 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x3d37e932 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x3d39768b dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d65b7c1 omap_dss_get_output +EXPORT_SYMBOL vmlinux 0x3d68c653 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x3d72ecfa pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x3d84ba6f tty_port_destroy +EXPORT_SYMBOL vmlinux 0x3d93b1cd lease_get_mtime +EXPORT_SYMBOL vmlinux 0x3d990055 seq_escape +EXPORT_SYMBOL vmlinux 0x3d9d1b67 __destroy_inode +EXPORT_SYMBOL vmlinux 0x3daa9cdf ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x3db32335 vmap +EXPORT_SYMBOL vmlinux 0x3db6e4ba kthread_stop +EXPORT_SYMBOL vmlinux 0x3dc10a97 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd1bb6d km_report +EXPORT_SYMBOL vmlinux 0x3dda2f39 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x3df38e80 give_up_console +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e1048f8 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x3e1b27f2 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x3e1d1f2a dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x3e2bdeb3 snd_timer_new +EXPORT_SYMBOL vmlinux 0x3e388a03 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x3e884f4b vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3ea1ed2f skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x3eaeb88e of_find_property +EXPORT_SYMBOL vmlinux 0x3ec44ebf __invalidate_device +EXPORT_SYMBOL vmlinux 0x3ec4cc2a snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0x3edbd922 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x3eed54c8 input_reset_device +EXPORT_SYMBOL vmlinux 0x3ef47705 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x3efd5a0d i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x3f1f7455 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f2de1b0 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x3f32aac6 map_destroy +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4b4438 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3f5de77e scsi_device_resume +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f69f3c9 d_genocide +EXPORT_SYMBOL vmlinux 0x3f72b0d7 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x3f75b50c dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x3f7dbc5c textsearch_register +EXPORT_SYMBOL vmlinux 0x3f7fdeb4 inet_release +EXPORT_SYMBOL vmlinux 0x3f9bc92f ppp_register_channel +EXPORT_SYMBOL vmlinux 0x3f9eb663 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x3fa77f03 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3fbe8dfc param_get_long +EXPORT_SYMBOL vmlinux 0x3fd1d2c1 blkdev_put +EXPORT_SYMBOL vmlinux 0x3fd87c70 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x402bb4ef truncate_setsize +EXPORT_SYMBOL vmlinux 0x4031b53b inet6_bind +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x404948fe ptp_find_pin +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40620303 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x4075c8d1 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x4080315f gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x4089bc4e pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x409e5c83 md_integrity_register +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 0x40b11139 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x40b7ff2f parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cdde6e register_sound_midi +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e2d046 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x40ed158e __breadahead +EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x40fd0ab3 tc_classify +EXPORT_SYMBOL vmlinux 0x4108bc11 cpu_tlb +EXPORT_SYMBOL vmlinux 0x410d9c5e phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x411ee97d pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4149bc90 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x41b59260 get_gendisk +EXPORT_SYMBOL vmlinux 0x41da5f86 dcb_getapp +EXPORT_SYMBOL vmlinux 0x41dfa49b i2c_use_client +EXPORT_SYMBOL vmlinux 0x41e253e6 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x41e70973 vfs_write +EXPORT_SYMBOL vmlinux 0x41eb1266 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x41f4d6f8 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x41fc3849 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x4211e686 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4239e34f inet_del_offload +EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x4253d7cb set_cached_acl +EXPORT_SYMBOL vmlinux 0x428c5b86 __register_nls +EXPORT_SYMBOL vmlinux 0x4291dd74 param_get_uint +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x429d271e param_get_ushort +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a43c84 page_waitqueue +EXPORT_SYMBOL vmlinux 0x42a61183 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x42c93e61 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x42e54663 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x42ef2d4b pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43050d83 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x430ba1d3 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x432d83f9 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x4335ed5e d_lookup +EXPORT_SYMBOL vmlinux 0x4348a9a1 build_skb +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x43588d56 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x43588ec2 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x4382cfd9 pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43923071 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0x43941851 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x439feb3b tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x43a11f9c tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x43b3f49b make_kuid +EXPORT_SYMBOL vmlinux 0x43bd32bb iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x43c0172b __dquot_free_space +EXPORT_SYMBOL vmlinux 0x43da3ce3 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x43e77fcf inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x440d4da3 kernel_sock_ioctl +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 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443d688b i2c_register_driver +EXPORT_SYMBOL vmlinux 0x443de7eb tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x4447240d snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0x4448cdc5 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x44918a04 open_exec +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44cbca4f ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x4535eccb inet_frag_kill +EXPORT_SYMBOL vmlinux 0x45389414 irq_to_desc +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4545bc7e nvm_get_blk +EXPORT_SYMBOL vmlinux 0x45507053 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x45681dab migrate_page_copy +EXPORT_SYMBOL vmlinux 0x45702937 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x459a0426 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x45a1118b dev_driver_string +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45c2758a unlock_buffer +EXPORT_SYMBOL vmlinux 0x45e418aa iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x45ec2972 netdev_features_change +EXPORT_SYMBOL vmlinux 0x45fb930b blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x46092624 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x461ac44d snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x465098b1 rtnl_create_link +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 0x46683181 snd_pcm_lib_read +EXPORT_SYMBOL vmlinux 0x46727e02 tegra_dfll_register +EXPORT_SYMBOL vmlinux 0x46b8e66d lock_sock_nested +EXPORT_SYMBOL vmlinux 0x46c92bd3 input_register_handler +EXPORT_SYMBOL vmlinux 0x46cf3f44 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x46d23e74 param_get_charp +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46df685a skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470a3303 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x4710ed89 inet6_offloads +EXPORT_SYMBOL vmlinux 0x47342824 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x473982da free_netdev +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47595892 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x476082eb flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x47708bf8 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47a27889 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x47be8674 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x47bf1f03 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x47c2d68e input_register_handle +EXPORT_SYMBOL vmlinux 0x47ca233d pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x47cfab1d read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x47dba0d5 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x47f7faee of_phy_attach +EXPORT_SYMBOL vmlinux 0x47fe9a23 omap_dss_find_output +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485f0e04 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x48639b08 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48aa20f3 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48f1551f of_translate_address +EXPORT_SYMBOL vmlinux 0x48f2a639 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49091ad0 sk_alloc +EXPORT_SYMBOL vmlinux 0x491ac244 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x493b29de pci_pme_capable +EXPORT_SYMBOL vmlinux 0x494b9dcb blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49702d9c request_firmware +EXPORT_SYMBOL vmlinux 0x4975c5c9 uart_register_driver +EXPORT_SYMBOL vmlinux 0x497e72c9 read_cache_pages +EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49be72ce vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x49be88aa iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x49c0a439 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x49cda507 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x49d08e5c cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x49d500ee padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x49e1ee14 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a08af06 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x4a0b4451 __elv_add_request +EXPORT_SYMBOL vmlinux 0x4a14ee50 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x4a23ab2d input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x4a391e4f fsnotify_destroy_mark +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 0x4a62a7b4 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4a76b9cc kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x4a93a856 nf_log_unset +EXPORT_SYMBOL vmlinux 0x4a9d84ad of_device_unregister +EXPORT_SYMBOL vmlinux 0x4aac4a40 filp_close +EXPORT_SYMBOL vmlinux 0x4ab8d9ff ip_defrag +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acfceac dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b071c98 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x4b138a5e sget_userns +EXPORT_SYMBOL vmlinux 0x4b1aa5e6 kernel_write +EXPORT_SYMBOL vmlinux 0x4b1b9739 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b286f74 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x4b33f9c8 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x4b4e4b0b genphy_read_status +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x4b95dda4 nf_register_hook +EXPORT_SYMBOL vmlinux 0x4ba91cea rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bafd021 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bbfd817 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x4bc88475 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x4bcc00b4 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4be6b73e posix_test_lock +EXPORT_SYMBOL vmlinux 0x4be7fb63 up +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bfd831c redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x4c023ea7 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x4c0abb2d blk_init_tags +EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x4c24ce23 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c30bf79 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c53656c dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x4c5e4b2f phy_suspend +EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c7d8a2d vc_resize +EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4c892052 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x4c8bf3f2 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x4c92160f secpath_dup +EXPORT_SYMBOL vmlinux 0x4ca634bc mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x4cba8b6f inode_init_owner +EXPORT_SYMBOL vmlinux 0x4cc2854d tegra114_clock_assert_dfll_dvco_reset +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cf0f236 proc_remove +EXPORT_SYMBOL vmlinux 0x4cf57277 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x4cfc840c dev_change_flags +EXPORT_SYMBOL vmlinux 0x4d085c10 prepare_binprm +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d175c6e mutex_trylock +EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d3f7d23 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x4d435210 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4c3fec omapdss_default_get_resolution +EXPORT_SYMBOL vmlinux 0x4d5c47ff tty_mutex +EXPORT_SYMBOL vmlinux 0x4d66b31d generic_setxattr +EXPORT_SYMBOL vmlinux 0x4d7665a9 dev_addr_add +EXPORT_SYMBOL vmlinux 0x4d76688d md_error +EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4dadf7fc genl_unregister_family +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df74ad3 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x4e32e001 tty_throttle +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e654e4c bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x4e675efe iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e8108a9 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x4e947df7 pci_iounmap +EXPORT_SYMBOL vmlinux 0x4edce528 input_inject_event +EXPORT_SYMBOL vmlinux 0x4ee5af7b scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x4efa480b default_file_splice_read +EXPORT_SYMBOL vmlinux 0x4efa784c seq_puts +EXPORT_SYMBOL vmlinux 0x4f0a783f devm_request_any_context_irq +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 0x4f3a8b05 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x4f3b7698 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f8ea536 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x4fbf7e1f xattr_full_name +EXPORT_SYMBOL vmlinux 0x4fc13f0f mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x4fdd2c17 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x5053ea26 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x50825ef7 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x508ae06f scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50a18e4d tcp_ioctl +EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50c52ebd netif_carrier_on +EXPORT_SYMBOL vmlinux 0x50d5612e dispc_mgr_get_sync_lost_irq +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50eaf07d udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x50fa1264 snd_jack_set_key +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 0x51526a5c bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x5158d1fa dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x5172ca55 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x5186ac2a simple_unlink +EXPORT_SYMBOL vmlinux 0x519aade3 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x519c6b5d put_disk +EXPORT_SYMBOL vmlinux 0x51a74c88 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x51bedaaa elevator_change +EXPORT_SYMBOL vmlinux 0x51c8cdaf tso_build_hdr +EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x51d5a684 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x51e5c6f2 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5215a335 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x521ae836 generic_listxattr +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x522fffa2 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x523fed0a snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x524788d2 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x524fe31a tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x527be357 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init +EXPORT_SYMBOL vmlinux 0x52a416b3 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x52a75377 iput +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52e4a478 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x530acd11 phy_device_create +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53168221 block_read_full_page +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x535b5f64 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x5365d15f tty_vhangup +EXPORT_SYMBOL vmlinux 0x5372414f skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x53a1efc4 d_alloc +EXPORT_SYMBOL vmlinux 0x53add1c9 ipv4_specific +EXPORT_SYMBOL vmlinux 0x53af5b42 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x53c23734 flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0x53decfbd nf_log_set +EXPORT_SYMBOL vmlinux 0x5404e6d6 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x54169146 seq_path +EXPORT_SYMBOL vmlinux 0x542ce5eb blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x543160f6 sk_free +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x546c28e1 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit +EXPORT_SYMBOL vmlinux 0x547ce898 dispc_read_irqenable +EXPORT_SYMBOL vmlinux 0x548e3013 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x5498938e mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0x549feacc eth_header_cache +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b39620 mpage_readpages +EXPORT_SYMBOL vmlinux 0x54b43e51 vfs_readf +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c6d0ff md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f515ab input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL vmlinux 0x54f7f94d serio_interrupt +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5540356a open_check_o_direct +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55617306 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x556eaf91 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x557e4a01 snd_card_file_remove +EXPORT_SYMBOL vmlinux 0x559c4476 __init_rwsem +EXPORT_SYMBOL vmlinux 0x55ac1fe4 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x55cd1d90 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x55ce47f2 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55db3a9d __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x55f8596d i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x56042a74 dma_pool_create +EXPORT_SYMBOL vmlinux 0x560a6615 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x562a7a3b dss_mgr_start_update +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x56482353 copy_to_iter +EXPORT_SYMBOL vmlinux 0x564b1de3 downgrade_write +EXPORT_SYMBOL vmlinux 0x565840b1 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x565a865d blk_peek_request +EXPORT_SYMBOL vmlinux 0x565c9770 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x5662e31d __mutex_init +EXPORT_SYMBOL vmlinux 0x5663058e ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x566ac524 get_cached_acl +EXPORT_SYMBOL vmlinux 0x566f26f2 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56acdff8 framebuffer_release +EXPORT_SYMBOL vmlinux 0x56bc2f15 dispc_ovl_set_channel_out +EXPORT_SYMBOL vmlinux 0x56c4bd01 param_ops_charp +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d0a5ba blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x56f826cd napi_gro_frags +EXPORT_SYMBOL vmlinux 0x56fb7990 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x5713ac7a block_write_full_page +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573d40c7 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x574780a1 dquot_file_open +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574d9d06 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x578373e5 mount_nodev +EXPORT_SYMBOL vmlinux 0x5794f2e0 register_console +EXPORT_SYMBOL vmlinux 0x57980643 simple_link +EXPORT_SYMBOL vmlinux 0x57a98763 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x57b073cd snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x57b7f0a3 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x57be0da8 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x57be250b abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x581565cd kmem_cache_size +EXPORT_SYMBOL vmlinux 0x581e7447 find_inode_nowait +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 0x586cf832 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x586e334b devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x587077d1 pci_release_region +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58b84f78 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x58c3f042 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x58cd8db8 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x58d584a1 generic_update_time +EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e9a3a7 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x58ecb825 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x58fd5ad0 generic_file_open +EXPORT_SYMBOL vmlinux 0x590c7efa mdio_bus_type +EXPORT_SYMBOL vmlinux 0x592275cd neigh_seq_start +EXPORT_SYMBOL vmlinux 0x5939376d dst_discard_out +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x594fc0fb shdma_cleanup +EXPORT_SYMBOL vmlinux 0x59544f83 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x596b2199 set_page_dirty +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 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b9c739 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x59bf7b8d kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x59cf6ae2 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x59d29dab v7_flush_kern_dcache_area +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x59f94488 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a3d7397 snd_card_set_id +EXPORT_SYMBOL vmlinux 0x5a440bd3 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x5a560e1c lwtunnel_input +EXPORT_SYMBOL vmlinux 0x5a6859ad blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x5a6fcb14 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x5a8baecd i2c_clients_command +EXPORT_SYMBOL vmlinux 0x5ab5d34f pcim_iomap +EXPORT_SYMBOL vmlinux 0x5ab8836f mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x5abff912 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x5ad78ec4 set_blocksize +EXPORT_SYMBOL vmlinux 0x5ae33db2 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x5ae34a8c ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5ae899a8 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x5af3e719 snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b01f11f pskb_expand_head +EXPORT_SYMBOL vmlinux 0x5b04be5a disable_fiq +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b1d849e nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x5b1f8189 tty_hangup +EXPORT_SYMBOL vmlinux 0x5b5d017a of_parse_phandle +EXPORT_SYMBOL vmlinux 0x5b6c9c1b inode_set_bytes +EXPORT_SYMBOL vmlinux 0x5b6e4a07 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x5b75b043 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x5b8d49c3 param_set_copystring +EXPORT_SYMBOL vmlinux 0x5bb78c52 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x5bd0682b snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0x5be27442 noop_fsync +EXPORT_SYMBOL vmlinux 0x5bec9ce9 security_inode_permission +EXPORT_SYMBOL vmlinux 0x5becef40 arp_xmit +EXPORT_SYMBOL vmlinux 0x5c10c57f bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one +EXPORT_SYMBOL vmlinux 0x5c44b61c mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x5c5758b7 vfs_writef +EXPORT_SYMBOL vmlinux 0x5c58af7d inet_add_protocol +EXPORT_SYMBOL vmlinux 0x5c598867 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x5c714c83 proc_mkdir +EXPORT_SYMBOL vmlinux 0x5c7c8913 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x5c81a901 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5c9b9d00 tty_name +EXPORT_SYMBOL vmlinux 0x5cbada89 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x5cc7528d param_get_invbool +EXPORT_SYMBOL vmlinux 0x5cd678f3 done_path_create +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cecc05d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d15f333 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x5d1bb060 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x5d3dad7f skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x5d4754bd devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x5d4b5b0b omap_dss_get_overlay_manager +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d612fbc elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x5d6348a4 of_get_property +EXPORT_SYMBOL vmlinux 0x5d6abbae inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x5d7752e7 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x5d81ca69 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd47c1f filemap_fault +EXPORT_SYMBOL vmlinux 0x5dfcd07d netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x5dfd27a8 touch_atime +EXPORT_SYMBOL vmlinux 0x5e0c3c83 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x5e130a78 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x5e1a2723 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x5e1c3a97 generic_writepages +EXPORT_SYMBOL vmlinux 0x5e2452ac copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x5e40bd34 snd_card_free +EXPORT_SYMBOL vmlinux 0x5e4177ba posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x5e47289f serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x5e69a88d dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x5e75586f skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x5e7d7400 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +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 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f0929c7 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x5f3630a3 pci_find_capability +EXPORT_SYMBOL vmlinux 0x5f3ba246 lro_flush_all +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f88355e param_set_ulong +EXPORT_SYMBOL vmlinux 0x5f952cd9 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x5f9b9870 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x5f9dc136 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x5fa32842 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x5fd1bebb bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x5ff93420 __mdiobus_register +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 0x600b1c88 icmp_send +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6025111b inet6_ioctl +EXPORT_SYMBOL vmlinux 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60558bf2 dqget +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x60869232 release_sock +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609d44b7 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60a37ea7 dev_crit +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e06d13 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x60ec7645 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x60f06a98 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x60f70d25 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x610c409d dispc_ovl_check +EXPORT_SYMBOL vmlinux 0x610c5cf1 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x615aa017 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x615cfa11 kmap +EXPORT_SYMBOL vmlinux 0x61681473 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x6169384d key_payload_reserve +EXPORT_SYMBOL vmlinux 0x617453dd sync_filesystem +EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x61944f7d ilookup +EXPORT_SYMBOL vmlinux 0x619f01ec max8998_read_reg +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bc3f30 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x61c2a704 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x61c665bf cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x61cc208d init_buffer +EXPORT_SYMBOL vmlinux 0x61cdd0be rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x61e3f295 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x61eba9b0 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x61f410ad fb_class +EXPORT_SYMBOL vmlinux 0x61f89103 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x621c6090 dev_uc_unsync +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 0x623139bf pci_match_id +EXPORT_SYMBOL vmlinux 0x6242f5ec lwtunnel_output +EXPORT_SYMBOL vmlinux 0x624f7eca security_path_rename +EXPORT_SYMBOL vmlinux 0x62528194 param_set_charp +EXPORT_SYMBOL vmlinux 0x625fe0b1 pipe_lock +EXPORT_SYMBOL vmlinux 0x6263406d blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62773839 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x62812e12 km_new_mapping +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6298d4c7 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x62aa6364 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x62ecadae vfs_iter_write +EXPORT_SYMBOL vmlinux 0x62ef09ef seq_release_private +EXPORT_SYMBOL vmlinux 0x62f9c7dc udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x63044932 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x6305b202 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x630858cb i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6319e8b1 add_disk +EXPORT_SYMBOL vmlinux 0x63204b33 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x63323dfd ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x633cb776 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x6347e6bf do_truncate +EXPORT_SYMBOL vmlinux 0x636114dd input_free_device +EXPORT_SYMBOL vmlinux 0x636a5995 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL vmlinux 0x63937695 dquot_get_state +EXPORT_SYMBOL vmlinux 0x63a082da tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63cb8e20 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x640a9d77 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x643458d4 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x644d5557 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x64600f85 phy_device_free +EXPORT_SYMBOL vmlinux 0x6470eadf swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x64739e01 bdev_read_only +EXPORT_SYMBOL vmlinux 0x647da28b abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x648c2f03 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x648daf91 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x648f3ef9 ata_link_printk +EXPORT_SYMBOL vmlinux 0x6498d16d cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x649ac4c3 block_write_begin +EXPORT_SYMBOL vmlinux 0x64a22ff0 dispc_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0x64a77f62 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x64c6d71a alloc_disk +EXPORT_SYMBOL vmlinux 0x64db2e39 security_file_permission +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x65198f1a blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x654075f2 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65423199 iterate_fd +EXPORT_SYMBOL vmlinux 0x65466939 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x65564f0e phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x655dab9c sock_wmalloc +EXPORT_SYMBOL vmlinux 0x65695d40 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x65710004 snd_unregister_device +EXPORT_SYMBOL vmlinux 0x6581a36b neigh_update +EXPORT_SYMBOL vmlinux 0x6586ee19 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x65a682ac scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x65a81114 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x65ba6d4d fbcon_rotate_cw +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 0x66164264 serio_reconnect +EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x66308e5f devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x664740e2 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x664c530b vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x66513475 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x6664236c d_make_root +EXPORT_SYMBOL vmlinux 0x6670f870 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x667e58ef remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x6690d768 revalidate_disk +EXPORT_SYMBOL vmlinux 0x66950f7e iov_iter_advance +EXPORT_SYMBOL vmlinux 0x66a433bd nf_log_unregister +EXPORT_SYMBOL vmlinux 0x66b5cb14 md_done_sync +EXPORT_SYMBOL vmlinux 0x671e279e finish_open +EXPORT_SYMBOL vmlinux 0x6720a955 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x6725721d devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x6738a554 d_delete +EXPORT_SYMBOL vmlinux 0x67467b22 write_inode_now +EXPORT_SYMBOL vmlinux 0x67505771 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x676bbc0f _set_bit +EXPORT_SYMBOL vmlinux 0x676c2920 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67781df7 simple_fill_super +EXPORT_SYMBOL vmlinux 0x6781e035 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x6784f5b7 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x6794a1db vfs_setpos +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c3197d elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x67d2f4c4 pci_dev_get +EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name +EXPORT_SYMBOL vmlinux 0x67e21876 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x68501723 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x6856c0e9 seq_lseek +EXPORT_SYMBOL vmlinux 0x685adc20 unregister_netdev +EXPORT_SYMBOL vmlinux 0x686caf57 sock_alloc_send_skb +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 0x68d7593e posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x68dfd6ee snd_card_register +EXPORT_SYMBOL vmlinux 0x68e41120 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x68f5c8ec replace_mount_options +EXPORT_SYMBOL vmlinux 0x68f73249 put_io_context +EXPORT_SYMBOL vmlinux 0x68faee93 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x68fb4974 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x68fedc69 bioset_create +EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible +EXPORT_SYMBOL vmlinux 0x6917e3b4 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x6926b0b4 snd_register_device +EXPORT_SYMBOL vmlinux 0x692d3be9 drop_super +EXPORT_SYMBOL vmlinux 0x692db9ee vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x69319ec4 pci_bus_type +EXPORT_SYMBOL vmlinux 0x6954ed0e blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x69644efe of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x698f8699 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x69a1a6fb devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69ebe929 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6a01ddac skb_append +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a04325a i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x6a166c40 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x6a2106ad generic_file_llseek +EXPORT_SYMBOL vmlinux 0x6a46615f swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x6a5578d7 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a6fcf01 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a76f97a netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x6a775a2c netdev_printk +EXPORT_SYMBOL vmlinux 0x6a952db3 scsi_device_put +EXPORT_SYMBOL vmlinux 0x6a9951a1 set_device_ro +EXPORT_SYMBOL vmlinux 0x6aa4de2c arp_create +EXPORT_SYMBOL vmlinux 0x6aa9886f snd_device_register +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6adb6df6 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x6adcee05 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x6ae8d286 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b086236 generic_read_dir +EXPORT_SYMBOL vmlinux 0x6b151b21 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x6b1a0f6d of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b4c2ee4 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x6b5558f6 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x6b6815c0 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x6b73d050 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x6b75a371 brioctl_set +EXPORT_SYMBOL vmlinux 0x6b92a91a md_flush_request +EXPORT_SYMBOL vmlinux 0x6ba8e316 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c0bf367 __scm_destroy +EXPORT_SYMBOL vmlinux 0x6c1aa795 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c380da5 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x6c500636 dquot_destroy +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c5b284c igrab +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 0x6c74aa38 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x6c7801e6 get_super_thawed +EXPORT_SYMBOL vmlinux 0x6c9e53b3 snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x6caf2ce0 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x6cc080f9 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce6b6b5 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d10001b param_ops_bool +EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6d23838e dss_mgr_set_timings +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2b2cc7 loop_backing_file +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d57e62a ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d6cfe32 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x6d711a2d bh_submit_read +EXPORT_SYMBOL vmlinux 0x6da5686d mmc_detect_change +EXPORT_SYMBOL vmlinux 0x6dd509b7 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df52a35 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6e61ece7 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e6f7d88 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e8f3237 sock_edemux +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea4a638 netlink_capable +EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x6eccabc3 __register_binfmt +EXPORT_SYMBOL vmlinux 0x6eeb91c3 netdev_update_features +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6ef9dbe5 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x6f0fefbe blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x6f116a30 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x6f1d09c1 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x6f1f2d88 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f263ec4 omap_dss_find_device +EXPORT_SYMBOL vmlinux 0x6f31de75 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x6f3f68e4 set_anon_super +EXPORT_SYMBOL vmlinux 0x6f517d4f udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x6f5c3e2d __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x6f8756f9 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f91d12f abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x6fb94da3 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x6fba7766 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fe05d05 generic_setlease +EXPORT_SYMBOL vmlinux 0x6fe49f2e __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x6fe4e5c1 clk_get +EXPORT_SYMBOL vmlinux 0x6ff2a034 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x7008632f skb_dequeue +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x700f6d3a param_set_bool +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708818f8 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x709fc0e7 simple_rmdir +EXPORT_SYMBOL vmlinux 0x70c3400f nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x70ca3445 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x70df309f alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL vmlinux 0x70e5e55a page_follow_link_light +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x71009f96 pci_write_vpd +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 0x71333985 skb_pull +EXPORT_SYMBOL vmlinux 0x713d80f9 seq_open +EXPORT_SYMBOL vmlinux 0x714adcbf sock_no_accept +EXPORT_SYMBOL vmlinux 0x7169102e omap_dss_ntsc_timings +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718fc3a5 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x71a447b3 tty_port_put +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71e1ef4d genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x71f39afa sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x71f55062 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x71fb0418 neigh_destroy +EXPORT_SYMBOL vmlinux 0x7200d077 tcp_child_process +EXPORT_SYMBOL vmlinux 0x7209ecd0 block_write_end +EXPORT_SYMBOL vmlinux 0x721ddef5 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit +EXPORT_SYMBOL vmlinux 0x72375948 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x726fd1a6 inet_offloads +EXPORT_SYMBOL vmlinux 0x7284d2ab ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x728e0127 put_tty_driver +EXPORT_SYMBOL vmlinux 0x729371dc dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x7296d8a2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x72a6e1a8 phy_init_hw +EXPORT_SYMBOL vmlinux 0x72ab2429 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x72ae35d0 inet_listen +EXPORT_SYMBOL vmlinux 0x72aeecc1 fput +EXPORT_SYMBOL vmlinux 0x72b9492b textsearch_prepare +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ec1abe snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x7308146c inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x731154b0 scsi_register +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73185ddf mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x73309703 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x7338913e try_to_release_page +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x733e0afc skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x734a6951 new_inode +EXPORT_SYMBOL vmlinux 0x734a7ecb snd_pcm_stop +EXPORT_SYMBOL vmlinux 0x73906245 of_root +EXPORT_SYMBOL vmlinux 0x73ab68b9 snd_card_new +EXPORT_SYMBOL vmlinux 0x73bb527f of_get_parent +EXPORT_SYMBOL vmlinux 0x73caa545 single_open_size +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73f481bb mtd_concat_create +EXPORT_SYMBOL vmlinux 0x740686a2 security_path_mknod +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x746df9e2 param_set_short +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x747a278f fget +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x7487d68a tcp_sendpage +EXPORT_SYMBOL vmlinux 0x74936123 module_refcount +EXPORT_SYMBOL vmlinux 0x749b9c80 get_phy_device +EXPORT_SYMBOL vmlinux 0x74b69863 nvm_end_io +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cf90e6 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x74d34d7b snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0x74dc6f58 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x74e46dac imx_ssi_fiq_tx_buffer +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74eae6f4 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x74fedbc3 fb_find_mode +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x751ee02a abx500_register_ops +EXPORT_SYMBOL vmlinux 0x752e26f2 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x753356b5 snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x7534020a is_bad_inode +EXPORT_SYMBOL vmlinux 0x75448de8 snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x7561a5af load_nls_default +EXPORT_SYMBOL vmlinux 0x7562aef7 from_kprojid +EXPORT_SYMBOL vmlinux 0x7567d381 __get_fiq_regs +EXPORT_SYMBOL vmlinux 0x758a7340 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75ceca46 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x75d15662 dm_register_target +EXPORT_SYMBOL vmlinux 0x75d543aa eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7610e8f3 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x762637b3 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x762f0802 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x7638bc59 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x766473fd sound_class +EXPORT_SYMBOL vmlinux 0x768e3228 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x76957cdd from_kuid_munged +EXPORT_SYMBOL vmlinux 0x7697fa24 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x769c70a3 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x76cf47f6 __aeabi_llsl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d94f11 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x76d99d73 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76dcf21b ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x7715645d console_start +EXPORT_SYMBOL vmlinux 0x771d495d input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x772ffeda netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x7757bf90 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table +EXPORT_SYMBOL vmlinux 0x777140e7 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x7778a525 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x7790d905 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x77975562 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77b2114a snd_jack_new +EXPORT_SYMBOL vmlinux 0x77b2b7c0 vfs_unlink +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77cccaf9 scmd_printk +EXPORT_SYMBOL vmlinux 0x77dc5f9e __find_get_block +EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x7801b772 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x7805d754 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x780c579b d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x780c6e50 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked +EXPORT_SYMBOL vmlinux 0x78157680 register_quota_format +EXPORT_SYMBOL vmlinux 0x7817b06e con_copy_unimap +EXPORT_SYMBOL vmlinux 0x781f24e5 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x7820c8b2 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x7830d424 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x784d5548 icmpv6_send +EXPORT_SYMBOL vmlinux 0x784d656d nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x78506252 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x7873b9c9 ptp_clock_register +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 0x78acbe84 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x78b6f173 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x78bdb6d6 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x78c07c6c __dst_free +EXPORT_SYMBOL vmlinux 0x78d4a147 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x79170e42 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x794a1412 pci_map_rom +EXPORT_SYMBOL vmlinux 0x794a862b blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x798169fb snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x79914483 genphy_config_init +EXPORT_SYMBOL vmlinux 0x79a6e280 dev_addr_del +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c33a77 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x79c5a9f0 ioremap +EXPORT_SYMBOL vmlinux 0x79d7f76b genphy_suspend +EXPORT_SYMBOL vmlinux 0x79db0476 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x79fa1deb imx_ssi_fiq_rx_buffer +EXPORT_SYMBOL vmlinux 0x7a055cd2 dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x7a159f10 register_md_personality +EXPORT_SYMBOL vmlinux 0x7a18145b jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x7a1f2611 dispc_mgr_set_timings +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a466173 load_nls +EXPORT_SYMBOL vmlinux 0x7a58201b blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x7a592980 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x7a78edba omapdss_default_get_timings +EXPORT_SYMBOL vmlinux 0x7a7c32ae __devm_release_region +EXPORT_SYMBOL vmlinux 0x7a81265c sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a9eb358 netdev_info +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa889bf sk_net_capable +EXPORT_SYMBOL vmlinux 0x7ab0fb34 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac11124 up_read +EXPORT_SYMBOL vmlinux 0x7acf56c9 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad4f7c8 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x7ae5cab1 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x7aed537d netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b0f6ebc blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x7b120c1e truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b3b4d76 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x7b439d50 __put_cred +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b604b02 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x7b761a73 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x7b9f0b80 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x7b9ff7b0 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x7ba89554 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x7bb28ef9 generic_write_checks +EXPORT_SYMBOL vmlinux 0x7bbc75d5 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x7bc311b0 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x7bfa186e scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x7c00752c deactivate_super +EXPORT_SYMBOL vmlinux 0x7c027976 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1a2abe of_platform_device_create +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c5b3704 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x7c675737 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9fc7bb sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x7cae56f5 rt6_lookup +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cc1b20c xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x7cc216c0 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x7cc3bae4 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cef3927 kill_bdev +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d02185d blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d1175e0 sg_miter_next +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1a2744 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x7d1b6d7c unregister_filesystem +EXPORT_SYMBOL vmlinux 0x7d1da0b8 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x7d39f564 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x7d3aa43a tty_check_change +EXPORT_SYMBOL vmlinux 0x7d3ab71a mutex_lock +EXPORT_SYMBOL vmlinux 0x7d538a5b pci_reenable_device +EXPORT_SYMBOL vmlinux 0x7d564afd bio_split +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d99a153 I_BDEV +EXPORT_SYMBOL vmlinux 0x7da87624 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x7db26274 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x7ddbcecf netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x7de4627c ps2_end_command +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e0571b6 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x7e0d3978 set_nlink +EXPORT_SYMBOL vmlinux 0x7e0ef9db bdget_disk +EXPORT_SYMBOL vmlinux 0x7e14101f d_obtain_root +EXPORT_SYMBOL vmlinux 0x7e388b88 qdisc_reset +EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x7e9deeb8 udp_prot +EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit +EXPORT_SYMBOL vmlinux 0x7ea57ed1 register_framebuffer +EXPORT_SYMBOL vmlinux 0x7ea83b8f redraw_screen +EXPORT_SYMBOL vmlinux 0x7eb65359 shdma_chan_filter +EXPORT_SYMBOL vmlinux 0x7ebfd0bc __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x7ee0ef86 simple_open +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee7f093 dispc_ovl_compute_fifo_thresholds +EXPORT_SYMBOL vmlinux 0x7efe2afe d_drop +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0b8939 snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f345587 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x7f3e33bf passthru_features_check +EXPORT_SYMBOL vmlinux 0x7f3f7458 snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x7f57b156 skb_tx_error +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f6d5e3c simple_write_end +EXPORT_SYMBOL vmlinux 0x7f7dfedb mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x7fc0ff83 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x7fc8f5f2 file_open_root +EXPORT_SYMBOL vmlinux 0x7fcf2646 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x7fd0053b blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe24ddd dss_mgr_enable +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x801704d3 seq_putc +EXPORT_SYMBOL vmlinux 0x801d81b8 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x8026d554 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x8031730c simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x803a6d85 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty +EXPORT_SYMBOL vmlinux 0x8080fefb phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x808749c6 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x808baab5 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x808e2197 file_ns_capable +EXPORT_SYMBOL vmlinux 0x8092dad7 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x80a2d455 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x80bc6e36 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d81308 omap_vrfb_release_ctx +EXPORT_SYMBOL vmlinux 0x80e1c401 sync_inode +EXPORT_SYMBOL vmlinux 0x810a7b81 security_path_symlink +EXPORT_SYMBOL vmlinux 0x8112c1cf param_ops_ushort +EXPORT_SYMBOL vmlinux 0x811d5379 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x811dad68 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x812807fc ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x812fef8c locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x81449d48 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x8153b423 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815ec809 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x816a3d7d blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x81896178 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x8189f1f2 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x819be04e ps2_init +EXPORT_SYMBOL vmlinux 0x81a37715 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x81cb4e91 km_policy_expired +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81dff44f netif_napi_del +EXPORT_SYMBOL vmlinux 0x81ebb392 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x8221c829 follow_down +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 0x82920b22 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x82a05ee8 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x82a83771 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x82a8fc48 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b68386 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x82c8c94a finish_no_open +EXPORT_SYMBOL vmlinux 0x82c969c2 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x82ce10ae dump_align +EXPORT_SYMBOL vmlinux 0x82d3b5ac netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x82d4e198 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x82ed571b blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x82ff9ccb d_instantiate +EXPORT_SYMBOL vmlinux 0x83031f4d elevator_alloc +EXPORT_SYMBOL vmlinux 0x830a9450 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x8333c8ab iget5_locked +EXPORT_SYMBOL vmlinux 0x8347e45e zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x8357b923 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x836e221e snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy +EXPORT_SYMBOL vmlinux 0x837e4010 netdev_state_change +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83abeb17 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x83ae9d16 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c3f2e8 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83c6d496 nvm_put_blk +EXPORT_SYMBOL vmlinux 0x83e659bc __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x840186b5 tcp_check_req +EXPORT_SYMBOL vmlinux 0x84133e4b kill_pgrp +EXPORT_SYMBOL vmlinux 0x842f0f34 param_ops_string +EXPORT_SYMBOL vmlinux 0x844444a0 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x845a136a bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x84656942 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x8465d947 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x847220a4 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x84777c7e proc_symlink +EXPORT_SYMBOL vmlinux 0x847f33ea dev_mc_flush +EXPORT_SYMBOL vmlinux 0x848d3055 snd_timer_notify +EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get +EXPORT_SYMBOL vmlinux 0x84aa609a truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84d0ef7e pci_pme_active +EXPORT_SYMBOL vmlinux 0x84d5c538 netif_napi_add +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85045c2c blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x85305ad4 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x853a1d3f skb_vlan_push +EXPORT_SYMBOL vmlinux 0x853d0a4b d_find_alias +EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents +EXPORT_SYMBOL vmlinux 0x854fec83 tegra_sku_info +EXPORT_SYMBOL vmlinux 0x8556b0c3 snd_register_oss_device +EXPORT_SYMBOL vmlinux 0x8556cad8 dev_warn +EXPORT_SYMBOL vmlinux 0x855e4599 kill_block_super +EXPORT_SYMBOL vmlinux 0x855ef88b ppp_channel_index +EXPORT_SYMBOL vmlinux 0x855f1133 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x856349ed d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x857cee25 elv_rb_find +EXPORT_SYMBOL vmlinux 0x85860fd2 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x858c2431 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x859cf58d xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x85a85dab devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x85b4416e PDE_DATA +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85b64540 netlink_set_err +EXPORT_SYMBOL vmlinux 0x85bb50d6 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8625b3ed blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x862605d4 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x862f0376 vm_mmap +EXPORT_SYMBOL vmlinux 0x8648e014 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86598c66 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x86741be8 scsi_add_device +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 0x86a2d969 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86ab53f6 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x86b28d0f dev_mc_init +EXPORT_SYMBOL vmlinux 0x86bc0a26 follow_pfn +EXPORT_SYMBOL vmlinux 0x86ea0ec5 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x86fd4d70 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x87003790 fence_init +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x8724566f simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x874f3565 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x875250f0 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x87600654 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x87651ccc netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x876dbe4e scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x876e45ca nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0x87759b6a xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x87857c50 d_walk +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87cfb20b crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x87f902b0 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x88499150 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x884a07e8 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x88550f4a scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x88602f2b d_invalidate +EXPORT_SYMBOL vmlinux 0x88687981 d_move +EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize +EXPORT_SYMBOL vmlinux 0x8870dba6 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x8882dd0d devm_memremap +EXPORT_SYMBOL vmlinux 0x88879639 mutex_unlock +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88bea719 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x88c9c039 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x88f350dc pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x88f358f9 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x88fefe3e blkdev_get +EXPORT_SYMBOL vmlinux 0x890798c9 tegra_dfll_runtime_suspend +EXPORT_SYMBOL vmlinux 0x89253159 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x89389150 tty_port_close +EXPORT_SYMBOL vmlinux 0x894945b0 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x89668521 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x896e57b7 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x8986301d of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x8991c1f4 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x899951a3 blk_queue_split +EXPORT_SYMBOL vmlinux 0x89adbc71 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x89c4c936 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x89c9c358 dquot_commit +EXPORT_SYMBOL vmlinux 0x89cbe3f4 i2c_transfer +EXPORT_SYMBOL vmlinux 0x89cc21d0 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89f2c62d unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x89ff9d1b padata_free +EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock +EXPORT_SYMBOL vmlinux 0x8a0f72a6 inet6_release +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4ca1d7 __scm_send +EXPORT_SYMBOL vmlinux 0x8a4f6bfd snd_timer_pause +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5b38eb tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7f45ba simple_transaction_read +EXPORT_SYMBOL vmlinux 0x8a83fa0b release_firmware +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9a382f __seq_open_private +EXPORT_SYMBOL vmlinux 0x8aa3c838 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x8aa99312 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8aace152 phy_stop +EXPORT_SYMBOL vmlinux 0x8ae097ed mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x8b334232 __napi_schedule +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b5598c0 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x8b5bf531 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b80ffea bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x8b86f8b0 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x8bb216d7 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x8bbf09dd skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x8bd01b19 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x8bf56274 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x8c03569c scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x8c21c906 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x8c23a323 follow_down_one +EXPORT_SYMBOL vmlinux 0x8c3790f6 bdi_register +EXPORT_SYMBOL vmlinux 0x8c547f60 set_disk_ro +EXPORT_SYMBOL vmlinux 0x8c5c525b amba_find_device +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c72648a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x8c929cd6 of_node_get +EXPORT_SYMBOL vmlinux 0x8c945237 down_read +EXPORT_SYMBOL vmlinux 0x8c9514b3 amba_release_regions +EXPORT_SYMBOL vmlinux 0x8ca8dbd7 skb_copy +EXPORT_SYMBOL vmlinux 0x8caaeeec pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x8ccd128d __serio_register_driver +EXPORT_SYMBOL vmlinux 0x8cd6ca62 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8ceaffd7 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8d11123c dev_add_pack +EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace +EXPORT_SYMBOL vmlinux 0x8d1c4c4a mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d6f484d sock_wfree +EXPORT_SYMBOL vmlinux 0x8d6f81b4 __div64_32 +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d7573dd i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x8d7f6d85 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x8d81f75b simple_readpage +EXPORT_SYMBOL vmlinux 0x8d8addf9 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x8da0fe81 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x8da94c5d __kernel_write +EXPORT_SYMBOL vmlinux 0x8db4e64b of_get_min_tck +EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset +EXPORT_SYMBOL vmlinux 0x8debb276 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x8dee4296 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8df2a6d1 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8df50d6f vga_client_register +EXPORT_SYMBOL vmlinux 0x8dfb9762 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x8e3593e8 security_path_chown +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e8043ac fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8ebafc36 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ed43b2a phy_disconnect +EXPORT_SYMBOL vmlinux 0x8ed86ff5 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x8ed9384e of_clk_get +EXPORT_SYMBOL vmlinux 0x8ee1c75f inet_frags_fini +EXPORT_SYMBOL vmlinux 0x8ef16b47 set_bh_page +EXPORT_SYMBOL vmlinux 0x8ef4decc softnet_data +EXPORT_SYMBOL vmlinux 0x8f21ac4d nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x8f24e767 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x8f42fbc5 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x8f46c98d ping_prot +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f7a1f27 skb_unlink +EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x8fc10f92 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8fe2c619 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x8ffba979 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x900ca564 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x900d3afe omapdss_output_set_device +EXPORT_SYMBOL vmlinux 0x90176a05 netdev_emerg +EXPORT_SYMBOL vmlinux 0x902dca06 bio_add_page +EXPORT_SYMBOL vmlinux 0x9038e979 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x904e9f9b devm_clk_put +EXPORT_SYMBOL vmlinux 0x904f861e pci_enable_device +EXPORT_SYMBOL vmlinux 0x9051cf68 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x908bb3c5 bmap +EXPORT_SYMBOL vmlinux 0x90932f49 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x90ae8a5e jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x90c262bb phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x90c583a2 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90c8825f __serio_register_port +EXPORT_SYMBOL vmlinux 0x90f3787d __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x90fca2ef dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x9107bd78 consume_skb +EXPORT_SYMBOL vmlinux 0x911cd8c0 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x911ff5ac netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x91216b38 __sb_end_write +EXPORT_SYMBOL vmlinux 0x913ed475 i2c_release_client +EXPORT_SYMBOL vmlinux 0x914373b4 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91621d6a allocate_resource +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9171e27d tso_count_descs +EXPORT_SYMBOL vmlinux 0x91894abc nf_register_hooks +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x91924ebd remove_arg_zero +EXPORT_SYMBOL vmlinux 0x9197d09c scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x9197d5dc dst_destroy +EXPORT_SYMBOL vmlinux 0x9199e219 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x91b38d54 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x91b82683 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91c23dca arp_send +EXPORT_SYMBOL vmlinux 0x91e7dac9 vme_bus_num +EXPORT_SYMBOL vmlinux 0x91f58c4c nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x92019820 backlight_device_register +EXPORT_SYMBOL vmlinux 0x9207bc0e blk_put_request +EXPORT_SYMBOL vmlinux 0x92207516 pci_select_bars +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923e41a5 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x92425512 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x924ed2d9 mmc_add_host +EXPORT_SYMBOL vmlinux 0x9267c97e __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x9269848f no_llseek +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92adaecc dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x92b17174 snd_ctl_add +EXPORT_SYMBOL vmlinux 0x92be7216 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x92ec5d1b dispc_mgr_enable +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fe76b1 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x93021e41 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930610eb vme_irq_handler +EXPORT_SYMBOL vmlinux 0x9313d495 vme_slave_request +EXPORT_SYMBOL vmlinux 0x931d2838 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x93302a92 km_state_notify +EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9330dbd2 generic_permission +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93825d4c ip_check_defrag +EXPORT_SYMBOL vmlinux 0x93858a68 force_sig +EXPORT_SYMBOL vmlinux 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL vmlinux 0x93a11f24 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c62651 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x93e2a4cd seq_file_path +EXPORT_SYMBOL vmlinux 0x93e2eca0 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x93e96598 cros_ec_check_result +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 0x94288a88 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x9430cdbe max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x944ccbba phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x944f0479 input_set_keycode +EXPORT_SYMBOL vmlinux 0x9451b245 __block_write_begin +EXPORT_SYMBOL vmlinux 0x94675ed5 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit +EXPORT_SYMBOL vmlinux 0x94703207 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x9482cc8c devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x9485a0ff install_exec_creds +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a9051c snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x94b2590f vme_free_consistent +EXPORT_SYMBOL vmlinux 0x94b4eef8 set_binfmt +EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock +EXPORT_SYMBOL vmlinux 0x94d558c4 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x94e09b26 scsi_host_get +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x950ef219 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x950fc029 snd_power_wait +EXPORT_SYMBOL vmlinux 0x951903ca inet_sendmsg +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95461531 led_blink_set +EXPORT_SYMBOL vmlinux 0x955139a4 netdev_warn +EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout +EXPORT_SYMBOL vmlinux 0x956e9f62 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x9583d0e7 contig_page_data +EXPORT_SYMBOL vmlinux 0x958a256c fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x95abd655 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x95ba3c6a skb_pad +EXPORT_SYMBOL vmlinux 0x95c52f33 vfs_create +EXPORT_SYMBOL vmlinux 0x95cd03fb __bforget +EXPORT_SYMBOL vmlinux 0x95ce69d9 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95ebd250 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x95ec8ce1 of_get_next_child +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x9651d911 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x96ba8dad snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d83103 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x96e54c0c devm_release_resource +EXPORT_SYMBOL vmlinux 0x96e822aa uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x96ee96d0 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x96f3230a dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x96ff7b58 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x972337bd bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x97527273 end_page_writeback +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975f2eb5 kill_fasync +EXPORT_SYMBOL vmlinux 0x976e700f down_trylock +EXPORT_SYMBOL vmlinux 0x9793c93a dispc_mgr_setup +EXPORT_SYMBOL vmlinux 0x9797bf09 vfs_mknod +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97afd060 km_is_alive +EXPORT_SYMBOL vmlinux 0x97cc0c0b con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x97d9c931 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x97e5c1b4 import_iovec +EXPORT_SYMBOL vmlinux 0x97e5d319 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x980019f7 key_alloc +EXPORT_SYMBOL vmlinux 0x9809652b scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x980abed3 cdev_add +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x984077cf find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x9849a5cd devm_iounmap +EXPORT_SYMBOL vmlinux 0x98608516 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x98656c1c rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x986e884e disk_stack_limits +EXPORT_SYMBOL vmlinux 0x986f3263 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x987e3968 fb_pan_display +EXPORT_SYMBOL vmlinux 0x988bbc85 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x98a0f491 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x98c4171f kill_pid +EXPORT_SYMBOL vmlinux 0x98d198d9 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x990675da dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99403a70 tcp_poll +EXPORT_SYMBOL vmlinux 0x994e3492 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995a4cee sockfd_lookup +EXPORT_SYMBOL vmlinux 0x9964523c bd_set_size +EXPORT_SYMBOL vmlinux 0x996c4d30 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9988bc0f __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x998bce86 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x998c5094 get_task_io_context +EXPORT_SYMBOL vmlinux 0x9993981f tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x9998aaa1 set_security_override +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a56f46 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d0ff6c dump_skip +EXPORT_SYMBOL vmlinux 0x99daf520 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x9a0438db nf_reinject +EXPORT_SYMBOL vmlinux 0x9a1b3ce7 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a5683ca tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x9a653ab0 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x9a745874 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x9a81aa26 snd_timer_open +EXPORT_SYMBOL vmlinux 0x9a82a87b xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9a9c3d39 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x9a9ecd6c tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9afb2702 __lock_page +EXPORT_SYMBOL vmlinux 0x9b2287cf phy_print_status +EXPORT_SYMBOL vmlinux 0x9b28fcfa unlock_page +EXPORT_SYMBOL vmlinux 0x9b32d0a1 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b350c2f try_module_get +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b46133b down_write +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b9681fd tcp_init_sock +EXPORT_SYMBOL vmlinux 0x9b9b2095 tegra_dfll_unregister +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9b9e8c5f mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bca6c2a save_mount_options +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bf2b859 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x9bf7bb8f blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x9c0663ce address_space_init_once +EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x9c15d4f5 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x9c271085 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x9c30d53c gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x9c52eb3c __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x9c7f0db3 qcom_scm_set_warm_boot_addr +EXPORT_SYMBOL vmlinux 0x9c9ec2a0 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x9ca859cb rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cba3c37 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x9cc379cf page_readlink +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1c194b pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d410a45 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x9d4e2740 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d8343de eth_gro_receive +EXPORT_SYMBOL vmlinux 0x9d934f44 dev_trans_start +EXPORT_SYMBOL vmlinux 0x9dc4849b blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x9de1c171 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x9de2afe8 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x9de489c6 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9dfe9cb9 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x9e06ecf2 register_sound_special_device +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e138e82 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x9e2bf8c8 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x9e43e2fa read_dev_sector +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5c2686 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e748a32 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e975275 set_user_nice +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea351f4 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x9ed87527 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9ee9d3b7 elevator_exit +EXPORT_SYMBOL vmlinux 0x9f2e6062 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4fbefd input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x9f5b312b neigh_direct_output +EXPORT_SYMBOL vmlinux 0x9f823cea dispc_mgr_is_enabled +EXPORT_SYMBOL vmlinux 0x9f9541f3 send_sig +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fa3921a __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x9fb47e6c nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x9fc6e92f snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x9fcd74ae netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x9fd425f0 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fec7ed2 omap_dss_get_device +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0044066 kset_register +EXPORT_SYMBOL vmlinux 0xa005ff9e netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xa00eb15b ioremap_page +EXPORT_SYMBOL vmlinux 0xa032af39 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xa033f9c3 dquot_acquire +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 0xa0899230 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xa09566fc snd_card_disconnect +EXPORT_SYMBOL vmlinux 0xa09943b8 skb_make_writable +EXPORT_SYMBOL vmlinux 0xa0aae687 imx_ssi_fiq_end +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d6a689 kmap_to_page +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 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL vmlinux 0xa108b7b0 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1158ce3 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xa1173fbb pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1344108 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa160e52c devm_memunmap +EXPORT_SYMBOL vmlinux 0xa176d0a6 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xa1775e34 tty_set_operations +EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each +EXPORT_SYMBOL vmlinux 0xa1a5786f locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xa1b144e7 pps_register_source +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1b7d531 kfree_skb +EXPORT_SYMBOL vmlinux 0xa1c0c1dd param_set_byte +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cc7681 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e7e522 dev_get_flags +EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2582aa6 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0xa2615932 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xa271e015 bprm_change_interp +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2974890 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xa29a0701 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xa29dbae9 inet_accept +EXPORT_SYMBOL vmlinux 0xa2a12854 clkdev_drop +EXPORT_SYMBOL vmlinux 0xa2a78b1d skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xa2b872b8 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xa2c41920 get_io_context +EXPORT_SYMBOL vmlinux 0xa2cd2976 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xa2e746da blk_run_queue +EXPORT_SYMBOL vmlinux 0xa2fbe025 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xa314e588 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa31b846f xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa31f8f8b mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xa3235138 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xa32b3156 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xa3368d8e scsi_remove_target +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa34ea2c4 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xa35444e4 dispc_write_irqenable +EXPORT_SYMBOL vmlinux 0xa3645d18 fb_blank +EXPORT_SYMBOL vmlinux 0xa371f975 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xa372e120 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xa37657c3 param_get_byte +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa386a4fa devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback +EXPORT_SYMBOL vmlinux 0xa39b8b20 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xa3a551f8 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0xa3b69db7 backlight_force_update +EXPORT_SYMBOL vmlinux 0xa3e38861 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xa3f6753f tcp_connect +EXPORT_SYMBOL vmlinux 0xa409461b snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0xa4136143 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xa413cf57 amba_driver_register +EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xa4152782 netif_rx +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa4550fbf sock_no_connect +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa46406a3 clkdev_alloc +EXPORT_SYMBOL vmlinux 0xa46453c6 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xa46b6cf9 nvm_register_target +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa4830a0a skb_push +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa49781e2 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xa49efc57 blk_end_request +EXPORT_SYMBOL vmlinux 0xa4a68a45 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4c525e1 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xa545cc23 dcache_readdir +EXPORT_SYMBOL vmlinux 0xa55178d9 devm_free_irq +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5766328 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last +EXPORT_SYMBOL vmlinux 0xa5c4104c blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xa5cee8cd cap_mmap_file +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa5cf5f51 d_tmpfile +EXPORT_SYMBOL vmlinux 0xa5d3a759 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xa5e24e7c sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xa5ee3a4b inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa64462a9 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xa64888ee security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xa655724d dev_get_stats +EXPORT_SYMBOL vmlinux 0xa66959f6 nand_bch_init +EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67b53b3 genphy_update_link +EXPORT_SYMBOL vmlinux 0xa67e6a22 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xa67f5401 sock_no_poll +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68e0f79 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats +EXPORT_SYMBOL vmlinux 0xa6c795bb scsi_print_sense +EXPORT_SYMBOL vmlinux 0xa6cc34b3 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xa6d06084 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0xa6da3247 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xa6ece377 setup_new_exec +EXPORT_SYMBOL vmlinux 0xa6f73d7e dma_supported +EXPORT_SYMBOL vmlinux 0xa6fd21a6 neigh_lookup +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa71ff6f4 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa740e6e1 single_release +EXPORT_SYMBOL vmlinux 0xa766ec0d kernel_accept +EXPORT_SYMBOL vmlinux 0xa76c1d8d sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del +EXPORT_SYMBOL vmlinux 0xa78073d4 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xa78a3ada xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xa7a5ccc3 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xa7ba471b scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xa7ceb3f4 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xa7d19c90 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xa7d4ad8a mmc_request_done +EXPORT_SYMBOL vmlinux 0xa7d54ec3 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xa7df6080 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xa7f33c8d buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xa8005fff init_task +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8567a88 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8811001 dss_mgr_connect +EXPORT_SYMBOL vmlinux 0xa89c7e82 file_update_time +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8be0168 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xa8cc8578 bio_endio +EXPORT_SYMBOL vmlinux 0xa8d2d53a bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xa8d483b7 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa908a3ae __break_lease +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa91a953a netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa9658cd3 kobject_add +EXPORT_SYMBOL vmlinux 0xa96702aa block_invalidatepage +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa978a0f8 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xa98f9305 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xa991cd74 thaw_bdev +EXPORT_SYMBOL vmlinux 0xa9acd49b blk_init_queue +EXPORT_SYMBOL vmlinux 0xa9af8c3b __frontswap_store +EXPORT_SYMBOL vmlinux 0xa9b064b1 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cd181d xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xa9d03f29 snd_pcm_lib_write +EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xa9e1c965 blk_finish_request +EXPORT_SYMBOL vmlinux 0xa9f9d684 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xaa0c10dd find_vma +EXPORT_SYMBOL vmlinux 0xaa2d6304 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xaa2edcc9 _dev_info +EXPORT_SYMBOL vmlinux 0xaa32d6af pci_save_state +EXPORT_SYMBOL vmlinux 0xaa3f1650 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0xaa4c5d85 lease_modify +EXPORT_SYMBOL vmlinux 0xaa5107ff xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa785d30 snd_pcm_notify +EXPORT_SYMBOL vmlinux 0xaa819935 vme_irq_free +EXPORT_SYMBOL vmlinux 0xaa918ff2 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xaa96e671 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xaaa0fb97 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xaaa875da of_get_pci_address +EXPORT_SYMBOL vmlinux 0xaab4a171 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xaabadf91 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad675db unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad6e3b0 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xaad72211 copy_from_iter +EXPORT_SYMBOL vmlinux 0xaad9e645 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xaae2e8d1 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0xaaefcbd7 proc_set_user +EXPORT_SYMBOL vmlinux 0xaaf34715 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0027c4 mntput +EXPORT_SYMBOL vmlinux 0xab35e9a5 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xab37d47f skb_free_datagram +EXPORT_SYMBOL vmlinux 0xab4ab3b1 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xab4e9a69 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab753113 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL vmlinux 0xab7603e7 imx_ssi_fiq_start +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xaba677d7 scsi_print_result +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabce2571 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xabce3d19 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xabe86f97 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac032eb0 submit_bh +EXPORT_SYMBOL vmlinux 0xac08bafc __inet_hash +EXPORT_SYMBOL vmlinux 0xac09210e cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0d5187 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac2a3852 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xac2a4bda blk_fetch_request +EXPORT_SYMBOL vmlinux 0xac390091 dev_base_lock +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL vmlinux 0xac48ac97 tegra_powergate_remove_clamping +EXPORT_SYMBOL vmlinux 0xac52d5db kernel_listen +EXPORT_SYMBOL vmlinux 0xac732756 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xac785d49 make_bad_inode +EXPORT_SYMBOL vmlinux 0xac8119c4 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xac95d1d5 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xac995e75 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xac9e0283 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0xacaaf337 mount_bdev +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb71ea6 param_get_ullong +EXPORT_SYMBOL vmlinux 0xacc5e0e8 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd30c07 del_gendisk +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacdd435d do_SAK +EXPORT_SYMBOL vmlinux 0xace38483 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0e7488 rfkill_alloc +EXPORT_SYMBOL vmlinux 0xad1bbd58 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xad561f1e abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xad66059a dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0xad6712a1 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xad6b6f68 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad93c82d inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xad952892 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xad9e473e scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xad9ea209 file_path +EXPORT_SYMBOL vmlinux 0xada7bd6a security_inode_init_security +EXPORT_SYMBOL vmlinux 0xada7cfac snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0xadc4af2a of_phy_connect +EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xadf8dff5 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae06ee3a pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xae080dbd skb_ensure_writable +EXPORT_SYMBOL vmlinux 0xae12e2d1 pci_choose_state +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xaea6db83 scsi_init_io +EXPORT_SYMBOL vmlinux 0xaebc603c xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaecae22d locks_remove_posix +EXPORT_SYMBOL vmlinux 0xaef25a1a sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xaf2504ed snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf40fa96 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xaf4fa44f pci_request_regions +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xaf937a1a uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xafbf1ca4 elv_rb_del +EXPORT_SYMBOL vmlinux 0xafee3c9b vga_put +EXPORT_SYMBOL vmlinux 0xaffacaf4 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xb00d6d42 inode_init_always +EXPORT_SYMBOL vmlinux 0xb0226353 nand_scan_ident +EXPORT_SYMBOL vmlinux 0xb02368a1 register_md_cluster_operations +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 0xb07a7a56 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb0867633 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a149c6 kfree_put_link +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c210ee dst_release +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e23995 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0xb0fb5852 do_map_probe +EXPORT_SYMBOL vmlinux 0xb1055636 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xb10e2658 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb10edba6 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb128799b nand_lock +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb12d7a1d pci_assign_resource +EXPORT_SYMBOL vmlinux 0xb13096a2 mpage_writepages +EXPORT_SYMBOL vmlinux 0xb13fc2ee sock_wake_async +EXPORT_SYMBOL vmlinux 0xb15980cf of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1be5a8f param_get_int +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 0xb1de015b bdput +EXPORT_SYMBOL vmlinux 0xb1e837f6 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xb207960c complete_request_key +EXPORT_SYMBOL vmlinux 0xb209f739 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xb2121a3f __kfree_skb +EXPORT_SYMBOL vmlinux 0xb24a859f set_posix_acl +EXPORT_SYMBOL vmlinux 0xb24b37ae pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xb26515f8 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xb2679cba alloc_file +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2951b1f blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c80a0c filemap_map_pages +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2db4070 snd_timer_stop +EXPORT_SYMBOL vmlinux 0xb2dbeeb5 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb30e2f44 ac97_bus_type +EXPORT_SYMBOL vmlinux 0xb31a59a2 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb333d683 __neigh_create +EXPORT_SYMBOL vmlinux 0xb337bab2 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xb3587da9 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xb35dfb06 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xb35e81df tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xb36049b6 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xb367c984 mxc_set_irq_fiq +EXPORT_SYMBOL vmlinux 0xb367d6af from_kgid +EXPORT_SYMBOL vmlinux 0xb3697297 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xb36ce71d serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xb374733f netif_rx_ni +EXPORT_SYMBOL vmlinux 0xb37ef556 put_page +EXPORT_SYMBOL vmlinux 0xb37fe769 set_wb_congested +EXPORT_SYMBOL vmlinux 0xb3861869 simple_release_fs +EXPORT_SYMBOL vmlinux 0xb3a714d2 get_empty_filp +EXPORT_SYMBOL vmlinux 0xb3b57710 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xb3cc0571 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3dbf304 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xb3f3c0b4 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb41a5a37 dquot_initialize +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4380f4f simple_rename +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb43a7d1d __lock_buffer +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45c6617 mpage_readpage +EXPORT_SYMBOL vmlinux 0xb46c6d95 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4784de7 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xb49818f5 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xb4a72f5d tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xb4b11744 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xb4b18f31 seq_read +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4c42c34 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xb4ca3697 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xb4ce8259 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xb4de7471 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb54f761c default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xb568667a phy_init_eee +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb596531e generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a88ba3 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0xb5c55420 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5cee802 snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0xb5d7ecca insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5e548be gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xb618472d csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xb65e8cd8 unregister_nls +EXPORT_SYMBOL vmlinux 0xb66d4bc8 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xb675c645 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67e2d58 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xb6880f8b udp_sendmsg +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a74dc2 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xb6b844fa mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xb6b8cb5b skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xb6beceb4 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xb6bfaede vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xb6c3a6c4 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb6ea5b91 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xb6f78efb gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xb6faf9a4 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xb6fdfe25 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xb70233f3 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xb707f0cb scm_fp_dup +EXPORT_SYMBOL vmlinux 0xb70bd8a4 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xb72d4b1c pci_set_mwi +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb753ae20 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7823e2f dispc_ovl_setup +EXPORT_SYMBOL vmlinux 0xb7980498 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xb79e412f snd_timer_close +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a38023 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xb7a50943 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7e3a1b3 pci_disable_device +EXPORT_SYMBOL vmlinux 0xb7f1f158 dquot_enable +EXPORT_SYMBOL vmlinux 0xb8054501 key_validate +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb84fb41d pci_bus_get +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87abf6f sk_stream_error +EXPORT_SYMBOL vmlinux 0xb87ac748 vme_slot_num +EXPORT_SYMBOL vmlinux 0xb8a3f9c7 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xb8a64a77 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb8c1419e blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xb8e39d8c inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xb8e3acde elevator_init +EXPORT_SYMBOL vmlinux 0xb8e497ba sk_dst_check +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8e88306 dup_iter +EXPORT_SYMBOL vmlinux 0xb91a9eb2 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xb91b8792 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xb921a131 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xb921d42f snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0xb9393a98 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xb953a11c kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xb95a6c25 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb98cb449 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xb990a483 nf_afinfo +EXPORT_SYMBOL vmlinux 0xb999f28b vme_irq_request +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9d99e6c nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0xb9dce151 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xb9ddd475 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9efb4c7 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xba00ebb8 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xba15a002 padata_alloc +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4ae097 enable_fiq +EXPORT_SYMBOL vmlinux 0xba56c58f pcie_get_mps +EXPORT_SYMBOL vmlinux 0xba5d6444 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xba5e1804 omap_dss_get_overlay +EXPORT_SYMBOL vmlinux 0xba7d870a __mxc_cpu_type +EXPORT_SYMBOL vmlinux 0xba89d2dd keyring_search +EXPORT_SYMBOL vmlinux 0xba952b95 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xba9db692 empty_aops +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbaf7e682 get_tz_trend +EXPORT_SYMBOL vmlinux 0xbafacb22 snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0ef9c6 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xbb1830fd mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3b1c18 ps2_handle_response +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 0xbb7a98be pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xbb7b0aaf key_put +EXPORT_SYMBOL vmlinux 0xbb80c652 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xbb8dd5ac tegra_io_rail_power_on +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9a3eaa serio_close +EXPORT_SYMBOL vmlinux 0xbbabc639 con_is_bound +EXPORT_SYMBOL vmlinux 0xbc02ee7e kmalloc_caches +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc1b768f dm_io +EXPORT_SYMBOL vmlinux 0xbc256621 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xbc6329b0 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbc673e62 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xbc6c6c8f input_grab_device +EXPORT_SYMBOL vmlinux 0xbc7cb877 nvm_register +EXPORT_SYMBOL vmlinux 0xbc831ec5 key_invalidate +EXPORT_SYMBOL vmlinux 0xbc96d97f snd_pcm_suspend +EXPORT_SYMBOL vmlinux 0xbca2e7ab _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0xbca30d0c search_binary_handler +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbccde2f8 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xbcebf879 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xbcf4fd97 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xbd0c6a2b iget_failed +EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xbd1a16e5 mount_single +EXPORT_SYMBOL vmlinux 0xbd26bc4f eth_type_trans +EXPORT_SYMBOL vmlinux 0xbd36aac3 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xbd3736b5 md_write_start +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd958be3 vme_register_driver +EXPORT_SYMBOL vmlinux 0xbda1d65e sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xbdabc256 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xbdd564ef snd_soc_alloc_ac97_codec +EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat +EXPORT_SYMBOL vmlinux 0xbdfe8882 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xbe078cfe security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe135794 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xbe13a641 __skb_checksum +EXPORT_SYMBOL vmlinux 0xbe14e015 pipe_unlock +EXPORT_SYMBOL vmlinux 0xbe16e506 kthread_bind +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe21c6d3 ps2_drain +EXPORT_SYMBOL vmlinux 0xbe21f6ff devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xbe255ebf tty_devnum +EXPORT_SYMBOL vmlinux 0xbe37fc64 rtnl_notify +EXPORT_SYMBOL vmlinux 0xbe388ed7 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xbe3c4f85 notify_change +EXPORT_SYMBOL vmlinux 0xbe3c9686 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xbe4454f1 d_set_d_op +EXPORT_SYMBOL vmlinux 0xbe4e9d14 blk_requeue_request +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 0xbea4c168 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xbeba59fa __vfs_write +EXPORT_SYMBOL vmlinux 0xbed18935 param_set_uint +EXPORT_SYMBOL vmlinux 0xbed86e06 locks_free_lock +EXPORT_SYMBOL vmlinux 0xbee14d77 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbeeb5d76 register_sound_special +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef6fcf9 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xbf5cf20d ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xbf5dfd81 neigh_for_each +EXPORT_SYMBOL vmlinux 0xbf646cb4 blk_queue_resize_tags +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 0xbf8c67d0 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb1687f security_path_chmod +EXPORT_SYMBOL vmlinux 0xbfcbc0d2 stmp_reset_block +EXPORT_SYMBOL vmlinux 0xbfd011de fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xbfdb021d twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xbfea8363 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbfee5c1e neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xc002709a dquot_disable +EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xc00675eb netif_skb_features +EXPORT_SYMBOL vmlinux 0xc014c537 omapdss_register_display +EXPORT_SYMBOL vmlinux 0xc034a841 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xc044d1ce udp_set_csum +EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xc0642e1c phy_find_first +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc078706e pci_platform_rom +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0986472 blk_rq_init +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0b34298 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xc0cf3b64 ether_setup +EXPORT_SYMBOL vmlinux 0xc0cf95f9 omap_vrfb_request_ctx +EXPORT_SYMBOL vmlinux 0xc0d45b4d udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xc0ef7767 netif_device_detach +EXPORT_SYMBOL vmlinux 0xc10256d9 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xc10bde87 __sock_create +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc1249e64 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xc12f5baf netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xc136809e dev_alert +EXPORT_SYMBOL vmlinux 0xc15eba4f pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xc1611717 keyring_alloc +EXPORT_SYMBOL vmlinux 0xc182575e kernel_param_lock +EXPORT_SYMBOL vmlinux 0xc1b12649 revert_creds +EXPORT_SYMBOL vmlinux 0xc1d6f50c input_unregister_handle +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e534ec fd_install +EXPORT_SYMBOL vmlinux 0xc1e80b21 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc208080f inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xc211ab04 param_ops_int +EXPORT_SYMBOL vmlinux 0xc223fc18 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xc2467335 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xc24c0be9 seq_printf +EXPORT_SYMBOL vmlinux 0xc263d787 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xc2701f61 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xc2a30337 param_get_string +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2c2eef9 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xc2c48a9f __inode_permission +EXPORT_SYMBOL vmlinux 0xc2d00721 bio_copy_data +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2dbebd4 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xc2dd8056 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0xc2e43363 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc308d9d2 __netif_schedule +EXPORT_SYMBOL vmlinux 0xc310b90d xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xc316baab in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xc31753c3 tegra_powergate_power_off +EXPORT_SYMBOL vmlinux 0xc31c48c5 tcp_close +EXPORT_SYMBOL vmlinux 0xc3446d57 skb_trim +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc35f7478 param_set_ushort +EXPORT_SYMBOL vmlinux 0xc37cff67 tty_register_driver +EXPORT_SYMBOL vmlinux 0xc37f331e edma_filter_fn +EXPORT_SYMBOL vmlinux 0xc3b06725 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xc3b1c57a page_address +EXPORT_SYMBOL vmlinux 0xc3b59940 get_disk +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3ccd987 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xc4009ab1 sock_from_file +EXPORT_SYMBOL vmlinux 0xc4108880 snd_pcm_new +EXPORT_SYMBOL vmlinux 0xc415928b kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc43515e1 generic_make_request +EXPORT_SYMBOL vmlinux 0xc45b5ce9 md_write_end +EXPORT_SYMBOL vmlinux 0xc4624690 phy_attach +EXPORT_SYMBOL vmlinux 0xc4830bc0 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xc4984952 shdma_request_irq +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49c9120 amba_device_unregister +EXPORT_SYMBOL vmlinux 0xc4c010f5 security_path_link +EXPORT_SYMBOL vmlinux 0xc4dec05e twl6040_power +EXPORT_SYMBOL vmlinux 0xc4f4b0ec input_unregister_device +EXPORT_SYMBOL vmlinux 0xc4f4d5bc filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xc4f55711 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xc504661b of_device_is_available +EXPORT_SYMBOL vmlinux 0xc50d4fa2 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xc51b108b pci_set_master +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc5518376 udp_poll +EXPORT_SYMBOL vmlinux 0xc551a9f9 cdrom_open +EXPORT_SYMBOL vmlinux 0xc551fff2 d_add_ci +EXPORT_SYMBOL vmlinux 0xc566a165 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xc567afba mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xc5696ad5 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc56f216a ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5ba5445 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xc5f28fdc cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc609fac4 param_get_short +EXPORT_SYMBOL vmlinux 0xc612838a dquot_free_inode +EXPORT_SYMBOL vmlinux 0xc629d3f5 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63f47a1 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xc6442597 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xc6485997 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xc64e7390 msm_pinctrl_remove +EXPORT_SYMBOL vmlinux 0xc65537d0 memremap +EXPORT_SYMBOL vmlinux 0xc65d4345 input_event +EXPORT_SYMBOL vmlinux 0xc65edc46 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove +EXPORT_SYMBOL vmlinux 0xc68abcbc bio_chain +EXPORT_SYMBOL vmlinux 0xc69ab0dc pcim_iounmap +EXPORT_SYMBOL vmlinux 0xc6a4802f qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xc6b3ab77 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6dbf31a i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xc6dd03bf dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xc6eea548 vme_bus_type +EXPORT_SYMBOL vmlinux 0xc71000dd dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72cbaa2 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7753462 simple_empty +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +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 0xc7a73ca4 pci_get_class +EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue +EXPORT_SYMBOL vmlinux 0xc7d44866 d_rehash +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f321ae unregister_console +EXPORT_SYMBOL vmlinux 0xc7fb0b47 generic_removexattr +EXPORT_SYMBOL vmlinux 0xc829eaa5 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc845de80 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc858b4d6 phy_start +EXPORT_SYMBOL vmlinux 0xc860d58c read_cache_page +EXPORT_SYMBOL vmlinux 0xc87148c0 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xc8717374 kunmap_high +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc873ba0d pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc895732a arp_tbl +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8abf67f seq_write +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8d52ddb __blk_end_request +EXPORT_SYMBOL vmlinux 0xc8fc2f36 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xc906c6ef mount_subtree +EXPORT_SYMBOL vmlinux 0xc9112547 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc915e358 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xc9160deb scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xc926e2bc pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xc95297f3 tty_write_room +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc97062da input_allocate_device +EXPORT_SYMBOL vmlinux 0xc9811da3 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc9953693 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xc9b930e6 ata_dev_printk +EXPORT_SYMBOL vmlinux 0xc9b99371 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xc9c37d8d param_get_bool +EXPORT_SYMBOL vmlinux 0xc9fedc4a tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xca05f478 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca199f0f blk_put_queue +EXPORT_SYMBOL vmlinux 0xca1a549e jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca5e11e4 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xca61d187 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xca6e9d0a sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xca902464 __i2c_transfer +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa75c89 snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0xcaad1482 inode_init_once +EXPORT_SYMBOL vmlinux 0xcabaa8ec blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcafbbfaa mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb05b6b2 __frontswap_load +EXPORT_SYMBOL vmlinux 0xcb2b9dc6 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xcb47f7bd iterate_mounts +EXPORT_SYMBOL vmlinux 0xcb61eb0d scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xcb6a2283 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xcb8a0a07 inet_add_offload +EXPORT_SYMBOL vmlinux 0xcb93945e blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xcba2ada9 param_ops_bint +EXPORT_SYMBOL vmlinux 0xcbaf7b50 tso_build_data +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc6e837 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbc9d39f jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xcbce0e90 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcbfa7ea4 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xcbfc50b2 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xcbfc89b8 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc6ce5ad filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xcc95303c fddi_type_trans +EXPORT_SYMBOL vmlinux 0xcc9b1caa udplite_prot +EXPORT_SYMBOL vmlinux 0xcc9ba3e8 wireless_send_event +EXPORT_SYMBOL vmlinux 0xccb200a0 kernel_connect +EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get +EXPORT_SYMBOL vmlinux 0xccb6a54d lock_sock_fast +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcce57e2f mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd02bcb0 genphy_resume +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd101382 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2eed9f __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd4b0b50 simple_dname +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd6c1cd3 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xcd72bb4f fb_show_logo +EXPORT_SYMBOL vmlinux 0xcd8e5488 submit_bio +EXPORT_SYMBOL vmlinux 0xcda21cc9 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xcda5bf7f wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xcdaf2546 ip6_xmit +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get +EXPORT_SYMBOL vmlinux 0xcdc93028 qdisc_destroy +EXPORT_SYMBOL vmlinux 0xcde84683 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xcdf23c48 __get_page_tail +EXPORT_SYMBOL vmlinux 0xcdf68c20 register_cdrom +EXPORT_SYMBOL vmlinux 0xcdfd6044 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xce044e2c in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xce064b94 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xce100e30 snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0xce1e3b73 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce29f912 dump_truncate +EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce4ba3e1 genl_notify +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +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 0xcf169fea kset_unregister +EXPORT_SYMBOL vmlinux 0xcf1f32e8 iov_iter_init +EXPORT_SYMBOL vmlinux 0xcf20227a dput +EXPORT_SYMBOL vmlinux 0xcf3c7a16 bdget +EXPORT_SYMBOL vmlinux 0xcf579104 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xcf65fea9 nf_log_trace +EXPORT_SYMBOL vmlinux 0xcf6e013b ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xcf7198c2 of_device_alloc +EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node +EXPORT_SYMBOL vmlinux 0xcfe530d2 netpoll_setup +EXPORT_SYMBOL vmlinux 0xcff66c4c dump_emit +EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xd00d2c61 do_splice_to +EXPORT_SYMBOL vmlinux 0xd01a2ae4 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xd02e053b mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return +EXPORT_SYMBOL vmlinux 0xd0599420 param_set_long +EXPORT_SYMBOL vmlinux 0xd05f86ac vm_map_ram +EXPORT_SYMBOL vmlinux 0xd06ef52a jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08f84bd pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a3304e ppp_unit_number +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b75267 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xd0e2247a led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f58272 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fd174e iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xd0fed3dc xfrm_policy_walk +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 0xd148c40c tcp_prot +EXPORT_SYMBOL vmlinux 0xd14c669b __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd14e25d7 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xd16bf71a udp_del_offload +EXPORT_SYMBOL vmlinux 0xd171cfed lookup_bdev +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd19d2aeb register_netdev +EXPORT_SYMBOL vmlinux 0xd1a10dad param_ops_short +EXPORT_SYMBOL vmlinux 0xd1b2ec50 scsi_set_medium_removal +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 0xd1fa408b filp_open +EXPORT_SYMBOL vmlinux 0xd210c545 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xd22a05f0 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xd22f241c scsi_print_command +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 0xd2631d9c tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xd2711d0f scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xd27522bf thermal_cdev_update +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2a456af vme_lm_request +EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2afb9bb __brelse +EXPORT_SYMBOL vmlinux 0xd2b6c97c generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xd2b7212e simple_setattr +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e1e210 security_path_unlink +EXPORT_SYMBOL vmlinux 0xd2e2dad9 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xd2e6a71f nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xd2ef9130 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xd2f0a472 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xd2f1e196 mntget +EXPORT_SYMBOL vmlinux 0xd3168866 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xd31bb77b sock_release +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3225ef7 shdma_chan_remove +EXPORT_SYMBOL vmlinux 0xd331164c of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xd33d5697 page_symlink +EXPORT_SYMBOL vmlinux 0xd3470817 uart_match_port +EXPORT_SYMBOL vmlinux 0xd35fa8ae twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xd3725d23 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xd397263b sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3cf24b7 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xd3d8a512 da903x_query_status +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd44d92f3 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xd458a2a6 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xd4669fad complete +EXPORT_SYMBOL vmlinux 0xd4688432 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xd481d22b ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xd4832053 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xd4ab4a01 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xd4b3b64c dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xd4d7459a pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xd4d77524 genlmsg_put +EXPORT_SYMBOL vmlinux 0xd5021e5a twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xd5022b98 omap_dss_find_output_by_port_node +EXPORT_SYMBOL vmlinux 0xd503c897 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xd53f6611 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd5746674 km_query +EXPORT_SYMBOL vmlinux 0xd5819716 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xd585bf38 tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5b3f5da padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xd5dd9294 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xd5e67d5f __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd6049197 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xd61347c6 register_sysctl +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd61a552d ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xd625ba74 have_submounts +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63099dc pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xd632628b deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xd636477c tcf_register_action +EXPORT_SYMBOL vmlinux 0xd646e0ee tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd6558684 amba_device_register +EXPORT_SYMBOL vmlinux 0xd663c251 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xd678a879 key_link +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd69ec78d crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xd6a55d0b sock_sendmsg +EXPORT_SYMBOL vmlinux 0xd6cd07ec sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xd6d2b428 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xd6d9deb8 kmap_high +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f92cc3 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xd6ffb38c inet_getname +EXPORT_SYMBOL vmlinux 0xd717bd42 devm_gpio_free +EXPORT_SYMBOL vmlinux 0xd7342b50 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xd734e8d2 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xd73d73c6 request_key_async +EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xd7434af2 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xd745c451 write_one_page +EXPORT_SYMBOL vmlinux 0xd74a2709 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xd74b4005 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xd75b11fb iov_iter_npages +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd7680fab xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xd78a7bb2 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xd78e00df adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd799ce87 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xd7a37b46 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd82a2545 module_layout +EXPORT_SYMBOL vmlinux 0xd833fbca dentry_open +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up +EXPORT_SYMBOL vmlinux 0xd868af3a bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b43afa pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8ef7e79 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xd8f09fdd prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xd9069e52 dev_set_group +EXPORT_SYMBOL vmlinux 0xd9325212 dst_init +EXPORT_SYMBOL vmlinux 0xd937a34f inc_nlink +EXPORT_SYMBOL vmlinux 0xd93bfeb4 seq_vprintf +EXPORT_SYMBOL vmlinux 0xd93d2458 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xd95581c4 nand_scan +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd96bc61d __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xd9748a27 snd_timer_continue +EXPORT_SYMBOL vmlinux 0xd974d167 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd987f74f md_unregister_thread +EXPORT_SYMBOL vmlinux 0xd9b7919e dev_alloc_name +EXPORT_SYMBOL vmlinux 0xd9be72c9 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xd9ca90b0 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d3ff80 param_ops_byte +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e0dadb tcp_parse_options +EXPORT_SYMBOL vmlinux 0xda0ea9da netif_receive_skb +EXPORT_SYMBOL vmlinux 0xda1fac11 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xda2ebf3f blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xda3c32c8 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda68fbbc input_flush_device +EXPORT_SYMBOL vmlinux 0xda716279 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda88aa6b netdev_alert +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8e53f9 proc_create_data +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaae6cae bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xdac3cdb5 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdad01a72 poll_freewait +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdaecb97f pci_dev_put +EXPORT_SYMBOL vmlinux 0xdaed81ee phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xdaf36f54 bio_put +EXPORT_SYMBOL vmlinux 0xdb005dc6 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb505ffc jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xdb54dfde tty_register_device +EXPORT_SYMBOL vmlinux 0xdb61a228 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6bf7e0 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xdb70a808 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xdb72294d inode_needs_sync +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb84400f nf_setsockopt +EXPORT_SYMBOL vmlinux 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL vmlinux 0xdba42ab1 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xdbb8bc57 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xdbcd3f4d bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xdbd8fbfd cdev_alloc +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc12ad85 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xdc13b49c dev_notice +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc45a880 pci_find_bus +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5c6297 videomode_to_omap_video_timings +EXPORT_SYMBOL vmlinux 0xdc7d5786 sock_i_ino +EXPORT_SYMBOL vmlinux 0xdc8e109b vme_register_bridge +EXPORT_SYMBOL vmlinux 0xdc8f39b7 init_net +EXPORT_SYMBOL vmlinux 0xdc942659 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xdc987baf proto_register +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcd32486 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xdcd55295 sock_create_lite +EXPORT_SYMBOL vmlinux 0xdcdcf0e2 seq_dentry +EXPORT_SYMBOL vmlinux 0xdd03cc9e dquot_resume +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xdd48c24e vfs_statfs +EXPORT_SYMBOL vmlinux 0xdd4a3b6a nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xdd5f7bb8 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xdd70966b elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xdd8636d2 napi_disable +EXPORT_SYMBOL vmlinux 0xdd873e05 lock_fb_info +EXPORT_SYMBOL vmlinux 0xdd8c8319 bdi_init +EXPORT_SYMBOL vmlinux 0xdd9a29b7 ata_print_version +EXPORT_SYMBOL vmlinux 0xdda34ab8 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xdddd4b2f unregister_quota_format +EXPORT_SYMBOL vmlinux 0xde014dee generic_getxattr +EXPORT_SYMBOL vmlinux 0xde0cd657 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xde427be8 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xde50753f sync_blockdev +EXPORT_SYMBOL vmlinux 0xde548039 of_device_register +EXPORT_SYMBOL vmlinux 0xde549abe xfrm_state_update +EXPORT_SYMBOL vmlinux 0xde7e9b76 inet_ioctl +EXPORT_SYMBOL vmlinux 0xde85b64e pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xde8af6fe crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user +EXPORT_SYMBOL vmlinux 0xdee75ee3 nf_log_packet +EXPORT_SYMBOL vmlinux 0xdef12c3c __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xdf0ad8b9 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xdf1aebf2 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xdf2b2d12 lookup_one_len +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 0xdf46bfd3 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xdf4772f7 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf61fd6f __frontswap_test +EXPORT_SYMBOL vmlinux 0xdf6eaf05 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xdf8ad05c path_is_under +EXPORT_SYMBOL vmlinux 0xdf8e601d md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfa6cf85 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xdfba581e __page_symlink +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe007fdb7 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xe00e2a46 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xe0284810 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xe032727a get_fs_type +EXPORT_SYMBOL vmlinux 0xe0390637 dquot_transfer +EXPORT_SYMBOL vmlinux 0xe039993c pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xe04c978d dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0694b63 sock_create_kern +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe078bdcf ip_ct_attach +EXPORT_SYMBOL vmlinux 0xe0810be1 tegra_ahb_enable_smmu +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next +EXPORT_SYMBOL vmlinux 0xe09629b9 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe0abbf4f param_ops_invbool +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b81ced current_fs_time +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c33f00 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xe0e97598 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe0f0f415 dev_load +EXPORT_SYMBOL vmlinux 0xe0f4bf5a set_create_files_as +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable +EXPORT_SYMBOL vmlinux 0xe12a53d6 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xe12db3bd sk_receive_skb +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe154ccc1 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xe161b406 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe18a438d sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xe19fa376 pci_release_regions +EXPORT_SYMBOL vmlinux 0xe1afe263 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xe1b1bf0b pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xe1b827d1 devm_ioremap +EXPORT_SYMBOL vmlinux 0xe1bf6ef1 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xe1c24ec9 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xe1d340a0 key_type_keyring +EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe1fc3077 kernel_bind +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe210e979 key_revoke +EXPORT_SYMBOL vmlinux 0xe2227ae8 pci_get_device +EXPORT_SYMBOL vmlinux 0xe22a5d1d mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe23ab6f5 mmc_release_host +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe2411e8e md_finish_reshape +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259ce0e of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xe279637f vc_cons +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e44472 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f83fbd md_cluster_mod +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe308a5ff tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe330d118 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xe3496c5f devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xe35a31e8 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr +EXPORT_SYMBOL vmlinux 0xe3880c1c dev_printk_emit +EXPORT_SYMBOL vmlinux 0xe3a067dc input_register_device +EXPORT_SYMBOL vmlinux 0xe3b0e08a update_devfreq +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3cef260 vm_insert_page +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e78d78 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xe3f556a6 bdi_destroy +EXPORT_SYMBOL vmlinux 0xe413be4a memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xe422f6f5 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec +EXPORT_SYMBOL vmlinux 0xe4437139 snd_pcm_limit_hw_rates +EXPORT_SYMBOL vmlinux 0xe465ad20 mmc_put_card +EXPORT_SYMBOL vmlinux 0xe468a345 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xe46c3e45 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xe4773408 sock_create +EXPORT_SYMBOL vmlinux 0xe48410ea simple_statfs +EXPORT_SYMBOL vmlinux 0xe487d49c kmap_atomic +EXPORT_SYMBOL vmlinux 0xe491583c security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xe49adf54 start_tty +EXPORT_SYMBOL vmlinux 0xe49b4a01 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xe4a1816f nand_correct_data +EXPORT_SYMBOL vmlinux 0xe4bbf945 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xe4bd0d6f setattr_copy +EXPORT_SYMBOL vmlinux 0xe4c08d4d skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4d83282 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xe4e42c89 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xe4e4ab7c inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eb13fb sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xe51c6c0d inet_sendpage +EXPORT_SYMBOL vmlinux 0xe522c9bf shdma_chan_probe +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52e2d0a dss_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0xe5445af6 omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xe54e8e13 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe582f13f get_mem_type +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d27af7 seq_release +EXPORT_SYMBOL vmlinux 0xe5e8f528 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6115a0e get_acl +EXPORT_SYMBOL vmlinux 0xe6115f8e __skb_get_hash +EXPORT_SYMBOL vmlinux 0xe63125c8 __getblk_slow +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe665566f serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xe66e91ff of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xe6809b0d mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xe68e0b41 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6c1352d unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xe6c28f7b page_put_link +EXPORT_SYMBOL vmlinux 0xe6cb2d11 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xe6ea93b6 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f704e7 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe6fe68f4 cad_pid +EXPORT_SYMBOL vmlinux 0xe7042c8d pci_scan_bus +EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe7214042 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xe74ea69b scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe77d0685 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xe77d2ca2 may_umount_tree +EXPORT_SYMBOL vmlinux 0xe77f347a mem_map +EXPORT_SYMBOL vmlinux 0xe79a0c96 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xe79d4365 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xe7a31e0b mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +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 0xe7e11858 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xe7e15910 dispc_clear_irqstatus +EXPORT_SYMBOL vmlinux 0xe7ee47fd bio_reset +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe823ef78 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xe83848b6 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xe854f409 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe8806754 mark_info_dirty +EXPORT_SYMBOL vmlinux 0xe88c0a2a inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8adac2d blk_alloc_queue_node +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 0xe8e2e7d7 snd_device_free +EXPORT_SYMBOL vmlinux 0xe8f24642 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xe9091747 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xe90b4432 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe915d8dd d_set_fallthru +EXPORT_SYMBOL vmlinux 0xe93745eb blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xe93a57a5 vfs_llseek +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe9477b7f splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe95e01b3 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xe9946a90 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe9bd3d91 tcp_proc_register +EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xe9ccfcd3 ioremap_cache +EXPORT_SYMBOL vmlinux 0xe9d133f0 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ff073c sock_no_listen +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea06f3a2 omapdss_unregister_output +EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev +EXPORT_SYMBOL vmlinux 0xea63f7fb inode_change_ok +EXPORT_SYMBOL vmlinux 0xea6e8a47 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xea73d9cc jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea80add2 may_umount +EXPORT_SYMBOL vmlinux 0xea84818a sock_no_getname +EXPORT_SYMBOL vmlinux 0xea84b3eb blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xeab4ce1e ihold +EXPORT_SYMBOL vmlinux 0xeab772d7 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xeabfe0b0 dev_activate +EXPORT_SYMBOL vmlinux 0xeae7eefa tcf_em_register +EXPORT_SYMBOL vmlinux 0xeaeb6bf4 inet_put_port +EXPORT_SYMBOL vmlinux 0xeaf11f55 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xeafccec0 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb270de2 clk_add_alias +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb4b206e flush_dcache_page +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeba03a15 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xeba05276 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xebab3c11 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xebb47e95 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0xebb92b00 vme_dma_request +EXPORT_SYMBOL vmlinux 0xebbcd015 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xebd79f45 omap_dss_put_device +EXPORT_SYMBOL vmlinux 0xebda1b9c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xebdf5762 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec0f8e72 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xec19aa61 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xec19b5b4 dquot_drop +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec1b36d6 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xec202200 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec584a8c do_splice_direct +EXPORT_SYMBOL vmlinux 0xec5999c3 ps2_command +EXPORT_SYMBOL vmlinux 0xec68f27d led_set_brightness +EXPORT_SYMBOL vmlinux 0xec699665 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xec73a03b mmc_free_host +EXPORT_SYMBOL vmlinux 0xec782ca1 bio_init +EXPORT_SYMBOL vmlinux 0xeca8f979 soft_cursor +EXPORT_SYMBOL vmlinux 0xecad54ad security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecc78fd6 set_groups +EXPORT_SYMBOL vmlinux 0xeccc583f of_iomap +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xecfbf1c1 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xed140959 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xed1b267c input_unregister_handler +EXPORT_SYMBOL vmlinux 0xed37e839 clkdev_add +EXPORT_SYMBOL vmlinux 0xed3d71b2 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xed3e4a50 skb_insert +EXPORT_SYMBOL vmlinux 0xed4cf521 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xed55c824 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed77549a lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xed77c0cc skb_clone +EXPORT_SYMBOL vmlinux 0xed88a742 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda80d8a udp_proc_register +EXPORT_SYMBOL vmlinux 0xedabc475 dev_open +EXPORT_SYMBOL vmlinux 0xedaf58c8 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc7f4ec dq_data_lock +EXPORT_SYMBOL vmlinux 0xedd72045 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xedd9106d __ashrdi3 +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf50e94 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xee0a2e19 noop_llseek +EXPORT_SYMBOL vmlinux 0xee18bf73 fsync_bdev +EXPORT_SYMBOL vmlinux 0xee252340 f_setown +EXPORT_SYMBOL vmlinux 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee349a93 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xee4e79ed mmc_can_reset +EXPORT_SYMBOL vmlinux 0xee56f338 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xee5e0fcb blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xee779ed8 pci_restore_state +EXPORT_SYMBOL vmlinux 0xee7aa61e pcim_pin_device +EXPORT_SYMBOL vmlinux 0xee801165 tty_kref_put +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee94dccc uart_resume_port +EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xeea88413 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeaf56aa i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xeec8a6e8 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xeec944ea scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring +EXPORT_SYMBOL vmlinux 0xeed9e94f create_empty_buffers +EXPORT_SYMBOL vmlinux 0xeef13405 generic_perform_write +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef63889 flow_cache_init +EXPORT_SYMBOL vmlinux 0xef09bb63 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xef0f3eb3 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xef783cbe snd_cards +EXPORT_SYMBOL vmlinux 0xef7bf9ef snd_seq_root +EXPORT_SYMBOL vmlinux 0xef7f30a4 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xef81db36 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL vmlinux 0xef8a1a75 simple_lookup +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 0xefdc309a tcp_filter +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0018780 find_lock_entry +EXPORT_SYMBOL vmlinux 0xf0259b95 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xf02c6de8 elv_rb_add +EXPORT_SYMBOL vmlinux 0xf051640e skb_clone_sk +EXPORT_SYMBOL vmlinux 0xf05a28e0 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf06161ee ppp_input +EXPORT_SYMBOL vmlinux 0xf06c303c omap_video_timings_to_videomode +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a50e9f ip_getsockopt +EXPORT_SYMBOL vmlinux 0xf0a90b50 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xf0b0b842 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xf0e45372 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf1160298 phy_resume +EXPORT_SYMBOL vmlinux 0xf122d393 bio_unmap_user +EXPORT_SYMBOL vmlinux 0xf13662f0 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf155cc8d blk_start_queue +EXPORT_SYMBOL vmlinux 0xf15bd78e of_get_mac_address +EXPORT_SYMBOL vmlinux 0xf15fb343 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0xf18cca2e do_splice_from +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf195cfd9 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1971680 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xf19af663 security_mmap_file +EXPORT_SYMBOL vmlinux 0xf19da66b mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf1a738d0 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xf1cafa8b truncate_pagecache +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 0xf1ed664f ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xf1f1a42f netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xf1fd383d __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xf208e753 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2116045 phy_driver_register +EXPORT_SYMBOL vmlinux 0xf2194a90 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xf21b8a8e __napi_complete +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf2464917 __free_pages +EXPORT_SYMBOL vmlinux 0xf24c9e5c seq_open_private +EXPORT_SYMBOL vmlinux 0xf2697aa9 bdevname +EXPORT_SYMBOL vmlinux 0xf26cc99d nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xf27866be block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xf27ef03b xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xf29163b0 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf29eb8ed __module_get +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2aff98a freeze_super +EXPORT_SYMBOL vmlinux 0xf2b70800 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xf2b8f7a9 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xf2c1ccc7 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xf2c1eb30 napi_complete_done +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e0b8a0 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0xf30dcd4f drop_nlink +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31de72e tcp_splice_read +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf346a694 path_nosuid +EXPORT_SYMBOL vmlinux 0xf351a3d7 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38ac22a unlock_rename +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf394e763 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf396cd21 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xf39fcf31 d_path +EXPORT_SYMBOL vmlinux 0xf3a0f213 free_task +EXPORT_SYMBOL vmlinux 0xf3a8b8fa of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xf3bf2d1e tegra_fuse_readl +EXPORT_SYMBOL vmlinux 0xf3d672cb alloc_fddidev +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3eea0a8 send_sig_info +EXPORT_SYMBOL vmlinux 0xf3f02222 dev_printk +EXPORT_SYMBOL vmlinux 0xf3fc7df5 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xf3fde757 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xf40019c0 tegra114_clock_tune_cpu_trimmers_init +EXPORT_SYMBOL vmlinux 0xf406ec41 dev_err +EXPORT_SYMBOL vmlinux 0xf407cfc2 free_page_put_link +EXPORT_SYMBOL vmlinux 0xf4097e12 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf439cb75 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xf4495fa2 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xf4691d9f qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xf473ffaf down +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf480fae3 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xf48a544a devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xf48eec74 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xf49a1159 i2c_master_send +EXPORT_SYMBOL vmlinux 0xf49c0bbd zpool_register_driver +EXPORT_SYMBOL vmlinux 0xf49c9ddf __sb_start_write +EXPORT_SYMBOL vmlinux 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL vmlinux 0xf4b741c6 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4d51d4b input_open_device +EXPORT_SYMBOL vmlinux 0xf4ec5dcf skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xf4eeb888 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fc2661 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xf5048d67 param_set_ullong +EXPORT_SYMBOL vmlinux 0xf51a6d9a posix_acl_valid +EXPORT_SYMBOL vmlinux 0xf520b8e8 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xf5381d84 iunique +EXPORT_SYMBOL vmlinux 0xf53c8351 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf597e3fa i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xf598ba86 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xf5a1848e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xf5b19084 misc_deregister +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5ce1640 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xf5dd5a57 noop_qdisc +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf6047c60 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xf6051e0a blk_complete_request +EXPORT_SYMBOL vmlinux 0xf6245c2a md_check_recovery +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64b0ffd security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xf65087fe vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xf65a8dd6 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xf65bc147 devm_request_resource +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf6851d5f register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xf68b70b5 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xf6a25366 dentry_unhash +EXPORT_SYMBOL vmlinux 0xf6ba7f7e kern_path_create +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6cf63c5 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xf6e944a4 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f3cef6 omap_vrfb_setup +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70b3f71 put_cmsg +EXPORT_SYMBOL vmlinux 0xf70c544c i2c_verify_client +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf7164d72 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xf71fb025 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xf72ecfd3 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xf7381a50 register_shrinker +EXPORT_SYMBOL vmlinux 0xf7532e0a nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xf756aaad cdev_del +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75d73d1 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xf766aedb of_node_put +EXPORT_SYMBOL vmlinux 0xf767bbba nobh_writepage +EXPORT_SYMBOL vmlinux 0xf76df194 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf7820c58 pci_get_slot +EXPORT_SYMBOL vmlinux 0xf79cb930 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init +EXPORT_SYMBOL vmlinux 0xf7b19754 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xf7b1f982 omapdss_find_mgr_from_display +EXPORT_SYMBOL vmlinux 0xf7ccb66d d_obtain_alias +EXPORT_SYMBOL vmlinux 0xf7d2a103 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xf7e45320 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xf7f52f76 follow_up +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 0xf8306668 dm_put_device +EXPORT_SYMBOL vmlinux 0xf833775f abort_creds +EXPORT_SYMBOL vmlinux 0xf853bbca omap_vrfb_map_angle +EXPORT_SYMBOL vmlinux 0xf859bcf1 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xf871b315 remap_pfn_range +EXPORT_SYMBOL vmlinux 0xf87d5cb4 __ps2_command +EXPORT_SYMBOL vmlinux 0xf8accc9e lock_rename +EXPORT_SYMBOL vmlinux 0xf8b48958 amba_request_regions +EXPORT_SYMBOL vmlinux 0xf8b517a0 inet6_getname +EXPORT_SYMBOL vmlinux 0xf8c3b4d5 generic_readlink +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf9001b8c __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xf922d2eb bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9427374 dispc_request_irq +EXPORT_SYMBOL vmlinux 0xf9519291 snd_device_new +EXPORT_SYMBOL vmlinux 0xf97f764e from_kuid +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9ac26d7 skb_queue_head +EXPORT_SYMBOL vmlinux 0xf9b0a737 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xf9c14373 sock_no_bind +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9fc90f3 dss_mgr_register_framedone_handler +EXPORT_SYMBOL vmlinux 0xfa031bcc ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xfa07ab74 get_super +EXPORT_SYMBOL vmlinux 0xfa4c338d netlink_broadcast +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa57619c xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa6b5303 dcache_dir_close +EXPORT_SYMBOL vmlinux 0xfa803182 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xfa8d3393 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xfa9e681a pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xfab1c890 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xfab86233 snd_info_register +EXPORT_SYMBOL vmlinux 0xfac3c8f4 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xfac68eba arm_elf_read_implies_exec +EXPORT_SYMBOL vmlinux 0xfac6aa2c __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd2e14 pgprot_user +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad772dc __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xfae18452 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf9f8d3 read_code +EXPORT_SYMBOL vmlinux 0xfb21fa6e i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xfb2af0bb __vfs_read +EXPORT_SYMBOL vmlinux 0xfb328a5e pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xfb5e82e8 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb9ddc55 generic_show_options +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbf6776d get_thermal_instance +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0703ac page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xfc175f48 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xfc34a05b snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc55b8dc mdiobus_free +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc6afbd0 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xfc790be2 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xfc884a5e blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xfc925313 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xfc974031 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xfca314c2 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xfca8dcb8 flush_old_exec +EXPORT_SYMBOL vmlinux 0xfca95330 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xfcba1981 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccc3606 padata_do_serial +EXPORT_SYMBOL vmlinux 0xfcd20273 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce7e0b4 dev_add_offload +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf00016 pci_bus_put +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd00b70e vfs_fsync +EXPORT_SYMBOL vmlinux 0xfd05d9dd netlink_net_capable +EXPORT_SYMBOL vmlinux 0xfd061180 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xfd0958eb dev_emerg +EXPORT_SYMBOL vmlinux 0xfd1c3349 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xfd302742 arm_dma_ops +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd3e67e7 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xfd5a0013 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xfd72175b phy_device_remove +EXPORT_SYMBOL vmlinux 0xfd8c5afc release_fiq +EXPORT_SYMBOL vmlinux 0xfd8e768d init_special_inode +EXPORT_SYMBOL vmlinux 0xfd938e99 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xfd939fd3 nonseekable_open +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9bbdb6 bdgrab +EXPORT_SYMBOL vmlinux 0xfd9e64e3 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL vmlinux 0xfdc213c2 security_path_truncate +EXPORT_SYMBOL vmlinux 0xfde8100b inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe20589e bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xfe2e8fa9 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xfe3030fc register_netdevice +EXPORT_SYMBOL vmlinux 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL vmlinux 0xfe45e254 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xfe4ee58a mdiobus_scan +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6cdca4 km_policy_notify +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe852fd9 update_region +EXPORT_SYMBOL vmlinux 0xfe88c938 vfs_rename +EXPORT_SYMBOL vmlinux 0xfe9d5626 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xfeaaccbd seq_hex_dump +EXPORT_SYMBOL vmlinux 0xfebb5ffb blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfedafb1f invalidate_partition +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeecd9e5 htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff2028d8 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xff3c196b pwmss_submodule_state_change +EXPORT_SYMBOL vmlinux 0xff4532a6 __pagevec_release +EXPORT_SYMBOL vmlinux 0xff5da2f3 would_dump +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 0xff73a0b7 of_dev_put +EXPORT_SYMBOL vmlinux 0xff8cbb1f idr_destroy +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffbfbb5d omap_dss_get_next_device +EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x12774a6a sha1_update_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0xfc3860b7 sha1_finup_arm +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x0357ee7e ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x10cfa3b7 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x4cde3af2 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x626f2c58 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7fe4dacb ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xa4071b9a ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xad7000c4 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x1d0bacef af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x34c53ab5 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x49a22579 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x55f0e01d af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x57c8f83b af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x73df6ab9 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x9ceb726c af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xe3b0e5e9 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xe54a84dc af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xf439ad85 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xe7998edb async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x13ffea09 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8c593d88 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xad524ad3 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xffa6ad89 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x17722ac2 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x2a9a7aa8 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x8e5b7aea async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9890173b async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x629e43af async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb46438fd async_xor +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 0x9f7c138d crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xb744b99d crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x2b0c8690 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x3c4fed73 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x66ee4eb7 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x784e0000 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x882305fa cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x97151b84 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa539de4a cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xa84c874d cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xb7df240c cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xda61c5ab 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 0xa7a77e78 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1300dbe0 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1b7d55df shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x2f648491 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x84c84c50 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x9f3da2b2 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa892b43e mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc4068ed9 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf1d8ebc5 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x86ad63c3 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb83b98e6 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc88bcbd9 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xfa1b33e3 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 0xe2c37841 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x86f96a1e __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x5e332abd 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 0x20e1a0c4 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe079dc02 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe46558eb __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf933e69c __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x01a90d9e bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x107f8486 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b6748d7 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1be2b9e5 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1edbe0ad bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x206019a8 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2d6d6dc0 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2e4bfec2 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x426341a7 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ef10c3a bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x631e4dd6 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7c911a5b bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x871aae12 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8a22fe32 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8abb7be6 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8ea554d0 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9a490170 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb0751c99 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb19ef3a3 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc3660438 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xea64ed74 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf0064c9f bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf039e9e9 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfad6565a bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x31fb29d6 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4b750475 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4ca42a70 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc2866570 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xcb03bf82 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xe88616e6 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x0528d477 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x30d6d405 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3fa35883 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x40ca8d0c btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4c49741c btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x52671de7 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x60876103 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x64f1ca89 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x893fa193 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa22b3e58 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xef246bb3 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf9e70ef0 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2c0bbc9a btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3c4b43ab btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4b422c39 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4f5bf9d5 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5a9e8664 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x71ff6b69 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7602cc95 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa06f2fdf btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbf013a4c btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3cfb698 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf089fd4b btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x0bbd9adb qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x8d473f34 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x802a3d32 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x329a86eb h4_recv_buf +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x190f4b60 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 0x6938747e qcom_find_src_index +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 0x95924e8d qcom_cc_map +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 0xa27725d3 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa323ab92 qcom_cc_really_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xae1423cf devm_clk_register_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 0xe2dfaeed qcom_cc_probe +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xe703bcad clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xec48874d clk_disable_regmap +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 0x7d70f8dd bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xf344f3bd bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x04954fc3 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0785be23 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2d0dbb33 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4001337e dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xdb97638e dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x0d45fa41 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x20a19d62 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x756c9baf hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x01903c6c edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x210ce1d3 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x25e32b17 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2f2c3393 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4ab33aa7 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x56195c9c edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6056e6fb edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x724abff4 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7417aa81 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7bc1a1b7 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7bccc8d9 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7f30c261 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9385f3fb edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9acd23c9 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9ec6a35a edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa16c9c55 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xad3d4396 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb387cfc6 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xba8758f6 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc5c3b325 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd588b9da edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd9931e55 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xddaf8f18 edac_pci_alloc_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 0x162697ce of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2752b357 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5a82e838 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x63dd3c01 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8ba44fa3 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb449b138 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x278aea10 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe13cafa9 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x6c5849e7 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 0xc5c399af dw_hdmi_unbind +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 0x003cf5e0 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x0cefee6b drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x127743a7 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1a2be2b9 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x22826f19 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4ebba20d drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x500df045 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5727b6b9 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x775808ab drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8267b317 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8a30f431 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x911c8b97 drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9620ea79 drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbec5ad18 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc9dc61b7 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd28d0c3d drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xdbea74db drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe8d01fe8 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xedcf5420 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x09ca292c drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x518ebe67 drm_fb_cma_debugfs_show +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x84302b6c 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 0xc083fea1 drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x008e21ff imx_drm_add_crtc +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 0x4fc43175 imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x5f056ff0 imx_drm_crtc_vblank_put +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x6285d9a6 imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x66a81d9c imx_drm_encoder_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x8dec4f74 imx_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x94a8e874 imx_drm_set_bus_format_pins +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x97db3fc9 imx_drm_set_bus_format +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xd652b5a4 imx_drm_remove_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchip_drm_vop 0x37ab15eb rockchip_drm_crtc_mode_config +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x1c6f5bfe rockchip_register_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x29057701 rockchip_drm_dma_attach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x46ffd21e rockchip_drm_dma_detach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x8eee085a rockchip_unregister_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xb01687f1 rockchip_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xec909787 rockchip_fb_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x2fedc982 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x5c98c3ae 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 0x701b4352 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x001258c8 ipu_ic_task_idma_init +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x00d0e56b ipu_idmac_channel_irq +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 0x0964bc67 ipu_set_ic_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x0cb47394 ipu_idmac_enable_channel +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 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 0x167dc7fb ipu_idmac_clear_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x184298c5 ipu_dp_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 0x1e913d9f ipu_csi_get_window +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1ee94aae ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2362df4b ipu_idmac_get_current_buffer +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 0x26028193 ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x2cd15a94 ipu_cpmem_set_image +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 0x328b29fa ipu_srm_dp_sync_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x342cc8da ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x39965715 ipu_di_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 0x3e44b414 ipu_cpmem_set_burstsize +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 0x41faf55f ipu_idmac_disable_channel +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4697b33c ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x489b1909 ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4917f47a ipu_ic_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4aca9d60 ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4dc21066 ipu_dc_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x4e73ea19 ipu_idmac_select_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x50c448d2 ipu_set_csi_src_mux +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 0x58d73de5 ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x60bdf2ec ipu_csi_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x61229588 ipu_cpmem_interlaced_scan +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 0x6512312a ipu_cpmem_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6cf235e0 ipu_cpmem_set_resolution +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6e1e2f75 ipu_cpmem_set_rotation +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 0x791d2f7e ipu_cpmem_set_fmt +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 0x90f58dbb ipu_cpmem_set_high_priority +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x92d2b091 ipu_dc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x94707fba ipu_ic_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 0x9540ae9e ipu_idmac_channel_busy +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 0x99b46f22 ipu_module_enable +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 0x9eaf406b ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9f301bea ipu_dp_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 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 0xa6afc588 ipu_idmac_enable_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa9f7fa18 ipu_idmac_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb003eb0a ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb159c681 ipu_module_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb1a0faa7 ipu_wait_interrupt +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 0xb49114bf ipu_cpmem_set_yuv_planar +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 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 0xc6ee1ca4 ipu_idmac_lock_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 0xccffe155 ipu_cpmem_set_format_passthrough +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 0xcfa456b5 ipu_cpmem_zero +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 0xd2ad1a51 ipu_cpmem_set_buffer +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 0xd63e6cf3 ipu_dmfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xd957c02f ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xddfdb61d ipu_cpmem_set_format_rgb +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xde82b609 ipu_cpmem_set_block_mode +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 0xea1e35ef ipu_idmac_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xed15f0a4 ipu_cpmem_set_yuv_interleaved +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 0xf8c224fb ipu_cpmem_set_stride +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 0xfb96a13a ipu_dc_get +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07bd5131 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x279989a6 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2bef4465 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x31e7a0c4 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x325944b9 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36f129d0 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a6e1a47 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e09f0d1 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f07c969 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x43731f41 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4b57fe9e hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5bd8773d hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6222490e hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x66686085 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6baa12cb hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x788b9921 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x79820dee hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d650a63 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x800b1722 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x83a40ec2 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8bf2bb09 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x926c73c1 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93c60d04 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93d9c5ec hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x978eef1b hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c720eef hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2f7a885 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9b951f9 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3a97e0e __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcb3a4ef0 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd9e98e60 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd298611 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xde92f024 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3d4ef4d hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec4c5ef1 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc40fa8d hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x272edf01 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 0x0e0cb9c9 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2f1cbc62 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2fd990ab roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x755f9363 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x860f4c11 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x9aa1201a roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x41ff56f3 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x474901be sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x7cb1ab2d sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb1f50b03 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbb26e5c5 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcb9b9a9a sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcbb5155d hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd09753c9 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf93ad444 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xf810f875 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x2b4c0d5e ssip_reset_event +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0x83940f37 ssip_slave_start_tx +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xbd55f2e0 ssip_slave_get_master +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xdd53bb43 ssip_slave_running +EXPORT_SYMBOL_GPL drivers/hsi/clients/ssi_protocol 0xe08ff1a4 ssip_slave_stop_tx +EXPORT_SYMBOL_GPL drivers/hsi/controllers/omap_ssi 0x1dab59f1 ssi_waketest +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x059e465e hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3c0a208e hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3ec8fe4e hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x53e0df68 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x54de8715 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5ee06a5b hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x63b3369e hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x678bb4ed hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8c0f134d hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9bbf356f hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xaf0e793a hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd31ed7dd hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd45dd0f8 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xde7cf73b hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xeb109c56 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfac8d687 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfe98f81a hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfeaa2904 hsi_async +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x23d1638c adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3bf08436 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb3c5b9a4 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x010800f9 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x04f8fa3e pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x170ecad2 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x291aed70 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2c8248c3 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x64ffe0da pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x677b338a pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x69da22dc pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6d5d2626 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x75cd0f48 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8a36fd46 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc67f3ea4 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc6a8f91e pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe59c4ec2 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe91f93f8 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x04105428 hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x20c5c092 hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x77b19bec hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x8a6e52df hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xa3c93b8f __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xaabc7599 hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb36d3f27 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xb8a176f5 hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xebcd2d96 __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xf6d52c7a __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1eabe9e6 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x38712844 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x838d4010 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xadc6650b intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xde3216da intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe6862ba4 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xed77d036 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x77a4563a stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8690d589 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x930e70f3 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xbbb35b1b stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xcf971028 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x162cb84d i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4f06338b i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x6d664f51 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x6e06f3ec i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xfca43d09 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x34724e6a i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd70c49fc i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x0df6ae36 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa37ac079 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0372ccbf bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x51b12ffe bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xbfdc71e3 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0703bbcf ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0d3a62df ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x127795e0 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4976bc3b ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4b673253 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x4d60a0cc ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbe461d36 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcf2329d8 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xf8f319cc 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 0x06e9a238 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 0x750d7c7b 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 0x3df94c3c ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x7142541c ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2d49e48f bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x6859a608 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd28d1e70 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0a8f7638 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1d1bd8a1 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3ff19ba0 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4b61e743 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x531891a8 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x68044366 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6979057b adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa37fd6f8 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb0ae14ab adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb41b8b7b adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb931be55 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcd7012fd adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0033fcc3 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c6ed357 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x160415c8 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2177b1fd iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28d5a741 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x387f81e8 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ad141cd iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x43f76b83 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4472c99a iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x51d1a37e devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6557d98c iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72474e90 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x862c79e7 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8808c93f iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89e6f868 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89e995ad iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8a25e84d iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x927bd34d devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95e7d806 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9a94092f iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9bcc6261 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa00fd41a devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa499565b iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6b94371 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb0749f99 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1495c08 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbc4ed15 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6a7ee2f iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcca4700e iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe44b0dec devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf60e917c iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc0e30682 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xa3870a53 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 0xfa069e2f adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x27bca387 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x653f18a8 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc41c3fef cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x77e9359d cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x8ef9fca5 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa564c883 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x3d242297 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x7f5777bd cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4d17a586 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x501e21ca tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcb232eb2 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf5900342 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0c3be8ee wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0e8657b9 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x40f81ae9 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x46456f5a wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4722fec9 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7dbf7a0b wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7e8dffad wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8cdb3a77 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc22c5727 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdf924a7d wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe8983096 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf7b6fd0a wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x064ca1d4 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0d2a35f6 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5b90cc16 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x709465be ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8de16d03 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x908fd9b0 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb26b880f ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe48070e9 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xe5ddcd1c 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 0x096a0761 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x13cdc0bc gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1c131368 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2962818b gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2b1922a9 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5328d98e gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x55ce98bb gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x573f191c gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5b71915b gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x717366b6 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x89f38321 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa68ac586 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xae93f0b6 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd801a836 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe89d9cf3 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xec7221e7 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf00ea42b gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x22bc6e23 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7de875cb led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xce4fb862 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdea02303 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe80338b3 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfbcbfe35 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x0b06a6c6 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1b7a4595 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3721d9ed lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x39729655 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8edd0bcf lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8f6ab21a lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb436aa4a lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb6f9223e lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd41ea368 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdf8780d9 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf994fc85 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 0x212fb632 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x23be8f89 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x37aedb80 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x41ee5038 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8088affb __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x96ee01fa mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x97b85d55 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa3590e7d chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xb832a6d5 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdb3c97ae mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xee142c03 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf9cca8f3 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfa8f7cdf mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfaf50005 mcb_bus_add_devices +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 0x01199fe9 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 0x2bd14d9d 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 0x4f9a3545 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 0x6c02d2a4 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x776715ad dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7fd7a5fd dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8cf5b368 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9fbd5ff5 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 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfc712ce2 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x0ad0dc4f dm_bufio_mark_buffer_dirty +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x15f62701 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 0x18874cba dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8eca03ae dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xad3e0299 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xbe2e3295 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcbd26ad9 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe8dec0e8 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf1cccb51 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x9207c3cc dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc9174e7f 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 0x1d415180 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 0x657acb99 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 0x8242a6bb 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 0xd0c7b137 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 0xde4fc007 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xea1b02f8 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 0x29f71fd0 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/saa7146/saa7146 0x0eb46d8c saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1744329d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2213e8ee saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x53dbecce saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x65ea9190 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6833fc46 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7db9faa9 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x976e0eb2 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xda393043 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfb616866 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x14ae430c saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x1c879fcc saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3dfa8e43 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x66b25ed7 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9edbf320 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xca3d826b saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf8853e39 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x0d4f4358 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14bccc9b smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1f91dc9e sms_board_power +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 0x43128b94 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x58117952 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x60eed9ed smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6122ca76 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6cf56a25 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 0x7cc41833 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x90069d03 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x92a3f2f5 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9503ac65 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa7e0b28a sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbdc6b5c6 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3bae06e smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xece4a1e0 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf5dd8fa2 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x01ece4bf as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xf9e92720 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xa1cbe301 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x15df999f media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x18317769 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x23fd8323 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x2b213b49 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x31693cf0 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x3cc928a6 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x425de0c4 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x531eaf84 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x674da4ec media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x6971b1a5 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x9cc12e42 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xa0965bf8 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xab2a14f4 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xba0203a0 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc195fa25 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xcf6a0b7d media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xd62d271f media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xf6b4bcb5 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x510835b4 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3fc838fa mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x42e5de18 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5388c69b mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x56b6fef7 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6be56156 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x796f57ad mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x847c314a mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x875514e9 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x968c514d mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9cdab688 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9ff3932b mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa8f9bc73 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb383b8fc mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd341d2a mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xccf783cb mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd441280e mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd966bd1b mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe5ec2330 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfe638151 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x11b3c275 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1ed673f5 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x25f0154b saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2abad6ef saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3b2069f4 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ab08045 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x54fd0187 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6c97b841 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6dc66894 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7ee277b4 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xaaf8b457 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb4c46c30 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbab56944 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe20c148b saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe4ee9ff6 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xee39428d saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf1d7166c saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf2276f68 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf6882dd9 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x01230aab ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x836d14b7 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x899e6cf3 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8a4871c7 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb3d9ff2f ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc3e33b35 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd1f601c0 ttpci_budget_set_video_port +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 0x0bf1dd21 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1841552a 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 0x46b20c0f 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 0x6675bafa xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x7b39f211 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8653c426 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd38f66b3 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 0x45a3d052 xvtc_of_get +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 0x0ead8080 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe83e28ab radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5034ba1b rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6a1a0500 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x77f5a88e rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8aac58e8 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8fdb4cf7 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9039dff6 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x947faedb rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb07362d0 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbb0c2dd1 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc08e3d62 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc57ebf96 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc617f0dc ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xcdbe38a4 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe063f4d1 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 0xf4ce9fd2 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf7a09e82 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xc5c503f7 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x7cc8bf21 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x934c1515 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x813991ef r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x32ec3815 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x9ca4acbc tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x02be5c7b tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xd6b84846 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x0ab477e0 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x95d43d76 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x994e25ee tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x1ef2ac56 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xdc09561c tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x793a9f87 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0b0d4e1b cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1dd65b94 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1e1799a3 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f68a3fd cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x2bd92702 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x418d70f4 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x61db2a6c cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x61def7eb is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6729b2a9 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x79fc5673 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9419c0a5 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x94f3da69 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x95ba5c51 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9ebe62d2 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc5bce45b cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd0edc016 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd252c208 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd4c7b00b cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe6318e0d cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf857b666 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x7243c043 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x4fbe77c8 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x13e08712 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2332e0f9 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x26ea6b28 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2c93fff4 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3a91971d em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e02fcd2 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3fa8e4bc em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4c143832 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x593a8ef5 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5b978a88 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6cae11ee em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7c33b129 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9725eadb em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9cb3a494 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb0563ef6 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcf6a9770 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcffe3ef3 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf450ff13 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x7b68a1db tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x8f804bd2 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xe6720921 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xfac2aa77 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 0x0811ef33 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x1fd1d52d v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x51d1b84e v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x57b9be55 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 0x91e8dd88 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xdf4304b0 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 0x2309fbc0 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x340420df v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x07ca2854 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0be27cb9 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14436a24 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x198f3af4 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x245166a7 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x378c3da1 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e5833aa v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5d689485 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x65a25f8c v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x68c36ec5 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x790f310f v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8bbcb9cf v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9015fdbd v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x925caf20 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa4327431 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9975ac0 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb33e0020 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbae16a9a v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc9f4ffcc v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcd40b340 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeeaecce0 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xeec533d7 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf02ec5bd v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf3badae2 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8082b1f v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc873c16 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfeb64be0 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x09eb0023 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1e1da268 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2359aae0 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3b4b9e24 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3c06a264 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x49118635 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5120a2e0 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57e3c7e4 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x61ec59d0 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x64a08b53 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6934ad2a videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x73a48a58 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x87ea1ce4 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x93125bb6 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x94711269 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9df21d1a videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa24087d5 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb171b1c5 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb6495e64 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd15c99b videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd24e4ec videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc50f4d65 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcfd0b306 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfce3ba90 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x2bc54ac3 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xeed05789 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xfa203881 videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0e38f7ac videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x65e2e378 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6eb02604 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x812a6a90 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 0xaf2c6447 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb8ac46c2 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe45ac939 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x06d84a1b vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x072c6eec vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0f448515 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x249037aa vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x41fc0bb6 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4fd48168 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x597aefd5 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x668d65a6 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x842b85f1 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbb6565bb vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc7e88786 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcb2652f9 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcfbcd8ce vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd2f9f904 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd578dccc vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdaefda66 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfafe75e5 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xfef58d22 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x1ef84b03 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xa6a873a7 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 0x518d7ca2 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xc9f007e5 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 0x110d84ce vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x01a5b495 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0dd7d0f8 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0e127b2c vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x131e8c2d vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x14bec0bf vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1c31269c vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d6f721e vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2216ebe8 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x294935c9 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x30829104 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x30b7d65a vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x33fcc9f3 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x39f227df vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3a735c9f vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x63bb8e4c vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x77cb6c82 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x82024cad vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8d58d2c8 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x93f0fcbd vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x956875ff vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9c3de684 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa3265cae vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xad94967e vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xade6e2e1 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb45e046d vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbae33416 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbb48fed5 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc206149b vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xda38ba31 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe7861df5 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf4dd99a0 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfdfa3bd3 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x41543585 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023992ae __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x17e24f00 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189a3a75 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x207cf4a6 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2adb3b59 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2d14722d v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f828290 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x31dc735a v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3214bad7 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x435170ef v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c1260f __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x482041a3 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f436948 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x515d2694 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5aea6b59 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5e362e33 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69c072f3 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b84dff1 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6effd50b v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7e3093ce v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x837d3c2e v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83d8b464 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88a80b44 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x90d41774 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1a340fa v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3bd56cd v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa4b13070 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaa952184 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab06e74e __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbba075e9 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc181a3ae v4l2_fh_del +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 0xe1e5bd55 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe53ae0aa __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec1e98b7 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x311f113d pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x76643981 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa42fedaf pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x207ab9ad da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x5ef4c6d6 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x72a24e3c da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7cc6614d da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8723c6f9 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8b94e389 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xaed4542f da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1f9d4943 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x30fccae4 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3fa25f17 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x49bcbe0d kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x59b8671b kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8a0531ea kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb7a662b5 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe5d23a55 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5831125d lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb904375a lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xf922524a lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x01dc36ce lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x09e27490 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4ee86a1a lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5c074ca6 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8bc91441 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xea626c17 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf0d4c157 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x22febe23 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4b60670a lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x5ae1891a lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x10e28b26 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4257356e mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5058c006 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x783c5573 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb0dd1214 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc97f770e mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x12c105b6 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x52f5a909 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5c8ce450 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6214286b pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8e9bf0ad pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x96f0a873 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaa2fccfe pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd9f818d4 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xda1bd26a pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf445d2ea pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfc53db1e pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x4cd1462f pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xfa2b7105 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4a7e00bb pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9ffab823 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb317af16 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb7b6aeb4 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xf7dccb51 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 0x09188e40 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x26b26f6c rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x27399dff rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2ff9b1f3 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3934b4b5 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3e1ed6b9 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4656e213 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4e81fc07 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x510ca58c rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5eb5dcc7 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x60cc6d8f rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x75d5cf93 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x792f6462 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7b18e866 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8ff67204 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaa49893d rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaec36118 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb0eef041 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc27d4b98 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdf66d9fc rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xeac858ca rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfd71d846 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfe46aa73 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xff5014f8 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x29f6aed6 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2a9c95f9 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x31d7cb9e rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3803493f rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x509827e9 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7971006d rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7c9866a7 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x96d4057c rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9c2e226b rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xaf529537 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc6277662 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd7b0a3fb rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe3ce20bb rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0000c58c si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x07de556f si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a0b2140 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1b542704 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23a507d3 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26694228 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2bc04ca7 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c090d5d si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d484242 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30087d89 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x36f42bc3 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c7f6eba si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3d75ee26 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3ea06e06 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x44ea8fca si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x64af2861 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6586e5b4 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x78309490 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c92f349 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e5cd38c si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x928ba4ee si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa6fa2c0b si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa8e0c954 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb47b41db si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb55413d7 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb7075a96 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9346e94 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbabdbc6a si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc0849744 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc1274a0f si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc184b253 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd15dce79 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd606f5e6 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7003647 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x1e2c92db ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xa3edd25c ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2fb116dd am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8a036b35 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8d7a3a92 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xba86d2ca am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3d0397e7 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x79d1b94b tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7e8b5ded tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xaf4e3522 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x0f88b6d1 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xbc293b89 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xeca428f6 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xfd20d8f9 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xfe68f1f8 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x0a22b0f5 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3abc36fb cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xabcde424 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd6d57f4b 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 0x1bb9bc17 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3f2fbdc8 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7edd309e enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaadf2d9e enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd5f3cf6c enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe8f33871 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf6b29f21 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfcabf739 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x048bb75f lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4bc53855 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7fc352bc lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x812c7577 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x853d91ca lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8eac70b1 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9a659f5c lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa117a45a 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/dw_mmc-pltfm 0x1ea02609 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xae4a972c dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xea115b47 dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x449e120f cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x7bb737e7 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x86a91271 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3609636a cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x485b28ba cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xbba2e73c cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xf5e4c394 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x4810ab28 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc6d900d0 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd8cfac82 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x7defa8ca brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x86cd4b10 brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x9562f815 brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xab671888 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x68f699b7 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xde6cbd1c onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xa2ebf653 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x01cd4d26 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0eb058b3 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0f699213 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x197f703b ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x32d0e119 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x34e83619 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x39c63605 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42b9e92b ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5faaf4b1 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x63e489c2 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x734ca714 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa6f5f603 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdb203f69 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfcf1b6dd ubi_open_volume +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1196961f arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x421c03e1 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x22fcaa3b c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6238ab19 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x633f4e86 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x66136bae unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd15c0d9d register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf9d1b1f4 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0a9d407c alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1b876e64 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1b9747cf can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2b6e8bc0 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x432f309f can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x686c12c6 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x687b8efa can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7119031f can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7a28d125 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x894a4034 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x89bf9e3d unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9024bc7f open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x98125ab0 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbf5f5e89 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd22e8bb1 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe3247763 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xeb80795e register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfde651a8 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1f0fa73b register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6dc23b49 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x9725ebdc free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc1354684 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6359f778 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa1be8060 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb95ca961 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd70949db register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x17d63f92 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x5c9e065f arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0158465f mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0249b632 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03c46d3d mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0868ba6b mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c8bc169 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c9d9b38 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0de519b8 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x167c487f mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x190d8dca mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b5ef21b mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1dbcde31 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e42f511 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ed4d220 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1efeefe4 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20025649 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21b57d57 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22de3ebb mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22ebd441 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24baf679 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24c4ece2 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25f6427f mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b5ba219 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2cc66b8c mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x305c37dd __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c828b22 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3eeee822 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41f82e59 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47ac6424 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49a96917 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b310276 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bf20a4d mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d9d02d1 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f076568 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5322a0ec mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x551ff912 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5983d42d mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59ccd6f5 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e21594f mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e47c620 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e615e92 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e8cd9d2 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ff7ae13 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60312105 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x638a58ac mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63f029ea mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67b40012 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67fe7271 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a7c26b4 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a819737 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c900343 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ec1f40c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f1776d0 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f5447bb mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70317661 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71989cd4 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x778c9f3e mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7829a2be mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c61c06e mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d1b863f mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e3bc876 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80fd882b mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83c131c8 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x844e87ba mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c43d8d2 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e455254 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91c74a3d mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x933f8ee3 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95083cdd mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x968c15e4 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x973511c0 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x97d61b8e mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b8d1094 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c3df217 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0932f45 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0c6ac17 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0c8515d mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa253cc29 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3f137ae mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa420b42e mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4668b88 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6452ad5 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab828e8f mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaca53a61 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xae0f3000 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaf5edecd mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafa8fc27 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5044672 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb564d1fb mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7dd72ce mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb93b0c87 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba022156 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe0116af mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6d70813 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbccd708 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xceb4b131 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0e7d208 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd178c70b mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6fb08f1 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd726217c mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd90e922c __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda34d64d mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb8c114c mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc1fe0a8 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd0213c1 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde047b7e mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe082e406 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0897f4a mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0c50282 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe10da21f mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2c3ce48 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3ff61d9 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7ece9e2 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe83c0bc5 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe966984a mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9e169d8 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea9df55e mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebe9ad5a mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef3df2b9 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0c6342b mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf217923a mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf24cc91a mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4329d15 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4fa19f6 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff1aa29d mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01e5f34e mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x01fb12b3 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05033fe5 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07908b25 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b562547 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b58b440 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d997b6a mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22069888 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2d970ad6 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x355453a9 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3754bd04 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3833826b mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a59b80b mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c643177 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e31e09c mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x446a8641 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f8355ee mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5554704f mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f7dbb03 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x632d4ee2 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75029528 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bdd678d mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d6c39fa mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d6e829e mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83500dd8 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8383b07c mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8593d28c mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8cb6e6eb mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fe7e116 mlx5_query_port_proto_cap +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 0xae7ac954 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1b70526 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb36ecc21 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb5a3254c mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbcadd61 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc468bb22 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6e7d0f0 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9aeca70 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd59f5b17 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd70b3762 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee07ebb3 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1b34f18 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf9357dc8 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfce37c1e mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfde5834a mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe2c029a mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x8eb3bc70 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 0x240c1e8b stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9d1d3c81 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xdbdabb44 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfdb7c3c7 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x18066fa5 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6e7027c5 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8ecd4233 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xc05d682c stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/geneve 0x15529e33 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0x83373de7 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x1228c1aa macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x945c468c macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xdc9f6ec8 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe45671c0 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x8332eedc macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f89096b bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x154bdbd4 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3397964f bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ed08fc4 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3f4285fc bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd27542d5 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdcadb536 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xeae474fa bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf824e914 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf93e61f3 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xd2127450 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x31cf5f32 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x81aeb2ca usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xbfb341a9 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc7944c2f usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x121b5aaf cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1b3ac835 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x57cac2cb cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x62ddcc23 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7a2b8469 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8208bfbb cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8593dcee cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa05e451f cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaa81320c cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5be37741 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x83386568 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa021ca21 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbe160cf7 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdc22dd8d rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf9636fb5 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x052da295 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x06d72ba7 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0c6e5694 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x157da718 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x159651dd usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x15f2042c usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16fcf344 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18cdaa17 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x191818cb usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x219a5a6c usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ef7c7d6 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f59182d usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x33aa8493 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x400d2ca1 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4bd326da usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4edf289e usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55c38141 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6fb009a2 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x70031a33 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8488e365 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8e1b67ca usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x93991d79 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x947afbab usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa1fa1705 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa93ae5c6 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb62efb28 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc0ea0982 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd5aacccc usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe3a5a858 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9b83eee usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf6cd9285 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfc5dddf8 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x08bd370b vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe204751b vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0007ace4 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0859faa7 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x100c191e i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x15869b87 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2d4563a0 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4586301c i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x46ca4525 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4bc74791 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x54defd03 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8b4fc9fe i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa46dcc99 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcfaf8e6a i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xefa8bc50 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf713f10c i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf74d9ba2 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfc8141ff i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x4df0caaa cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x6c3b8e4f cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc97a78d1 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xefadc60b cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xf15def13 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x141aa3d3 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x2ea26cc8 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x3ccdf18f _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x70b5f5ae il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xcdf6793d il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x127aa5d9 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x12e2db8d 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 0x227d1d92 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2cf42fc7 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x32c1eed2 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3996d34a __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3c9562a3 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4740fcb2 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x49b542fb iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4ba308b3 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4c57a359 iwl_read_prph +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 0x6b7ef022 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6e43bfe3 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6f0e6522 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7baca1cd iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x88ce6f68 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8a423cdd iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8cc5824f iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x99f2d51d __iwl_info +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 0xaeba32c2 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd20771a4 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0ec6654 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe38bbcb2 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5ea00c4 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfa02224e iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfb407801 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0c95c802 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x13264814 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1dffd78f lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1fd13bc5 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3ffc3692 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5b1981c7 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5b67b77e lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5e43ffff lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8a352ce1 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9d546907 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9ec23aba lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb16808de lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc8e276df lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xceaf9295 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd0a13cd1 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdd9cdab7 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x10d66c1d lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x22ff4f99 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2b0b56e2 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x41355713 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x86dce230 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc255b5c0 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 0xe1691779 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe80903cd __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x03d8dcdc mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1dca440f 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 0x3f053063 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4970ebd6 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x63e9e7b6 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x74916ace mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7f04b11c mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x83b8d655 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x850817fa mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8d4e4f54 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8d86099f mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa764fccd mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xad69a343 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xadb161e5 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb7972e58 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbd481bdf mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd17180d1 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf700c6d1 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf929f506 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4b6d9785 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4d994ca3 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6ba0a51e p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7eba66f9 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xbb926dd0 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc1cbeb7a p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcff12f1a p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdf801f4d p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdfb2cccb p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x44b09180 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99422aa9 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaa9f2966 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc70bf56d dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0cee48a0 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d238190 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1205c9ca rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x130d7bd0 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x19ec0c71 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x212a6e38 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x34429ca2 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x37129d8e rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3857c188 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x396817d5 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3e15a603 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4c76b319 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5482d8eb rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5a8103fc 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 0x7b28a926 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x80b24f1d rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x87774d65 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8a18f30c rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8d1369ba rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x960d7249 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa0468d4d rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa19f8bae rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xaf30ca90 rtl8723_phy_save_mac_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 0xcb2a9005 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd6d43378 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe06f401d rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe767ede6 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0508cb59 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07636cad rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10ffd5b5 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 0x2854aefa 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 0x2d882d91 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ee213ec read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x430881b7 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x46f3da4a rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4b0973c3 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x56e234dc rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x70816ec7 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x833f1cbd rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8b45390 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xadbe3168 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4d3b94c rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6a8c29e rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd55e5bc6 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdddb3b49 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedc9548f rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf039ef3d rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x01b8bd79 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x3b230b33 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5938c747 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb5ba142c rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0c9f7fe1 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0cba4c17 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x115d13b3 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1691dbe4 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1e6a56fa rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1f188eb5 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x21647786 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x298f7961 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c5736b5 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3561ff69 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3dc08b4f rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c257f41 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x58339f71 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5f82456e rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x659d4646 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6a085420 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x80be8c4d rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x895d3bfd rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9228d866 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x939af3a7 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x957bb7a1 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x960b0d0f rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x988320d3 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9ccaaa51 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa742ac00 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xabeff3d4 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xadcf6884 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaf9800d8 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbf2fab15 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc0dc7ccc rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcc67ec8d rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xda33fc0b rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdb00932a rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe01afb95 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe7afd421 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf6c43576 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfa2243ae rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfcb6e36b rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x032f4e68 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x16846cf8 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1791d21f rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3f25aaf1 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x547d4bde rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6660a486 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7243acd6 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7d9ad8e6 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9c6cd232 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xbed5db17 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc9f76041 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe1a4eed1 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xfb8a798f rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x011ddcad rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x02c0d2ae rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0b1b9e73 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0cfd1afa rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0eb4157b rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x125e10d6 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x133d2c2d rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1ac87646 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e0f6410 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2e7b8f77 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2ecd7b73 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3145c72a rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3b7fa848 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3be8a0b6 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4471ad19 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x49cb2718 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4a2d9542 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4a9920ef rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ad40060 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4cb3b422 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ec5bda0 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4f543906 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x528cfdc0 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5af6eec1 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5cfade10 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x67a34aec rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7496796c rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7b3ff77b rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82ff5bd6 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x85be009b rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8cb46cec rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8d8f1c18 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90d53ec3 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9fefa5c1 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1475a39 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xccf8d53f rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd0201cef rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd1244ffa rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe2a7bb4b rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe345f6cc rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe6d17876 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe84ed184 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf4bc6d47 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf8984f21 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf9f93fa5 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfdee56f2 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1458a325 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1e2b2a74 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd80c886a rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd9a59e37 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xfef80a33 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x2c9cec49 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x4893662a rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x6b28cbfb rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xb5f2d834 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x06b970af rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x18c519c8 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3059a7ae rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x36d03f53 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3c2bb4d6 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4aebc4cc rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4bf9e6a7 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5ace530a rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6e4840cc rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8946145b rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8cbf679d rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb28cb706 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc54d709a rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc9d2bedf rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe2f0f538 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf64ccad4 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x010330c4 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd31f0de2 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xf26f2a13 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x072cdbaa wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x09f0e2bd wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0bed4474 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x12271c01 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1397b001 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1827ee5e wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2f5db026 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x335223ab wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4896474d wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53ee27f5 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54615e2a wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6117e126 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63143806 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6369b87b wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x637e2a16 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x63a8fe4b wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6657d1ad wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6911eee0 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x691e5c8c wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6e63acb3 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 0x8269a7c3 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8298bfc3 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x87594727 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c11d79e wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa13399e8 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa8caed9d wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4e7d631 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb983a57c wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbabfe88b wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd03a723 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd5011dc wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf0cac1e wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf3feca6 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc42ecac3 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd573a1f3 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd73b34eb wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8cd81a8 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe436c2cd wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeaf53f0f wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xeb4a3b35 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed71f4ef wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xedb4add7 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee7b8904 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf2b4b697 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3041cf8b nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6a682cae nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8a4a97ff nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xe8fafc35 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1ff1fba0 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4ef24381 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x5e2869d3 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7ddb2e73 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x91bd6f26 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb4792e8a st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe0e86b8b st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf94902f9 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 0x33db03f9 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 0x64d06599 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7c1404bb 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 0x12feaee8 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1f3d9f7c nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x21f8f547 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x2f26f7ad 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 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xbe2abdc7 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcd8c616e 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/nvmem/nvmem_core 0xeba505ca nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf51c0b94 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x3a6b1e3d omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x8021f447 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x9e4962b7 omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x04f213a5 ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x164af0a0 ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x1703c490 ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x1fd4af38 ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x45dfdbc7 ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x4a8e260f ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x512c4f93 ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x5a14324f ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x693e11e4 ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x72eab7d0 ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7be152ae ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7e07acaf ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9539cee3 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xcb07918e ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd812ed9c ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd8a06f74 ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xded92065 ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xef44418a ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf17521d8 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xfa221697 ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x33d8547c pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x4e7bae79 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5722ea9d pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0d95cf8b mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xad1555b5 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb5202f40 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd1605f35 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xdef416f1 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x08d92181 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x28fd2879 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x37f04bbf wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x96631fb8 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xee70cc96 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf5618ce4 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x0874e6e3 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x000784ff cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00fa2e95 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x035f79ab cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0653cab4 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08404cea cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1360364e cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1504b367 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x18019b35 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1edbfe0f cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x229b6cab cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x27e3aadf cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2b1b0a2e cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x32ec9b79 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33d224b2 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3afca744 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e3c775a cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40ff752a cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4501086e cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4af5a15d cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5ebf4b40 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6e7fbaef cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x723cf2ec cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x74faade3 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x77839338 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7e7950a4 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fcab2f6 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x81df83e6 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86d42735 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8735227e cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b4a77cd cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8b866f1c cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92d25eec cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x98bdf1a5 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9cda114a cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1d159d0 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4716bf4 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb32a7c54 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc7f1cc3b cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1574edb cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd2e13bd3 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdeb95ac3 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1b01c4b cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe840a350 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb5688a2 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 0xf775c11d cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf831b9f1 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x17508000 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2bd8b5e3 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x31c4ceb2 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x41b81407 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x44988920 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4e711f98 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6e99c9c9 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x77c07296 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb9eb327c fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbae8eaa1 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbebb68f2 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe1664d4d fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe23e8b0d fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe8a3b8bd __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xec278816 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf3fbb79c fcoe_start_io +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 0x118f6604 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11adacbf iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12ec6501 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1527390e iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21dfada3 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2361a666 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2eb08f8b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41e74212 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45c7f49e iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x482a4a4b iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a539bc3 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4a770039 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4aee6a14 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ed139ad iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x50d44cb4 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54eff9c6 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x556b7c1f iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x55e09a07 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x664e12b0 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6bcc456b iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e2ef448 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74cf1c2d iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75865f62 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82630ec5 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaac46633 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaaeadde9 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb68bfcbf iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc54ac007 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca6211a2 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc42588a iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcdb3fa9b iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd36eeda6 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd393466f iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd608a99f iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde6602f7 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe151f022 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe43fe2fc iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xec53cc12 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed76c55c iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf33a74c0 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf78884ca iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf78e1ed4 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0a10196b iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0f853dae iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x13c0f80e iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x148e8372 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x274cf746 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3046b0fc iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x59ba1d0c iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6bb5d17a iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x93cea36b iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e52a7ef iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9ff8dcdf iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa3a503be iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa532918a iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc8d47301 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc9dfc011 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcd8a4cca iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdb2ab148 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00171f75 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39cf3225 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3c3238a3 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4ed4c547 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5112e082 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5887e41b sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5b2edf63 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5cee8729 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73533a6d sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a0f1236 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e879502 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x89c4b032 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9558e93c sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa6001bf6 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb21f050d sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb98b33a2 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc354e546 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc3ace2fd sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc9fd9ab1 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcb2ae49e sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcba6095b sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdbd4c6d6 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0db1765 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf7d7efe4 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d99836d iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11a296bc iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17ac1051 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x17e53d0e iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x199df396 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x207ac218 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x29c20b8b iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ee7bd06 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x34593d04 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4456021d iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51adef86 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x526c29f1 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x555de2dd iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5a397ac5 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d8acf12 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5f702522 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60b3a3b0 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x666ea3c7 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 0x6e2be02a iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x70e78e76 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71f35739 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 0x84f46301 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x88994b85 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa497f876 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa9dcaf56 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaf67db95 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb379a98e iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb44385d7 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 0xc81142fc iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcda22324 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xced156c8 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd19f5f4f iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd28923c1 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe18efbe4 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe482ba55 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9a102e7 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf0ff7f38 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf397c45a iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfb26d23a iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfcbf9c3c iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x47c1793e sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x533b5328 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x6b61aa15 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xf66a1f91 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x2879168b 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 0x164d7f44 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6e9e2cb7 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa527e6b8 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc4923e08 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe671857e srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe80dc205 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7181b270 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x733983a0 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x97c77053 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9a29e683 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xd11f57f2 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xef9117b6 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf084a9ab ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x23d98475 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7cd3cf85 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x852004cf ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x986f3bc3 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb67f0136 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc47727ae ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xcdc1df58 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x059cfd92 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x311cded0 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x31a58117 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x7e1a6e5f spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc56c94ce spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x010b8053 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x54ead15c dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xd058ed92 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf6630fb0 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2d25d1cc spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2f13a8f5 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4afa8bd1 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x59f43cc9 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6afb29a0 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7bc8f304 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x81b93573 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8fd5238d __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xae295837 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb393af98 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc05da601 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc14e3cc0 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd94c2f76 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde24100a spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf27d8418 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf4662ecb spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf9279059 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfec55897 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xf53aa862 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x04826526 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cfb591a comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1014568a comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x152c800b comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1a9ba4f3 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1bd53a9f comedi_dev_get_from_minor +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 0x394c8b4e comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3999dda4 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3ba98191 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4425703c comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x52f3e572 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x607aaf45 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x645edcea comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ce1b035 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7988e49c comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8a43b318 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8e8d5df5 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x908274e9 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x90967f39 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9bf4b4fa comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa13b04d7 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa22185c4 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa9732b71 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xada65ff4 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb31ac5d comedi_bytes_per_scan +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 0xc3c8c2cb comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc9b0e432 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd481915c comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xda2d6795 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdeee913f comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe0ea5dfb comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe7a7519f __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf186a93f comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfe11ef2a comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfe8e9103 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x0a718f2e comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x12f2a223 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x133b3f18 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1d19a924 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x50770522 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7da8b092 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x9899b1a1 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xccb8823e comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x10b30354 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1b30037c comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3545cb18 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x478a5f04 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x636b5110 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf1b2de00 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x3e8a9066 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 0x76965f98 amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xadc4f8a2 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xc8408dda amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x089683fa comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0fc08ae8 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x434ffdca comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x44b5f9f8 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x47cdf858 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x499f467b comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5bc778ef comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6421deb9 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x78c13e69 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x99c6f69e comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdbedda28 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdf9e323c comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe37c9e20 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x170c888c subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x25f0b2a6 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x780d4963 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x155dafb9 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0760fe3a mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1ab5e8c7 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x27ea9c87 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x28211354 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x284d88b9 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x29bd16e9 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2c04e162 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2d98e4df mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x33e7cc59 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x41b0c94a mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x42948476 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4e3a731d mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7cb6fc0b mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x84dfb92b mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb33e304d mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc2938562 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xcb981b25 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd159a7a9 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe93be5bd mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf7fd54b0 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xff3f5c9a mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x4f6726e8 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xb5f40821 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4b07d7f4 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x52506635 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x76a015bd ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7c3b6966 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xc2dcc219 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcaf05966 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdf3beaae ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf4f14b1b ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4c346977 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x56a69211 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6dbcf373 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x9189e7cf ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xa8f5e794 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe7a0a867 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x3f8c484d comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5f0eec1e comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6908f280 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xaa588f00 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc4d82d57 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe2b0d1ef comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xee5d24ad comedi_close +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x9927e4b2 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x02495c0c most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x173a284a most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x207691ec most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x34b8db48 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5d846a9b most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x6ee9b0d7 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x771d4ed2 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7abeee8b most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8b31f4f0 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8f6fc3ea most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9af21234 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf2fcc432 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x2478ba8d nvec_register_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0x32e6e562 nvec_unregister_notifier +EXPORT_SYMBOL_GPL drivers/staging/nvec/nvec 0xbc789610 nvec_msg_free +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x02c7a753 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x055d1473 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x130856c3 spk_var_show +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 0x4bb08243 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5795b121 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x636747de spk_synth_is_alive_restart +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 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd76f5d36 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 0xe9d158b1 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf722647e spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf722bb87 synth_add +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6bc1d8db uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x940dfb69 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x9b4f452f uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x9b6925e4 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xe8d536bf usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x4f68cb90 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xddc2c283 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x51621c71 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x77b04b3d imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe1878bf3 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x22e5c9c6 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4c09a12a ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5e79adca ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5f6cb417 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7cf297db ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcfe8462b ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x32d0c7e4 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x57008aaa gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x571e7f9b gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6c2785fa gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x71202ba7 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7a5989f6 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x93396b3b gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x996d52cb gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9bf45177 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa4956e20 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb0f2c92e gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb9c8c8eb gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd57818fc gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdf247eb6 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe7bbaebb 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 0x42fe02a9 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x692041fb gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb0292038 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 0xe85ca998 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf07a26fd ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf3e2bbc5 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x06b615b3 fsg_lun_open +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 0x1d115c78 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 0x2e449154 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2ef0a1c0 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x33904544 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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x541fe812 fsg_lun_fsync_sub +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 0x74176d3e fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x79b82fbc fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x7acb8e05 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 0x7edd6b02 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 0x8b688901 fsg_common_remove_lun +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 0x9633c659 fsg_common_set_cdev +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 0x98eb37be fsg_show_nofua +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 0xaecce3a5 fsg_store_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 0xba8b27f9 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 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0c0f3ccb rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0cefdb84 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x15656fab rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x18ca0bc3 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3018f910 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3551298b rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3f67a9df rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x47bcacfb rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4b020bc0 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x58765bcb rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7e001ed2 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8269b829 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb51fabf3 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xda6e5edd rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe89c4779 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x091df4b4 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0aeffe27 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2996b4cc usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3e0c966f usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46d6ad66 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x470f3456 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x54735c0e usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5529b48d usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6743130c usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6bba715a usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x70386625 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8232131a usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x86d29cff usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x882ad922 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8d164d5d config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ddda1ef usb_string_id +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 0x9c693bc3 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9fd83fc4 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa02f8456 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa9a8aad8 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xad084a3d usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb2cf15a3 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb7fe30b5 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbce80d4f usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc43e2ae1 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcc91730a usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xcca43b5c usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd10cceba usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd5cf1072 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe214306b 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 0x1b22f566 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x8741c98d ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1d631b87 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2c46240c usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5093641a usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x6e08a23f usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e280fd8 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x96964ab0 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x9e53d554 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa4911dd2 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa80d298a 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 0xdec68e27 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x78bb86de isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0x96ad9fc0 tegra_ehci_phy_restore_start +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xf9391500 tegra_usb_phy_postresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xf94955d9 tegra_usb_phy_preresume +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-tegra-usb 0xff95e361 tegra_ehci_phy_restore_end +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x8b7206f2 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x03d8dc46 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0716143b usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0869dd9b usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x139b0652 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1660c530 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x36632df9 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4fce09e0 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5267cb98 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x75219a0e usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x790d9105 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8ed04a96 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x90acb7a4 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9810e59e usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa8a3e149 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbb4c707c usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc3fd6f1e usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xccd072d9 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xce7df2e0 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xdd869553 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe6a55529 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf313ea66 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x02d948cb usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x15f32942 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc602d0 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1c58da89 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x288ad4ba usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2c11e496 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3715bd70 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x48d5a9b6 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x54fa3aea usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x558268f5 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5a942158 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7953cb38 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8112c244 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x92f2bdaa usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9f194b4b usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa36a557c usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb40f6322 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbabd0087 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbd24be39 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc69b12ed usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe1c44d53 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe4b8f385 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfab27c40 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfc3c897d usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x000447e5 usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x018f248e usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x08d713d1 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0c07ce1f usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x23885100 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2fadcbe2 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x52fdea21 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xbe3cc4a1 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc6ef393c usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcecf1ca2 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xdf384fb2 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe858932e usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0569b988 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5699c8bc wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x98e39ef1 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xbf3846bd wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc543b60e wa_process_errored_transfers_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcadec52d wa_urb_enqueue +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/wusb-wa 0xf8e90e3b rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfa4f5013 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x056deb16 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x195e9300 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x52e9b28b wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x71a26d5e wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7a02d28d wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x81e8d7cd wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x85520573 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x910bb7c1 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9b4c3a61 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa3916b39 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xaf817dfc wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcef37a04 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd7cea957 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf93495b0 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x1d3bc334 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x2537ac08 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x7ffe272d i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3f71e2d9 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x49e4a35e umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x60c01250 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x839f7c9d __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x8ea4c117 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x8f8254f4 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd56727e7 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfb463d58 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x032fc15f uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0af3b4db uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x13a9d535 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x167a17bb uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1d6e1a72 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1f5ba3ff uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x223f1b84 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2a3692e7 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x327f2f27 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x38e1568b uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3a6e2b6a uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3b41c3f2 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x47b8c342 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x482467a0 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4abdae47 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x58440197 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5dfa95dc uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6a5bd74f uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x711ff315 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f52e1f1 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8548e212 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x86a0bc3d uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8c2ca2de uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9cdda781 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9ec3911d uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa0a094f4 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa3221e20 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa3e95b49 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa8004988 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xabb3b245 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbc3233fa uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd26fceac uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd6806334 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xea96d73b uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf3681c80 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6028dce uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfa48cc54 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x9c1fa1d0 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x2f69b576 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x308695c1 __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x94fe3665 vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe27b163e vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x31f540d0 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x42ca81b2 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x6503f9c7 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 0x9ecfc5a1 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa59d253c vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xaa9616f5 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 0xf9d64a84 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x136adf93 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf7e41d34 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x021973bd vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0a4ec15e vhost_discard_vq_desc +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 0x42cb173c vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4dca6f98 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x504aa140 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52b39cb6 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x52d3fc90 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x546d2cee vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x55c1af45 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5913caa2 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5b5f7160 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6b52dd47 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c361836 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6c75f62c vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x797aa04c vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7b6b771c vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x835adb90 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb25c722f vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc77bd29d vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd34429a8 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6ebf083 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc617953 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe186fb39 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe46e613c vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe8c3857e vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeadfc911 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec63de40 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0eb9987 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf43a8ed2 vhost_signal +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x037018de ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x22d4c1de ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x30449a7c ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x701cf7ba ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7f2dc7f6 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x89251214 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x944a67ef ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0c853db6 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1dd52598 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x33291fdd auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x51e4973b auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x99505175 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa3265823 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb51927d1 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe0158d28 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf032f42c auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf58a8ade auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x0723fb76 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x3e655d05 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe1ccb820 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x1267cdf4 sh_mobile_meram_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x88714a0e sh_mobile_meram_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xc0039db5 sh_mobile_meram_cache_update +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xcb44d260 sh_mobile_meram_cache_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xf07491b9 sh_mobile_meram_cache_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x019b8344 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x5f4eb1e9 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x29404d56 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3add5da9 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4d1a20ca w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5b2b8e27 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6665b468 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6acf0aca w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7004aa72 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa52d854e w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf392f1f8 w1_write_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb1005556 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc64a022c dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xcdec0904 dlm_posix_get +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 0x0b828d9c lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x37162d5d nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x52c23f1c nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5497fc1e nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5b32ae02 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x62d36f16 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x99af0d9d nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x015a4964 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x022b3c3d nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03bc8c2f nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ab87bb nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06878fd9 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x082e27ac nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0888f1b1 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08a48b30 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0991b7de nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b96d861 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1096c673 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1162d5e6 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x120f40ee nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x150a6900 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x193a24c7 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ed4f8d2 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1efc8dc3 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20dd4ad8 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x271a88f0 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32a42555 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x331fc9bc nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x333db5b2 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33faf121 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39d1b002 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b696528 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c99a676 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cc2b9f8 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3d59a63b nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dd17851 nfs_put_client +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 0x426f8da1 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47c973cb nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b7efe7f nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f3370c1 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51742b35 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55a002d6 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x56adeb00 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58903b14 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b8f8746 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60bfc2e1 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61bf9406 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63588f49 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x638ba547 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63d053a3 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x650bd9e7 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65d1727c nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x685ffadc nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69b537e9 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ced2da0 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x794fa5dc nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cbb9953 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d86f62b nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d8af3d5 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f627fc1 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f8089ce alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x824f384d nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8254f43b nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8440914c nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x845084c8 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8516ed93 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85856b49 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85966818 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85ebf4d4 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87fbd404 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x899ea44f nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e7a98d0 nfs_pageio_resend +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 0x92608037 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x930181a9 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97289a2e nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98f375a2 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x994fc6f0 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b6fcd5e nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f0d6d7e nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ff1a1ad nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2296981 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3fcdbd1 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4e37377 nfs_pgio_header_free +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 0xaabc3c2c nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabe02bec nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac1f95a4 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadaf1596 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf68c2ca nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf6ee21f nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafa386ed nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb221338e nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5eaf379 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb68ddfaf nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb82cb40b nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8804c08 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb8c5156 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbbc6efdb nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc61caed nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0de7051 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc271f164 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3f7b049 nfs_umount_begin +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 0xc61054c5 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7060763 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca8e4ba5 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdd4e6cd nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf5aa94c nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd13a93e3 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd1e769d7 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd50b0b4c nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9426542 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda9b0da6 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb405b98 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb8a6b2c nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb6a5a0 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1c73c2f nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1d36346 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe34788dd register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe534a0bb nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7dbc1f9 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8a3c133 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe926dbd5 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec8f6d04 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed16f770 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef44655f nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3479c22 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5776d5b nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f74ac9 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8ae7941 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfae7ca3a nfs_commitdata_release +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 0xfe49517c nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeced2f8 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfeee7f3e nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x42346161 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05c55f05 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07fb41a6 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0bf6de5e pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ca4400c nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ca5d69c nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0dfd2ca5 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10840c07 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15ef444e pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1cc09c25 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1dd36799 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1eed02b8 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21c03faf pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27acb6ef nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x28212687 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2c2a5382 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3290c6cf nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36373dcf pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x37d347e7 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3943d10f pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b324e9c pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d88dcb2 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4ed5d77d nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x508e7108 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x542a1eef nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54fc43c6 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62389070 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6362b349 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x68be68f9 nfs4_init_ds_session +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 0x7a3ab18c pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7e072201 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84802714 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x861444ee nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x890dbe2a pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8ef09a3c nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9032f553 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92832094 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x94915eab pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96ceceec pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9ba8c9fa _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9c986328 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4ee67f1 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8aa8b59 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa5098fb pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab49836f nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae8ba3b4 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf6cb660 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xafb16875 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb4ad8539 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c036e1 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c3f472 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb88db314 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba20893b pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba4d94b9 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbdcc8697 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1229e57 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0164ed5 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd565062b pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe156ef72 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf62f2ae2 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf90f54e0 pnfs_generic_scan_commit_lists +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 0xa8f027c5 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbe60ae00 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xd73e2c3a opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x23dcbaed nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x469eca86 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 0x54c2be53 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5ada3472 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5f893950 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9470e444 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 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 0xc2e0b586 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 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 0xe23407c1 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xe57a45f2 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1c22dda8 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2691c73a dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x70ab80d1 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xaed90df3 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb5db500a dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xccda8d41 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 0x4684ce88 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 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 0xc09adf3b 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 fs/ocfs2/ocfs2_stackglue 0xe63c39c4 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 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 0x982619d6 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xaf09204d 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 0xc7c15ce4 _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/notifier-error-inject 0x881f8ce3 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc578071d 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 0x516def4c lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa8e16a5f lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x419f0223 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x4323f3de garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x44a793d7 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x679c75c9 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x6a907e69 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xe1f3db2b garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x3c1c70ab mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x4d9848ba mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x5eaef46b mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x6459ba58 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x8337a7cd mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xf4c41d44 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x7dd811a2 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x8c1631de stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0dfc9ec7 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5acacf68 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 0xd59d3670 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x069b36ee l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x0a0d19f4 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2fa5972e l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3795893f l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3b2e5b99 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3da85050 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x64e26b2d bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb9375f6a l2cap_chan_put +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9be2c19a br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9efc4346 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9fd9400f br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa1cae4e8 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb886b819 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbe56cbc2 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc4f94fc2 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcb834ba9 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x8a3d5f81 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xec66105d nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x01ab3f0a dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x11055f93 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14b80968 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d15321c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x21a63eb1 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a06d4ca dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a1a60d3 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46a680b0 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x473fee3d dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48a4aea8 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4bf0991b dccp_recvmsg +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 0x534475a3 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5704f11d dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6b37e401 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f713e10 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x70376e4b dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7f4b268d dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8d7f8638 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f448c6f dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x95067e05 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7627369 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa7aec9d7 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa86fd558 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa2c6396 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xab3b6a29 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb3f07c89 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd70b6066 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe09489c2 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2f19bdc dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3bac6c2 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xefb70109 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe6964e3 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x076a2630 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6f0db80b dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd7e587e3 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xde77e2dc dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfab1b4b8 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xffe99a51 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x16c371b1 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2218c68b ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x28b38a9f ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc114fb12 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc80b3c1e gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xec523295 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0d9cd26d inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x266193e5 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2862a334 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5c6a25a0 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xcd8bb61b inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xfcf537e8 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xa7f2b0fc gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x02efbd2b ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1630a952 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x44cbc70d ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x46a4a2cc ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4f714eca ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x50c8fd5a ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x58d7ca67 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5f0b0b40 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x73bd359f __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x84aa77ef ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x859695f3 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x88b2a262 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8c425118 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb1b044da ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe297014c ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xc82d7603 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x1f302056 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 0x782767a6 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x01c026d7 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x196d46a4 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc2907e5a nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xd5dbd77b nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xdb57f65d 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 0x93a08c97 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 0x016c0666 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x58f27193 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6d77d4f3 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x77018359 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf6ed5d67 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xe233fc04 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x53870cf2 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x66a73c1b tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6ed0c2b3 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9bf5eb3b tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xea4a7c1e tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x33d3268f udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x618d4a2e udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x72860197 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe98ed0f3 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x367a283b ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x43c9fb37 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x495d0ede ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa09d339b ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xaa61ba49 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xef6744ec ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf4fc99ce ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x95564511 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xaa1a475e udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x04c6cba8 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x41390b78 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x6890a753 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 0x5fb0398c nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x4fec01e3 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7e9021e3 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8a3016b8 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb7dcf4fe nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc68832ce 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 0xf6477f0f nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x03ba3c8c nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2341a8ed nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5532ea58 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x5f6a043b nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6724a19f nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x3dbff64a nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x03c3733f __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1de2ddfe l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1fd8a0a6 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x27fa0230 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4ac35d69 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x58702ddb l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x68548e88 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6cb58d98 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a418f3e l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x900b0a13 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa67aaf00 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb0fc2732 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbd07eea9 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd2c63135 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd5be846b l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5fbc751 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xfea041ad l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0d423ad5 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x272d82f6 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4c05c0e0 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x56aa7de2 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x634821a1 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x71d39009 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7f9c4f40 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x87b27c9f ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x898d9dec ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x916d83ed ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x94b2528f ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x97a5b39c ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa366e174 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd3dee591 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe796034b ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x04aa4e8d mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x25710808 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa2fd3931 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbc2852e0 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x12aa6aaa ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x229d35e7 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2fb3a898 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x62a9c23a ip_set_nfnl_put +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 0x7a7b539f ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x7bcd7de8 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x80966f21 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x885c13bc ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8b6d285e ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8d5a85ed 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 0xae643d0f ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb9510d35 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc27c3381 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6ee4def 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 0xf50d794f ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf6888c11 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1121fa96 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x49322cc4 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x4d0bd0bf ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9774b191 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 0x07cfd8c0 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x092c14fc nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bab3efc __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0e753afb nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x121f44be nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13c8f279 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1474a6c0 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17b502f4 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18fc7f1e nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a6183dc nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1df22012 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f7bdbe6 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20259fe5 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x259b7b71 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a4f4dc9 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c255b38 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31a32661 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3433580b nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3b569b77 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3db9bf76 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3fefe612 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x40d86e93 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46c7c4aa nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4868185d nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x55479eee nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x556e5d0c nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x56910b5b nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5ab65b6e nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60cce602 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62510f83 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 0x66ca1713 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x679b6e6d nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6864a38a nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x698008e5 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6992a541 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a693daa nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c9c6fc1 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71205705 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x753e1a1a nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x768d4bce nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x788a7811 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x79677989 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c23561d nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e07aa96 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83d683f4 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87b1b38d nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a3da629 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a703164 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8aaa8b0d nf_ct_l3protos +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 0x9146a2e7 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97ab8449 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c87f4ba nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2ab136b nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa2f2082e nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaa91a4bc nf_connlabels_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 0xaeabd166 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb1f558c1 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb52c2a75 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb80bc4ab nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbab67c3b nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbebb438a nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf4bd850 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0fe51b5 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1842641 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc255eed9 nf_ct_helper_ext_add +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 0xc7965585 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc0dc22f nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd086a87 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xceb1ea00 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd02065ff nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3840899 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3dd064f nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7fc2219 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda8885f6 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb605a79 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde4ba73d seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe10bbc15 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xefb099bd nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe3ba0ad nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x9ecc0be3 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xbfd8d864 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x32820243 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x138f1a91 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1d265e13 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x59221ec7 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x598680d3 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5e3bcb67 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x69d732cf get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb1583555 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc32c6016 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe0798ac5 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfb0556ab set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xe5f21bec nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x48be072f nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8b1a7380 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8e061bcf nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xf3572521 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xf78749e2 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xfe69ba49 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x6356bfe9 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x809c27b6 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x853b41dc ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbca871f2 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcbf363da ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd0dbf165 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf6a252eb ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xa96d9922 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x16142839 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2339a5b1 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2b71450a nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x6e9e19da nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x9f7dd78b 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 0x1f135717 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3af2f12c nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3c19fa93 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4beef63f nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5f18da9c nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x76c9ddd6 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd601bdd8 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd910d62b nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xda479ff9 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x052da683 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x199f63b1 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 0x86972c6b 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 0xd0e6a210 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0ae35160 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2bff47b2 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x41ee7661 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51b6307c nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x60ab688d nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6a87c91f nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7356476f nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x792cea9c nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7f2018a8 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8b4c487b nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97ce6b9e nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa77cea2f nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xaaf05a6b nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb99c58dd nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbe7551bd nft_register_afinfo +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 0xd79739b3 nft_set_elem_destroy +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 0xf0b7df50 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x16af1f66 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x223700d8 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x37bc2855 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x74be9872 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xae8b260c nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc799d3e5 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xee18a27f nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x06c827b7 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xa68c5df4 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xcde6e87c nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x19a38282 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x70fcedfc nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe180e3ce nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xec27423e nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x382b0069 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x45590e97 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5265acd6 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x68b2a902 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7460492b nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf1bfe7d1 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x0d9fc225 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x3d1ff3f1 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x40d5b9ff nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x25213e79 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x38459d4d 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 0x197cea34 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29cc1c73 xt_table_unlock +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 0x560604ef xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7073ca36 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73d4babd xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x838e4830 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x99cc5ece xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xaab664de xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xafab6438 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3e424a8 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc224d2db xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdc0adc73 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf1833702 xt_proto_fini +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 0x077f2b5d nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe9c31a11 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf1248a8f nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa18c3d65 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc9a55bc6 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf479cfad nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x45322ec9 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7aedde10 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7d7c9d95 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x976be730 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9db20948 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa85ce7b3 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd609c150 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe6914ecd ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xecc3aa89 ovs_vport_free +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x12e8ec5f rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x1e3b45cf rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2cc362f5 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x37e5db1e rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x3b5ae8d8 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x40c9db18 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x4622b59b rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x4660463e rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5e8e922c rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x65016e21 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x65622bca rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x66952e29 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x75c5fdb0 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x76169966 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x7a0a5b15 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x7a924e6b rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x85a549ed rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x95663dca rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xa8502395 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xbe9596c6 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xbedf6562 rds_send_drop_acked +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 0xca8a84cb rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xd771ce0c rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf5bc8c83 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x6a9a8071 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xc648a311 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 0x8a8330b7 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 0xee4be703 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf9808369 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00066dc9 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x003218c8 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0038d121 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0248c3a3 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x024ee840 rpcauth_register +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 0x07d4894e xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08d6f29e svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a27508b rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d85e251 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15676919 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17783e6c rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19e77910 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b1a4ebc rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bac2efd _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d174193 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x205d1e84 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x244946ac rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a20119e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bd3f2fd rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cd61a19 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cf47c0d sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed95b53 xprt_free +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 0x2fb614b9 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2fdb0ae4 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3590ad7f xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3699d03c rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36d564ee put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3716c1c3 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x376bbf9e rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38fae656 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x399e19a7 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x39e016b0 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b0d9ce1 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bfd4724 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d57a1a6 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f2193d4 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f258b3b svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x409b446a xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4147762e rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x416a4315 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x426f269a xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x460a65be xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46293a49 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46bd1d63 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4708a5a2 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4852fa09 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49efa380 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a9e2370 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c7259ce xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ce942d7 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f677ba1 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f9068bf sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x513bc349 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5339bda2 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x562cb831 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56f305bd xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x575929ae bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5887992e svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e986a33 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ebda2b0 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ef3d9ec rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fa7b272 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fc9380a cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x629119ac rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x677a0e0b rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x67bddc75 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a70fa6d rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d5f15bf write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ec4f288 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f2897b2 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70640810 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7079564e read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70c1ebbb rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71832975 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71d5b30e rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72cc7cf4 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x731acc5f xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73df88eb svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x740f2994 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x744e211c xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x745d54a0 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x761e3d8e svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a062b28 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a9e1c4f rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7adde4b5 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b075a53 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e6303ed svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fa6d72f svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x809d52ad cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82a7d946 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84632a4c rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x878d2936 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88ee29aa rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x899ca6e1 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c92c41e rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e206583 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f80c13f rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90e5ebf3 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x911af119 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x926dec50 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x956116fe rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95881d29 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96ef1dd2 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x979e3ad7 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98335ecd rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98785da3 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99269b97 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99a50924 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99d5674f auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a4252f7 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a4d9038 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a5b00c1 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d41416a rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d63e3fd svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e9d2916 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f539686 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa07a2ff5 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa08d5e40 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa22b0cb6 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa37e2a27 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa45b033f xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa472db8a xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6549031 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7541d66 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa80c341b xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9ea6f8a rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9edbadc csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab632409 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab710279 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabfd1bfa xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac3469f8 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xadc2c008 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0377cc6 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb142b75b xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb14c44a2 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb385a64d rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4a19787 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5e1e63a xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb63b7e3f svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6fee6cc rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8e3247d svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba4b622e xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbaf6fd0d rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb1403d7 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc88bddb sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcbade5e cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe5e57ea sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf439f32 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc024b2ec xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc140ffe4 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2a9ea0f xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3006372 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6391fdb svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc67151f7 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6a1077f svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9e76f23 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb9a46f9 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd52e72b rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd15b1e3b rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1630a29 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3702c6f rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6181b78 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd64a7e15 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd65ce86e svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8413a09 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8e52fc6 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdaf2a423 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbedf7f5 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd345455 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddda1a89 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdea498aa rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf347108 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdff9b1aa svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe02bc11b rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe28bf4be xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2a68acd xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe36766d1 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe46ef87f xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe643d7a1 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6638de0 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6cce405 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe76c0089 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8e18c22 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecf02678 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed5b9cb3 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedea24b9 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee2fdc83 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee988dbb rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf660d197 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf966eece xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9a76505 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfced321f rpc_get_timeout +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02f9e178 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0c79d5ef vm_sockets_get_local_cid +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x11d7cafa __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x15c0c57c vsock_addr_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2536ec56 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2633ad7d vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2f5cb63c vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3dc5af90 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5365f545 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5e145abe vsock_remove_bound +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 0xae657c79 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb2d74fef vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc6e79a8d vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd8571dd6 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/vmw_vsock/vsock 0xfcef9613 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0ca9bf51 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2044c6de wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x40fea23f wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5e7e4a11 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x69377cb3 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x885a6a65 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x927675a6 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbe27861a wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc99a0684 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xca4439bd wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd57146af wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdbb056bb wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf0f1c933 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0131a821 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x03e7fad0 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x078ac4f0 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x103bc2de cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1317699a cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x248fe823 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3b9c17ef cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3fe1681e cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x458f084f cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x866cbf39 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x90dd4953 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x953a0959 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbbd6bf68 cfg80211_wext_siwmode +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 0x05204b63 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x410481da ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x5287b639 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xb629dd38 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x3eb68e6b __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x7f94c0b5 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1cd0c18d amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x37c20bfa amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x395ab5ea amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x3c6d2dcb amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x65ff2875 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x769f29ff amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x92dfe823 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04d01acc snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0739e2dd snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08c188a9 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x08e2baf9 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b5dc213 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13885a2b snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14d5a3c3 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16a1a3e3 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17e27430 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19c8e6aa snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c1b5768 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1dfeb63a snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f59808c snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23376d40 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x26c21cf0 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2be4d570 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2d0c2d1e snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30500ef7 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3754c336 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x37e6a6d2 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b283112 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c7ca8c7 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4d61629e snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x508e6bb7 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52700c91 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x577464d8 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5b42472a snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60118698 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x64768a79 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x65093689 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68e90584 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6bc18719 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f9eece2 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74dacb9c snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a48f65f snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b7b01a1 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b9861ea snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7cf05d11 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e41d2e3 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x81e225de snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x85297512 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8722ed6a snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8795dfd3 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e56a224 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8fad9145 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x90b2b737 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98a175d3 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ef209a4 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa5943b82 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9e0af89 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf701308 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb28df2a8 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb46570c0 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb570dee snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbfe7cfe7 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc065ea7e snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc51121df snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc7faa944 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf79dc89 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcfb886e7 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd1625776 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd273ed8b snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd7546919 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd8ed4431 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb13c365 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc3193a2 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd68276f snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe79d007c snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb79f6d7 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf201154b snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf26442ed snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0cdea9c6 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbc6cfbc4 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd7106be1 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe9b5d728 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xf34ff1f3 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xff3e0020 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x050b15d3 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05868148 snd_hda_multi_out_analog_cleanup +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 0x06d0dff6 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ac6b4e8 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c3b5e53 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ea5aca7 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x118acba4 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a1afcc __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12348a3e snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12360d5a snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1264b965 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12c2058e snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1310df7d snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13bf189f azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16330714 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16fafd49 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1767423c hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18f6bd8f snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1aca217a azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1add8e35 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e7b5f4b snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22e9c770 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2349cba5 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23e976db snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27162fa7 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27269859 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x29840cd7 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2de1e9fe snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f584686 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30c07816 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3704d516 snd_hda_jack_set_gating_jack +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 0x39be7fde snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3af907ae snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c13db71 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x458c2896 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x471e77a0 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49a17fcd azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49b1d4bf azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d1cedaa snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d20fff5 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4df2f649 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ee58d19 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x520b1197 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59a219dc snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a9116a9 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5aaf9b4b snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d306a4d snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e70b58b snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5eb88f27 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fbda2b7 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6173da8c snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6622f9fc snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68f411c2 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71cdb79d snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76a3aa6d snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x775d604d snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c3adc44 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d4f882b azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80b61882 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80fc5795 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x830ddd5c snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83e1bea8 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bbf8939 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e694a5f snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f30fd66 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f58996e snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fc0b464 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x912e78e3 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91a1c5cf snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x945d1826 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95809c82 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96daaad7 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9941a2be query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d0c062d snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dd02d24 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e1ec811 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa131b6bd snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa309f234 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7571e3d snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xabded6d1 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad0844cf snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadb14fb1 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0b04f3e snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0f93770 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb21fef8f snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb22a8140 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5c9ffe4 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbabc45c9 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc891b8d azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbecc9699 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc09d5b5a snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc28cd695 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc58716c6 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc842fb53 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8e8d3d7 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3f5d073 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd492aed3 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6caa0e7 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7654759 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd772e1cd snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd85d1635 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd87e0302 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd7f7575 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf5443df snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf6a3d89 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 0xe16be729 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6e9eb75 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6f387ba snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea199dff snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb098744 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb500eb0 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb5354fa snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb936ae6 _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 0xf0a87300 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf0ed2462 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1143e57 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf437b2ae snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf469cbe0 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf60017d3 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa861c77 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfcb478de snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfce7a3bc __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd135020 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfe591fd7 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09a00339 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1797111a snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1fb403eb snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x21a3471d snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2d8920d4 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x30eb957a snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3de0a05d snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x476279f1 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x48d44378 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x69159761 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6b659162 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x736f6c12 snd_hda_gen_add_kctl +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 0x807916c4 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 0x87d343bd snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x92b8e888 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9718b4a5 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x976c30f3 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb9d5c2e6 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbcb9f0f6 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf25bfb2c snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xffb0c00c snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x336db692 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xb80b3b78 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x2d3baf12 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3a53d9a7 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 0xc9dabfb7 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xee5168cf cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf7b5a441 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x64044d2a es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x90f32e34 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x08f634ca max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x7573538b max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1912ef94 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x26997414 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x79e54243 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc7d68c58 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-rt5640 0xf19e9900 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0512c147 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xa928a762 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x769bec8b 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 0xa806964c 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 0x08fec299 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2407ea00 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x649cde4d sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x90840003 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf682fd96 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xd767e8bc devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x308eb55a ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x866136e6 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x50f6d047 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xb58b7e1b tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x7b006dc7 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x0f7b3486 twl6040_hs_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0x46fc1590 twl6040_get_trim_value +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xb1568073 twl6040_get_dl1_gain +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xc4c014da twl6040_get_hs_step_size +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-twl6040 0xe3e2dbde twl6040_get_clk_id +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x109afe42 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x3cd6fe55 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 0x65674ab7 wm_hubs_handle_analogue_pdata +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 0x923be4c5 wm_hubs_add_analogue_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd5d30185 wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd76dabbd wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xe9eb46bf wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xec0f626e wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3b4f014f wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4824ed86 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7de83cfd wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb7d8ed70 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xb906bddb wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x5c69cdda wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x71d2fac0 wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x8abecde5 wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/davinci/snd-soc-edma 0xc76ecaee edma_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x755c8eb5 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xbfc65404 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/omap/snd-soc-omap-mcpdm 0x19d62662 omap_mcpdm_configure_dn_offsets +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x28201297 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x51c58d63 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x686939e1 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xbefe1df8 asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0xb34e19b3 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 0x5357b1ca samsung_asoc_init_dma_data +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xc19dccbd samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x0bcd3665 tegra_pcm_platform_register +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0x642b635a tegra_pcm_platform_register_with_chan_names +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-pcm 0xdf3733c0 tegra_pcm_platform_unregister +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0x0819f4ad tegra_asoc_utils_init +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xc08dc3e8 tegra_asoc_utils_set_ac97_rate +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xcc2248aa tegra_asoc_utils_set_rate +EXPORT_SYMBOL_GPL sound/soc/tegra/snd-soc-tegra-utils 0xe8dd6624 tegra_asoc_utils_fini +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 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2101294d line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x37408695 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x408f06d1 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x4759e22c line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x58fe0029 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x590a577d line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x70cba0c9 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x781390aa line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8a947558 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 0xaa922591 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xaf7d2206 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc2986408 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf31a3bfa line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfd818c63 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfe993544 line6_init_pcm +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 0x00217b3c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x00324664 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x003693e9 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x00543de0 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x0061a6ce tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006d2b67 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x008990c5 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x008ac165 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x0099ea82 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x00ccab13 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00cfab6b ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x00d750e4 ip6_datagram_connect +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 0x011de292 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x013285db snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x01464328 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x0152e055 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x01692447 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x017156b6 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0x0172868e __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x017bcbde tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0183ca84 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x018882f7 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x018edcce cpdma_ctlr_dump +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01ca406b usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01fbd2ec snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x022f9349 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x023341ff xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x0242e125 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x02af3251 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x02bbe08f stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x02c55fc0 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x02d33d86 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x02d95c95 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x02fbf83e usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0300ff57 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x030a132c sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x031d3fd5 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x034cde78 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x0363ea89 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x036f7e0b sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0386efcf snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x03951d8e perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a366fc balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x0412c43b regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x0427bb34 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048dc38a ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x048ee492 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0x049d772e usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x04a22c0e tegra_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04afc8df regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04f65285 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x05218f8d pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x05230c67 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x0532db6e devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x053b7026 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x0549bf6b regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0551d00a cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x056dbcc2 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x0576ef70 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x0579e35b split_page +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05932187 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x05ce4b82 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x05d94dbe tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x05fc4e5a regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x060ae919 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x061fd3ff pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x0649d251 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06781d9b disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x0693b786 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x0697aa5e dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x06c478cc balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06ed82de vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x07284030 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x072c5787 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x0732ff92 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x074da77f skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0767f070 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x077a2e10 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x078b7b82 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x078eec40 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x07901195 bgpio_remove +EXPORT_SYMBOL_GPL vmlinux 0x079880dd gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c5f401 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x07f6e612 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x08123f9a thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08132576 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x081a91b1 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x0822d3e4 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x083f1832 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0858b673 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x086d73a2 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x086d7d76 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL vmlinux 0x08ab7df0 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x08c9c8e2 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x08d43e45 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x08ef99a8 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x08f2b962 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x08f2c7d2 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x08f8780a extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092ca842 omap_dm_timer_set_match +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0960937a pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x096b7b36 musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x09761939 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x097af4cf mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0x097e9db8 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x099cac74 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x09ad8d28 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x0a0e3985 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x0a267175 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x0a289755 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x0a336f92 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0a5c07e9 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x0a5c6844 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x0a5e3881 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0a85a659 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x0ab2537e irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0abce4a4 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b3926d6 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x0b5e3778 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x0b65c14f pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x0b68c7f5 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0b830c0e deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x0b941a34 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x0ba44246 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address +EXPORT_SYMBOL_GPL vmlinux 0x0bd7882c class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c033f8a mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c327ecf crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x0c81ee80 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0c92f32e devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0cb62ab1 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x0cbf9771 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc6bae0 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x0cd1bc4b dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0x0cd5c788 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x0ce0cb8d inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x0cf50cda swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x0d07272f dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x0d318a79 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5496d8 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d814a5d ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x0dbe85c3 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x0dcf1014 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0dcfd98b bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x0dd155e5 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddb8817 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0x0dff8056 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x0e1b2bd5 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x0e3136bc ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x0e58f230 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x0e59402a regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x0e6ee2b6 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x0e80e4b3 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e91773e mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x0e98fba7 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x0ecf1bc9 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x0efafc16 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x0f1b85c9 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f35f347 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x0f3e375d virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x0f481b70 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0f6c1d6b udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f9d9f4b class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0fa8369e __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0fb3cb1d power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0fcfa08b ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0x0fe5da5f pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x1006c05f find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x10126859 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1021295f scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x106f0218 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x106f9c51 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x10862339 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x108ebce7 snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x10a4edf6 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x10b6e93d skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x115e51a0 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x11637eda fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x11662e3f skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x1171935a omap_dm_timer_set_load_start +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117b4905 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x11802055 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1183300d irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x118fcc48 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x11973f5d devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11d95ddc subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x11ebd39c io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x11fd909d dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x121439a2 gpiochip_set_chained_irqchip +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 0x1287b02e eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x12999879 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x12b3c041 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x12c8168b usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x12cbb782 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x12d8b058 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x12ef666e usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x1306e141 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0x13196c79 rtc_device_register +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 0x134849e9 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x137fa859 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x13984ba7 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x13a33f68 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x13ac969c debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x13b678cd register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13c62ffa regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x13c65c8b pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x13dbc43b da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x141cbb1e pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x142ef0e7 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x143d1a48 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x14403e36 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x145107b6 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x1476f62e rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14cef111 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x14d9ae29 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x14d9befe get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x15083ec9 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x1512658a ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1512698c usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x151f1730 put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x155ac883 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x155b1f02 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x1560e1d2 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1599a332 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x15b30da0 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x15cf78df sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15d4ca98 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x15e471e6 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x163fa7f2 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1653cbda xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x169a3334 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x16c8f907 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x16d3d392 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x16e313fb __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x16fef7ef ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x170e127a devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x17166a47 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x1717a05d omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x172dda8b mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1733a676 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x17400ae7 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x17405494 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x1748355c driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x17590d4f event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x17687bd4 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x177b1fc1 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17cfedd1 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x17d1e716 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x1811b308 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x181899e2 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186e8d0b cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL vmlinux 0x1875a1fa fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x1876a70d ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18a4c051 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x18f1cdaa hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1915257b pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x192bd35a wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x19705f1b __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x198436d5 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x198dc1fe pinctrl_utils_reserve_map +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 0x19bb970d __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a06e054 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a3975c6 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a4da8b6 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x1a55569a wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1a5be37c ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1a6058ca dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x1a6137f7 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a6f4ec9 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x1a731898 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x1a8c890b __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x1ac2e734 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1af07110 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x1af0db60 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x1b05c4e3 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1b15fa30 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1b32e010 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x1b3609f8 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x1b3d0065 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x1b3f76f2 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b73eb23 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b74ec6f omap_dm_timer_request +EXPORT_SYMBOL_GPL vmlinux 0x1b867f1c __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8dfd1a xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x1b8f0572 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba813cb devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1bb68b9c nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bc6482d usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x1bea9404 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1bec36a4 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x1c141384 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x1c17273b __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0x1c193425 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1c364c89 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x1c3c64f1 cpsw_ale_create +EXPORT_SYMBOL_GPL vmlinux 0x1c4cffb9 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5ac301 put_pid +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 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c8554f5 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1ce81ab3 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x1d17a995 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d27a576 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x1d2d4a2f usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1d31052f ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x1d5047f4 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x1d51333b clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d662414 regmap_irq_get_domain +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 0x1d85a059 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x1d8b1379 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x1d9ec2fa watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1dd8d17e mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x1ddcedd3 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1ddd2333 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x1de873b4 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x1e1a9eea rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e1be81e bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x1e5a004d __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e71079c max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x1e76ff7b power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7d6157 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1e8a9fef device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1eab9b81 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ece9f4f pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1f5b00e6 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x1f5d06d2 ata_bmdma_status +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 0x1f8fc2c9 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1f8fc905 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x1fa219c7 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x1fbea379 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1fc09ce9 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x1fd907de devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1fe57169 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x1fefd7b8 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x1ff5234d bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1ff86609 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x2008118e usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x20205bb6 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x20520d14 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x205757c0 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x207521f4 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20869545 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20943543 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x20988afd spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x20a0057b pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x20c1901d ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x20df434d of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x20f7bae7 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x211337e6 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2163def2 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x218dcd0b ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bb1059 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x21c2f381 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d564e2 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x21e3c0e3 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x21e5e97d da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x21e7dff7 mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x21f449c0 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x2203d2fe ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x2214fc26 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x22427eb1 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x2257459f ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x228acaec tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22971d44 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x22a0f734 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x22bef1e1 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x22c31597 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x22c9696b blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x22d730f1 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x22e2c449 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x22eaedf6 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x22edf395 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x22f4419c bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x22f895e5 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x22fcecc3 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x22ff4a44 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x23322a65 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x2335dec7 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x234140bb snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0x235f1d90 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x2368b26d of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x236e130d scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b04d14 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x23de2fed pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x23ef3a54 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23fb5705 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x2402bb21 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x243df9cc regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244c1899 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x246560dd dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x249dea99 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x24a37afa module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24d8c6cb register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ed7aaf __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24fec4d9 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x250b9b10 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x250ffbf1 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25346dc5 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x25494be1 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x257a9d54 uniphier_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x25875dcd hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x25e53781 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x25f417cf led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x260f57b8 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x2621a333 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x2629cacb cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2640fbc0 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x26468629 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267039cf sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x2682b02e device_del +EXPORT_SYMBOL_GPL vmlinux 0x26a15c84 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL vmlinux 0x26adb815 thread_notify_head +EXPORT_SYMBOL_GPL vmlinux 0x26b34c86 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c0d05d udp6_lib_lookup +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 0x26e02b52 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x26e02ba4 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x274cefa8 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x2773cb76 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278c3b21 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x27a6f3ff __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x27ba2d12 omap_dm_timer_trigger +EXPORT_SYMBOL_GPL vmlinux 0x27bc933e led_sysfs_enable +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 0x28210ed8 snd_soc_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x283d8634 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x283ee5f5 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x284eee64 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x28670422 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x287439d4 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x287cac33 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x28a59085 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x28c1be47 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x28c57c92 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x28e0964d posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x28eec12f invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x291f408e blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x29282c14 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x29350cb0 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x293aec20 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x294b97af snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x29513f39 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x2956d110 snd_soc_remove_platform +EXPORT_SYMBOL_GPL vmlinux 0x29595f4e phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x296c8b89 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x29785641 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x298754b6 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x2998613f __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x29a5b6cb unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x29cadd8d inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x29ce2929 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x2a1959ed __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x2a36e669 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x2a39ff93 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x2a48daf5 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x2a5eb82c device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x2a85805e usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x2acf245f snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2adfb3b9 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x2aee2ae8 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2afa4fea blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2b01602e blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x2b11822f dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x2b19e0a5 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2b1ed0ae crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b32e194 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2b435768 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2b4a40ff __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x2b672100 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x2b767ea5 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x2b8993a9 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b95a455 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x2bac51ca regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x2bd16b4e snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x2bf5f4e5 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x2c139b9d of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3d156a pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x2c49f4dc cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x2c60806c crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2c7a1917 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x2c7b72e8 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8c0f1c platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x2c9578bd fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9c7db7 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2cb53eb2 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x2cc1c571 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x2cc1e42e of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x2ccb2ce1 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x2cdcbdc5 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2ceabb07 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x2cf4d826 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0x2cfb1411 pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x2cfb965c pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x2d0f4999 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2e998b pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4c09e8 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d6f9c5b wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x2d795113 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2dd09153 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x2dd9bc8c snd_soc_add_platform +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2e1436bb proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x2e220635 imx_pcm_dma_init +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e278f88 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x2e2cb721 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x2e2e7631 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e322121 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e47c7eb rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x2e7ce537 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2e9db4dd gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x2e9f6af6 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ed1cd84 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x2edc1648 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x2eea6547 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2eed9763 snd_soc_dpcm_get_substream +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 0x2f0f482c anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x2f0fa793 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2f2a7200 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f5f7c1a pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2f99d905 nand_release +EXPORT_SYMBOL_GPL vmlinux 0x2faa80fb vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd7a56d extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fe44a55 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL vmlinux 0x302b678d blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x3051ab2c ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x305cd8f4 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30654dc9 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x306853e4 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x30693bb7 imx_audmux_v1_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x306f65fc inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x30986dee devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30c70f32 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0x30c8e116 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310b2d68 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312d3425 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x31337d02 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x313b58e2 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x313dfe3f ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x3144b358 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x3166fa65 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x3196dfbd modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d03c41 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x31d8788b blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x31dc8246 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x31ecb2e0 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x31ed2056 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x31ed7c0e xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x31fa80db of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x32072db8 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x3214a387 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x321b6fda usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x322a2b0b crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x323e55e8 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x3240f224 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x3253df8e l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32a3cbd2 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32cf3c6f pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x32e9cd74 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x32f5f0ce ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x32fa6c6e fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x32fd5332 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x3319f55d snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x331c2892 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x3324a14e irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x3332a152 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335d0c16 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33616cee snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x336b5e8a inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x33785721 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x338983c1 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x33a1b769 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x33b2b080 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x33b7ff78 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x33bb3bcf pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x33bfbc45 powercap_unregister_zone +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 0x34536cf3 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a6cf93 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34c2aefe uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x34c88cef dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x34d1d74d __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x34d3f2ee blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x34d446f1 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x34e63629 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x35090529 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x3514c183 cpsw_ale_dump +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x3529dbba disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x352e8be8 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x353c113e ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x3545aa68 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3545ae42 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x355ca853 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35b9df7c sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x35db6080 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35feadf5 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36160798 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x361e5706 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x3622d0ff regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x362950de sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x362cd10c regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x36587973 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x365ec6e0 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x3669f8ad snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x36965290 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a15a18 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x36abd827 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x36be5587 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36ea324e wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x36f88273 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x36f98b66 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x36fa8b61 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x36ffff29 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x370f0f11 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x37379943 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x373ebaf2 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x376117dd regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x37730d63 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x3782b5f9 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x379084bd pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3792dd9f ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0x379fc1c1 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x37c43d12 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x37ccdb5a snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL vmlinux 0x37e31011 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x37ff4a45 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x380c2577 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x38180207 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x383e56af usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x386a5373 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x3899518f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38e39262 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x39310c74 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x39545a79 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x3977dfc7 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x39920bfb subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39dfb5cc snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39eb9b36 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x3a23c55d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3b57df crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a40ae43 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x3a474044 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a6a8779 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x3a93f6eb snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL vmlinux 0x3a9a3faf regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa0ea6a scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x3aa4989e blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x3ab15b28 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x3ab5f768 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x3abb0a4f pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3ac0d17c __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x3ac26e85 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3aec9e11 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x3b011163 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x3b0310c7 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x3b23d797 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x3b42a4b2 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b656e82 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x3b78d848 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x3b87394b __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3b8f3feb device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x3b96080b ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x3bbce950 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x3bc6b0ac __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x3beefa13 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x3bfa6694 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x3c269474 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x3c39f598 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x3c3ced2e usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x3c3e8759 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x3c577110 devm_get_free_pages +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 0x3ce2130b crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x3ce9aa9f da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x3d0032c0 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x3d02725c crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x3d16f4d0 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x3d25dd0c dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d61791f __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x3db94768 crypto_register_aeads +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 0x3ddc35c0 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dec9b02 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3df8fd16 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x3e09abaf ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x3e13176a wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3e1e9716 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e31d9c3 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x3e368cf2 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3e51ae56 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7159d7 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0x3e943744 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x3e97504a serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x3e9ac852 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x3eaee07c tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x3ec471e0 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f068570 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x3f326358 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x3f35fa9f sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3f3b3ce2 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x3f3ff121 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x3f5e0fb2 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x3f664fa5 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x3f739d96 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3f86124e cpsw_ale_start +EXPORT_SYMBOL_GPL vmlinux 0x3fb4cb86 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x3fb654a6 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x3fd4223e led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3fdf7fbf dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3fdfcb62 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x3ffebba6 omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL vmlinux 0x401c474b device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4051c8de platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40a0c4a9 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b12226 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x40bd76b8 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40fcd7ba mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x410df537 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x4117dcba ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x412fb84c ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x4132a613 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x413ac0bc led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x415d4e9a pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x41712cdc user_update +EXPORT_SYMBOL_GPL vmlinux 0x417b394e vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41924aae tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x419f3fc7 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x41c5274c __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41ef517b blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x41fea452 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420943e8 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x42138bfc posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x4220be88 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x4237a8cd __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x4257d8bf irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4271fd1c of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42abeb06 mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42bfab47 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x42c9efa4 amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x42fe849a vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x430fe1d7 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0x4313bf3c usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x431e7d92 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x432d3802 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x432db326 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0x434c4445 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x435ac899 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x4365c77e dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x437ce585 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x4399c916 dev_pm_opp_of_get_sharing_cpus +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 0x440a92c7 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x4418e630 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x444c516d ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x444fef23 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x44541e97 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x4454c25f aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x44823616 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x448921c3 snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44f6a389 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x44fd2499 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x451cafb5 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4524dcc5 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x452d95a7 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x45520f49 omap_dm_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x456e807a usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457be8cd shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x45808b6b sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45e59a28 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x45e744e4 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x45ec7be5 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x45ef4ae1 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x45ff3e0c gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46062859 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x46108804 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x46270e99 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x464f0a83 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x4653b21d of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x46553793 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x4664a800 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4679a1ee virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4691d115 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x46b308e6 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x46b9d7b9 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x46c62ae5 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x46dbc508 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x46eda7c7 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46f9d5e5 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0x47005dca class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x470f1070 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x471b6a63 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472ff1d8 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x473f336a serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x47519ec3 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0x475283c6 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x475afa23 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4783937c crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47971ae5 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47ba00c9 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47efaa4f component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x47f79705 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4809e23f put_device +EXPORT_SYMBOL_GPL vmlinux 0x480b048b ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4837bdca key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x484d7cc1 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x4851e38d of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x485aa4fd mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x486fbb03 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x4871fb7c __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x487764fa blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48accb56 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x48fee7d4 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4900ccca usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x49350871 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x49488db5 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x494f4a38 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4955a43e clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x495a856a rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x498246c8 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x498e5dc3 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a96d1a max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x49c9b205 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x49e40cee regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49eb7423 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x49ecabfe bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x49f1d0f7 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x49fdb2a9 omap_dm_timer_start +EXPORT_SYMBOL_GPL vmlinux 0x4a1c32d4 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x4a36898e get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x4a3fa95c tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4a712ba4 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x4a8a5147 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4acdc0cb sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0x4ad09b70 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ad2e952 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x4ae4e6f4 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x4af76a0a omap_dm_timer_set_pwm +EXPORT_SYMBOL_GPL vmlinux 0x4af84ba9 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x4af8b99f sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x4afbbb04 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x4b0558b4 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4b0d1a85 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x4b2b9e44 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x4b316a56 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4b6129f4 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x4b7c8e00 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x4b857701 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4b91bc4a snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL vmlinux 0x4b9edaf4 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4bb0e692 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x4bc695b6 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x4bc6e2dd inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x4bcf19ae ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4be2d829 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x4bee6a07 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x4bf118c3 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x4bff9776 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x4c186da3 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4c3776a8 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x4c3dd579 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x4c489a96 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x4c4b0f7b event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6e6ed6 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x4c8bde23 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x4c8f6e2a usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x4c9f39e5 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x4ca0061d of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x4cb9099e sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x4ccf443e subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x4cda5934 cpdma_ctlr_create +EXPORT_SYMBOL_GPL vmlinux 0x4ce7dc25 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4ce8572b led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d069724 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4d0f263d ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d3b0d58 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x4d7413d2 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x4d87e5bf trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x4d8ca86d sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x4d91a20c bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x4da5442a tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x4dad425d cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x4daf603c spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x4dd639fc usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x4dd92808 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df10288 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x4df92c7a regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x4e085a68 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x4e0ea2e8 regulator_unregister_supply_alias +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 0x4e2cd2f7 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x4e321dc5 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x4e389b7e set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x4e61e840 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x4e75f964 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x4e900eb2 usb_udc_attach_driver +EXPORT_SYMBOL_GPL vmlinux 0x4e9f8b5f platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x4eb554f0 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x4ebf5246 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x4ed3a34b crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efda0ac syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f01d318 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x4f237512 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f857abc scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x4f886531 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4f8c4653 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fac1fd2 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x4fcd3e26 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ffa682c xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x5008767e rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x502cdc24 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x502ed88c __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x503e51a6 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x504408c0 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5053eccc __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50581f40 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x508f5c32 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a7ecf6 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x50ac097e devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50cd977b key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x50deeefd ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50eabd92 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51049a8d stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x511f7473 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x515d5050 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x517071f5 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x51855f81 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x518c0379 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x51ccb0cb of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x51f37e85 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x51f3cb39 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x5200c3b4 usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x52030c6c __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x5208e43b sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x5228a0b7 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x523b6a0c rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x526db82c blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5275ac41 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x52807f8e rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x52835556 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x5291cae3 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5295a00c perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x5296e7b0 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x529a9343 tegra_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a4f42a usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x52c0a9da usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x52c0d5d8 scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x52dcd3e1 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x531c833c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x532387fb snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x5375b569 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x53845f74 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x53bb4d64 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x53e2361a crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x5401f5c8 mbox_request_channel +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 0x544eb45b ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x544fa9e5 snd_soc_register_codec +EXPORT_SYMBOL_GPL vmlinux 0x545fec86 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546bb6e1 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x547d8bee iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x547f35bc tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x5482ea1b iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x5484c6f0 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5488539f file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x548d7fa1 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54b03d9d debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x54ba2665 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x54c68f2c ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x54cd8d98 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54daf265 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x550af9a6 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5543c493 register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x556aaec7 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x556bb1c7 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5596c5ca dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x55a21dc8 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x55bb35ef sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x55ee87ba tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x5619658a mtd_erase_callback +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 0x56574bf7 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x565c2fbe of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56c65c23 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x56d31820 musb_writel +EXPORT_SYMBOL_GPL vmlinux 0x56d6936e ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56df590f devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x56f4fdd4 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x56fe9d43 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x575f6be1 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x5775c2f1 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57946f98 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57ca3934 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x57da5ced uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x57e76bcd console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x58007e03 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x58469d7e dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x58631dab imx_audmux_v2_configure_port +EXPORT_SYMBOL_GPL vmlinux 0x587dec64 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x5880d964 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a63682 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x58d4bf26 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x59017171 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x5955686f relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x5956bbd6 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL vmlinux 0x597e5c05 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x5996a05f snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x59a44ed0 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x59ad0033 mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0x59b1a278 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a25a1fd rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x5a3b1a38 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x5a433841 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x5a4f3b68 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x5a5df40f pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7829d5 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a817718 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x5a8bf332 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x5a8d9364 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x5a8f213c cpdma_ctlr_eoi +EXPORT_SYMBOL_GPL vmlinux 0x5aaed50b pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x5ac9db27 mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0x5aca73aa snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x5ae4e5f4 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x5ae4fad0 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x5afa2ded percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x5b32760c spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5b356251 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b39fe10 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5b3cb2a9 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b5b288d regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x5b60cbd9 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x5b746fd3 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x5b82e1d4 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x5b8d014c scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x5bb51329 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x5bb76e8d nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x5bb8ae5c virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdac8a8 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bdf210d sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x5c122ad3 snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop +EXPORT_SYMBOL_GPL vmlinux 0x5c44e2f4 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c732022 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x5c9288f8 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cbbc2e3 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd0e804 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x5cf61d40 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x5d17bd1e kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x5d2e1040 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x5d4ad601 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5d4e0eb9 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x5d583a41 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5d64b238 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x5d6eba44 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d7b0475 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x5d7d4511 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5d9c5467 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x5da42f7e relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da71709 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x5dca7f66 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x5dd5fd6c device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5ddad5d0 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x5df24c20 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x5dfc1bf9 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e0bd9ac usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x5e218aa9 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5e3dd8ec crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5e423505 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x5e478368 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5366eb regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x5e746a95 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x5e82a046 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x5ed76f63 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x5ef380df rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5ef9e380 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5f110eb7 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x5f290dbd mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5f2d6523 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0x5f4af1bd root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f50d580 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f67d3f0 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x5f692a1c clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x5f6bf081 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x5f87f5d2 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5faa0674 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x5fbd8dab dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x5fd12862 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x5fe69eec mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0x5ffa52e1 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x60123403 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x602c9d5f usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x606f89dd ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x6070e71b ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x60733737 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x6089a2a7 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x608eee97 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a93930 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x60b9d296 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x60bdbb4f clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x60c4ec97 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x60c8bef7 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60ceb94c snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60e78dc8 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60ebd312 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x60eceb12 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x60fc4d58 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x6138b42e pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x61439ac7 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x614dcd66 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6153fa14 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x61a40dc3 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x61abb10b inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x61c6c253 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x61dd88e1 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x61fc1432 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x622858a2 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x622bfe29 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x624e315f __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x6261c46c devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x626553ec snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x626c7ef3 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x62a14aac dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0x62ce458f add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x62d6548f tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x62d9cce9 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6301f49d __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6318b3b2 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x633236fd gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x633a1d1c ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x6367dbbb usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x637ded5e ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x6390ebee dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x639ee11f skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x63cd8275 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x63cfc447 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x63d320a9 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e91a3c usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6411bfa8 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x6438d41e srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x643f3756 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x645c295f edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6479e92b fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x64986fdf device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x64f011bd device_reset +EXPORT_SYMBOL_GPL vmlinux 0x64f042b2 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x65235d14 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6535ea91 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x6537ffef pm_generic_thaw_early +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 0x65b1dfc3 arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x65b567f2 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e24ad2 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x65ed4d15 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x66025a74 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x66117e45 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661699de serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6618803c usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6649f2fb pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0x664ee6a8 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x665615e6 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x6661b8c4 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x666c7756 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x667e0036 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x669fdbcd ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66cce045 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66d89f2b of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x66ef9ace pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x66f43836 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x66f4df91 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x670be672 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x672e5f8c blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x67335e61 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x6735c416 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x677427fd fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x6781cccd devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x678e87e0 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67c4d644 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x67d5541c ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x67e007de devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x682f66cb rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68744d5b skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x687c8b70 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x68a868cd netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x68aaa9ee add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0x68c8d2c7 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x68cf64a2 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68e527c6 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x68ec7dd7 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x68eed343 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x690e3726 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x69123d86 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x691f0b09 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693536a1 hvc_remove +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 0x69558409 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x695636de regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x69565aed pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697c9738 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698d7e55 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x69937ca9 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x69af8e46 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x69b6727c usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x69dd6c88 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x69f1f8d0 snd_soc_platform_read +EXPORT_SYMBOL_GPL vmlinux 0x69fa19ea usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x6a0a7d5e blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a19a60b pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a453c79 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5b1990 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6b97b2 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x6a7d342c of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x6a7ed48b virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x6aa6128e serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x6ab5600d find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x6ab7818c thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6ac60601 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6ad1bd66 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x6ae37fee wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6aef6552 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x6af4082f reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x6b1563c8 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x6b1d2ad1 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x6b25b605 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b4e80d3 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b810b74 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6ba2fd55 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x6ba32256 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x6c069853 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0a03f0 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c3665e0 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c702604 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca67a69 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd900d2 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6cd9dc6d raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x6ceaf3c1 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x6cef4b8e snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x6d1fca42 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d2cf48c snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x6d42e4ac usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6d590346 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x6d6d68bf md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6d7c90c5 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6d85e24b usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x6d8b8ff7 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x6d8f8a8c irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x6da08d71 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6dbb25cd regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x6de7d2ba power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e07651c disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x6e0f675c find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6e2469cf vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x6e2a102b fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x6e3cd9ab devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e567904 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x6e681695 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x6e6cbc66 user_read +EXPORT_SYMBOL_GPL vmlinux 0x6e74e229 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7991a0 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8a97db device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6e9abbad vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x6e9efbbe pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x6ebd4a64 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x6ef6cff8 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6f10bf28 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x6f1a2194 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f2975c0 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x6f335c7a pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x6f36a90b inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x6f5c638f kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f8113b9 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x6f9b32f5 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x6fd4ae8c sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe43e8f pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x6fe470af ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x6fe7e0dc perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x6ff441ed iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6fff4d82 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x701045de evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x7022571b fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x70326e36 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70910be9 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x7093972d device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x70968ad1 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x70a446e3 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x70b9fc1e regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x70bf2dc1 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70c836a6 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d152ab ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x70dbebda devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x70dc67bf tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x70ec3112 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7125cc85 omap_dm_timer_set_load +EXPORT_SYMBOL_GPL vmlinux 0x71525585 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7169dae9 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x7170ed79 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x71868db2 __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0x71873eae regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x718d318d scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71b9adc1 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x71ba356c power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71dcd250 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x71f433e6 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7211e110 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7216e06e pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device +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 0x727c499f extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x72963f1d mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x72b72769 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x72b9bc03 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x72bf5c9d pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x72c41ef6 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x72d4a115 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x72d5e2ad skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x72f9ad51 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x72fa3302 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x7311013d tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x731bec0e omap_dm_timer_request_by_node +EXPORT_SYMBOL_GPL vmlinux 0x731f7b66 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7333e55a ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73afcbbe irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x73b02f64 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x73b973fc snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73be2a6c irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x7412dfda ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x742fe66f regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7450198f virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74ab17b1 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bc2dac sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x74cbce3f ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x74df1839 sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0x74f008f1 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x74fa240f mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x74fc1800 mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x74ff59f8 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x7514926a pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x7520e5cd driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7536c226 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x75738f01 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x75827b56 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x758e273d pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x758f6a91 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75923f3f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x75959418 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x759ccc20 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x75a988bb snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x75c730e9 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x76085c22 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x76299681 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create +EXPORT_SYMBOL_GPL vmlinux 0x76550490 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x76690fd6 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x76744c64 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76af62da of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x76bae9e7 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x76bdc072 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x76ca402d part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76f37050 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7717646c fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x77244ea7 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7738e103 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7764b7c9 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x77768676 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x77959377 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x77ac483b snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b0d0d0 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x77ba4c9c task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x77bb4a59 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x77d190fa inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x77dc064e __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x77ee8b7b snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x78027ec8 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x78062653 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x7806b7f2 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x781166cf bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x781a3847 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x78278654 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x7853559f dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x7856bb0a bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x78583e32 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x788f8921 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x788f9bc0 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x788fd3b3 imx_pcm_fiq_exit +EXPORT_SYMBOL_GPL vmlinux 0x78a3fbd9 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78aeba10 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x78afa3ec gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x78c0632a omapdss_of_get_next_port +EXPORT_SYMBOL_GPL vmlinux 0x78cfcba6 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x78e5b27f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x79057388 fuse_file_poll +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 0x795452ff tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x798036b2 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x798d5e05 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x79971b70 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x79cac79e sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x79dd3746 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x79ddfb2d snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79ebae20 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x79f40542 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x79f659ac __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x79f808da usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x79fe7cb3 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x79fe9f35 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7a133c6f debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7a18ef78 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x7a28ea63 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a34c200 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x7a37bae4 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x7a584e93 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x7a8b528f i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7acf6630 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7b0e1432 cpsw_phy_sel +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b0f5e2b platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x7b184124 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b372d8c irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7b3d2cb8 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b3f59fd blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x7b4b3dac driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7b537117 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x7b5dc4df find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x7b5f368d subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7b6f49a4 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7b7d5770 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x7b829881 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0x7b89663e relay_open +EXPORT_SYMBOL_GPL vmlinux 0x7bc6728d cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x7be8befe blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x7c0928f3 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c81622f unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca71462 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7cac7b83 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x7ccf0efa usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce77302 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cef4c47 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x7cf499ce of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x7cfd86e5 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x7d023e16 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x7d114dd2 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0x7d2bd626 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7d554be5 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5a5310 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x7d62f942 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x7d6e8398 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x7d723f9a __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x7d73c321 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x7d776e72 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x7da622c5 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db67ac4 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7dbbf653 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e046819 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x7e0ee2ba uniphier_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x7e316799 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x7e3201f4 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x7e34fec7 ata_port_wait_eh +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 0x7ea12553 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x7ea2c06d pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7ea979b2 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7eab243b ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x7eac58f6 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7eb0a0bb fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7ef15ad3 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7f1faab1 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7f1fb53d snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x7f226b68 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f3514f0 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7f4d086d br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x7f5e568b usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x7f62d6e0 sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0x7f652564 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7f670c1e rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x7f6a6b2e of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7f6af664 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f9a0d17 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc23711 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7ff04355 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x8009e076 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x8018e0fa mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0x8019f522 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x801fb62d devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x803908a2 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x8042f53f snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0x8043aafc omap_dm_timer_set_int_enable +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x8078821b wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80919595 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x809b6afa __module_address +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d6d3eb vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x80dd2c32 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x80e74726 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x80ef5df1 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x810d7d59 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8122c728 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x8138094e rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8148a621 soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81703d40 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x81719026 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x81839ba1 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x81980095 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x81a5439b usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x81ddb29e ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x81e51388 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x81e52246 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x8232496c sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x82427146 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x828ad957 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x829bef8b adp5520_write +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 0x82de5562 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x82eafdda usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x82f1c498 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x83393afe device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x839015a1 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x83af6c1c dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x83b4a32d regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x83b66df7 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x83c199ca unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x83c1df5d bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x83c44de9 snd_soc_write +EXPORT_SYMBOL_GPL vmlinux 0x83c7c328 ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x83c7dd1f fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x8418ffc6 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x8425822f virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x842b5b80 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x84405740 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x844421ac xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x844938c5 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x845c2bfa snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x845de20b ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x84688099 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x84761455 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x848140b9 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x848aeb63 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x849eab91 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b957b5 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x84d2b99e ata_host_resume +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 0x8528575b ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x85380f4e snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x85605726 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x85650e40 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x8583808c snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85884d88 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x85bcfa8d spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85f3fb53 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x85fdd605 sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x86099f70 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861c3362 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x862dc90f sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x862dfb45 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x863c2ffa pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x8642b2f0 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x8655dc97 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867abfc5 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a8004e wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x86ab4b81 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x86ae006c __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x86ae7dc3 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x86c2902b power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x86e5b73a sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f257f4 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x873897c2 pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87438987 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x87674e23 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x876b4d97 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x876f261a blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x8777da45 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x877c2a80 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x878c4406 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x87a38dc0 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x87c25d83 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x87ceb85c led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x87d1faad ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0x87d5a342 mtd_kmalloc_up_to +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 0x885e7d90 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x8860b146 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x8863f95e regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x887c6d30 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x888134e0 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x8887c9c4 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x88a357be wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88aeb173 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x88b2d16f usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x88d4138f stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x88eae7c8 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x893698bc dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x89455220 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x89544c88 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x8963d554 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL vmlinux 0x897c1765 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x89b45d4d rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d4fa21 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x89f74b63 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x8a092c2f __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x8a23467a key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x8a50c64e sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a53389b regmap_get_val_endian +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 0x8a650a2d dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x8a784773 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8a9c5ab1 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8a9f1d5f crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x8aa24fdc arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac09c7b arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x8af3334f devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8b03613e md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b39a00b kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x8b58c37c gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x8b719092 rdev_get_drvdata +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 0x8b9dd317 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x8ba138c3 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x8ba772e5 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x8bb3fab5 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x8bc43749 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8bc74682 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x8bdd6ead zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x8bf97657 deregister_mtd_parser +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 0x8c20f80e do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8c60fb82 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c70d8c2 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8c72dc37 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c8360e5 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8cbf7642 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x8cca842b md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cdaac6a mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3e3196 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x8d43efa9 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x8d453953 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x8d6539df snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0x8d7ba8f8 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x8d8c2265 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x8dc68072 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x8dce3578 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x8ddc53a4 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8ddec3f3 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e014c7c metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e389773 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e42e821 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8e488a32 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x8e489120 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x8e6246cb n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8e790ca8 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x8eab3d29 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8ed30440 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x8ee1c71f crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8ee5545d spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x8ef6215a __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0d6851 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x8f1b1368 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x8f2137a5 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x8f38a9af snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8f3a597c da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x8f4ee387 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x8f5a5526 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f81cf2c ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f95b7a7 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x8f95ddb2 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x8faa9b2d debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x8fb06179 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x8fb8a5a0 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x8fc8bd3c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8fed1249 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x8ffadb1b pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x9002488c cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x904a857e ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x9060b043 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90728cce snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x907cb04c __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x90808094 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x9089838b skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x908eff02 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a1981c l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x90a8cd24 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x90cc7c93 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x90f5e31d regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x911f504d snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x915c02be usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x915d9e35 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x9177c0d5 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x917ae0f3 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91aeb369 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91cdc1c6 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x91d8f824 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x91eb160b sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x91fb3d1f usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x920b73c5 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x92105026 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x923a3c19 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x923faac2 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9242b4e0 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x9248b15c regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925c758b platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x92652448 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x927cdec8 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x929ffd56 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x92b49a21 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e2236b regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x92f12ef5 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x92f5448c blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x92f6b749 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x92fdee9a snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x931867dd seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x933ef3ef omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x93604b91 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x937392f4 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x937763e8 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x9380fc66 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x93b0ea61 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x93c25b93 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x93d55375 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x93d77559 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x93f463b3 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x93fcc5e9 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0x94077f3a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x940d8697 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94379034 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x944128c7 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x944523cc snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x94477295 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x945667dd uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x94691ac0 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x947c1891 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x947d0eb1 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94bc43d7 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x94fc1d6e tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x95036b4b __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9504f504 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952a14ae rtc_irq_register +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 0x955e63b0 vchan_init +EXPORT_SYMBOL_GPL vmlinux 0x956be367 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x956d20d5 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x95719f1b uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x957965b5 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x9586a6ed cpdma_chan_get_stats +EXPORT_SYMBOL_GPL vmlinux 0x958dd6af netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95922383 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x959423d6 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x95b08a8c __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c0dd9f crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x95c578a0 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x95e11699 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x95e8491a pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x95ee7f16 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x95fe508d bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95ff7f3c sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x960b666f vchan_dma_desc_free_list +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 0x9668e442 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x9669382d __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x96728fcf nl_table +EXPORT_SYMBOL_GPL vmlinux 0x967ce01e pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x969a9690 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x96aa2855 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x96b76352 omap_dm_timer_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x96d3d835 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x96e6e210 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x96f08a07 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x9701e92a fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x97448750 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x97667f0c __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x97aad526 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e015fd mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98008226 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x980dcf67 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x98239905 ata_port_schedule_eh +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 0x986c4794 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9879b743 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x988f63d4 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98a02bda mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x98ba71b7 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x98bbc97a regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x98d684bc alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x98fff71a ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992caeb4 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9937bd8b class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x99523c4f snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x9956e161 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995db1da arizona_free_irq +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 0x99993513 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x999c0db6 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x99a61486 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x99b829a9 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99bf7eb5 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x99c33992 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x99ec5af5 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a178a88 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x9a2d86ee ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x9a86435b mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a8d2dee regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x9aa91009 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x9aaff121 snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af418fb crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x9aff8f62 omap_dm_timer_set_source +EXPORT_SYMBOL_GPL vmlinux 0x9b03ea99 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x9b0d47bb snd_soc_unregister_codec +EXPORT_SYMBOL_GPL vmlinux 0x9b0fca23 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9b121b78 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x9b223d85 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x9b69be00 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x9b6abac6 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x9b70d2b4 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x9b7657cb crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x9b8ebc55 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x9b91ca97 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9bad4a7b thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c2984f3 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0x9c335757 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c5f13a0 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9c68f510 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9c69bf3f mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x9cb6f8cc amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x9cc21f5d pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc52a9c pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x9cc68aa6 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ce07e6d pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x9cf6f2a7 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x9cfb7086 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9cfc1321 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x9d373c82 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x9d587ea1 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x9d5c101a fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x9d6a4971 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x9d6fbc71 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x9d746094 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8469a1 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x9da84f05 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dbbc94d pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9de8a0fd usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9df9a0b7 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e21fe0c sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x9e3c720b srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e477b66 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x9e4d3f03 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x9e4e9669 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x9e569987 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x9e603c40 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x9e68db9b thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x9e8ab7b9 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x9e965bb7 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x9e9df9c4 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL vmlinux 0x9ea162fc i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9eb8afc8 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ef2bce8 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f1bc75f blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x9f22fa48 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x9f34b2a4 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x9f5310cd snd_soc_unregister_platform +EXPORT_SYMBOL_GPL vmlinux 0x9f5879f0 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x9fa0787e usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x9fcac43d cpsw_ale_stop +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd9fc29 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa009b259 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa016e055 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa0398b0d usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa045fba9 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xa0b241a1 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0xa0d8a6bb ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xa0dd1a2d mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa10d8b86 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0xa11106ca kick_process +EXPORT_SYMBOL_GPL vmlinux 0xa117e063 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0xa127d99c tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xa12ac4e8 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa12cd99c rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xa1368cd2 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xa1467179 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa155502c gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1a274e2 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xa1ac8ce0 omap_dma_filter_fn +EXPORT_SYMBOL_GPL vmlinux 0xa1b21498 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xa1c8f38a sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xa1fbd5aa of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xa2014a6a serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xa2043bcd netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xa235ae42 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0xa25b4458 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa278e72c ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa2b03c84 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2d7e373 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa2e1a15a omap_pcm_platform_register +EXPORT_SYMBOL_GPL vmlinux 0xa2ed10dd crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xa2ee1e45 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xa305397d elv_register +EXPORT_SYMBOL_GPL vmlinux 0xa30fc098 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0xa316d1d7 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xa3698341 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xa3770572 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xa37941a5 snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38cbf9b max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa39c4367 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xa39dbd44 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c9fc0d blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xa3d42185 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa3da036a irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3ed6a03 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xa3f25855 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xa435c5e9 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa43ece06 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa44aae42 snd_soc_add_codec_controls +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 0xa484a7ae power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xa49dca20 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa4b5d2eb blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xa4b78911 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa4bc9005 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa4f7b7da usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xa4fbf61a __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xa501b697 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa509f0a9 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xa51deb71 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa549afec __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa5598da7 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xa55e1507 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xa5661b37 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa578c04f blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xa57d112f pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xa5913991 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xa59bb33c skb_gso_transport_seglen +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 0xa60d86a5 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xa6118c82 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0xa61b74e6 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa632bfef clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xa640f391 ping_close +EXPORT_SYMBOL_GPL vmlinux 0xa650a4d2 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa6659969 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xa671199a driver_find +EXPORT_SYMBOL_GPL vmlinux 0xa67a7c64 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xa6980afa get_device +EXPORT_SYMBOL_GPL vmlinux 0xa6a07f5f i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xa6a69ed8 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b9ec98 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xa6c1d7cd pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xa6d7f14f add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e7c281 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xa70a5331 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xa7292772 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xa72c59a7 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa73922c2 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa73d0a6b devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xa74c24df virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xa754b209 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xa7613dda ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xa78a6d94 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xa7a15581 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xa7ba7a09 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa7df32d8 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xa7eb1930 __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xa7f3ee18 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xa7fe6387 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa80e8a99 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xa811d314 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xa84ad91b pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa851ec26 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa862ec9a snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xa897eebf gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8ba3559 pm_generic_resume +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 0xa90e5b73 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xa9129bd5 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xa916567e ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9396abf ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xa93cf1c0 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xa94478d8 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xa94e0705 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xa955c196 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa957caef posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xa977b6cf omap_dm_timer_write_counter +EXPORT_SYMBOL_GPL vmlinux 0xa98c20ed devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa998c032 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa99d6b4b ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xa9b243fe serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xa9c74b52 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa9d3ee8c pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e4d67f led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xaa0cdbf2 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xaa243c72 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa3201a0 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xaa4231af driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa4d286b tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xaa53202b device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xaa5e5b64 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xaa63e681 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xaa8aa81f fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab2daba __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaacf075a mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0xaad1fb9a blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xaad28fa1 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xaad7f452 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0xaaddf576 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xaadee6a3 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xaaea0468 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xab026c7a regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xab06c983 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xab13dda4 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xab197924 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xab22bc67 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xab2d3b74 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xab465486 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xab4d6e07 device_add +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab6b4dad ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab78dc0f irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xab812bc2 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab8c6319 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab978a95 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xaba49092 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xabbc8d8a xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0xac10c1b1 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xac4ff14f powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xac5016c4 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xac5d3e3b register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL vmlinux 0xac77e93e inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xac8a2ec4 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xac8a4362 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xac9ff657 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xace31f09 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xace3e9a1 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad1e77bf irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xad8e60f8 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xadb0d522 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xaddaf039 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xade0991b usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadf943c0 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xae05db0d snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae719f6e of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xae7258e2 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xae7617ff gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xae7b7184 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae8bcab8 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xaea086d1 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xaea61626 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xaed384b4 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xaf12bfb3 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xaf181b42 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xaf2d135b blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf409145 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xaf6090d5 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xaf6f80df __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xafb37fc3 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xafc460a2 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xafdc2527 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xaff114be devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xb00a4682 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb0131dd6 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xb0166087 dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xb02e709d pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xb036b658 dma_buf_kunmap +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 0xb07ca1c4 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xb08f8181 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0d25a35 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xb0e11535 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set +EXPORT_SYMBOL_GPL vmlinux 0xb13850b6 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xb13ac846 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0xb13df518 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1492467 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xb16ac760 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xb17a249c kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1ad5321 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xb1afee22 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xb1bb54a4 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c4dcbe phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb1c77d9a irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xb1dfef1e spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f26f3a to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xb1f3c0f3 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xb1f89fed snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0xb2050d2f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xb209257b fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb20a1248 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb20dd897 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb228c7cf phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xb24084fe pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xb243d6b1 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0xb245f4f8 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xb2466396 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xb265c50c dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb28f692d rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb29810da inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb2a3a66e pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xb2a83cfb crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xb2ba98c1 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xb2e20078 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xb2e5dd2c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2eb70f7 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xb2ebdb01 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xb3096f6a scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb3159f20 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb34e2af6 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0xb369f8ae device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb370bc3f get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xb38cffe4 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb394d07d dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xb394db45 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xb3a5d880 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xb3abd3fb of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb3b7f216 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xb3bc1a6d pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb40ee64c hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xb410f7f6 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xb41466ff usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xb414e104 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xb4422457 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0xb4602e2d regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb4629cbb tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4771854 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL vmlinux 0xb47f667e snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xb49c4a7e dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xb4ada347 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0xb4aed59d devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c33b7a set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4d2d545 vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xb4e2f38b transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f4dbf0 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xb4f8d77a sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0xb4fe29ba usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xb5095220 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xb51a025f usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb54a1108 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5c51d38 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xb5cba789 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb5e36d97 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f834f0 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xb5fb3dfb debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xb622f680 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb63c0d67 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xb63d00f4 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xb6505569 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xb65a11c9 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xb666e98d regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xb66b5dc0 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xb685f68f regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb6869b2c usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xb68d40fb extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xb694108d pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xb6a24e95 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6dea705 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f2141e dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xb6f21553 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb744ef3b mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb74b053c unregister_hw_breakpoint +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 0xb7866749 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xb78a6306 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xb78ef0ae mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb7a75cfa gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xb7b5c9c0 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xb7dba765 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xb7e07fd6 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb806ac42 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xb80b06f4 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb8177b96 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8267f26 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb855c623 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0xb85ecb6e tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xb863de71 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb913512c snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb93d5fd9 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xb94a7eb4 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xb96739ea pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xb9951599 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb9ae9f23 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xb9af71fa netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bdc13b fuse_get_req_for_background +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 0xb9e962da snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0xb9f6b463 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xba075155 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba117ea4 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xba228568 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xba29a5e1 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba41bdc6 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba7c1bb4 cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba8f7b89 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xba942fca usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbab9b5de tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xbac08a8a ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb096915 usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb11cfba klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbb355d95 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb52fd42 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0xbb66ba69 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xbb72c91b dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbb7fed32 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xbb830114 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xbb84dad0 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb8de817 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xbb903df0 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xbbb33596 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xbbbc94be pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xbbc1d660 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xbbc94dd1 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xbbdeb616 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbbe60d77 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xbbf462e5 snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xbbf9a13d gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbc0cc1d1 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc0d4f5a usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xbc387808 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xbc39b94a ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0xbc55d129 xfrm_audit_state_replay +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 0xbcce2f2c mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce11508 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xbcfe03fd crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xbd124f70 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0xbd12e443 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0xbd253e9b register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xbd3b4b58 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd471c70 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbd474049 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xbd48da53 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xbd4c7d8b pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0xbd4e73a5 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xbd534586 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xbd55105c page_endio +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbdcf98c0 regulator_disable +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 0xbe0ca6e0 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xbe11ab0b snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe227a34 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xbe32b0ea kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xbe4ca1ad unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xbe5b5625 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xbe67e932 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6d7591 snd_soc_read +EXPORT_SYMBOL_GPL vmlinux 0xbe9341ee snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe97c87d handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xbea1bad3 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbecdcb91 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbed2885b of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xbed6e3f1 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbee93565 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf18676f amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xbf1f825f imx_pcm_fiq_init +EXPORT_SYMBOL_GPL vmlinux 0xbf33cd61 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0xbf3561b9 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xbf4a8f47 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xbf4c096e blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xbf5b6e89 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xbfa3bf9f irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfd50cc2 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xbfe06a77 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfefacc5 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc00c1bc2 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc03adf1b snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0xc048783c spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08ad132 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc09f9d8c dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0b28710 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xc0d03f08 mtd_block_markbad +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 0xc0f52d5f gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc104b3ea rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xc1584120 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc191b1fa crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc1da5793 amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc207d2ea snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xc2189f2d mmu_notifier_register +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 0xc243fae2 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc24ee84f raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xc24f1c25 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xc252bf59 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xc259f850 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc26a4e94 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xc2787666 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2a5cc60 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xc2a9b6b1 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xc2bbf7ad omap_dm_timer_stop +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2fe8199 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc30b3a36 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xc3333cba vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xc3372ddf ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xc33b402b ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0xc33f3506 cpsw_ale_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc3404357 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc348d3a4 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xc3512768 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc35cee76 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xc36c0d0e component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc397f847 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc39d3bc8 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xc3a8d305 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc3accd27 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc3bb4b0f ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0xc3c2afe7 device_move +EXPORT_SYMBOL_GPL vmlinux 0xc3c51251 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xc3c5d1e9 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3d880bb snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4037406 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xc41a418d regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc4348b6a get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc4412203 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xc44d2319 pm_generic_freeze_noirq +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 0xc48d4fdc dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xc4ac47bb pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xc4bad7af pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e86498 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xc4ef279c xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xc5274a7b snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0xc533051a mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0xc541f9bd crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc5420153 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54a47ee tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xc54d8fa7 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xc551292a mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xc55d2e46 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xc55dc4c9 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc570cf23 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57c7f1b pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xc58858b3 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xc5922a2e cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL vmlinux 0xc5ac4daf usb_anchor_urb +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 0xc5ed3915 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xc60db6b9 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6183867 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xc63bb6a4 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63fa9da pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc6486e47 sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xc649229a clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xc64e4db7 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xc6561af2 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc +EXPORT_SYMBOL_GPL vmlinux 0xc694420d device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc699ed0a cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6deabde uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xc70917d1 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xc70d5830 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xc719cd1c regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xc728e945 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc736fa7d devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc76089e4 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a85038 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xc7af5d9d ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc8053f6b ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc82cf955 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xc833bf1d debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xc854fbfd devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc85f6690 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xc864ad3f do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xc86fe006 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc884c080 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc8a77808 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8ba6c60 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e1b06f shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc8ef1b6c regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xc90328a2 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc930d71d crypto_spawn_tfm +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 0xc9954e45 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xc9c8f1ec snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0xc9cee45a ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xc9da88ae da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca06acd1 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xca0944d4 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xca323a4c snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0xca3a5833 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xca410796 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xca4dc6c3 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xca5f9f4c dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7dc118 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xca978cbb of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xcaa3da0a trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xcaac37e1 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xcaba30b9 otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1d93ad od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb62a8e3 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb6ddb02 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xcb7e4d37 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xcbb5891e ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xcbb909c4 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xcbc4856c generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe8791b regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbeebd53 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcbf9d20f fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xcc078420 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xcc1e0117 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xcc753c49 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc754d43 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8ba542 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xcc8bbe4d ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccdf2e12 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xccef226a da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xcd09b2bf pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcd0f0fce pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xcd2798e7 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xcd6235c9 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xcd6c6401 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xcd7d6850 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xcd85793f regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xcd8a2dbf clockevent_delta2ns +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 0xcdd7313d regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xce008b6a regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xce08898e usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xce3015e4 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xce598a84 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xce5ca586 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xce605d6e fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xce612c28 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6e9236 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xce888fef napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xce8a8903 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xcea3e0e7 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xcea95748 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xceb86a6b cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xcebc4ddf iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee8fb0f ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xcef06210 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xcef9b49b pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xcefd8ad4 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xceff5d7e usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xcf083800 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xcf0dfee1 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xcf23752d dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xcf2f6e9f xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xcf34772a anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xcf367832 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xcf507366 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf62c23b sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xcf6cf3d3 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xcf8f8d56 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfda83ae clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xcfdbc7fa pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xcfe25168 ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0xd01076e4 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xd01e3da9 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd02549f9 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xd02a2052 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xd02d8129 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xd037bb97 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03e3f90 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xd03ec13a blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xd0435dfd inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xd0486f58 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0949c01 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xd0a0198c ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0de1625 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd0f3dcf5 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xd1039808 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xd106ec8a sdhci_add_host +EXPORT_SYMBOL_GPL vmlinux 0xd10e2c8f ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd111e47e ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd1394a74 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0xd13b0377 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xd14a0a31 omap_dm_timer_disable +EXPORT_SYMBOL_GPL vmlinux 0xd1537e43 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16b621e sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xd17d514d of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xd17db430 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd189d731 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xd1beaedd gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20b2c75 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2903b16 task_cputime_adjusted +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 0xd2efa45d usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xd310d5e5 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xd322de91 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3266164 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0xd333f2fc uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xd3370553 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd35077bd cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL vmlinux 0xd379c1b1 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xd3863033 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd3885067 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xd3aa8e06 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xd3ac09e4 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xd3ad75da snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3c6a70d scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xd3cc4427 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd3cf8d15 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd3ff8a6f blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd401336e cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0xd4015c66 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +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 0xd464861f subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd478bc44 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xd47bf69d phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xd4888420 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd48f91c6 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xd4b82989 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c61bdd pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xd4d398c3 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xd4eb29d7 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd4ec4bb4 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd4ed573c extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xd5165f04 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xd528b7c7 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active +EXPORT_SYMBOL_GPL vmlinux 0xd544eb55 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56bd7a4 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xd58605dc regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xd58efdeb fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xd5b2be5c key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xd5b42711 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5d8f536 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xd5ede1e8 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xd5f518d6 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xd6025f62 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xd60408d0 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd609c11d ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd60ed736 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd6410661 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6873d34 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xd69bedbd sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xd6a2533b of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xd6bc28b0 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xd6cd4398 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xd6d90531 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xd6f6322c ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xd6f6585d __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd6f67c81 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7094ad5 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xd716db2f skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xd72c7f86 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xd7345e07 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xd740cf3d scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xd74b5bd2 omap_dm_timer_enable +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd774432b snd_soc_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xd7757a50 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xd77adfd3 mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd78577ae sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xd78fc6a7 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xd7a92a50 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd7ad9ae0 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xd7d0cd29 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7edc43c platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd82775d4 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xd828d596 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xd8366f0c inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0xd8431684 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xd8689a5c fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xd8724584 __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 0xd8a94ff2 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xd8b57b0a irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd8c9994f snd_soc_platform_write +EXPORT_SYMBOL_GPL vmlinux 0xd8f9fbae pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xd93a60f2 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xd93c098d dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xd93e34e4 sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd9512f17 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xd966d396 mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd98a69fb phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd98e47ce snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9919ee4 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xd998b3c5 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xd99c161c cpsw_ale_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd9aaa82b usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xd9b71be7 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0xd9be0e78 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd9d01561 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9ef1727 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xd9f34f6b i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xd9f68acb fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xd9fae661 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xda0a42f8 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xda1b56be iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xda1f973a fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xda2d21a5 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xda3392e8 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xda381f5c omap_dm_timer_read_status +EXPORT_SYMBOL_GPL vmlinux 0xda4c5e32 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xda5f90e2 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xda6bd846 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xda71c6eb omap_dm_timer_set_prescaler +EXPORT_SYMBOL_GPL vmlinux 0xda74489c policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xda78d7be phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xda7a521f regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xdab2878a of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xdabda711 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdac7bd80 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdae950fa tps65217_reg_write +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 0xdb0b927f pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb5fea24 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0xdb6b5789 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xdb7712e0 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xdb7dd33d fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbdcb406 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfe3128 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0xdc33abc9 omap_dm_timer_free +EXPORT_SYMBOL_GPL vmlinux 0xdc37ce36 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc4d95c4 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xdc57995c __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xdc5f2b27 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xdc63f7dd omap_dm_timer_write_status +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +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 0xdca6829e single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xdcd3328d gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xdce35ebd devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xdce92bad free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xdceaba15 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd1fbe04 regulator_get_bypass_regmap +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 0xdd49c797 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xddb133ce regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xddb86a19 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc8170f regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xddcb3cfe unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd6a7be devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xddde90c2 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xde03dd3c dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xde0f4763 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xde238998 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xde2d382a regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde47d701 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde598a7f rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xde651f98 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xde6bda69 component_del +EXPORT_SYMBOL_GPL vmlinux 0xde6d1b56 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xde7f57cf list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xdeeaae6e sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xdefcee9c crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xdefd701e nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xdf052180 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf13dd2b dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0xdf1a0bc0 omap_dm_timer_request_specific +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf29ed2c simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xdf2c523b posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xdf44b998 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xdf5aa639 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xdf6a000b snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xdf8e926f xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xdfa5e1bf crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xdfbc1fa1 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xdfc31b36 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xdfd3041f mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdfdaaeae wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe0108670 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xe01c396d omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0542640 pinctrl_pm_select_default_state +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 0xe0a27c7c ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe0a816f0 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xe0aaee16 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c17bc0 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xe101c027 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe11e7e45 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xe13d7e0a inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe14436bf regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xe14b5a9a component_add +EXPORT_SYMBOL_GPL vmlinux 0xe14eefb6 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe19c8f9e pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xe1a96ee9 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xe1ac8da3 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0xe1b0d2c4 omap_dm_timer_set_int_disable +EXPORT_SYMBOL_GPL vmlinux 0xe1c5f84e devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe1da0919 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe1e22f42 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xe1fbbd3a sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe1fe40ed snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0xe213d43a list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xe22106ab gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe22a01a5 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xe22f0696 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe252eb0b ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xe262165a pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2999179 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe29b7d03 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xe2aefe1f input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe2b0224b pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xe2b468e3 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe2ddfbda devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xe2ee6d96 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe31656c4 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe3199c5f ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xe3214e35 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xe357c6e5 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xe3ac4ce1 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xe3ac8d08 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xe3af3131 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xe3c1284b smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe3c27035 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe3c568f7 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xe3c938ce usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xe3d106b9 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xe3e005b4 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe3fa96dd device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xe406615d dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xe416f126 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe430e464 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe485c3d4 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xe48aae8c sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0xe4903e27 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49f7f6f filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xe4a15f26 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xe4ad0490 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe4b96b61 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xe4ba26b9 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4cab856 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xe4cc2578 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xe4e59f04 device_create +EXPORT_SYMBOL_GPL vmlinux 0xe4efa91f wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe4f3358b ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe4f61bcb unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xe5141a25 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xe51fcd59 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xe5296a49 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0xe5402a6f snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0xe566f089 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe5674f2c dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xe56e04fe regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xe574ad8b pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58961c5 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe58fece8 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe5999c59 mmput +EXPORT_SYMBOL_GPL vmlinux 0xe5b443b2 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xe5c02c21 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xe5c63780 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0xe5e511a3 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xe5f0f1c7 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe617e767 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xe628a8b9 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe63446ba percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xe645075d __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe655ea2e snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe6849abf snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0xe69994bc ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xe69c1deb adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe69ca4f0 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0xe6ae2cc8 md_run +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d5c5c6 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xe6db24ac crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f5a501 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe6f8e7a3 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xe7023518 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xe7073915 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe758f364 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL vmlinux 0xe760dcb8 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xe763ecb0 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xe763f408 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xe767f219 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xe768eaec pci_walk_bus +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 0xe7cd7809 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xe7d21416 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe826a8d5 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe852aaa5 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xe85a9fd3 cpu_cluster_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe8a2475e devres_add +EXPORT_SYMBOL_GPL vmlinux 0xe8b0e849 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0xe8b797c0 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0xe8d2e2fe mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0xe8d613c1 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xe8d975e4 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe8ec588d bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe8ef6814 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xe8f4c432 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe93146dd default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xe9339f91 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe949c6d6 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xe94d8d37 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe956a75c pl320_ipc_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe958e952 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xe9640d94 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe9859e6a led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xe987288b snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xe98dee28 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe99e23ca proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xe9b0781b ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xe9c93237 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d1dd60 input_class +EXPORT_SYMBOL_GPL vmlinux 0xe9f08f63 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xe9faa69f snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0xea00df88 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xea07f280 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xea105e67 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea1bb291 bL_switcher_get_enabled +EXPORT_SYMBOL_GPL vmlinux 0xea233dcf iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xea2b61a0 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xea395b3c of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea750897 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xea8886aa pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaaede10 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xeab19843 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xeae3c6e1 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xeaf526f9 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xeb007bd7 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xeb08816e mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xeb1cb62e of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0xeb299321 ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xeb2b8af4 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xeb358d94 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xeb4874a5 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xeb544c0f usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xeb554c69 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xeb5848b0 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xeb5a3fad phy_init +EXPORT_SYMBOL_GPL vmlinux 0xeb5f00d6 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb7da337 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xeb8d6558 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xeb9a854c debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeba458ce __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xeba8232e led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xeba847cd find_module +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebb7e578 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xebbaddf3 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xebbe1622 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xebe73549 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebefaf24 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xec010179 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xec07a496 sdhci_get_of_property +EXPORT_SYMBOL_GPL vmlinux 0xec0ce846 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec450a67 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xec5fd6c5 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL vmlinux 0xec6e7042 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xec85fc60 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xeca1c20f cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xeca50858 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xecc7139e scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xece960ec ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xeceda6d6 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xecf25947 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xed201c0c ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xed3ce4e2 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xed45cc9b usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xed67d385 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xed8fbe13 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0xed9a3ad6 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xedabf025 omap_dm_timer_request_by_cap +EXPORT_SYMBOL_GPL vmlinux 0xedafce8e cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xedb3e456 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xede4d1a5 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0xede59b94 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xede611dc snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0xee0cd768 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0xee0d4223 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xee28c3f0 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xee3dd398 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xee3f08f8 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xee5c4278 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xee675a86 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee75f1cc regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start +EXPORT_SYMBOL_GPL vmlinux 0xee9d6a6c extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeea00df6 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xeebac46b iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xeedc315e sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeeec9208 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xeef0d37a ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xef087728 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xef172fc6 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xef37af06 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xef3966d8 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xef3d63e1 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xef3d6f9c device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef420c6f __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xef450183 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xef45cbfc __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xef6980fa cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef813298 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef8d1710 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0xef9040fd devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefaee294 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xefb2b019 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xefb5906f pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xefc3f0d6 mtd_write +EXPORT_SYMBOL_GPL vmlinux 0xefd20107 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xefee928c ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xefeefc17 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xf026e575 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xf037db18 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0506f5d bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xf054afc9 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf09ee4c9 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xf0a91bb0 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf0b291ef raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xf0bb8317 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0ce7482 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xf0d60d56 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf0e4c134 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xf0f0a92c of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf1192283 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf11c1741 __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf1528ee5 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xf165483b ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xf174f28a crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf17ed8ba driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf19450cb sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1ebfd55 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xf1f9a87e device_register +EXPORT_SYMBOL_GPL vmlinux 0xf1fa1d94 cpsw_ale_control_set +EXPORT_SYMBOL_GPL vmlinux 0xf2068763 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xf2107c6a perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xf21d5543 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf22ac95a fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2593f4d input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xf25b9a94 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xf25f4c89 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf29737e0 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2c69029 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xf2d2aa7e phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xf2d6b1ce regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xf2ef1350 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL vmlinux 0xf2efc30a dma_buf_put +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 0xf30f291c gpiod_set_raw_array_value_cansleep +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 0xf3345c4d tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xf34acb29 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf34d239b crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3872c57 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf3ad1eb1 crypto_remove_spawns +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 0xf3e8bb46 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf3f0b11e debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xf3f0d630 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf42cfdb8 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xf4310047 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0xf44016e5 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf44317cc tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0xf448bf8f ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf44985e6 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf454141b virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xf48ceebd net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf490075e snd_soc_platform_trigger +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4abe2c7 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf512654a led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xf52e52be usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xf536698a blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf54c523c ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56f89eb pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xf58072a8 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xf5898547 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b6b1b9 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xf5d046e4 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf5e4b98a napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xf5e62302 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xf5edc610 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf60a4d5f arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xf6168414 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf61d35fd gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xf6334c7a queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xf662e64a __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xf67f3854 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xf68bc04c regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xf68e2357 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xf6901c71 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xf6b70ed1 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d5f5d5 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6fa036e input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xf700ec17 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xf71ebc31 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xf7452b33 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xf7621dd9 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xf7627163 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf78aa673 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xf79680ef tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xf7a9ff40 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xf7b80ca4 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xf7ca3bfb pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xf7e13dc3 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xf7f20c00 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xf7fbc63f omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0xf801c804 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xf80d7a23 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xf81139f5 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf8381259 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xf843586d sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf84a3440 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf87b1a05 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8852305 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8da49ea relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xf8db605b component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8ef7c5a usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90dd9b7 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xf9155d04 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xf918155e __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9323131 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf96c12af of_css +EXPORT_SYMBOL_GPL vmlinux 0xf972e0eb tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xf980edf0 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf998da3d ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a34f01 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf9b08657 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xf9b2a93b of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9b30a64 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d4e6c8 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xf9e23141 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0xf9f4568f adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xf9f7b079 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xfa1571f8 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa26f622 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfa310676 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfa43a2e6 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xfa4f3a13 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfa5041bf usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xfa67a8ff of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xfa7816b9 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfab0891a pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xfab47e82 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xfab505fa regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xfab71cc8 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfad4140a snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0xfae9266e aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfaf9d21e blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xfb071b79 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xfb0ab924 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xfb227986 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xfb246590 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xfb295c7b tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb36a77c of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xfb38a097 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xfb685e55 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb86e79f serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbd6894 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xfbd84118 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xfbf7f2f3 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc062431 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0xfc0a8031 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xfc109cd5 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xfc470788 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfc99bcbb led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xfcd4fad3 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xfcdd14ca device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd0d8541 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xfd2a657f kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xfd2d0149 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xfd314efb pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xfd3f4333 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xfd55f5f2 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd8063d9 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0xfd8097f9 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xfd984923 omap_dm_timer_get_fclk +EXPORT_SYMBOL_GPL vmlinux 0xfdb3bc97 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xfdcae422 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xfdcf3eef snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xfde2bc4e snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0xfdefdb4a tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xfdf7cd93 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xfe0a60a2 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xfe18b8c4 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xfe2f1e25 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xfe39234c nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xfe5792db scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xfe60d5a2 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xfe669bc5 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb81db8 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xfec2fa0a pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0xfec98542 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfeff0b92 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xff00baab inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff3e367f amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0xff47f4cb of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xff501aea of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xff54df3b hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff7167b3 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xff83578f bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xff8a4cc8 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xffab64ab inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc03743 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xffc2195b devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xffcd7671 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xffe4864f amba_device_add +EXPORT_SYMBOL_GPL vmlinux 0xfffea8ef register_kretprobes only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/armhf/generic-lpae +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/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 0x34585ae2 crypto_sha256_arm_finup +EXPORT_SYMBOL arch/arm/crypto/sha256-arm 0xdf41a022 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 0x45910a29 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x0c66a823 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xb3246c43 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 0x074b3b5d pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x0feddc4b paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x14988966 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x3b24022f pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x3c10ac81 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x4047250c pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x46011419 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x8ddf9afb pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb4038e78 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xdbc0136a pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xf5e1c1d6 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xf84d3968 pi_write_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xab50901c 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 0x6d293eb7 ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7994a989 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 0x9fede899 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xb0472cd8 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xdde861a0 ipmi_register_smi +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 0x41204218 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa13ad7a1 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf43a4244 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfcafd540 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x52e42cef xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x61771e7f xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xdcc145de xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3341358c dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x52667748 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x6d3a35cd dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc752dd63 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe39b4d80 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xe4b28ebf dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/pl330 0x1f9c8129 pl330_filter +EXPORT_SYMBOL drivers/edac/edac_core 0x52bc930a edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04c1dae9 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0c737531 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1563d3b3 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1817b84b fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1918ed7f fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x25b665d8 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3b12dcb5 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x469047c3 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6a10c737 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x72abf194 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x74506957 fw_iso_resource_manage +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 0x88dc1efa fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0x99a3b48e fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9e870110 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa71ceeab fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xac6c7dfc fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb26e972e fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb632e509 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc3237233 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xce60bddb fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd75eaef7 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe221e5f5 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe248dfa2 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeb2864a2 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf4178269 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfffb5b47 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/fmc/fmc 0x5a4894c3 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x7e82bbe2 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x809d6c49 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x859bb680 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x959c9f04 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x9801fa90 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc91f670d fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xcad29409 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xd30c53ac fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xdda39d5e fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xfcf77f29 fmc_device_register_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01f53cfa drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03a2c34c drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x044b4eb7 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0455f7e2 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04584720 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04b4a8fa drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d2e20e drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x088e8287 drm_pci_alloc +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 0x0ae8c8ac drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b78b696 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b78c1ed drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c35dc7b drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c69ac23 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0caf0121 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d52051c drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d708ccb drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e868587 drm_mm_dump_table +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 0x1178f399 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1288fc5d drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x140fc6fd drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14b277d5 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x163f7d83 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16701283 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16906400 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17fe1278 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18048c54 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1866a743 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a4605b2 drm_atomic_state_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 0x1a80fea1 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1aff58bf drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1affd90e drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d829000 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1df938ff drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f3f3a5f drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20d18c8e drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20fa27a0 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21f25bd6 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2228e2b9 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2234c543 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2237b9af drm_i2c_encoder_restore +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 0x22e16d49 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2338a75d drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2456ecc5 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2484b4e5 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24de41b4 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x253e6464 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25c4bdd4 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2767c09a drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f9cb72 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a7bf23e drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb3722b drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d0c7cca drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d8ce48e drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d9ad4db drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f9da5ea drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3128834f drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32bda5e6 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34170671 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3456acae drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346382d8 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x354d3681 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3552fce0 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37a6449a drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3890c105 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x392ec7ca drm_ioctl +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 0x3b7da5e9 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bba527f drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bd54bf2 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bfae5d1 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c00d8fb drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ca7af40 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ddd44d1 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ea86df8 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f42f135 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x405d96a4 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42569e93 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x431714d4 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45d3fa9e drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x465a731d drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46e5dbc8 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48f0086b drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4990aa3a drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x499303bb drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4995617e drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49c091b6 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a040404 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c67795c drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d655c5f drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4db0269a drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51edbe4b drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52363c47 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5379670d drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x537f32fe drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5431a7c7 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54541cfc drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5580e61b drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x574fb3cf drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57c1b6f3 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a7f6f2c drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5afda509 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c608dac drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5dac81ad drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x609bd4f0 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6223e306 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63a896d8 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63ba0bdb drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63fa1e0a drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e5d34c drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x657b5992 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x659fb540 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66433a6a drm_clflush_pages +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 0x691dc540 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69470a5a drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b90b780 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d530041 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea7f0e7 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6edbed5d drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f0c5973 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6fc82873 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7072157b drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709b29ab drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70a91064 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x744d5305 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76997960 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76bed49b drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76c00b35 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7984ac07 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79d4b966 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a4ed965 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a55a4f0 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aae7e4f drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b9fbf85 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bcf0204 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cdaf49c drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e91c4ed drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f241a6b drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8163f5ea drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81f08036 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8242d358 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x842ca2d5 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84c59996 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8753fc31 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87c1a926 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87fc08c9 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x886d27eb drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8986ee1c drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89dada1d drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bf1fc90 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c1a4ab4 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c4c8d07 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c9aa283 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d9c525c drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dd07c6f drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dfe0613 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91238576 drm_object_attach_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 0x93304be7 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93604080 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94701628 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x952c6a34 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x965077ab drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9658e47a drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x976f5371 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97acad13 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x980f2aa3 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x983154f9 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a3cf3b drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99e2549d drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad8e366 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d949c4b drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dd8aef3 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9feab076 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9feea143 drm_mode_hsync +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 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2837ffc drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2e31688 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b174c7 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa594afd1 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa65c4036 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6869d06 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7134743 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa72deca3 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab6808c6 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac0956c6 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac3f5adc drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacac2ba3 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaec1dbfe drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0d0fc1a drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb160982f drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb25f082a drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb423add9 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb682af92 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba3e309f drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb0e58d0 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb3a870e drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb92dd4b drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbaed83c drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbca74800 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcc2356f drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd253364 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbeaded3c drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf9a60a3 drm_framebuffer_init +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 0xc13ae7d7 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc18a3402 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc26ed370 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2e3d71c drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc56f3436 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5e5ae49 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc607fa31 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc61da9d1 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca45efbc drm_format_horz_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca4a3afe drm_legacy_getsarea +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 0xcb491fad drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb9761f0 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc1dcc8d drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdfc8f08 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce37f73f drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce5f1fd1 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf0a00b1 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf95493a drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcff9ed21 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd430ae77 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c72117 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd64afb6f drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd69af94a drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6bc8fdc drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9b6e686 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9f2725a drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda464736 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb687019 drm_handle_vblank +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 0xddf90bab drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf2bed66 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02f58ec drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe04c4531 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe09909fb drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1c19ab6 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1f236ae drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2edee7e drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3de983e drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4499e96 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4904a21 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe577b06d drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5c8d2e1 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe77f64a4 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8b9ef9b drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9da2577 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeba648a4 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebc8b9e3 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0077aa drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda2b29d drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0a67fed drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0cf4f9e drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2300db3 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2cfc9c4 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf37b5274 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf451cd7e drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5153264 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5a349e4 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5caa71a drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6dccec8 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7b4c02c drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e68c4d drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e82bdf drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81dad1b drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf90c10c2 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9533187 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9b9b430 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb115d94 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbaa8963 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc410661 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcb4136b drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcdd5eb1 drm_modeset_lock_all_ctx +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 0xfefcb812 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x016e0508 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01cda92b drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04cee68f drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x067d7ea6 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06a9e425 drm_dp_aux_unregister_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 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x117e5554 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x157ff32f drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x163251c8 drm_dp_link_train_channel_eq_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16ab4358 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1760250d drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19ce77aa drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d08bc7f drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d5727d7 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1df7ebf2 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x207d730b drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x258135c6 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2829e611 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29827743 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a2b89b8 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a922063 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b4449e2 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d84ed92 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f8eadc1 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x324263cc drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x324e7860 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3353eb4e drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x338540ea __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36bf3039 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36ddfb67 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x371820b4 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d2ba42b drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41a6bb35 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x438dff15 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47d42a18 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x489d5ca7 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48e02122 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c299e5a drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cb94d19 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e90d74c drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f1899cb drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5000ddf1 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x52bb5e77 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 0x5442d59c drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54c40fc7 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5769f937 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a53dcf6 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x61b140af drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6386cfe7 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6400995e drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64acdea3 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6681d0ef drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67d90eab drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68db6548 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b332aed drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d0b0bac drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7a3282 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e2a0e48 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x71529116 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x727d984c drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x750ab326 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7548a70b __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x766c6f85 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76a62f99 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7776329c drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7915761f drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8094254f drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84185468 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x869786d6 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95831f36 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x987040f3 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b349238 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c0e4a2f drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c9ac131 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d11b817 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9effa59f drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f49845a drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0188b3b drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa17ffca3 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa22ab8ad drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2e360c2 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2f74367 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3b15376 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5b0cd55 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7170259 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7bd776a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa813f675 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa926f825 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa97ce40d __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa97e0af1 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xada28ce5 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf2c8233 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1e8b7dc drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb36b0fb3 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb44174a1 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb86bff8d drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb90d7d9f drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9de2c4d drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbff97643 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0b10003 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2f4f08a drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4a206e3 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5c4c9f0 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc71676da drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7953ba2 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8d57f75 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9381956 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbd9b39d drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc6bf68d drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd319d8b drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd480abe drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd3a61359 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd468aab1 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8fc6025 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9ddc8f0 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbc02210 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc96dcb3 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd2c8fa3 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde9ee6ad drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0761e80 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe09b22b9 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe160c2b4 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5a60f10 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6d51508 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe76e2a9b drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea3d32e4 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeaf8c4cc drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeda4fbbf drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef92d565 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf054b2aa drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf093b54e drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf204e96b drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf35da07b drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf46e706c drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6cba4b7 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf823acdd drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9ad4f0b drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9b9fb42 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa3adf15 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa6da79c drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb9dc06a drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc7a3c7f drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfcb40c7c drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd04baca drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a71c181 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0d94ed07 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x12645cb8 ttm_eu_fence_buffer_objects +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 0x19acac30 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d9761a2 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x219ee5bc ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x252977c8 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x258f00ae ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25df8fec ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2cf99735 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3562d3d8 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x35fa9f66 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37ac16fd ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37bc557e ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4628b006 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47b565f6 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x488a4b60 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50883f53 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5238c980 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x55055470 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5603ff89 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x58e3cf77 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5967f692 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x597e62e6 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5df0ca8e ttm_dma_tt_fini +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 0x68537e6e ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x68897caa ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6c0ec969 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x76719685 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7762229b ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x77d679ed ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x780f6035 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x807c920b ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x835f90b1 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85481b8c ttm_mem_io_reserve +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 0x900a56db ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x98eb9bdd ttm_object_device_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 0x9b7a8e47 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d965e02 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa906ec7a ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xab02b1a9 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xae87b61d ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xba9bc1be ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf7282a5 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3052159 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc32942ba ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc968d68f ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcbde6635 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcca516d5 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 0xcf89d4d1 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd503cf6e ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd615bbd0 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdf7d4a84 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe607316e ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefc4df0d ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf5889fd2 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6e7343d ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfd35b422 ttm_mem_global_free +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 0x6c9789a2 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 0x18e49534 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x29fb7446 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x63ca02bb i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x355b43e3 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xa731224b i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x3f867c3a amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0ded1e7c mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1162af05 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5ec56e2f mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6af7534e mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x773c4656 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xac5e3aab mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xaf868018 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb221207d mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb39d09c8 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc130c4fc mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd62a7452 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe37d8597 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe3982b54 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xec55dc21 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf33b902d mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf995a99d mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0439781c st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x80b5f237 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x6b4ba24c iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdf6a3df2 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x5a7fc2a1 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x9b278344 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xb51d148b iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xd0f9fd4d iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2afb7d1f hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4bd88a88 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x698fda94 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x6ee1c7c7 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xbaf60df0 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 0xf18a4e95 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x77c1cd8c hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x7af3f217 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xce6b8e88 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf7e66854 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x115881d1 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x1df5725a 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 0x438a6fa8 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x51d353f9 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x544ddd30 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x63dac02b ms_sensors_write_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 0x9b94413d ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa47cceeb 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 0xdc40cd5a ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x28a6ea8c ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2ffdbcae ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x39f2414d ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa5ee003c ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xbebeedcb ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x655bc2bf ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x795c748e ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x89c137b2 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 0x092c9914 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x205112a1 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x266476fe st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x2f8dabbf st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4f6a155f st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4f754b3c st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6db8b2c7 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x80eecad1 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x827be682 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x83aad852 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9d5d6de1 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa5b7d184 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xafb76dae st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc05ecd32 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc1f54859 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd02f4099 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfff489d1 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x871bca22 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xb5c0467b st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x62c44ab6 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x2f9a951c st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xe40e8411 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xbefa25b6 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0ffef31d adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xce0ed3fc adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x0f421e47 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x310f64c4 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x3db1806f iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x4bd8ac19 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x58cc611a iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x6e9ec616 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x701fa68a iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x70b3fb72 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x84e736d3 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x8df9c032 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x9528360f iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x9bf532ab iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xb7afefd7 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xc9ad4441 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xccaa60fb iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xd9df1ab2 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe8355382 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x76795410 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9c397e25 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x70f9c8f8 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x82db6828 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x01fe4d08 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x132e9496 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xa57b7004 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 0x0d2c2d74 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1c3c0ad3 rdma_addr_size +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x1e866a9d rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x36222835 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x5347cc38 rdma_addr_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x62618398 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7df81f32 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x04bca192 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x23605ca3 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x498153df ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5253b7b2 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5cd1258c ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x65302546 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x782e1a1b ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x858e4eb3 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9c9e2561 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa3a8047e ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa70f8650 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xafbaeac6 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb062d2c5 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb73409c1 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc2b2d37e ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe604d7de ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfaf4b242 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff29d0c8 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00e497dc ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09f61f44 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c614fed ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10967d96 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14961371 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a2dfac2 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c2db927 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20142cb4 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20238079 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x267fe572 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ace3307 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c0f9d11 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3051c837 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3834d084 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3a195abc ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cc13c35 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa1dec1 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fa8751d ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x435f53fe ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45051f17 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45962a70 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4cc22be3 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f38033b ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51b90dfc ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x520b2638 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x538badc3 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x557ed713 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x570b7d55 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x58c2ae55 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x59e3cd44 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d6458ff ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69b83391 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b2657ff ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c62ff4c ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f833fc4 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x73190d5e ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7456317c ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7569e1ed ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7639232d ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7765776c ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x821d1957 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8417bef9 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84a635d1 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85457169 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86d707de ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x909cb4d3 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91514593 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9222dfd2 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92af8c14 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9364b25c ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x956fd3f5 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99b2c540 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ba81a70 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9c1b4ea1 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0b5992a ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa48902d1 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4a5471d ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5aef60b ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa95cc563 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac6cf5ed ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad165d5e rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xad4a550c ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaea8d142 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafb6688d ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb594577c ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7eb1619 ib_query_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 0xbbcc56b3 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf4c3786 ib_dereg_mr +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 0xc853f065 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcea39338 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf5ac42f ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd58eb146 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd822a9b3 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb25cae9 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdfcc8354 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe176ff70 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe26808bb ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe280bf97 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe43e865f ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe4967339 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe6e68806 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe8be7ebf ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb9a4b16 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe2ad9fc ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1c808e62 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2204ed32 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2aeef9f2 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4ebb20db ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x59d44817 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 0x9a9ab598 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb6cc4e78 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc9a8ce6c ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xe1143673 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf3d38060 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf3f17855 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf6589238 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf9e2b426 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x094474e4 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x09f18b0d ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x38fa454f ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x4060af07 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5258dd08 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6f28e2ca 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 0xb7163768 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xd1a99a6b ib_init_ah_from_mcmember +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 0xfa579e1c ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x16d42c31 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x18b562d0 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 0x011db27b iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1479138d iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x24fbc21f iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2851198d iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2caf2647 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x34bda961 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x67aa2116 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 0x73d746ce iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x772a1007 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7a868bce iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7e571833 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x84baf6ab 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 0xa4814d27 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xad261bd2 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbbc0b4b3 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 0x215b44d2 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28325d12 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x494d9bc7 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b1c0a01 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b33c38f rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b9d8b28 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58a22c1a rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5907f031 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x657d6c92 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66cecd28 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d027ac2 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8101f441 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x831257d6 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x84294a7f rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8f02dc87 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa9d1c374 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaebfa542 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbbf3204e rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc99e5ac2 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd117cfa9 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe01dcb12 rdma_create_qp +EXPORT_SYMBOL drivers/input/gameport/gameport 0x19b4e4f6 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2f8dfbd8 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x314ee850 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x32df222d __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x366f8669 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x59fdc7dd gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6a173695 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x92a5916c gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xfbfc1ec1 gameport_close +EXPORT_SYMBOL drivers/input/input-polldev 0x32587ad3 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x5ad40c00 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xb1deb84a input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc819b965 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xf5ec3aab input_register_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x4fa7ad38 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0xa9f7b44a ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe361e37a ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe6d01224 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 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xf59660a3 cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6d0f71ec sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7c26f0fb sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7f7b3561 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb759844e sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xec6c700c sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf89ea90a sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xcb014b44 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd4bd7c20 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 0x2a3a110a 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 0x4da42905 capi_ctr_handle_message +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 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x81f07f00 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x82e278c2 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x887e645e capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8cb9e519 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 0xd08cf17f capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe1116c1e capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe50dde0d capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe7327fcc attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x000ebeb5 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x042214cc avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x21405397 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3e5f6d04 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x498a0786 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4991f5c2 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4a6b60d3 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x52cfdb25 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7066cf1b b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x74751806 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8a34778f b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8ef9dc3b avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xceb1119e b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd2f0913c b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf41fa2fe b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x19397cdf b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x21f2bb8a b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x317caf57 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x5bdf9ca3 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8ea243b5 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9efb53aa b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb1fa85c0 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xdc23ae1c t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfd50c57e 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 0x5dd1c7fc mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x60de9460 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa8bfe00e mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xee990251 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4744351b mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x9bc17eb3 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x07f4f2ce hisax_unregister +EXPORT_SYMBOL drivers/isdn/hisax/hisax 0x10238599 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/hisax/hisax_isac 0x093edf7f isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x59ecae37 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x739dc392 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa63d057a isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xdec8f627 isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x4c64438c isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xf84504c1 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfbd4739a isdn_ppp_register_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 0x0a294124 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0efaca4a mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x113a1c29 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x11d2bc8e bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e8e1363 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x20cfef66 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2595959f recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2982863c mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x354a3511 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x37befd41 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3d0a2ff6 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40a3df3d recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x52701039 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x633f32c8 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6927a2a6 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x74864a2e get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8913bec9 mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8d27407a recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9a127196 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6b35c75 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc923793b recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc21cac5 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc39383c mISDN_freebchannel +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_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 0x55247667 omap_mbox_disable_irq +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0x61fd6be4 omap_mbox_restore_ctx +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xa9c2e8e6 omap_mbox_save_ctx +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xbe35c930 omap_mbox_request_channel +EXPORT_SYMBOL drivers/mailbox/omap-mailbox 0xff6d144f omap_mbox_enable_irq +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10d5c2e9 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 0x25f8afe0 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3361c614 bch_bset_sort_state_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3504ce02 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x59abed2c 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 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 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 0x464fabc5 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x4cbd6706 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xb0da7b16 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xe384f6f7 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x00022a68 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x3a7c31b9 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5a2a237e dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd14656be dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd5b57f49 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xe9d3f42b dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/raid456 0xae4865f1 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0280b370 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x17f7566f flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3b2e1aae flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x52afd93b flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x56df5881 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x65e52fdb flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6d554248 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9d6426da flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa56bef3a flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb9801421 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd6ae134a flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe14f8712 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xeea73bbb 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 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x856af7c9 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xad865778 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 0xe5ce0c08 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xff741a44 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xb0bd189b cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x2f7fc2e9 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0x925e339e tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x230607e7 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x23594f1e dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28dfeac0 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x290e8e40 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c917be6 dvb_generic_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 0x3e659f0a dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e12b88f dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x504d19b8 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x577d7b9a dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x629f9d31 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70e1ddef dvb_net_init +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 0x7d5ec9a3 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80c3c71a dvb_dmxdev_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 0x88424a02 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9228eead dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x951c472e 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 0x9f0153ca dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa4d964f8 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xab5672f8 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbdf62098 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbf465028 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc09a04bf dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd2d1e0b2 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd4abbe08 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd5faa32b dvb_ca_en50221_frda_irq +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 0xea574c27 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebdf23b6 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf06992fa dvb_unregister_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 0xfafc81cd dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0xd40c178a af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xfa904110 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x23284b63 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x42e40ce7 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6983f61a au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7f5f949c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9564ee9d au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x95ade533 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa14eade8 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb1e691ec au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbd124aa2 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe4daf364 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x03d17f6f au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x1a71b90d bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x17d50d9d cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x116ef4fb cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x2800eaaf cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1161b0e8 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x53fe206d cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x7b7179bc cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x338de0ae cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x242d773b cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x9de16dea cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x528f7ead cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x595b821d cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x9d8db846 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xf668048e cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1ad7b0b0 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x2b3b3289 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x767a8faa dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd71c2c32 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xf8609741 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2cb6a10b dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x33fedd17 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x64174f0c dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6743e7ce dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x67f254a5 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6de35b1f dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7c325d0b dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa0db13f4 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xac24830f dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaef8bf73 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcceeb740 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd88cb205 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdc0e951f dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe539e675 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfc5863c8 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x9f3eccdb dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x284bf30f dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4aae4466 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x50f61778 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x67a729f6 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xca30cc11 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xdec5b39c dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x2603b098 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5adc79a1 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7ce1239f dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xa6e2d01a dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xfccb0df2 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xb96b1866 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1474f51b dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x16b5bbb0 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x37fab6e6 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xc287f634 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd9a983d6 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x6b07848f drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x2bc20d19 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x8677e1c1 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x35277453 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x11cfe27d dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x26c41520 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x0d25854a horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x54e46bcb isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xf937739f isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xf3923547 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x678514e5 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x8db4e781 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xf460e803 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x51e8c0f3 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x74f6b839 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x6f663481 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xa901f8c0 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x64258722 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x0161f179 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x816b3305 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xc8f9d691 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x0e90cee7 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x1d49aa48 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xdc905b80 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xf71071ae m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xb4478e7a mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x8a2ab809 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x7311293d mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xdd712163 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xd8f3c152 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x98b8a89b nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x76e8312d or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xa711cdc7 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x18184133 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xe28c3c34 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x86a29d46 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xccb69480 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x4e644291 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xa3dbe39d si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xfd7e487a si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xb059902f sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x9172114e sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xcaede1b8 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x83604f65 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x84d4e469 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x8cd1108f stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x235e8dd4 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xb7b318bb stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x69e825cc stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xbf0a202b stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x528e5195 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3df094a5 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xebbd1675 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xbb1e75bf stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x4926174c tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x3935c8ce tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xfcea55f5 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x417d4afd tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x5383d9b7 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x4e2e5023 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xf14007c2 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xced60dca tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x0aecc9dc tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xdd4291a9 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x1e3958b3 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xcb0653b0 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xe3b5cb78 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x2d900a78 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x806f95ff zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xa4720981 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x8051d690 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7c79ab64 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8e21e1d9 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8e455af8 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9c597463 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x9fb664cf flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd5322632 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xeb9bfb10 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x6de1c90b bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcea1f624 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xcf68a78d bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xf6234fbb bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x1fbcbf05 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7ebcc1cd bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x85ec878f 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 0x132cea6d dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1dd774fa rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2e4e2773 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4a8eaa23 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x562661f9 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7bb3f6a6 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8f9f82ef write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xb408780e dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdc128ad0 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x9304b023 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x19bb7f2e cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x625db2a0 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8d7cc3ad cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8fd2f5bb cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xded96e30 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 0xe639d2e5 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0xe66b9812 altera_ci_irq +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1c0e3979 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x48887afc cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x5f943e2c cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa71aa4aa cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc6f3098c cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xe0fed41b cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xec596e10 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x9af87786 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xce50678a vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x91ec26a2 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xbe2195b5 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xcdf5f8f4 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xe879c2dc cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x7c7bf2f2 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa8e4447b cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xcd3be343 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xdfe1c138 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xe1ce320d cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xee2e0da0 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfc59d711 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x043a8984 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x08052acf cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0c0e15c3 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x302b2ec0 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3f2d6a30 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x41d0440d cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x47e50cbc cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4e2230f8 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x573169c3 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x59478cdf 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 0x8472d659 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x996f6e16 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa116e1d5 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc30c3e1e cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcb59e9ee cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcc09f9b6 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcd24424f cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd028e2da cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd1ad4325 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf95fe857 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0e438348 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0fa9e8b9 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x25907b8c ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x2c09a133 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x40c6d7c8 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4a048068 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4c3be38e ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5177b1ae ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x530b5cfc ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x630415e7 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x69567680 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7d789d41 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x95e29c69 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa31104c1 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe73d5722 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf62c25c3 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfaa79b23 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0cd3be22 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x158e69aa saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x42305625 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x43d8d407 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x5baf512f saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7bd1a8b0 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa540a1af saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb6ee7980 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb94e7b71 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdb8b4067 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe5622eda saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe9f4edaa saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xf2dcb1cc ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x163284d8 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x182c5faa soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x48029761 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x5542d3c6 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7aaf6562 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7b40e9c8 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8c86f40c 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/platform/soc_camera/soc_scale_crop 0x8a25ec8f soc_camera_client_g_rect +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0x97653c59 soc_camera_client_s_crop +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xa9030489 soc_camera_client_scale +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_scale_crop 0xe59a7aeb soc_camera_calc_client_output +EXPORT_SYMBOL drivers/media/radio/tea575x 0x1a5c4004 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x2e68a04f snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x34e07ce4 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x38292173 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x4ca99c90 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa2123477 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf800d4c0 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x15d9841b lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4ac4275c lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x65d4969c lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9ebfc5ef lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa73849ea lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa86c8a00 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbd326055 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xedcda518 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/rc-core 0x0ab34406 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x9f9cd96c ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xd1f5e31e fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x336aa7d0 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x39e6c597 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4e510141 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x85c00c35 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x6a3349a7 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0x9746bc60 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x3c035aa4 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xbfcb5c50 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x811ac630 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x0a5cc3b6 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x34a79118 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x1f15ef57 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 0xd551dbef xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x0168eb81 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xddb79f8c xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x69d73782 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xc36f3fdf cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x0f711760 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3c7da453 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x42a1b1aa dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x43f2c3f2 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x52c0a727 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8aba7d47 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9525c435 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa6f1b07b dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xad44331f dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x0657868c dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3fe08527 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x44290a3a dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x94f93c9c dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xdcc9f771 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe1de89a5 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfeea11d9 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x0b4efdf9 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 0x0ca071f9 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x20612425 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x299414b8 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3c9d6165 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x44da2902 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5523522f dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5edb4b46 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7650a0a2 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7b6978ba 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 0xf6c543d4 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfe834aba dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2f64a4ed em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xc9a3f589 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x09455969 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1a41c3d1 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x50f2b31c go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xae14d969 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb1ff0bc2 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc716d498 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd1d09689 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe4739cce go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfad465db go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x00619591 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x73c24c92 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9ca32662 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc662316c gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe0b6d073 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe2a4ce9a gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe625e91a gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf998a566 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x11fab656 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xab99d5e8 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb36fde96 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x43ba1f59 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x687d1e93 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x12fbc97c 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 0x4e5be2be v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x891a0b30 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0ff3bf50 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x90807d6e videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc78f8d35 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd146e915 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd52368da videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xf0b5c71c videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xa82fd7fe vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xfffb8e11 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x17985720 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x3c44f1ca vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x49f78666 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x5b8b8fde vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9d0066ae vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd29960b5 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 0x747ca10e vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05d0a0bc v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0917e048 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ad6e1a8 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x10f6f5c4 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x117f7409 v4l2_g_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 0x17603771 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x18202612 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1d53aaa8 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f6fc494 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f7c3c76 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1fce7d74 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2284ca4f video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23cd26b1 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2851779f v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b6218c5 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ee90722 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x32bfcaad v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34e1f382 video_device_release +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 0x415eb5be video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x442b6953 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x491188f5 v4l2_ctrl_add_handler +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 0x4ca726df __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x55ac5fcb v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59d03b9a v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a57ef72 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c25ca95 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5db23ca5 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65087c3b v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65132b16 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x658e4a20 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x676a3828 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c090719 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6dd3ba6c v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7168ee68 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7331c586 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76543287 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7afb32a2 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8023e986 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x807b327e v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x807b7600 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8322e79a v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x839e4bc3 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x863b7c33 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x88c249b5 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c80ed03 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8fdafa05 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x90ba2ad6 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9451db85 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x94a7395e v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9966cb4c v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x99903b61 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9a20b16a v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa90aec18 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3bd089c v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb5cabfe2 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb79da4ec v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbb3279c9 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc14545f v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc984912 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc218d77d v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc47cd95d v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc53cc82f v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc554da5d v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd7fb0fe v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4ca2092 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5b6155c v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd643ffbc v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdfb40b84 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea4e5730 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7ff95e6 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/memstick/core/memstick 0x070bcf9c memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2970f9af memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x571abaa6 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x63d02156 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x814812d1 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa7d3cc96 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae0d9b3a memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae19d1bd memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xae653384 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc70c1e49 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xcd07d1eb memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfe7207cd memstick_next_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x008fd011 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0a17a024 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0a9e43b3 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0d092669 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x15f26c0f mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2cf9500a mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3703723a mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f31ea77 mpt_halt_firmware +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 0x50f68323 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x560ffe3c mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6d711d16 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ee3e2d1 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a706b08 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8d2e5a13 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8f2af0f8 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9ce06e8e mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa0ef99a7 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa45b2d9a mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbba374e2 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdc55451 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc1496af7 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc6798673 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc7a4b81f mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd6d7b3f0 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd7ad1d50 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 0xde11fb4f mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe032341b mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb3b8780 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf0d8f980 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x010d3883 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0a9bd2fa mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1d164350 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1ff50f62 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x26758d31 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3393cb15 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3bfff429 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x442cf620 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4d1eed3c mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4e485e8d mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x51cf302e mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59324894 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x642703ff mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x652b591f mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x67678e3a mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x89752773 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8d63001f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x975fe89b mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9a722413 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9f0fb89c mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xac38c4ee mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc91a15f mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc4fca7bc mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc5c97d8b mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcee78c5d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd005b91d mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf56e2326 mptscsih_dev_reset +EXPORT_SYMBOL drivers/mfd/cros_ec 0x09478b69 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/cros_ec 0x336e8713 cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x9cc9674d cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0xcc598e5f cros_ec_remove +EXPORT_SYMBOL drivers/mfd/dln2 0x1f3c7fb8 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x60552057 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x6919c2fb dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x548622e7 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xf072d7f5 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1a8b07fe mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x21c193fd mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2486231a mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2d84fc3b mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x396b746d mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x627fe9dc mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x897d7b03 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x94da81a1 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xd58e9c39 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xee1f229a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf4e19415 mc13xxx_lock +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 0x1fafff77 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x53ba5f0a wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x6b276f57 wm1811_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xc67fd6e3 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xc89ba06f wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0xf4456d7a wm8958_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x9259e84b ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x98772e46 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x8a05ed90 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x85c2be20 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0x90422011 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x1731f5f6 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xbfbdbafd ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x150d1e0e tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x164c512e tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x25644a51 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x3d93a155 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5b00f258 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x633b659b tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x760384c3 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x810cb59f tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x95759f2f tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xe354866e tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xfa99cf9f tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xfd8fbd0c tifm_alloc_adapter +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x5050c7b1 dw_mci_remove +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x82645107 dw_mci_probe +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0x9cb096a8 dw_mci_suspend +EXPORT_SYMBOL drivers/mmc/host/dw_mmc 0xaf4f166f dw_mci_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x058a2f74 tmio_mmc_host_free +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x2aa81b99 tmio_mmc_host_probe +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 0x9403c299 tmio_mmc_host_runtime_resume +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0x9787dc33 tmio_mmc_host_alloc +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xdec1ee47 tmio_mmc_host_remove +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf02062dd tmio_mmc_card_detect_irq +EXPORT_SYMBOL drivers/mmc/host/tmio_mmc_core 0xf57288e0 tmio_mmc_host_runtime_suspend +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3fbf6cc2 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x51a69e6e cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x798ea75e cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb493498b cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc066dc6b cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc23f3ce2 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xca9d3963 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x82649b12 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xd569e5e0 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/nand/denali 0x3e65a190 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xda9c8c9e denali_init +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x201a5db6 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x4537225b flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x5d571e0e onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xa40d910a onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x02a30fbb arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x063043aa arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2ce900de arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4191cf26 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4e62557c arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x768319ca arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7be66390 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x85342f8a arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf0a02db2 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfe7d9cfa arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x31d2f1e1 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x519996fb com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa33b3d26 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x11279684 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1404f727 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7cafcf5e ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x949be4db ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9d98d6e4 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbd0d45a3 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbe1b7228 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xeea853df ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf7057168 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfc93ab47 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x1fdc8c3c bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x9eed577d cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x126cba7f cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2146bb4d cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x22c5f1b0 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2fcdd10e t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x622f543b t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x653b836c t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x67edfebf cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6c5d699d cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x79f74359 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x85798551 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb52cf273 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc1d8cfd3 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc5127f6c t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcc81f15e cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xddcc3f78 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe04ffb22 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x020fc94b cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0eaf7a99 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ec3aa1a cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0fc914e8 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a160a6a cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1bb031f7 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1c0c3f3c t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25155dbb cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2cba0dd5 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 0x4ee20659 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x545fbbd6 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6674ef71 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8f524e27 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93d91944 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94d3517c cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x962757d8 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x976f8129 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa68b660a cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaaf63155 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1348d8b cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb6ef841b cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb816875b cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbef640ea cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbfba5695 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc363ffe1 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc531fffc cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5e96959 cxgb4_ofld_send +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 0xe0650ebe cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe32afabd cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe74f3899 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf63e2131 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x29f4ecf0 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4b41b22e vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x65b03f62 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x9066f2e9 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa186b8cd vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa473f4aa vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4dfd95f1 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 0xf0c57e33 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x27281171 hnae_reinit_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x395d9211 hnae_put_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x3fe3505d hnae_ae_unregister +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0x9cb51251 hnae_get_handle +EXPORT_SYMBOL drivers/net/ethernet/hisilicon/hns/hnae 0xadaff0ad 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/mellanox/mlx4/mlx4_core 0x08fc86a6 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11059631 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11874248 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eced911 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2067b6a5 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28096da9 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x293c88af mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a46473c get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34b0760e set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x358d4d90 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf9ac48 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x517e462a mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5652042d mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x578c6891 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58db4966 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61a1d912 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63bedb2c mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ab6676 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a0863e7 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x799175b5 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x833ac243 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85c5f165 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8a693402 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f0e623f set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c923198 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa13b337 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa401d83 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb01e95b8 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4390cff mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf98f8e6 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc30a68f9 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd499a1ef mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd539f325 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd827c47e mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe4b80781 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe726cb49 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed762a0c mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb004c1b mlx4_is_slave_active +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 0x0e05d23e mlx5_core_create_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 0x1103f44a mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12d6d2ab mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x181511dd mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x185e1f7c mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1af3883b mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24b0ddc0 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x24f4a2da mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2fa3a2a0 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b254f23 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e9b2f12 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59e3e798 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6907e041 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cc05a2f mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7640e590 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d826134 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x843f9445 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89969977 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94f46131 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99a3e029 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa496a464 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xac31be4b mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1f5769d mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb415411f mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb85d67a5 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbee18405 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbeff0ee0 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0797c70 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcae71fc6 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce20193c mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd09c25c7 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0fd1c2a mlx5_cmd_init +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 0xe998384a mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea0e36a0 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeb2c68b3 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee8dd132 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf99517e1 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb442696 mlx5_core_query_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 0x3e6a66a7 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 0x6bd88266 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x757417a0 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 0x82e294b8 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcb5c8545 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd07f44e2 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd5c87b6a 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 0xdeef774d mlxsw_core_rx_listener_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 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 0xeea9c9d1 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x291fb1d8 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x350f5b31 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x3584ccb0 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xb121abd9 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc73d54e2 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x089f849e sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4bad47c8 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4ea29a25 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x5c0a8439 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7f7f3ff2 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x93a4b9a0 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xaa9acf40 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbb3f0bb6 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc78ff9f4 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf3f17ed5 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 0x0ffad85b generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x529525ba mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x70105d79 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x75630e5d mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x815a3632 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xdb47e631 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xe70568a0 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xf8ba2623 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x18da4a11 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xa9b4f9e7 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x4a3fab27 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xb8672465 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf957ee56 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0xac0c14a7 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5efad8d4 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x8561352c pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xd5d434b5 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x22831a98 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x2dba32eb team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x2e584e16 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x34e5b8b9 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x57d5496e team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x5e6d4dda team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x6b328351 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xec820615 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xeee5eddb team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0f253323 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0x23a0625f cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2e8b2ea7 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x9bb8ccec usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1d155bd3 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x294de602 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x40504e54 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x53a22ae1 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x70d18ef9 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x859ad2b5 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x94533b74 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc5942a8a unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xccd44892 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xec07fee1 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xed9a402d hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x457dc5c0 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x19402b59 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x27ee0d9f ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x2ca88254 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x32f04082 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x543458d2 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x606b4ee4 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x71b486b0 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x72e3fa44 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa137617a ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb7481d80 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe09a47ab ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xed19d5a6 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0bb65993 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x148f732e ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2a9dbe78 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5143e7fb ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5987f044 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5f781c19 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x607be023 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6342b567 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x861ec077 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xbac2c8c9 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc2974bd4 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd52f9525 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe84b2e16 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xefccf787 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfcc6402d ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x053e5a57 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1107f518 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4a921d68 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4d0b77d2 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 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa0f1f72d 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 0xa761c1d5 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa8bca974 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xab6d50c4 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd24917b8 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd33d06af ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe3058476 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0c372e6d ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0cd2c7ae ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1435bc5a ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x146e204f ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25be090b ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39161782 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3bf11ede ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x41f9029e ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x476a5436 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4be75d38 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5dd45285 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x69605438 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d3c6edc ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7594bd7f ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7a5eae48 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7e58edd4 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8efeee52 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa722ac45 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc190efaf ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc5176b29 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc9fad6f4 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3edd3bc ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf4ea7d66 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x013bff07 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0222eec5 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x030ed09e ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a0402a9 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d7e2eb8 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d89d910 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x114ec24d ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13c349cc ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13fe39a2 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1449870d ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1462c6f2 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17d140cc ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x183d387a ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19430c8f ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22accc64 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x230361b0 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27157fc8 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2826a4ad ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x288d0c57 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2aef28ee ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b6cba15 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d95ddd9 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ec186c7 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3117d2c8 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34b4f5bb ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3520010d ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x369fd3a3 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37207315 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37604843 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x384be352 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x38b96ca0 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x397b5326 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3bd01b25 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c4e4c5b ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41aa6fc2 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47314b2b ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x476082bd ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b7059db ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bc63eb5 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d9f6bd0 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f2aba56 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fda6e24 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fde8b71 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x545da3f3 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x54e3bc0e ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x582f847b ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x600b496a ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x659648bf ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x676e2a3e ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68504fd3 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ac02f5d ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d13b47f ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f0fe4ca ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6ff73a2d ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7266513d ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72cfa697 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73f6d599 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7408593f ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75ca6d76 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76c0f480 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x76f8acfa ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x793d9a0a ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d487521 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7deb37b5 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8331f111 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x840331f8 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87ef82d1 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89cc4e80 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90b672bf ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92509940 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x95366c3d ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x965adb46 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99085f83 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ac6027f ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9b5689d0 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e0c5622 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f6805b4 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa71b5a50 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa789d641 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa92dc361 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb00da408 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb046e653 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb79f0b44 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb85aa51d ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba364273 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5f68710 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc90e6c01 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9b275f7 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd872f15 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcecbc69c ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd116200d ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdab3d49b ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde435dec ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe06cfee7 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeedec6c1 ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf006fa22 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf217deb8 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf27c9802 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6fbded3 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf755dbc6 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7ecf812 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb42c357 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfdac8acf ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfde909ec ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xff7d893d ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x2652708b atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x2a0c3a1e stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x62ed0daa init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x03427e3b brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0cca16bb brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x11debc81 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1648ace3 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x28a34a08 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x41dc7cfe brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x54f7ab3e brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x734a146f brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x76f5f831 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7f6728cf brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9da9a2df brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcb1a62cc brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xec71f5c2 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x11450481 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x13de4606 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1c19e775 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1c7522e9 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2b9e2977 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2dd319b8 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x36853a43 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x46c7925f hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x581849f6 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x58473d56 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x58b4086f hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5b284a7d hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x605d925a hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6fbad05d hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7272aa31 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x73b02e27 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x81cae2c7 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9c48d9b4 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb0a3789d hostap_init_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 0xbd319008 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc376da7c hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcea37004 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe9f672c5 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf9f0a30a hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfb42c3b1 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0052a40a libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x039b00e5 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x13153dd1 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2f5fa5e4 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x43099fee libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x455789b7 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6269ae2d libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x77d9a1c2 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7ed30197 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x99ca3d43 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9b444e27 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9bd6484f libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa5e823a5 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbb6a7d4c libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbe080020 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc07afb3f libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xde4072d3 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xeeabe525 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf1fa6708 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf39531ef libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf986efe8 free_libipw +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0225a970 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07d9085a il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a8c78cc il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x140c7f26 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1455b433 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14fe04eb il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17c73e46 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c041539 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1cb26078 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22377554 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x239642ca il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25e3194a il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2639c385 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x290be9b1 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2be239fe il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2e74e90d il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x30130525 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x30b96022 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32eb326f il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x351162a4 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3799f43d il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a3d3ae1 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3bfb9e6f il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c1f2cf1 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d63bf41 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3eb1a6c7 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x41e90028 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x42b5c272 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x45682bd9 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4628a5fa il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x478be1cb il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x487dba4b il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4b70dbf9 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4dd0a91a il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4fce7bca il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51a3580c il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5214d6e1 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x52e50394 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5371a52b il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54c174e6 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5851fe27 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x616f6d47 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61d2c5f8 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x633b51cf il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6455ae0b il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67d9cc28 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c16fa3d il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6ebf70f5 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7223a699 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x733843ab il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x747630aa il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78722e4a il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78a6afac il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x802fd459 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x804f76a0 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8befc629 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d43fe02 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f0da7c7 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95b0efad il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e321e29 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa13b755d il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa49c10c5 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6aac924 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab16cd1d il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaba1eb53 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad21c512 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad289ce2 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb19354f0 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb47ec474 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbac4a6d4 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd511b2f il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4bab6c9 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8406463 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8c7ebc6 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd099e9b4 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd4f40b27 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8db3ce1 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd93b2f60 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd8a133d il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdd97a72e il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdfcf1e27 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe14a746c il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe23db500 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe415c256 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6d32199 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7e37b75 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe82d5f6f il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb53a489 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb9e3ae7 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec3bb04d il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xed8d8746 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf082e1ca il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf46fd3a7 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7e61904 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb81d806 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfce87f92 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe371a23 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe8b4609 il_hdl_error +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 0x1148f2f5 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x27809e8a orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3ef6eba8 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4feccdf8 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5260622e __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5bfb0c47 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x741c1c34 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x80357306 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x857a7705 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8775e092 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb6cf01ee free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb8fc4a1a __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xbe288731 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc6d35cb1 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd6ba3e11 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd6ff4644 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe260405e orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x6e9378ce rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03e9e8e1 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ae895e0 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0d23f497 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0f6cebeb rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10e35390 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1167bd17 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x189d6b54 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x18f0a4ed rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1cf622d4 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x20a6b54a _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x30a06eaa rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42d89f78 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4362a20e rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x499fef11 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4a3611b8 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4acad789 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5a220ed9 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62dae73b rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x76207c60 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7864be8d _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78bf4cfe rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c45441a rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8d4356a2 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x997302f3 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa07867aa _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa396743a _rtl92c_phy_fw_rf_serial_write +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 0xb807cb1f rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb8c520af rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd1c1420 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc31aee19 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5b8c758 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc5ffaa8f rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1a92f91 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd1f65acc _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd23ace31 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2fcc7a7 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd945568e rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdf6aedab rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe07ff600 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2814f74 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf9566584 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x220e2585 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x3b31fb2a rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb05dff0b rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb7d132e2 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x37cc7d65 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x56cd36f4 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb3087c40 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xc8f8eadb rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x00a6f50c rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08982c19 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x13d43359 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1bd26eb7 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a8071af rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2e5adf68 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2f2ccd49 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36ac84c5 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b2e71e1 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ef7ecc1 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x513c651b rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5671c3ab rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5d7d6121 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74359449 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78e9ceb0 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x80f120a2 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8f84c715 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9021df77 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9ecc2ffc rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa2881868 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa713a9c9 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbfad0a52 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc11aac16 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfeabe12 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda90bf6f rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe63cf9c9 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5d664ee rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfdf0563e rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x0903610d wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xc85ef34d wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf85bad13 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf953da01 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x5ac75fbf fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6a7bb8a8 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xc822eafb fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0x81ad8bf7 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xf12e2455 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x8e48abf2 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb4fe093f nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xcaed1f4b nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x2c1cbbf4 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xcd1af8f8 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x02e053de s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3294b5c7 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x9c253060 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0d26b7b1 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1c5b712d ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x477951af ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x55979a4e st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5acb8054 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x687309ba st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6b7e9322 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb4b2a2d1 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xbd9a19d2 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd1c791d8 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xea6f14f7 ndlc_close +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0983b40c st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x18718d62 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x39484318 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x55cb8564 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6de8c942 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x70b70769 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x74f10fd8 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x76c89932 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x97b7a030 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb8922fd1 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc87394d7 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd4f73a58 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd52671b6 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdb7362aa st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe681bf80 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe939a39b st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xed5aeed6 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfaa515f8 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/ntb/ntb 0x0b0bf8e6 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2cbdf3f8 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x351b2f78 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x3cfea265 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x84b1ff27 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x92026811 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x9666cbbf ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xf31fcc27 ntb_unregister_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xc8c4503e nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xfdfccbe4 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x81301102 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x00be3478 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x12e952c9 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x19daf0e8 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x1ca1e2f7 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x1e735287 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x1f1e66b4 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x1fa360ee parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x2273e941 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x2f4f15b5 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x3760952f parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x3d1877ea parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x53ec65f4 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6b02b238 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x715a7f08 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x7a4b25fc parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x7c66a37c parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x7f10bf30 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x85d0349c parport_write +EXPORT_SYMBOL drivers/parport/parport 0x879b78e0 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x8d84f4a2 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x9036ccac parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xa0920599 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xab1b7240 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xb4346e31 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xba8dc988 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xbc4d0dba parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xc8ada8c1 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xd6dc5bd2 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xe3ef0177 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xe85a023b parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xecf174d9 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xfd67cf11 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport_pc 0x69d673e1 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x8dcfc561 parport_pc_probe_port +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x0f8ebb43 iproc_pcie_remove +EXPORT_SYMBOL drivers/pci/host/pcie-iproc 0x685caa74 iproc_pcie_setup +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0cb32195 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2c7bed0f rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3560e40a rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5ade2b6b rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x613888c9 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7aced899 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x94542307 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc7ac78c5 rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xda42cd7f rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf8e6e1b3 rproc_add +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xbba1e29a ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x03576d52 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9049eea9 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd6ccb798 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe6933f63 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x20943b94 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x21ad271d fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4ae4fd17 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x619f0a13 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x70dcccf2 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x808fa888 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x836c82ac fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x89fc05ac fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9f20aa2e fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa4325339 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc2de1ed3 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf43bded2 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x02631f7c fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x06bba93d fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x09d2a73d fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0aa40bc5 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0ae5b9af fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21221b4f fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x260207d4 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27c98973 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e8f3a9d fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2ee52cf9 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3f020eaf fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x432459a7 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x463eac15 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ab17b87 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4bdeaf26 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d15cfec fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e7ea521 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x503d1bc9 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x564729e9 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x588ebbf1 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c141142 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65418630 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x65f3ce2d fc_linkup +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 0x77610e34 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x77a28908 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d8e7f10 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x87e3d7df fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88a364e2 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x913bc1d4 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x95e42f75 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ba9bb35 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9cb2a92b fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae92744d fc_eh_abort +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 0xb6ce7425 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc015801d fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xca194a90 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcd250f16 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcf7a3e22 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd0aa7d5e fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3db26b2 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xde0f54ba fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe028e05b libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5109cd0 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1a4f7069 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1bcbac40 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x45ae1368 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe17198da 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 0xcf5c3e73 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x02154ee6 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1718917a osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x26a680bf osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x28839602 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x29bcec8e osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x370f9450 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x391dff21 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3a40b100 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x46e15105 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b0268ba osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5124d847 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5203fb7d osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5815d1c0 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63d5afd0 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x66cc446c osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6ad6a2c6 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7cf6f174 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7d32e9c8 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7e88ab79 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8368038f osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c39b776 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c8309bf osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8ce4f91e osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9390e28f osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa4ee7629 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb4283d2a osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbb3c3b7d osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbccd2302 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbd481b9f osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd096c634 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd7e08eef osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe24e7928 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe3e4322e osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xed6e5cd1 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf71f326d osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfdc8c6b9 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/osd 0x299e94fd osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7074d0c7 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8a5f4705 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9ada9d50 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe77768fd osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xfcd74073 osduld_put_device +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0f3d7d76 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1800dc7f qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3294028d qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6da5556d qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x97f20303 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb924d677 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc82c4b17 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc895b4c7 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xca173e04 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdcffdbfa qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xdebfb562 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf7866d81 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/raid_class 0x1a2958d9 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x52a79fef raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x795f2f35 raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x12b05cd6 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43f40e09 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x45925eca fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4bfdc838 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6af2fbe4 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6cefa28f fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x70f8bf3e fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x87124f96 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb3613c74 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcdd0ffa6 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xd4503ba0 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe7b1498f fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf5ae6920 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x08e34239 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0c2e4334 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x145ef87b sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1e57b4f6 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2637b9fe sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d45809f sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a304a42 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57b5afc8 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60834bc9 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x65bcf349 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6e68ab80 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x827e84c1 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a960f04 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xac48bc39 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb157dcf6 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb2f2fda5 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb750af1f sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbbae6993 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbe5b4d56 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc45f01f7 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xda28d8e6 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xda315349 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdbe111b2 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0884840 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe8886b7e sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xef1d7428 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfdd6e192 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfeb71cca sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x4b5ca060 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x931fc5eb spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa412b9dd spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xeacc4bcc spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xf9695775 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x22a49ee2 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa1f8f724 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa2ec9cd9 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd04d2683 srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x431ff5d1 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x44a375a2 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x65add676 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7c069907 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7ee3091d ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd3851c93 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf7ec07f6 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/soc/qcom/smd 0x164c1fc2 qcom_smd_driver_register +EXPORT_SYMBOL drivers/soc/qcom/smd 0x1cd3db35 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 0x003cad83 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x05200b31 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x08316a8f ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x13dbc8a8 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1ad2cc7b ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x1f203d8b ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x2259f195 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x32566891 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x7db5fd91 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x815dff1a ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x8cdb5294 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x9c5d7e17 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xbbbfa0bd ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc383166a ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xcd63613c ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xd45e535b ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe250e3ff ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xe9e1114f ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xeb601991 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xfb1375ed ssb_device_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d39bab4 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0e166b3d fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x11807cb1 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1a7fee12 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1b14e866 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2089e858 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2b4f874b fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x37f888bb fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3ce8dfb9 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3f486331 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4b52633d fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6bf5608d fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x756e7f0f fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x78449775 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x78646b17 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8ff68fe1 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x957fcae3 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9c7a84ca fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbd6e49ed fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbeaed71f fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd34434e fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe2bd52c0 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xec2d83a9 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfb45bf24 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xa17e3005 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xb622f349 fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x33df5833 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x0572b236 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x2c663d5a hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x5772efdf hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x67bcc266 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x29581d7f ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe11a5118 ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xf04e79d1 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xfb64c36c most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0483fba3 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x053315b7 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08488d1b rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0d3095fc rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e01c8f2 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d79156b rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2281a230 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x26b86287 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2a7434d3 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cd200a1 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x30005610 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x31ce4fae rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x370c5ebe free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ad893d5 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3afc92eb rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ee3aee0 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ec53abe rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f17be45 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x540dc56b rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63eaada4 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67466f6a rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x67838c1d rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6c17d881 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6d2c351a rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x773da912 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7a3860a7 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8addc5ea HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e9862d9 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97061575 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97f84b27 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa1ee20e3 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa20551c9 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa95b76bc rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa91ba05 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb1f2e549 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb4d9ddd rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc65a0453 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc99caee0 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcce19341 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd29c3044 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd79f8730 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf624ddc dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfd6d62f rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe417d61c notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe419a6d6 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe872c7e2 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb2b8c36 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4c58a03 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf68bfcc1 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfdfe6e53 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0756190b DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0837b4b9 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0aecfe40 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x187271bd ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1cb44e22 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d4d7cb8 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ebd9287 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f17bc55 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x214b53fe ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x270ba8cf HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30d094a6 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x316b21a7 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3c57194a DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d1d423d ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3dbaa3ce ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4659bc52 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x47759d44 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x49d0bde3 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5206eaa4 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58301600 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5979b1d6 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5b1e9c6b ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e63c101 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6cbb6565 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x71fc9b7d ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7314bfee ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x758cb569 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80517268 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83f44085 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86350f16 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8f2b8b94 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9c17bc08 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1b4749b ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3899a0e ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa9912dc ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb6f77c42 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb80951a6 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9372c1f notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf8b7c55 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc591f27a ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc96bdcab ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb83f838 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcd1bf2bf ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd791c1ea ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdcdc014a ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdda6a506 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe1be30ba ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe389dbbd ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe557269f Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf371f773 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf49a65db ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd7318dd ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe8d5cb8 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x03f869f8 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0dfb740b iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x112a7ba4 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x38d3a5ac iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7988a403 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8816ba78 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x884aca44 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8af52446 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x91e60ad2 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x97beb527 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa0455b8e iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa83f7ed9 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaa285e5b iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac42f5db iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb60dd61f iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6e74dc9 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbccf9387 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0b30930 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc2374664 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc27675bf iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc337c116 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc7be4c96 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcfb3db58 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xda116395 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xdb8a1042 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe9fec3d2 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xefcff6e3 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa822828 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03dc45ee target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x05dea691 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x0685d21f transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x071638b5 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0be1f2a5 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c86a482 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d210383 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x0d2b0c52 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x12d3578e target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x1938947a target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e3e5d9e target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x206ff9c2 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x209dec00 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x27277752 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a32fe0f target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x2cb23d08 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f87f738 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x38a37ba9 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b8e99e2 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x40462194 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x415e1c2d transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x487d66d8 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c3bcf08 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f947685 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x4fa2fd1b sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x62db589d target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x689cdfc5 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x6973f003 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c10a146 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7650f3c8 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x774936b1 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c243dbb target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d65969e target_alloc_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 0x894f7d22 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x89b60ad3 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a9eddaa target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f80c971 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c916f41 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1992deb target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xa96f4c5d target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaaf90bfd spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xadbe081c target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xaeb8f0cb target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2fc84c5 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb5a2d6db target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb7e372c9 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9aba9e7 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xba805a01 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xbca570b7 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1d9f92b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xc3ca29c0 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7f6c824 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd2a0ac8 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xd195dc47 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4ed9760 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb6f9c44 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xe27da9ea sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xe40c4960 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xe4844082 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xe7b9316c core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb0eaa8b spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xefdfae7b transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0880dfb transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xf3a4c67d spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4f5d7d8 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xf70ece78 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf88541b7 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb25190a transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xfc4b4bf5 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xc8a16626 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x11ed62c7 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xa79fce95 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x10ac396a usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3050a0c5 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x317d4e8f usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x33d0914a usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x40b0fa55 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5c000ed7 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x723db793 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8ccfe776 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8f695e58 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc46186ac usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcd789456 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xeffc6d0d usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xb2fb2e32 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xbc55cb05 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 0x8ffeb215 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x989af660 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xaa19dd1b lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xe1cfe880 lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0bc12482 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 0x261020b8 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x377aa10c svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x441bda2b 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 0x7d85d72b 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 0xca1c44ff 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 0xfc68cd87 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x70939f8d sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x9c4131f6 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x928384c6 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x3ed89e26 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 0xc2a6edaa mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x032c03d7 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x5d3a4478 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xe85e4893 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3f79fc12 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x64202ef3 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa32c92f7 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf8d1fbc9 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x1620087f matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xcd3852b7 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x15be1530 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x237351f3 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x60455884 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x6115359c matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x2cfe2d08 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4ab834c7 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0a5c893e matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3e732ef4 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x998a8014 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd9a077ee matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xeca8a3e6 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x9e675bab 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 0x6ac418ed w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x909dcf86 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb2e9477c w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xb8763e5e w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x0f5f011a w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x8d325782 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x41128d94 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7ca3a59f w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x1cfacf8e w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0x4fc95b2f w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x96e69dfb w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xa95e5ea2 w1_add_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x0b9d2009 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x149975e0 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x1e7b9a8a config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x428804c1 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x460ddbbe configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x4fdf250d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x505f26b6 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x68e68da0 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0x7187eb1c configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x90e70ea9 configfs_unregister_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 0xf1119032 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xf5cdb856 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0xfb3e1e85 configfs_register_default_group +EXPORT_SYMBOL fs/exofs/libore 0x11c27dc3 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 0x4dae1c6b ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x4fa4e74c ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x5c427ed5 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x655a55d2 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x7785498d extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x9fcd87e9 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xc1d14fe0 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xc5fdb75d ore_write +EXPORT_SYMBOL fs/exofs/libore 0xf5903c38 ore_get_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x06346df0 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0x0a541107 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x152c9477 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x1c08a22e fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x1ee4c62e fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x23825c8c fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x25631afd fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x356629ee fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x4068e58e fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x4d5a16db __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x5a8dcf8f __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x613b9c23 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x686208a1 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x68e1b542 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x68e89f85 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x6dfec1e0 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x71d9080f fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x7214fd1b fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7b60f7df fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x7c2b92be fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x8421b186 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x85e8028a __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x8740e5cc __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x99051c3a __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x999b7bc2 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x9a45c353 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xa7534e0d __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xa8f6505e fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xa95a1ea1 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xac8572a4 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xaf958e5e __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb028dc29 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xb7758258 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xbd595e07 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xbe1f7f6d __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xc840719c __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xd789ff08 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xde78d39f fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xeee3c37a __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xf26fe641 fscache_object_destroy +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1b08d558 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x9409c34d qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb7c193d1 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb9d3d5ed qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xcaf15972 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 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 0x8a72f902 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 0xec14eefe 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 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 0x03b9d09f lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x707faaf5 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc10e6c35 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x5fbe87fb unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0x8d5cacae register_8022_client +EXPORT_SYMBOL net/802/p8023 0x48535c30 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xde1aa80c make_8023_client +EXPORT_SYMBOL net/802/psnap 0x8be99fc4 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xcf88ade2 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x006bee95 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x00ceb2c9 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x02e76829 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x052f3fc3 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x05a80ce1 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x0fefd67e p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x205c3faa p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x22b9c8e8 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x2484b898 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x24fc4d3e p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x25a21cb7 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x38b3dd21 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x423baff1 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x45946329 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x517b28bc v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x51d40f56 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x57f6ca68 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x8589621a p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x9ce58e4f p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x9ee474e5 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xa3bf5d0d p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa502c7cf p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xaab9398b p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb3a68dce p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xb4afe3bc p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xb5e95cee p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbc15e152 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd219f750 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xd3d7edc7 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xd40d87ac p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd473fa0f p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xd5e2b766 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xd605f6ef p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xddf4ba27 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdeac4987 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xe179a886 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xec76c392 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xecb55f4e p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xf0a2ce14 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xf362a016 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf57ffa75 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x4a177fa2 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x538762f7 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x7eea62f0 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xad39236c alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x04f829d0 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x20706a84 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x35c5e001 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5a654e87 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x6a66dce7 atm_charge +EXPORT_SYMBOL net/atm/atm 0x8f5131fb atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x98baa880 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9a5998a1 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xaa81067a vcc_release_async +EXPORT_SYMBOL net/atm/atm 0xbd8a4bc0 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xcf590cea atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xd47fe409 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xe184f4fa register_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 0x03f92268 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x1e974640 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x335d59d5 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 0x72976cce ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xa895642c ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xc4e606b2 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xde774de4 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xff42c250 ax25_linkfail_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x021a8121 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c6972df bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1cbb9ef9 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21e7d3fb bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b0147af bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2fa9c031 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x31508694 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x362de343 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d43c823 hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x46e6eb2f l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ba80ebd l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f01c06f bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x510cb03e hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x526f8a09 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x52ae4a6b l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x57b93197 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6300bdcc hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6542e1e2 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6fc5aeff l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79c5b1aa hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d4b77fd bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x808e4363 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8522b131 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x89e0a754 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a018854 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a7d9fdf hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8b656598 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x912be529 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x97e686d2 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa28eb59d hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa541be3c hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa990ff64 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xaa82f6ca hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb4091bd1 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbcc84437 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbf98b577 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc2448478 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcfc89221 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed7cc2ee l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf55ffe63 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf6b3d429 hci_conn_security +EXPORT_SYMBOL net/bridge/bridge 0xa45d8977 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2443ba54 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x4d13dc8d ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8c703674 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x280384d5 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x2a09f713 cfpkt_fromnative +EXPORT_SYMBOL net/caif/caif 0x2cd651fb caif_enroll_dev +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 0x5087c6a1 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x69f61917 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 0xb3178625 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/can/can 0x2ab2a879 can_proto_register +EXPORT_SYMBOL net/can/can 0x384a93f1 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x7000e5c1 can_rx_register +EXPORT_SYMBOL net/can/can 0x7691e362 can_ioctl +EXPORT_SYMBOL net/can/can 0xb20971bf can_send +EXPORT_SYMBOL net/can/can 0xcbe902f4 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x061ca46f ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x07bc8f33 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x084811e2 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x10e71265 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x1254a1ac ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x161a43f5 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x1808236c ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x19fbe952 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x1bffeb46 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x1e00b4e7 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x20df4756 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x247874b8 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x249a1e12 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x2523b4db ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x260c8356 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x2accd5d0 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2c5b6f52 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x2c82e2d5 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x39997338 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3e7d18e1 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x40fb0d3c ceph_oloc_oid_to_pg +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 0x4945926d ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x4b7491a9 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x4c6bd8d3 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x4f784919 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x515de6db ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x519d173e ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x5358f954 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x57d88ccf ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x58b08afa osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x5a88a14b ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x5ad18e83 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x5d6a3dd5 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x636387e2 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x67da7692 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6854b5c8 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x6b1a01fe ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6fca7359 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x712abbbf osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x74887e24 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7c06d92b ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x7fde9f27 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x82158a7c ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x838b07e7 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x8395d672 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x83f96a7e ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x8450c451 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x91e612a2 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x999c4660 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a367aaf ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9aa612ec ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x9d01d0cb ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9fb4058a ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xa1cfae15 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa63bbf87 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa9da6e25 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xaa766c92 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae5a62d1 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb27327ab ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xb3c18a78 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xb4a04fdc ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb6aac9b4 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xbf7f2086 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xbfa48642 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc4d663e4 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc5937585 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc6ace2a7 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc886e983 ceph_get_direct_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 0xcef9a08e 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 0xd73f0f78 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe00740bd ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xe1becd3d ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xe309b9b4 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe71b1382 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xf09d83cc ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf0d5ceaa ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xf493cde2 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xf5f3d420 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfa5bcc95 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xfc5dd1a9 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xfc7ba555 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x637e2f3f dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xa0d4b38c dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2740bc31 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8718bb09 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9d01ce8a wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xab552f92 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xdf0a2741 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xec08b35e wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x65d71cbc fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0xf35b1996 gue_build_header +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x253bbf6f ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2b84ea55 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x351563e9 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x68836975 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd33e4356 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd9bd2e22 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x065f76de arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf0462cbb arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xf77aee6d arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x33a92c5c ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x656e14f6 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd8adbcd3 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0xaa70b284 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xad1623d8 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xab1ce1a1 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x004cd1e0 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xae1f44d6 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcc5b01ed ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xda3444c4 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x248d50a8 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xd6be937d ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xecd03471 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x05bcacfd xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x2ac34a66 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x3309715f xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x589f9242 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0a1be3c6 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x1d17b0f2 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x441ab4d5 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x4fefd214 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x65c0a8bf ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x8bdaddfb ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc572ff49 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf3c73032 ircomm_disconnect_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 0x097ca619 irlap_open +EXPORT_SYMBOL net/irda/irda 0x17a491c5 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0x1887f67b irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x19f949e3 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x24603bc4 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x2aaa13ad iriap_open +EXPORT_SYMBOL net/irda/irda 0x2f768398 irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x35d84405 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x36cad55b hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0x37791344 hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x3ac1e9e5 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x3c2a78ab irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x3e322bc5 irlap_close +EXPORT_SYMBOL net/irda/irda 0x43d8d856 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 0x4cddf315 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x50b8cead irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x58508e84 iriap_close +EXPORT_SYMBOL net/irda/irda 0x5966f47b irttp_dup +EXPORT_SYMBOL net/irda/irda 0x608a9f38 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 0x731cec71 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0x762c2423 irlmp_close_lsap +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 0x832e4f9b async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x84607f60 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x87897f13 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x892568e1 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 0x901f3c0c irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x90ddb6bd hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x90e74d2e irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +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 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 0xc8b86864 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xd0a0c23b irlmp_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/l2tp/l2tp_core 0xb7e809fc l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x96ac165e l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0ac56ead lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x0b7c8f3f lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x27c42043 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x397e07d2 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x532012f1 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x56166da1 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x6c7d0efc lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x6fa9c921 lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x26bd784c 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 0x6bce9788 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x9f5a4ce2 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0xad0651a3 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xad7e23ad llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xed1de4d7 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xf1bc10a4 llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x03f4b54b ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x04c96df1 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x051bdeea ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x051c112f ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x09162308 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x0a5a7a13 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x0a6e4019 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x10260c67 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x18a8ba51 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1b82ab54 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x1ca485aa ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x226fd432 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x2377f4be ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x267a2f18 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x26aa7ca7 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x27ada3a2 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x2949cb22 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x2980a98f __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x2bd376ff ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x2c186ab2 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x2f851848 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3325b06e ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x34be0631 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x39da63c0 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x3db57a44 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x3e900ed4 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x438a39a5 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x49ba6cbe ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x4c5b44c4 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x4f098ba9 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4f3fa97a ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x5326342e ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x5ee3afcc ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5ff87e8d ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x623576aa ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x63fba286 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x69afa0a0 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6aed6c59 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x7301d6d0 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x76531595 ieee80211_cqm_beacon_loss_notify +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 0x7aebf6bf ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x815bbf44 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x84d7823a ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x8f6a1ec7 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x929a36f2 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x93c7ecba __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9706ac70 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9bf174d6 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x9d9db17b ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xa113a4c5 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xa490149a __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xae45d12b __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb229678d ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xbb093b74 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xbb4d2ae6 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xbfda24b1 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc127885e ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc235ca5b ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xc9076765 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xce3b22bb ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd77cc0a0 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xd8fd21c5 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xdbd20d93 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xdbe86797 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xe3a3bce3 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xe6107167 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xea9d2f6f ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xec2cf5c6 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xec3fa253 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xee1332f9 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xf18b8377 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xf56b5c97 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xf7e6ea42 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xfa531e82 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xfc1cd6f5 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xfe1b67f6 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xff912ea7 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xfff9389c ieee80211_restart_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x18432c5b ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x41ed49a5 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8b6e4476 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xaa1e046b ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xacc8faa0 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xc7dc9095 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xdb239d93 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xde995d2a ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2a89a473 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x320b9b35 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x39fa7e5d ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x439f1c94 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x649d869c register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d78b652 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x72ec5c1b register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x883b5e91 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x964a6284 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x96ccd2e0 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb6858ad8 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb9b04b47 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe98065e8 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeac6e571 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7ffe0577 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xd7891d77 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xf324b882 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x2b2c1fca nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x57769b08 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x7a90ff99 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xb5fa3b55 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xc1f6d996 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xc97a0c5a __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x20947462 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x24bb4321 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x346d4f92 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x39422566 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x3a4088e0 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x650d9e53 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x88126ec9 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x8ed3f2ad xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xd61c6a03 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf3e11bbb xt_unregister_matches +EXPORT_SYMBOL net/nfc/hci/hci 0x055f9ec2 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1a53967e nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x1b2a5ae8 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1bb8ea38 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x299a7a13 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x3642095d nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x38a58452 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x477a698d nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x4e54c900 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x67e22137 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x7028f043 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x78218fef nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x7aecb967 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x8ab75d8e nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x8f29dedd nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x976a2ece nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xb0be4e70 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xb5d8f54e nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc05ae750 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xe4eac12c nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xe6f61bf5 nfc_llc_start +EXPORT_SYMBOL net/nfc/nci/nci 0x0757e109 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x0f8a6e66 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x11d49e9d nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x1d6feb37 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x1f6d9c65 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x2590216e nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x34214d94 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x49df94d7 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x5549b487 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x67908462 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6ff3d152 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x72f75df4 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x79fe2ef3 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7fff4dcb nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x849ac6d3 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x84a16e9c nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x8adcdd7c nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x8fbe4c34 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x9b1800b6 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xa47e403f nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xb7255fee nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc3994099 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xc3a39408 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xe341885d nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xe393c34b nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0xe50b88cf nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe52dbcd0 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf2bf5651 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nfc 0x08a05975 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x260365f6 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x274d456e nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x2c31ab17 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x2d2e2f26 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x2fddf1de nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x35f446fe nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x40129b08 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x7aaeb281 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x7fc62fcc nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x8dadfc2a nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x8e6ba996 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x8ea81e4f nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x99b0af84 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x99e8d6ae nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xab7aea17 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xb98e4b60 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xc4bba02d nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xd4ff7dff nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xd8a76bba nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xda106a19 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xdfa4f983 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xe4fbbec9 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xe92c8d21 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc_digital 0x01b04986 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x7e3485e8 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb37b3237 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xdd5a8fd9 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x01ab9090 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x1179a76b pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xbaef5ec1 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xbf0d0289 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xc287c3c7 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xc764ec5e phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xc9bf87e9 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xf435caa0 phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x169caa19 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3bb41be7 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x41174c6e rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x463f0913 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4c533e6c rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x552fd37b rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7e4b359c rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x80a98fb2 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x899e5727 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9458860a rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9ade9f09 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbf6f3379 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xeb427dc4 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf12e0ef9 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf257b64c rxrpc_kernel_send_data +EXPORT_SYMBOL net/sctp/sctp 0x6fd140d3 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x2593f79b gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x4cd78a19 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa35efa34 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x8b31a078 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc8f8468a xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xf053cf84 svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x42a18f25 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x4d8458d3 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x011ba179 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0215222b cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0d08a40b cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x0d5b6406 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x0e2d7376 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0f18fa15 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x158a55ef wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1bd8e3d6 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x25bbc986 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x293bbb74 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x29905eb7 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2a4259bf cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x2c30783d wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x2f322a5c cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x2f63458f __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3017cd56 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x304d8904 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x31d63556 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x35901ef6 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x3bdb4440 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x44aabb04 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x451d8a35 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4bc2ff47 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x4d6e6355 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x4f0cd1af ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x5139bbf2 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x519beeb8 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x5702142e cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x5ac08b67 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x5caf6cd4 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x5cfe1476 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x60ee7ad3 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x63e6084b wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x68344714 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6c190eed cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6c79f6db cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6f122fb0 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x778bf888 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x77e1a50c cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x7a2a79e0 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x815274c6 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x86667ca4 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x8879bc34 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x8987a9e3 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8dd86b01 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x939c7ef1 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x959f84e8 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x96866462 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x96c45663 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x96d9290e cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9a605025 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x9c0bc6dd __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9e85e304 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 0xa2b3932e cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa2b56b15 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xa89d8873 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa8d5bb7f cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xa9a979d5 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xaec140d4 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xba542442 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xbb0a424c cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xbbb7bafe cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xc0e7742b regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc7e69753 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xc83b7c22 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcb01a060 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xd4081280 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xd7a4f177 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd7ee702f cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xd8f2d94d cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd90911b9 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xd9584b8c cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc16a025 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xe1c87eb3 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xe527e0fa cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xe57ae70d cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe6f44d07 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xee69812a ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf2a585d5 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf5d9439e cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xfa922dec cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xffd683f2 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/lib80211 0x338d9eed lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x6bcc5db8 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x80f428fb lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x9b7e9cb9 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xabb9e4af lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xba0690c0 lib80211_crypt_info_free +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x61291415 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1824cc35 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 0x2f1be762 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 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 0xae13da51 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 0xe6573a8b 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-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 0xc450dfa2 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 0x21829a69 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd-hwdep 0x51c660e7 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x18516fd7 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2e68e834 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x470c23f9 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4840985d snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5479830b __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x580c694b snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6234a4d7 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x74b8a542 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x808bd710 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x845645de snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x88503892 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9bd0ea8f snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa7ba722a snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xafcb0a8c snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc24e1e28 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xccf455bc snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd55ee500 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xddc5ba83 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe3cd2773 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x6d629c59 snd_mpu401_uart_interrupt_tx +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xb77a6ee2 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 0x11d685f4 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1f5c3307 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x2e4efc2c snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5228ea0b snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5da2ebfe snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa83c2f95 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb95a6800 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc006401c snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xccbab6e7 snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x21e8ffa2 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 0x3ebc13f1 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x46023b0c snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9b7a4bc5 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa8e04330 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb44f74c2 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc8524017 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xd96cee8c 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 0xfdea9762 snd_vx_resume +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1056589b amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1ccf1262 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1f367c5f amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c98e601 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x328150cc amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c394e44 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4e442ba1 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52887226 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53bff0b6 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x542dde69 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x544e2bff cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x585f2e4d avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5d41d727 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5e719d42 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x605b1414 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x628f40bc fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7c3458e2 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7dca890b amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9932c580 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9ca45165 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa4f47539 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa56ade70 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa662c26c snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xab847104 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xadecedd8 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbcea7341 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf9ad79d cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe1d968f2 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe96e1004 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed854b82 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee6e6bb5 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf454d186 fw_iso_resources_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x9ba9fc8e snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xe6107d7a snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x122431f1 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1f574970 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5194df08 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8ce6f270 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc8814891 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xdfd38a6b snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xedbc7fa7 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xf702448c snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2beff161 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4a9fbd21 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5eaf9b47 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xade70137 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x043883b8 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xd79cde49 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x06f36759 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3f4e9480 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6a8b2ac9 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x92daa186 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9e9cd338 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb47c2566 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-i2c 0x11ec379d snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x471e56c4 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x931e4229 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc63e1fac snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe6fe9568 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xf906abd4 snd_i2c_readbytes +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x00920cb3 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x01cbd1a3 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x048dd01e snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x243d8ff2 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x34ccef1b snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x3ee95593 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x44b1bd26 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5812b63f snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6dc1592a snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7de5692e snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x92e83e2a snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x98905bd1 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb4ada397 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbf354225 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc48fe8eb snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe5ca6c04 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfc126879 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x10639534 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4accb0c2 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6621848a snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x802c158b snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x88cc4dd4 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x89cc7d15 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8b60cab6 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8fa58147 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc18df0ee snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x06b7e105 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2f525f5d snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe70d6141 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x011811ff oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x018e0766 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0a9a91b7 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1c26d200 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e062a4e oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21e3f224 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x42d689c5 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x532bbc5e oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5986a487 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x63a544f6 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x74cd97d2 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x76e47141 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x986c7664 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa83c5569 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb89f99db oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdbba1c61 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xeb1d3f67 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf47f2672 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf610f7b0 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf81b0a61 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfaf01c88 oxygen_write_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1c3edd9b snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x25d25b86 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x281dc7b8 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x58c61a2f snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xd4a91e81 snd_trident_start_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x48eeb825 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x5ae9aa98 tlv320aic23_regmap +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x17233655 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x233e9a3c 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 0x820cdba7 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x8853c75a snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc0c95655 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfe30ed4c snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x005f7411 snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x0a20e4d1 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x172d18b3 __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2eb02408 snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x40ff692f __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x449d0154 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xb73ccf64 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe859a5e4 snd_util_mem_avail +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 0x6c095ff4 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 0x001bb1fa truncate_setsize +EXPORT_SYMBOL vmlinux 0x002205f2 lease_modify +EXPORT_SYMBOL vmlinux 0x0022494f sk_common_release +EXPORT_SYMBOL vmlinux 0x002f4942 put_io_context +EXPORT_SYMBOL vmlinux 0x00362258 dss_install_mgr_ops +EXPORT_SYMBOL vmlinux 0x0036bf9a inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x007f6840 down_write +EXPORT_SYMBOL vmlinux 0x0080e4fd __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x0099dcff max8998_read_reg +EXPORT_SYMBOL vmlinux 0x00a4e85e scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x00a749bf snd_timer_close +EXPORT_SYMBOL vmlinux 0x00b7e474 drop_super +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d89145 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x00e0b02c dquot_file_open +EXPORT_SYMBOL vmlinux 0x00f31eb4 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x00fa8ec3 mipi_dsi_dcs_get_pixel_format +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 0x01519fad dev_get_flags +EXPORT_SYMBOL vmlinux 0x016538f4 I_BDEV +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0173c180 simple_setattr +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x018e02fa udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x019bc600 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x01a3d310 omap_set_dma_channel_mode +EXPORT_SYMBOL vmlinux 0x01b22270 send_sig_info +EXPORT_SYMBOL vmlinux 0x01b308db secpath_dup +EXPORT_SYMBOL vmlinux 0x01b7fd59 dispc_read_irqstatus +EXPORT_SYMBOL vmlinux 0x01b827aa omapdss_unregister_display +EXPORT_SYMBOL vmlinux 0x01bc46db module_refcount +EXPORT_SYMBOL vmlinux 0x01c376a5 md_integrity_register +EXPORT_SYMBOL vmlinux 0x01e81a90 of_phy_attach +EXPORT_SYMBOL vmlinux 0x01ea132e dispc_runtime_put +EXPORT_SYMBOL vmlinux 0x01eb204d wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02196324 __aeabi_idiv +EXPORT_SYMBOL vmlinux 0x02226389 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x0235f830 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x023e0fb0 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x024abda7 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x02529708 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x0252d9fd rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x02573b36 omap_disable_dma_irq +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL vmlinux 0x0286d64b kfree_put_link +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02b33d48 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x02b5c866 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x02c3ba0c sock_common_recvmsg +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 0x031051f5 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x0326a09d posix_test_lock +EXPORT_SYMBOL vmlinux 0x0334795d icst307_s2div +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03440351 flush_dcache_page +EXPORT_SYMBOL vmlinux 0x03512ece input_close_device +EXPORT_SYMBOL vmlinux 0x03529203 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x0358063b dup_iter +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x03866b6e audit_log_start +EXPORT_SYMBOL vmlinux 0x03ba39b0 v7_flush_user_cache_all +EXPORT_SYMBOL vmlinux 0x03c95cab dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x03c96ac8 pci_release_regions +EXPORT_SYMBOL vmlinux 0x03ec8ac8 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0427c1bd mount_pseudo +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0478bcfa sock_no_connect +EXPORT_SYMBOL vmlinux 0x04850149 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04c3f68d netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x04cda566 snd_interval_refine +EXPORT_SYMBOL vmlinux 0x04ce2b1d gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x04da73cb xattr_full_name +EXPORT_SYMBOL vmlinux 0x04de7443 dss_mgr_disable +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ed1e52 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x05004223 unload_nls +EXPORT_SYMBOL vmlinux 0x05119db9 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053123e5 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x0532e5ff vm_mmap +EXPORT_SYMBOL vmlinux 0x053bfeb4 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x05699375 mtd_concat_create +EXPORT_SYMBOL vmlinux 0x0585c194 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x059f1531 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x05a1b722 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x05a4712d elv_rb_del +EXPORT_SYMBOL vmlinux 0x05f7a556 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x05fadd67 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x062a02f2 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065adbe3 shdma_chan_filter +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x065e77de vme_dma_request +EXPORT_SYMBOL vmlinux 0x06607f92 dss_feat_get_supported_outputs +EXPORT_SYMBOL vmlinux 0x0671b107 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x06721207 __dst_free +EXPORT_SYMBOL vmlinux 0x0673b53a ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06925231 sock_register +EXPORT_SYMBOL vmlinux 0x06beb4ac gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x06d69ab4 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x06e3ad80 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0717d654 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x07410251 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x075494a3 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x07647803 simple_release_fs +EXPORT_SYMBOL vmlinux 0x076c63c3 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x07806490 neigh_lookup +EXPORT_SYMBOL vmlinux 0x07866a9d cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ab3ea5 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x07bf07db nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x07c7a868 unregister_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07cf9099 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x07d4f89a genl_notify +EXPORT_SYMBOL vmlinux 0x07de81af bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x07de912d jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x07df796d tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x07e45301 __brelse +EXPORT_SYMBOL vmlinux 0x08048ce9 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x08092ae6 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x08095581 snd_dma_alloc_pages +EXPORT_SYMBOL vmlinux 0x080a6c56 try_to_release_page +EXPORT_SYMBOL vmlinux 0x08176b1f wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x081f3afb complete_all +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083bc4a9 dev_mc_add +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08551df3 kill_litter_super +EXPORT_SYMBOL vmlinux 0x08634752 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x0871398a sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x0872e69e __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x08787907 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x088cb1c9 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x0895d1c0 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x089d6227 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x08b3f999 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x08c83b1f eth_type_trans +EXPORT_SYMBOL vmlinux 0x08cd4600 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x08d35b32 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08ff8f61 snd_ctl_notify +EXPORT_SYMBOL vmlinux 0x09157fd7 noop_fsync +EXPORT_SYMBOL vmlinux 0x0922417a iunique +EXPORT_SYMBOL vmlinux 0x09450fca nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x09497a51 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x096e5641 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x097c3699 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x097ec1ff _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0x0986ab26 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x098912f1 inet_frags_init +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09b5e4d2 ab3100_event_register +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 0x09fde0b5 simple_link +EXPORT_SYMBOL vmlinux 0x0a0786de udplite_table +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a3fc6bd sg_miter_start +EXPORT_SYMBOL vmlinux 0x0a41ff1e skb_copy_bits +EXPORT_SYMBOL vmlinux 0x0a465d4b serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a6fdca0 dss_mgr_disconnect +EXPORT_SYMBOL vmlinux 0x0a7c3f0f ping_prot +EXPORT_SYMBOL vmlinux 0x0a8281ac vfs_unlink +EXPORT_SYMBOL vmlinux 0x0a8fd028 snd_device_new +EXPORT_SYMBOL vmlinux 0x0aa0ec9f input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaba69f scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x0ab4428a sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x0abe854e sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x0acc2686 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ae5181e ppp_channel_index +EXPORT_SYMBOL vmlinux 0x0aee08e9 param_set_int +EXPORT_SYMBOL vmlinux 0x0afc4e7a touch_atime +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b3045da tcf_em_register +EXPORT_SYMBOL vmlinux 0x0b448933 registered_fb +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b539a29 bdevname +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b654b6b dm_get_device +EXPORT_SYMBOL vmlinux 0x0b7198d8 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b76654b free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x0b7b395e ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x0b9ccefd bio_copy_data +EXPORT_SYMBOL vmlinux 0x0baedac0 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x0baefb03 bio_advance +EXPORT_SYMBOL vmlinux 0x0baf39e2 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd786a2 seq_release +EXPORT_SYMBOL vmlinux 0x0c1598a2 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x0c18e66d xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x0c191f6c md_write_end +EXPORT_SYMBOL vmlinux 0x0c30ea16 sk_stream_error +EXPORT_SYMBOL vmlinux 0x0c33b095 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x0c404ed6 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c549551 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca50a26 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x0ca54fee _test_and_set_bit +EXPORT_SYMBOL vmlinux 0x0cabd9e7 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x0cadcaec kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cc14d5f generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x0cd23130 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x0cd917e9 ppp_input_error +EXPORT_SYMBOL vmlinux 0x0cfefe1e percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x0d3f57a2 _find_next_bit_le +EXPORT_SYMBOL vmlinux 0x0d3f9bb9 mpage_readpage +EXPORT_SYMBOL vmlinux 0x0d4d7a32 _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5dbfc2 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d64774b page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x0d8aeb34 key_put +EXPORT_SYMBOL vmlinux 0x0d95c104 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x0d9d09c4 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da26c51 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x0da86ab7 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x0dbc6a29 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x0dbd01e4 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dd2c3d1 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x0dd3d8f7 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x0de75289 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x0de85ca1 snd_timer_global_free +EXPORT_SYMBOL vmlinux 0x0e2206c1 bio_put +EXPORT_SYMBOL vmlinux 0x0e2956a3 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x0e4f1cf7 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x0e631a61 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x0e68b2ff blk_sync_queue +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e778918 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x0e8d3698 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x0ea61004 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eaf5274 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ec7a491 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x0ee7e0a5 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x0ee92479 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0ee836 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x0f357162 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f630212 mpage_writepage +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8a8ac4 path_is_under +EXPORT_SYMBOL vmlinux 0x0fa2a45e __memzero +EXPORT_SYMBOL vmlinux 0x0fa74e00 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x0fa91321 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x0fab2da6 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb4811b invalidate_bdev +EXPORT_SYMBOL vmlinux 0x0fb6a46e pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x0fc44c66 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x0fdec3a4 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x0ff178f6 __aeabi_idivmod +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff4be8a blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x0ff96e1b input_reset_device +EXPORT_SYMBOL vmlinux 0x0ffe213a xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x10263ab0 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x102c58f8 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x102e2f6e swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x1055f1b4 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107080f2 neigh_table_init +EXPORT_SYMBOL vmlinux 0x1072a394 csum_partial_copy_from_user +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1082637b skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x10868873 mmc_erase +EXPORT_SYMBOL vmlinux 0x10a82da6 bh_submit_read +EXPORT_SYMBOL vmlinux 0x10b69465 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x10d9fd35 invalidate_partition +EXPORT_SYMBOL vmlinux 0x10e160d9 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10fbfe68 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x1102da73 wireless_send_event +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x1118894b snd_ctl_boolean_mono_info +EXPORT_SYMBOL vmlinux 0x114893e5 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x114d2455 skb_append +EXPORT_SYMBOL vmlinux 0x11609414 blk_complete_request +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1173781d sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x1199c5e7 simple_write_end +EXPORT_SYMBOL vmlinux 0x119b50e7 elf_check_arch +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11e20c4d generic_readlink +EXPORT_SYMBOL vmlinux 0x11eeeac9 freeze_super +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1217aa0b kdb_current_task +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x12437264 netdev_features_change +EXPORT_SYMBOL vmlinux 0x124423f6 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x126b5695 submit_bio +EXPORT_SYMBOL vmlinux 0x127064e3 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x1278f33c jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x127e1d11 file_update_time +EXPORT_SYMBOL vmlinux 0x1282ab0d pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x128ee377 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x131f9dcb __nlmsg_put +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x1332562f unregister_netdev +EXPORT_SYMBOL vmlinux 0x1332a0d8 dcb_getapp +EXPORT_SYMBOL vmlinux 0x1353ad2d blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x1357f2d2 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x135823ca prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x136032be blk_queue_split +EXPORT_SYMBOL vmlinux 0x1363f6ac scsi_scan_target +EXPORT_SYMBOL vmlinux 0x1367ffba xfrm_register_type +EXPORT_SYMBOL vmlinux 0x139a9c72 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x13bb1f25 thaw_super +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13dc28e4 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x13e6727e netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13fa21ad scsi_host_get +EXPORT_SYMBOL vmlinux 0x14054d85 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x14365692 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x1452b13f scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x14559dc1 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x1493c641 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x149a77bc dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x14bf1d63 is_nd_btt +EXPORT_SYMBOL vmlinux 0x14c851eb nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14cf17d3 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x14d4a9c5 _change_bit +EXPORT_SYMBOL vmlinux 0x14d8b8eb __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x14e9be88 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x14f5be24 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x15020479 __get_page_tail +EXPORT_SYMBOL vmlinux 0x1505f1c2 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x15062c8b d_walk +EXPORT_SYMBOL vmlinux 0x150be90e dst_destroy +EXPORT_SYMBOL vmlinux 0x152166a3 dquot_commit +EXPORT_SYMBOL vmlinux 0x152289ef param_get_ulong +EXPORT_SYMBOL vmlinux 0x15309658 inode_init_once +EXPORT_SYMBOL vmlinux 0x15384f51 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x1538d754 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x157a9e9b free_buffer_head +EXPORT_SYMBOL vmlinux 0x15b9c34d acl_by_type +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15f4f91a revert_creds +EXPORT_SYMBOL vmlinux 0x1604fe2c sock_create +EXPORT_SYMBOL vmlinux 0x16288f27 __genl_register_family +EXPORT_SYMBOL vmlinux 0x162ccc0c lg_local_lock +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x164dc48d tcp_prot +EXPORT_SYMBOL vmlinux 0x16766435 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x16783fc2 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x167de40b xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x16905da8 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x169ee8ed jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x16a88245 unlock_page +EXPORT_SYMBOL vmlinux 0x16ab59bb vme_register_bridge +EXPORT_SYMBOL vmlinux 0x16cc90ee generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x17079671 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x172536cf __bread_gfp +EXPORT_SYMBOL vmlinux 0x173279a7 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x173622b7 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x173a5b25 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x173f2f15 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x1784f057 dispc_ovl_set_fifo_threshold +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c83e39 skb_insert +EXPORT_SYMBOL vmlinux 0x17d39c67 seq_read +EXPORT_SYMBOL vmlinux 0x17df7492 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x17f5cc33 finish_open +EXPORT_SYMBOL vmlinux 0x17f5ec57 skb_push +EXPORT_SYMBOL vmlinux 0x1816b130 soft_cursor +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1854bd6b netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18991d80 register_shrinker +EXPORT_SYMBOL vmlinux 0x189c5980 arm_copy_to_user +EXPORT_SYMBOL vmlinux 0x18a77525 bdev_read_only +EXPORT_SYMBOL vmlinux 0x18bd76a4 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18cbb8f8 dquot_alloc +EXPORT_SYMBOL vmlinux 0x18dd5133 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x1907ef2c xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x190831cf bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x1917aaaa tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x1919116d tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x19233f69 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x1942acb0 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x1951c817 devm_request_resource +EXPORT_SYMBOL vmlinux 0x1957f322 put_page +EXPORT_SYMBOL vmlinux 0x19607884 dss_mgr_unregister_framedone_handler +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x1962318e kunmap_high +EXPORT_SYMBOL vmlinux 0x1962e63b param_ops_uint +EXPORT_SYMBOL vmlinux 0x197dc3b3 omap_set_dma_src_burst_mode +EXPORT_SYMBOL vmlinux 0x1985ec86 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x198788b4 snd_lookup_oss_minor_data +EXPORT_SYMBOL vmlinux 0x198b3cb5 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19a30020 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b31285 dentry_unhash +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19ef5b60 set_device_ro +EXPORT_SYMBOL vmlinux 0x19f5809b dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x1a1a53f1 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x1a267f17 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x1a43ad71 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x1a5b2728 drop_nlink +EXPORT_SYMBOL vmlinux 0x1a65f4ad __arm_ioremap_pfn +EXPORT_SYMBOL vmlinux 0x1a7531a0 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x1a7e1ca2 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x1a81a52b d_alloc +EXPORT_SYMBOL vmlinux 0x1a9ff1cb padata_do_parallel +EXPORT_SYMBOL vmlinux 0x1aacd5b2 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x1ad1f2e7 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0x1ad4fa5c posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x1ae2bc35 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1af0b421 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x1af18791 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0ca0bb snd_pcm_hw_rule_noresample +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b21268f writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x1b2d6d2c qcom_scm_cpu_power_down +EXPORT_SYMBOL vmlinux 0x1b305fc2 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x1b3103a3 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x1b3309ad __register_binfmt +EXPORT_SYMBOL vmlinux 0x1b3bfc84 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x1b4a33cb dma_sync_wait +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b673885 keyring_clear +EXPORT_SYMBOL vmlinux 0x1b69d3f6 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b85e681 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x1b92bdbf __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x1ba98a11 inode_change_ok +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bcfb5f5 omapdss_find_output_from_display +EXPORT_SYMBOL vmlinux 0x1bd49798 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x1be91d90 snd_timer_resolution +EXPORT_SYMBOL vmlinux 0x1bf27340 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x1c109e19 input_set_keycode +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c1d0143 pci_clear_master +EXPORT_SYMBOL vmlinux 0x1c242d21 tty_port_init +EXPORT_SYMBOL vmlinux 0x1c36732e __frontswap_test +EXPORT_SYMBOL vmlinux 0x1c3e8afa blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x1c49ed42 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x1c545c0c tty_unlock +EXPORT_SYMBOL vmlinux 0x1c56023f dev_warn +EXPORT_SYMBOL vmlinux 0x1c5e3878 icst525_idx2s +EXPORT_SYMBOL vmlinux 0x1c6a6ee1 pci_set_master +EXPORT_SYMBOL vmlinux 0x1c8007fb dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x1c9a868e xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x1ca7b039 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x1cc988c6 i2c_master_send +EXPORT_SYMBOL vmlinux 0x1cd0bc73 ptp_clock_event +EXPORT_SYMBOL vmlinux 0x1ce38425 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x1cfb04fa finish_wait +EXPORT_SYMBOL vmlinux 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL vmlinux 0x1d02d9ae __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x1d189e4e sk_free +EXPORT_SYMBOL vmlinux 0x1d28d91f abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x1d305754 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x1d3d6f62 downgrade_write +EXPORT_SYMBOL vmlinux 0x1d57e71f proto_register +EXPORT_SYMBOL vmlinux 0x1d66b2d9 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x1d6ced04 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x1db71a7d blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd288e2 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1dd8bd9a qdisc_destroy +EXPORT_SYMBOL vmlinux 0x1dde2074 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x1deb07e5 put_tty_driver +EXPORT_SYMBOL vmlinux 0x1df617e6 kernel_connect +EXPORT_SYMBOL vmlinux 0x1df64a1b scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e1138fe sock_wfree +EXPORT_SYMBOL vmlinux 0x1e190efe kmalloc_caches +EXPORT_SYMBOL vmlinux 0x1e251bcf scsi_device_resume +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e27d58c pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x1e5857a9 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x1e5ba95d jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x1e620695 pci_find_capability +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7734b1 bdi_init +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea34487 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x1ea42b48 blk_finish_request +EXPORT_SYMBOL vmlinux 0x1ea7f843 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x1ecc7e1b iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x1ed44895 unregister_key_type +EXPORT_SYMBOL vmlinux 0x1ee55ad8 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x1eeb848e __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x1ef9a133 __lock_page +EXPORT_SYMBOL vmlinux 0x1f0787fe blk_rq_init +EXPORT_SYMBOL vmlinux 0x1f213e55 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x1f31a545 freeze_bdev +EXPORT_SYMBOL vmlinux 0x1f31dfbc iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x1f5493e6 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f9a5ce8 of_match_node +EXPORT_SYMBOL vmlinux 0x1fa4333c free_user_ns +EXPORT_SYMBOL vmlinux 0x1fab5905 wait_for_completion +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fcf0fe5 pci_request_regions +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd1ab11 single_release +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 0x2019def1 proc_set_size +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x2027fa9a inet_frag_find +EXPORT_SYMBOL vmlinux 0x2031e025 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x2041ecbf blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x20421305 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204fd9ee pci_scan_bus +EXPORT_SYMBOL vmlinux 0x2050e967 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x205ec8de omap_dispc_register_isr +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2084169e __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x20a0ba4c mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20b68a39 kmap +EXPORT_SYMBOL vmlinux 0x20c397a9 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x21039d49 dquot_enable +EXPORT_SYMBOL vmlinux 0x21110dbf mmioset +EXPORT_SYMBOL vmlinux 0x211331fa __divsi3 +EXPORT_SYMBOL vmlinux 0x21188b83 cpu_tlb +EXPORT_SYMBOL vmlinux 0x2151e5a7 pci_release_region +EXPORT_SYMBOL vmlinux 0x21554164 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x21668c27 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x216944cc posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x216d759a mmiocpy +EXPORT_SYMBOL vmlinux 0x219422b0 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x219956b6 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x21a4c8ff nf_log_register +EXPORT_SYMBOL vmlinux 0x21d5725c kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e4f081 cont_write_begin +EXPORT_SYMBOL vmlinux 0x221c6832 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x221c752e __dev_set_mtu +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 0x225474ed snd_pcm_hw_param_first +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226359b2 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2264fda7 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b3a95e pci_match_id +EXPORT_SYMBOL vmlinux 0x22c8f864 nvm_register_target +EXPORT_SYMBOL vmlinux 0x22d7dddf dev_set_group +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22dfec67 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x22f0dbb6 dev_deactivate +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x23089de3 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x23193124 snd_card_free_when_closed +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2343de84 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x23856fbb inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x239e67a8 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x23a0f40a snd_pcm_limit_hw_rates +EXPORT_SYMBOL vmlinux 0x23a47bdd inet_csk_accept +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23aa49d3 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x23b4e157 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c33174 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23f975cd seq_open_private +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2404d341 component_match_add +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x245854b4 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245c176e vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x247500a8 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2491bb59 dev_addr_del +EXPORT_SYMBOL vmlinux 0x249e233f generic_setlease +EXPORT_SYMBOL vmlinux 0x24a75741 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL vmlinux 0x24b74cb6 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x24c31ff5 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x24d66a52 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2500560d kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x250078db tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2539823c generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25785c75 pci_select_bars +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25ae1b30 generic_read_dir +EXPORT_SYMBOL vmlinux 0x25c8717b led_update_brightness +EXPORT_SYMBOL vmlinux 0x25cfaa7a do_splice_to +EXPORT_SYMBOL vmlinux 0x25d01620 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x25d0e8a8 kill_block_super +EXPORT_SYMBOL vmlinux 0x25d97c2e mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25feac36 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x26140037 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x262d5de4 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x265799c3 snd_register_device +EXPORT_SYMBOL vmlinux 0x266c4ca3 snd_pcm_new_internal +EXPORT_SYMBOL vmlinux 0x2681cfcc of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x2682d4e1 vme_irq_request +EXPORT_SYMBOL vmlinux 0x26a298c4 kill_anon_super +EXPORT_SYMBOL vmlinux 0x26a45f54 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x26a56838 dev_activate +EXPORT_SYMBOL vmlinux 0x26aa151f follow_up +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26c2128c lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x26cba9e9 d_set_d_op +EXPORT_SYMBOL vmlinux 0x26ccd254 md_check_recovery +EXPORT_SYMBOL vmlinux 0x26d4e591 phy_device_remove +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26eae4fc mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x26f52b30 netif_rx +EXPORT_SYMBOL vmlinux 0x26f7e672 __serio_register_port +EXPORT_SYMBOL vmlinux 0x270b6321 setattr_copy +EXPORT_SYMBOL vmlinux 0x270e7e41 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x271a05e7 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x272a452c register_console +EXPORT_SYMBOL vmlinux 0x273a3f55 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2751be46 elevator_alloc +EXPORT_SYMBOL vmlinux 0x275da537 inet_put_port +EXPORT_SYMBOL vmlinux 0x275ef902 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x276051bb mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x2778d59b of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c7633f param_set_bint +EXPORT_SYMBOL vmlinux 0x27dff07c dma_async_device_register +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27e7cf80 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x27f9c59c omapdss_register_output +EXPORT_SYMBOL vmlinux 0x280871af dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x28118cb6 __get_user_1 +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281b92b2 cdev_alloc +EXPORT_SYMBOL vmlinux 0x286e3c67 __init_rwsem +EXPORT_SYMBOL vmlinux 0x2874b1ac ata_dev_printk +EXPORT_SYMBOL vmlinux 0x2885dddf dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28aebf3d account_page_redirty +EXPORT_SYMBOL vmlinux 0x28b55380 bio_init +EXPORT_SYMBOL vmlinux 0x28b981e1 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x28c71857 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x28eeb15a blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x29070184 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x2924e1fa sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x292914c8 vga_tryget +EXPORT_SYMBOL vmlinux 0x29514e3e netdev_crit +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x297e1e25 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x29a85550 uart_register_driver +EXPORT_SYMBOL vmlinux 0x29c6c47a pci_disable_msix +EXPORT_SYMBOL vmlinux 0x29c7136c sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x29c74d0c tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x29c7bbf8 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x29cdfe11 generic_getxattr +EXPORT_SYMBOL vmlinux 0x29ce8cd2 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x29e1b020 ida_simple_remove +EXPORT_SYMBOL vmlinux 0x29f5a4e8 may_umount_tree +EXPORT_SYMBOL vmlinux 0x29fd6202 blk_end_request +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a353413 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3aa678 _test_and_clear_bit +EXPORT_SYMBOL vmlinux 0x2a3ac37a fd_install +EXPORT_SYMBOL vmlinux 0x2a4b303f swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x2a738369 mount_ns +EXPORT_SYMBOL vmlinux 0x2a81b397 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x2a836bf6 set_user_nice +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab5a10d irq_to_desc +EXPORT_SYMBOL vmlinux 0x2aca11cc lease_get_mtime +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL vmlinux 0x2af95e78 block_truncate_page +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 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b355050 path_nosuid +EXPORT_SYMBOL vmlinux 0x2b37ce50 param_array_ops +EXPORT_SYMBOL vmlinux 0x2b4e956e mempool_create +EXPORT_SYMBOL vmlinux 0x2b7896b5 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bc0a6e3 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x2bc710f1 user_path_create +EXPORT_SYMBOL vmlinux 0x2bcbb8b4 unlock_rename +EXPORT_SYMBOL vmlinux 0x2bd00e6e cdrom_release +EXPORT_SYMBOL vmlinux 0x2bd613ad nobh_writepage +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2becf8a2 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c14b859 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c312317 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL vmlinux 0x2c3b0922 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x2c3b9eb9 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x2c48076a kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x2c54a507 param_set_invbool +EXPORT_SYMBOL vmlinux 0x2c5cdedb vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x2c7c8e9a pcibios_min_mem +EXPORT_SYMBOL vmlinux 0x2c81ec75 __irq_regs +EXPORT_SYMBOL vmlinux 0x2c9762ee phy_start +EXPORT_SYMBOL vmlinux 0x2c988955 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x2cad2e26 build_skb +EXPORT_SYMBOL vmlinux 0x2cc93ae2 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x2ce9dc07 tcf_register_action +EXPORT_SYMBOL vmlinux 0x2d0af0cd blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d14ea61 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d6372bc netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x2d6507b5 _find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0x2d68a138 netdev_update_features +EXPORT_SYMBOL vmlinux 0x2d6949b7 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x2d7242a7 __break_lease +EXPORT_SYMBOL vmlinux 0x2d770676 dispc_mgr_go +EXPORT_SYMBOL vmlinux 0x2d94c3fd vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x2d9b9a75 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x2d9be381 snd_ctl_find_id +EXPORT_SYMBOL vmlinux 0x2daa3e13 misc_register +EXPORT_SYMBOL vmlinux 0x2dbca962 kmap_to_page +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de3ac29 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2a076d dqput +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e4cf2ca jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x2e5810c6 __aeabi_unwind_cpp_pr1 +EXPORT_SYMBOL vmlinux 0x2e5b18e5 key_invalidate +EXPORT_SYMBOL vmlinux 0x2e68ed0b remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x2e695fc9 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x2e86c98f get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x2e8951e7 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x2ea1e197 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x2eb41a01 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ec77d15 omapdss_output_unset_device +EXPORT_SYMBOL vmlinux 0x2ec9830b ata_port_printk +EXPORT_SYMBOL vmlinux 0x2ecd441b fence_free +EXPORT_SYMBOL vmlinux 0x2ed8b9da scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x2edbc296 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x2edd4222 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x2edd6dfd blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x2ef5e21f bdi_register +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f008977 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f1b51de abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f581108 nand_unlock +EXPORT_SYMBOL vmlinux 0x2f5b7fe0 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f819e2d unregister_binfmt +EXPORT_SYMBOL vmlinux 0x2f87c765 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x2f8a4698 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x2f97749b kobject_put +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbb60b6 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL vmlinux 0x2fc8da36 contig_page_data +EXPORT_SYMBOL vmlinux 0x2fcb14e3 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x2fd1a14d fb_find_mode +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2feed4a2 dev_mc_del +EXPORT_SYMBOL vmlinux 0x2fef54db netlink_broadcast +EXPORT_SYMBOL vmlinux 0x2fefad07 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x30062fc1 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x3006398a clear_nlink +EXPORT_SYMBOL vmlinux 0x300892a9 devm_clk_get +EXPORT_SYMBOL vmlinux 0x30160d86 param_ops_long +EXPORT_SYMBOL vmlinux 0x3016c4ff nf_log_packet +EXPORT_SYMBOL vmlinux 0x301b3b23 devm_memunmap +EXPORT_SYMBOL vmlinux 0x302662f5 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3032faff of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x3049a0c6 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x3050e651 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x3061f06c devm_gpio_request +EXPORT_SYMBOL vmlinux 0x3065344a nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x3070d009 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3082a0b3 dss_feat_get_supported_color_modes +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30cc38c8 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x30d169e5 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x311d3cb7 mutex_unlock +EXPORT_SYMBOL vmlinux 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0x31367fb6 del_gendisk +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x31438987 scsi_print_command +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x31718323 blk_start_queue +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3178897e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x31818108 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x3190dfe8 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a4767f qcom_scm_hdcp_available +EXPORT_SYMBOL vmlinux 0x31abbd87 genphy_read_status +EXPORT_SYMBOL vmlinux 0x31b31f5c csum_partial_copy_nocheck +EXPORT_SYMBOL vmlinux 0x31bd4dcd eth_change_mtu +EXPORT_SYMBOL vmlinux 0x31e7b868 free_page_put_link +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31f1fc60 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x323ed3ee dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x3246a480 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3263d3be sg_miter_next +EXPORT_SYMBOL vmlinux 0x3283b091 save_mount_options +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32907b91 idr_remove +EXPORT_SYMBOL vmlinux 0x32a6be31 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x32a90944 __inode_permission +EXPORT_SYMBOL vmlinux 0x32b7ccfe get_mem_type +EXPORT_SYMBOL vmlinux 0x32bcdc11 sk_reset_timer +EXPORT_SYMBOL vmlinux 0x32d97b14 flow_cache_init +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x330f7a0c get_empty_filp +EXPORT_SYMBOL vmlinux 0x33122f1b tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x3316845e idr_get_next +EXPORT_SYMBOL vmlinux 0x3344ba7f vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x33468dc2 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x335a90cc alloc_disk +EXPORT_SYMBOL vmlinux 0x336198c5 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x336630f0 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x33829ad5 iget5_locked +EXPORT_SYMBOL vmlinux 0x3395f6a7 iget_locked +EXPORT_SYMBOL vmlinux 0x33b5c567 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x33c34fa2 md_write_start +EXPORT_SYMBOL vmlinux 0x33c42339 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d1b31e generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x33d527fe pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x340891a4 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x341d4392 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x3423c161 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x344b7739 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x344dbaf6 fb_get_mode +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x347476ae qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x347efb5c dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x3482f4f8 input_grab_device +EXPORT_SYMBOL vmlinux 0x348b18b0 vfs_readv +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34c52bbe vme_register_driver +EXPORT_SYMBOL vmlinux 0x34e6812f thermal_cdev_update +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 0x35277e07 register_quota_format +EXPORT_SYMBOL vmlinux 0x352bb0c4 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e3fa5 __get_user_4 +EXPORT_SYMBOL vmlinux 0x353fb92e vc_resize +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3589432e sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35af7c3c fget +EXPORT_SYMBOL vmlinux 0x35b341ad netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x35d95039 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x35e04f3d __breadahead +EXPORT_SYMBOL vmlinux 0x35f0b942 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x3605334b pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3612c10f tmio_core_mmc_enable +EXPORT_SYMBOL vmlinux 0x361575e9 seq_printf +EXPORT_SYMBOL vmlinux 0x3623867b tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x3637c135 iov_iter_init +EXPORT_SYMBOL vmlinux 0x36389282 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x36400073 pci_bus_type +EXPORT_SYMBOL vmlinux 0x364bccf8 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x36711a05 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36bb7fc0 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36ec0f1f mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x37221f1c lock_fb_info +EXPORT_SYMBOL vmlinux 0x37234ed4 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x373842dc inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37464f53 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x37559f76 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x3794f1dd tty_port_close_end +EXPORT_SYMBOL vmlinux 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x379f704e blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b05fca ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x37bd91b2 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c2aaf1 scsi_init_io +EXPORT_SYMBOL vmlinux 0x37dedfc1 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x37dfddaa nd_integrity_init +EXPORT_SYMBOL vmlinux 0x37e1c0ce cap_mmap_file +EXPORT_SYMBOL vmlinux 0x37e47368 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37f772e1 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x38018968 generic_writepages +EXPORT_SYMBOL vmlinux 0x381125dd dev_close +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x383a0fd2 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x383bc292 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x3844ee97 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x384613e6 end_page_writeback +EXPORT_SYMBOL vmlinux 0x384a723d write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x384c8dff blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x384cb1dd parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x38837fc6 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389acf0c gpmc_configure +EXPORT_SYMBOL vmlinux 0x389dbc29 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x389ecf9e __bswapdi2 +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b9540d d_find_alias +EXPORT_SYMBOL vmlinux 0x38c0f8c6 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x38d7a425 inet_del_offload +EXPORT_SYMBOL vmlinux 0x38daf883 dquot_operations +EXPORT_SYMBOL vmlinux 0x38f9f8ad generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x3904b613 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x39242e6b pci_bus_read_config_dword +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 0x394cfde9 snd_timer_stop +EXPORT_SYMBOL vmlinux 0x39600b86 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x396683b4 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x397124d0 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL vmlinux 0x39730d06 atomic_io_modify +EXPORT_SYMBOL vmlinux 0x3976c666 ipv4_specific +EXPORT_SYMBOL vmlinux 0x397e9e1d phy_device_register +EXPORT_SYMBOL vmlinux 0x399010f9 sound_class +EXPORT_SYMBOL vmlinux 0x399552cc snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x3999fb8c sk_alloc +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bf9301 _snd_pcm_hw_param_setempty +EXPORT_SYMBOL vmlinux 0x39cf5567 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x39f4ca80 tcp_connect +EXPORT_SYMBOL vmlinux 0x3a02acbe netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x3a05d398 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x3a08807f netif_napi_del +EXPORT_SYMBOL vmlinux 0x3a17f229 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x3a187554 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a4994bf km_state_notify +EXPORT_SYMBOL vmlinux 0x3a4ea301 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x3a52d039 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x3a56766f dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x3a6dd836 __pagevec_release +EXPORT_SYMBOL vmlinux 0x3a80dc1c dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aaaaa5f i2c_verify_client +EXPORT_SYMBOL vmlinux 0x3aba6423 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL vmlinux 0x3aef3653 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x3b1ae4f1 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x3b55b377 key_alloc +EXPORT_SYMBOL vmlinux 0x3b61b053 __kfree_skb +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6da453 key_link +EXPORT_SYMBOL vmlinux 0x3b91f3af snd_free_pages +EXPORT_SYMBOL vmlinux 0x3bbf46ea vga_base +EXPORT_SYMBOL vmlinux 0x3bd5a033 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x3bdfb18d mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x3be8badd nf_register_hooks +EXPORT_SYMBOL vmlinux 0x3bfa562d of_get_address +EXPORT_SYMBOL vmlinux 0x3c26ebc5 simple_statfs +EXPORT_SYMBOL vmlinux 0x3c2f6854 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c6e978f gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c92ba17 nf_register_hook +EXPORT_SYMBOL vmlinux 0x3c9e52db dquot_release +EXPORT_SYMBOL vmlinux 0x3ca53511 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x3cb19711 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cb90c18 ns_capable +EXPORT_SYMBOL vmlinux 0x3cbc9ef8 set_posix_acl +EXPORT_SYMBOL vmlinux 0x3cd66dbc km_policy_notify +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ceb28ef tcp_close +EXPORT_SYMBOL vmlinux 0x3cebe3ca xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x3cf79213 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x3cfa969a proc_douintvec +EXPORT_SYMBOL vmlinux 0x3d056cdf generic_file_open +EXPORT_SYMBOL vmlinux 0x3d0c3bbe elv_add_request +EXPORT_SYMBOL vmlinux 0x3d23b782 snd_timer_interrupt +EXPORT_SYMBOL vmlinux 0x3d30409d iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x3d398ba4 d_move +EXPORT_SYMBOL vmlinux 0x3d3c540f elf_hwcap +EXPORT_SYMBOL vmlinux 0x3d59dbe8 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x3d5fa820 tty_port_open +EXPORT_SYMBOL vmlinux 0x3d65b7c1 omap_dss_get_output +EXPORT_SYMBOL vmlinux 0x3d902750 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x3daccc63 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dce68ec amba_release_regions +EXPORT_SYMBOL vmlinux 0x3dd55897 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x3ddb8762 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x3de5d4e2 clear_inode +EXPORT_SYMBOL vmlinux 0x3decb878 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e00df1a phy_detach +EXPORT_SYMBOL vmlinux 0x3e0e84df __put_cred +EXPORT_SYMBOL vmlinux 0x3e18cc43 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x3e2e31ef sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x3e498cab dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x3e5b695a blk_make_request +EXPORT_SYMBOL vmlinux 0x3e6dd5cb generic_setxattr +EXPORT_SYMBOL vmlinux 0x3e866399 complete_request_key +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e978d49 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x3eaeb88e of_find_property +EXPORT_SYMBOL vmlinux 0x3ebf95cc crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x3ec49d8f pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x3edd0abe nf_log_trace +EXPORT_SYMBOL vmlinux 0x3ee3dadd dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f2d13a0 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f59a233 nand_bch_init +EXPORT_SYMBOL vmlinux 0x3f5b67d5 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f6c9acd fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x3f70b24a blk_free_tags +EXPORT_SYMBOL vmlinux 0x3f7bfad0 do_map_probe +EXPORT_SYMBOL vmlinux 0x3f7dbc5c textsearch_register +EXPORT_SYMBOL vmlinux 0x3f86a358 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x3fab3ca9 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x3fadd9e0 devm_ioremap +EXPORT_SYMBOL vmlinux 0x3fbe8dfc param_get_long +EXPORT_SYMBOL vmlinux 0x3fc32a19 d_lookup +EXPORT_SYMBOL vmlinux 0x3fd65e82 sock_release +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff22b6c nd_device_unregister +EXPORT_SYMBOL vmlinux 0x400ec1cf add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x4015ff04 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40389129 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x403aecb0 release_pages +EXPORT_SYMBOL vmlinux 0x403b4382 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x40465d8d snd_timer_pause +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405b51c6 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4066d09a mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x407136b1 __put_user_8 +EXPORT_SYMBOL vmlinux 0x407a3275 omap_start_dma +EXPORT_SYMBOL vmlinux 0x40875ce9 get_cached_acl_rcu +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 0x40bdf18d pci_lost_interrupt +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 0x40e2d046 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x40ed524a _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x40f07981 __ashldi3 +EXPORT_SYMBOL vmlinux 0x410804dc kernel_listen +EXPORT_SYMBOL vmlinux 0x412fda42 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x4130bf3b scsi_print_sense +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4156e58d __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x417e2cf6 kill_pid +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a2867 pci_get_slot +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x418dd912 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x41945492 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x41b3699d nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x41bfd669 rtnl_notify +EXPORT_SYMBOL vmlinux 0x41c04300 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x41e505fa sock_alloc_file +EXPORT_SYMBOL vmlinux 0x41ecbb83 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x42102383 neigh_for_each +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42298aeb __blk_run_queue +EXPORT_SYMBOL vmlinux 0x423d81ed ida_pre_get +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42582ed2 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0x42774642 padata_free +EXPORT_SYMBOL vmlinux 0x4277bf97 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x428c5b86 __register_nls +EXPORT_SYMBOL vmlinux 0x4291dd74 param_get_uint +EXPORT_SYMBOL vmlinux 0x42935d54 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x4294ccd7 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x4297d400 vme_master_request +EXPORT_SYMBOL vmlinux 0x4298b775 v7_flush_kern_cache_all +EXPORT_SYMBOL vmlinux 0x429d271e param_get_ushort +EXPORT_SYMBOL vmlinux 0x429d4b90 snd_card_free +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42aa1cf1 elv_register_queue +EXPORT_SYMBOL vmlinux 0x42b6dadc scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x42bd9869 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x42c687c8 devm_iounmap +EXPORT_SYMBOL vmlinux 0x42d914e3 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x42da92df sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x42e1f00a ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x42e6a923 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x42ecf546 ioremap +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43050d83 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x4308b6a3 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x43179a4e sock_no_bind +EXPORT_SYMBOL vmlinux 0x43181110 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x432a7310 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x432bd5e6 follow_down_one +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4400fb0f register_filesystem +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x442495c9 tmio_core_mmc_resume +EXPORT_SYMBOL vmlinux 0x442d4e9f phy_init_hw +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x4440aab8 __devm_release_region +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444505b2 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x44643b93 __aeabi_lmul +EXPORT_SYMBOL vmlinux 0x4464f267 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x44749e15 mmc_get_card +EXPORT_SYMBOL vmlinux 0x448616d0 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x44876e3c sock_create_kern +EXPORT_SYMBOL vmlinux 0x4487e406 snd_ctl_replace +EXPORT_SYMBOL vmlinux 0x448b669c input_set_abs_params +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44be7fe6 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x44da5d0f __csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0x44dd3d8d completion_done +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eda238 iterate_mounts +EXPORT_SYMBOL vmlinux 0x44f705b4 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x45292a2c tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x4530ce39 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454b39ef __getblk_slow +EXPORT_SYMBOL vmlinux 0x45554d9a ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x4557c3eb fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b5672e xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x45bae7bb security_path_rename +EXPORT_SYMBOL vmlinux 0x45bda0d5 system_serial_low +EXPORT_SYMBOL vmlinux 0x45bf9b42 nand_correct_data +EXPORT_SYMBOL vmlinux 0x45bfb690 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x4602f74d dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x460a78bb input_get_keycode +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x46374d2d i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x46487db9 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46616c41 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466d2706 bio_add_page +EXPORT_SYMBOL vmlinux 0x467de7a9 done_path_create +EXPORT_SYMBOL vmlinux 0x4691f836 md_register_thread +EXPORT_SYMBOL vmlinux 0x46966dda n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x46bf98cf __skb_get_hash +EXPORT_SYMBOL vmlinux 0x46ca246c omap_get_dma_src_pos +EXPORT_SYMBOL vmlinux 0x46d23e74 param_get_charp +EXPORT_SYMBOL vmlinux 0x46d3b28c __div0 +EXPORT_SYMBOL vmlinux 0x46f5f807 nonseekable_open +EXPORT_SYMBOL vmlinux 0x46fce382 get_super +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x471a0f15 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x4735ca50 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL vmlinux 0x473703b6 netlink_set_err +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4744fc83 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x4749356a dst_init +EXPORT_SYMBOL vmlinux 0x47514d58 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x475c09b9 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x476c47cb crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x4790a722 dev_driver_string +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47acf829 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x47b0ac2c loop_register_transfer +EXPORT_SYMBOL vmlinux 0x47e70229 v7_flush_user_cache_range +EXPORT_SYMBOL vmlinux 0x47efc817 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x47f757de elf_platform +EXPORT_SYMBOL vmlinux 0x47fe9a23 omap_dss_find_output +EXPORT_SYMBOL vmlinux 0x480dcccf sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x481e26b8 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x481f50e6 __sb_end_write +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x486d87ee mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x48768eec unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x487aaca0 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x488c96ce scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x489240bd input_set_capability +EXPORT_SYMBOL vmlinux 0x489a9079 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x48a5b067 __machine_arch_type +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d7e85f phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x48f1551f of_translate_address +EXPORT_SYMBOL vmlinux 0x4901f09f dput +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x492f0505 d_alloc_name +EXPORT_SYMBOL vmlinux 0x4931d359 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x4934ad08 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x493f73f9 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x499cb58c prepare_to_wait +EXPORT_SYMBOL vmlinux 0x49afd2c1 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b54188 block_commit_write +EXPORT_SYMBOL vmlinux 0x49cddcf7 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x49d08e5c cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x49e2662f kmem_cache_free +EXPORT_SYMBOL vmlinux 0x49ebacbd _clear_bit +EXPORT_SYMBOL vmlinux 0x49f682d6 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fb696c __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x49fe82c2 sock_i_uid +EXPORT_SYMBOL vmlinux 0x49ffd81a should_remove_suid +EXPORT_SYMBOL vmlinux 0x4a23ab2d input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x4a39e5a1 omap_set_dma_src_params +EXPORT_SYMBOL vmlinux 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL vmlinux 0x4a4f10c0 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x4a57b339 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x4a70110b unlock_new_inode +EXPORT_SYMBOL vmlinux 0x4a7e0706 set_nlink +EXPORT_SYMBOL vmlinux 0x4a8de835 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x4a920c21 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x4a9658a3 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x4a9c3bd6 of_device_register +EXPORT_SYMBOL vmlinux 0x4ab2978e give_up_console +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ada8512 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x4af5ed11 genlmsg_put +EXPORT_SYMBOL vmlinux 0x4af93c58 key_unlink +EXPORT_SYMBOL vmlinux 0x4afc1a9d cfb_fillrect +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b0345c3 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x4b0fb8a4 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x4b19e9eb frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b2c5250 filp_close +EXPORT_SYMBOL vmlinux 0x4b45fb08 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b69cfb6 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x4b7856b6 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x4b78933c qcom_scm_set_cold_boot_addr +EXPORT_SYMBOL vmlinux 0x4b8114ac kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bafd021 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bbd387e i2c_release_client +EXPORT_SYMBOL vmlinux 0x4bce0f36 gen_pool_create +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4bd51908 set_anon_super +EXPORT_SYMBOL vmlinux 0x4bd6fe28 d_instantiate +EXPORT_SYMBOL vmlinux 0x4bdd906d copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x4be0d42d locks_init_lock +EXPORT_SYMBOL vmlinux 0x4be271e4 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x4be7fb63 up +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4beffb09 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x4bf5d872 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x4c233a44 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c30bf79 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x4c33081d omapdss_compat_uninit +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c41ac61 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x4c5fc58c _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c80ef86 generic_write_checks +EXPORT_SYMBOL vmlinux 0x4c86184b remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4c8a1614 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x4c96020c gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x4ca224a2 notify_change +EXPORT_SYMBOL vmlinux 0x4cb687f7 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x4cc457bb blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x4cc9a5da gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x4cd5577b set_blocksize +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4d0013e3 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x4d0d1167 snd_pcm_new_stream +EXPORT_SYMBOL vmlinux 0x4d0d163d copy_page +EXPORT_SYMBOL vmlinux 0x4d1a6ff1 ata_print_version +EXPORT_SYMBOL vmlinux 0x4d342e7b pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x4d3ac3b6 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4c3fec omapdss_default_get_resolution +EXPORT_SYMBOL vmlinux 0x4d509826 import_iovec +EXPORT_SYMBOL vmlinux 0x4d71e6a7 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL vmlinux 0x4da6fc72 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x4dba4d56 d_splice_alias +EXPORT_SYMBOL vmlinux 0x4dc9e347 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x4dd3ae81 path_put +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e2d6513 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e389058 snd_pcm_mmap_data +EXPORT_SYMBOL vmlinux 0x4e4f41d4 pci_enable_device +EXPORT_SYMBOL vmlinux 0x4e506013 omap_dma_link_lch +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4ea6b70b mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x4f07541e blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x4f0a783f devm_request_any_context_irq +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 0x4f40a4d3 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x4f43e614 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f571c6f dev_alert +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f72db20 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL vmlinux 0x4f88859e pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x4f89c9de gpmc_cs_free +EXPORT_SYMBOL vmlinux 0x4f8da1b1 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x4f903c02 inet_listen +EXPORT_SYMBOL vmlinux 0x4f9f0808 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x4fa214bd input_event +EXPORT_SYMBOL vmlinux 0x4fa346d0 inet6_getname +EXPORT_SYMBOL vmlinux 0x4fb70a5a tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x4fdd2c17 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x4fde4849 register_sound_mixer +EXPORT_SYMBOL vmlinux 0x4fe75594 unregister_console +EXPORT_SYMBOL vmlinux 0x4fec170c dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x4ff02dee mount_single +EXPORT_SYMBOL vmlinux 0x4ff117c1 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501973a7 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x50207d4e mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x503bd137 snd_interval_ranges +EXPORT_SYMBOL vmlinux 0x504164ab rfkill_alloc +EXPORT_SYMBOL vmlinux 0x5053ca23 __bforget +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x507849b0 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x507975a1 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x5079d1d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x507f1e57 genphy_config_init +EXPORT_SYMBOL vmlinux 0x5096d336 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50a3b7cf generic_end_io_acct +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 0x50dc05ee generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x50dcad03 snd_pcm_hw_rule_add +EXPORT_SYMBOL vmlinux 0x50dd63d3 __f_setown +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x5104a931 empty_aops +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 0x51a64d48 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x51ca7b2c abx500_register_ops +EXPORT_SYMBOL vmlinux 0x51d559d1 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x51df0baa dst_discard_out +EXPORT_SYMBOL vmlinux 0x51e0dbd2 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x51e27853 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x51e77c97 pfn_valid +EXPORT_SYMBOL vmlinux 0x51e93123 arp_create +EXPORT_SYMBOL vmlinux 0x51e9de1c inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52042879 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x520e564d of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52333568 snd_register_oss_device +EXPORT_SYMBOL vmlinux 0x523b7b3d xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x5247e407 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x52482d80 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x524877db phy_driver_register +EXPORT_SYMBOL vmlinux 0x525617b9 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x52597a4c to_nd_btt +EXPORT_SYMBOL vmlinux 0x525a88d2 kill_fasync +EXPORT_SYMBOL vmlinux 0x526660c4 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x527b8a7c nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x528d0c14 idr_init +EXPORT_SYMBOL vmlinux 0x5293843e vme_irq_generate +EXPORT_SYMBOL vmlinux 0x529e3ac3 register_sound_dsp +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bb841c atomic_io_modify_relaxed +EXPORT_SYMBOL vmlinux 0x52bfa2f8 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x52c101b2 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x52cc49e1 fb_show_logo +EXPORT_SYMBOL vmlinux 0x52d09f00 pipe_unlock +EXPORT_SYMBOL vmlinux 0x52e3e4a5 snd_pcm_hw_param_value +EXPORT_SYMBOL vmlinux 0x52ea252c dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x52ee2f5a find_lock_entry +EXPORT_SYMBOL vmlinux 0x52fb4215 pipe_lock +EXPORT_SYMBOL vmlinux 0x53082c4f snd_dma_alloc_pages_fallback +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x532c30f7 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x53316962 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53340ecf tcf_hash_check +EXPORT_SYMBOL vmlinux 0x533c7803 kernel_bind +EXPORT_SYMBOL vmlinux 0x5345b152 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x5349adb1 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x5357ad5e i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536cca81 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x537ffb46 scsi_host_put +EXPORT_SYMBOL vmlinux 0x53981d26 generic_perform_write +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a0728a unregister_md_personality +EXPORT_SYMBOL vmlinux 0x53ad733c filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x53b4ecb4 vme_slot_num +EXPORT_SYMBOL vmlinux 0x53ceb7d7 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x53cecc2d xfrm_input +EXPORT_SYMBOL vmlinux 0x53db277c pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x53fdae5c phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5413e69a nlmsg_notify +EXPORT_SYMBOL vmlinux 0x542683c5 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x542f8eee i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x543240de __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x543d7fd1 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x545f0ac4 pps_event +EXPORT_SYMBOL vmlinux 0x546e0a62 dst_alloc +EXPORT_SYMBOL vmlinux 0x547077ec __wake_up_bit +EXPORT_SYMBOL vmlinux 0x54714970 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x5472ce87 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x547ce898 dispc_read_irqenable +EXPORT_SYMBOL vmlinux 0x5489fcfc pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x548bd22f blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x549f79fb i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b655ec path_get +EXPORT_SYMBOL vmlinux 0x54bcab50 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c60aa8 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f1d9f3 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x54f515ab input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x54f6830a omapdss_get_default_display_name +EXPORT_SYMBOL vmlinux 0x55040259 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x552445cc csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5551bf34 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x55a15980 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x55c88dc3 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55eab384 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x56041ac4 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x560f26aa vme_slave_request +EXPORT_SYMBOL vmlinux 0x562a7a3b dss_mgr_start_update +EXPORT_SYMBOL vmlinux 0x5630c1e0 simple_empty +EXPORT_SYMBOL vmlinux 0x5634ce85 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x564c2c5b dev_printk +EXPORT_SYMBOL vmlinux 0x5656fdfe inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x565e662c page_put_link +EXPORT_SYMBOL vmlinux 0x5663ea85 pci_dev_put +EXPORT_SYMBOL vmlinux 0x566a7f25 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x5671a6cf tty_hangup +EXPORT_SYMBOL vmlinux 0x5677331c blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x5689afe7 dispc_ovl_enable +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56bc2f15 dispc_ovl_set_channel_out +EXPORT_SYMBOL vmlinux 0x56c4bd01 param_ops_charp +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56da4d91 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x56dea423 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x571a12c6 set_binfmt +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573b0682 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x573b4983 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5797b03e ps2_init +EXPORT_SYMBOL vmlinux 0x57aa29b9 nand_lock +EXPORT_SYMBOL vmlinux 0x57afb50c insert_inode_locked +EXPORT_SYMBOL vmlinux 0x57c0787f nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57decc47 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x581839b7 __module_get +EXPORT_SYMBOL vmlinux 0x581d0d6b devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582962f1 dquot_acquire +EXPORT_SYMBOL vmlinux 0x5830ef11 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58516557 omap_set_dma_src_data_pack +EXPORT_SYMBOL vmlinux 0x58517847 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x5857b7cd pgprot_kernel +EXPORT_SYMBOL vmlinux 0x585a1927 fb_class +EXPORT_SYMBOL vmlinux 0x585ab6d4 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x587dc9be snd_pcm_hw_constraint_step +EXPORT_SYMBOL vmlinux 0x58a6d23f dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c0fd2d of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x58c64241 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x58ca4c39 snd_pcm_period_elapsed +EXPORT_SYMBOL vmlinux 0x58d633c7 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x592d4d3b neigh_event_ns +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x594e1317 __modsi3 +EXPORT_SYMBOL vmlinux 0x59542de9 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x59746e57 nd_region_release_lane +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 0x59e5070d __do_div64 +EXPORT_SYMBOL vmlinux 0x5a008223 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a28b701 pci_restore_state +EXPORT_SYMBOL vmlinux 0x5a6c10d6 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x5a974b10 rt6_lookup +EXPORT_SYMBOL vmlinux 0x5aafea9c gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x5ab794c0 nand_scan_bbt +EXPORT_SYMBOL vmlinux 0x5ab9c629 flush_kernel_dcache_page +EXPORT_SYMBOL vmlinux 0x5ad092de cad_pid +EXPORT_SYMBOL vmlinux 0x5ad6aaa4 cdev_del +EXPORT_SYMBOL vmlinux 0x5ad93981 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x5ae5be44 lg_lock_init +EXPORT_SYMBOL vmlinux 0x5aed790c sock_init_data +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b2372a8 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x5b5140e2 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x5b5d017a of_parse_phandle +EXPORT_SYMBOL vmlinux 0x5b8d49c3 param_set_copystring +EXPORT_SYMBOL vmlinux 0x5b9159fb igrab +EXPORT_SYMBOL vmlinux 0x5ba829a5 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x5bb3bbb5 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x5bb911b3 sk_net_capable +EXPORT_SYMBOL vmlinux 0x5bbe99b1 __scm_send +EXPORT_SYMBOL vmlinux 0x5bd0cfd6 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x5c22317e nf_log_unregister +EXPORT_SYMBOL vmlinux 0x5c2618bd kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x5c430d39 kthread_stop +EXPORT_SYMBOL vmlinux 0x5c46da19 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x5c513074 backlight_device_register +EXPORT_SYMBOL vmlinux 0x5c6e3472 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x5c70756b bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x5c7fae47 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x5c8e6361 input_free_device +EXPORT_SYMBOL vmlinux 0x5c9284a0 processor_id +EXPORT_SYMBOL vmlinux 0x5cb7afef blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x5cc7528d param_get_invbool +EXPORT_SYMBOL vmlinux 0x5ccbc944 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cead66a simple_open +EXPORT_SYMBOL vmlinux 0x5cededa9 snd_seq_root +EXPORT_SYMBOL vmlinux 0x5cee067d tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x5cf457a6 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cf61363 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x5d00d589 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x5d01df2c cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x5d1371a6 seq_write +EXPORT_SYMBOL vmlinux 0x5d16b333 sk_dst_check +EXPORT_SYMBOL vmlinux 0x5d269da9 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x5d2cde93 qdisc_reset +EXPORT_SYMBOL vmlinux 0x5d4b5b0b omap_dss_get_overlay_manager +EXPORT_SYMBOL vmlinux 0x5d4d07da dev_add_pack +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d6348a4 of_get_property +EXPORT_SYMBOL vmlinux 0x5d6eb70f nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x5d9fe54c netlink_net_capable +EXPORT_SYMBOL vmlinux 0x5dbef5b9 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x5dc59163 cdev_add +EXPORT_SYMBOL vmlinux 0x5dcf6341 outer_cache +EXPORT_SYMBOL vmlinux 0x5dd2f4c6 __scm_destroy +EXPORT_SYMBOL vmlinux 0x5e0f0dc9 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0x5e1efe7b seq_hex_dump +EXPORT_SYMBOL vmlinux 0x5e2c7329 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x5e303290 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x5e35e907 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x5e521329 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL vmlinux 0x5e847663 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e921ab0 setup_new_exec +EXPORT_SYMBOL vmlinux 0x5e94fdd8 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb8c880 snd_dma_free_pages +EXPORT_SYMBOL vmlinux 0x5ec6bad7 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x5ecce843 __lock_buffer +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eda1461 nvm_register +EXPORT_SYMBOL vmlinux 0x5edc75a0 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x5edeeebb pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x5ef7a6d0 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x5efd1484 arm_coherent_dma_ops +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0ebb0d elevator_change +EXPORT_SYMBOL vmlinux 0x5f27323c _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x5f2951b6 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x5f2a2f1d dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f88355e param_set_ulong +EXPORT_SYMBOL vmlinux 0x5f883f1a eth_header +EXPORT_SYMBOL vmlinux 0x5fa3a81d inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x5fa98c59 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x5fc8799c d_make_root +EXPORT_SYMBOL vmlinux 0x5fc9722b pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ff11cc3 pcibios_min_io +EXPORT_SYMBOL vmlinux 0x5ffc6957 pci_iomap_range +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 0x601c8e35 block_invalidatepage +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 0x6041c7cf poll_freewait +EXPORT_SYMBOL vmlinux 0x6056492a bio_clone_fast +EXPORT_SYMBOL vmlinux 0x60574ae1 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x605acb40 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x608d7b9b free_task +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609af06b current_in_userns +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a2ba67 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60a5a70c devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60bb48bc mount_subtree +EXPORT_SYMBOL vmlinux 0x60d7bb18 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e06d13 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x60f0ce0e pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x6100da17 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x6101f3ac __register_chrdev +EXPORT_SYMBOL vmlinux 0x610bfcce sk_stop_timer +EXPORT_SYMBOL vmlinux 0x61268e60 tso_start +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612ef610 dqget +EXPORT_SYMBOL vmlinux 0x612fd0b8 snd_card_new +EXPORT_SYMBOL vmlinux 0x61522799 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x615682c1 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x6171e458 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x61734717 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x617a218d __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x617ef7a8 inode_init_always +EXPORT_SYMBOL vmlinux 0x61947b33 sock_no_accept +EXPORT_SYMBOL vmlinux 0x61a85f26 down_read_trylock +EXPORT_SYMBOL vmlinux 0x61ad8d35 skb_seq_read +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c95a7f neigh_update +EXPORT_SYMBOL vmlinux 0x61cbfdb6 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x61e270a1 mdiobus_write +EXPORT_SYMBOL vmlinux 0x61eea7a9 pci_request_region +EXPORT_SYMBOL vmlinux 0x61fb5d68 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x6209d9ff put_disk +EXPORT_SYMBOL vmlinux 0x620a1340 tcp_sendpage +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62158067 dev_set_allmulti +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 0x622b0d24 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x622f35d0 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x622f946d copy_from_iter +EXPORT_SYMBOL vmlinux 0x62528194 param_set_charp +EXPORT_SYMBOL vmlinux 0x62656561 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x626d96a5 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x626eeb5d snd_unregister_oss_device +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627392e7 km_query +EXPORT_SYMBOL vmlinux 0x62824285 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62975a45 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x62a5685c of_device_alloc +EXPORT_SYMBOL vmlinux 0x62c74edf inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x62cc221c kmap_atomic +EXPORT_SYMBOL vmlinux 0x62cd9ae0 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x62db3f0f lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x62e3c617 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x62eb0e57 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x6305e062 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x632476fb bio_chain +EXPORT_SYMBOL vmlinux 0x6341841c serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x636b3461 omap_dss_get_num_overlays +EXPORT_SYMBOL vmlinux 0x6374eb87 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x63770123 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x6394f3c2 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x639a668c user_revoke +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d10367 single_open +EXPORT_SYMBOL vmlinux 0x63d14f3f xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63eceedf security_inode_init_security +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x63fe46fb iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642d98c2 netdev_printk +EXPORT_SYMBOL vmlinux 0x649283fb dmam_pool_create +EXPORT_SYMBOL vmlinux 0x6498d16d cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a22ff0 dispc_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0x64a77f62 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x64ac30be kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x64db9a21 netdev_alert +EXPORT_SYMBOL vmlinux 0x64e26f03 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL vmlinux 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a132f dev_change_flags +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6522db9b inet_ioctl +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 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x658392d0 dump_skip +EXPORT_SYMBOL vmlinux 0x658ab211 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x658e2750 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x6597f637 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x659d2b43 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x65cb1146 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65df6e3f phy_drivers_register +EXPORT_SYMBOL vmlinux 0x65e87c98 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x65f1d70b mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x65f5bf41 pid_task +EXPORT_SYMBOL vmlinux 0x65ff1ba9 seq_escape +EXPORT_SYMBOL vmlinux 0x661a0329 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x66308e5f devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x666636fa __scsi_add_device +EXPORT_SYMBOL vmlinux 0x668b0605 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x668d103d pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x66a15e25 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x66bd489f max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x670e92f9 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x6725721d devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x6742e79d __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x676a0480 pci_bus_write_config_word +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 0x67b80f3d unlock_buffer +EXPORT_SYMBOL vmlinux 0x67c3dcfd phy_device_free +EXPORT_SYMBOL vmlinux 0x67d2754a scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x67e02294 kobject_set_name +EXPORT_SYMBOL vmlinux 0x6801da37 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x683394c7 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x684871cf bdi_register_owner +EXPORT_SYMBOL vmlinux 0x684b2390 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x685b7d8d xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x6865745a dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x686f74e8 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68810104 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x68869bae panic_notifier_list +EXPORT_SYMBOL vmlinux 0x6897202f snd_pcm_suspend_all +EXPORT_SYMBOL vmlinux 0x6898908c napi_gro_flush +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a19848 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c20834 vfs_link +EXPORT_SYMBOL vmlinux 0x68d3a243 snd_ctl_unregister_ioctl +EXPORT_SYMBOL vmlinux 0x68dd597b i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x68e37766 migrate_page +EXPORT_SYMBOL vmlinux 0x68fb581a icst307_idx2s +EXPORT_SYMBOL vmlinux 0x6901fc66 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x69040c45 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x69060204 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x690ca8fc netdev_err +EXPORT_SYMBOL vmlinux 0x690cb97e max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x6915eb38 down_interruptible +EXPORT_SYMBOL vmlinux 0x6917e3b4 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x693844ae neigh_seq_next +EXPORT_SYMBOL vmlinux 0x693f6f33 proc_set_user +EXPORT_SYMBOL vmlinux 0x695754aa __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x69644efe of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697c0d20 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x6982d2da tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x699a2f96 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad0aa0 security_path_mknod +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b6f8d9 omap_set_dma_transfer_params +EXPORT_SYMBOL vmlinux 0x69d5811a xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a358ceb pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a621a36 inet_select_addr +EXPORT_SYMBOL vmlinux 0x6a6c2ae3 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8bd65f inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x6ac4dc7d jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6aebbdad fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af89d68 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b10d534 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x6b1a0f6d of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1f5286 request_firmware +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3f6b63 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x6b66a156 netif_napi_add +EXPORT_SYMBOL vmlinux 0x6b7d8f48 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x6b8ee487 scsi_unregister +EXPORT_SYMBOL vmlinux 0x6ba40cc2 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x6ba8e316 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x6bad3056 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x6bb2782a pci_choose_state +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcb5556 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be59c92 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x6bec091f flush_old_exec +EXPORT_SYMBOL vmlinux 0x6c000938 nand_bch_calculate_ecc +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c1cf9a7 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x6c2a1169 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c59fef1 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x6c616337 __find_get_block +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c693251 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x6c6cdd4d wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c87772e __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x6c9bdc6e inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce3a642 seq_release_private +EXPORT_SYMBOL vmlinux 0x6cecc2c3 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d10001b param_ops_bool +EXPORT_SYMBOL vmlinux 0x6d17099a dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x6d1c44dd lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x6d23838e dss_mgr_set_timings +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d34879f tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x6d5f1314 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x6d65ae52 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x6d662533 _find_first_bit_le +EXPORT_SYMBOL vmlinux 0x6d8f8273 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x6d97d558 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x6d9a3111 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x6db908d7 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x6de82d02 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0619b2 vfs_read +EXPORT_SYMBOL vmlinux 0x6e088b1e simple_unlink +EXPORT_SYMBOL vmlinux 0x6e1f5522 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x6e206a6b blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x6e3486b8 udp_seq_open +EXPORT_SYMBOL vmlinux 0x6e3902a0 __devm_request_region +EXPORT_SYMBOL vmlinux 0x6e3b3ab2 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x6e5a9a19 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x6e61ece7 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7c7695 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x6e7f8d88 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x6e9d2a0b shdma_init +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb7b371 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x6ec9ccdb _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x6ed1ffdf serio_interrupt +EXPORT_SYMBOL vmlinux 0x6eea0f8b tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL vmlinux 0x6f025103 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f263ec4 omap_dss_find_device +EXPORT_SYMBOL vmlinux 0x6f2c0f39 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x6f3a1a14 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x6f5a5b55 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x6f5cb05c jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f914760 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x6fa5d401 amba_driver_register +EXPORT_SYMBOL vmlinux 0x6fb904fc dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcdeda9 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x6fcea699 may_umount +EXPORT_SYMBOL vmlinux 0x6fde539f __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x6fe4e5c1 clk_get +EXPORT_SYMBOL vmlinux 0x6feade90 seq_putc +EXPORT_SYMBOL vmlinux 0x70097aa0 nand_bch_free +EXPORT_SYMBOL vmlinux 0x700f6d3a param_set_bool +EXPORT_SYMBOL vmlinux 0x7033b09b devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x7067506c vfs_setpos +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x7076c161 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x707f5cf0 __sb_start_write +EXPORT_SYMBOL vmlinux 0x707fe2a5 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x70a6047b redraw_screen +EXPORT_SYMBOL vmlinux 0x70a87427 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x70c5f0b7 tty_devnum +EXPORT_SYMBOL vmlinux 0x70d25ef1 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x70e31853 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x70e39dae dss_uninstall_mgr_ops +EXPORT_SYMBOL vmlinux 0x70ef0276 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x70f0d325 neigh_destroy +EXPORT_SYMBOL vmlinux 0x70f2fb1e nand_scan_tail +EXPORT_SYMBOL vmlinux 0x70f8a5f4 __block_write_begin +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x710b393c phy_suspend +EXPORT_SYMBOL vmlinux 0x711157e0 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x7119db7f omap_dss_pal_timings +EXPORT_SYMBOL vmlinux 0x711ea415 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x713d0767 generic_update_time +EXPORT_SYMBOL vmlinux 0x7142289e ip_options_compile +EXPORT_SYMBOL vmlinux 0x714f69fd snd_timer_notify +EXPORT_SYMBOL vmlinux 0x7151d096 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x7158bbd7 key_validate +EXPORT_SYMBOL vmlinux 0x7169102e omap_dss_ntsc_timings +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717719bd pci_get_class +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b41cac snd_device_register +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71ce059e phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x71d3edd8 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x71da6f27 register_key_type +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x720509f2 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x721a42f2 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x72248694 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x722c6622 of_device_unregister +EXPORT_SYMBOL vmlinux 0x72350130 ___ratelimit +EXPORT_SYMBOL vmlinux 0x7241cf39 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x7245e45b blk_get_request +EXPORT_SYMBOL vmlinux 0x724650a2 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x7266cebe blk_fetch_request +EXPORT_SYMBOL vmlinux 0x7271c784 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x728d139d scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x7296d8a2 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x729ed998 prepare_creds +EXPORT_SYMBOL vmlinux 0x72b067b3 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x72b9492b textsearch_prepare +EXPORT_SYMBOL vmlinux 0x72bf42b3 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72d74065 scsi_device_get +EXPORT_SYMBOL vmlinux 0x72d7ced6 tty_free_termios +EXPORT_SYMBOL vmlinux 0x72dd90b6 simple_lookup +EXPORT_SYMBOL vmlinux 0x72dfb352 update_devfreq +EXPORT_SYMBOL vmlinux 0x72e63bff snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x730cc771 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731ec94b dev_err +EXPORT_SYMBOL vmlinux 0x73206133 udp_proc_register +EXPORT_SYMBOL vmlinux 0x73276575 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x733e097d copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x734d3415 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x73874c1b sk_mc_loop +EXPORT_SYMBOL vmlinux 0x738b4fc2 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x73906245 of_root +EXPORT_SYMBOL vmlinux 0x73b0bdaf bdget_disk +EXPORT_SYMBOL vmlinux 0x73bb527f of_get_parent +EXPORT_SYMBOL vmlinux 0x73d33935 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e637c2 kfree_skb +EXPORT_SYMBOL vmlinux 0x73eba833 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x73f445db sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x740ae628 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x74105f79 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7442c45a snd_card_register +EXPORT_SYMBOL vmlinux 0x744cdda7 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x74526c49 padata_do_serial +EXPORT_SYMBOL vmlinux 0x746cbb24 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x746df9e2 param_set_short +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x747e0c3f __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x7492f01f sync_inode +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cde13c dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x74d7cca8 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e9400c devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x750477b3 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x7525b4f9 bdi_destroy +EXPORT_SYMBOL vmlinux 0x7534020a is_bad_inode +EXPORT_SYMBOL vmlinux 0x75388f7c of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x753fd90d swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x7561a5af load_nls_default +EXPORT_SYMBOL vmlinux 0x7576c801 bio_reset +EXPORT_SYMBOL vmlinux 0x75850d01 __vmalloc +EXPORT_SYMBOL vmlinux 0x758a5698 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x758c442a keyring_alloc +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75a4e7fa fput +EXPORT_SYMBOL vmlinux 0x75a5427f blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x75a61e80 write_cache_pages +EXPORT_SYMBOL vmlinux 0x75a8c5ba vme_bus_type +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 0x75c7ed7f amba_device_unregister +EXPORT_SYMBOL vmlinux 0x75d24200 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x76023768 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76189c6d dev_emerg +EXPORT_SYMBOL vmlinux 0x761b1a4c __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x766d8392 ptp_clock_register +EXPORT_SYMBOL vmlinux 0x769c70a3 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x76b0e10d dev_get_by_name +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 0x76ea47be of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x76fa4249 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x770ecbf0 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x771614c5 skb_dequeue +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x771d4c2b snd_pcm_suspend +EXPORT_SYMBOL vmlinux 0x772519be gen_pool_destroy +EXPORT_SYMBOL vmlinux 0x7737175d blk_init_tags +EXPORT_SYMBOL vmlinux 0x774406ab netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x774711e5 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x7747ff08 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x7748b590 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x774d81e9 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x7751ab7d netif_carrier_off +EXPORT_SYMBOL vmlinux 0x775bcc0c blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x775c5193 elv_rb_find +EXPORT_SYMBOL vmlinux 0x776d012b neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x777f4b27 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x778b1006 phy_attach +EXPORT_SYMBOL vmlinux 0x7791193f icst525_s2div +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779e6436 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x77abf0cb sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77bdd44c bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x77c3ca40 genphy_resume +EXPORT_SYMBOL vmlinux 0x77cad705 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x77edfa49 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x77fa1a63 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x780ba218 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x7810a88b fence_signal_locked +EXPORT_SYMBOL vmlinux 0x782cd34f snd_info_free_entry +EXPORT_SYMBOL vmlinux 0x7830d424 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x7833deb2 pgprot_user +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x7845db6d get_cached_acl +EXPORT_SYMBOL vmlinux 0x784fe24d iterate_fd +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a057d8 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x78ac6b5f current_fs_time +EXPORT_SYMBOL vmlinux 0x78b5886b blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x78bca5c4 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x78c8e90b snd_unregister_device +EXPORT_SYMBOL vmlinux 0x78c9ad0f __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x78cc2f32 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x78d8df28 skb_unlink +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x7920e349 pci_iounmap +EXPORT_SYMBOL vmlinux 0x79234497 snd_pci_quirk_lookup +EXPORT_SYMBOL vmlinux 0x7924c71e filemap_fault +EXPORT_SYMBOL vmlinux 0x792d6fec mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x79330019 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7936cf3e __frontswap_store +EXPORT_SYMBOL vmlinux 0x79601f75 get_task_io_context +EXPORT_SYMBOL vmlinux 0x796592df mpage_writepages +EXPORT_SYMBOL vmlinux 0x796f4b1a xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79864dfb __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x798b8c64 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x7995e13f scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79db0476 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x79e3b648 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x79e6be03 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x79f95432 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x7a099d92 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x7a1f2611 dispc_mgr_set_timings +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a466173 load_nls +EXPORT_SYMBOL vmlinux 0x7a78edba omapdss_default_get_timings +EXPORT_SYMBOL vmlinux 0x7a7ccf68 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL vmlinux 0x7a8aedaf tty_write_room +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a979ad0 kern_path +EXPORT_SYMBOL vmlinux 0x7a9c5811 skb_trim +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad51ab5 ihold +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL vmlinux 0x7b127a77 md_error +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b4fef28 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x7b555e31 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b5eaf34 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x7baa4f3f inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x7bbc75d5 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x7bbd0a73 audit_log +EXPORT_SYMBOL vmlinux 0x7bc9fbb3 km_policy_expired +EXPORT_SYMBOL vmlinux 0x7bd011d9 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x7c015504 snd_card_file_add +EXPORT_SYMBOL vmlinux 0x7c04cf9e genl_unregister_family +EXPORT_SYMBOL vmlinux 0x7c125ace lwtunnel_output +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c552e76 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c675737 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x7c70424a security_path_link +EXPORT_SYMBOL vmlinux 0x7c88be5e inode_init_owner +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca678dd mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb65338 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x7cc035a7 __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x7cc216c0 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x7cd99eb0 kmap_high +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce225af rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x7ce3e5ef nf_reinject +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0836f3 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d21801c vme_master_mmap +EXPORT_SYMBOL vmlinux 0x7d37ec05 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x7d5ef7d1 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d819926 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x7d824275 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x7dadc87f xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x7dba1117 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x7dccc294 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x7de9ad8b seq_dentry +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7dfe31ca skb_tx_error +EXPORT_SYMBOL vmlinux 0x7e04acc5 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x7e11b568 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x7e1aeea4 new_inode +EXPORT_SYMBOL vmlinux 0x7e2decc6 map_destroy +EXPORT_SYMBOL vmlinux 0x7e5dbb50 get_user_pages +EXPORT_SYMBOL vmlinux 0x7e6fa3ef tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x7e740740 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x7e952821 nand_scan_ident +EXPORT_SYMBOL vmlinux 0x7e9efe8e complete_and_exit +EXPORT_SYMBOL vmlinux 0x7eabf786 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x7eb86138 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x7ec5e6d9 console_start +EXPORT_SYMBOL vmlinux 0x7edf4ff0 mark_buffer_async_write +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 0x7f04246d dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x7f12ac96 block_write_end +EXPORT_SYMBOL vmlinux 0x7f1a98c3 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7f1fb8a3 inet_addr_type +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f422c7d tcp_release_cb +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f63b31e _memcpy_toio +EXPORT_SYMBOL vmlinux 0x7f70073c forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x7f77ba7b dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x7f7c5a5b sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x7f7dfedb mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x7f85c059 nd_device_register +EXPORT_SYMBOL vmlinux 0x7f9b5b8d inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x7fcbc1f3 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x7fd29e93 generic_listxattr +EXPORT_SYMBOL vmlinux 0x7fda8327 noop_llseek +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe06b8b mark_page_accessed +EXPORT_SYMBOL vmlinux 0x7fe24ddd dss_mgr_enable +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe5a6fa mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x7ffe143f dm_unregister_target +EXPORT_SYMBOL vmlinux 0x800b06fe con_copy_unimap +EXPORT_SYMBOL vmlinux 0x800e4ffa __muldi3 +EXPORT_SYMBOL vmlinux 0x8026d554 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x803a6d85 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0x804aabdf idr_is_empty +EXPORT_SYMBOL vmlinux 0x8092dad7 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x80beacf0 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x80bf4bee processor +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80df6f90 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x8100f074 elm_decode_bch_error_page +EXPORT_SYMBOL vmlinux 0x810b4815 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x810b55d5 kunmap +EXPORT_SYMBOL vmlinux 0x8112c1cf param_ops_ushort +EXPORT_SYMBOL vmlinux 0x81374f95 mmc_put_card +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8177ae31 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL vmlinux 0x81be1d9c key_type_keyring +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8209a380 tty_kref_put +EXPORT_SYMBOL vmlinux 0x82103ed1 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x822137e2 arm_heavy_mb +EXPORT_SYMBOL vmlinux 0x823fa179 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x824a4367 tmio_core_mmc_pwr +EXPORT_SYMBOL vmlinux 0x825583c9 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x825ff70b vfs_rename +EXPORT_SYMBOL vmlinux 0x8263bd8b tcp_ioctl +EXPORT_SYMBOL vmlinux 0x8264fba4 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x826ff36a pci_read_vpd +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8286609a filemap_flush +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8295a8a0 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82c9b72e tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x82ef5bd0 tso_count_descs +EXPORT_SYMBOL vmlinux 0x831352bc skb_put +EXPORT_SYMBOL vmlinux 0x831396c3 fence_signal +EXPORT_SYMBOL vmlinux 0x831f5b11 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x8320bea8 __umodsi3 +EXPORT_SYMBOL vmlinux 0x83384874 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8375319e ata_link_printk +EXPORT_SYMBOL vmlinux 0x8375d79d ida_destroy +EXPORT_SYMBOL vmlinux 0x8378a6eb serio_bus +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 0x83e3d246 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x83e455c7 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x83e4d155 find_get_entry +EXPORT_SYMBOL vmlinux 0x83e82b64 inet_add_offload +EXPORT_SYMBOL vmlinux 0x83ee1dd0 __napi_complete +EXPORT_SYMBOL vmlinux 0x83f735ab scsi_register +EXPORT_SYMBOL vmlinux 0x840291b5 vme_irq_free +EXPORT_SYMBOL vmlinux 0x842f0f34 param_ops_string +EXPORT_SYMBOL vmlinux 0x843fdf14 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x8443ee76 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x8455396e __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x846e18d0 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x8480dd1d dev_alloc_name +EXPORT_SYMBOL vmlinux 0x848f7b3f blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x849c8174 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x84a03286 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84bfbbee input_open_device +EXPORT_SYMBOL vmlinux 0x84c491fe xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x84c88cbd bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85617fe5 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x85765fee omap_enable_dma_irq +EXPORT_SYMBOL vmlinux 0x857fb238 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x85929d1c generic_make_request +EXPORT_SYMBOL vmlinux 0x85a4af9e elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x85a85dab devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x85b0ea5c tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85cc2015 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x85cd11d9 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8613c458 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x86180d6d __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x8648e014 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866daeb8 check_disk_change +EXPORT_SYMBOL vmlinux 0x867199c9 would_dump +EXPORT_SYMBOL vmlinux 0x8673ad80 submit_bh +EXPORT_SYMBOL vmlinux 0x867c258b simple_readpage +EXPORT_SYMBOL vmlinux 0x86860195 dss_feat_get_supported_displays +EXPORT_SYMBOL vmlinux 0x86884d7b mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8696f773 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86ab53f6 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x86e89f69 d_path +EXPORT_SYMBOL vmlinux 0x86f5156f of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x87003790 fence_init +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x871cdaff file_remove_privs +EXPORT_SYMBOL vmlinux 0x8724b8b9 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x872a03bb device_get_mac_address +EXPORT_SYMBOL vmlinux 0x872d9009 d_drop +EXPORT_SYMBOL vmlinux 0x873a2dc9 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x873e3c5f ioremap_wc +EXPORT_SYMBOL vmlinux 0x8756d403 dst_release +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x8797a34b nvm_end_io +EXPORT_SYMBOL vmlinux 0x87af8c55 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x87b1e44a scsi_execute +EXPORT_SYMBOL vmlinux 0x87ba3551 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x87cc5801 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x87e1d42b pci_claim_resource +EXPORT_SYMBOL vmlinux 0x8812fc1a fb_pan_display +EXPORT_SYMBOL vmlinux 0x8840f767 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x88520d3b dev_open +EXPORT_SYMBOL vmlinux 0x885e67e7 framebuffer_release +EXPORT_SYMBOL vmlinux 0x8866cd77 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x886bc76f mempool_resize +EXPORT_SYMBOL vmlinux 0x888fbd51 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x889019e3 elm_config +EXPORT_SYMBOL vmlinux 0x88b19f45 system_serial +EXPORT_SYMBOL vmlinux 0x88bbc716 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x88ea679a nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x88f358f9 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x890360b5 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x892d5e7f bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x893f26e5 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x89412184 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x89690d07 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x89773158 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x8986301d of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x898a2f05 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x89a83055 of_dev_get +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89bfc510 dma_pool_create +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e11127 snd_timer_global_new +EXPORT_SYMBOL vmlinux 0x89e6967c skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x89f3e50c snd_jack_new +EXPORT_SYMBOL vmlinux 0x8a04cedc rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x8a07b292 deactivate_super +EXPORT_SYMBOL vmlinux 0x8a0d973c snd_pcm_set_sync +EXPORT_SYMBOL vmlinux 0x8a0f4230 rename_lock +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a249047 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4fa83b __aeabi_llsr +EXPORT_SYMBOL vmlinux 0x8a4fd387 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a95f26a rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa10fcd serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x8aa7def6 elevator_exit +EXPORT_SYMBOL vmlinux 0x8aa84a8d proc_symlink +EXPORT_SYMBOL vmlinux 0x8aafd35f jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x8ac14db7 pci_pme_active +EXPORT_SYMBOL vmlinux 0x8ad2b8fd amba_device_register +EXPORT_SYMBOL vmlinux 0x8ade8c05 skb_pad +EXPORT_SYMBOL vmlinux 0x8ae097ed mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x8b0890d9 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x8b19e7d9 to_ndd +EXPORT_SYMBOL vmlinux 0x8b2a670d d_delete +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3ff72d dev_set_mtu +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b674031 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x8b69ebd4 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x8b796b4b dget_parent +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8fbe98 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x8b9423d5 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x8b9ccdf2 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x8ba1db89 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x8bc11509 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x8bf56274 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x8c00067b vme_bus_num +EXPORT_SYMBOL vmlinux 0x8c0543e7 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL vmlinux 0x8c139ce3 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x8c21a544 remove_arg_zero +EXPORT_SYMBOL vmlinux 0x8c2566e2 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x8c29dcb9 snd_ctl_free_one +EXPORT_SYMBOL vmlinux 0x8c3061e0 padata_alloc +EXPORT_SYMBOL vmlinux 0x8c39e6a9 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x8c538c41 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c64e7d7 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x8c7ad3b7 __get_user_pages +EXPORT_SYMBOL vmlinux 0x8c8ce202 netlink_ack +EXPORT_SYMBOL vmlinux 0x8c929cd6 of_node_get +EXPORT_SYMBOL vmlinux 0x8cc7647f ip6_frag_match +EXPORT_SYMBOL vmlinux 0x8cd8c339 omap_free_dma +EXPORT_SYMBOL vmlinux 0x8ceaffd7 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x8cfcf75c nand_flash_ids +EXPORT_SYMBOL vmlinux 0x8d134c39 idr_replace +EXPORT_SYMBOL vmlinux 0x8d1df42e pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x8d3b5630 phy_stop +EXPORT_SYMBOL vmlinux 0x8d512862 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5a0e28 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x8d5ae3ae xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x8d5e1721 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x8d69508b tty_insert_flip_string_flags +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 0x8d7e6a85 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x8d800ec3 snd_timer_start +EXPORT_SYMBOL vmlinux 0x8d8b6353 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x8d8dc9b7 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x8db4e64b of_get_min_tck +EXPORT_SYMBOL vmlinux 0x8db67f99 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x8dc106d2 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x8dcf40bd padata_start +EXPORT_SYMBOL vmlinux 0x8dcff6e2 __pv_offset +EXPORT_SYMBOL vmlinux 0x8dd3e795 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x8dd5f963 register_gifconf +EXPORT_SYMBOL vmlinux 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL vmlinux 0x8e1cc30d vme_irq_handler +EXPORT_SYMBOL vmlinux 0x8e204e46 get_acl +EXPORT_SYMBOL vmlinux 0x8e495ee1 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x8e5ccdff lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x8e64e0b5 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x8e6baf4a seq_pad +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e796952 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x8e865d3c arm_delay_ops +EXPORT_SYMBOL vmlinux 0x8eb4e661 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL vmlinux 0x8ed9384e of_clk_get +EXPORT_SYMBOL vmlinux 0x8ed9c233 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x8ee5b08a lock_rename +EXPORT_SYMBOL vmlinux 0x8f1464f6 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x8f14ec70 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x8f1d5d6f lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x8f3463ce md_done_sync +EXPORT_SYMBOL vmlinux 0x8f3b1901 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x8f4167c9 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x8f595b11 snd_major +EXPORT_SYMBOL vmlinux 0x8f678b07 __stack_chk_guard +EXPORT_SYMBOL vmlinux 0x8f74f113 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x8f786e92 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x8f9117b6 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x8f986243 loop_backing_file +EXPORT_SYMBOL vmlinux 0x8fa3f15d simple_getattr +EXPORT_SYMBOL vmlinux 0x8fa4130a omap_set_dma_callback +EXPORT_SYMBOL vmlinux 0x8fd180e7 kernel_neon_begin +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x8ffdfeb6 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x900322db sock_rfree +EXPORT_SYMBOL vmlinux 0x900d3afe omapdss_output_set_device +EXPORT_SYMBOL vmlinux 0x900e3d76 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x90113ad4 register_framebuffer +EXPORT_SYMBOL vmlinux 0x9034fb61 release_firmware +EXPORT_SYMBOL vmlinux 0x903f4232 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x9048f299 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x904e9f9b devm_clk_put +EXPORT_SYMBOL vmlinux 0x905e3f3e make_kprojid +EXPORT_SYMBOL vmlinux 0x9060c277 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x9088469d xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x90920065 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90c8756f d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x90ef2d7e snd_pcm_kernel_ioctl +EXPORT_SYMBOL vmlinux 0x90ef67d5 dump_page +EXPORT_SYMBOL vmlinux 0x90ef6d36 input_register_device +EXPORT_SYMBOL vmlinux 0x9102883b sget_userns +EXPORT_SYMBOL vmlinux 0x910544ac scm_detach_fds +EXPORT_SYMBOL vmlinux 0x91061712 ps2_command +EXPORT_SYMBOL vmlinux 0x910f443e netif_receive_skb +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915b4371 fasync_helper +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x918a8801 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x919029aa __readwrite_bug +EXPORT_SYMBOL vmlinux 0x91a59b36 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x91af5890 copy_to_iter +EXPORT_SYMBOL vmlinux 0x91c0980e icst_hz +EXPORT_SYMBOL vmlinux 0x91dd8b4b omap_dss_get_overlay +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x92087b13 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x920a7b05 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x9213646c snd_pcm_create_iec958_consumer +EXPORT_SYMBOL vmlinux 0x92332473 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92402aa0 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x92643fe3 elv_rb_add +EXPORT_SYMBOL vmlinux 0x926d50d0 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x92736bfb ip6_xmit +EXPORT_SYMBOL vmlinux 0x927494ca tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x9279585b ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92ba485a nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x92ebc861 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x92ec5d1b dispc_mgr_enable +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x93099560 vme_lm_request +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x934f332a sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x9357b966 free_netdev +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x937fb7f6 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x9381c8c8 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x93963a85 dss_feat_get_num_mgrs +EXPORT_SYMBOL vmlinux 0x93984b73 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x93a8c484 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x93addefb lock_sock_fast +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93d8e5ef blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x93dbafa0 ip_defrag +EXPORT_SYMBOL vmlinux 0x93e96598 cros_ec_check_result +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 0x9442313b pci_disable_device +EXPORT_SYMBOL vmlinux 0x946702a0 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x946efbfa __wait_on_bit +EXPORT_SYMBOL vmlinux 0x947cb251 dquot_resume +EXPORT_SYMBOL vmlinux 0x9494b907 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a23609 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x94b473c2 sync_filesystem +EXPORT_SYMBOL vmlinux 0x94b8aec5 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x94d01475 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x94d3da68 rtc_lock +EXPORT_SYMBOL vmlinux 0x94d4112c __free_pages +EXPORT_SYMBOL vmlinux 0x94df1027 tty_lock +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9525a9e0 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x9528cbec release_sock +EXPORT_SYMBOL vmlinux 0x952ac5d2 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x953175f2 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x95342d96 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x9534ee38 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95461531 led_blink_set +EXPORT_SYMBOL vmlinux 0x9548ed0e max8925_set_bits +EXPORT_SYMBOL vmlinux 0x95622f41 down_timeout +EXPORT_SYMBOL vmlinux 0x95689f25 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x956e9f62 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x9581c66d fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x9590a9d3 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x959ef2e8 tcp_check_req +EXPORT_SYMBOL vmlinux 0x95a05ace seq_path +EXPORT_SYMBOL vmlinux 0x95dbe078 __get_user_2 +EXPORT_SYMBOL vmlinux 0x95e6f7d7 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x95e9ec17 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x95ec8ce1 of_get_next_child +EXPORT_SYMBOL vmlinux 0x95fdc2f3 set_create_files_as +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x9629c60e blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x963d86a3 write_one_page +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x969f11f1 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x96acd89d sk_wait_data +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96fa209f dispc_ovl_check +EXPORT_SYMBOL vmlinux 0x97139354 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x974ed79d tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x9753f1ce simple_pin_fs +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975c5284 block_read_full_page +EXPORT_SYMBOL vmlinux 0x976e700f down_trylock +EXPORT_SYMBOL vmlinux 0x976fd35d add_disk +EXPORT_SYMBOL vmlinux 0x9779c0a5 skb_make_writable +EXPORT_SYMBOL vmlinux 0x977c8022 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x97800d83 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x9793c93a dispc_mgr_setup +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97c4e721 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x97dee284 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x97eb9aef devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x97ebfaf3 inet6_offloads +EXPORT_SYMBOL vmlinux 0x97f5487c bmap +EXPORT_SYMBOL vmlinux 0x97f99fd4 dispc_ovl_setup +EXPORT_SYMBOL vmlinux 0x97ff5639 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x98062912 tty_port_put +EXPORT_SYMBOL vmlinux 0x980857cf tc6393xb_lcd_mode +EXPORT_SYMBOL vmlinux 0x981178ef pci_find_bus +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x9820bcff dev_uc_del +EXPORT_SYMBOL vmlinux 0x98424266 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x9848cb94 mmc_request_done +EXPORT_SYMBOL vmlinux 0x9869029b netdev_emerg +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x986ff9e7 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x987c11c7 __pv_phys_pfn_offset +EXPORT_SYMBOL vmlinux 0x989bf67c sget +EXPORT_SYMBOL vmlinux 0x98a3c818 generic_fillattr +EXPORT_SYMBOL vmlinux 0x98a647ce snd_pcm_lib_free_pages +EXPORT_SYMBOL vmlinux 0x98af5359 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x98b28484 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x98d843a4 amba_find_device +EXPORT_SYMBOL vmlinux 0x98e17dc2 page_symlink +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98e87ef9 vfs_llseek +EXPORT_SYMBOL vmlinux 0x98ef168d register_sound_special_device +EXPORT_SYMBOL vmlinux 0x990aade7 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x9910ea25 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x9945925f scsi_execute_req_flags +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 0x9973cdd2 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x9977cee7 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x997f550d rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a23405 simple_rmdir +EXPORT_SYMBOL vmlinux 0x99b0780e f_setown +EXPORT_SYMBOL vmlinux 0x99b438a7 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99e7d8f4 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x99e8b01b pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x99f58330 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x99f66a80 snd_power_wait +EXPORT_SYMBOL vmlinux 0x99fcf628 input_register_handler +EXPORT_SYMBOL vmlinux 0x9a08ae14 mdiobus_free +EXPORT_SYMBOL vmlinux 0x9a0cf40e snd_pcm_set_ops +EXPORT_SYMBOL vmlinux 0x9a1325fe blkdev_put +EXPORT_SYMBOL vmlinux 0x9a15ae66 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1e2d97 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a201e01 put_cmsg +EXPORT_SYMBOL vmlinux 0x9a249c48 snd_jack_set_key +EXPORT_SYMBOL vmlinux 0x9a281ed3 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x9a436485 mutex_lock +EXPORT_SYMBOL vmlinux 0x9a492189 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x9a5b3572 inet6_release +EXPORT_SYMBOL vmlinux 0x9a623142 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x9a641780 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x9a72ad0c nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x9a73b0bf xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x9a7dae5a snd_timer_continue +EXPORT_SYMBOL vmlinux 0x9a8318ef v7_coherent_kern_range +EXPORT_SYMBOL vmlinux 0x9aaf4fff inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x9ac0af82 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x9ac42b6b devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x9ad3d614 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x9ad81853 arm_dma_ops +EXPORT_SYMBOL vmlinux 0x9ade3e5b md_cluster_ops +EXPORT_SYMBOL vmlinux 0x9aea63f0 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9b0e23a4 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x9b2a60b8 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b38495f icmp_send +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3d588f inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x9b40c6de netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x9b499a79 snd_jack_report +EXPORT_SYMBOL vmlinux 0x9b500440 blk_run_queue +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b8c2cd1 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x9b9762f7 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x9b9c19fb nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9b9e8c5f mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x9ba37649 bio_map_kern +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9badab45 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bc852de dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x9bd15c05 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x9be025ad ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c0bd51f _raw_spin_lock +EXPORT_SYMBOL vmlinux 0x9c158323 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x9c1a5f12 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x9c1d3634 input_release_device +EXPORT_SYMBOL vmlinux 0x9c2efb23 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x9c331593 km_new_mapping +EXPORT_SYMBOL vmlinux 0x9c45f5b7 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +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 0x9cba3c37 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x9cbec70e inode_set_bytes +EXPORT_SYMBOL vmlinux 0x9cc746f1 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x9cfa8439 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0f3559 try_module_get +EXPORT_SYMBOL vmlinux 0x9d1bbda3 tc6393xb_lcd_set_power +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d3ad69e serio_close +EXPORT_SYMBOL vmlinux 0x9d3e5723 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x9d5925f1 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x9d637d33 filp_open +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d7ef3fe pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x9da04414 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x9da9900d netlink_capable +EXPORT_SYMBOL vmlinux 0x9dacfa16 genphy_update_link +EXPORT_SYMBOL vmlinux 0x9dafa0ce devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x9db2666e truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x9dbd2c1b __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x9de86c3e generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9deddc87 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9dfe9cb9 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x9e02b6e0 __napi_schedule +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e10bfc1 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x9e155957 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x9e18f386 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x9e22097a fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x9e37eaae __skb_checksum +EXPORT_SYMBOL vmlinux 0x9e3850ef padata_add_cpu +EXPORT_SYMBOL vmlinux 0x9e3ac069 from_kuid +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e563f73 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL vmlinux 0x9e5b8b5b snd_ctl_new1 +EXPORT_SYMBOL vmlinux 0x9e5c25d3 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6c88fe scsi_device_put +EXPORT_SYMBOL vmlinux 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e9b5873 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea68831 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x9eadc922 __mutex_init +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec96683 bio_copy_kern +EXPORT_SYMBOL vmlinux 0x9ed87527 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9eea8b4b filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x9f2e6062 cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x9f38d4e0 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4b614d blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x9f6d25c1 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x9f6d775a inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x9f76118d mmc_free_host +EXPORT_SYMBOL vmlinux 0x9f823cea dispc_mgr_is_enabled +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fb6d658 snd_pcm_hw_constraint_list +EXPORT_SYMBOL vmlinux 0x9fbfa6cb blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x9fc71d5e nd_btt_probe +EXPORT_SYMBOL vmlinux 0x9fc810c2 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x9fce622c snd_component_add +EXPORT_SYMBOL vmlinux 0x9fd06ac2 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fec7ed2 omap_dss_get_device +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0044066 kset_register +EXPORT_SYMBOL vmlinux 0xa00b295e jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xa00dac47 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xa00dc1b7 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xa020ec7a xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xa02af613 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xa032af39 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xa041209a register_cdrom +EXPORT_SYMBOL vmlinux 0xa042572e inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04382b6 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04deaf8 __quota_error +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05f601c mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xa0667f46 bioset_free +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa0706cca truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xa07adad9 bitmap_unplug +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0935e79 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b79cc2 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xa0ca224f security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e99f1d of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +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 0xa11f2d23 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1268b9b pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xa14127b0 blk_peek_request +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14bdea0 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xa14da3e3 nand_bch_correct_data +EXPORT_SYMBOL vmlinux 0xa15f11d0 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xa1619847 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xa18274f0 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xa1890a21 get_io_context +EXPORT_SYMBOL vmlinux 0xa192813b idr_for_each +EXPORT_SYMBOL vmlinux 0xa19725da clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xa1a5b7f6 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xa1a9ad4a sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1b8581b __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xa1c038c4 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xa1c0c1dd param_set_byte +EXPORT_SYMBOL vmlinux 0xa1c159f1 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1d55e90 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e5fe6c uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xa1f0ebea bit_waitqueue +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa210ddf3 tty_mutex +EXPORT_SYMBOL vmlinux 0xa22162d9 security_path_truncate +EXPORT_SYMBOL vmlinux 0xa2459ac1 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xa25dff53 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xa25fa839 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xa2815514 sock_from_file +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa285d104 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xa29253e5 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xa298fb08 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xa2a12854 clkdev_drop +EXPORT_SYMBOL vmlinux 0xa2ab949a tcp_poll +EXPORT_SYMBOL vmlinux 0xa2ad1fb7 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xa2e6994d pci_set_power_state +EXPORT_SYMBOL vmlinux 0xa2fbe025 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa3268177 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xa336feb7 nand_manuf_ids +EXPORT_SYMBOL vmlinux 0xa33bba63 thaw_bdev +EXPORT_SYMBOL vmlinux 0xa33eca29 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xa341d68b udp_set_csum +EXPORT_SYMBOL vmlinux 0xa35444e4 dispc_write_irqenable +EXPORT_SYMBOL vmlinux 0xa35eee32 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xa364deb2 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xa36f1784 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xa37657c3 param_get_byte +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3808c9b blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa38414a3 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xa39a123a fence_add_callback +EXPORT_SYMBOL vmlinux 0xa3ba579f pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xa3e38861 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0xa403cf2f km_state_expired +EXPORT_SYMBOL vmlinux 0xa410b558 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xa414882d add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0xa42d6069 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xa4352d33 netdev_change_features +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa4610bc6 omap_rev +EXPORT_SYMBOL vmlinux 0xa46406a3 clkdev_alloc +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa48f5b09 omap_dma_set_global_params +EXPORT_SYMBOL vmlinux 0xa4a4e3c6 read_cache_pages +EXPORT_SYMBOL vmlinux 0xa4b42c55 omap_set_dma_priority +EXPORT_SYMBOL vmlinux 0xa4b4b743 do_splice_direct +EXPORT_SYMBOL vmlinux 0xa4cfdb90 mapping_tagged +EXPORT_SYMBOL vmlinux 0xa4ecfb7e __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xa5018abe neigh_parms_release +EXPORT_SYMBOL vmlinux 0xa50cf218 inet_shutdown +EXPORT_SYMBOL vmlinux 0xa535362a inet_recvmsg +EXPORT_SYMBOL vmlinux 0xa5354c24 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xa53be682 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xa55178d9 devm_free_irq +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa582a438 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xa588b8c0 irq_set_chip +EXPORT_SYMBOL vmlinux 0xa58fea9d mempool_destroy +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa59cb101 elevator_init +EXPORT_SYMBOL vmlinux 0xa5a022b8 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xa5d1929b dump_emit +EXPORT_SYMBOL vmlinux 0xa60851d5 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL vmlinux 0xa61c352a xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xa61e4362 omap_request_dma +EXPORT_SYMBOL vmlinux 0xa6265299 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xa62eb4e6 cfb_copyarea +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa6418f1e __destroy_inode +EXPORT_SYMBOL vmlinux 0xa6718caf eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xa67374f0 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6881e68 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa69a484e iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xa6a5a03f nobh_write_end +EXPORT_SYMBOL vmlinux 0xa6a9532a phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xa6bab23d dqstats +EXPORT_SYMBOL vmlinux 0xa6caa70c scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xa6d41b4a fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xa6dd49f3 ilookup +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70e5827 dev_add_offload +EXPORT_SYMBOL vmlinux 0xa7175064 napi_disable +EXPORT_SYMBOL vmlinux 0xa71ab9a1 vmap +EXPORT_SYMBOL vmlinux 0xa71f2a20 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xa732de69 dev_get_stats +EXPORT_SYMBOL vmlinux 0xa734a3e9 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa76e6bf0 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa775df99 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xa77aaa5d security_path_chmod +EXPORT_SYMBOL vmlinux 0xa7800f19 kobject_del +EXPORT_SYMBOL vmlinux 0xa78073d4 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xa78b5bb1 fsync_bdev +EXPORT_SYMBOL vmlinux 0xa7a01a42 mdiobus_read +EXPORT_SYMBOL vmlinux 0xa7bcfb6e dev_disable_lro +EXPORT_SYMBOL vmlinux 0xa7c2b7c6 skb_find_text +EXPORT_SYMBOL vmlinux 0xa7c5020b block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xa7cfd57c _snd_ctl_add_slave +EXPORT_SYMBOL vmlinux 0xa7d31713 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xa7e92cdc dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xa808872c __blk_end_request +EXPORT_SYMBOL vmlinux 0xa83ce889 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa8803634 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xa8811001 dss_mgr_connect +EXPORT_SYMBOL vmlinux 0xa8a5c995 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xa8a8110c kernel_neon_end +EXPORT_SYMBOL vmlinux 0xa8b4ffc8 mpage_readpages +EXPORT_SYMBOL vmlinux 0xa8bf4c3a debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9036762 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xa90d3741 kernel_accept +EXPORT_SYMBOL vmlinux 0xa9142964 start_tty +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa920aeeb revalidate_disk +EXPORT_SYMBOL vmlinux 0xa928444f down_read +EXPORT_SYMBOL vmlinux 0xa93f0e20 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xa9497a86 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xa94e0800 con_is_bound +EXPORT_SYMBOL vmlinux 0xa95b58a9 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xa964dd13 gpmc_cs_request +EXPORT_SYMBOL vmlinux 0xa9658cd3 kobject_add +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9790d3a blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xa97be7b4 get_gendisk +EXPORT_SYMBOL vmlinux 0xa997fa01 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xa99d9099 dev_trans_start +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d2f3f7 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xa9da4f52 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xa9fdfb04 mmc_add_host +EXPORT_SYMBOL vmlinux 0xaa135028 input_register_handle +EXPORT_SYMBOL vmlinux 0xaa396e96 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xaa397c4c blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xaa3f1650 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0xaa511e34 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa69ca11 module_put +EXPORT_SYMBOL vmlinux 0xaa6ab8d4 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7e966e __ps2_command +EXPORT_SYMBOL vmlinux 0xaa8fb19a ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xaaa875da of_get_pci_address +EXPORT_SYMBOL vmlinux 0xaaab0677 snd_timer_global_register +EXPORT_SYMBOL vmlinux 0xaab4ba79 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xaac04c48 udplite_prot +EXPORT_SYMBOL vmlinux 0xaac05630 msm_pinctrl_remove +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 0xaae40ae6 do_SAK +EXPORT_SYMBOL vmlinux 0xaae670a6 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab301ed8 inet_release +EXPORT_SYMBOL vmlinux 0xab3ef598 bdget +EXPORT_SYMBOL vmlinux 0xab403494 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xab411668 inode_set_flags +EXPORT_SYMBOL vmlinux 0xab600421 probe_irq_off +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab72455c i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xab753113 omapdss_default_get_recommended_bpp +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab81a15a mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xab97fb4b d_tmpfile +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabb38c00 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabe15624 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xabf578de datagram_poll +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac09210e cpufreq_power_cooling_register +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 0xac6954d2 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xac785d49 make_bad_inode +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb71ea6 param_get_ullong +EXPORT_SYMBOL vmlinux 0xacc01a8a vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xacc0f190 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xacc5f52e skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xace38483 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0de975 snd_ctl_remove_id +EXPORT_SYMBOL vmlinux 0xad2b6d68 kernel_write +EXPORT_SYMBOL vmlinux 0xad30ce6c dev_addr_flush +EXPORT_SYMBOL vmlinux 0xad32a17a disk_stack_limits +EXPORT_SYMBOL vmlinux 0xad37ed67 mmc_cleanup_queue +EXPORT_SYMBOL vmlinux 0xad44b95e xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xad4e27a1 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xad51a69b seq_file_path +EXPORT_SYMBOL vmlinux 0xad5ace1b udp_del_offload +EXPORT_SYMBOL vmlinux 0xad71bcda pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xad77ca7f make_kgid +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xadafd5dd skb_clone +EXPORT_SYMBOL vmlinux 0xadb4b22e ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL vmlinux 0xadedf397 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xadf5da2c tcp_disconnect +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae0682f4 put_filp +EXPORT_SYMBOL vmlinux 0xae0d4ebe scsi_register_driver +EXPORT_SYMBOL vmlinux 0xae0eb60c phy_connect_direct +EXPORT_SYMBOL vmlinux 0xae2b583a fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xae51d245 dentry_open +EXPORT_SYMBOL vmlinux 0xae5fed3c rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xae99c009 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xaea2edbb edma_filter_fn +EXPORT_SYMBOL vmlinux 0xaec6025d serio_open +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaececa0e filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xaed6c2c2 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xaedd06c3 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0xaef496f6 netdev_notice +EXPORT_SYMBOL vmlinux 0xaefd183c is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xaf1bf505 vfs_mknod +EXPORT_SYMBOL vmlinux 0xaf24f54b ps2_begin_command +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf50e76d elf_set_personality +EXPORT_SYMBOL vmlinux 0xaf5cbb46 blkdev_get +EXPORT_SYMBOL vmlinux 0xaf624c5d sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xaf64a6eb rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xaf6eb8ab take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xaf84865e __get_user_8 +EXPORT_SYMBOL vmlinux 0xaf8aa518 system_rev +EXPORT_SYMBOL vmlinux 0xafbe7ae4 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xb009c0da snd_pcm_lib_readv +EXPORT_SYMBOL vmlinux 0xb01f4353 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xb02c642f netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xb04cf0fe lg_local_unlock +EXPORT_SYMBOL vmlinux 0xb057cd27 cpu_user +EXPORT_SYMBOL vmlinux 0xb05eb7d3 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb062e1d1 send_sig +EXPORT_SYMBOL vmlinux 0xb066b530 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xb07f25e7 blk_init_queue +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb085e1c9 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xb092b5cd ac97_bus_type +EXPORT_SYMBOL vmlinux 0xb09f19be sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0b6c7d1 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xb0b88308 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xb0bbb4cb cdev_init +EXPORT_SYMBOL vmlinux 0xb0bf88bb dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb10c2988 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xb11879a8 mmc_start_req +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13609ec ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xb13e2390 blk_start_request +EXPORT_SYMBOL vmlinux 0xb15980cf of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb16a90d9 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xb16ca873 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xb18730dd vfs_whiteout +EXPORT_SYMBOL vmlinux 0xb187f630 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xb18ae77e simple_rename +EXPORT_SYMBOL vmlinux 0xb18d237e uart_resume_port +EXPORT_SYMBOL vmlinux 0xb18f12b1 of_match_device +EXPORT_SYMBOL vmlinux 0xb1ad28e0 __gnu_mcount_nc +EXPORT_SYMBOL vmlinux 0xb1be5a8f param_get_int +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cc1f35 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xb1ce2b93 seq_open +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 0xb1eec26d phy_disconnect +EXPORT_SYMBOL vmlinux 0xb1f0fcf9 nf_afinfo +EXPORT_SYMBOL vmlinux 0xb200cbe3 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xb209f739 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xb21fa246 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb222216b input_inject_event +EXPORT_SYMBOL vmlinux 0xb22c716c nobh_write_begin +EXPORT_SYMBOL vmlinux 0xb2383807 rwsem_wake +EXPORT_SYMBOL vmlinux 0xb23a876d padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xb24f5246 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xb25dd97e dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb26fdda8 commit_creds +EXPORT_SYMBOL vmlinux 0xb272c901 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xb27b2302 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xb2a3fcdc simple_map_init +EXPORT_SYMBOL vmlinux 0xb2a5ddbb register_md_personality +EXPORT_SYMBOL vmlinux 0xb2a8e63b netif_device_detach +EXPORT_SYMBOL vmlinux 0xb2b0c204 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xb2bce65b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c23e13 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xb2c41a86 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xb2d1520d alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d4b1a8 arm_dma_zone_size +EXPORT_SYMBOL vmlinux 0xb2dc9252 from_kuid_munged +EXPORT_SYMBOL vmlinux 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL vmlinux 0xb2e8b0a8 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0xb3059ed4 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL vmlinux 0xb319e323 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xb32a4a3f always_delete_dentry +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb337953b __check_sticky +EXPORT_SYMBOL vmlinux 0xb33c351f ioremap_cache +EXPORT_SYMBOL vmlinux 0xb35b8b22 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xb35dfb06 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xb3660fb0 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xb36c50a5 alloc_file +EXPORT_SYMBOL vmlinux 0xb3769b74 netif_device_attach +EXPORT_SYMBOL vmlinux 0xb38f9523 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xb39419d0 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xb3a6cafd pci_dev_get +EXPORT_SYMBOL vmlinux 0xb3af41e2 mmc_release_host +EXPORT_SYMBOL vmlinux 0xb3b776fd dev_uc_init +EXPORT_SYMBOL vmlinux 0xb3badd53 devm_memremap +EXPORT_SYMBOL vmlinux 0xb3bda7d8 dump_align +EXPORT_SYMBOL vmlinux 0xb3cb19e9 dev_notice +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3dbf304 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xb3e18687 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xb3e61e86 key_task_permission +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3f9687e inet6_protos +EXPORT_SYMBOL vmlinux 0xb403a5d9 tty_register_driver +EXPORT_SYMBOL vmlinux 0xb40b41a0 snd_jack_set_parent +EXPORT_SYMBOL vmlinux 0xb41a5b38 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42fc52f tcp_proc_register +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4439218 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xb449413b dev_crit +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb456a7bc scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xb46a24b3 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb484a7ec max8925_reg_read +EXPORT_SYMBOL vmlinux 0xb48b3301 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xb499e6f9 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL vmlinux 0xb4cb08a8 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xb4f34791 tso_build_data +EXPORT_SYMBOL vmlinux 0xb4feb9c8 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xb50a0000 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xb50d49b3 find_vma +EXPORT_SYMBOL vmlinux 0xb5198b77 _raw_read_lock +EXPORT_SYMBOL vmlinux 0xb52f7eb9 napi_get_frags +EXPORT_SYMBOL vmlinux 0xb5580dd9 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xb5684e29 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb59a3908 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a6754f __serio_register_driver +EXPORT_SYMBOL vmlinux 0xb5a84584 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb5a9fa40 fget_raw +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c00014 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5ddad98 dm_put_device +EXPORT_SYMBOL vmlinux 0xb5ddcbfb __elv_add_request +EXPORT_SYMBOL vmlinux 0xb5e40519 pci_iomap +EXPORT_SYMBOL vmlinux 0xb5f95adf generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb6259e67 vm_insert_page +EXPORT_SYMBOL vmlinux 0xb641d10b read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xb64f708b md_reload_sb +EXPORT_SYMBOL vmlinux 0xb65e8cd8 unregister_nls +EXPORT_SYMBOL vmlinux 0xb67388ed pcibios_resource_to_bus +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 0xb6beceb4 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xb6c6d8e3 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xb6d3daf1 qcom_scm_hdcp_req +EXPORT_SYMBOL vmlinux 0xb6eeffd5 phy_init_eee +EXPORT_SYMBOL vmlinux 0xb70233f3 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xb70320bc __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xb71252ff abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xb73712ce generic_file_mmap +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb761ca1e do_truncate +EXPORT_SYMBOL vmlinux 0xb766eb8e empty_zero_page +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7892f95 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xb78e32de abort_creds +EXPORT_SYMBOL vmlinux 0xb78ecb0e jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7ba76c7 __aeabi_unwind_cpp_pr2 +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7e6dbb0 eth_header_parse +EXPORT_SYMBOL vmlinux 0xb8043a03 init_task +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb81af911 dcache_readdir +EXPORT_SYMBOL vmlinux 0xb8249eea pcim_iomap +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb84d9c94 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xb84f34f6 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8837896 kernel_read +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb8b086c6 set_page_dirty +EXPORT_SYMBOL vmlinux 0xb8b1459e kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xb8de9140 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8eae89c init_buffer +EXPORT_SYMBOL vmlinux 0xb8fed73e default_llseek +EXPORT_SYMBOL vmlinux 0xb913581c get_fs_type +EXPORT_SYMBOL vmlinux 0xb930f5d3 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xb95f98d6 _memset_io +EXPORT_SYMBOL vmlinux 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL vmlinux 0xb96406c3 wake_up_process +EXPORT_SYMBOL vmlinux 0xb97fabb5 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xb985da9a update_region +EXPORT_SYMBOL vmlinux 0xb9888e0a tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xb992a324 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xb9a8f03b omap_stop_dma +EXPORT_SYMBOL vmlinux 0xb9abf647 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0xb9acd3d9 __put_user_2 +EXPORT_SYMBOL vmlinux 0xb9cada34 __alloc_skb +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9eb04d2 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xba0cf8a2 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xba1968b2 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xba461098 __vfs_write +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbacb8f1e simple_follow_link +EXPORT_SYMBOL vmlinux 0xbadd596c vfs_statfs +EXPORT_SYMBOL vmlinux 0xbafdd24b try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xbafeee36 dispc_runtime_get +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb49f2c7 snd_pcm_lib_write +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb69e425 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xbb72d4fe __put_user_1 +EXPORT_SYMBOL vmlinux 0xbb809f8c tcp_req_err +EXPORT_SYMBOL vmlinux 0xbb8f03ea file_path +EXPORT_SYMBOL vmlinux 0xbb92cb8b snd_device_free +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbba2f56 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xbbcd5879 write_inode_now +EXPORT_SYMBOL vmlinux 0xbbfdab8d find_inode_nowait +EXPORT_SYMBOL vmlinux 0xbbfe310d set_cached_acl +EXPORT_SYMBOL vmlinux 0xbc0ad62e netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xbc10dd97 __put_user_4 +EXPORT_SYMBOL vmlinux 0xbc3e4f28 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xbc543588 kern_unmount +EXPORT_SYMBOL vmlinux 0xbc60b9af blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xbc6329b0 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbc748369 snd_pcm_stop +EXPORT_SYMBOL vmlinux 0xbc8399a0 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xbc893418 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xbc8ca108 ilookup5 +EXPORT_SYMBOL vmlinux 0xbc920724 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xbca56797 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xbca9d2c8 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0xbcb29c11 page_readlink +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc684b7 msm_pinctrl_probe +EXPORT_SYMBOL vmlinux 0xbcd1bc1e mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xbcd7acb0 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xbce18154 skb_queue_head +EXPORT_SYMBOL vmlinux 0xbd03e7b4 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xbd064dc1 d_genocide +EXPORT_SYMBOL vmlinux 0xbd0c6a2b iget_failed +EXPORT_SYMBOL vmlinux 0xbd17c6de gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xbd22a842 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xbd3742b6 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xbd4b7380 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xbd73f396 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd98bce4 shdma_reset +EXPORT_SYMBOL vmlinux 0xbdc325a3 bioset_create +EXPORT_SYMBOL vmlinux 0xbdec4d08 fence_remove_callback +EXPORT_SYMBOL vmlinux 0xbdedb6b2 irq_stat +EXPORT_SYMBOL vmlinux 0xbe089adf sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1a34a8 md_flush_request +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe21f6ff devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xbe28e68f __dquot_free_space +EXPORT_SYMBOL vmlinux 0xbe38c95f blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xbe3d669e delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xbe451205 lookup_bdev +EXPORT_SYMBOL vmlinux 0xbe4e613a sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xbe6218e6 proc_remove +EXPORT_SYMBOL vmlinux 0xbe68e60b blk_queue_unprep_rq +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 0xbed18935 param_set_uint +EXPORT_SYMBOL vmlinux 0xbed5bb8b netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xbeddd30c iterate_dir +EXPORT_SYMBOL vmlinux 0xbede7c36 proto_unregister +EXPORT_SYMBOL vmlinux 0xbee75463 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef0e569 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef758f7 udp_prot +EXPORT_SYMBOL vmlinux 0xbf05e099 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xbf098dea devm_release_resource +EXPORT_SYMBOL vmlinux 0xbf21c0eb phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xbf2d04ae init_special_inode +EXPORT_SYMBOL vmlinux 0xbf42ba34 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xbf513624 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xbf64e94f blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ad873 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf96d968 read_cache_page +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbf9d0d9c blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xbfbf358f pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xbfca8755 snd_card_set_id +EXPORT_SYMBOL vmlinux 0xbfd6496f sock_efree +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff5acf4 dev_uc_add +EXPORT_SYMBOL vmlinux 0xc0056be5 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xc014c537 omapdss_register_display +EXPORT_SYMBOL vmlinux 0xc037551b kthread_bind +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc068449e scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xc075c5c9 da903x_query_status +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc076ddf6 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0825b98 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xc0a4859c bio_unmap_user +EXPORT_SYMBOL vmlinux 0xc0a6a8c5 omap_set_dma_dest_burst_mode +EXPORT_SYMBOL vmlinux 0xc0a98385 profile_pc +EXPORT_SYMBOL vmlinux 0xc0b03155 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xc0b4ac3a dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xc0c3361e scsi_register_interface +EXPORT_SYMBOL vmlinux 0xc0d30f8a devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xc0ef4f77 pci_map_rom +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc134b61f __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xc162ef1e snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL vmlinux 0xc16f4981 iput +EXPORT_SYMBOL vmlinux 0xc182575e kernel_param_lock +EXPORT_SYMBOL vmlinux 0xc1872ff9 file_open_root +EXPORT_SYMBOL vmlinux 0xc1ac374f ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc1b2f927 pci_get_device +EXPORT_SYMBOL vmlinux 0xc1b9253c i2c_register_driver +EXPORT_SYMBOL vmlinux 0xc1be1c01 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xc1bfe924 tty_register_device +EXPORT_SYMBOL vmlinux 0xc1c113d9 ppp_input +EXPORT_SYMBOL vmlinux 0xc1cc95e8 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xc1d007af pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dbd333 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xc1e3af32 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f4b18b sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xc211ab04 param_ops_int +EXPORT_SYMBOL vmlinux 0xc27674b5 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xc2768948 of_dev_put +EXPORT_SYMBOL vmlinux 0xc28ac343 dev_load +EXPORT_SYMBOL vmlinux 0xc296c8ac bd_set_size +EXPORT_SYMBOL vmlinux 0xc2a30337 param_get_string +EXPORT_SYMBOL vmlinux 0xc2a517e0 inet_bind +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 0xc2be5ef5 seq_puts +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc31e5bf4 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xc32893ae replace_mount_options +EXPORT_SYMBOL vmlinux 0xc33ecc2a register_netdevice +EXPORT_SYMBOL vmlinux 0xc3455fec ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xc359a0b0 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xc359fb65 abort +EXPORT_SYMBOL vmlinux 0xc35f7478 param_set_ushort +EXPORT_SYMBOL vmlinux 0xc36012cf skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xc362570f flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xc388e823 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xc3a45900 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xc3bc4f45 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3cd04f6 security_mmap_file +EXPORT_SYMBOL vmlinux 0xc3ebd700 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xc3ffab5b snd_pcm_hw_refine +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc42e31e2 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xc42fd2dc __frontswap_load +EXPORT_SYMBOL vmlinux 0xc4331189 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xc43e0e9a skb_store_bits +EXPORT_SYMBOL vmlinux 0xc4892b15 netpoll_setup +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4ec6ee6 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xc504661b of_device_is_available +EXPORT_SYMBOL vmlinux 0xc50ce9c5 skb_copy +EXPORT_SYMBOL vmlinux 0xc52da066 omap_set_dma_dest_params +EXPORT_SYMBOL vmlinux 0xc567afba mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xc56ca732 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xc576bb56 skb_split +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59ba12f scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xc5a509e6 simple_write_begin +EXPORT_SYMBOL vmlinux 0xc5ac43bb i2c_use_client +EXPORT_SYMBOL vmlinux 0xc5ba0927 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xc5bc4e06 read_dev_sector +EXPORT_SYMBOL vmlinux 0xc5e87679 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6045217 set_bh_page +EXPORT_SYMBOL vmlinux 0xc609fac4 param_get_short +EXPORT_SYMBOL vmlinux 0xc61f8f15 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xc6232fa0 dm_io +EXPORT_SYMBOL vmlinux 0xc62fc7ab nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63f4708 nand_calculate_ecc +EXPORT_SYMBOL vmlinux 0xc653b676 tty_port_close +EXPORT_SYMBOL vmlinux 0xc66fa6a6 ida_remove +EXPORT_SYMBOL vmlinux 0xc67684d8 vc_cons +EXPORT_SYMBOL vmlinux 0xc6928e23 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xc6b3ab77 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xc6b9616d of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d2941e pagecache_get_page +EXPORT_SYMBOL vmlinux 0xc6dd1358 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xc6de77b4 gen_new_estimator +EXPORT_SYMBOL vmlinux 0xc6ff9dee inode_needs_sync +EXPORT_SYMBOL vmlinux 0xc7167ced jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xc71925f7 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7507557 mtd_concat_destroy +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc758cd58 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc79b0045 snd_ctl_rename_id +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc79f2e4f of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0xc7a06332 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7ab4086 seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xc7ada60c iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xc7bcbc8d add_wait_queue +EXPORT_SYMBOL vmlinux 0xc7c97417 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xc7d07a01 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xc7d0a49c dquot_quota_on +EXPORT_SYMBOL vmlinux 0xc7eb3ef4 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7fee0d8 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc8368e50 i2c_del_driver +EXPORT_SYMBOL vmlinux 0xc837719e sock_no_getname +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83bc959 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc855f11b blk_register_region +EXPORT_SYMBOL vmlinux 0xc85ce94f eth_header_cache +EXPORT_SYMBOL vmlinux 0xc86195a3 eth_gro_receive +EXPORT_SYMBOL vmlinux 0xc8697dd8 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87647b8 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xc8777e18 __seq_open_private +EXPORT_SYMBOL vmlinux 0xc88c0e38 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xc88f9f83 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89f78f3 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b69498 pps_register_source +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc912a974 __inet_hash +EXPORT_SYMBOL vmlinux 0xc915e358 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xc934a573 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xc937c5e1 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xc9624e1b __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9663887 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xc97923ba snd_cards +EXPORT_SYMBOL vmlinux 0xc988c601 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xc98d4eff tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xc9954c6a tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a2cd97 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xc9a53ebb inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xc9c37d8d param_get_bool +EXPORT_SYMBOL vmlinux 0xc9d24e61 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xc9f86f12 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca1b25a6 sk_receive_skb +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca66be80 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xca77186e __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xca85e272 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xca9159ec genphy_suspend +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca980b58 d_invalidate +EXPORT_SYMBOL vmlinux 0xca9b9617 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xcab67a1f pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xcabfb53e get_task_exe_file +EXPORT_SYMBOL vmlinux 0xcac92ef5 padata_stop +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb0b03f0 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xcb2f0e1a neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xcb466063 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xcb654f9d netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xcb6df1a7 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xcb8de741 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xcba2ada9 param_ops_bint +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbdb0b2e inet_getname +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbee6439 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcc006321 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc501787 prepare_binprm +EXPORT_SYMBOL vmlinux 0xcc704928 up_read +EXPORT_SYMBOL vmlinux 0xcc8fff0e of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xcca9e3e5 set_disk_ro +EXPORT_SYMBOL vmlinux 0xccacd36a ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xccb2f14a kobject_get +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcce38680 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xccf373a9 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xccfe3093 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2e6304 lookup_one_len +EXPORT_SYMBOL vmlinux 0xcd30b95a tmio_core_mmc_clk_div +EXPORT_SYMBOL vmlinux 0xcd3b6511 console_stop +EXPORT_SYMBOL vmlinux 0xcd404a4d ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xcd480a0c __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xcd53782d cdrom_open +EXPORT_SYMBOL vmlinux 0xcd63c845 __aeabi_lasr +EXPORT_SYMBOL vmlinux 0xcd67a39b sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xcd8b3129 snd_timer_open +EXPORT_SYMBOL vmlinux 0xcd923b3e fs_bio_set +EXPORT_SYMBOL vmlinux 0xcd95f3b2 have_submounts +EXPORT_SYMBOL vmlinux 0xcd9ef2aa remove_proc_entry +EXPORT_SYMBOL vmlinux 0xcda35a1b md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xcda55aae cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xcdae7132 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc49e19 lockref_get +EXPORT_SYMBOL vmlinux 0xcddd2c79 security_path_symlink +EXPORT_SYMBOL vmlinux 0xcdddeeda arp_send +EXPORT_SYMBOL vmlinux 0xcde07f53 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xce057cea vga_get +EXPORT_SYMBOL vmlinux 0xce0882e4 page_address +EXPORT_SYMBOL vmlinux 0xce109e3d snd_pcm_lib_ioctl +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce30f482 gen_pool_free +EXPORT_SYMBOL vmlinux 0xce392f35 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce63f879 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xce673b35 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xce7f6227 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xce89c1cd end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xce939870 stop_tty +EXPORT_SYMBOL vmlinux 0xce96d7a8 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xcea01727 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec8a710 down_write_trylock +EXPORT_SYMBOL vmlinux 0xcecd4d3e noop_qdisc +EXPORT_SYMBOL vmlinux 0xced43db9 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xcee44c53 ptp_find_pin +EXPORT_SYMBOL vmlinux 0xceeb0985 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0xceed7f85 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcef2dcb8 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf169fea kset_unregister +EXPORT_SYMBOL vmlinux 0xcf307682 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xcf496cf9 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xcf529b90 __sock_create +EXPORT_SYMBOL vmlinux 0xcf5a0460 blk_get_queue +EXPORT_SYMBOL vmlinux 0xcf5e2c79 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xcf88625f mempool_create_node +EXPORT_SYMBOL vmlinux 0xcf8e58af inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xcfa8ac43 set_security_override +EXPORT_SYMBOL vmlinux 0xcfaab72f tty_port_destroy +EXPORT_SYMBOL vmlinux 0xcfb9ce3b security_path_chown +EXPORT_SYMBOL vmlinux 0xcfc22510 d_rehash +EXPORT_SYMBOL vmlinux 0xcfc98b46 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xcfcd9964 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xcff6b676 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0xd0142126 netdev_warn +EXPORT_SYMBOL vmlinux 0xd02e053b mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xd034105f lockref_put_return +EXPORT_SYMBOL vmlinux 0xd03b8d6c __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xd0599420 param_set_long +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd077b633 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xd088a006 get_phy_device +EXPORT_SYMBOL vmlinux 0xd09226b3 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xd09ad0f2 __neigh_create +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0d17789 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xd0e2247a led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xd0e6ab3b page_symlink_inode_operations +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 0xd101d5ac md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xd1067ba7 dispc_ovl_enabled +EXPORT_SYMBOL vmlinux 0xd15e0c18 fb_blank +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd19307aa generic_write_end +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd19c3190 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xd1a10dad param_ops_short +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d2d406 passthru_features_check +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1df0557 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xd1e124d8 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xd1e79cae fence_wait_timeout +EXPORT_SYMBOL vmlinux 0xd1ef03c0 kill_pgrp +EXPORT_SYMBOL vmlinux 0xd20202d7 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0xd20be7b8 inode_permission +EXPORT_SYMBOL vmlinux 0xd2289962 mb_cache_entry_find_next +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 0xd264e928 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2861c37 udp_poll +EXPORT_SYMBOL vmlinux 0xd29533e1 phy_find_first +EXPORT_SYMBOL vmlinux 0xd2a67e8f inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2b2493c mntget +EXPORT_SYMBOL vmlinux 0xd2c3cedf snd_pcm_release_substream +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd331164c of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xd343b9a9 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd3516b5d twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xd355cdcd jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xd3673039 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xd36b00ca do_splice_from +EXPORT_SYMBOL vmlinux 0xd3815cdf deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xd3851518 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xd3881549 touch_buffer +EXPORT_SYMBOL vmlinux 0xd3b52776 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3ca9252 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xd3ccc4b6 up_write +EXPORT_SYMBOL vmlinux 0xd3dbfbc4 _find_first_zero_bit_le +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd43d4876 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xd448cebd qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xd4669067 amba_driver_unregister +EXPORT_SYMBOL vmlinux 0xd4669fad complete +EXPORT_SYMBOL vmlinux 0xd4cb453d phy_start_aneg +EXPORT_SYMBOL vmlinux 0xd4cf28c5 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xd4d8c58b keyring_search +EXPORT_SYMBOL vmlinux 0xd4fe0814 dev_addr_add +EXPORT_SYMBOL vmlinux 0xd5010860 tty_set_operations +EXPORT_SYMBOL vmlinux 0xd5022b98 omap_dss_find_output_by_port_node +EXPORT_SYMBOL vmlinux 0xd548abf6 inet_accept +EXPORT_SYMBOL vmlinux 0xd54c250d mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xd54f0421 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55a822e blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xd5828851 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5b44df3 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xd5bb5fdb seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xd5c947c4 kill_bdev +EXPORT_SYMBOL vmlinux 0xd5cd493c pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xd5ce7d92 finish_no_open +EXPORT_SYMBOL vmlinux 0xd5d3e506 dma_supported +EXPORT_SYMBOL vmlinux 0xd5d55b1e i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xd5e8822c __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xd5ea3ffc __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xd5f33905 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd607403b uart_match_port +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 0xd63c66aa xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd659e921 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xd66b2d40 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd683bbd5 snd_timer_new +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd689375e padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xd6af78a5 force_sig +EXPORT_SYMBOL vmlinux 0xd6c4fc3a __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd717bd42 devm_gpio_free +EXPORT_SYMBOL vmlinux 0xd719f187 skb_pull +EXPORT_SYMBOL vmlinux 0xd720fba2 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xd728e7b5 dquot_destroy +EXPORT_SYMBOL vmlinux 0xd74289f9 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xd74a45c9 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xd7504016 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd75e1019 dm_kobject_release +EXPORT_SYMBOL vmlinux 0xd76ae425 udp6_set_csum +EXPORT_SYMBOL vmlinux 0xd7793106 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7c988b0 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xd7c9c1f2 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xd7cdf879 sock_edemux +EXPORT_SYMBOL vmlinux 0xd7ce78d4 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xd7dbda56 sock_i_ino +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd8198f37 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xd8301347 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd8470927 tty_check_change +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85cd67e __wake_up +EXPORT_SYMBOL vmlinux 0xd86c1f2f pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd8801eec xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xd88b3767 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xd88b60cd vfs_write +EXPORT_SYMBOL vmlinux 0xd89c1dbf from_kgid +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8bf29ee default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xd8c8000f jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xd8ca1ad6 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd9118ef4 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xd922d398 proc_mkdir +EXPORT_SYMBOL vmlinux 0xd92bc263 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xd93d53de lro_flush_all +EXPORT_SYMBOL vmlinux 0xd94195ed snd_ctl_remove +EXPORT_SYMBOL vmlinux 0xd955d2b7 omap_set_dma_dest_data_pack +EXPORT_SYMBOL vmlinux 0xd97edd47 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98a8673 key_revoke +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d3ff80 param_ops_byte +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9da36d1 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd9e2be42 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xda0950a3 follow_pfn +EXPORT_SYMBOL vmlinux 0xda0e73d6 __d_drop +EXPORT_SYMBOL vmlinux 0xda3362c2 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xda3b0e4e dquot_get_state +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4df779 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xda595138 dump_truncate +EXPORT_SYMBOL vmlinux 0xda62edfe fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8360c0 seq_vprintf +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda90f0a4 register_sound_midi +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaafc807 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xdac11d47 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacd71c7 tty_throttle +EXPORT_SYMBOL vmlinux 0xdad97f94 __raw_writesw +EXPORT_SYMBOL vmlinux 0xdaf20f98 udp_disconnect +EXPORT_SYMBOL vmlinux 0xdafce173 sock_create_lite +EXPORT_SYMBOL vmlinux 0xdb013c53 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xdb243c2b mntput +EXPORT_SYMBOL vmlinux 0xdb3a9db9 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xdb4292e4 omap_set_dma_params +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6a7211 backlight_force_update +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7b4ece page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xdb93b838 dispc_free_irq +EXPORT_SYMBOL vmlinux 0xdbe3044e mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xdbfded42 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xdbff9ad9 snd_pcm_lib_read +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1ae6e5 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xdc20f2c0 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xdc352713 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc47c4a9 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5c6297 videomode_to_omap_video_timings +EXPORT_SYMBOL vmlinux 0xdc5e1cff snd_info_create_module_entry +EXPORT_SYMBOL vmlinux 0xdca01995 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xdca4a3d5 security_path_unlink +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcd32486 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd179368 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xdd1e094a input_flush_device +EXPORT_SYMBOL vmlinux 0xdd226fa9 __raw_readsw +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd3086ba PDE_DATA +EXPORT_SYMBOL vmlinux 0xdd3602a5 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0xdd3916ac _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xdd3c9f99 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xdd483830 mutex_trylock +EXPORT_SYMBOL vmlinux 0xdd6be2f9 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xdd6fbdca generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xdd762f52 posix_lock_file +EXPORT_SYMBOL vmlinux 0xdd826604 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xdd913fd3 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xdd9530ca mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xdd9d6823 snd_ctl_register_ioctl +EXPORT_SYMBOL vmlinux 0xdda34ab8 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xdda8bfe5 vfs_writev +EXPORT_SYMBOL vmlinux 0xddac7c22 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xddd90db6 open_exec +EXPORT_SYMBOL vmlinux 0xde11039f scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0xde35321c skb_checksum +EXPORT_SYMBOL vmlinux 0xde475e7d snd_pcm_notify +EXPORT_SYMBOL vmlinux 0xde687257 neigh_xmit +EXPORT_SYMBOL vmlinux 0xde73fa07 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9c677b vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xdeaacc03 netif_skb_features +EXPORT_SYMBOL vmlinux 0xdeaf3e4b blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xdeb1c969 md_update_sb +EXPORT_SYMBOL vmlinux 0xdec030e5 arm_clear_user +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xdf0c2b8b flush_signals +EXPORT_SYMBOL vmlinux 0xdf133c72 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf8f5def __invalidate_device +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfb1eb14 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xdfb836b6 mount_nodev +EXPORT_SYMBOL vmlinux 0xdfbf99fc simple_fill_super +EXPORT_SYMBOL vmlinux 0xdfc15041 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd91ce9 omap_type +EXPORT_SYMBOL vmlinux 0xdff85736 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffb46f1 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xe0102b96 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xe01866e5 page_waitqueue +EXPORT_SYMBOL vmlinux 0xe02e7812 sock_recvmsg +EXPORT_SYMBOL vmlinux 0xe03fc8d6 unregister_filesystem +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 0xe0878cf6 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xe09d166a get_super_thawed +EXPORT_SYMBOL vmlinux 0xe0a8e4b0 inet_sendpage +EXPORT_SYMBOL vmlinux 0xe0a8f0d9 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xe0abbf4f param_ops_invbool +EXPORT_SYMBOL vmlinux 0xe0adc70c mmc_detect_change +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b1fcc1 no_llseek +EXPORT_SYMBOL vmlinux 0xe0bef318 icst_hz_to_vco +EXPORT_SYMBOL vmlinux 0xe0c50af1 vfs_getattr +EXPORT_SYMBOL vmlinux 0xe0c75fc7 tc_classify +EXPORT_SYMBOL vmlinux 0xe0e339b3 nf_log_set +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11670e4 d_obtain_root +EXPORT_SYMBOL vmlinux 0xe127fb18 down_killable +EXPORT_SYMBOL vmlinux 0xe12a53d6 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13c6277 vfs_writef +EXPORT_SYMBOL vmlinux 0xe1415d5f security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xe16128e4 single_open_size +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe182ed9f inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xe1a6d0d7 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xe1afc2d3 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xe1bf6ef1 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xe1ce0824 blk_put_request +EXPORT_SYMBOL vmlinux 0xe1d2eac3 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xe1f0ab3a _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20eefdf mb_cache_shrink +EXPORT_SYMBOL vmlinux 0xe215b9b6 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xe22d7bca ll_rw_block +EXPORT_SYMBOL vmlinux 0xe237427a vfs_symlink +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe24dfedc mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xe2591dd9 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xe259ce0e of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xe267c110 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xe2780c4d xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xe2883961 sync_blockdev +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b0331b udp_add_offload +EXPORT_SYMBOL vmlinux 0xe2b2a633 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xe2b570c9 snd_pcm_lib_writev +EXPORT_SYMBOL vmlinux 0xe2baa6e3 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xe2cc96f7 __do_once_done +EXPORT_SYMBOL vmlinux 0xe2d1153b scsi_print_result +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 0xe2fc8833 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xe33711c6 amba_request_regions +EXPORT_SYMBOL vmlinux 0xe3496c5f devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xe355a3a9 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xe369793b sock_no_poll +EXPORT_SYMBOL vmlinux 0xe37d10ae omap_dispc_unregister_isr +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c89519 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xe3ce1788 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xe3d5d7ce tty_do_resize +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e62089 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xe40a374f seq_lseek +EXPORT_SYMBOL vmlinux 0xe413be4a memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xe4204e50 consume_skb +EXPORT_SYMBOL vmlinux 0xe43274bc proc_dointvec +EXPORT_SYMBOL vmlinux 0xe441f4fe locks_remove_posix +EXPORT_SYMBOL vmlinux 0xe44b8d44 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xe44f36f8 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xe4604a48 brioctl_set +EXPORT_SYMBOL vmlinux 0xe4759ae4 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xe4808eef sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xe483e08b crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xe4c523cc inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xe4c80097 cacheid +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eb891d __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52b6904 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xe52e2d0a dss_mgr_set_lcd_config +EXPORT_SYMBOL vmlinux 0xe5426515 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xe54bc57e xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xe552441b input_unregister_device +EXPORT_SYMBOL vmlinux 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL vmlinux 0xe5738f9c register_sound_special +EXPORT_SYMBOL vmlinux 0xe5768e8d __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe58b144d __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xe59e40ef udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xe5a4031b of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5fcee72 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xe60308c6 ptp_clock_index +EXPORT_SYMBOL vmlinux 0xe60677ae vfs_create +EXPORT_SYMBOL vmlinux 0xe613337f freezing_slow_path +EXPORT_SYMBOL vmlinux 0xe635a934 vga_client_register +EXPORT_SYMBOL vmlinux 0xe64c40e9 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xe64de4d3 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe66be096 get_tz_trend +EXPORT_SYMBOL vmlinux 0xe66cdb5f ps2_drain +EXPORT_SYMBOL vmlinux 0xe678a2ac blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xe67bae39 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xe6809b0d mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69d5b85 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe6ab3043 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xe6c50bbb dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xe6cb5729 shdma_chan_remove +EXPORT_SYMBOL vmlinux 0xe6e419f5 phy_resume +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f40234 snd_mixer_oss_notify_callback +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7075b97 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xe707d823 __aeabi_uidiv +EXPORT_SYMBOL vmlinux 0xe70a18ca dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xe70c56c2 kern_path_create +EXPORT_SYMBOL vmlinux 0xe72692e0 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xe745f038 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xe760f919 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xe76880b5 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xe77f57c0 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xe78233bd bio_split +EXPORT_SYMBOL vmlinux 0xe78c8b22 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xe790afc3 omap_get_dma_dst_pos +EXPORT_SYMBOL vmlinux 0xe79a0c96 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0xe79d4365 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xe7a559d4 dquot_disable +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7b8292a mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xe7d0b39d truncate_pagecache +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e15910 dispc_clear_irqstatus +EXPORT_SYMBOL vmlinux 0xe7f14e6e snd_jack_add_new_kctl +EXPORT_SYMBOL vmlinux 0xe8089dcb twl6040_power +EXPORT_SYMBOL vmlinux 0xe80e1c8b abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xe8187d54 generic_removexattr +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe826e0a4 netdev_state_change +EXPORT_SYMBOL vmlinux 0xe8504c39 km_report +EXPORT_SYMBOL vmlinux 0xe852cfa2 dev_addr_init +EXPORT_SYMBOL vmlinux 0xe857d495 scsi_add_device +EXPORT_SYMBOL vmlinux 0xe85f575b follow_down +EXPORT_SYMBOL vmlinux 0xe86f1a6a skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe8994faf dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xe8a0a52c mmc_can_discard +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8ae43a6 blk_put_queue +EXPORT_SYMBOL vmlinux 0xe8b7a0cf softnet_data +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8df68ae blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xe912da6b unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91d38da dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xe92a105c d_set_fallthru +EXPORT_SYMBOL vmlinux 0xe930c886 inet_sk_rx_dst_set +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 0xe95e01b3 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xe96e5c43 inet_offloads +EXPORT_SYMBOL vmlinux 0xe97bc9d7 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xe9be808d lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xe9c1e1a4 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xe9cee248 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xe9d3b5a5 bdgrab +EXPORT_SYMBOL vmlinux 0xe9dc5b3c tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xe9e1e84c udp_ioctl +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9ffb303 arp_tbl +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea06f3a2 omapdss_unregister_output +EXPORT_SYMBOL vmlinux 0xea1f5b88 samsung_rev +EXPORT_SYMBOL vmlinux 0xea3c5299 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xea4218a4 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xea4b3d74 __kernel_write +EXPORT_SYMBOL vmlinux 0xea6d3853 of_phy_connect +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea9ed537 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xeabae032 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xead81be4 locks_free_lock +EXPORT_SYMBOL vmlinux 0xeada792e sk_capable +EXPORT_SYMBOL vmlinux 0xeadbcc81 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xeb00a1de jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xeb03b389 __raw_readsl +EXPORT_SYMBOL vmlinux 0xeb0926b0 install_exec_creds +EXPORT_SYMBOL vmlinux 0xeb0aa929 register_qdisc +EXPORT_SYMBOL vmlinux 0xeb1b120e omap_set_dma_write_mode +EXPORT_SYMBOL vmlinux 0xeb22676b tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xeb270de2 clk_add_alias +EXPORT_SYMBOL vmlinux 0xeb36289c sock_wake_async +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3f2cce iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xeb44d1f3 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xeb489cd6 phy_print_status +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb6c2aed __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xeb7f30b0 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xebaebf86 register_netdev +EXPORT_SYMBOL vmlinux 0xebc7a319 address_space_init_once +EXPORT_SYMBOL vmlinux 0xebd1fb7a xfrm_state_add +EXPORT_SYMBOL vmlinux 0xebd23feb tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xebd76425 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xebd79f45 omap_dss_put_device +EXPORT_SYMBOL vmlinux 0xebfac378 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xebfdcbdf system_serial_high +EXPORT_SYMBOL vmlinux 0xec0fae11 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec274ac1 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xec38edf2 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec59005f file_ns_capable +EXPORT_SYMBOL vmlinux 0xec68f27d led_set_brightness +EXPORT_SYMBOL vmlinux 0xec7506b1 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xeca50c1c devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecc278d1 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xeccc583f of_iomap +EXPORT_SYMBOL vmlinux 0xecd2d98a iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0xece0e8dc locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecee81ec jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xecf6cd03 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xecf8a3b4 __raw_writesl +EXPORT_SYMBOL vmlinux 0xecfcad08 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xed05718d inet_frag_kill +EXPORT_SYMBOL vmlinux 0xed0c3eaf scsi_remove_device +EXPORT_SYMBOL vmlinux 0xed1d9034 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xed37e839 clkdev_add +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed742011 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xed765142 napi_complete_done +EXPORT_SYMBOL vmlinux 0xed8fec74 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xed923d25 set_groups +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed95da2e security_file_permission +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +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 0xede0e863 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf50e94 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xedf5d30f snd_pcm_open_substream +EXPORT_SYMBOL vmlinux 0xedf66175 pci_save_state +EXPORT_SYMBOL vmlinux 0xee0f9f33 serio_rescan +EXPORT_SYMBOL vmlinux 0xee2bc2d0 omapdss_is_initialized +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee58d8bc napi_gro_frags +EXPORT_SYMBOL vmlinux 0xee5b2163 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xee64b6f7 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xee715ef8 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9c3647 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeed3635b proc_dostring +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeefd7559 ether_setup +EXPORT_SYMBOL vmlinux 0xef0729a2 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xef0f3eb3 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0xef2fdc4f __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xef80528a block_write_begin +EXPORT_SYMBOL vmlinux 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL vmlinux 0xef886e4a vfs_readf +EXPORT_SYMBOL vmlinux 0xefa2e778 phy_connect +EXPORT_SYMBOL vmlinux 0xefaf3690 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xefcd003a inet6_bind +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 0xefec312f omap_get_dma_active_status +EXPORT_SYMBOL vmlinux 0xefff124c vm_map_ram +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf03c3982 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xf03c6000 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf06c303c omap_video_timings_to_videomode +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0c4f8e6 icmpv6_send +EXPORT_SYMBOL vmlinux 0xf0c85872 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xf0ecb500 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xf0ed2ef4 __raw_writesb +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f11ad0 pps_unregister_source +EXPORT_SYMBOL vmlinux 0xf1043472 get_disk +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf180ba88 dev_mc_init +EXPORT_SYMBOL vmlinux 0xf181a93d fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1971680 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0xf19d7455 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf1a9596a __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xf1d5e0c4 dma_find_channel +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 0xf1f6217e __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xf1f96d83 dcb_setapp +EXPORT_SYMBOL vmlinux 0xf1fb98cc pci_dev_driver +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf219d828 fb_set_var +EXPORT_SYMBOL vmlinux 0xf222465d sock_no_listen +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24b6db4 generic_show_options +EXPORT_SYMBOL vmlinux 0xf24d7be7 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xf2600db8 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2c1ccc7 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c8134d mmc_register_driver +EXPORT_SYMBOL vmlinux 0xf2d2db97 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xf2dde69f snd_card_file_remove +EXPORT_SYMBOL vmlinux 0xf2f04912 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xf2f8294c xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xf2f90632 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xf312c4fd request_key +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31ba51d qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xf34171f1 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf3561770 proc_create_data +EXPORT_SYMBOL vmlinux 0xf36c3d2c shdma_cleanup +EXPORT_SYMBOL vmlinux 0xf37f8148 tty_port_tty_set +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 0xf3a8b8fa of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0xf3d509a2 snd_ctl_add +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3f668ca genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xf4047c50 km_is_alive +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf41584b7 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xf43f7202 __netif_schedule +EXPORT_SYMBOL vmlinux 0xf4459b95 vfs_fsync +EXPORT_SYMBOL vmlinux 0xf461b5fd block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xf4688925 nand_scan +EXPORT_SYMBOL vmlinux 0xf46f5628 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xf473ffaf down +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf488d005 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xf4a3217f get_thermal_instance +EXPORT_SYMBOL vmlinux 0xf4a7fc6d omapdss_compat_init +EXPORT_SYMBOL vmlinux 0xf4b6e8d8 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xf4b8a1db __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4db56d8 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f96e63 module_layout +EXPORT_SYMBOL vmlinux 0xf5048d67 param_set_ullong +EXPORT_SYMBOL vmlinux 0xf505c8f9 snd_info_create_card_entry +EXPORT_SYMBOL vmlinux 0xf5060198 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xf50aedb1 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5514ce0 ioremap_page +EXPORT_SYMBOL vmlinux 0xf55714a2 simple_dname +EXPORT_SYMBOL vmlinux 0xf564412a __aeabi_ulcmp +EXPORT_SYMBOL vmlinux 0xf56b1e1a d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xf5765779 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xf58ff604 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xf59428a8 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL vmlinux 0xf59b7b69 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xf5a01a13 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a81e47 tty_name +EXPORT_SYMBOL vmlinux 0xf5ac02a1 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xf5b19084 misc_deregister +EXPORT_SYMBOL vmlinux 0xf5be3eac input_allocate_device +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c305fe call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xf5d2a409 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xf5daeefa bio_endio +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5fcdd0c xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xf603dc2a sock_wmalloc +EXPORT_SYMBOL vmlinux 0xf6084eb9 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xf610bd33 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xf623d8c8 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf669fe2f __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf678ff4c unregister_shrinker +EXPORT_SYMBOL vmlinux 0xf679d3bb invalidate_inode_buffers +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 0xf68a98f1 security_inode_permission +EXPORT_SYMBOL vmlinux 0xf6a26e3a genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xf6ab9aac netdev_info +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6cb3027 dquot_drop +EXPORT_SYMBOL vmlinux 0xf6d5348e vga_put +EXPORT_SYMBOL vmlinux 0xf6db948c d_add_ci +EXPORT_SYMBOL vmlinux 0xf6dce804 serio_reconnect +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f17c2a dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7056e6f tcp_filter +EXPORT_SYMBOL vmlinux 0xf70dcc88 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xf7163ec9 __raw_readsb +EXPORT_SYMBOL vmlinux 0xf723782f pci_set_mwi +EXPORT_SYMBOL vmlinux 0xf7480852 register_mtd_chip_driver +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf766aedb of_node_put +EXPORT_SYMBOL vmlinux 0xf76e1750 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xf7802486 __aeabi_uidivmod +EXPORT_SYMBOL vmlinux 0xf797ba9d dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xf79989ef search_binary_handler +EXPORT_SYMBOL vmlinux 0xf79af678 path_noexec +EXPORT_SYMBOL vmlinux 0xf7a4950d set_wb_congested +EXPORT_SYMBOL vmlinux 0xf7aaeddc ida_init +EXPORT_SYMBOL vmlinux 0xf7b1f982 omapdss_find_mgr_from_display +EXPORT_SYMBOL vmlinux 0xf7b643cb dquot_transfer +EXPORT_SYMBOL vmlinux 0xf7da5b44 shdma_chan_probe +EXPORT_SYMBOL vmlinux 0xf7dc505f snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL vmlinux 0xf8016914 csum_and_copy_to_iter +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 0xf86ab795 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xf871b43e blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xf8796ea9 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xf87e7aad lro_receive_skb +EXPORT_SYMBOL vmlinux 0xf89c4fd1 arp_xmit +EXPORT_SYMBOL vmlinux 0xf8b84317 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xf8ca198f skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xf8e58a42 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xf8e953d6 pci_bus_put +EXPORT_SYMBOL vmlinux 0xf8ed5ad5 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf91768d2 snd_pcm_hw_param_last +EXPORT_SYMBOL vmlinux 0xf91d5f81 _dev_info +EXPORT_SYMBOL vmlinux 0xf91deeeb simple_transaction_set +EXPORT_SYMBOL vmlinux 0xf928de66 snd_card_disconnect +EXPORT_SYMBOL vmlinux 0xf9319a59 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf9427374 dispc_request_irq +EXPORT_SYMBOL vmlinux 0xf94f0fa9 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf959ff35 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xf9769572 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xf98662a4 snd_info_register +EXPORT_SYMBOL vmlinux 0xf9954c17 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a5ae17 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xf9a6fdbb bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9fc90f3 dss_mgr_register_framedone_handler +EXPORT_SYMBOL vmlinux 0xf9fffed2 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xfa1520c6 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xfa3871e1 bdput +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa5222d6 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xfa527ccd read_code +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa7547fa dev_mc_sync +EXPORT_SYMBOL vmlinux 0xfa767be2 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL vmlinux 0xfa97c8a4 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xfaa34f55 snd_ctl_make_virtual_master +EXPORT_SYMBOL vmlinux 0xfaab1320 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xfac3a1a3 blk_mq_add_to_requeue_list +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 0xfada95f0 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xfae18452 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaf1c176 scmd_printk +EXPORT_SYMBOL vmlinux 0xfb1c782e from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xfb2706e5 __vfs_read +EXPORT_SYMBOL vmlinux 0xfb2a7045 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xfb2ecbc5 ps2_end_command +EXPORT_SYMBOL vmlinux 0xfb497990 nf_log_unset +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7d9c45 __udivsi3 +EXPORT_SYMBOL vmlinux 0xfb8509b1 snd_ctl_find_numid +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb99f8ed xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xfb9bcfc6 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbbb96a9 make_kuid +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd2ed35 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xfbe4cb22 pci_bus_get +EXPORT_SYMBOL vmlinux 0xfbe8074d shdma_request_irq +EXPORT_SYMBOL vmlinux 0xfbeb5386 init_net +EXPORT_SYMBOL vmlinux 0xfbfb46d7 dquot_initialize +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc05a47a mem_map +EXPORT_SYMBOL vmlinux 0xfc3163c9 inc_nlink +EXPORT_SYMBOL vmlinux 0xfc3646c8 __page_symlink +EXPORT_SYMBOL vmlinux 0xfc3908f5 fence_default_wait +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3d1d73 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xfc3f7f54 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xfc451320 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xfc5c7582 override_creds +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc974031 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xfc9adb22 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xfc9bef8d xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0xfca314c2 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xfcad7426 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfce0857c request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xfceabe0b dm_register_target +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd305341 walk_stackframe +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd5683b9 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0xfd774fc8 snd_pcm_new +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 0xfdb3db21 poll_initwait +EXPORT_SYMBOL vmlinux 0xfdb4663a neigh_seq_start +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdc4a277 inode_get_bytes +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe05e77a pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xfe0bd7fb ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xfe394680 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xfe40bf95 dss_feat_get_num_ovls +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe736e62 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xfe73b1f7 generic_permission +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe800ddd phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xfe83e45a from_kprojid +EXPORT_SYMBOL vmlinux 0xfe9d5626 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xfeb06313 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xfeb36baa blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xfec01731 lock_sock_nested +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfecf6a2b phy_device_create +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeecd9e5 htc_egpio_get_wakeup_irq +EXPORT_SYMBOL vmlinux 0xfef3afe2 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xff0b2b94 tcp_child_process +EXPORT_SYMBOL vmlinux 0xff0f22ce block_write_full_page +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff3a5291 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xff3c196b pwmss_submodule_state_change +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 0xff8cbb1f idr_destroy +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9c639c netlink_unicast +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffb740aa tty_vhangup +EXPORT_SYMBOL vmlinux 0xffb8f327 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xffb94ef0 _test_and_change_bit +EXPORT_SYMBOL vmlinux 0xffbf0dce blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xffbfbb5d omap_dss_get_next_device +EXPORT_SYMBOL vmlinux 0xffc77c88 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL vmlinux 0xffd2cf99 omap_dss_get_num_overlay_managers +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffe0ca48 i2c_transfer +EXPORT_SYMBOL vmlinux 0xffe9e5c8 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xfffb7919 mount_bdev +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x24916fba sha1_finup_arm +EXPORT_SYMBOL_GPL arch/arm/crypto/sha1-arm 0x849a5581 sha1_update_arm +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x4f708b46 ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x87671c20 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x8db64c8d ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9acf0ffc ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9cd60947 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9ffeb5b1 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xfee1cb03 ablk_init_common +EXPORT_SYMBOL_GPL crypto/af_alg 0x016a63ec af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x1b4c9881 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x316bb3fd af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x4c6e757e af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x752aead4 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x7feb180a af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x823246ed af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd954ef95 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xf1932df8 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xf33207df af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xfdd0e043 af_alg_release +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x1acaca59 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x7c9e24cd async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xd5df6850 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x2c54932b async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x4437a994 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x28d4a2ba async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa1d7acc3 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd409990c __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe147af72 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x90959f9a async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xcd6d773a 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 0x2f5f81c1 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xdac069d5 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x06d5b82a cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x0cb40cdb cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x293dcea1 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x5fa74db5 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x5fee019c cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x81db4e16 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x993558e4 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa72627d2 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xb58f32da cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xf456eed9 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 0xf6c09c23 lrw_crypt +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1c541f65 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x2fdf5fa5 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x38c50597 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5a50ef61 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x77bebb55 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x9f70d9f9 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc82d504b mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd3650ec9 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x78eef363 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x8c373f27 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xb6ea138a crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xbadf08ee 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 0xff562bfe xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x31f8bb9d __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xbc02e127 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 0x20e1a0c4 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe079dc02 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe46558eb __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf933e69c __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x02abd9bc bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x07ceea1a bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0943026f bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0cdd39ab bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12aebb18 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x17f56c91 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x208c1b95 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2aae4d79 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c7bdb09 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2e1a7704 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3253104c bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3996e8a3 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x524873b1 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x55ae7563 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5c3455ff bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8cadc834 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x97e630c2 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa3d134a7 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xabe99b0d bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb467bd47 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb9a09323 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe8e07f71 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf84a9306 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfd9fd1d3 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x06357425 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x29489f33 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x84b5df00 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x851ab8e7 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xa0dbfb87 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbf78a37f btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1a54cc5f btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e0ca06d btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e29a99f btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x35ac96e6 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x37882df1 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x69a56393 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7845b8e4 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x849fd501 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xecfa7370 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf10f341a btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfc82ae93 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfec57196 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x18a54036 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x21ace7e6 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2a3fd058 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x30610fb6 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x47e275be btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8a3a9bf4 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9be39171 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9eacc3b3 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa17dccd4 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xaa6c8671 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xad9775ef btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x7cc88d26 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xad40da45 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6deabbf3 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xbdcd233a h4_recv_buf +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0x190f4b60 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 0x41ba1d0d qcom_cc_really_probe +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 0x6938747e qcom_find_src_index +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 0x8795c92b qcom_cc_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 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 0xa27725d3 clk_enable_regmap +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xa7a7c953 qcom_cc_map +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xaace56b1 clk_rcg_esc_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xae1423cf devm_clk_register_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 0xe703bcad clk_pll_vote_ops +EXPORT_SYMBOL_GPL drivers/clk/qcom/clk-qcom 0xec48874d clk_disable_regmap +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 0x7d70f8dd bL_cpufreq_register +EXPORT_SYMBOL_GPL drivers/cpufreq/arm_big_little 0xf344f3bd bL_cpufreq_unregister +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5062a4fb dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x6526a590 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc8cbe02c dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd0d61a9c dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xe4fd4cbc dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x3333eab9 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x761885e7 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xdbcfb15c hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0a3a4a3f edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1b710487 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x27596eb7 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2988e4ea edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2bb437f1 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4640c4e4 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x50403a7e edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x51e5886c edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7e59c52b edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8a912e70 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9829b553 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9cd26b09 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xab2cb5f6 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xad63a0a1 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb6f7e2a9 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc6b98099 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc961848f find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc96bb79e edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xca4c2e9c edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcc510d88 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xceb859b4 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd8ddd5f0 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdaa8ee1e 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 0x162697ce of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2752b357 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x5a82e838 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x63dd3c01 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x8ba44fa3 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb449b138 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x278aea10 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xe13cafa9 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x1871bb3d dw_hdmi_bind +EXPORT_SYMBOL_GPL drivers/gpu/drm/bridge/dw_hdmi 0x512b83a9 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/drm 0x08455449 drm_gem_cma_dumb_create_internal +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x220a78c9 drm_gem_cma_prime_vunmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x2b4e0663 drm_gem_cma_prime_vmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3325aa6f drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x409fd0d1 drm_gem_cma_prime_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x62808dd8 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6e181280 drm_gem_cma_dumb_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6e43cf63 drm_gem_cma_free_object +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x70cd7cae drm_gem_cma_dumb_map_offset +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x7d1b7d95 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x8921cdc5 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x9fd50154 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbca20246 drm_gem_cma_vm_ops +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xcf880dd5 drm_gem_cma_prime_get_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd1fa3d53 drm_gem_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe4a1310a drm_gem_cma_describe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe5a87e38 drm_gem_cma_mmap +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xe9324ef1 drm_gem_cma_prime_import_sg_table +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfd1f16d5 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x0c665f18 drm_fb_cma_create +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x1148b623 drm_fbdev_cma_fini +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x3de370dc drm_fbdev_cma_init +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0x91c95159 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 0xb5cd136d drm_fb_cma_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm_kms_helper 0xcc337fd5 drm_fbdev_cma_restore_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x03134e6f 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 0x325ca7bc imx_drm_connector_destroy +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x37707c0a imx_drm_crtc_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x39357e13 imx_drm_encoder_get_mux_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 0x6d8fa1bc imx_drm_encoder_parse_of +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x80081455 imx_drm_add_crtc +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0x8772f5e9 imx_drm_set_bus_format +EXPORT_SYMBOL_GPL drivers/gpu/drm/imx/imxdrm 0xbb7721d0 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/rockchip/rockchip_drm_vop 0x58d1499e rockchip_drm_crtc_mode_config +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x2f3ace2c rockchip_fb_get_gem_obj +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0x755cbead rockchip_register_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xddd82872 rockchip_drm_dma_detach_device +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xde907608 rockchip_unregister_crtc_funcs +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xe6b0f980 rockchip_drm_encoder_get_mux_id +EXPORT_SYMBOL_GPL drivers/gpu/drm/rockchip/rockchipdrm 0xef915a14 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 0x8936711e 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 0xd5f4a39d ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xdd9bef6a 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 0x0e0d8bc1 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 0x0e54993f ipu_dc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x104e4a24 ipu_cpmem_set_resolution +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 0x11dae7a1 ipu_cpmem_set_yuv_interleaved +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x11fbf6c7 ipu_idmac_buffer_is_ready +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1336da8d ipu_wait_interrupt +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 0x19f684d9 ipu_dp_get +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 0x1d8e4e1c ipu_srm_dp_sync_update +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x1df70583 ipu_idmac_get +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 0x22aa14db ipu_idmac_disable_channel +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 0x2f5d91b4 ipu_dc_enable +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 0x3afbb44e ipu_smfc_set_watermark +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x3b183688 ipu_idmac_enable_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 0x3f8ab3cf 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 0x4c179b49 ipu_dp_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x50b3ce4b ipu_dc_disable +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 0x5355ce31 ipu_cpmem_interlaced_scan +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x53d62aa6 ipu_dp_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 0x55f8af1d ipu_set_csi_src_mux +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x5fc8e98c ipu_cpmem_set_rotation +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 0x6268e737 ipu_cpmem_set_block_mode +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6417322f ipu_idmac_channel_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6422a146 ipu_idmac_wait_busy +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x661ad0d6 ipu_cpmem_set_burstsize +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6b251a98 ipu_idmac_channel_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x6cc3dccf ipu_idmac_clear_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 0x7878f3a5 ipu_csi_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7a84ee49 ipu_cpmem_set_fmt +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x7aedc6d1 ipu_dp_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x8492867d ipu_idmac_get_current_buffer +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 0x8a6fa573 ipu_cpmem_set_yuv_planar_full +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x9058e289 ipu_smfc_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0x90ade30e ipu_cpmem_set_high_priority +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 0x99a91e0e ipu_cpmem_set_image +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 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 0xa684fad9 ipu_map_irq +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xa96882d8 ipu_ic_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xaaf90354 ipu_cpmem_set_buffer +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xacef39b9 ipu_ic_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xaf2593fb ipu_di_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xafc27522 ipu_cpmem_set_format_rgb +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 0xb4194756 ipu_cpmem_set_axi_id +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb68b7983 ipu_dump +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xb927f24d ipu_idmac_put +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 0xc3c2cdb0 ipu_smfc_disable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc57401d6 ipu_cpmem_zero +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xc5f4f62b ipu_module_enable +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 0xc8aed7e4 ipu_cpmem_set_format_passthrough +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 0xce926bba ipu_idmac_enable_channel +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 0xd0f588db ipu_cpmem_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 0xd724ef00 ipu_cpmem_set_yuv_planar +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 0xe9851234 ipu_smfc_get +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xeae9ab34 ipu_cpmem_set_stride +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf1440dc1 ipu_ic_put +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf2d129f5 ipu_dmfc_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 0xf795a51d ipu_ic_task_idma_init +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 0xf7eedcb9 ipu_idmac_lock_enable +EXPORT_SYMBOL_GPL drivers/gpu/ipu-v3/imx-ipu-v3 0xf8a97fe5 ipu_module_disable +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 0xfb33995a ipu_idmac_set_double_buffer +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x098ceab6 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0de84401 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1fb155ba hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x204bcb81 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3526622c hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3888c576 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x475a2f8c hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x48aeb097 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5871945a hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5bd8773d hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5cb78e25 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x681910ac hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c1c8083 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x76364fcb hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x776433d0 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x86c413ff hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f3f6623 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x926c73c1 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x94c02415 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9680da66 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9ae09f10 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9c720eef hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2f7a885 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa685b798 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xabb9f128 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcffdce09 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd4e3ee95 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd827909a hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xdd298611 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3d4ef4d hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5da5e07 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec4c5ef1 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf2c2c2b0 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf4b1db4e hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfbb85fe4 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xffb92462 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x88c93630 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x30e5c77d roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x62d430ea roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x72d8715b roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xaf8c1f6f roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbffd9871 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xcc8c7efd roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x41ff56f3 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x474901be sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb1f50b03 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xbb26e5c5 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcb9b9a9a sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcbb5155d hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd09753c9 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdcdcf8a7 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf93ad444 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xa431a1b8 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x21caf576 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x26a7bc3d hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x38b45eaf hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5c50e0f1 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6d4b4886 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x79d330eb hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x86b14eb1 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa232046f hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa8f4af2a hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xac80e305 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb08dfcb4 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc8eaba5c hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd66b4c9b hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdad55c6e hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe232f0f4 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xebd5d385 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf894e588 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfdecb47f hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x23d1638c adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3bf08436 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb3c5b9a4 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0ba3d5c5 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1fe40c18 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4205f2a1 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x68de8886 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6a7b4fdc pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x763e6cc5 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7a01ad5e pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x883fd023 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa3369151 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc372f720 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc577e27a pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd2ccae98 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd694584d pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xef0bac75 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf20f6e56 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x205d1f64 of_hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x3ea91a51 __hwspin_lock_timeout +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x9a3efd99 hwspin_lock_free +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0x9ac2d800 hwspin_lock_request +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xa969340b hwspin_lock_register +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xc7f38f67 __hwspin_unlock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xd06a5eb1 __hwspin_trylock +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xecb4a758 hwspin_lock_get_id +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xfb66c130 hwspin_lock_unregister +EXPORT_SYMBOL_GPL drivers/hwspinlock/hwspinlock_core 0xffc03291 hwspin_lock_request_specific +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0278add2 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3b543fb3 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6840f53d intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x99fec9c5 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9dd67d2b intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xbbcd7966 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xde2b97e4 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x063373d7 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3267618a stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6f20c7ca stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8ee07859 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd98cc28e stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x02ac597a i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x32110d05 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4f76cc75 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x61fee360 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xeb084279 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x98bebaa8 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xf0bf1faa i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x590be459 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x6400af3b i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xd9c3bd3d bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xda7242a6 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf0abcbee bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1ef587da ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x326d3c81 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x5badd3b7 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6e1ab49b ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x80cca490 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x9ca652e9 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd0058d30 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe8845cac ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xefc7d365 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 0x06e9a238 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 0x750d7c7b 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 0x3df94c3c ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x7142541c ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x101c098d bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdb58ff73 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xe4aa60de bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x002301d7 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0be254a4 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x19d23765 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2788bae8 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x368d7c50 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4491ace5 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x50dd1768 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7a79177d adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7af8da01 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xacf2ef8b adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc4251b4e adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc8741e74 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0033fcc3 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07e2cd42 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c6ed357 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x154c8a35 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2177b1fd iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x231ce6a9 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x387f81e8 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3ad141cd iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3bdae7e3 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x49a382bf iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ca8bdb0 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x6557d98c iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x72474e90 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7971e1c8 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8808c93f iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f305d6e devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x927bd34d devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9bcc6261 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa499565b iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6b94371 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa8951ce5 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xacd7fc26 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb1495c08 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbbc4ed15 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbea25c31 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc6a7ee2f iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcca4700e iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd8b79807 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xdea0badc devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9064fee iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf60e917c iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xc0e30682 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xa3870a53 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 0xfa069e2f adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x53c15410 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9fb14571 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe6b29fe0 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x77e9359d cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x8ef9fca5 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa564c883 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x97de23f0 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa0b086c6 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x4d17a586 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x501e21ca tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xcb232eb2 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xf5900342 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0ee7fb99 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x165ed1c9 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x25bacb38 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3301ff91 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x42a2c8cf wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4701ef57 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7c4ff8ab wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8ec8b858 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x99250b1f wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbecf253e wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe215e255 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xffabff0f wm9712_codec +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0b3e62bd ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x21b0dfac ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x34b487b1 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6302c2a2 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x8bf53a48 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9026b548 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa8163e6a ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcccde8d4 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdd4fc3a8 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 0x17d11c65 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x20d342a1 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3319ffc6 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3bd1d5f0 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x5efbf195 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6533fb48 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6984205e gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x704185b1 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7f87f5a0 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa42e2c93 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbb2d34b0 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc2a75271 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc772e16a gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcd983a7d gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd806ce7c gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf2d9f0a9 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf8857337 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x22bc6e23 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7de875cb led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xce4fb862 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xdea02303 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe80338b3 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xfbcbfe35 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x27299633 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4f34d4bd lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x574856ac lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6c457ab3 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6f264ef1 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x96274b02 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x97b51032 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa51710bb lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb3203505 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcaea4d87 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd5b489e7 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/mcb/mcb 0x00c74fc0 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x276a5cb0 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2c7b4410 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3f3439c2 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4a2701e0 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7cde03a2 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf26cdb chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa8086ba9 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcde6e89f mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd1dfb9a6 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe3d39565 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xeacd0c57 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfcb0ea87 mcb_bus_put +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 0x14edc9a5 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 0x2966da5d 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 0x30777e1c dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3f34245d dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x5f5d2c58 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 0x81c409e0 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9028c898 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 0xb92bf344 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf6ab03f3 dm_bio_prison_free_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 0xc8dc328c 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 0x090de2d6 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x14f6d41d dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x27537498 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x55a04a6f dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b1e68fa dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x80d7be78 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa791c78a dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc20d32bb dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xdd22cd8f 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 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 0x8e88f1cf dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x95e84078 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xa274361d 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 0xbda82c71 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 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 0xd9a8d72d dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe0f1b5c4 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 0x2b8d4b3b 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/saa7146/saa7146 0x24affac4 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x51a8d631 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5910173f saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5d31d8c1 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6460d3dc saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7a979450 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9c397d6e saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc62a953d saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe4ed09bc saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf4ac57ef saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3f3185b4 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x87890a6d saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb793bc88 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcbb89330 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xcc7a6fdc saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe6eafe27 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xfd9bfdd0 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x15701a5d smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1f91a60a smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2caece9b smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x309a12a3 sms_board_event +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 0x48dcce49 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x582cc7ea smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6300ceaf smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6adccc47 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6ffb0096 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 0x7b51abf3 smscore_unregister_device +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 0x8a0578cf smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa3214040 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb0ef4cfb sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc061d98d smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc93a847f sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdbc9f780 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe220d722 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa6bcc8ea as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xd31d8ce1 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xc3a10c45 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x15df999f media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x18317769 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x23fd8323 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x2b213b49 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x31693cf0 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x3cc928a6 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x425de0c4 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x531eaf84 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x674da4ec media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x6971b1a5 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x9cc12e42 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0xa0965bf8 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xab2a14f4 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xba0203a0 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc195fa25 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xcf6a0b7d media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xd62d271f media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xf6b4bcb5 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x405e156f cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0ccbcb05 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x0e4f8a61 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15004349 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1d40abbd mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5fc408a4 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ff5ce66 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x693f95ed mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x708a2e1e mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x78e29650 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7a66d734 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x918f4798 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad7d0ed6 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcb445eab mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcf646b96 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcfac6ddd mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd3538dd0 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf05a669f mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf48047ac mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf60406c8 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x04aa65c8 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x119d3f92 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1b48e5c3 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1f8753d1 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3bc08b6f saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x45a0f660 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4f4ed822 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6ce6486a saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x829c5870 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x88938a92 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x982bfee7 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9cc39360 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9fd374c7 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa32b2229 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb7d3e863 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb97f40a1 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xbf9cd8bd saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe47c41b9 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf803dafa saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x18da46ca ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2289f292 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x25df797e ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3a9ecd89 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x58b2d7c4 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 0xcd1a761d ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xee29cf1e ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1b397f88 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1c7c026b xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x1f179500 xvip_init_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 0x8d6c4b42 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x92155e2a xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xb77ff95b xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf0dd4847 xvip_of_get_format +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x276287f1 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 0x82a6dace radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe986dd73 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1d144e53 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x26505f53 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x39cd148e ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x516a88da rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x5b06b4fc rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8f7b236f rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x920fbfe6 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xac53f194 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xad553ea3 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbd4162ac rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc75f6d61 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xca9ea515 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd68dadb8 rc_keyup +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 0xe2e72750 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe5f12bee ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeac2a731 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xecda1a0b rc_open +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0xd2680c7b mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x645d9382 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x27d12acc mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x1823b71a r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x24e757ce tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x6b0a306e tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x127a1a62 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x1eb23b44 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xbb146ba9 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x77915f21 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xf08c4b58 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xb5cb38aa tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xf3ba13cc tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xb0000c95 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01aff7d5 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0d9dad0a cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x0f532cdf cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x47c51267 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x59d17914 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x81ee58f3 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8d3836ce cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa07eb849 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa156af73 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3af9936 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5a19062 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaf245882 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbf00a255 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc3d93154 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc7ac5a00 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc9a21efc cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcefe0251 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8ccb86f cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf72d9729 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfdfb28ed cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xeabfb095 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x8d4b61a7 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x15b44556 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x17e39e7e em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x18946177 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1f54b39f em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2f95ec58 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3d5d00bc em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3f8f8eec em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x40570240 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x44af4c70 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x458902c5 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4a8601c9 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x61e7cbe3 em28xx_gpio_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 0x83e120d2 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8ce88fed em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa1fcd20d em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbfeddb68 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd44cd961 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfa3758a0 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x84e57aa5 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x985c0b1e tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa66b019a tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf1245e1e 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 0x4ecf2145 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x77c2b3c0 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 0x99eb2c89 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa4b4faad v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe10f5b67 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf1c41342 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 0x3e83cf6d v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xac94fe36 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0303f285 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0bc4af2a v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0d125582 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 0x1896d694 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x26b68d61 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3465e5bb v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3534c79a v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x36037b6b v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3bb787d0 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3e7448ef v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4699f54d v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x55c166c0 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x59213a78 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5a1dcde1 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60325594 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ae1d964 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x741228b1 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x87378a1d v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x97d2928e v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa3677968 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa3e9508a v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa9a1ac5a v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaed61ce9 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb0afad8b v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb82e3e3f 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 0xd435f595 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdc68f430 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x06a5de7c videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x14cbdad4 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2a3a9ad1 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3a5bf322 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3d96bfb2 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x568fd0e6 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6dc7d3fc videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x72aeba32 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x72f242ee videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x744d994d videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7587a5b2 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x77b276ea __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7a15e42d videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7ab14922 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x85fcac49 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x97b32dc5 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa5dc7a3e videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xae18f017 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xae59cfec videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb1b6baf4 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbeb2f196 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd4ee3dc1 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd6d62092 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xffcfa178 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x406359ed videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x88fc89b5 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x8c7ed611 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x0d6cf943 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x395f784c videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6c2b1631 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x73a6c4f1 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 0x9ac4d385 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xd5ebb8f4 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xe9d8b4cd videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0b1c9eda vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1d849d2e vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2c00db3c vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x31a39bff vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x38c9b362 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3b2407c5 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3c3690f1 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3f99281b vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x40d01599 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5e522837 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7a1c3741 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x85f19bc9 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8c00d6a3 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb9d67b4c vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe28fda94 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xee5515d2 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf9921752 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xff8abf41 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x715c8ce2 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x80434c1b 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 0x490be6f4 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x9625d908 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 0xef2d8489 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0e9020ae vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0f495f5a vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x14f802d6 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x23f50f38 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2eb7ee34 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3295e5aa vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x357e1433 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x36b772ce _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4c632f8a vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5710f6c5 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5cf3de86 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6227ce72 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x654cc0af vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6b4e7762 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x702db866 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x73ae885c vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x82dac279 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8cf8462a vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9d11156f vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9d8045b8 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb2d8e772 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb43c2855 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb558ae10 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcbdac3cf vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd45f0c1d vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd8d5ca55 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xda7216ed vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe558fcf4 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe725285a vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xede1f195 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xff3510ea vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xffcfa8d7 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x7790d7d6 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x023992ae __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f1423d4 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x189a3a75 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d3f944f v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d9aa727 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2625b6a2 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2f828290 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3df78b69 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47c1260f __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x482041a3 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4f436948 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x505a07a0 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x515d2694 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6217c5d4 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x636e113f v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69c072f3 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7003b211 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78041f02 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x799337a1 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x83fe0e6b v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa38ac4ba v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa3bd56cd v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xab06e74e __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbb8f2cf6 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc181a3ae v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc45820c8 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5241ca8 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc63cce68 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd66ef3e7 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd9d69cce __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0ade3ad v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0e83c69 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe1e5bd55 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe53ae0aa __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe9a65e38 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf2294217 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1b0a14a8 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x56553519 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xa5a3296a pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x250f3190 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x33d86fc7 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3d8cc187 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x64311a97 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8b88c030 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xc89ec9fa da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xe19817bb da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x1f9d4943 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x30fccae4 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3fa25f17 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x49bcbe0d kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x59b8671b kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8a0531ea kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xb7a662b5 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe5d23a55 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x09ee3f40 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x110c5a53 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xce120bcb lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x01dc36ce lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x09e27490 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x4ee86a1a lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5c074ca6 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x8bc91441 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xea626c17 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf0d4c157 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x38dc7b47 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x97cce56f lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xacf99af0 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x10e28b26 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4257356e mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5058c006 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x783c5573 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb0dd1214 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc97f770e mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2083cab9 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x225d2de7 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x2818ddd1 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3b3c02f2 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x40e3e9d0 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x555f8ed9 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x78fd7e1e pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb7002be9 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcd831fba pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd8819fe7 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xeb064439 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x34c2335a pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x704c91ed pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2c23567e pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x7ee7b791 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb05506f3 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xda6a7158 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xe3eca8fa 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 0x02464ec1 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0f5b1a57 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1354c010 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1488598b rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3bfd1fd8 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3ea4daf4 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x40172565 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4b33e076 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x50ee22e1 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x67eb7e02 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7d852752 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x84ad2b36 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8a181141 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9a22f11e rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa401414f rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa7ddc78f rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb332eb46 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb6fbff69 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb76fd379 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbaa5f9a3 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc7071b26 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xeb097ec1 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf2adf4cb rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfddc4587 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x060da729 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1ebfda8f rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x204701a1 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3ddaabf3 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x902f5b36 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa59276c2 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa7685bd4 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc0877107 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xccd72f72 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd84440b0 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe7cafc7d rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xec65318f rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xeebb6cfe rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0c9736d1 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1108100f si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1d76cd3e si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27a29338 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c25ad8b si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2d59b58c si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x32fa89e6 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3f381b7d si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x42cbd786 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ffcd93e si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x50bbf7bd si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x527b2d24 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a117d62 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6301866e si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6cc6b8bf si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d717ccf si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7576efb0 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7816c50d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7acf014b si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e476be2 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7fe6e543 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x80f6dac9 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x963e6d6a si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa726bee0 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc079f000 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcae0279b si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdd23d6f3 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdf473f4d si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe06a9297 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe23d62fb si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed7c2a66 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf6c0c4e2 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf782ff90 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb56d183 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0x1e2c92db ssbi_write +EXPORT_SYMBOL_GPL drivers/mfd/ssbi 0xa3edd25c ssbi_read +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x01d9c88a am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x257f99ed am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x5e92e5c6 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe3163b09 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x26924ce1 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x6472d427 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7659eba2 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd4a5f2f9 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xeb686671 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xbc293b89 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xeca428f6 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xfd20d8f9 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xfe68f1f8 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x177076df cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x46ab0d2a cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x8d7494e5 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe0d0ff43 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 0x1bb9bc17 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3f2fbdc8 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7edd309e enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xaadf2d9e enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd5f3cf6c enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xe8f33871 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf6b29f21 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfcabf739 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x16ac0bd1 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4d22d5a8 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x59b2a21f lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x659b019a lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x84153f03 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd5f1834e lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xdded8c10 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfd345558 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 0x073d3f39 dw_mci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xcfc59c4b dw_mci_pltfm_remove +EXPORT_SYMBOL_GPL drivers/mmc/host/dw_mmc-pltfm 0xd0e710a6 dw_mci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x01583bb2 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc36f3bcc cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfc461e24 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0bc97cf7 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x759b3727 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf830b371 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x7215ea57 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1e9d5b64 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x55c62f7b cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xd684f332 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x5dfafd7a brcmnand_remove +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0x6f5a3c5c brcmnand_pm_ops +EXPORT_SYMBOL_GPL drivers/mtd/nand/brcmnand/brcmnand 0xe17b17fd brcmnand_probe +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x9dfa38e3 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x21df9df4 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x5f3f980a onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xdb16c133 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0860beb6 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d1c8fb6 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1cac0d87 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3186d454 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3968cb5c ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x49bfb08f ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x53971154 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x636914a7 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8818c299 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8cf7609f ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9c87dfd8 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xbfde4e7b ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd8308974 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdddf6a47 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5e18f3aa arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xca59c054 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x15b44b0d alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1f0600af c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4f850965 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xadcae75a register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc3431120 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd3cf7f08 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0236197e open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x42e40120 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4d57064d register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x581c02c1 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x59987017 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5bccadfc alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x72ebbf99 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x85c10330 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x903a32fd free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x98f70c32 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x99ab674b close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa6559e95 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc07333b7 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc4744e93 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd21b88ac alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xeca3b7e7 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfb835184 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfc3d5909 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x237d6cd0 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xb7d7a04b register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc384ef0e unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xc65da12f free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa44018d2 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb9bb647f unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xd2d6f76d register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf4323bdb alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x2cabbd5e arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x92a4e986 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x048b835d mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dbfae63 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13955e4b mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x188b092d mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a47a346 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b67b864 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b8b0514 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bfa8c44 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d792faf mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1eb5927f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21bef3f2 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x221c1b0c mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24f926f6 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25fef1e8 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2832d949 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29e81f8b mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b1b53cd mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c499312 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e12cedd mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e8b9b27 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x311fa3bf mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x335f9974 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33e26a0c __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x344c9018 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37cadc1f mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3993c11a mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cb0595e mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3cf5a5e0 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e555b0c mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4455bc41 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45d64765 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46a5690a mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4af3631d mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50bae17b mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53c6326a mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x557fe199 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5708e685 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x575e3a31 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a8a4376 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c9489f6 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f551dc6 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x602dfde6 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6332a1fe mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63657c45 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67443aee mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6770ba1c mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x697939a9 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c697154 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70a7d86a mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70d8a8d5 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x755fa208 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75606ad6 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77404aa1 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x782986c3 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78af5f79 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a4e8c43 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a948045 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b0803df mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ca7ffe9 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cc42ae7 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d406258 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x804a6fda mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80f31c9c mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8151855a mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81dc358f mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8336c489 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x846ad4d6 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x854b0023 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x861e6153 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x877e9a81 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ac449a0 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e332538 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f525985 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9036abed mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x907c65d3 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95cf4efb mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a419f0e mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9be64b33 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9daa68c6 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f4b531f mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa09a600e mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa373a5a5 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5bd49a5 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa70ac358 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa7c367ae mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa74136a mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaaf616af mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad81c52d mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb04d9753 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb11f524d mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb130b978 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2c05cbe mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4e807c0 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8abccf0 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb98e53ed mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9c00140 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcb8ef6f mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe5931b6 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc17d16ab mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3278953 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3d7b92d mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc52ffe9f mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc569b0e4 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5cb014f mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc750d3c7 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca826f7f mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb8ce81a mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1305ab1 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd51aa192 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9bbec23 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc8d0e16 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdebcb532 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1227998 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe27430ed mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe34bdf53 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe41930c4 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe423805e mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe63e76b0 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec427ff4 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed28c146 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf09dad42 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0f0b23a __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2f415ed mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff9d499b mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00f995aa mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x013286ad mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x047f1d19 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x07975642 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08df6498 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 0x0f3f6b3b mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12b88418 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x138faa07 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x15e7ba1a mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16a7ea8e mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20bde44f mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2f38fbfe mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x34d3f0e3 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x388d2f02 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a6b22f0 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x412477aa mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f114dd7 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58f5d864 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c3fb602 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61b5d974 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61d31787 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68df6233 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d9c7b12 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f5f63cc mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82f966f2 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8b2ff412 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8eb6a3bc mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99738611 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a5b4d79 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a716aa4 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1a1db6d mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb9e252be mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbe7eefe mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc03f5987 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc28eb853 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc601e99b mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc95cfee1 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9c3cfaa mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5efacee mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe45dcb3c mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec671dfd mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1202f8a mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1221834 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2077722 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfa1b85bb mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x403ba054 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 0x331208c3 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6727a2ab stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xd657c44d stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xfd4cd27a stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x2d8f727a stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5ea2d4d5 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x607d0622 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcf9b6e5a stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/geneve 0x2d32034c geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0x493c894b geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x320366ce macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x3db04778 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8acc81a8 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8b6f84b2 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x6fe48861 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0f28b9d4 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ebe36a0 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x402647c3 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x846d6073 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a38e472 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8aa84e53 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xc98e32d0 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xddb73774 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5a02c84 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xfea967a2 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x97856c5a mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3b1bc6b8 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x76fa8301 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x8eab8ed4 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xdd428cae usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x08b90459 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x55c28f14 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x58d8379c cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x719a6a9a cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x78c8a487 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x875c0ced cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa30075c1 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xa837e95f cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf806039e cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x1ee8f93c rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x258e91b5 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x96c59d3b generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa4acda6b rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc841e739 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xec535c5c rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10c9f6e1 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x16e5a253 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20a36b84 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2161ef1d usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x22b1c542 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x36d1081e usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3767640d usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a36f20c usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x54d2e670 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6196f76b usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x67a2a12a usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x69b79295 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6f9dd61a usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x77db21fc usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7d0f2cb7 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x802bad29 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89c92fab usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bd32948 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x98090864 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9b2c1656 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9d410acd usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa30f8bfe usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3fadb55 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa457950b usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc48cce5d usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd2faafab usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd5bf25f3 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xda5655a3 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc44564c usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdecb5737 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe207ae05 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe9767160 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa771ee30 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xe8e054a4 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x08cb84b4 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x126ddf63 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x349ce94b i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x406efef5 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5252d563 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5954b5a4 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x73fa238e i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7bbe5e3f i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x81625335 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x832c0ed9 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x84d8254f i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8aac2dcc i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa2ac47ec i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa3f3f041 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 0xbdebe746 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdc1fc28b i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x79a0e32c cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x89cfc35a cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa31b0b0c cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xe57bac0f cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x6db0d6a2 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1d950ba2 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6cace078 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xb79e2a51 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xdb4331aa il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xed55d534 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x16474139 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x18ae872e iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x194202ee iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x24f49c61 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x253dbb75 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x269667d3 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2cef43b5 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3114d061 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 0x37ba7fc1 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x40274c26 __iwl_info +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 0x52680471 iwl_opmode_register +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 0x60db975c iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7feea17b iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8691969a __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x86cf7220 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x893332ba iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8a7b1951 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 0xb0971a7a __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb0ea59aa iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb3915ca4 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb5c018f9 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd6ee5cb1 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd74cabc2 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd9a9d116 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xde89bae7 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfe34946f iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xff744b7d iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x19f6f069 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1ba10690 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x207e5dc5 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x23331949 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4117fb2d lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x66e3ca1a lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x67da18a1 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6b1a710e lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x75aae21b __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7e52733d lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8f91576f lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x95c5a398 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xaf3f99ad lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb103a096 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe18408bc lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfb86bcc4 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x07aa53b1 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2c6fad01 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x501aef54 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6ae14252 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x77751d6b lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8b02b6da 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 0xceaeb3d7 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xe0224b28 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x018c58ad mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0b86a055 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x22aaf10f mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x33e8b67c mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3aca1a6a mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3cfae10d mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4c7da090 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5ee13c48 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x68c39df4 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6a9eea64 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7fd97916 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8c1d1e4e _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9ee26bad mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbd5ddd72 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcebcac82 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd2ef11e3 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdd32fac7 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe72cb712 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe916c78d mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x1166277e p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2cddb582 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x436d0e26 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x59c5170e p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x69efa04c p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6a6ce213 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6b04e490 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6cca58b2 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xad88e4fe p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c203157 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa8231e1b dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbf154e63 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc18aee7e dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0b80633e rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0f00e10b rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x119cbc15 rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x176fd495 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2bcee399 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x38bc6c5a rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3e0ec7cb rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4158e8ad rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4187e3ab rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4b915d98 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x507d8b37 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5468c304 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5b8d16f0 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x60f91f21 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x69300b04 rtl8723_phy_init_bb_rf_reg_def +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 0x74084a7d rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7b73d74e rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8a1ea753 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x92dfeee6 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99cb28d8 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5efb9fa 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 0xb2b564e8 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd4f2aa7f rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xeee503cc rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf25c5f3b rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf894903d rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xff4f835b rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x002cc867 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06416c6b rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x06f45b1a rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c65e902 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1ee8e545 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2234d705 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 0x2c713ce1 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2cbdb7db rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d882d91 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x320ab2fe rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x356c3d2e rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3eb05998 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4201f910 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66e93866 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb73275c1 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc1df126 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc8f08149 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd692383 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xea318876 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedbc0078 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x23264148 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x320d7704 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5e73a707 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x6fc31b2e 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/rt2x00/rt2800lib 0x0217f1d5 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0630cfe8 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0c5f112a rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x11b06e48 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1707c16c rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2361189e rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2732f596 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3513a378 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x353ce1e6 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3c13e18f rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x41294a6c rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x412b0dfa rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x42939403 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x518045e2 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x563a8814 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x58743f36 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x61a810e0 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x64ab4082 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6eaa1390 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6f775c0e rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7612d71e rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x837e13bb rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x84f1ad06 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8cfba360 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8e00708b rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x97857bae rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa41530ca rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa4a29669 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb386b178 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb61da862 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb90efa65 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbd415488 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc69c3556 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xce21c03e rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdf6c4b9c rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe9f8d348 rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xedaefcfe rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xee2fcbe8 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x111607ce rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x138be6ab rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4ec68171 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7396065e rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x79e6d3c8 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7a752909 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9591d00f rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa93d35de rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb108acd0 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe23238fa rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe4683574 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe4e38b9d rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf821f21b rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0d690bf3 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0d7ae9ca rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0e707aff rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x158b1bf6 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x20160a03 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x21cf9422 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2289eaed rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x270e5a3e rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x294c44a7 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2997c692 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x312c6c32 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x384347cd rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f8e2305 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x44270ce4 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x47c59289 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c68ae9a rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x61acc3bc rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x664f6ac1 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x681bc7fe rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x72c91fbb rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7ececf15 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x80cbf81f rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x847a5318 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87205a2a rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x93fea1c2 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x97a1828e rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9c16e759 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9f344aa8 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xab299adb rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xada47d1a rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xae1981d6 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb51aa626 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb5c3cacd rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbaa25c55 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbadb30c3 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbc90e051 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc1576c54 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc9d0f9a0 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc537069 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcc99284c rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd14aaf5d rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xde94899a rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe34f3d46 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe7382267 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed2c8b79 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xff75a0d2 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4cdad23c rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xac06c87d rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xb98463ee rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc337111f rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xf5cb8994 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x44ace8af rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x74b2b65f rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x787b3c60 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xcbd5470e rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1d405656 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2505a155 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2659f867 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x28f9b5a7 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x376d2351 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3dd1a15c rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4ac30f8e rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x521a7345 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5d731479 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7f5eb232 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8eb3fb81 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9112bf16 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd67760d0 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd7cf70ae rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdedeb1e2 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfd81a0f3 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x70e63cb4 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x96229979 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xaae6191d wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0123650b wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b62f124 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x186d7706 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a876603 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e5e6c69 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x228c98ff wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2e4a8175 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x415df7ff wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x473a3956 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4849847e wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4902ccfd wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4a5af023 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b415a19 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 0x5a3408c5 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68b42db2 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7067c5f0 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x70bdd26f wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76818d1f 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 0x78c9a2cc wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79d8fd1b wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7b6c480c wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7d2eb685 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x820a8847 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x825791d1 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x851dcda9 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x891c7f05 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x90d0f7ec 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 0x92fc594a wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9329d66b wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x96bc82ab wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x979383e7 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9d273970 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9dd87748 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb27361be wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb6a438b7 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbad312e7 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7217163 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd5f29c77 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd7820c00 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe6f150ec wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xed462ed7 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf427e6ce wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfd7a386b wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe9b003a wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x034f4f46 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0b27b496 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x15084570 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x96a2fb4e nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x139fa1bf st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x195f1f0a st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x206c489c st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x32611a1e st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x568e4e64 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x83b0ba63 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa9da0296 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfe4a96ce 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 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 0x49b645a7 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x82e6c13d ntb_transport_qp_num +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x98a28a56 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 0xd69af6b3 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 0x12feaee8 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x1f3d9f7c nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x21f8f547 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x2f26f7ad 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 0x8349a895 nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x85540ebc nvmem_cell_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xbe2abdc7 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcd8c616e 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/nvmem/nvmem_core 0xeba505ca nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xf51c0b94 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x3a6b1e3d omap_control_usb_set_mode +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x8021f447 omap_control_pcie_pcs +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-control 0x9e4962b7 omap_control_phy_power +EXPORT_SYMBOL_GPL drivers/phy/phy-omap-usb2 0x00d48f33 omap_usb2_set_comparator +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x04f213a5 ufs_qcom_phy_power_off +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x164af0a0 ufs_qcom_phy_enable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x1703c490 ufs_qcom_phy_disable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x1fd4af38 ufs_qcom_phy_enable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x45dfdbc7 ufs_qcom_phy_set_tx_lane_enable +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x4a8e260f ufs_qcom_phy_disable_ref_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x512c4f93 ufs_qcom_phy_enable_iface_clk +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x59c3bad3 ufs_qcom_phy_generic_probe +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x5a14324f ufs_qcom_phy_save_controller_version +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x693e11e4 ufs_qcom_phy_is_pcs_ready +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x72eab7d0 ufs_qcom_phy_calibrate_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7be152ae ufs_qcom_phy_power_on +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x7e07acaf ufs_qcom_phy_init_vregulators +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0x9539cee3 get_ufs_qcom_phy +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xcb07918e ufs_qcom_phy_calibrate +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xd812ed9c ufs_qcom_phy_exit +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xded92065 ufs_qcom_phy_remove +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xef44418a ufs_qcom_phy_start_serdes +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xf17521d8 ufs_qcom_phy_init_clks +EXPORT_SYMBOL_GPL drivers/phy/phy-qcom-ufs 0xfa221697 ufs_qcom_phy_disable_dev_ref_clk +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x1242bf62 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x3721efb7 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xcf2e795b pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x0cc4699f mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x462e5420 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x6c64e97f mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x74f1d777 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x874fcfe6 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x24734fc5 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x33b5c575 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4f00c2e3 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x5a712ab8 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa4350a67 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcba65165 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xb30cf714 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x001189d8 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0be90215 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d672e8a cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e0eb87d cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0f9733df cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1119b332 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x142a49ef cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d07d976 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23602b6e cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2cae8876 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x32bfe5c8 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x39319ba0 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c8ec539 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41aef211 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44825dd4 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c599159 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x50c1ad71 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55cb8dc5 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x56e5693c cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6a26aeb1 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71bc5980 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7678f433 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79b0fc3a cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x842ae07b cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x85676412 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x856b6557 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x890f63fb cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ff01046 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9379e3b cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa988b1c8 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab0d572d cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae86889a cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xae89770f cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb233a9c7 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2393f06 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4dcbcd9 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5833d75 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb5ac01f6 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd4b60e3 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc137cb30 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc20937ac cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd3606336 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xda3c8be9 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1dc5884 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xec409faf cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfdea8ba9 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x12a64cd9 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3165f0b0 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x42f8637a fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x503045de fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x54983c05 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x55c60765 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x75837458 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7b6403bf fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x807b8ad4 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa4618024 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa7bb167c fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb6bd87f1 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcdbff105 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf1818a1 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe756186e __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf372dc6b fcoe_fc_crc +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 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ba542c1 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26c94166 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2aaa244b iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34203e13 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4725f1d7 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4b953b20 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4ddb88b7 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4eaa3037 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5599292f iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ebdd4b2 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6388590f iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x652da99f iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6c36e8e2 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d18378c iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x74e398c7 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x77b2ec7a iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x790e5eb9 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80a54fad iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9ab981c0 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9eba80b3 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa23a6328 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb1d2139f iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbac4c566 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbae88274 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc26940e9 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc68bf0ee iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9a13fa1 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcc90cb3f iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd07a7e8f iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd61ed0b9 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdbd30b1d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdea691ce iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe22fcd35 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee2e3f25 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf17200f4 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf3d2c7e0 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfa99784b iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfb4a9531 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc241da0 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfea4a39f iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff3efe4b iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffaba1e4 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x16759aaa iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1854d9b6 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x18a562db iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x31ab3039 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3e565600 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4769a36f iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5e840bf0 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60f03fc1 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x82f9c0cc iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x903949ae iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9802c790 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa241b0a8 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa47b3a44 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc512fc9e iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6883801 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6bbe862 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xefbbe3cc iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0571fd98 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0838e730 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1563216f sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x18e55e57 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1ef3cb4d sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27819556 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x39b779bb sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4b82cf87 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x503254de sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x572f3083 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5893e8ef sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a789ec8 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x746ce7f1 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x765c00e8 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x822bd407 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x83237302 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8c89135b sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x94f7d1a4 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbc92b8b8 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd3765e6f sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd6b15deb sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda990f8a sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdd44a98c sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf4fd2e02 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0397c732 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05996ad2 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x05ee368d iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x06a6ab41 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c89b405 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19cc3213 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e7663a6 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e956779 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x36b6f0ab iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3926d3b7 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3a54509d iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3bf2fbc4 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x41d45cfd iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4513c4cf iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47b40375 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x541f6887 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x580fe331 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x58f7d69e iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x65f63af1 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68365116 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x69983a91 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 0x7fc86e21 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80bd6e42 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x829f3555 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x838f367c iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90ac106e iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x912e87d4 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9905a11d iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a835729 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa515e09b iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xac144692 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xacbf009e iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2bdc006 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb4c2ada 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 0xc2ea389d iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc9fbb8bd iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd6943b2f iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe13d47bc iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xed0dd089 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8d71265 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x74fd537e sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xae0b45e1 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc049af3f sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xde09c8b5 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x94909219 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 0x09382290 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x18056c4b srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3c30d565 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x86c18ac0 srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd7f1e18b srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xf9ba20e0 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x46b56945 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x8a8771d5 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x934c8bf8 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x94bf843d ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc09f1b37 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc526b92f ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xf3e05563 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x18f84cb7 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x277cffaf ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3ae8b632 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbbffdc35 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xcbbdba75 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd95186c3 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf3420cac ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x90589e45 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9bb4316b spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbb03ea60 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xeca4adf2 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xff99d4fb spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x23c97f6b dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3b7f37f8 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x674865e5 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8aeda601 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0052aba8 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x02e48331 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x05ac36af __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x22360aa8 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2243d408 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2eae96fd spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x357f1a08 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3a457f90 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41db26ba spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x469d6d9f spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5756befb spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x84047fb3 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc310bdf0 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc3f9e270 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd54801d5 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe4645e54 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xe94f9dde spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfd26b21f spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x4ebd0625 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0140af69 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x062ee783 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x08300ed2 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x116e5fee comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x18ddab0c comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1aa08e2e comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x27159d68 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c16defd comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f541309 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x34372cdf comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x35a744de comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x410aaeef comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4cf7cd12 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5098aaef comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x68b5c1c4 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6aa81d2f comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6dd173c3 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x712e5592 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x73db4cde comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7e67405b comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8717e2d3 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8ac391e9 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x92b4e389 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9315c554 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa00425ad comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb61b30c5 comedi_buf_write_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 0xc23f1bd9 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcaafc5bd comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd7d1cb87 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb07ee26 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xde21b06a comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe6e5d99b comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xecc5743a comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfba7132d comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfca10324 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x2ad3267a comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x45217951 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6fb090f7 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x7d52e2a3 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x805aa681 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb9dd9b27 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc6288968 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfe45b31a comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x3744397a comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x55fd5ad2 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6ddb42b6 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb7a2f9f2 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xc78964da comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xeefe8cf4 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0xf345dc82 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x156b0d0f amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x631a271a amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xba1534da amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x17b0b060 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1818a83a comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x251ca464 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3813c7c7 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x38d98f92 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6222afe4 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x633b006b comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x874ecf4b comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x99a8c69b comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb534ebbc comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd65ce0e0 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf3521c3d comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf4e8a6b1 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x3e79f73b subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x40710d56 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xb9eb3dc9 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xba28fac6 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x00128a45 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0b77480c mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x26e81cb5 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2933836f mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x32e2677f mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x410dcf8a mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x46d2c779 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x520f87b3 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5de63cbf mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6bc2e985 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7af54a72 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7f1fa94f mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x95613d4b mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xacaf1711 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbba64cf5 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbc39c6c4 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc46560c6 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd534c8bc mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe66d373d mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf853db2f mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfc4fe91d mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x7f8e1878 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xa5b60db7 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0b18e767 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x1a4715eb ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4af90793 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x922950f0 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xa93c344d ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd0676a3f ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe9eb1a09 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf5f0cb5a ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x20709a7d ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3506b5c9 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x90d4c054 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x91ffccc5 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc3a86a32 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xe4635220 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2383c5c1 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x497b6f9d comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9c2c5ae0 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xac5fc1a0 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb0d918e9 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe1ad782e comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xfe5459f3 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x0329a2df adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x12dc3d62 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3ab6d15d most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x410fcfa9 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x41a34777 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x7d5d63ca most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbac3e984 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xbecde2a6 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc509be61 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd2457484 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdfb0af75 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe4f83c68 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xefacf2fa most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0b0467e3 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0e81c76d spk_serial_out +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0eb891fb synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x157b4841 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x19808285 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1b8639c9 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 0x453037aa spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x51f0778d spk_synth_is_alive_restart +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 0xbe25ed54 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd182cc1f spk_var_store +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 0xeeffb4d7 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x07315d41 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7c96cd30 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x882329ef __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xad595b19 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xea480ed8 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xa3675d4e ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd68bbfb3 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x51621c71 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x77b04b3d imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe1878bf3 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x03907570 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x59ce666b ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x6775e864 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x7cbab8ce ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9b783a36 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb5b28b1c ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x01d3140a gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x02000b21 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x22f03b5d gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x438111ed gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4b903b2f gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x78e82553 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x845a8578 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9e619b37 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb1f5c962 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb2ab8d21 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb3f922cf gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc9e0cea7 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xdb58e0d5 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe51ff2d5 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf8c78c69 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 0xb6652875 gserial_free_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xc51c78af gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xd371dd12 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xdaf9d24a gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8d7fc364 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb5f54355 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf236c309 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 0x16a1d29d fsg_show_ro +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 0x1df45270 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x249ae56b fsg_store_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 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 0x57483d18 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 0x7b40c12a 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 0x8134687c fsg_store_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x84df6170 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 0x90099cf8 fsg_lun_open +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 0x9c16cd4d fsg_lun_fsync_sub +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 0xba630783 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbf66010e 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 0xd7b9704c fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe86afe82 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 0xf5b903ae fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfcf47ed4 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x28076596 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x338e393c rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x385be380 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3b3e3211 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3f9fe790 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x48a5767a rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4d5ad055 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x519d511e rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x52cdd704 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x53f7cc74 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x68c3d038 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x728d112a rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x98d21058 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbf7bdf7c rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdb165e4d rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0403d709 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0de04a20 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1ccb2c06 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2b2bbfe2 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2dbb7a5a usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2f0c04fc usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2fbddc31 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x32965d9e usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3606b69e usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36db1ecd usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4427bd24 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4859edcf usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x50f4cc27 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x51ed5c86 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x57687049 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5f3f4f11 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x62ec8eb0 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6404193c usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x671dea4b unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6c35516e usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6f21dd5c usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x78730693 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa6e6b2c usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xac6cce2a usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb35f5c8d usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb5752fc5 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb978dff2 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc378eca5 usb_interface_id +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 0xf550d932 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfabdcb70 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x95624bd6 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf12cee89 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x298159d2 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2aa04208 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x49b2105d usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x56032c65 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x668c16ec usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x897fe9ed usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf0c336ea ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf3a2a9c2 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf5ada5e8 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 0xdec68e27 am335x_get_phy_control +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x15fe60c6 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x364830b5 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x03546ac7 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0ff8b991 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1a103160 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1d49c2e8 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1fa96bf6 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x23fd12b6 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2ca2b4ea usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44c07334 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4d471756 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d449cd1 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5e05d416 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x682e0a11 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a535d16 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7c17b980 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa5feb8fa usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc114dc3c usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7582613 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd5fa37c8 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe81601cf usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf5e77e6e usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf8ce75df usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x06bfc042 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 0x22afec7d usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x23625246 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2be2ca9c usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2cbbb575 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3da48d15 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x42924334 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4a90d816 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5403976f usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x56c88f8e usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5880d471 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x767a0eb9 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x84cb43e4 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x851bd8a6 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa3810521 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaaa2c2bd usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xac2b0ef8 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbca89ca3 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc8895244 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdae8ba64 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe2b08041 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe780091c usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf508490b usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf8070892 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x10dfea73 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3997ab6c usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3e40712b usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x49c11c1d usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6bf9eca4 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x6e99d685 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xab4dc8b7 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xaead321b usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb6e082ae usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd770c4ab usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe5134f65 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe962b657 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0a5a04a2 wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3761069d wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x698611b1 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa431b7a0 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xaa3a785b wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb8b82826 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xc15dd48c 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 0x0272c7c2 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0c8b471b wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x10118e32 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x126a917f __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3a929e95 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4dfb1a2b wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x528815ed wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6053ec98 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6cdb8160 wusbhc_mmcie_set +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 0xce0092a5 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd6bf1488 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe40c2a13 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf423415c wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfc9023eb 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 0x3208fc0f i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x439a27eb i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x6c1ad83d i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x04f67124 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x08a010f8 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2c717e32 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x7b005482 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xd1f38ae5 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdb09ee4e umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf0fce677 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xfb486153 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x05cb1017 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0ad72f35 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x10755da5 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1928e24f uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x282a5baa uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x287b8e03 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2cd3a31f uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x440eef71 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x445be0c0 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x56996393 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e7532da uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6901bc4b uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b103bf4 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x76fabf62 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7b50b483 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7ba4c9d1 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x863a1b67 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8c7cb51d uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ccfa93a uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8f0aa950 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9423b37d uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9989eac7 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9c31804d uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa120ec0e uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa739144e uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa7aab73a uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab49c159 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xab8d80a1 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb45ccaa4 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc9d161c3 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd4d3b9bc uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd55ac49a uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdd9215d0 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe11f880a uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe9f51f26 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6644751 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xff62e3db uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xcc495d5f whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x1ba0a38c vfio_platform_remove_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x74707503 vfio_platform_probe_common +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0x8b9914ec __vfio_platform_register_reset +EXPORT_SYMBOL_GPL drivers/vfio/platform/vfio-platform-base 0xe327ed60 vfio_platform_unregister_reset +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x115950ae vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x26205ed3 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2a06f079 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3b6344db 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 0xa4c88b20 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xa6d34647 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xb6a45d94 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_virqfd 0x430c7c11 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xf04a15df vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x007b8584 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x043c6ffd vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x152b2bb6 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3080018f vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x313cd22c vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x32bcc5e8 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x66428e65 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67a743e0 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7df6bb44 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x82f64938 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8417749c vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8d4b2d88 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8e3ed46c vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x90c26ee3 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x92acd094 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9903b1f8 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b8f26ec vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ee86a5a vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa382e228 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa45db4b9 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa6e9ec16 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa98d85e1 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xad9f6c0e vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb2e85f34 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc40f3a7d vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc59e4d23 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8a0a00e vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdb4f7ad8 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf4c80acc vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfdc2d14c vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1cc969a8 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5a3508ef ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x5c9101b2 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8b619e8d ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xacbdff17 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd72eb302 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xf0450d83 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0cc4b00b auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x34c17e7f auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x487570e8 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7399adcb auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x74d6e40b auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9803ca8f auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9d6dfc9e auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdc73b903 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xde900be7 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe92c4c47 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x85e6bf7e fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x562c1afa fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x5eddeecf fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x27e8473d sh_mobile_meram_cache_update +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x6802ab73 sh_mobile_meram_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0x9b30a57e sh_mobile_meram_cache_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xb0c96ad0 sh_mobile_meram_alloc +EXPORT_SYMBOL_GPL drivers/video/fbdev/sh_mobile_meram 0xf3fcf2be sh_mobile_meram_cache_free +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xd8a05420 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xf5c4eb87 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x29404d56 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x3add5da9 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x4d1a20ca w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5b2b8e27 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6665b468 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6acf0aca w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7004aa72 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa52d854e w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf392f1f8 w1_write_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x14d3658c dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4626a8cb dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa34cfa3f 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 0x0eb5e080 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3010330c lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3f1e7f4f nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x59beff8b lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa66d9a7a nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb3b122e0 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbb9f4d05 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x024e7262 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x032c9345 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0388f7bc nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04ac5c79 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08e3ed4b nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0acea63c nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ba3397e nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e9be212 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13815b9c nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x139d50cd nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13ead3c4 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15df6de5 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1670afab nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16df8bf9 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b8a3e15 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ccfe33d register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f8ca119 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20536651 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2297ffce nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27b5b5fb nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28811c42 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28b32348 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28f5c0b1 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2efbdb94 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f677775 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x37d1925d nfs_init_server_rpcclient +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 0x3d2be207 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f079164 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4072fa9d nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40804556 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4131c7b3 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42663dfd nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4334e961 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45916ba1 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4676995f nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x499bc076 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b6308c6 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c31ad67 nfs4_dentry_operations +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 0x52635e54 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52b20157 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x548c61bb nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c2f52c unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58aa64c1 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e0f61cf nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6467c207 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d316c26 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6da2e652 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6df49592 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75094e2d nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x782907e1 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x785bf79a nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a4d6d44 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cd7a334 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ec68b6c nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fb562ba nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85315b28 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88a14ba1 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ad0b605 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d6cd7ca nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e992076 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f8da87b nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90936c7b nfs_alloc_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 0x92894cdd nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93d79088 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9618189a nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x980ae830 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9844a804 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x99a6187a nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b1e87aa nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa125aed3 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3b3800a nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5c9ab04 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5ec5846 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa98a0726 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb353e98e nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8a4fcf8 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9aceaa6 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9c7a300 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9e6664d nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba644a7e nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbba7c2b7 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf77cc0c alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1763d0a nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3426ffb nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc376195a nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3d07862 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4e4e727 nfs4_fs_type +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 0xc63daac9 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc5b484 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf3acbba nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcfefe6f7 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0908f04 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd223eabd nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd379f7e3 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd495e65f nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd4c44df0 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5114eb8 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd64754e4 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6a96b5a nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd882f954 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8a29a9f nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9b9784a nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb305e7c nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbb6a5a0 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbc7e35e nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf255835 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe18cd0f2 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1bf6496 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3ea20e2 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe46c58a1 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe58bdc43 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7dbc1f9 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8d45dc2 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedc56886 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf15260b8 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1945f2e nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf5779868 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf676cf41 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6be1787 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8bb93e5 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9ed5a43 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7c41cb nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc287768 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd1abf26 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff01c16e nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xca2ff5b7 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b550ce7 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18647a9d nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d843865 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21fc5963 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22b0659b pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2765f806 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x307d4b1e pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x316a9a6d nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36682d25 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x387d3fbb pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c39ddfd pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3c748834 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3d300421 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3db9b820 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43699fe1 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x471486ad pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4baa220c nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c574b91 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d88dcb2 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x56253154 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5981da4e _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5e935104 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x62e8279d pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69973df7 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6bde432e pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c4d124f nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x729e8cc6 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7390737d nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7451c7f9 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f70c8ef pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x934d559a nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x93c02261 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b7a4fc8 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d55106e pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1c429ec nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa213ad69 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa9b517f4 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac35abdc nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad11c4f7 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c036e1 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xba31fc1a pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbda6a76c nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc44e9ad9 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8bae9ae pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca49195e pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc49c994 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc56beb7 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1e2ab71 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd3b4e71f nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd58e60b8 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6f548b8 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd8f1e0e2 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdc7fe4c7 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1d99502 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe7e8b1aa pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb390923 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed1d7e2d nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef671bd3 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xef72a470 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf253d091 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfe8852f4 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6d2699cd opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xb6a0cbaa locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xf9a9ebb7 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x956a8bc6 nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xca430f21 nfsacl_decode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x137c4aa3 o2hb_unregister_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 0x2ddbd6fe 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 0x58b3b211 o2hb_setup_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 0xb3ca4d6a o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbaeb4700 o2hb_check_node_heartbeating_from_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xbf44fd8e 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 0xcb8e9d73 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xd1efb870 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/dlm/ocfs2_dlm 0x37a00f4a dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4287c819 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x437138d9 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4bb71929 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 0x9a800fef dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xae129ba7 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/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 0x4684ce88 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 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 0xc09adf3b 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 fs/ocfs2/ocfs2_stackglue 0xe63c39c4 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 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 0x556f06b9 _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 0x9a302425 _torture_create_kthread +EXPORT_SYMBOL_GPL kernel/torture 0xa7d60d37 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 0x881f8ce3 notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc578071d 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 0x3406a6b5 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xbb6917aa lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x38bbd5c1 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x453647a9 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x6fffe0c4 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x7eee9cde garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xeca3cc26 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xf7a8057b garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x01e7cd9e mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x12b04f9c mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x175a8b3e mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x18091126 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x9674c7dc mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa02e4546 mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0x069d01c7 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x9bb3eeac stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbbfda078 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xfff427f5 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 0x549869bb 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 0x3e13dfc1 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x421fa22a l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x4afc500d l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8caa48e3 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe552099c bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xec05c053 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf9198264 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfd1ff57a l2cap_chan_del +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0245de36 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x43233dfa br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5311f8d0 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x65073456 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x92880011 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa7791e64 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd855bb0d br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xdcdbf586 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xca90397a nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xd7c82a9c nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05aebe1c dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x05d97de0 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x06e1cb07 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09a123b7 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0c29235f dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0deb3a87 dccp_insert_option +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 0x21b0761a dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28f1ab64 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ee824cc dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x453c1a8c dccp_done +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 0x55e4466c dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59348af7 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59e3f1d0 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x68c2ba6b dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6ac321a8 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6f0c8ae9 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x79d5d730 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7abbf486 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7af88a90 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x84948a7f dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x863bd8e6 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8b7f7370 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c89835a inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8af3fec dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaa8a2ee3 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0596156 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb4fcd8b4 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbccbeca3 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbfa85f8c dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc3ac699c dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd5243c56 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd81f7269 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfa0d7026 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x3e5d9b1d dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x80c9f55c dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xb9932392 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc4f626be dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd711bee3 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xe39a0453 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x72afbe77 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x90cccf6d ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa66eab38 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xaabbded4 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ipv4/gre 0x38009714 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4d538571 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4427bc9d inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x45f1e228 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x86419382 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x99c2bae8 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa004ce69 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa7ee3bcc inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x15b7412a gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x004e6a2e ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a1128d4 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2d7e70b7 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5a4da043 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x735cd36d ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7a4ef0ff ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8134897e ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8b878ef2 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x964cbf9b ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9e557050 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xad488fa7 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc30a139c ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc800ff1e ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe392b26a ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe5f5eff8 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x3fcef60b arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x003ec84a 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 0xbce2f565 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6b46e3ba nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9907d2ef nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa07d9561 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf36fe667 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xfea801de 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 0x6df85f81 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 0x32382ba3 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x55180a5c nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x71ac30e1 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9f58cd4c nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa85fb93a nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x21f27232 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x0b636183 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x46c4c97c tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x788c544c tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xced33b0c tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xdabe04aa tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x19eacb26 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1d4e6574 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd7fcb96c udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf9b42ee8 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x00e89584 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x206a1941 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x4d0878be ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5651dccb ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7a78e941 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xac9ce38d ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xbee2d266 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0ed23bda udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xf649825f udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x8b4d0ce2 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2eb7c03d nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x5b896d81 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 0x4b08e1cc nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1f45790a nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x24d85c43 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2e99818f nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7b380718 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb1a212e6 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x18eb1631 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 0x191c1de6 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x446ecad0 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x630bce34 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd68b9537 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xfc52fc30 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xbc8b221c nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0d404be7 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1f34e2de l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x211d41d6 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b696175 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a2d5030 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4a5c5720 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x567bc49b l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5c2a9065 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x80678f86 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc1ecb98e l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2f6c0a7 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe1e54fec l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe472a80d l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe7550527 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe9da456a l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfe83af03 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x02172331 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2620b84a ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x39acda40 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3ca67045 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x432256a4 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5633d517 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8583641b ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x89cc4f50 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8c0008d8 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d403a02 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x912e7ea1 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb730cb6b ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc4b9999e ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xefdf55d4 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf32a6212 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfb000d7c ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0ed24422 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x218b9ca9 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x3b401e9f mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc3e9c477 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0a74feb2 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x170f32ae ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3738f2e1 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x478bf765 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x62cf155e ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x64db406d ip_set_del +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 0x8737fb28 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa280c306 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 0xa2f9c017 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa3bd16c4 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xafbbf913 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc6045069 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcd3cd965 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xe8343326 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf19cc282 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfd270047 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x45b57bdf ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xb6fc1b25 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xd0531c10 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xdcbd7de2 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02c38282 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0316146d nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0352a911 nf_conntrack_helper_register +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 0x0bff4740 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c0a11e9 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c1bb8a8 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d4d294d nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0eb3e282 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0eeaaaab nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10474213 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15eface1 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x18066ef6 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21649f98 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24a3b9d3 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a52521d nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d688213 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d6a5353 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fba7758 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31179af0 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31634f84 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35c986d6 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3cdcc829 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f7b4bcf nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4531ae5e nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x453f0795 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47478e59 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47e0c268 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4ece7030 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x532831a1 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5406c98e nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58368978 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59fd2e9b nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b761f33 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6208c4c6 nf_ct_l4proto_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 0x6d13406b nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f3e3bd3 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76ef30bf nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77bcb279 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7c7a2b4d nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x80511d5b nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x891b88e2 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8e39c32e nf_ct_l3protos +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 0x924f7b6c nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x94b227be nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d729eae nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e3bc721 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e49df0f nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa15d1db8 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa284fd7f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa88c0d8e seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa99f498d __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab962d1d nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaea64fd5 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbfd65255 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0e9fe7d nf_ct_expect_put +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 0xc73f8bd3 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc2b765f nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd450016 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd1744c1e nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3ec0457 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd485cbf6 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdcb52cce nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde591b76 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe1174873 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe12ea605 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe13e7276 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5487d7b nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6fb4090 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe99d9da4 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf272f876 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf302bc78 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf3533b52 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4d54329 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5f21962 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfab6e84a nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc5e7339 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcf7e31d nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe0b8d5e nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x06b02ab4 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x8453bd50 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x78865d9c nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x15aa469f nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2ac9c06f nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x5b458b0d nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x680b8e27 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x778970c3 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7a5c25fc get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8cf15680 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x8d09bda3 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc078b8a2 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc4bc0708 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xf95f8e69 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0435ed96 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x15d967b3 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x24c4e994 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x361ec6d2 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x545e8a99 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x9388a073 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x18c4b31f ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x35e585f5 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5bc11651 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x610eba98 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xac9fec84 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd6770d63 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xed10b67d ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xd49e11a4 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x400ec366 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x618d28b6 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x77b3a755 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x8077efb2 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xec93f2ac 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 0x4fdeb729 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5a27fdf4 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x802fab02 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x91fc96ac nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb2582944 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc594f9ba nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xce55a465 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf4f2a68f nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf7a94b37 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x57003f7b nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xbc85e0f6 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 0x7e5d543c 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 0xd02e39f4 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x22760961 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2de14b6c nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2ea66992 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x31a0e6eb nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3284f79c nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x51212b36 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x53045fdf nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e8ada88 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x781a58f3 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x820eb04a nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x84597e97 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8fc86798 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc3209631 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc574163b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe080a663 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe88a8388 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf14d7161 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0e46211b nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3b7c9c77 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6dedca19 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbadf058c nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd5c88adf nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd68e5d5c nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdeea8d4a nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x25b43fcf nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x807efbce nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xdaae15e9 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xbbcb843c nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x90b388c1 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3628911 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xed85cf91 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x004c7803 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2f289be5 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3a769e35 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xcf9bcda7 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd59c316f nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfde92fa7 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x024ff46a nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x2cbeb24a nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xfd19ad2e nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x195c62ff nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xd0574b58 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 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28db2075 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x352d8b3a xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x379b0955 xt_check_match +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 0x442e4988 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6682cc32 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x87c55242 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x88eb3ed5 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x99c165cb xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9d4e8089 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc03b9caa xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd1360cb4 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf8b8bc55 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfc91c476 xt_replace_table +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 0x3ba81eff nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x93c1c370 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf892b51b nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7c6ce30a nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x833d29c1 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xf3bb9512 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0391331b ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1786032c ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3144cb44 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x62fc5d8c ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x88eeb5c7 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9e81532d ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc6c03a70 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xec02d258 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xff84c5b8 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x1304da5c rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x1e6027c6 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x22b9550a rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2dda011a rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x35b0b9c2 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x364f2a48 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x4a480a3a rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x6660fb6f rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x67e1c20a rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6b280725 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x73017dee rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7a5cca67 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x810b7dbd rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x83d6281a rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x8799a5b2 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8feac90a rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xa7eb36bd rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xacf85c4c rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc05b6681 rds_message_addref +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 0xcf0ad8aa rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xd8ac63e1 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xe1d02cfe rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0xe86047f7 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x1d75b8a9 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x60123644 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 0x25d2fcf1 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x5581c846 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 0xf460fa94 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000e5e9b svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x027a4425 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04c326e6 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05e807a9 xdr_encode_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0605e451 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x065994f1 xdr_encode_opaque_fixed +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07d7d24a svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0865a332 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08708995 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ab6ff6f xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cc10c66 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0db44728 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0edfecf0 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1026a8d2 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10543a60 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x117cc952 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x149c033d xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1676bae3 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x169e6742 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17cfc7e8 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18bf170a rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19541135 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a9dcad2 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c7dbe96 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e6acfe8 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fcb2d68 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x239a15f7 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25b9b9a1 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2622b6d3 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x275737b1 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2837ce66 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28f48a8d svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a12637e cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a1c7642 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c1209b9 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c256d4f rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c6a45e2 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cef23b1 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d21c4ff sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d9426ad svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2dc00073 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ea31621 rpc_setbufsize +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 0x317284fe xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x326ac5bf rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32ae6160 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x340ce303 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34f5b0e1 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x378ca4fb rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x380259bc xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x392c6619 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x395731bf rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a90113f svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be87234 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3be97fa1 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d8a7903 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40cfd52c svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41d68b1f rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42c84a4b svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42d13185 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4443d494 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44d168c4 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x467aa89f cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46c284fa svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a4b5329 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aafe131 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b7e3216 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4dc61eb3 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb29cf2 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x507628b5 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57518111 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x583273d8 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5844e6e5 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58821a78 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x590e4ba9 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ab5f19e xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b5898be rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b90acad rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5caab181 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d1ce3a4 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fb7e300 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x643638d2 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65622c79 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x660ed7d3 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6686163d auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x674be256 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69974674 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d2ce813 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dd910e6 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e7e5b45 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71db8d7b bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72119300 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72b4c01c rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74525be7 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x745b21c4 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x747f0493 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x758c7b2c rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7669db4a xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77ca6ebf rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79313fe0 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79cecb0a svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79decde0 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79f24033 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aa9e64c xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b956b46 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dce8ebc rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eb1ff69 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fda42e7 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x806b549d sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81f10382 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x825e9840 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82aaaa00 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82e5ef1f svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84074bdf rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8575908c xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a8863bf xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bba09cb rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ce76c35 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f167363 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90430714 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92eddd88 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x972ff935 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9755815d rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bcb6c31 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bdcd848 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c927beb rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c93334e rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ca1cbeb rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cc9bdbe svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d3ac0ca read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ebadcdd svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa23a40f7 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa313d410 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4a6755d rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa59529c1 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5a2973d cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa68a6fba sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7c3f748 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa879f2ce rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a40556 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9e2d45b rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab083c97 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad758887 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc32b53 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0659bc8 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0a9609b rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2c27b1c svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb424340f xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6f594c2 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb76e3ff9 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba3bfd15 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfbf0479 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0292bb6 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc139d09c rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7e0f6d5 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc809f929 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc89aeee4 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc991e915 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca66fbc6 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc706a1a svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd33943d3 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd47c9c60 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4f4aaba xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7afff06 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7e97c4a xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9485acf xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb2dbdde rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb57644e svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbbe0bdf svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbd04f7d rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc9f0cd xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde003d5a svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde39d356 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdea80eba cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1250bc9 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe24baa98 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2a3b9a7 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe520d2e1 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6087fae rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe875d785 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9e0e1e4 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea486473 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea4944f9 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea5efb35 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea678f8d svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb00412f 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 0xef59e1d8 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1ad42e2 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf31f1e52 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf33aa9bc rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf484e4cd rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf63d8127 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfcb7ed9f sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd722282 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe048f5b xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe1ed022 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe539f7f rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe80dcf6 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfea152c2 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff810919 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffda3f11 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x070c5dc9 __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 0x3b585db7 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x515b74cd vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x626cbbc6 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x64bd31bc __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 0x794c40fa vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x798929e1 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7aa3a676 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a8c7f3b vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc4fa7692 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc89b433f vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc98cbe14 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed689b12 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0b838df3 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x10d44903 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2ab5163a wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x37b60a8b wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x38e456c3 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x47368543 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x878920ba wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x91ec0105 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x943b49af wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa5c0f6c4 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd267a017 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd9eaa686 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdc685e9d wimax_dev_add +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0ec0b554 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1a872231 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x26a5a71e cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3b41db6a cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3dfeebe6 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5ee2d3d0 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5f0f4017 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x78ce09c0 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x94f85378 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x98bfe1cb cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe63f029f cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xf49852cb cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfd8e7036 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 0x12bcf760 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x1aabce1b ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x56a21acd ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xa38e6836 ipcomp_output +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x9d175733 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xfcb21438 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2a5db829 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x34a0278d amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x38d4a66c amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x64edbd8c amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x69266e06 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9a97d5d9 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9e6293b1 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x04a44d44 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0540d8da snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x054db2e6 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05759356 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d2ff970 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17ae1fcb snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x17de3fff snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1875f811 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x20e88caa snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x245feab1 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c132f33 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c6496a3 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30aa3d69 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x310aeebd snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x346b6312 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x36f05c0f snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3897c694 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c8480cc snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4369e944 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x47d2a029 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a7d46e6 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4eb1c31c snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f21214c snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4f5d4b37 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5588b27b snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55d957e5 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ccd344a snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6becf48a snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e0611c9 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x753b9efa snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d0544ff snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e1b1627 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8331a416 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x84befe92 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8688ca53 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8721d1d6 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87be67ed snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8b46ec26 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8d604d22 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8dc1a0d9 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e996f52 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9b838b20 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9036a8f snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xae626b06 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1683f81 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2a44155 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2def1cd snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8a746b4 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb92346bd snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbbc699fd 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 0xc1bbd9fb snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4a3afde snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4caf24c snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc5abf340 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6a2de2e snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc028f62 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd04b44b snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd580ba07 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd863f7cd snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc2f4af2 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc939599 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2d0e91a snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5c649c9 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec14aebd snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xefb15c61 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf085c17e snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf237b233 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf986c160 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb642311 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfc7c7d4f snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xff854f02 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x1b42481e snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x27d597a0 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x6a27df3c snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7df2a11e snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xcaa8108e snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe66badfc snd_ak4113_reinit +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 0x06ab9baf azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x06cc0621 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09d28c78 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b2d96a1 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0bed8837 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c129a10 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0eeb21c3 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f0df55b snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f5b6e73 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x106602df is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x128ddd30 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1424f7ef snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16ce68b5 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1871bf9a _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19693d42 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a73e0c6 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d134699 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2097fe16 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x209b26d3 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22274747 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22936217 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24bc0b47 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28daeb72 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ab29faa snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ba956d3 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2c3c0dc9 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d7313dc snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31a86214 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35da4be7 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35db8423 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36bf99e7 azx_bus_init +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 0x3b1d6949 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b4848ab snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b62aea0 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3e61e79c snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41d3e012 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4271a74d snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44797fcb snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47be36ad snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x489af8da query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4969c46f snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4cd71645 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x537d7c5d azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5436ffbf snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x581cd558 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b775d2d hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6120fdaa snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x622fe518 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x633500eb snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a17ab26 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6f2ddcec snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fce49b8 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6fdaa6fe snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70ce1468 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7485f7b6 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x780cb9ff azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79472976 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79baff34 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c7bca40 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7de784d2 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8057631f snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80bb05ac snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8473dd01 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b21e3ed snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8bceb14a snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d217458 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8eb61021 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x92693542 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94c4375d azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x994275d1 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x997c402a __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b73d676 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e81bb3f snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ef4f857 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa6583cac snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa7b4a6f5 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa833cba6 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8960da4 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac5dd376 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xadf90150 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf9b5ac1 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb03422a5 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3a268b7 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb51f2074 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6376ad8 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb66a6cba snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb73e861c snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb051c43 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb07dde1 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc001d6f2 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc01a23be snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc218936e snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3012945 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc5930f4a snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc59f30d8 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6b6e569 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc73ab3e1 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8ffeb04 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcffa9f12 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd25e5978 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd523dda0 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd650e147 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8386b4d snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb5e87ba snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdbb109dd azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe127dfd9 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3d9ab81 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebd65b7e snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed13feb4 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed92dd1e snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xedbc3aaa snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1b47035 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1c74df9 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf4e61d2e snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7b5255e azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf80e2c48 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf901cbbb snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf94a4dc3 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf96caa50 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf97b7cbe snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfadcfe98 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc2fff92 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd1401e8 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffb9e582 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x18f0e35f snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1ce56ef8 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x326e36a5 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3666e96d snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4e3818b4 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x527b9730 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x52fa3d83 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5d5c1b3a snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e5b16d8 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x61ee102e snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6325b80f snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x67801e67 snd_hda_gen_parse_auto_config +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 0x797e395e snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7aea3e31 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7f17fff3 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 0x9059de11 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa56f2574 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xca36f358 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd9c44a1b snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe5d3b99a snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfda4f00e snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x2987339e 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 0xc499ccac cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x3fe35f50 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xeefa0a1d cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x45a2eaaf cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x6bc2be0a 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 0xf75e78f0 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x413d30fc es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x66153366 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x730c2374 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98095 0x721db516 max98095_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4ad1b4e3 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x66569f4b pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x993ce5e0 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd50e7c1a 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 0x3e4b4070 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x4dc20c58 rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677 0x1aa63d91 rt5677_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5677-spi 0x26f225e7 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 0x0416449e sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x19754a89 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x282a7ea8 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x72c5317e sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xed150b81 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xe23e4088 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x03f2e023 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xa2e3ed4d ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x37125699 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x6b689b36 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x67756310 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x20d0c661 wm_hubs_set_bias_level +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x45d0bbd1 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 0x7fa04279 wm_hubs_add_analogue_routes +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x846ab19e wm_hubs_update_class_w +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0x9ec7f878 wm_hubs_vmid_ena +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xd6e75b66 wm_hubs_hpr_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xef3b388d wm_hubs_hpl_mux +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm-hubs 0xf9caa7cc wm_hubs_handle_analogue_pdata +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x7059c3c7 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x8c3a6788 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xbec2f0d4 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xd7adfa44 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xe95bfa1d wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xb8166dbe wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x5e28210c wm8994_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8994 0x924aeb6a wm8958_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x44a56ca5 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x5b1c7bc5 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 0x4a3b7919 asoc_qcom_lpass_cpu_platform_remove +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0x4c13bd6c asoc_qcom_lpass_cpu_platform_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xb09ca3a4 asoc_qcom_lpass_cpu_dai_ops +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-cpu 0xd7beed12 asoc_qcom_lpass_cpu_dai_probe +EXPORT_SYMBOL_GPL sound/soc/qcom/snd-soc-lpass-platform 0x36cfd742 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 0x93893a66 samsung_asoc_init_dma_data +EXPORT_SYMBOL_GPL sound/soc/samsung/snd-soc-s3c-dma 0xb8ee9ee5 samsung_asoc_dma_platform_register +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x03cfb5a1 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0ad0baec 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 0x2605a8bc line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5082572f line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5cc2bf15 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x64528299 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x65db16d0 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6e773134 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x74d23c32 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7ee204e2 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8a9f3c32 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa2ff4367 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdb568e45 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf2bd4fc2 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf37ab81f line6_probe +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 0x001f157d shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x003b74ef sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x003d8be9 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x00518f8f virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x0055dd77 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x0059c71a __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x00667d4d exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006d2b67 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x00787477 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x008ac165 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0092ca9d platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00a147a7 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x00bea18f usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x00d4ffbb dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL vmlinux 0x00e87ec5 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ef198b ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x00f3bed1 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01027a8a netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0104b9c0 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x01191e64 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x012ae772 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x013b5d8a device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x01427725 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x0160d6f0 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x01692447 pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x0183ca84 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x018882f7 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x018edcce cpdma_ctlr_dump +EXPORT_SYMBOL_GPL vmlinux 0x019169d8 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x01bf97f0 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x01c5c9fb ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x01c6cb0c cpu_cluster_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x01c7395f crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x01d822ec device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f72401 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x01fd92e5 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x022738f3 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x0244b7cb snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL vmlinux 0x0246ebf8 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x024ed466 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x0265ff2d ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x02b2e94d usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x02ce672b crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x02fe03a0 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x030be75a __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032375b0 hwrng_unregister +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 0x03486850 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x034cde78 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x0363ea89 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x036f7e0b sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x03993474 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03bb2c57 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03effc6a set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0402b504 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040fce2e blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x041daf4b snd_soc_bytes_put +EXPORT_SYMBOL_GPL vmlinux 0x0434b5c2 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x044f9a35 pm_genpd_add_subdomain +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046d80f3 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0480ee87 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x04872e8c __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04937c84 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b75e71 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c68c44 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x04ccdddf sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x04cf38e3 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x04e1b99f snd_pcm_std_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x0534d775 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0551d00a cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x05542702 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05910732 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x05a87338 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x05b40774 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x05c81e37 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x05e96887 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x05f0f3d0 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x060b5865 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x0629c224 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x062bc731 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x06438115 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06531048 ahci_set_em_messages +EXPORT_SYMBOL_GPL vmlinux 0x069b5bd9 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x06c2e88e pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06f54b1d of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x0700f72e snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x07041889 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x07292de7 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x0732ff92 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x074a3450 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07654829 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x07684a40 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x07901195 bgpio_remove +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c12d3c usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x07dc2394 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x07e254d8 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x07fc9037 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x08123f9a thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x081a91b1 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x083f1a4d inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x0844701b queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x0851d77b __of_genpd_xlate_simple +EXPORT_SYMBOL_GPL vmlinux 0x086d7d76 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x086ed8bf xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL vmlinux 0x089d8b31 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x08aec48e crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x08d43e45 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x08d7b5c5 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x08f2eb07 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x08f8780a extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x08fb2c55 sdhci_send_command +EXPORT_SYMBOL_GPL vmlinux 0x091b4735 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09288448 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x0938b8f9 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0971686d mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x0975b46c wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x09761939 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x0996ff99 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x099d4972 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x09ce77b8 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x09dc2692 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x09e913c1 snd_pcm_alt_chmaps +EXPORT_SYMBOL_GPL vmlinux 0x0a289755 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x0a3facf5 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x0a69185a rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x0a6a8983 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x0a8495d1 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x0abce4a4 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0abdc32b usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0acdd5b6 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x0ad53951 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x0ad90a00 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x0ae7e2c2 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b3ec2a3 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x0b46c87a debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x0b8b62ef snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x0b947201 sdhci_set_clock +EXPORT_SYMBOL_GPL vmlinux 0x0bbae511 return_address +EXPORT_SYMBOL_GPL vmlinux 0x0bbd8b11 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x0bd7882c class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bff35d8 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL vmlinux 0x0bff585f ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c0c6dc9 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x0c1ae9cb pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x0c252750 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0c2a76b6 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3ea3e8 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x0c4351df ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x0c4f8ec3 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x0c8fd6af unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0c92f32e devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc53876 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x0cd0e2e4 ahci_platform_ops +EXPORT_SYMBOL_GPL vmlinux 0x0cdb6e20 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0cf3e16c of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x0cf41d54 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x0d01b2f0 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x0d04006d unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x0d07272f dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x0d0ba0e4 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x0d1eff84 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x0d2260e3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x0d2b9874 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0d318a79 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x0d3f3d98 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4a622f device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x0d7ce70e pm_genpd_syscore_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0db0b155 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0dcf1014 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0dd46d57 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dffc822 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x0e18c470 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x0e59402a regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x0e656d6a fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x0e6f91be omap_dm_timer_request +EXPORT_SYMBOL_GPL vmlinux 0x0e8a574a cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0e91773e mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x0ea39b59 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x0ea6267f irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x0ed5b1a1 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x0eef2cca tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f3501ce regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x0f4c5945 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x0f55d9f6 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x0f5b4546 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x0f5fbc6e snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x0f62103c netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x0f6866ff crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f75d23e __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x0f82666e kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x0f93be2d kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x0f9d9f4b class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0fb3cb1d power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0fc2b687 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x0fd55220 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0fdc130b regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x0fdf447b tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x0ff0b1cb devm_snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0x0ff9af09 cpdma_ctlr_int_ctrl +EXPORT_SYMBOL_GPL vmlinux 0x1006680a scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102a08b3 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x105afb8a snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL vmlinux 0x1069dd0b dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x106f9c51 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x107306d7 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL vmlinux 0x1073f2d6 register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x1096ed2e ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x10adf916 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x10b2aad2 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x10d6e333 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x11025677 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x111149c6 ahci_check_ready +EXPORT_SYMBOL_GPL vmlinux 0x111ec5df fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x1128ea0b mtd_table_mutex +EXPORT_SYMBOL_GPL vmlinux 0x113eee31 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x11466971 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL vmlinux 0x115fddc3 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117e1027 __put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x11802055 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x118cd790 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x118cf6c0 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x11916b32 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x11a099c1 snd_soc_add_platform +EXPORT_SYMBOL_GPL vmlinux 0x11acf56c __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11d95ddc subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x11dcc9bb usb_gadget_probe_driver +EXPORT_SYMBOL_GPL vmlinux 0x11dfdb69 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x11ee4788 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x11fd909d dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x12157c54 arm_iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122b583d snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125d89cb usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x1261a313 snd_soc_get_strobe +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1280c71a uniphier_pinctrl_remove +EXPORT_SYMBOL_GPL vmlinux 0x12999879 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x12b29916 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x12c85add blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x12fec102 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x13196c79 rtc_device_register +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 0x1377e07c blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x137fa859 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x137fdfc1 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x1381d4f3 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x13984ba7 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x13a38bd6 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x13a500c2 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b2504d ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13bc8a44 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x13eed026 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x13ffa316 snd_soc_unregister_card +EXPORT_SYMBOL_GPL vmlinux 0x1402571a regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x1420a333 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x142ef0e7 devm_regmap_init_vexpress_config +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x14371f52 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x144563fc regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x1445f4cc adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x145107b6 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x145f9ceb gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x149cc426 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x14a98a21 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x14abba3c spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x14d9ae29 pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x14e18442 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x14e18de4 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x14e1d542 snd_soc_platform_read +EXPORT_SYMBOL_GPL vmlinux 0x150f0146 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x1514263d ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x1524e17f device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x15293b03 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x157d0da9 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x15874573 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158b755c blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1590fae8 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x1599c7d4 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x15a4acee ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x15b1c899 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x15d993cc relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x15e471e6 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f13b4e virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x15facb84 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x15fcdbd9 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x162ef4e8 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x163773ec simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x163f6349 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165488f2 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x167eb93f snd_soc_component_write +EXPORT_SYMBOL_GPL vmlinux 0x168662c3 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x168a71ca crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x168d1e97 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x16a12e1c regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x16a2f3b2 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x16c8f907 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x16d258e9 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x16eb187f crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x16febd9e wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x170e127a devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x1717a05d omap_get_plat_info +EXPORT_SYMBOL_GPL vmlinux 0x172dda8b mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1733a676 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x1748355c driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x17632044 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x17681bd7 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178dc99e set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x1791cbbc __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x179cc02e ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x17a0cf09 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x17b90e0e vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x17bf71df snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL vmlinux 0x17cbfbca thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x17e5961c usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x17ea0b29 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x17f3b8a7 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1824ede2 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x1833ed70 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x183c184d devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x183f9d4c device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x185beacb ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x187fbb7e blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x188c7da3 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x18cd649c wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x18dc8af0 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x192441c6 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x19278401 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x1927994b rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x1927a4c9 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x19707d57 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x19726f65 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL vmlinux 0x198dc1fe pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x198ebc15 snd_soc_suspend +EXPORT_SYMBOL_GPL vmlinux 0x198f599b ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x198faf88 tps80031_ext_power_req_config +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 0x19a8754b vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x19ad78aa fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x19b94493 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x19cef04c ahci_do_softreset +EXPORT_SYMBOL_GPL vmlinux 0x19f01d59 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a1fcf86 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x1a328465 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x1a3d325f amba_ahb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x1a432b02 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x1a55569a wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1a5ade9c ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x1a6d0ae5 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x1a731898 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x1a7629d9 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x1a94d043 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aabe552 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x1ac19ad8 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1add2de1 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x1ae9adb4 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x1b22ac83 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1b3261e0 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1b3609f8 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0x1b3f76f2 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b41c9b3 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x1b4272c2 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b5ee812 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0x1b73eb23 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba3e30b blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x1bb5fc26 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1bb6ffb9 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1bbcb762 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x1bc5eebe pinctrl_gpio_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x1bcbc29e debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x1bd948e4 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x1bdd14aa spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x1be5f5e1 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x1bea9404 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1c053a0f device_rename +EXPORT_SYMBOL_GPL vmlinux 0x1c193425 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1c1b65e4 mtd_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c20474b md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c57c0b4 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6ab34a spi_unregister_master +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 0x1cb8d388 omap_dm_timer_set_source +EXPORT_SYMBOL_GPL vmlinux 0x1d08c829 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x1d0f9e7b rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x1d13b361 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d51333b clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d662414 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x1d7051e8 ata_sff_hsm_move +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 0x1d9ec2fa watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1da93f94 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x1dc0edf2 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x1dd1386c serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x1e31a27b blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x1e4734cc hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e621bf1 snd_soc_resume +EXPORT_SYMBOL_GPL vmlinux 0x1e76ff7b power_supply_unregister +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 0x1e97ef0b snd_soc_new_ac97_codec +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 0x1ecbec63 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x1ecd0772 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x1eddfdff kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x1ee07304 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1ee50e9b kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x1ef369b1 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x1ef4088d da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1f070a8d ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x1f0e6ccd usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x1f27005d ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x1f4d67b6 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x1f75d40a cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL vmlinux 0x1f774f46 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1f814288 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x1f827009 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f8fc2c9 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1f9b0c5a event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x1fa416e8 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL vmlinux 0x1fb8c02a cpsw_ale_control_set +EXPORT_SYMBOL_GPL vmlinux 0x1fe6a2da iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x1fecbcbf sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1feddd0e snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL vmlinux 0x1ff6c8b8 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x201b8360 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x201d8ea3 encode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x20385cd6 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x204e8b30 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x2060674f omap_dm_timer_set_match +EXPORT_SYMBOL_GPL vmlinux 0x20607f61 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x208fd756 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x20931e79 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x20a0057b pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x20b0a759 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x20b28c61 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20df434d of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x20ea72c3 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x20f7c470 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x20fe1109 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x21030924 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x210b0b10 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x21102734 ahci_platform_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x211337e6 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x21185f2c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x212c8beb serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x214f490b sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21bb1059 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x21c1ae0b hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21cee0c8 snd_soc_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x21d76528 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x21febf58 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x220667fb pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x221e5480 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x22489d88 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x225b7502 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x226a674d atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x228bc921 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x229bd9f6 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x22bef1e1 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x22c0709f pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x22c31597 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x22cbc86c posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x22cd6199 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x22cee272 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x22d33ba0 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x22e27d73 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x22e7b7d4 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x22f4419c bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x22fc0121 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x2305340d mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231d70fc encode_bch +EXPORT_SYMBOL_GPL vmlinux 0x2351ac71 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2372de52 get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b68be2 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x241226ef skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x241e78f1 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x241f7ec5 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x2433cd3e nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x243b00e9 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x24418fec ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244b802a usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x244c1899 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0x245947c2 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x245ed334 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x246560dd dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x24731994 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24912c49 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL vmlinux 0x249dea99 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b67e20 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x24c113d4 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24eecf2c amba_apb_device_add +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24fc13ff mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x24fc3073 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x24fec4d9 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x250b9b10 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253bc4ac nand_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL vmlinux 0x25479ff0 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x25517831 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x255acb91 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x259166e1 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x25b3209a posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x25c910b9 mtd_erase_callback +EXPORT_SYMBOL_GPL vmlinux 0x25e4fa8c btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x25f417cf led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x25fc3de7 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x260f57b8 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x261098a6 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0x26286dde blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x262a2200 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x263cde72 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2661e06b bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266bc804 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x268d91ae blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x26957914 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x269b5f44 fat_getattr +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 0x26e02ba4 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0x26f3a5b7 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x2700438e blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x27014eff ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x273437d8 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x273db6d2 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x274b1701 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x2753f4cd netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x276ca0d2 of_genpd_get_from_provider +EXPORT_SYMBOL_GPL vmlinux 0x2778ca34 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x2797eec7 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x27b3aaca irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x27bc933e led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f65af2 ahci_reset_em +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x281c12c8 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x283d8634 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x28860299 omap_dm_timer_trigger +EXPORT_SYMBOL_GPL vmlinux 0x28907458 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL vmlinux 0x28b290fd ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x28bc52d6 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x28c17f66 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x28f14ab0 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x2923035f blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x29350cb0 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x293dbb66 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x294e653e fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x29595f4e phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x29785641 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x2998613f __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x29b7201c fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x29e966df bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f6e37b rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x29fa419f decode_rs8 +EXPORT_SYMBOL_GPL vmlinux 0x2a08b2c8 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2a18a31c snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0x2a1959ed __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x2a3948b1 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x2a3dfbee ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x2a5ece28 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x2a624220 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a764a8a regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x2a816a05 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0x2a91d4ee usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x2aae43f7 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x2ad1ccb7 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2ad9d326 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2ada7c58 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x2adfb3b9 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x2ae95ea6 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x2aeb1c8b blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x2af6f2f0 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL vmlinux 0x2b0c6d15 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b33b324 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL vmlinux 0x2b435768 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x2b58719c bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2bab0ccf __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x2babe81f __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x2bdd5159 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2bfb7154 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x2c166efd ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x2c1b60e4 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3327f2 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x2c46b915 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x2c49f4dc cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x2c4d51a9 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x2c4f2ec4 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x2c51c378 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x2c6119d4 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x2c63a497 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x2c65e4a0 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8effaf fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9c7db7 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x2ca4c352 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x2cb53eb2 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x2cdaecaf platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cfb965c pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4f5515 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d649c01 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x2d8564d2 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL vmlinux 0x2d8ad3a1 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2da060f3 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x2daa2c0a fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x2dad9b05 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x2dc7cd49 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x2dcc544a sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x2ddbbd5f scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2deb4592 ulpi_viewport_access_ops +EXPORT_SYMBOL_GPL vmlinux 0x2deee47d regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x2defa1db rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x2e106308 snd_soc_put_enum_double +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 0x2e322121 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x2e4c4ea7 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x2e51f75f usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x2e579790 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x2e704325 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x2e742b00 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x2e9670c0 pl320_ipc_transmit +EXPORT_SYMBOL_GPL vmlinux 0x2eb76458 snd_soc_register_codec +EXPORT_SYMBOL_GPL vmlinux 0x2eb8ead7 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2eea6547 devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2ef1c72b inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2ef6f9ae spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f0f482c anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x2f126a3b omap_dma_filter_fn +EXPORT_SYMBOL_GPL vmlinux 0x2f15ea36 amba_device_put +EXPORT_SYMBOL_GPL vmlinux 0x2f22e9b3 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x2f4002be ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f595ccb device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x2f59fe6d handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f635b4b tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f8c2431 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2fa71554 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x2fc7b541 hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd7a56d extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fda5cf1 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x2fef24b7 mtd_read_oob +EXPORT_SYMBOL_GPL vmlinux 0x2ffaa1f6 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2ffe60aa __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x300d7e57 free_rs +EXPORT_SYMBOL_GPL vmlinux 0x30209340 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x303c9223 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x30446ff6 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x304d6a3d scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x306273e8 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x30654dc9 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3074f8e8 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x30986bff snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL vmlinux 0x30986dee devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x309a2344 register_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x30a2b5f5 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x31096cb1 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310bcc3c virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312d3425 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x31337d02 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x313ced62 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3155deb0 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x31579d20 snd_soc_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x3158bc22 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3166fa65 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x316eb036 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL vmlinux 0x319692bd usb_reset_endpoint +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 0x31da60da snd_soc_read +EXPORT_SYMBOL_GPL vmlinux 0x31ed2056 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x322babd5 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x323e55e8 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x32744520 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32e4d280 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x32ee3ac2 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x330c7b09 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x330ee76a debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x33121cb5 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3324a14e irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x332acb22 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x3332a152 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x3354f569 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x33568653 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33846d24 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x33b2b080 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x33bfbc45 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x33d3c2e5 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x33efa9e1 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x33fbb2a5 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL vmlinux 0x33fc6ef4 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x34036f1f vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x340970d7 gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x34111c32 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x34161e02 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x341643ba omap_dm_timer_modify_idlect_mask +EXPORT_SYMBOL_GPL vmlinux 0x34208ce3 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x34363cc4 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x34530c22 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x34536cf3 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x3468134b ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34876b8a max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x3491b1c2 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x34922f56 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x349b9b26 soc_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34d2bc6a clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x34d7d78c mtd_block_isreserved +EXPORT_SYMBOL_GPL vmlinux 0x34f6c9bb pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x350b2964 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL vmlinux 0x350ca27c register_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0x35118518 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x351eaecc kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x352e8be8 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3543b94e lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x357189c6 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35895d0e __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x358e703d device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35c54ca9 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361d9289 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x363ac802 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x365ec6e0 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x36673f77 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a628b4 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x36addf13 arm_iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36ea324e wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x370d6d82 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x37379943 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x373cde95 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL vmlinux 0x374040b4 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL vmlinux 0x374e8a7d key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x377d8cc3 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x3780cce4 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL vmlinux 0x379084bd pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37db4edc kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x37f3d49d __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x383d5c57 omap_dm_timer_set_load_start +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x384b4b2a of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x384eaff4 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38671cda usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x386b6a44 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38b7a613 omap_dm_timer_write_status +EXPORT_SYMBOL_GPL vmlinux 0x38b7adb3 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x38c9bebb sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x38cb4909 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x38d0d6b7 __get_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0x38e3ea6d usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38f35737 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x38f784e2 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x3910bcfd tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x39452318 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x39497ae9 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x396fec02 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x39920bfb subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x39a66f26 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f30a2c __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x39f8f8b9 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x3a23c55d devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a406a57 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x3a4d34ef fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a88deda inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x3a89f68e mtd_point +EXPORT_SYMBOL_GPL vmlinux 0x3a9a3faf regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab12603 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x3ab1584a crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x3abb0a4f pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3acaaa89 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3b005ed2 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x3b12738d tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x3b284dc6 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b5653a8 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0x3b87394b __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x3bc6b0ac __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x3bf1e48f mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x3bfa6694 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x3c133f91 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x3c2a36b6 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3c577110 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x3c63874f pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x3c729103 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x3c831441 arm_check_condition +EXPORT_SYMBOL_GPL vmlinux 0x3c847a13 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c939426 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3ca27767 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x3ca289ce stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3ca92e7a gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x3ca95242 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x3cad0577 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3ce9aa9f da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x3cfbb96b preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3cfeba16 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x3d0032c0 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x3d12b1b1 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x3d16f4d0 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x3d1aec5e ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x3d1ed89a pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d3ee5e3 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL vmlinux 0x3d4cb81c user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3d5fd622 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x3d80303f vchan_find_desc +EXPORT_SYMBOL_GPL vmlinux 0x3d931e40 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3da364fa ip6_flush_pending_frames +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 0x3ded6f42 snd_soc_bytes_info +EXPORT_SYMBOL_GPL vmlinux 0x3df64764 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x3df8a233 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x3e13176a wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3e1c0173 ip6_datagram_connect_v6_only +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 0x3e35a84e of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x3e35acf4 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e35ee69 deregister_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0x3e368cf2 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x3e38f2e8 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x3e410620 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3e416f5d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x3e45b672 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e8489bb gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x3e961d3c iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3e9ac852 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x3ec66423 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x3eceb629 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x3ed63044 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x3ef5e6e9 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x3ef6af10 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f066482 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x3f068570 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x3f33f693 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x3f664fa5 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x3f7009de sm501_modify_reg +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fb4cb86 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x3fb654a6 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x3fc45c72 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x3fc67508 mtd_panic_write +EXPORT_SYMBOL_GPL vmlinux 0x3fd02e16 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x3fd4223e led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3fd7c052 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x3fdf7fbf dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3fe10160 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x40222e5d of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4051d58f tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x4054926e serial8250_set_defaults +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 0x40835e04 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x40abfa54 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b0e94a usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x40b12226 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d769cb fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x40dbd373 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x411b5d93 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x412ed7e1 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x4133edab __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x413ac0bc led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x4146dc84 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4185c46b xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x41946be3 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x419d137b xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x41c5274c __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4207454a max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x4257d8bf irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4264aa84 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x4271fd1c of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x4281c388 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428eeb75 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x42cb6f4e snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL vmlinux 0x42da2889 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x42db6df4 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x42e7f5a7 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x42e97311 sdhci_pltfm_register +EXPORT_SYMBOL_GPL vmlinux 0x431ddab2 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x431e7d92 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4320c32e wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x432cbc80 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x434b4933 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x434cf051 ahci_reset_controller +EXPORT_SYMBOL_GPL vmlinux 0x434dd7d5 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x43688079 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x436de871 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x43982730 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x4399c916 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43a8236f pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43ee44b9 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL vmlinux 0x43eeecfb disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x43efd8bc usb_gadget_unmap_request +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x440cd0d4 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x440d9d81 iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x44199cb6 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x441de7f6 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x4420d67f scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x442524a5 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x443699b0 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x443a9c01 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x444f1735 cpu_pm_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x444fef23 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x446e7f22 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44b2d3a2 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bc29e2 snd_soc_write +EXPORT_SYMBOL_GPL vmlinux 0x44c11c08 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x44c44994 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x451cafb5 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4524dcc5 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x452d95a7 pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0x454c92af snd_pcm_stream_lock +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x459a6754 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x45ba1367 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c6f20b of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x45df22c8 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x45fe6258 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x45ff3e0c gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46066e5b perf_pmu_name +EXPORT_SYMBOL_GPL vmlinux 0x46071853 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x460e02cf init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x46214adb __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4633776e snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4643ef29 mtd_del_partition +EXPORT_SYMBOL_GPL vmlinux 0x465c35fd platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x465fb08f crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x46624b2a spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x46652b52 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x466e5342 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4672db36 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46998f11 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x46ab6b13 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x46af5727 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x46b1e5d4 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x46c07eac is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x46c19d22 omap_dm_timer_start +EXPORT_SYMBOL_GPL vmlinux 0x46c5c29a platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x46e94345 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x47005dca class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472d5f2e pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4734aa9e dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x4740da2d wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x47490cff __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x475b588d pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476db01f posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x4773e1bf clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x4775ccb6 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47ae55b4 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x47b0d809 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x47bbf73e nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e6a555 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x47ebab6d register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x47efaa4f component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x47f0870b device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x47f79705 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x4802b3cb snd_ctl_activate_id +EXPORT_SYMBOL_GPL vmlinux 0x482b9149 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x482f9e4d sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x4834112c snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +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 0x48accb56 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x48b9e92e dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x48c01820 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x48ef9dc1 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x49350871 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x49387d8d __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x4955a43e clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4964b78f swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49e4cdce usb_udc_attach_driver +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f1d0f7 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x4a0c07d5 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x4a120d63 of_genpd_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x4a31999c bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x4a4952b3 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a63f3b2 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4a6a927e ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x4a6bfa29 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x4a6e20c2 omap_dm_timer_read_counter +EXPORT_SYMBOL_GPL vmlinux 0x4a9c5bde lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab1a16b usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x4ab77350 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ace4e51 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x4ad09b70 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ad34e98 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x4ad39f69 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4ad7f9f6 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x4b078efb register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4b1ec72a ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x4b2c1beb vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x4b4658ed scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x4b4a12cc regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x4b5c74f7 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x4b792b43 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x4b7c8e00 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x4b8d68ca regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4b8db5ea balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x4bafcdd8 btree_update +EXPORT_SYMBOL_GPL vmlinux 0x4bbaf1fd regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x4bc759f3 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4bd10c7b ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x4be2d829 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x4be9ad2b musb_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x4bf118c3 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x4bf3a07d __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x4c186da3 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4c371a93 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x4c3776a8 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x4c47ec15 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x4c4dc15f ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c60873d inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x4c8abb48 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x4c8df23a usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x4c97b1cb blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x4cb38ad6 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x4cc0cb79 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x4cc370db unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x4ccb9e46 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x4ccf443e subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x4ce7dc25 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4ce8572b led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4cec2fc1 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x4cf9da73 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x4cfbbb0f sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d069724 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4d0bc2f4 mtd_block_isbad +EXPORT_SYMBOL_GPL vmlinux 0x4d2ecb29 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x4d38f1e0 bL_switcher_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4d43504c __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4d458458 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x4d4acc1a xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x4d5319b6 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL vmlinux 0x4d8ca86d sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x4d91a20c bgpio_init +EXPORT_SYMBOL_GPL vmlinux 0x4da3e701 omap_dm_timer_write_counter +EXPORT_SYMBOL_GPL vmlinux 0x4da41acd tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df364ca sdhci_get_of_property +EXPORT_SYMBOL_GPL vmlinux 0x4dfb8fe0 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x4dfbc512 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x4e085a68 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e1d3ef1 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2491f6 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x4e28452a gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x4e2b0169 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e411bff clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x4e4bbe60 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x4e5544cf usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x4e6d0483 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x4e7c3cdc vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x4e8071c2 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x4e86fad4 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x4e980179 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x4eae6519 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x4eb30cb7 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x4eb554f0 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x4ed1bc45 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x4eeaabda balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x4eeb7715 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x4ef14bbb ti_cm_get_macid +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4efda0ac syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4f06fd9e trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x4f1707d9 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x4f1ad5e4 snd_soc_bytes_get +EXPORT_SYMBOL_GPL vmlinux 0x4f254a30 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f348c26 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f98d766 cpu_pm_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fa385fe nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x4fae55a5 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x4fb51da6 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x4fb87a86 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe56db7 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4ffb117f mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5078728e x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x5080c352 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x50856739 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x50901b22 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a7ecf6 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x50ac097e devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x50af129d kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50ddc413 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x50e465aa aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x50fd11fd crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x50fd2173 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x5106326e ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x5107d543 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x51180fa6 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x511f7473 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x516eaf9b bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x517ec7bb dapm_regulator_event +EXPORT_SYMBOL_GPL vmlinux 0x518060d4 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x51855f81 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0x5187a0e6 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x5192025a dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x51a7a8fb __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x51a84be5 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x51dcb472 kvm_write_guest +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 0x523df8d7 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x5246950f wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5295ca0d usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x52a008e4 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x52a073e7 mount_mtd +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52bd5a28 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x5300956a skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x530fca8f crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x5337a01c page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x533bc29d snd_soc_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x53470f6e clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x534c104d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x538c67cd kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x539a5f4d inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x539c2a9a trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x53b5b25c cpsw_ale_control_get +EXPORT_SYMBOL_GPL vmlinux 0x53b61cde crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x53d591b9 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x53ec157f snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x53ee5dca vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x53f65fcc __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x5401f5c8 mbox_request_channel +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 0x5433955f desc_to_gpio +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 0x5483261b register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x54891e5c user_update +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54abe48f virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x54b955cc usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x54ccfd15 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54d59307 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x54d6bc3f dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x54f785e4 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x54fb7fe6 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x551cbd88 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x55206416 cpdma_ctlr_create +EXPORT_SYMBOL_GPL vmlinux 0x55221c57 tpmm_chip_alloc +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 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55b00155 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x55c1a719 sdhci_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x55c4cf3d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x55ee87ba tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x562d6abb perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x5641485b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x564a7216 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x565a16c1 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x565c2fbe of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5685b5ad crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x568cc051 security_kernel_fw_from_file +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 0x56df590f devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56e0afa8 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x56e6a6e8 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e9103b cpu_pm_enter +EXPORT_SYMBOL_GPL vmlinux 0x57131651 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5733dc34 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x57360abb crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x576189b8 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x576ae194 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579442d6 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57aa6d5e cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x57c1f051 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57ca3934 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x57f7458d spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x58063ede srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x580886f0 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x582691a8 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x58341201 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x58690388 omap_dm_timer_set_load +EXPORT_SYMBOL_GPL vmlinux 0x5882a9ab __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58ad8dc8 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL vmlinux 0x58b99f77 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x58b9c704 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x58c07173 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x58e4dc53 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x59032603 omap_dm_timer_request_specific +EXPORT_SYMBOL_GPL vmlinux 0x5916ccd7 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL vmlinux 0x592262dd ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x5926835e uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x592a8ed9 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x594170f3 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x598172b4 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x59b1a278 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x59c17ab0 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x59c4b1de max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x59d8b5d4 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x59e93804 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f7d1df device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x5a16c92a __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x5a1eacb3 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5a214a34 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x5a5e768b sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x5a63df44 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x5a6ded70 usb_disable_autosuspend +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 0x5a8f9297 nand_release +EXPORT_SYMBOL_GPL vmlinux 0x5ac1b3bc user_describe +EXPORT_SYMBOL_GPL vmlinux 0x5acf6567 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x5ae4e5f4 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x5af42901 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x5afa26c8 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5b09b81b pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x5b0e158c snd_soc_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x5b0fa795 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x5b149058 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x5b356251 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b39fe10 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5b3e9d1b wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x5b4abaf4 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x5b4b56be unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x5b55f702 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x5b59f21d usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x5b6362c0 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x5b86dbdf kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x5bb03cc3 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x5bb8ebf1 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x5bc55bf4 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf78e2f hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x5bfb77ca sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x5c0186a6 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x5c2fe4a5 cpdma_chan_stop +EXPORT_SYMBOL_GPL vmlinux 0x5c369a01 omap_dm_timer_set_prescaler +EXPORT_SYMBOL_GPL vmlinux 0x5c4046de ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c44e2f4 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5f1a74 sdhci_free_host +EXPORT_SYMBOL_GPL vmlinux 0x5c724709 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x5c7eeaea invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x5c9d46e7 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x5ca858b5 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc0df3e tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd7dae0 cpsw_ale_create +EXPORT_SYMBOL_GPL vmlinux 0x5cd99d46 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x5cf1a085 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d153a7a hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x5d2c3c00 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x5d2cc22c rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5d386c75 snd_soc_limit_volume +EXPORT_SYMBOL_GPL vmlinux 0x5d47325e fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x5d4e0eb9 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x5d64b238 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x5d69dbc1 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x5d6d72b9 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x5d6f5232 snd_soc_cnew +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db12537 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x5db4912b stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x5df6252d pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e08c665 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x5e0c2a65 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5e218aa9 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5e284835 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x5e296276 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x5e423505 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x5e514eee crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e543005 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x5e8a7c5e regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x5e8cdf66 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x5ee33119 ahci_platform_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5ef9e380 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5f19e574 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x5f57979e gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5f7cef66 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x5f83568e usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x5faa0674 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x5fb7717e dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5fccaa59 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x5fd12862 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x5fd19f4d tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x5fd1d56d ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601fa198 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60435bf4 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x604aef15 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6056b2bd get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x6072502d of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x6075d0c7 omap_tll_init +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a93930 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x60ad4aae ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL vmlinux 0x60b6d702 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x60bdbb4f clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0x60c4ec97 dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x60c8bef7 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x60cde565 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f22e81 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x60f88455 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x60f899f7 mtd_get_device_size +EXPORT_SYMBOL_GPL vmlinux 0x60fcbc6d do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x610c133b dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x610cda24 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x61110471 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x6144184d fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x614525bb ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x614dcd66 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x6157d294 usb_del_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0x6163dbd0 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x619993ba dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x619a22d6 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x61a40dc3 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x61c6c253 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x61e3a3b1 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x61f264e1 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x61fc1432 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x620dce8f sdhci_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x621472f2 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x621f4b11 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62345ec7 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x62413b25 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x6261c46c devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x62690252 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL vmlinux 0x627fa92e ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x6291397c ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x62964967 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x629e4527 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x62a8364f omap_mcbsp_st_add_controls +EXPORT_SYMBOL_GPL vmlinux 0x62cc85a5 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x62d9cce9 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x632d58bb snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x633e5e37 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x6391b2c7 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6411bfa8 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x642c53a8 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x642c662a pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x643f3756 pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x645c295f edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6465346c regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6466ea50 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x647537f3 pl320_ipc_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6497fb32 omap_dm_timer_set_int_enable +EXPORT_SYMBOL_GPL vmlinux 0x649e0a14 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x64a9ed25 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x64aa8529 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x64b91a26 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x64f011bd device_reset +EXPORT_SYMBOL_GPL vmlinux 0x651e2525 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x65256818 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x65427d72 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x654377da snd_soc_remove_platform +EXPORT_SYMBOL_GPL vmlinux 0x65537437 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6555ce18 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x655fcb8c icst_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x6567e67f napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x656f4d0b crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x657c7373 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x65815dcb sdhci_pltfm_free +EXPORT_SYMBOL_GPL vmlinux 0x65a52f54 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e28cde gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x65f4beb2 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x66130a77 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6619bff2 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x66446838 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x6661b8c4 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x666dac0b gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668b0f7e modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d4704f blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66d9293a rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6702f331 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL vmlinux 0x67076e6b platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x670d0058 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6719f201 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x67456b71 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x674587e0 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6781cccd devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a9e32b key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x67e007de devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x67e682f8 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x67e95b2c ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x67f78e2e omap_dm_timer_set_int_disable +EXPORT_SYMBOL_GPL vmlinux 0x682aecc7 device_create +EXPORT_SYMBOL_GPL vmlinux 0x6865430e ahci_init_controller +EXPORT_SYMBOL_GPL vmlinux 0x68780ee6 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x689628cc kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68ac4850 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x68aeee91 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x68b98fa0 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL vmlinux 0x68e47b2c cpdma_ctlr_destroy +EXPORT_SYMBOL_GPL vmlinux 0x68f63116 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x6901d6b1 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693c89ad crypto_init_ahash_spawn +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 0x694eed5b wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x695636de regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x69565aed pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x697c9738 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x699456f9 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x69af8e46 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x69b9aba7 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a2729eb debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a67eb72 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x6a83134e snd_soc_unregister_component +EXPORT_SYMBOL_GPL vmlinux 0x6a8c4149 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6ac2a33f ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6ac60601 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x6ace7f1d bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x6ae37fee wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6af4082f reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b3d6ee8 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x6b497317 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x6b5668bf crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x6b63dcee snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0x6b770f49 decode_bch +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b88e3eb snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL vmlinux 0x6b8fa505 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL vmlinux 0x6ba3c0fc __mtd_next_device +EXPORT_SYMBOL_GPL vmlinux 0x6bad6187 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x6beed27b relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x6c02c8a4 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0a03f0 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c41a459 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5a63c2 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x6c73073b vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x6c762464 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x6c82cfab register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c85ba33 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca50b16 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x6ca6103c reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cb3be82 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x6cc09745 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd900d2 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6cf340ef metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6d1fca42 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3c3aeb gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x6d424356 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x6d5f2c42 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6d9d15be mmput +EXPORT_SYMBOL_GPL vmlinux 0x6dc31252 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x6dc537b5 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x6dc745ba dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x6dcf8ae6 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x6dd670ec relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x6dd9ffca spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x6de7d2ba power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x6df55d5b __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0d19ac pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x6e16b977 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL vmlinux 0x6e1a7477 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6e3cd9ab devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6e4f3675 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7991a0 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x6e7acfb2 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x6e7bbae8 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e8aefe6 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x6ef1ad31 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6f170486 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x6f18fd46 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f2a5743 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x6f2c0b8c snd_soc_card_jack_new +EXPORT_SYMBOL_GPL vmlinux 0x6f335c7a pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0x6f35ebcf inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x6f5b945d part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x6f5c638f kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6f65ebd5 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fbb3bd9 init_rs_non_canonical +EXPORT_SYMBOL_GPL vmlinux 0x6fbf0320 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x6fd64c81 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff323d5 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffc2daa serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x7000807a of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x70151900 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x702e7e95 omap_iommu_restore_ctx +EXPORT_SYMBOL_GPL vmlinux 0x7032f8e8 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x7036dc0c securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x705116f9 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x706189c6 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70910be9 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x70a662aa __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x70b9d1e0 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x70b9fc1e regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x70bdad83 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70dbebda devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x71008581 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7137ecd7 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x714e3be7 md_run +EXPORT_SYMBOL_GPL vmlinux 0x715eb99c __of_genpd_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x7161bbb2 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71873eae regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x718f8d41 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a21344 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x71ba356c power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x71bf310f usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71ece1a4 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x71f2e57e noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x71f433e6 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x71fade16 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x71fb9c04 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x7211e110 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7216e06e pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x721d4775 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x72234dd6 musb_readw +EXPORT_SYMBOL_GPL vmlinux 0x7228e4b6 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x724b1f37 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x726d8b87 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x72733ae0 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727c499f extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7291019b __cci_control_port_by_index +EXPORT_SYMBOL_GPL vmlinux 0x72927a79 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x7296e670 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x72b9bc03 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x72c41ef6 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x72d0b9e8 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x72d4a115 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x7308a77f cpsw_ale_start +EXPORT_SYMBOL_GPL vmlinux 0x730bd0c7 asic3_write_register +EXPORT_SYMBOL_GPL vmlinux 0x731b718d wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x731fcc3d tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x7328f156 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x732fde1e pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x736b3c0d kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x7385f4a2 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x73892357 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x738ba7d0 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a4d090 arm_iommu_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x73a884dc ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x73b02f64 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73be2a6c irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73dfa482 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x73e113f1 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x73e7b174 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x73ef09ea max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x73f7f4b3 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x742ef4ef skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x7432a074 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x7457a738 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74904cc6 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x74a15824 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x74a8da35 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x74af323e sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74bb01bd devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x74bf3de4 cpsw_ale_destroy +EXPORT_SYMBOL_GPL vmlinux 0x74c7da28 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x751bcde7 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x7520e5cd driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7533d00c of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x7547ad93 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75ee4acf clk_register +EXPORT_SYMBOL_GPL vmlinux 0x75f648e1 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x761e0aca btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x76299681 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x764928a2 cpdma_chan_create +EXPORT_SYMBOL_GPL vmlinux 0x76495947 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x76550490 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x76744c64 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768ebbe5 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x769fc35a pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x76bbe73a ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x76bd0b51 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x76bd3278 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7710ea16 unregister_mtd_user +EXPORT_SYMBOL_GPL vmlinux 0x77244ea7 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77329348 ahci_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x773afca4 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x77567121 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77625298 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x7763441e vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x776d7241 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x7770b611 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77bb4a59 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x77cf56af usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x77d49158 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x7801f7c6 PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x7811d1a0 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x781ad63c debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x782a409b add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x783f35db sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x784d2acd mtd_add_partition +EXPORT_SYMBOL_GPL vmlinux 0x7856bb0a bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78652889 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x78a1aa82 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x78a3fbd9 pinconf_generic_dt_subnode_to_map +EXPORT_SYMBOL_GPL vmlinux 0x78aa33ff cci_ace_get_port +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78af6b6d snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL vmlinux 0x78c0632a omapdss_of_get_next_port +EXPORT_SYMBOL_GPL vmlinux 0x79290a35 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x793fda10 get_user_pages_fast +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 0x79533c7c snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0x7954530d swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x796932b3 mtd_is_locked +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x7982b549 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x79a2faf2 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x79b5fcec amba_apb_device_add_res +EXPORT_SYMBOL_GPL vmlinux 0x79d63346 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x79dd3746 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79f659ac __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x7a28ea63 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a2e6b8e to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x7a2f4278 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x7a2faae5 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x7a30f8d9 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a33c729 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x7a34c200 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x7a3679a7 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x7a8ab78c usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa0d5c6 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7aaa4569 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ada4059 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x7adfe4cb kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x7b0298d3 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b2f4558 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x7b4b3dac driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x7b537117 dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x7b5f368d subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7bdc3d47 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x7c01c138 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x7c6a49ce unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c986edd task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cc9442e dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd8dab2 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x7ce5c2b9 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x7ce8d497 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7ceb37bb fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x7cf499ce of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d2bd626 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7d359709 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL vmlinux 0x7d3a5119 usb_gadget_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7d4affc1 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x7d56b9f2 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5f36fb cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL vmlinux 0x7d709369 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x7d7260ba blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x7d776e72 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x7d8cc1b6 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc0cfbc snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL vmlinux 0x7dcc483f ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7e046819 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x7e096e22 ahci_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7e431b7a regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7e45e9e4 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7da61c iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x7e91429f blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e9ad118 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0x7e9f4939 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x7ea0940e ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x7ea12553 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x7eac58f6 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7ec8daef inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x7ed68941 asic3_read_register +EXPORT_SYMBOL_GPL vmlinux 0x7ed6f23d request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x7ed6f71f blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x7f1873d2 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x7f1faab1 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7f226b68 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f33093f nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x7f3514f0 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x7f3886d1 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x7f3ef32f kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x7f5105f0 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x7f6a6b2e of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x7f74af1c list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fbb5711 probes_decode_arm_table +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7ff50987 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x8010d2c6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x801fb62d devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x8056debf md_stop +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80698a68 pci_ioremap_io +EXPORT_SYMBOL_GPL vmlinux 0x80759a82 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL vmlinux 0x8078821b wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80919595 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x8099eb18 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x80b2102c regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x80b217da io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dd2c32 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x80dff402 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x80e74726 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x810bdeb9 input_class +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x812d85c9 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x81475909 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152324b fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x817c454f mtd_erase +EXPORT_SYMBOL_GPL vmlinux 0x817c4e02 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x818fb798 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x81960e17 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x81980095 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x81a4eb2d sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x81d04faf dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x81f1f269 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x81f64eba regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x820e2471 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x823f7423 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x82495dce virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x824d81de serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x82801d73 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x828ad957 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x828cee37 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x82b285fa srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x82b38f0a ahci_stop_engine +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dd6e42 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x83028298 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x832962ba tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x832979b8 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x83566e8a fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x836834dc key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x836fed83 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x8371b308 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x83850076 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83aea9fc ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x83bf0f25 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x83cb3716 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x83ccd0fe usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x83ce211e snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x840725fe regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x840d50b8 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x84382112 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x844712df perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x844b52db bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x8459ce6e regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x84681656 mtd_unlock +EXPORT_SYMBOL_GPL vmlinux 0x84688099 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x8477b428 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x8488b050 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x848aeb63 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x848af9a4 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x848bd0fb call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x849c4b5d mtd_read +EXPORT_SYMBOL_GPL vmlinux 0x84a20e09 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x84a455a8 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b54c4e usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x850261f6 device_property_read_u8_array +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 0x8534da8a dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x85360c42 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x856d5d28 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x85884d88 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x8589c963 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x85969e94 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x85bfe2c2 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85cc0890 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x85de6975 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x860256de disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8613b3e0 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861665e0 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x861f63b6 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x862b9816 cpu_topology +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x86599cbd kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x8665ebc7 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x868fece5 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL vmlinux 0x86bdcbfc ahci_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x86c2902b power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x86da8cf6 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x86e4c4b5 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0x86eb86c8 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f284dd wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x86f6b99d synchronize_rcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x86f6e757 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x86f8c910 pcap_set_ts_bits +EXPORT_SYMBOL_GPL vmlinux 0x8717007f iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x8717df8b __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x872078cc crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x8732a4ab crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x8733f0a3 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x876b66f4 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x877c2a80 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x878c4406 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x87970e0e pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x879ef766 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x87c0ed5a security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x87c276ca ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x87ceb85c led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x87cfa8cf __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x87eeb9a7 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x87f11a90 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x8803cae6 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8829a66e pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8843fd97 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x88486667 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x887f1a52 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x887f8465 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x88981217 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x8898e54d sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x889c057c mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b73261 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x88bbbb4c pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x88c8da9a inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x88cedb6d snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL vmlinux 0x88d5c38f usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89267c9b ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x893698bc dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x89455220 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8964ff3a get_device +EXPORT_SYMBOL_GPL vmlinux 0x897244e0 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x89a92b81 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d4fa21 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x8a18fc19 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8a3e1527 gpiod_is_active_low +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 0x8a9a59e7 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac09c7b arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ae86856 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x8aeba12e ahci_platform_enable_resources +EXPORT_SYMBOL_GPL vmlinux 0x8aec9745 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x8aef51c0 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x8af3334f devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8afe7f0d snd_soc_lookup_platform +EXPORT_SYMBOL_GPL vmlinux 0x8b002f40 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b1ffcf2 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x8b27fe3c pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x8b3c8b96 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x8b431312 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x8b775d3a __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x8b798616 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x8b7b3310 pci_stop_and_remove_bus_device_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 0x8bad8896 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL vmlinux 0x8bb3fab5 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x8bb439b8 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x8bce6357 snd_soc_info_volsw +EXPORT_SYMBOL_GPL vmlinux 0x8bfc71d4 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c27fb2a l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8c3926d7 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x8c5ae2cc digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x8c60fb82 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x8c61345b ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c8781e4 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x8c8b990f dapm_clock_event +EXPORT_SYMBOL_GPL vmlinux 0x8ccbb4f8 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8ce5cfef virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2f8b09 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL vmlinux 0x8d3e3196 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x8d58fc0a tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x8d5f0ba4 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x8d85517f dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x8d9da2ca of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8da9d9a5 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x8db459cd md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x8db5ef5c __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x8dc6feb7 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x8ddec3f3 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8de2febd pci_disable_pcie_error_reporting +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 0x8e3d3dee thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8e3e8f5a __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x8e42e821 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8e578959 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8e6d3ea7 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x8e7894bd __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8e9a283c kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x8ea31a60 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8ef46d6d pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f262eb0 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8f3a597c da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x8f4b6e8a crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x8f5a5526 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f8471c3 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x8f95d053 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x8fb06179 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x8fb69a3a mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fbf7836 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x8fd2a805 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x8fd77583 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8fed1249 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x8ffe1ec2 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL vmlinux 0x90315c2b list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90430e58 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x9047c11a trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x9049605d mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x9060664e gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x9084dd92 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a140f3 sm501_unit_power +EXPORT_SYMBOL_GPL vmlinux 0x90ba9625 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x90f5e31d regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x910a9d74 find_module +EXPORT_SYMBOL_GPL vmlinux 0x910d9638 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x91212ad7 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x91399937 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL vmlinux 0x9146c211 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x914978fe cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x914a2488 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x9177c0d5 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x917e9588 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x918abc6f i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x919932b0 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x919bfe07 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c70cd5 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91d4c1fc max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x91e8f640 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x91eabee9 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL vmlinux 0x91f08fae iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x920b73c5 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x923a3c19 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x923c20b7 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x92514a1e usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x92652448 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x926fac8c page_endio +EXPORT_SYMBOL_GPL vmlinux 0x927cdec8 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x928f6e16 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x92a9911c security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x92accbf3 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92cbad2d regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9319fcef iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9324132f crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x93333622 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x935f2c70 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x937c488f pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x93a3a4da __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x93b4521a pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x93b86025 user_read +EXPORT_SYMBOL_GPL vmlinux 0x93c25b93 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x93c3f3d5 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x93d3b951 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x93d55375 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x93e0066b xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x93ea1596 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x93f7c23c ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x93fa8853 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x94077f3a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x94379034 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x945da316 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x9463ff71 init_bch +EXPORT_SYMBOL_GPL vmlinux 0x9479acd2 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x947d5701 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9492c096 pm_genpd_syscore_poweron +EXPORT_SYMBOL_GPL vmlinux 0x949334db cpdma_ctlr_start +EXPORT_SYMBOL_GPL vmlinux 0x949f49e5 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94b48f66 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x94b5c69a swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x94bc43d7 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x94f03686 omap_dm_timer_request_by_node +EXPORT_SYMBOL_GPL vmlinux 0x94f82d9c elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94fad515 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x94fffdf7 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x9503f505 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9505db2d get_mtd_device_nm +EXPORT_SYMBOL_GPL vmlinux 0x9509db2e pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x9533db87 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954a238a tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x954ec530 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x955af1eb synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956762f8 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x956be367 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9572407a gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x95768c69 gfn_to_pfn +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 0x958edfb0 sdhci_reset +EXPORT_SYMBOL_GPL vmlinux 0x95a5fc03 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x95ae9e2b tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c5490c ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x95ee1598 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL vmlinux 0x95fe508d bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x95ff7f3c sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9609b6e9 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x9610f757 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9623e456 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x962d0a20 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x963a35ed invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9671abaa platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x967a61a1 snd_soc_jack_report +EXPORT_SYMBOL_GPL vmlinux 0x967bc4ff __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x967ccdb5 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL vmlinux 0x9682cbfc iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x96919667 musb_readl +EXPORT_SYMBOL_GPL vmlinux 0x969c100b i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x96a79112 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x96b944bb regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x96c67a38 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x96e56074 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x96e6e210 dt_init_idle_driver +EXPORT_SYMBOL_GPL vmlinux 0x96ebed3e mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x96f5a074 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x97005129 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL vmlinux 0x9714782a regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x973040c2 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9744cb77 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9768c215 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL vmlinux 0x9775b6ad ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x97a2ccd0 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x97ad207d get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x97b9d1f8 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x97c49c86 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97f18388 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x981c0d73 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x981fbbe4 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x98336f9c devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9847253a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x98498e5e ata_bmdma_error_handler +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 0x988f63d4 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98a02bda mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x98c9f584 klist_init +EXPORT_SYMBOL_GPL vmlinux 0x98d9105d device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x98e45258 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x98e51c2e skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x98f363da sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x98f9f7ca do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x9911bfdb pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x9913b65a dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9937bd8b class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x993d08ef mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x993eb2fd usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x99523ff9 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x9956e161 omapdss_of_get_first_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995db1da arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x99753f24 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x9978addf device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x998520dd skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x99867928 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x99888cb8 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x998b4cd9 omap_dm_timer_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x99b1384d tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x99b893e9 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99cab1ee usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x99d9fb56 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x99e1cb41 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x9a055588 ahci_start_fis_rx +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a2a910e ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x9a394c99 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL vmlinux 0x9a450fd4 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL vmlinux 0x9a59317d netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x9a65c709 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aa56262 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9ab32c3e rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x9ab8d8a6 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x9abccbd7 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9adb51ff usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x9adc443a pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af3d042 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x9b0e288d gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x9b382711 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x9b4c3fbf nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x9b70d2b4 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x9b818576 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x9b855c66 ahci_handle_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x9b86a1ca __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x9b91ca97 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ba010f1 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL vmlinux 0x9bb6ca05 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x9bc0a689 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x9bcb3dbf inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bfacf9d sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x9c1beb3e snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL vmlinux 0x9c1ef675 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x9c335757 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x9c34345e snd_soc_test_bits +EXPORT_SYMBOL_GPL vmlinux 0x9c3c4f07 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x9c3e5b59 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c5552f6 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x9c68f510 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9c69bf3f mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x9c703d24 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL vmlinux 0x9c71059b pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x9c742ee2 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL vmlinux 0x9c80c412 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x9c8cd453 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x9c8ded89 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x9cc21f5d pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x9cc31a14 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cdc9867 cpdma_ctlr_stop +EXPORT_SYMBOL_GPL vmlinux 0x9ce07e6d pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x9cebfe96 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9d365c9c register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x9d52b7d1 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x9d6fbc71 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x9d746094 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0x9d7693c8 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8406dd fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x9d9adeef xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9da41c63 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x9da84f05 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9daf386f tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9de6752a __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9dfff164 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9e001b9d iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x9e1372f7 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x9e2aa6f7 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x9e2f5ba3 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x9e462fd0 sdhci_alloc_host +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e50917d blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x9e603c40 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x9e6af90c ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x9e860804 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0x9e8c9d37 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x9e99ecd8 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9ea556f8 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee73b80 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x9ef2bce8 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9ef951bb usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x9f088145 cpsw_phy_sel +EXPORT_SYMBOL_GPL vmlinux 0x9f30f796 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x9f54be86 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x9f6f025b xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x9fb3fe04 ahci_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x9fbacc71 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fda489a tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fed36ca sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x9fff09e8 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xa013a9cf init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa033df40 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0xa03ba704 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xa03d760f of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0xa0437cc9 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xa05ccb34 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa06867ed spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xa0844cda virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xa086df9e raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xa09f341c get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xa0a1ff58 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xa0a52428 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa0b017b5 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xa0bf5116 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xa1248841 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xa1438882 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa14e1fec ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa1723d3d __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa188ebc0 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa197d721 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xa1b23abe crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xa1c8f38a sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xa1d9f1ed metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xa1e7abd0 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xa2153e22 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xa223f7ce sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0xa2548b7c scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xa262a46b usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xa2679ea5 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2780f4b dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2d7e373 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xa2d866a1 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xa2d96833 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xa2ef27d2 snd_device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xa2f4041a tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xa3199328 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xa31a82bb tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xa3238bc0 gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xa32561f3 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xa3316b35 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xa346c08e virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xa34c7ac5 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xa34fdec6 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xa352779a snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL vmlinux 0xa35a43dc usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xa363b836 amba_device_add +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 0xa3a7d186 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xa3b1aa05 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3ba0b84 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xa3e31435 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xa3e4c004 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa401d1df crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa430fa89 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa43ece06 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa45a9bf4 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa45f337d tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4697249 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xa47395c3 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa484a7ae power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xa4a02b56 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xa5087af8 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0xa54fcff3 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa5661b37 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa5690a7b device_attach +EXPORT_SYMBOL_GPL vmlinux 0xa57d112f pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xa58bf63d __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa5913296 arm_iommu_release_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa5a1d273 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xa5ae7dfb device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f8854a usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xa6057ec4 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xa6235e98 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa671199a driver_find +EXPORT_SYMBOL_GPL vmlinux 0xa67a7c64 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xa67b8c35 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xa6a69ed8 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e43b26 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xa6e7c281 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xa6f5e629 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xa6fee791 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa708c2c5 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xa733b51a ahci_ops +EXPORT_SYMBOL_GPL vmlinux 0xa73d0a6b devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xa78eb7dc sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xa7d8ea75 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa7df32d8 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0xa7ffc2c0 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xa8116c9e pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa83172ab pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xa8517e3a to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa851ec26 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa856cdf8 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xa8684660 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xa8685820 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL vmlinux 0xa87eaad4 omap_dm_timer_request_by_cap +EXPORT_SYMBOL_GPL vmlinux 0xa896c368 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bc717e percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xa8c50190 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa8c8db87 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xa8cd5f1f ahci_shost_attrs +EXPORT_SYMBOL_GPL vmlinux 0xa8e6ee78 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xa8e98132 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xa906af44 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa92f19aa rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9364ff2 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xa94478d8 mv_mbus_dram_info_nooverlap +EXPORT_SYMBOL_GPL vmlinux 0xa95a4aff regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xa96d7476 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xa9793431 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xa992c0c4 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9c74b52 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa9d65731 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0xa9e05660 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9e4d67f led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xa9e59bf7 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xaa0c1267 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xaa17f0c8 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xaa29afa0 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa2caa41 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xaa2d9ef3 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xaa2e0c7c of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xaa3201a0 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xaa44acff omap_tll_disable +EXPORT_SYMBOL_GPL vmlinux 0xaa5d084d devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL vmlinux 0xaa5e5b64 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xaa8d22a3 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaabe8726 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xaac8a723 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaadaf81c usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xaae48745 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0xaaf2c2bd gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xab22bc67 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xab2bdddb bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xab3ed7e4 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xab465486 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab5fee79 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab6f87c5 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xab78dc0f irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xab7bd9b5 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL vmlinux 0xab8d307d netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab978a95 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xab9ae209 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xaba9408e snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL vmlinux 0xabb18eca adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcea34c skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xabda1e2e decode_rs16 +EXPORT_SYMBOL_GPL vmlinux 0xabfd77d8 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xac13442b device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xac244757 device_add +EXPORT_SYMBOL_GPL vmlinux 0xac4ff14f powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xac5016c4 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xac5f3d70 musb_readb +EXPORT_SYMBOL_GPL vmlinux 0xac6f8dd2 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xac72c13b input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xac7ddae1 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xac8a2ec4 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xac8b350b regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xacc1f4f3 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xace226b0 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacf6284d ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xad0634f0 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xad11cb5f ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xad18904b ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xad1e77bf irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xad2952cd input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xad3e66ab snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL vmlinux 0xad3f0997 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xad464bd5 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xad510948 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xad9408c4 usb_gadget_map_request +EXPORT_SYMBOL_GPL vmlinux 0xad942ed0 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL vmlinux 0xad9cde8a ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xada1d929 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xadbca3f0 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadce535b ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xadd03ae7 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xaded8504 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae00cf01 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xae0dbdde i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xae17dd95 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xae247e82 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xae47c73d crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xae5d3b85 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xae5f0df8 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae719f6e of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xae740105 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae8a14e4 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL vmlinux 0xae9f9d59 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0xaeadff85 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xaed6f192 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL vmlinux 0xaf01581d device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xaf12bfb3 tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xaf13163e debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xaf348da7 cpu_pm_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf4bd9d9 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xaf51d137 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xaf6090d5 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xaf8afd29 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xafa21c20 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xafacd0ff clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xafc228d2 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xafc8d7fa wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xafd06397 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xafe79de1 snd_pcm_hw_constraint_eld +EXPORT_SYMBOL_GPL vmlinux 0xaff114be devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xaff577b7 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb0128a78 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xb0166087 dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xb02e709d pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0xb036c3bc ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xb03f605d sdhci_add_host +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 0xb05a3a3e scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0797420 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xb099c74e pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xb0b81398 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0bd1ec4 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xb0c2a122 __of_genpd_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xb106079f ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb11625b9 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb11705b7 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xb1203ee8 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb12065e3 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xb12334d8 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL vmlinux 0xb125ceb2 cpdma_control_set +EXPORT_SYMBOL_GPL vmlinux 0xb1311d32 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xb13df518 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb155c675 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xb16cbf7f fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xb16e1e1b iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b5942c ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c4dcbe phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb1c77d9a irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xb1d21e78 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f44765 put_device +EXPORT_SYMBOL_GPL vmlinux 0xb2050d2f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xb20d1c50 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb228c7cf phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xb229bfe1 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xb22c34b2 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xb23e14db spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xb261a555 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2716e20 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xb2940d76 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xb29ac415 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xb2e15304 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb319fcb3 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xb323a646 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xb33428fe vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xb35035a1 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xb35f1d71 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xb36eb02b xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xb38443d6 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xb3930712 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xb3a5d880 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xb3a8f126 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xb3abd3fb of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb3bc1a6d pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0xb3e6938c ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb4009aa7 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xb40c6376 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb41d299a snd_soc_component_read +EXPORT_SYMBOL_GPL vmlinux 0xb4215e7a cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xb42e9157 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xb43137a6 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb431cf43 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb444ecf2 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xb47ec6ce regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xb4a8e832 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xb4aed59d devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xb4b97529 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4cf0322 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb4e2f38b transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ed076d __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xb4f4dbf0 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xb4fa486a fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xb4fd8e44 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xb4ff688d pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb532dd48 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb543fcac usb_add_gadget_udc +EXPORT_SYMBOL_GPL vmlinux 0xb54e2dd9 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5aca2d2 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL vmlinux 0xb5af84ec uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xb5c51d38 watchdog_register_device +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 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb62ff8c5 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xb64a3912 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xb685f68f regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xb68d40fb extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xb68fe10e del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xb6a82a08 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb6abd8d1 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xb6abf1ff nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6dea705 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb744ed58 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0xb744ef3b mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xb74bfae0 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb7695746 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xb771e6b7 bL_switch_request_cb +EXPORT_SYMBOL_GPL vmlinux 0xb77cb0a8 cpdma_chan_submit +EXPORT_SYMBOL_GPL vmlinux 0xb7975ef1 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xb7ac5d80 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb7be39b6 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL vmlinux 0xb7de1211 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xb7e07fd6 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb7ede2e5 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb80b06f4 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb82566eb omap_tll_enable +EXPORT_SYMBOL_GPL vmlinux 0xb8257cc0 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb82ab50f unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb8346aeb percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb847e847 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8908d48 device_del +EXPORT_SYMBOL_GPL vmlinux 0xb89a7037 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e607ff __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xb8e7ec1a thermal_zone_device_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 0xb9319412 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb934c6b5 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xb97e6dda ahci_platform_resume +EXPORT_SYMBOL_GPL vmlinux 0xb9853d45 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL vmlinux 0xb9914659 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xb992af78 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xb9ae9f23 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cebf29 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL vmlinux 0xb9cefd0b sm501_set_clock +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9df8dd4 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xb9e87b94 bL_switcher_trace_trigger +EXPORT_SYMBOL_GPL vmlinux 0xb9f3d53a pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xb9fcf26d tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xba0efaf9 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL vmlinux 0xba113fda mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xba29a5e1 omapdss_of_get_next_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba41bdc6 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba43e22b pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xba597654 of_css +EXPORT_SYMBOL_GPL vmlinux 0xba765423 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xba80b018 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba9e703e blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac27aa8 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL vmlinux 0xbad80337 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbae405ba __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xbaee934d ata_port_abort +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 0xbb11cfba klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xbb1452b0 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xbb1fa363 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xbb3b2626 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbb409bb5 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xbb4c7570 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbb72c91b dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbb8de817 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xbb9e2ab5 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xbba9cbde spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xbbca19c2 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL vmlinux 0xbbd278da skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0xbbd584c7 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xbbdb0a6c cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbbe1e717 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xbbf33470 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbc0cc1d1 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc16f315 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0xbc39f7eb crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xbc450614 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0xbc46dc25 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc4a2436 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL vmlinux 0xbc4c3728 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc9c9e21 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xbca37eb8 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcb81c50 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbcbaa80a __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0xbcc296da inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce9ae07 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xbcf12c4f sdhci_set_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xbcf89ab6 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0xbd23e6da spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xbd2f51fb clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd471c70 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xbd48da53 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xbd4a730e crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xbd4e73a5 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd667795 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xbd6b3eee ref_module +EXPORT_SYMBOL_GPL vmlinux 0xbd6f7857 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xbd910d14 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd5733e regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xbdf512de free_bch +EXPORT_SYMBOL_GPL vmlinux 0xbe0ca6e0 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe227a34 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xbe25496a vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xbe386943 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbe4fc421 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xbe5d7a5e amba_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe67e932 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xbe682be8 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6e6f36 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xbe81c92d __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea1bf3a n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbed2885b of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbee93565 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xbee9789d smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xbef14a47 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xbef3a157 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xbefb2e9f ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xbf0302e4 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf047417 sm501_misc_control +EXPORT_SYMBOL_GPL vmlinux 0xbf367ccb ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xbfb66360 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfbcddf8 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbfe43c61 i2c_slave_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc01f73b7 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xc0295e9b sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xc035144d mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xc03a654b memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc05996bf dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xc05c156a fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xc05d3870 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc06fa015 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xc07fc24c regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xc081c246 bL_switcher_put_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc083ae85 cpsw_ale_dump +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08da465 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xc0918a0e cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xc092de29 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xc099cb0f debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0af9de0 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xc0cafbcc aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d6382f swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xc0d8308b dev_pm_qos_add_notifier +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 0xc107a6fa mtd_is_partition +EXPORT_SYMBOL_GPL vmlinux 0xc120f78b snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc12f647b __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc13dfd2c xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xc15046cf shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18d3b1c kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc199128f snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL vmlinux 0xc1a4aaa8 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xc1bced6a cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc1c72069 device_move +EXPORT_SYMBOL_GPL vmlinux 0xc1c896d2 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xc1deb243 hwmon_device_unregister +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 0xc2787666 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2af0c0e ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc2cc0db2 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2eaa1bc nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc31cdd7c file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xc32d4345 sdhci_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xc32e7129 of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xc33402d3 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xc3404357 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc3448fe3 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xc36c0d0e component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL_GPL vmlinux 0xc3977b53 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL vmlinux 0xc397f847 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xc39ab5ab crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xc3a8d305 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xc3b93bba klist_next +EXPORT_SYMBOL_GPL vmlinux 0xc3c5d1e9 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3cd1e32 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xc3d886f8 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xc3fb28fe flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xc41e0178 btree_last +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc43b3cd6 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc461f741 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xc464a6b6 bsg_request_fn +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 0xc4aa4dbd snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL vmlinux 0xc4aad0d5 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xc4bb4c14 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xc4bcd258 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xc4c3ed92 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xc4c6d392 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4db5c93 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4f36702 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xc509d0dc snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL vmlinux 0xc512bef0 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xc521e143 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xc53812bc device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc540005c snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL vmlinux 0xc541b262 snd_soc_dapm_kcontrol_dapm +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 0xc5732e39 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc57651ad dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xc57c7f1b pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xc57d1828 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xc589261f blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xc5c05d8a ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xc5cc65a0 crypto_alloc_base +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 0xc5e6e76e l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xc60e8e04 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +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 0xc6743501 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc685c037 cpdma_check_free_tx_desc +EXPORT_SYMBOL_GPL vmlinux 0xc68e0382 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a3775a rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6a94c68 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xc70917d1 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xc71aa1f8 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc736fa7d devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xc746d974 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xc7589151 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc786e529 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xc79b14c3 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7bd3a28 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7ede5b6 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc805a35c snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL vmlinux 0xc80e504d ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xc8263e7e kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL vmlinux 0xc8276979 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc82cf955 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xc835de72 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xc854fbfd devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xc85c5d8b kick_process +EXPORT_SYMBOL_GPL vmlinux 0xc861b114 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xc866322a kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xc86e653c debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc8898456 sm501_find_clock +EXPORT_SYMBOL_GPL vmlinux 0xc897bfb6 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b0d63b __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xc8bc6548 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8fbd55c snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc93053a8 pci_fixup_irqs +EXPORT_SYMBOL_GPL vmlinux 0xc93f1c6d rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xc94b57c6 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95b3fd6 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc95ec1af ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc968081e __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc982deea usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9f06499 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL vmlinux 0xc9f5df6b virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xc9f882bd usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xca2cf7f3 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL vmlinux 0xca2de843 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xca33809d mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xca3c3a95 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xca40d5a8 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xca4697c2 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xca5ab048 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xca67ce59 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca9a1531 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xcaa210d4 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xcab8a160 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xcabe0342 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcb118096 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb208482 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4ecea8 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xcb58d64d ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xcb62a8e3 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb65b506 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xcb7e4d37 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xcb8b0e6a fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xcb9d55bb i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0xcba27708 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xcba72686 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL vmlinux 0xcbb823e7 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xcbd09a53 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xcbdb073d __cci_control_port_by_device +EXPORT_SYMBOL_GPL vmlinux 0xcbe37efc vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbeebd53 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcc078420 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xcc136fe2 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcc3c15a8 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xcc753c49 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc90ec64 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xcccab019 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd2c0bd device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xccd7dd4f inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xccdc1560 kill_mtd_super +EXPORT_SYMBOL_GPL vmlinux 0xccdf2e12 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xcce441f9 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xccef226a da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xcd0daeb8 split_page +EXPORT_SYMBOL_GPL vmlinux 0xcd0e9d03 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xcd0f0fce pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xcd0fd7dc snd_soc_platform_write +EXPORT_SYMBOL_GPL vmlinux 0xcd3b7b63 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xcd48f875 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xcd51b6bf ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xcd5b5d33 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xcd5c7b16 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xcd6c6401 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xcd6ef2da devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcd87d826 omap_dm_timer_stop +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd974f00 rcu_all_qs +EXPORT_SYMBOL_GPL vmlinux 0xcd986b35 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcdb1e37c inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xce0b0c40 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xce11dce3 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xce41d01b iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce72a887 snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0xce773774 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL vmlinux 0xce7e3429 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xce9dbb42 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xcea60075 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xcea9c052 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xceb66340 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcee548ad ahci_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xcef9b49b pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xcf010b64 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xcf083800 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xcf087db0 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xcf09144c usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xcf0b2a1f usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xcf0bbc11 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xcf2bc0dc spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xcf3967e4 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xcf5229b1 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf7a0860 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xcf8f8d56 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xcfa4913e omap_iommu_save_ctx +EXPORT_SYMBOL_GPL vmlinux 0xcfaa5594 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfdbed74 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xcfe6297f of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xcfe79c2d usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd01e3da9 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xd023da79 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xd027b86e blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xd0362bc8 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd0369627 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xd037bb97 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd03e3f90 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xd04092b6 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xd04559c5 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xd05c96ee dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0814e86 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd08265ba gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xd090a3ca vchan_tx_submit +EXPORT_SYMBOL_GPL vmlinux 0xd0aa8480 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd0b72fe5 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c8095a dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xd0ce4b0a snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL vmlinux 0xd0da288b of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xd0de1625 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd1080862 i2c_slave_register +EXPORT_SYMBOL_GPL vmlinux 0xd11caee4 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL vmlinux 0xd12205da dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xd123dc54 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL vmlinux 0xd12428bf virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd131e62f trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd168afbe unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd16aa5ba of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xd17d514d of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd1860ca6 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xd1a964e2 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd1bf08e0 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xd1c5f430 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xd1cb984c get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xd1f0a011 usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20b2c75 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd214fa07 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd2458289 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xd245c402 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xd25a3463 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xd267d78f ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27fbba8 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL vmlinux 0xd29322f6 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd2a5fc03 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2bad70d tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xd2bfd383 unregister_pernet_subsys +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 0xd30f8442 omap_dm_timer_free +EXPORT_SYMBOL_GPL vmlinux 0xd33ada8b cci_probed +EXPORT_SYMBOL_GPL vmlinux 0xd3a0ec71 ahci_kick_engine +EXPORT_SYMBOL_GPL vmlinux 0xd3aa8e06 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3bd6456 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xd3c365bd otg_ulpi_create +EXPORT_SYMBOL_GPL vmlinux 0xd3cb7495 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xd3d9e212 mtd_writev +EXPORT_SYMBOL_GPL vmlinux 0xd3e4bc9e __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xd3e97c21 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd3fd5fa2 genpd_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xd400993f ata_sff_thaw +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 0xd4223499 posix_timer_event +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 0xd464861f subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4722955 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xd47bf69d phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xd4888420 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd4a0b1ed __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d8e71b wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xd4dec1a7 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL vmlinux 0xd4e689dc ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL vmlinux 0xd4ec4bb4 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xd4ed573c extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xd50430d7 omap_dm_timer_read_status +EXPORT_SYMBOL_GPL vmlinux 0xd51cbe6b ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xd53da4e3 omap_dm_timers_active +EXPORT_SYMBOL_GPL vmlinux 0xd559c790 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd55fbee3 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd566fcee blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xd56ef9e7 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd5923816 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xd592a77f snd_soc_component_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xd593ae7b kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xd5a66e69 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xd5a87b38 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xd5abd9be platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5beb682 ahci_save_initial_config +EXPORT_SYMBOL_GPL vmlinux 0xd5caf265 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd5e8e76b tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd60b257e nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd64af793 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL vmlinux 0xd6520c06 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd65a41e9 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6a2533b of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0xd6a8bf03 pm_genpd_remove_subdomain +EXPORT_SYMBOL_GPL vmlinux 0xd6ab1bb1 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xd6daec26 mtd_lock +EXPORT_SYMBOL_GPL vmlinux 0xd6de30d1 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xd6ef9a2f rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd6f5d864 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0xd6f67c81 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7094ad5 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xd73f6e54 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xd75763d5 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd779ffed rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd79859e7 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xd7a7d04a serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xd7cd7a6d kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7dda865 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd83681dc snd_soc_unregister_platform +EXPORT_SYMBOL_GPL vmlinux 0xd8559a2f platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xd85949ff __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xd865f998 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd8777459 omap_dm_timer_enable +EXPORT_SYMBOL_GPL vmlinux 0xd878587a usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8a9ed63 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xd8b57b0a irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xd8b8aa08 spi_async +EXPORT_SYMBOL_GPL vmlinux 0xd8bedbeb netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xd92cfe6f pm_genpd_init +EXPORT_SYMBOL_GPL vmlinux 0xd93c098d dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xd93f47e7 amba_ahb_device_add +EXPORT_SYMBOL_GPL vmlinux 0xd941aa7b __pm_runtime_resume +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 0xd972641c ahci_platform_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xd975b998 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xd98a69fb phy_put +EXPORT_SYMBOL_GPL vmlinux 0xd9d01561 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xd9d0799f sdhci_pltfm_init +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9fae661 pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0xda3e8019 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0xda5c098d ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xda74489c policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0xda78d7be phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xda7a521f regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xdaa614a1 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xdab2878a of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xdabda711 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xdac0989a ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xdace92b7 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaeeedbd mtd_unpoint +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf7299c pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb019e50 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb102973 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xdb1638f7 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb5d466a bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xdb6e2bf5 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xdb74e8d5 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0xdb7a2818 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xdb86c471 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb91c419 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xdb9a19d3 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xdb9d72da usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xdba631a6 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdba94704 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdbd3d211 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdbdcb406 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xdbea1168 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xdbebe3b1 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc3e223f virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc66bca7 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xdc6b590e spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xdc7c192d sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xdc7d92e3 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc87e507 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcbd20eb ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xdcbe5fc5 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcd55222 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xdce35ebd devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xdce928a7 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdcf054f4 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xdcf1b4ca ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdcfa238e smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xdcff1977 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xdd0cdca3 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd1fbe04 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd3d3272 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xdd5f9d3e single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xdd8c4a6b pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xdd917338 ata_std_qc_defer +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 0xddec9453 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xde02e755 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xde0c42cc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xde2eff40 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde481860 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xde54e2ac usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xde651f98 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xde680c5f crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xde6a9575 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xde6bda69 component_del +EXPORT_SYMBOL_GPL vmlinux 0xde6f2215 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xde7625ba omap_dm_timer_disable +EXPORT_SYMBOL_GPL vmlinux 0xde7f57cf list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xde931482 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xde993299 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xded53508 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf255dcf memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdf266f3c wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xdf2f6120 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xdf46768e ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xdf701d7a ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL vmlinux 0xdf979ee2 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0xdfb2ef7c crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xdfb54ea2 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0xdfdb777e blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdfe857a9 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdfee912c mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xdff421d3 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xdff4adae snd_ac97_reset +EXPORT_SYMBOL_GPL vmlinux 0xdffc6677 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe0102f03 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xe01c396d omapdss_of_find_source_for_first_ep +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe030ad08 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe04496e1 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe04a5d35 ahci_start_engine +EXPORT_SYMBOL_GPL vmlinux 0xe0542640 pinctrl_pm_select_default_state +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 0xe086a787 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xe08f5cad register_mtd_parser +EXPORT_SYMBOL_GPL vmlinux 0xe0a555cc ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xe0ad6df8 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b2644b of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0xe0c17bc0 list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xe0d7e9db screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xe0eebe6a sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xe1067c15 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xe11e6664 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xe11e7e45 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xe13499cb scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xe1460166 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe14b5a9a component_add +EXPORT_SYMBOL_GPL vmlinux 0xe14eefb6 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xe173c0f8 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1adfa66 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xe1afe3ca pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xe1e22f42 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xe20ac202 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xe213d43a list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xe21e2013 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xe22635af snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL vmlinux 0xe23dc776 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xe262165a pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xe26ce9e1 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2b468e3 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe2d85d51 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe2ddfbda devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xe2e68e17 omap_pcm_platform_register +EXPORT_SYMBOL_GPL vmlinux 0xe2eae125 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xe2ee6d96 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe34285e6 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xe3af3131 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xe3d6d5aa __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xe3eba22d inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xe3f5f922 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xe3f953b1 cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe3fbd9b9 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xe40acab9 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xe42e1f70 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44d09b2 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4925320 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a39913 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xe4b3f59d pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe4b72223 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xe4c22565 cpdma_chan_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4d5cd4d snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL vmlinux 0xe4efe325 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe4ff6f8c iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xe512a37c sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xe51e206c dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xe53514f1 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xe5591292 ahci_platform_init_host +EXPORT_SYMBOL_GPL vmlinux 0xe5674f2c dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58961c5 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe58fece8 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xe5991332 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xe5aee0ad l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe5b63b74 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe5e511a3 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xe5f94992 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xe5fdf1e4 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe6116462 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL vmlinux 0xe62f3c91 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xe63dd4b7 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xe645075d __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe65c4ecf snd_soc_register_card +EXPORT_SYMBOL_GPL vmlinux 0xe66b5945 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe67a7b47 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xe67b4997 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xe6a01042 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL vmlinux 0xe6a65662 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL vmlinux 0xe6c4af8c nf_register_afinfo +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 0xe6f8e7a3 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xe6fa0a4a cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xe707e9ac mtd_write +EXPORT_SYMBOL_GPL vmlinux 0xe70a9046 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xe73c3869 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xe745daf7 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe752d055 mark_page_dirty +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 0xe78c9bc2 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xe79337a6 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xe7cd7809 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xe7d825d9 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xe7f54e5c register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xe7f6cabb blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8042062 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8333974 cpsw_ale_stop +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 0xe869ba47 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe89f30b8 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xe8a2475e devres_add +EXPORT_SYMBOL_GPL vmlinux 0xe8c4d05d gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe8cdc8e3 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xe8ec588d bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe8fa897b ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xe90bc350 snd_soc_put_volsw +EXPORT_SYMBOL_GPL vmlinux 0xe9108b89 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xe92fbe89 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe940b87b __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xe94221a8 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe949c6d6 of_property_read_u64 +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 0xe9859e6a led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xe995a25f kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe997a768 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe9a201cc pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9fbb836 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xe9feae74 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xea105e67 devm_power_supply_get_by_phandle +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 0xea2e45fe usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea4eb1db preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL vmlinux 0xea556676 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xea657725 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL vmlinux 0xea6b43e1 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xea70bc6f tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xea8a4bad ahci_platform_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xea8ee04f max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaac1b24 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xeab730ab gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xeac187b9 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xeac59d64 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xeae3fca2 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xeb007bd7 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xeb04aed2 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xeb0731e5 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xeb16b6b2 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xeb1dd783 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xeb261b5d sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xeb2b8af4 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xeb2bbd49 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xeb4ce793 of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xeb5848b0 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xeb5a3fad phy_init +EXPORT_SYMBOL_GPL vmlinux 0xeb6d4a23 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xeb9ed6ee crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xeba2fa79 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xeba8232e led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xebaf63db blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xebb04f67 pci_generic_config_read +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 0xebc9baeb dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL vmlinux 0xebe0a906 device_register +EXPORT_SYMBOL_GPL vmlinux 0xebe7cdd8 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec166555 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec237d85 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2ff08a put_mtd_device +EXPORT_SYMBOL_GPL vmlinux 0xec380129 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xec39dada eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xec40087a snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL vmlinux 0xec41d0f9 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xec723bbc wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xec73bdaa dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xec7ad49b usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xec7cb3a5 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xec92a86b blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xecc5ad2f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0xecc757a2 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xecfa4cec nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xecfd8761 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xed12538f gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xed588690 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xed7940c6 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xed80b0dd irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xeda778f2 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xedc2278a dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xede59b94 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xeded09eb usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xedf4646d usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xee171484 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xee22263c ahci_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xee357c37 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee675a86 pinconf_generic_dt_node_to_map +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee75f1cc regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xee812fd6 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xee8d7539 cpdma_chan_start +EXPORT_SYMBOL_GPL vmlinux 0xee9d6a6c extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeea173b8 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xeea87ffd devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xeeb68c91 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL vmlinux 0xef0b7709 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xef37af06 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xef38155e virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xef3966d8 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef5f4121 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xef66075c usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef813298 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0xef81dc02 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL vmlinux 0xef8757c9 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef8d1710 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0xef8d2b83 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xef99516b ping_err +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb18b1e kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xefb5906f pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xefb66df4 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xefc6f0fb mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xefde3d21 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xf006fca4 uniphier_pinctrl_probe +EXPORT_SYMBOL_GPL vmlinux 0xf00ddc60 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xf01c75bf nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xf01e79cb platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0506f5d bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0785567 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xf07f49be inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf0a0e743 pl08x_filter_id +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0d2734d regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf0d6a2f0 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xf0e3c565 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xf0f0a92c of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf11db8a2 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xf12caf22 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xf155d0a3 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xf17ed8ba driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1ad7391 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1b3aafd shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xf1c94101 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf1d85833 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf1e62f69 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0xf1f16c9e unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xf1f7446c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf20f7c67 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xf2146c6a regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf22a3450 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf280b7dd devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xf2a466a8 omap_dm_timer_get_fclk +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2d2aa7e phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xf2f1bdd6 ndo_dflt_bridge_getlink +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 0xf33c83e8 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xf33d414e vchan_init +EXPORT_SYMBOL_GPL vmlinux 0xf344adab ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xf34ffe4d pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3872c57 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf3a1b790 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c0a768 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xf3c3d282 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xf3d8ab7c omap_dm_timer_set_pwm +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f5ce86 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xf415661f usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xf42cfdb8 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xf437dfc5 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xf43d0bf4 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xf44a713a trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xf44fb736 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xf457e12c rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf467ec23 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xf479eac5 pci_generic_config_write +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 0xf4de98be ping_close +EXPORT_SYMBOL_GPL vmlinux 0xf4dfab9d tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xf4e5d213 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf4f0582e regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50aed6b pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf512654a led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xf51bb0e4 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xf52ffcc3 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0xf5355ec4 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf56c9316 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf56e8a70 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xf5898547 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0xf58b9c7d fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xf5926f47 mtd_block_markbad +EXPORT_SYMBOL_GPL vmlinux 0xf592d0a2 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xf5976a80 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b5268b kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xf5d081f0 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xf60a278d snd_device_disconnect +EXPORT_SYMBOL_GPL vmlinux 0xf60a4d5f arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xf6112a74 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf615821a yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf61baa65 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf629b897 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xf6326c64 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xf63ed46f dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xf640c065 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xf66a0828 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xf67f3854 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xf68e2357 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xf699deea tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xf6b7fb7e tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6dc5b23 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf70933c2 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL vmlinux 0xf70a6c15 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xf70e2d1f snd_soc_put_strobe +EXPORT_SYMBOL_GPL vmlinux 0xf73a160d percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xf74bc8d0 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf76b0a59 read_current_timer +EXPORT_SYMBOL_GPL vmlinux 0xf7c07fa8 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf7c828a4 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xf7e13dc3 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xf7f5e88e ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xf80c8b4a pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xf80d7a23 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xf81cf5cf snd_soc_dapm_free +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83691ef dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf84a3440 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf85c485d regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xf87b1a05 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88360d8 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf890ed7d device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xf8915488 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xf89c8ba7 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xf8ba6ca5 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xf8db5268 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xf8db605b component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xf8deeafa unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f9330d disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9381221 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xf9398dca bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf96fb521 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xf97839b4 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xf9784c22 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL vmlinux 0xf980edf0 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf98b70a8 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a3b6f0 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL vmlinux 0xf9a50b48 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9b2a93b of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf9b834de irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xf9bc7b45 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL vmlinux 0xf9c4db28 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9ddf58c device_initialize +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 0xfa26f622 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfa2744c6 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xfa413a01 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0xfa4f3a13 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xfa5ddf32 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xfa67a8ff of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xfa7816b9 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfa8fb67b regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xfaa42fe8 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xfaadc79a mtd_device_parse_register +EXPORT_SYMBOL_GPL vmlinux 0xfabb458a crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xfb0ab924 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xfb246590 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xfb295c7b tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb36a77c of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xfb40316f iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xfb53c92a blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xfb66f803 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7881e7 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xfb88c05a blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xfb9019ba regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xfb90875b handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xfb94f014 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc9f234 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xfbce13b1 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xfbe912dd cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL vmlinux 0xfbf2a239 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc268b19 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xfc375692 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xfc6927c7 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xfc6d4807 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL vmlinux 0xfc88cac6 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xfc95943a enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xfc993216 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xfc99bcbb led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xfcb89d8c serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xfcf81309 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xfd0035ad __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xfd0d8541 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xfd314efb pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xfd41c7ce btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xfd50c8f3 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfd6d13e8 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xfd777c69 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd8097f9 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xfd8257f4 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xfd9a5f95 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xfdb3bc97 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xfdcae422 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xfdd8e736 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xfde1a33e klist_prev +EXPORT_SYMBOL_GPL vmlinux 0xfe0036d4 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xfe009c06 hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xfe48f33d pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xfe4ea90e securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xfe652978 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xfe6a525c generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xfe93fe1c skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xfe9549db tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xfe9734e1 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea9419f regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xfead7aaa ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xfeafd6fc ahci_print_info +EXPORT_SYMBOL_GPL vmlinux 0xfeba2ac5 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xfec2fa0a pinctrl_utils_add_map_configs +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 0xff0f2640 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xff216c46 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xff2742ed crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xff27b828 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff29903c driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xff2df8e7 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0xff47f4cb of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0xff501aea of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff7d8c18 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL vmlinux 0xffa443bb exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xffa52f14 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xffb0bf9f rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc2195b devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xffc508bb cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xffd9fcb3 regmap_fields_update_bits only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/armhf/generic-lpae.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/armhf/generic-lpae.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/armhf/generic-lpae.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/armhf/generic-lpae.modules @@ -0,0 +1,4538 @@ +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_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-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/armhf/generic.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/armhf/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/Linaro 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/armhf/generic.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/armhf/generic.modules @@ -0,0 +1,4630 @@ +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_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-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/fwinfo +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/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-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/i386/generic +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/i386/generic @@ -0,0 +1,18862 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x6901af34 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 0xd1420b64 acpi_video_get_edid +EXPORT_SYMBOL drivers/acpi/video 0xe92ca535 acpi_video_set_dmi_backlight_type +EXPORT_SYMBOL drivers/atm/suni 0x34457050 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x7187ef2b uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x354f87e6 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xf3cc4a0b 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 0x024fa5d0 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x1aa876c8 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x38b4ab02 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x393652da pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x68539b39 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x86e9e13e pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xad01c44d pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb81ccd67 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xdbac542a pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xdcbdec6d pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xdcff407d pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xec7a3539 pi_schedule_claimed +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x8be26977 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 0x4307d1d6 ipmi_smi_watcher_unregister +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 0x9de9d2d2 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xa2a98b91 ipmi_get_maintenance_mode +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbecb3486 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc4151dad ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xc745fb10 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/nsc_gpio 0x409190ed nsc_gpio_write +EXPORT_SYMBOL drivers/char/nsc_gpio 0x790d1800 nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nsc_gpio 0xd0c3d59e nsc_gpio_read +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 0x3016f67d st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xa2d15815 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc6e8cc1d st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xd03e4342 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3ce41cab xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x9722fd98 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa37b0702 xillybus_init_endpoint +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x013d633b dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x04c56dce dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x21de24ce dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x782d3e70 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd582e564 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xddd53738 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/edac/edac_core 0x103dfe30 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0c8e82f4 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x105ea8b0 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x124c1c9f fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bf8b608 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1ccb1071 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3077c0f7 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a38a6b2 fw_iso_context_flush_completions +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 0x4e83a5bc fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x64df59b0 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x696f616a fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c601533 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c7cef55 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7357b6b4 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e4e6e0e fw_cancel_transaction +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 0x9172e747 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9ba440ab fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3c60e60 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xabcf7946 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaeade697 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb67b73dc fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6bc21fd fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbc856b08 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc744878b fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcae78cb6 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcbbe768e fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe30dcb7e fw_run_transaction +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x31580908 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x3f937d99 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x4a7bbe24 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x50a1bafa fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x55848e44 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x5851baea fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x765dc732 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x81587c1a fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xaa6453c8 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xd5e6449f fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xeb0189e6 fmc_find_sdb_device +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02a7c546 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0422e732 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0540fdaf drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06faa672 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x070f477f drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09c3b4d4 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09dd5236 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a43b5b7 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a4bdafa drm_ati_pcigart_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 0x0b8b739f drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c829ecb drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cdefc06 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cfa3210 drm_sysfs_hotplug_event +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 0x102a560c drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x108cab67 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10a2f017 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10cd5cb5 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11288a68 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1131c54f drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e05576 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1513b6d1 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18e8a45d drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1957f35a drm_legacy_getsarea +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 0x1bed1269 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bf23901 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f918369 drm_legacy_mmap +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 0x230b89eb drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2538c52f drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2633d34d drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x269b00f9 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26b2a04b drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2717c199 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x271b41b4 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27775557 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x288cda01 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28971d8e drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ae07508 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2aee5938 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b7ef86f drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bbd7386 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d5203d9 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d54cb2b drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ebff1e2 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f06ca64 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f65a50b drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3006cf91 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x302044c0 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30691cb3 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x314a5176 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x319da2af drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31a6047e drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32b42f02 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ecaf98 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33feebf5 drm_gem_mmap_obj +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 0x3599a610 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35bd42c5 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36e4f301 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3761cefd drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x378ea5a5 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38474b60 drm_i2c_encoder_prepare +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 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c4d0158 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cc7945a drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8208ce drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df78f98 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f3f5ba0 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41049adb drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42e1b912 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x441a388d drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44a62aff drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4715ec91 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49493f3b drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d17e0fd drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e965f06 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e98ae5a drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5121ea26 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52346f6d drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52ea341f drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52f7a70b drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53b9e48d drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x542096c2 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5480942f drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5494b8d9 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x557f22f7 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5619ee09 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57013abe drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5760b0a1 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57fd23cb drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x580991ae drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x588300a2 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5adad44e drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c2b611a drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e323316 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e376b72 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5edb2b35 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ee37999 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60cb6fae drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62736056 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62a97def drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x63422c72 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x639132bf drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6427565d drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x653ccf98 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6549d650 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x659ffbda drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65d00907 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66647204 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66dc45ad drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67409ba3 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67a6df90 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x680d5b49 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x689e7906 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6906c733 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x69e26ee0 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a638303 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cbeca25 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cdd19f5 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d30d833 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ee56f00 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x703d7022 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x708b5146 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70d9fad1 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72175275 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74deab7a drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x786edcc6 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7883a579 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x78ccacc0 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79653359 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x798ba9f0 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bb9be2a drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c1faee7 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c6e9cf3 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e394d92 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e8938a2 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f115a3c drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f11fda3 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80758343 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8077564e drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8092c388 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x811a5863 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x815a8804 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x825cf5b7 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8292afdc drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82a6bbff drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8311bfbe drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b8b724 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87214ff9 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x885b32dd drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88b2fd99 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af1616e drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bdfac99 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cc09a2f drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e46dff9 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e6ab92f drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90267102 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9052fb2f drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x914ea79a drm_mode_connector_list_update +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 0x929268f4 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ca0e53 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95d1a648 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9658c7b0 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96d1a66c drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x975c8107 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97c3f1b0 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97fc3f6e drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x988cb2e8 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98df852b drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99825e45 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9985934e drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a237af0 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a477dad drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a8b3a82 drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac5a8c2 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b6e0cd9 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9de7d6fc drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fd85af0 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa27e180d drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2801c15 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3e3892c drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa647a65a drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa67b0412 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7454afc drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa937511a drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa950a288 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9939426 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab135b77 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab249576 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadc938c6 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee8a8a3 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf7140af drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafd7dee0 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb008527e drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0a73210 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0d6a0a4 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ab67ab drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1b1cc23 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb32b22d2 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3876d62 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb465b8ec drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4fd082a drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb60b0c73 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb868eac1 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb977e472 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb757919 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbb91f74 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdf7c89e drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf49f242 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0118f53 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc03139c2 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0333317 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1767387 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc358f543 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3bbc119 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3fd0691 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc410943f drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc63cde3b drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc72d5c3c drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc864cdb4 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8ee4a30 drm_mode_validate_basic +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 0xcaa668c4 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcaaa94e8 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb041e9b drm_framebuffer_cleanup +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 0xd024ce0b drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0ee3b77 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f81021 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd18d4ebb drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3f6a5d6 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd42d4d98 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4713571 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd50136d7 drm_arm_vblank_event +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 0xd8005ef8 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9354df2 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9518d1a drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdacfc4a2 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdad4f7cf drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb676144 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc10d813 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdcd96447 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd647f08 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb10d11 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf00fd2e drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfc7d52e drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe161687c drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe194c4c3 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe1ed2837 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe262b972 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2d5fb11 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3362736 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3529106 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3c84dae drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3d8e81c drm_universal_plane_init +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 0xe5fae6e3 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe74d4389 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe88e952c drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea048f87 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebef6888 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec16b2c6 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf1987c drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee40f6b8 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee9a4fe7 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeca59ea drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e98829 drm_ati_pcigart_cleanup +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 0xf22c1178 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3309271 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf34e4f28 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4857e2b drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5f9f9cf drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf694b4a8 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7865635 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1c2770 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa6760aa drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa789e36 drm_mode_object_find +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 0xff7e9875 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00969fd8 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x030ed9f0 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03ed616e drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x064ccbbc drm_has_preferred_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 0x0f57b3bb drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11306029 drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x130dfbc9 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1556fad7 drm_crtc_helper_set_mode +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 0x16fdcfcf drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17284160 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x174a4ec5 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x189fbb3e drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19892360 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b1d550b drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b8ce9d9 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c04988f drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c56c38e __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ce9affc drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x24abe556 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2697051e drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27601807 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d574fbd drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e79ff99 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2ee44e09 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 0x36404597 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37011e82 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f3739c drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3933d6f8 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39ad0117 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a4029db drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a628b4b drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a7a778d drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3a853f2f drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b64a6bb drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bf482ad drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40031323 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x431338e5 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47236966 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47c9be64 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ad23c1a drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aee6bfc drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4b5fe973 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4ded8d7b drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50a2880e drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x572fd9ee drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57db2038 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57e646ab drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x58c2424a drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a6d3713 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cf697cf drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e6a31c4 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x64e111f7 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66f62a14 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b9301d8 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c6e1f44 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dc477ec drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f406a09 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fef92af 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 0x71a89084 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x723223b4 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7294f6ad drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x751e3603 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x75a29879 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a10aa0a drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d33f859 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dcd08dc drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7eeaa546 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8054a645 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x818455bd __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82489575 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83ebf624 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88cc7f62 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8900db3d drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ab67563 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8be00ab4 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d81b389 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f2d0dba drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x908b1d8f drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x919f3938 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93bca17b drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x95a6c604 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96bc693e drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x974f2e84 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97848177 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98dfc0e6 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c5bb4e0 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0572b1a drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa26decc3 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2c94177 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 0xa76001ae drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7a9577e drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7eea4d7 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaa1f3b46 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae964a8e drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafef0f1d drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1c57ff8 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb91c765f drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbab806a8 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc41a514 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbcd8db33 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd864447 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe055ae0 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc1969881 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2bc134a drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc40cda14 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc595ff1e drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6c34cd7 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7ea6c68 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc96b0288 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc98f87e0 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcbefc80f drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd215a53 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd4c7a5bb drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8058492 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9926a8c drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9b14ac7 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda8ad62c drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdace842a drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdcb89bf1 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdd543f17 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xddf3f80a drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdfa0968f drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe19ac58d drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe572ecad drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe58d93bc drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe777e3ca drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7b34e6f drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe99b145d drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea636dd1 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xede1f2d1 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedf80d8a drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeea78d7e drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0426539 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf14647e3 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1a8c9eb drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5ccd764 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5dc4d76 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5f46bfd drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6d056c8 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb90994f drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd641448 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff88519f drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x04a19321 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0961db13 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a1ed4f7 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0b20faef ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0bab7f47 ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c6b785c ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0da819d4 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0f210419 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x105fcc44 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1691f720 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21d16496 ttm_bo_swapout_all +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 0x26ed9b7f ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a5c5359 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a716ad7 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c48ae3f ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2f27e3ca ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3262202c ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3afd5cf7 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4063b7bd ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44fcde1d ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54020178 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x551ae350 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x56604e27 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a3f2f76 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a5d0fec ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5c034c8b ttm_eu_fence_buffer_objects +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 0x655e233b ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6aec583d ttm_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 0x707ac01a ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x758246a1 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79d68501 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7ed4536d ttm_object_device_init +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 0x87a71900 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x898de5f6 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8f36d516 ttm_tt_bind +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 0xa0ca72e4 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa3b8f20f ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa653e10f ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa9df7a98 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaaae8452 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb28a33a4 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3427452 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7632e9e ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc7c07943 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc85da5d8 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd731d82 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce47cfe4 ttm_bo_clean_mm +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 0xd94f5584 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe1e2d43a ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe2e9ae10 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe67ef899 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeac1cdec ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec795222 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee2c7c48 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf176587e ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf8224cf7 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfc640df3 ttm_bo_acc_size +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x35ab9d38 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x7c66b975 vmbus_sendpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0xa109300c 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 0xb5c7e557 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 0x2fc22b9c i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x46a4ee88 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xb837ccdf i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x16c573a5 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x956efdb2 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x8ca45137 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x01dd6130 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0f9ac6c7 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x18276f89 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1eddfb4f mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x20b2f59e mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x213cc996 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x21ff961f mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4a68ba0f mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5581bcc0 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x84eef65a mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x911c8920 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa16556e1 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa444943e mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb4f52356 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfa8ceb59 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfdfec01d mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0cd8b77a st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe5c4e374 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x50e95eb3 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb7bfd491 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x13153ea4 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x584e0165 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x82e26fec devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xef42edd8 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x20de252a hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5ab024d6 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x73078412 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xaa412584 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc4658a00 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 0xfc0f4069 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x1b0fe95a hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd254f294 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xdedfa5f8 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf5eada6e hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x067e8968 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 0x419a2d5b ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x75d1bde2 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 0x8b88d2eb ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x9dbed59f ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc1559d8a 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 0xd34f11df ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf6279993 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xf91af637 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2afb21d9 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x3c48fde2 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x8c3da5f9 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9a07dd7e ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf3d9e78a ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xce79d994 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xcfe19b0c ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xde1ffe2b 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 0x447f4dc7 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x57bf4137 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5c0b6677 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6402ce94 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6c0e1cda st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x776af794 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x789c3303 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x79f046ce st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x80063d0c st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x84406c0e st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9da5bd42 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa4ac2aef st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbc0fd4ec st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdd6afa61 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xea1deddf st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf0d789e6 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf90addf9 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x83b78b74 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xf416c0ef st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x13e3bc87 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x3aeebf4e st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x5e5c4284 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x93948180 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x0bc9b6cb adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x1921102c adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x17c6a32a iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x23c839a0 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x24107388 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3d3c63bf iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x461fbab3 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x5b0cf067 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x6874013a iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0x7dbced58 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x878490e1 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xb1c0ea79 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xbc596684 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xbfa9f516 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc98c887e iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xca52eb79 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xd5a76c92 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe47860d9 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xfff5e950 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x90292923 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9e3f96e9 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x94a9855a st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xc80c1c6c st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc48463f5 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x25c6c106 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xbc5ec015 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 0x05e1c71e rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x0a883388 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 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb3a7c456 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xc4996b94 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2d6d8dbf ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2dcbb908 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3e5e5efa ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x52ee0f04 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6522b10c ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x67d79bb0 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6b4be244 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6e5950ae ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x78e540dc ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8490402b ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8848e393 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a71c48d ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa332674e ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaf973cfe ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb2040d57 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbb048e5a ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf3256484 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf9d359d4 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0559a3f5 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ad19732 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x156000f0 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16051c95 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x173c329d ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1978b3a5 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aa587eb ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1aae2141 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1db067a5 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1fcd4299 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x215c857e ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x23377d88 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2936223b ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2990af55 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a08c22e ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2af653aa ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c3a720a ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d21df4d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3934cd29 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3beaec02 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3dc48349 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44bfcaf4 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a502835 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bc0d518 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4bf448ce ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c790970 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ed058ac ib_umem_page_count +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 0x5254e338 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52eda8a3 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x56669c47 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x60d2bcb5 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x62b261a3 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67477185 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a65283e ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6ae167e6 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e467292 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x716d8c5d ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x72ab53e3 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7452323c ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x74ee8c0b ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77e9eb11 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ad4fac1 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bfd0fce ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7cf1db70 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d511f96 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7dfe03de ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8233a171 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8441a333 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84e29c33 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87a1d17f ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x890067db ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8f83b83e ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x91f6d13e ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92eb6002 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9796e892 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x97c6f1d6 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a96fb41 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ed99aca ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa212adf3 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa842fbd1 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb05b8b16 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3271ed9 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb3e72e84 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb499285b 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 0xbd54cc4b ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc577fe61 ib_create_srq +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 0xcfde1863 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd11a3c34 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd8ef26ae ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdab5c447 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdb356bbb ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde567b98 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe06aedca ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe176eed1 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef8b5185 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf0c930f4 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf54f961c ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbe7bad5 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc6f5766 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfca5d9c0 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd113282 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfdf66ce4 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe05bb6c ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0913cf0f ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x178482bb ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x24a38b83 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x310b0e55 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x47366512 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4c07eaa9 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x627373e2 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x627dd72c 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 0x8c22afb4 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8dd83355 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa40b04ce ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc5eedc33 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xeb8f464d ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x05f51c4a ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x0ac6dd24 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1f5f27fd ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x287d1e73 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3e210c96 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x44a1e1ae ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7151edf5 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7d527b20 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x86517a59 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbe214ed0 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe546b314 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x228c3781 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 0x63b6dfc9 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 0x2275d999 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x24709223 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3080c63a iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x36ba1e49 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x383207ad iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x673df5c3 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6afbe029 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x72387979 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x76506fb2 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8d89584e iw_cm_accept +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 0xa7bfd46b iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbf18f00e iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc5549aee iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd59ade75 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd60bc045 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0834f725 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2472d37e rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x50efcf47 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x58f347c4 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5b2fd62e rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5d6b90c8 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x62a81a4b rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d4f8b7d rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6f562491 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6fda6879 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x74f9279f rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x81bcd903 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8960b431 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8b606626 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9061293e rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb26cf264 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc05b15cd rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc8477199 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc9297b17 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd24112e3 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe31f94b4 rdma_destroy_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x0225d04a gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x38f0fbc0 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x50e4d19b gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6cd2304c gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x846eccd8 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x873d16c6 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8b94f06f gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x94bdc7a7 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xca8d3bf5 gameport_open +EXPORT_SYMBOL drivers/input/input-polldev 0x02e49130 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x2f51f07f input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x42087f7d devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xd20bead1 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xfbabcabd input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xd93e4ccd matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1e81fff8 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3a8c5152 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x4bebf181 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 0xb92055fd cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4b0263a9 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x645fae39 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6b5c2952 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x98b011db sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcbfcd61b sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe35e23cb sparse_keymap_free +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xd5b3d202 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe7c6522a ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0be41907 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x175e13e3 detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x1b201fc8 capi20_release +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 0x47a275bb 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 0x63aa7029 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x640166fb 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 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x852c5825 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x86400141 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 0xbcc61623 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 0xe5ccb3b5 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1793cadf b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x336e39bc b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5587c350 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x57a2efb2 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x64e41deb b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6741676c b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x80689c9d avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbb450c27 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd0486db0 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe11187c1 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe34693d1 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe3aec188 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe90e94f3 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xecb8eca1 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf922bd0d b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x003a6c06 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0dfdae90 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x1152cbbf b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x53a39246 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6f698caa b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8b8f549b b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa05c803a t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb13955a3 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf5ab547f b1dma_register_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 0x2b96d9db mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x9fad8a4c mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe33844aa mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe3cf8bf5 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x195db519 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xfa556a5b 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 0x85263209 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 0x00cf5727 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x5ce068d5 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x988f43cc isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb7d15cf0 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xfe340c73 isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2bfc387a isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xadc284fb register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfa06820f isdn_register_divert +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xfd0ca7b5 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 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f6feecf mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26b58272 get_next_dframe +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 0x3ddd5677 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40d7d6c0 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x5183bf9a mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x55c0dc78 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x686b695f queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6f954ce9 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x75321028 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa49db006 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb1d825b3 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbf8c3bdc recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb051394 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xccf6c6b4 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd4658d17 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd7406428 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe057f12d get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe30d2f8b mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8480f35 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xecb1a735 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfb90e24c mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfc7123d2 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfe5f0120 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 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x30ada5e7 closure_sync +EXPORT_SYMBOL drivers/md/bcache/bcache 0x60ae483f 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 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 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd4507304 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0xd5c3da11 closure_put +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 0x2f173537 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x4c5638bf dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x88559383 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x9e802e88 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2ed3600d dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa571e4bb dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb1b6c9f9 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb58ddc47 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xc796cefb dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd7cce9e0 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0xb4522110 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x02e67815 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x25c5d5b7 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4d6220f9 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x623651ea flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x663600ac flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6f83d077 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7f55d6fd flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x84a9a0c5 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8f119790 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe3b43403 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe7756145 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf130ef8c flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfc3bd385 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x291ad5cb 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 0x9e330c06 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 0xd7d6bf15 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xfd18e5ee cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xebd207e3 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0bc1ff37 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xd8bb2e7c tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17a54cf2 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1b64f452 dvb_unregister_device +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 0x331ae714 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x363892d4 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x392841fc dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3a5ab4a6 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x45dfcaef dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c0b3ca dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a0e5410 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6f883d dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5fd8dc86 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x70de704a dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x73f4620a dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x74a5a698 dvb_filter_pes2ts_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x752329d5 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8dbc83a2 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x949b34f6 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9562ab26 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9998f96b dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9a3d8054 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9ab4d06a dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c251548 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa1f99f58 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb1293b98 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb484b188 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf229f59 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd21e5f42 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd295dfb6 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdf494567 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe3406489 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea3b0f90 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xee00ff78 dvb_ca_en50221_init +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 0xff9751d4 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x81ea51cf af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x15915468 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x0c40e814 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0f7006bf au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x3edc2eec au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4aede59e au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x787f3d84 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7ef71af6 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8325fd54 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbbbacf1a au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd9fb0fd5 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdd4b136e au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x60f9e9d5 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xb619fa43 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x6fa551d4 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xa62e1d80 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xa03c9d08 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x1dcc4360 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x47f85b86 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x491d3a1b cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x214a93a4 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x0fd46545 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x2338a3c7 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xf968dd11 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x6fd7c2ae cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x7d85f1b6 cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x8594a81a cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xa94290b4 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xad713122 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd65592af dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe1c52e94 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe33dda92 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x03a6b732 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x20f88806 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7a9089ab dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7ae54a31 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8102e329 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x9209cf42 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xafc51793 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb907b5db dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbcccd0e0 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbf28e4d9 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc8e95061 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcd8ff41c dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xdf63921b dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf08bf6c0 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfed6a8fe dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x561343fe dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0009f19a dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x049b3eb4 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x1094c056 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2205b085 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x733f4b93 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xf8bf830e dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x7e60ae7b dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xc6aed1d0 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xe0e58404 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf8357607 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x1b91a13a dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x84527f26 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4be3ee79 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6428cd52 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8a6c4ebd dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9541685b dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xd05ada0c dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0xf41f64cd drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xdb85a1f2 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xe41cd4bf drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xa8da6a84 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xcce5c41a dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x199a6a8b ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x2d037d11 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xfb465500 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x05f77b79 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x3e691cab isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xe2cdd7f7 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x1983364b ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x270e1bfc l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xb59f0271 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x0192b26c lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x61af2ed4 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x788b5bbf lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xc64b3ba2 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0xa39c36ab lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x23abb549 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe5866e9c lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x03295f3c lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x3db62ca7 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xda1d9592 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x649ecf21 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x9454db69 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x0373fa80 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xddca9a10 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x8b5567aa mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xff48e4ef nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0xda6ae1c0 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x449614da or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x492c83ab or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x39861fdd s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x86523905 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x387b536b s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x7e7ec6b5 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xf7b7f975 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xb27abcd0 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x19797f5f si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x648cde7e sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x37391cbf sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x656f3875 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xce389134 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x11b90a1b stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x67fbf477 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xfc88b594 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x590e583d stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xf4e73bd1 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xf7be03cb stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xbdd9e505 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x4f9f7e65 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x674204d0 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xf02ff560 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xa7aab904 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x4efee8a6 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0xd91a4bb7 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x15bda655 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x21a80e3d tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x97635cd8 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x7fb73c96 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x021f5188 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x931621d3 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xcfeeaebe tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe7e780fc ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x05f20cf5 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xfb035d99 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x028a3a77 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xdafbf28e zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x72e42fda zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x7a87010c zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x0c158285 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1c9040e3 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3f2e4c2a flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x88a9cbd7 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa81d7685 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd2360f39 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf8de38e0 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9388f932 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x968e3cde bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9c573838 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xdda7d2a9 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3818e798 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x67103b48 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7e20aff0 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/dst 0x1a756621 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x20c1b92f dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x32384910 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x417ad3a4 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9d1c7074 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xcf2cbdf9 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd6663937 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xf79a9e7d dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xff9b70ec write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x3b57a7cf dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x423a4437 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8ef42524 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x908cb0e6 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xab68862d cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf7c475ae 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 0xeb738b00 altera_ci_init +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6f578414 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x73cccd84 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7e16236a cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8a49d680 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa8ab60a1 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd2cc9d0a cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xfb3f4196 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x0bc2ae80 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd6f7f433 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x66e54e60 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x6d3f80f2 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa618bca5 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf93ba095 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5f302138 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x71eb8fcc cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x77f01bc5 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x8e61c94a cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa174dc4d cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb7935f07 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf1c6cbfb cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x065fcee0 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x06890292 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0ad8b2c8 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2ff67000 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3c442514 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x420a0802 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x44438db1 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x63ea9a31 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x64fc1cdd cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7943b38c cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8a4dd123 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8c8b28f9 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9a7343a3 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa0e758e6 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa1eb37ba cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd07126ec cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd7278b09 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdcee4f63 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe3d14d64 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf2c5a138 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x066ecbeb ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x09ab116c ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x128b525c ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1dea9712 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x31b67c65 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x36abb4d0 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x56aee139 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5fc7fa78 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x64ced120 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6e9e530f ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8972bf53 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x934d3e67 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xa17277fb ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc239597d ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe1ea5295 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf9222c49 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfb83f1ae ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x118448a1 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1c5281e1 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1cd1c38d saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x420ba899 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x81ea3059 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9342710f saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xaa3b1088 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xabd6588f saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xadf95667 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xcf2c0b49 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xdd8c52c8 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfcd9e051 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x0f3ff420 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x6c1d4984 videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x949e9064 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x99b086c1 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xc8e852fd videocodec_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x05d957dd soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x5eaf8c1d soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x78731907 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x99ac9602 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc18d45ac soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcdc45051 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xdb655246 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 0x05d280f6 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x22af1ca2 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0x3c8caea2 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x44c62f2e snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc11d159c snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd228be25 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe74806e7 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0f1d8c09 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x2eb89049 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x396492e6 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x45972b4f lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4b19a5f7 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8ce6956f lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x9aabae3f lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa3386682 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/rc-core 0x7cdcd23e ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xc674bef3 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x8f710333 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x5a0fb54e fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x81fa4549 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xc346c7bb fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xfb599fd8 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0xbc5f0dda max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xa3a1bfb7 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x6d0f5939 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x5547ee1c mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xaeb417db mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xd7e16d17 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xd71b14f1 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xf6671c49 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 0x20179b17 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xbae8672b xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xd6981c6c xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xa7bb86c6 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xa8a9e926 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x129d0e9d dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6bf48f6d dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7fcb179e dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8b5ebcc5 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x97d73268 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xa7d71cf9 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb56d3007 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd2847a79 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe1653027 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1e74f730 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2716981a dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x41a085ae usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x67137d4a dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7a993360 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xc10c5ee9 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe593d480 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 0x7912207b 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 0x01c95c65 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x02529544 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4105c27a dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x47ff6294 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4d89deec dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x562bcb89 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x77af0c6d dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x973dfefd 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 0xe0976621 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf936fd45 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfc8d4bb3 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x2c5f1cf3 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xd6c08965 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x40627f6e go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x52fdfc33 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x541c7a5c go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8af03a33 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x95744e6a go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa3ac10ad go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbe080c47 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe6d56148 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xfa50ae79 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x14d9f71f gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x4bad9214 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x641c273c gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x64b8ca62 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x72dd5200 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xa3573807 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbe3a08a6 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc540c652 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x3d793687 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x75a9d297 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xb39e4d3a tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xd9cbce8b ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xf20ccf41 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x084baf8d v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x27fc779e v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x372aaee7 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x459e133f v4l2_m2m_get_curr_priv +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x65515788 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x80828910 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xb205efc3 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xbfa5da61 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc781356e videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd2d39c93 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x1d058949 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xaf4c5721 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4e1cab1f vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x59679430 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x963b725d vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc0604eba vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe12319b8 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf2e3a3a5 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 0x580e4e1d vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0438e38a v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x048f038a v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x07c3b370 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x112af772 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x12d657c7 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x134b503f v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1998ebad video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x22a16e79 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2381702b v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x29ddccbc __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ce70d93 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36e9bfc1 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 0x44696521 v4l2_subdev_try_ext_ctrls +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 0x4c944166 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x500be8eb v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x584cd1eb v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a0c7a11 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5dc9a37c v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f13ba51 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6cc95299 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d479ee0 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6d5a637c v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f4fa727 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6fd48c4f video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x744ad7c2 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x78dc964d v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7b05e9ec video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ca64d0f v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7d6e4b5a v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7ff791a5 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x84f275c2 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85dee485 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8989b16c v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c380b3c v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e388ee9 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8fa16126 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x95ba68d6 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa24dfb30 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa2fbd28c v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4b267bf v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa9203cc0 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa967a305 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xacf78808 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafdc576e v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb4fcc9ed v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb522aec6 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbfa5c6e v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc1223bc3 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5e3305e v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3d2df5d v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd3d66a27 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4a80d37 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd61cc4a7 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd648b36d video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd69903d6 v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd8f360e9 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb493c9a v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc02c77d __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdd832768 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3909b1f v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeabeeb54 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xeaed7064 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xec9e54b0 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee1c605a v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee77c536 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4f1607f v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf90eab52 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfc797635 v4l2_g_ctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x007cecff memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x49ea2c3c memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x542e168e memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5c782925 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9428dd2e memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x99d12797 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa66e4e93 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbb620199 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd3c8debb memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe88456aa memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xecdad752 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xee32b4da memstick_next_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0e7c7ced mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x10ade70a mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x114413c6 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1524b907 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1dc9ad09 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x288c9e39 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d0484da mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d634db5 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3761bdda mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37a2d5e6 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3aec6e3d mptbase_sas_persist_operation +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 0x6d5f4614 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x75484d5b mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8a0353eb mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x93f2480a mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9a265eed mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b58367b mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9dd15578 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa73eeb61 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xae61fefe mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb505012d mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc80ecd4 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 0xc54501e0 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc83968af mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xda6d687d mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe55a5ca2 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xefc3a565 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf5e739b6 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf84872f6 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x04b04835 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x06aff3f7 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x08cbdbf3 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x19fe5c12 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x31ec0605 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a9413b3 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x403d38ab mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4b53992d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f9cd977 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x59db9606 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5c83f5e0 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x705bfaa0 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x70d99e25 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x858e9585 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x85b031fd mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8f4c93ca mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9a687e57 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa3f0de68 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa7a871c2 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0e21341 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc82eb47a mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdbc6401a mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xde5a02b3 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe11b368b mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe371746a mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf10e9433 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf649b8b0 mptscsih_qcmd +EXPORT_SYMBOL drivers/mfd/cros_ec 0x08a4f9da cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x3a49ada6 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0x6425460a cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x79cdc397 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x13258574 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x35206d62 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x69649a89 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x0010fa37 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x75bf177b pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x26f9a0aa mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x38d2fd39 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3ba825e4 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x43645965 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4d29f693 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x805dda8c mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbee35df2 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc00aebd9 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xea7d42d1 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xeb146d36 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf4b868b4 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 0x5b58d6de wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x89892c76 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x02286b61 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x1f1a82b1 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x2d203928 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x8078809c wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x8bfb17a6 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xeaf715fe ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x075983d1 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x17318597 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x41b7be3f c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x295bbf68 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x63b6d1e0 ioc4_unregister_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 0x1d29380a tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x23d47f0e tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x4d304dd0 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x50b86fa0 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x6fa83af5 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7e7414f5 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x8068cb72 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8849ad16 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x97d3fe6d tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xef2d2ed8 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf48b4284 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xf63f88bb tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x7f989423 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x131ecfdb cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x14d54af3 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x222797f8 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6f4f826a cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xab09f672 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb8a74c5a cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb95d32d1 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x226a6fbb unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc9775198 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdd2e5329 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xee903685 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xfb2a8b7f mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xcc728a8f lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x6603e300 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xb4e52d63 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xe8075321 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x10062528 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0x4fc01bf5 denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x2df05bce nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x84b11b99 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa641139f nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xac97dee0 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe93bc7a0 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xffc2d593 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x398a70ae nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x84ef22b8 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xc9c90f7f nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x18bb7aa0 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x540d84f1 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 0x05396692 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x39a618c1 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x697be4fe onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x76c869b0 flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4f70fa4b arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x60be7f83 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6e92c3c5 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7518e02c arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x7936db72 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x86e14263 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc7cad93a arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe7ae7cbe arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf4bdaa0c arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf7d1e5d1 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1e95a784 com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x792de3bf com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xe1c5e94d com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x0e06c440 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x228192fb ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5c7bd17b ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5e0b9eea ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6526725b ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc4a0aee3 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe7269a3f __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xec2d4288 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfe50c6f6 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xff2bc8ee NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x1b678ade NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x20b316fb eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x5c0769f8 eip_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x649f4c26 eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x6c34179f eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x75569947 eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x75cefa84 __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xdcf8a715 eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xe2ab8ad2 eip_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xf985790e eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x5c04d1bf bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x1af390b8 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x271bfa67 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x38a3adfc cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3b8fa18a cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x43e674d8 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4982985c t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4a734dc2 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5cc61c19 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8721ed88 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x99319f9d dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa1569462 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9fb816a cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb366ba71 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb3b65c99 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc950836a t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd5e8cbd2 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe37eced8 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x021c1511 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x045cd6ed cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0ed4dedb cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1206ae3d cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20205f83 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x20be736c cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2389dae9 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x25df198d cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2cdc3d51 t4_cleanup_clip_tbl +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 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 0x84e6296e cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x86344cab cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8ee85fe1 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x94aa3ece cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9839f018 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9f293de4 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa154e361 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa91cb8f7 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0372997 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbaad8399 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbba92df9 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbea62e90 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7df6074 cxgb4_clip_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 0xdc55c824 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe0bebfa9 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8a27a37 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xedad6185 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf13098bd cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf7c657f7 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfe333f6e cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffccc265 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3c27f90a enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xbf633d27 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xd249660f vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe05376f3 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xef57104c vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf8b9ecf9 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0998ab98 be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x4d0ed17e 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 0x00fb64fe mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0300c675 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x170a060b mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17310433 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20f0a6f3 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21590337 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x22210c21 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x349d4647 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47c87376 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e88a827 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60beb67b mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6671f004 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67bd4c7f mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x685a6b04 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6909e2ff mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b97c651 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70417eab mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x763789f9 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76b2de8d mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77543090 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77ee780e mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80cd3962 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88b8c110 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8bf51e99 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9669abc8 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a909465 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9aac981a mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e6421d8 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1ebbebc mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb096425 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb8249af mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd123efb mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe3b9a12 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2dda084 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd880c024 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe88ea062 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed56611d mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf10b298a mlx4_get_slave_pkey_gid_tbl_len +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 0x0afa8334 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 0x0ef65ccb mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ac2f9fc mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23dee38d mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a9c47ce mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2cc4342a mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x330e2924 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x340236d1 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3c2bd2bd mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d330b7c mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x452f3afe mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58fee067 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d05517f mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x73d71622 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x78c604cc mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c15f61f mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c535147 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8318a20b mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86c322c7 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x90f4a0fc mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x96df6575 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97fd45de mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f2c06ad mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xacdc1604 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae27196c mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb94745eb mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb94a3897 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc339d58c mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8525e46 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca07dd49 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4a75fda mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5e8bbc1 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd7633f55 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda7162bc mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdffa2592 mlx5_core_query_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 0xef1ae2a0 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf23bc0c0 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf485705b mlx5_core_detach_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 0x1a2180c2 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2c5f4cd2 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 0x7f303770 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 0x965c2669 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xac3f8e90 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc2914e45 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 0xf0ac22ca mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x11abbebc 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 0x587eb373 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5b637b4a hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x64f93259 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8ca70e5a hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa3f6e983 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2e3e2bf5 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x2fd3b78d sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x30e75a78 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3e5e94a1 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7d860059 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9bc31c64 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9d4d6063 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbd5e2602 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdcb77764 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdd3e48b4 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 0x25f01e7e mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x27bdad83 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x6d8bff5f mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xbf64eead mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xc2c0a666 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xd8c1b331 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xef4179f6 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xf6d07ac2 mii_nway_restart +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x8a723537 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x93a8acc5 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x6e2b5334 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x88701994 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x8eb745e2 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0x6d9b9c6f vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x39f8a35d pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x69d09bcc register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0x9a6c51f0 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0xa0608b1e sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x43945598 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x4d19768d team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x582c9fda team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x689a5017 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x6947a001 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x75dc6d14 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x8b5b5821 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xde699978 team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x3241ed4f usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x4ebd7bad usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xabe32a2c cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xe37affc9 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x10dffe13 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x2f012995 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0x366f0da7 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3ba8fc6c hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3dde1f85 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x517165b4 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x558e7138 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x565f6bcf detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x990dfe92 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xba04e50c hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcd2855a0 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/z85230 0x06be9322 z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x1a14efe4 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x203bc242 z8530_describe +EXPORT_SYMBOL drivers/net/wan/z85230 0x3479eab0 z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x498cf410 z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x640eb70b z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x68386894 z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x690cd6a2 z8530_init +EXPORT_SYMBOL drivers/net/wan/z85230 0x6cf1880d z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0x72b90b05 z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x865f47b7 z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0x9c017fe1 z8530_sync +EXPORT_SYMBOL drivers/net/wan/z85230 0xb36bc801 z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xdc147099 z8530_null_rx +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x59a4a898 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x1b893a7f reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xab1e7ad8 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xe958a8d5 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x02f95a59 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0da412f0 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0f5104de ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1f6384b4 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3b01506b ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x51b16c34 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5822a650 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6acb7999 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x713e33a1 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x93c59737 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa70679b7 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd7af991d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x023384cb ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x057965b8 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x171234d4 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x22681fcd ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4879e6d3 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x6753400c ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84038799 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x87fc1d30 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8b04f40b ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xae375cbc ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb100490f ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb9eb88a1 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcefc321b ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xddfd3b13 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe0fefa58 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2cef262a ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3cdc12a4 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x65c75c8b ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x79a8e751 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 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9628d5f2 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9795f4a3 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x981964da ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9b43892b ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6e27444 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 0xc8d28d7e 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 0xde8e3fdb ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x08c9d92d ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0f4e6852 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x16d75561 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1d76e736 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x232fd08c ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2bd2d887 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2d15177d ath9k_cmn_debug_stat_rx +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2eded29d ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x49d65621 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4a34d1c1 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4b0eac77 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5a9d705b ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5c8d1ab1 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5f1b64d7 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6467963f ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x67f158e6 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x973d1afd ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x987425c5 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa65af287 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa7a705f4 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb917ee21 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 0xe7cc9126 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xedde15a4 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xff6085f8 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07fb4526 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f5bfa06 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1206dee4 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x174fa2d4 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1832393c ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1858658b ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x199fddc9 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1bf0805e ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1cc5ebb1 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e86a4e9 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x202a71aa ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x214f5551 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x231d8f01 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2564ddbb ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x268459b7 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28776d2b ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b6e0942 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bce793f ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2df91543 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30552cef ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x318efa5a ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x31a45564 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x323d73d9 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x327e0088 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3282d723 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x35219bd0 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ebbd6d ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3826db4c ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c489301 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x41b6eec1 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43ea0756 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43fe48e0 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4599c5e1 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x459d0182 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x459ece73 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b4a4d37 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4c8bec51 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4db58602 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x509b15d4 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58e46aa4 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a1bed17 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5a343736 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ff94606 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x63bc1cb8 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67a08c2b ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6846a3bb ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cd87081 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e60b558 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72a4ae6e ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74d0989a ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b3cdfb6 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7dd673a4 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e3ccf82 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88ce5788 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89ddc0a6 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d4019b8 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d5dcce0 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f92eab2 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9083812f ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90fef09d ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92209eca ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x92fa541e ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x987b3f5c ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9bf3f300 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0468671 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1171459 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa1dd54f7 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa23f8492 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa687cfd2 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa789863c ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xacd5c9ff ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2aa0b7b ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2ad2ac9 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4bfc7e0 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb79d8a50 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb80889fd ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb855659a ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbcdea13 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc85250dc ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcada1521 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb1a661b ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd67565a ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xce6f126f ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf925c0f ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcffdf00f ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4b86c9e ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd56491da ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd580bda9 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd71dfa68 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9198077 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbcdc4f8 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe395ad59 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe3cc3895 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe69d6e23 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe6b45bed ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe968836f ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe98ae56a ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb8d64b7 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec66c193 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4adb0dc ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6333a49 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7f7900a ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf97f6622 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa613f0e ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd9a5663 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x9108e7bf atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xb02ebcdc init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xe6cfc7cc stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x014b9728 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x211ce637 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x26b799f9 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x422d197e brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x446ba341 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4924f430 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4a59d2b1 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6cb41234 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9315ec70 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9caca242 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa491985d brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcb5d5a90 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 0xd493eadc brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x03757795 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0400cea5 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0c8f9a99 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0e2004b7 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x12b4135e hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x20169d9f hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x347d7911 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x38b05965 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x46d842c1 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4ea5cb5f hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x76ba2d02 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7b5d7ed5 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x822dafcd hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8d330d50 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaba1c19e hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaf765c22 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 0xc390f849 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc93824a4 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcedcb39a hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd0151416 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd9128694 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xda94def6 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xed2f9945 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfae86c8b hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfb7c4ef3 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0183e98b libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1938d4d9 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2e75ed1d libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x30328f21 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x36efa1b7 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3e58e044 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x44121b61 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x589f302c libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x79d54808 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x91cc67b7 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x955153e5 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x99570235 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9c42a3ef libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa17d3a70 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xae8b0667 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xafb6bf2b libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcb38aeb3 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd6497c2b alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe0d90be6 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xeca65f99 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xeccfd631 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06f85ad9 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x095ebcc9 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0aac56e0 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0bc42caa il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0d22377e il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f1e7fa8 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1368919b il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1480204e il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17c55e55 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1cfb797c il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x21c04c30 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x254bd90a il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26165f90 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2dc15615 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2dce084b il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x31a2581c il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x31a770e2 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x33a87042 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x354ad15a il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35941eb9 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x410e8215 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4146ac1d il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x42ef3543 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x433fdd15 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x457f911a il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x466aca98 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46c97dd5 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4abb45a2 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4d0d4edb il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x51357658 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55087b2e il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x55aa6b98 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5825c3ca il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5965de8c il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5a980152 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c003706 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d19119d il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d860f9e il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61547d64 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x61e7f426 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a3204d3 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6c65ae87 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6fdf24cf il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72224059 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x72259941 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73193896 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75d5891d il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x760198c0 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x773ce393 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a82b30b il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7aae408d il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7f8db821 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8063a3af il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80bd4a5f il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85742b74 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x886d8414 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88df2985 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x893ac857 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89b8eec5 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89f7fd4a il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bd10ae0 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8df1409f il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x95dacb23 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x977499c8 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9b66d9b6 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f4e342e il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9fa28488 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1113644 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafd8b217 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafdc085f il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb5ff6dec il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba409a6b il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb09af39 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb43d0cb il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbc74268e il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbcb80125 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbf99a9c9 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3227282 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcec340cb il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd12b5a6f il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd51b0a87 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd7d6729e il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd99cd601 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdbd6bebd il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xde878a0e il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe10eda17 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe1f82b78 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2a649d0 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe351e8e6 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6b5ca48 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8edbcc7 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xedb1fb16 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee695753 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf137842f il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf463a2cc il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf974aa47 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfa563eef il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb663aa2 il_usecs_to_beacons +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 0x088a4a91 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x12606c05 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x33903483 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x344925bf alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x369814f0 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x41f81f9f orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x600062f4 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x68337d7a __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x6e57862d orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x70223b8a orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x807697cc orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x83455511 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x99841a2a orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb2b7e14c orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xcbe149be __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdc45d60f orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x8b8f0c63 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x01615606 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x02f9985c rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0aef8a01 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x108adfd4 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x15cf9c4c rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1c92387a rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x25785602 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3563b1b2 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x357e6bc1 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a2c140b _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3fbfee31 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x587010d3 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5df56a76 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e9d0002 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x606ae6b0 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x60b7182a rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x660f4953 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x697a8a4d rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c6856d1 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6fb8b67f rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75e68fd7 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7aa0bfba rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8b0d61e6 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c9d3620 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8df4182b rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x938d1336 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x96950640 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaabb68eb _rtl92c_phy_init_bb_rf_register_definition +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 0xb359e02c rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb83c451e _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc7c8dfab rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xca75af58 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd11de047 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd14c00e6 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd35414a9 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3c511d8 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeb274883 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xedea764f rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf3d5b838 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7eed917 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfe39ba14 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x01abafc8 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x34c1438d rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc53562a3 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xda51f530 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbbb18135 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd6e8c4fd rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd87bc888 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf9fbfb6a rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e9e2b31 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10fda02b 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 0x2bbad3f2 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x38e224dc rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x434e58b7 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4d5f88e8 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x529bc6cb rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x57590f9e efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5abc5fb4 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x657fd3a6 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8e6055d9 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x90ee1c32 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x927cb72b 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 0x9fbce83b efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa68bc1fb rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xabecb1c7 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaceb9fe9 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb07470de rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2d38e9e rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7ca0260 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf233818 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd72f42d rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd1590f01 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4d29c46 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde8df897 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe55d8b5a rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe7ff93bd rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5e22811 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x311223a0 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x5922f843 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xaba4f85c wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xfea2833c wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x59c45e98 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6419f389 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xabf97f8b fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x2e9229ad microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xca919964 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x6b3c14a7 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x81d8e589 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x9c0be139 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x161ab143 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xd327feab pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x04277ab2 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x1203b1d0 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbf505e55 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x073cda4b ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x08a470bb ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0ebff203 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1c597d0a st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x96ebbd22 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa83e7cd2 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xaab6f7a9 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc09645b8 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd772f9bc ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdbb7a111 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe6d923bb st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1d7b8f79 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1f2bf6ba st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x496c31a5 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x63898fc7 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x668c1dfb st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6daee171 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x89bdc7e8 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa7cff91a st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb007f0aa st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb7b97733 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xba45a15f st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc8a8fce6 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xce77e19c st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd8f9b728 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xdf40b3c7 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe5ac9b24 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xec0dc7c6 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf68165b1 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/ntb/ntb 0x2f1d5c9f ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x39f9ce79 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x4faefe1d __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x523e40c9 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x573651f5 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x6e7d7936 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x826ea47f ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xdedd5dde ntb_unregister_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x941ae163 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xf169c3c0 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x67a147df devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0e27e099 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x0e9dd58a parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x13587466 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x314403c9 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x31c38ac2 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x331ec91f parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x35a730f3 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x3764fad4 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x3fea96c7 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x406dbf40 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x468be17e parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4de356f4 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x56b7e96a parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x597e1c11 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x5dfd2875 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x61a93ef7 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x684c67e0 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x6d5e4fdf parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x72171178 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x8835f954 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x95f5265c parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xa7f974b0 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xa82fac29 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xaefbdc5a parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xbf2e64a5 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xc6653fec __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xcc469e24 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xcdeb05c3 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xd2059159 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xdfaa0339 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xe9a87203 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xfd9860b0 parport_read +EXPORT_SYMBOL drivers/parport/parport_pc 0x11b0b3a9 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xb9c9a98d parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x082452fd pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x13c9f631 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x17a8a4e9 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x18a4a808 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2158c5bf __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3d0723f9 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x45f52d88 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5dbc4f5d pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x654f6e8f pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x67aa5753 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6938b53c pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x74cfa0c2 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x77e7d839 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7db6e953 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x860ac08e pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9269e7d9 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcf88b08d pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xdedfa131 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe00295dd pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1814bbf0 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x51b56c30 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x60bbbb55 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7cdaa997 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8062b652 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb8ebee56 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc24ec8d8 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc58f665a pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xc9c32e73 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xd9fee5b6 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfa90b29b pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x4a11988d pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xa1965835 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 0x07ca2f3e pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x2e018f6b pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x66c82b36 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xd05d440e pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x28a96af9 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x3d7bcb3e ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x94e9c8d6 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x9937530f ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xa4dc8850 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x20fe4846 pch_rx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x2dc44906 pch_src_uuid_hi_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x4ed3ee88 pch_ch_control_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x5716bf40 pch_ch_control_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x607237e6 pch_ch_event_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xa3a66dce pch_src_uuid_lo_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xab2adef9 pch_ch_event_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xde9f73ae pch_set_station_address +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xf809dd49 pch_tx_snap_read +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x139e3ba9 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6d79a657 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb4de38bb rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc62edc18 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd3af4fa2 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe221e438 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe5454f76 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf4df8faf rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfd6b2ceb rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfefbbb80 rproc_boot +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xcb6d0bab ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0x7602953f NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0xaf3e5429 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x13748d2f scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x300da59c scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa3d9c8cc scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xe01bc8a5 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1efd8dd4 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x29bcd3e5 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x34160768 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4fe26431 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6b83f4ee fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x70d6ebae fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7e74fa23 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x839b15b1 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9c07be83 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xba03558b fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc309fcaa fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd7ceb531 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0204d0d0 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x029890e4 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x08aaf054 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e1bb307 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11cc76d2 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11f04265 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12fdc130 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1e21c07e fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c9626ed fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x30b45562 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3218095c fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34de73b0 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3be24cd1 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3c0ee089 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x406e27e6 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40ed7b67 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x44fbb4b5 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45e034ad fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4f22e1d6 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55629d90 fc_exch_recv +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 0x6d563fa2 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x74719700 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7685a432 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7dd2a146 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f9629ef fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x80c35a3b fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e43001d fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x98bb6284 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e983858 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa070f8ca fc_rport_init +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 0xb5e85ffc fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb705ba9b fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb817cf22 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbd5fd520 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc9f80d67 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xccb0d42e fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd5d43e6a fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe1b7ee37 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe632f580 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed319fe3 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf60d2397 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf847880d fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfaeee06e fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x33a70c26 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x87baf255 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8de4b1d8 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xe5f337ed sas_resume_ha +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x2250c66e mraid_mm_adapter_app_handle +EXPORT_SYMBOL drivers/scsi/megaraid/megaraid_mm 0x3fc1b2b7 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 0x0dcee666 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1a0b22fe osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x275a7b4b osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2840a2b9 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2e0eea0c osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3a803126 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3ac48636 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3eb4924a osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x44483ba1 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x44d388be osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4b0e3ef3 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x59221be9 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x61a9ecfa osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63a9cd2b osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x82c2fb19 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8338d90e osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8d7567dc osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x91ceea60 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x99b8258b osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ae0af1f osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9ce42bbf osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9d374fde osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa772440f osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xaa3d4aa0 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xacd04596 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb42bfc19 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xba4519e9 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xca7a9944 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda5ccdeb osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xde4d54d1 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe121fd11 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe576f743 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xedd6c40a osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfc611ba9 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfca8edd8 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff229a11 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/osd 0x09f06677 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0e928a77 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x2f3a68b4 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8107f50a osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc8238f7f osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd8d45537 osduld_device_same +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0e7868d3 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0f91b2d0 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x305280c4 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x31b7f0df qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x351bc1a2 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5dd987fa qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8cbc158e qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x8d967556 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd92e4b0d qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe953c57b qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xebd360c8 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf322e2e2 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x045c7db2 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x4606af34 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x62779719 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9537956f qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x97636346 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x9b3b0031 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 0x5930c2e5 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x8cfcf8ff raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xc9dc5a8b raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x01a462b1 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0f3a9a21 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2371b6fa fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x27264162 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3118e60b fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3bc08679 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x43354bfb fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x65c1d3c2 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6a284b83 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7803fc0e fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xada7102d fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb52fc2e0 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe3705f38 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x01dc816b sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02c62a98 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07548113 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0e2df296 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x129e8b70 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1590ee03 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x22ddc788 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x32b7c8c2 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x365484c5 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4098f887 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4e2df57b sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5ff74b2c sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69c5a4e8 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6ea3f124 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7387b6bf sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7aba138c sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x88629296 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9b8f329c sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb5ba9aa1 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbb9198df sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc2958946 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd2f459da sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe46dd6c3 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf3093e51 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf4045830 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf93cfd13 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff2bb154 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xffbf15b4 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0c4e0221 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x285d3c0e spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x29080e2e spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2e0cae3e spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8b1f0bca spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x37ced09e srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x800e6699 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x963bdaea srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xb8ba1da0 srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x10406d49 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x25d870eb ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x462c5394 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6696c40a ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x931e7a99 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd7e0a600 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xfa228ede ufshcd_runtime_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x2e7b9165 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x2eb499aa ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x42566cc9 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x4758f3e5 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x56f8c57a ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x5e95f0d0 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x67e15971 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x77b9a811 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x82e9fa3d ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x9e7e9ecf ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xa85a18e3 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xaccee1b4 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc55f7969 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd7e4e2d8 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xe5ecb512 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xea9ecddd ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xf30c5a07 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0xf3e7c167 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf7ba2452 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xfdb978b1 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x153296f8 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1fd67a53 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x431a46e7 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x437fd923 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x497a01d2 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4c9ab9d9 fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b69360d fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e20214b fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6412e0c4 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6a5d7351 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x80cd2c91 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x982bd610 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9bb1574c fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa1bb52bb fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa57f0900 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6fec758 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc103d759 fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd38bc02b fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd59ff733 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd785f878 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd9626f72 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe7489a1e fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe8faf054 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xec48998f fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x4430053e fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xc219a97a fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xb62cbbd8 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x3ad81e2e hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x46c89257 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x731329a5 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb8097176 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x3e86ed9c ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xaa9d07fb ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xef8e4a43 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xaad6fea7 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00ca9936 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04abf7c1 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0be46d30 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e624d33 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x10adf229 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x11440ac4 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x120c93f0 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x133885c2 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d97e8c8 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x20f415e1 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x23517ccc rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x25e940b8 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2dce0f00 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3929057e alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a9e46b9 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ff1add9 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5419de44 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x57a43aed rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5bc8e146 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x61de875d rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x723d232b rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73a28c9e rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73be05b6 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7ebba595 rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x81d42154 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85ed9bab rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x935baec9 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97af40e9 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97b8360d rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99817b64 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9e81bedd rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaaa31334 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xabceab39 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaeedf775 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb4eb9c51 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb68ce914 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb88e6682 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb96e824b Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbcb7dc7d rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc5d35bf0 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcfd43f1a rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1d45558 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1f12fe4 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd5e87c5a rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdca43544 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe65cfea3 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe9e5d092 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeadc8022 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf210446f free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf4e8a0b7 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x014e4467 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x073c87ac ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0962c931 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a1bee07 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a484ef4 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1ac0900b ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24554b87 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x255cec34 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26b97c58 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x277b0904 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2ada62fe ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b2416f6 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2f2dc717 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3d37a834 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x402ab32a IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x40919db7 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x46cc1169 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4a1e4777 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4f36f69c ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5568931f ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5fbf714a Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x65c41248 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a0cab6e ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6bcf9fbe ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6d308147 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74568891 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77742a89 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7c1968a3 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x83e72ba3 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8513a2fd Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x86c3fdb3 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87072c85 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x985aa17e ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a699611 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ac38131 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9eb60acf ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f1b3d04 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f34f7ff ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9f753e1f ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa011066e ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad2be3d6 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb5e808c6 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc87ecec0 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcc794969 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd50b115b HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdab351af ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xde26efbb ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe221037d ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe6c9be38 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9ddf4eb ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf5b60df4 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7b21c96 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc5f9d72 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0650b6b3 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0981fa8b iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x101020b4 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35cbe7d6 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44d1468e iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44d1db96 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x48941f30 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51783bca iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x521ca80c iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5396d777 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5bf10de2 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f46f196 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6cc24007 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x72357f76 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x726b226e iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x863a87d3 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x89e0c7e9 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb93a0673 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbe725958 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd038981d iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd1ec4bf0 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2f7b6b5 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd82f5da0 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0cb7113 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3e91993 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea0bf2dc iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xed8604df iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfd098393 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x00e40281 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x028b3eb6 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03420f73 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1a564e41 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x1cb2a1b1 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d25d831 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x1d2b37c6 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x30cd177e spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x3606680e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x3bdbd52e __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x3f8d9433 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x40443a4c target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x4608155e target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4705e6fa core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x475bed8c transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x4c755c8f core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e1b3530 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f0e7d3c transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x51a1d624 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x54ca36c0 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5ef7aed7 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f1a4e59 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x604fbbbf target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x61f8883b target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x639be969 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x63b0ca6b transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x648a2539 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x69f55e5e target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f6c6670 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x6fe9dfc9 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x75c542d2 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x7d4c4ece transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x82af70c6 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a44f88d target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8c33c94f target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x93544d03 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x93579f81 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x975dcbfe target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x9838b850 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9882d0aa transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x98bc4b4e core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9972e95d target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x9a1665ce target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d97807d sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xa03c897c target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa04cc209 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xa52dcc94 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xad18fde8 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xb191818c transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xb4e2a00b transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8b22b31 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb972ea49 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbc8cfda7 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbd02fbed sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xbdcae39e core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc01f664b target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc29a3125 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xcac3bcfa transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf611ff6 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4aa25bc target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xd55aec92 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xdbf0faec sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc375397 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe279a94d transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe39c25e5 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8d65715 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xee022b95 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd625b96 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xff05d598 core_tpg_set_initiator_node_tag +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 0xfb891751 usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x08606416 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0x0202c2c4 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x06ac47a6 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2c3079e7 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2f949595 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6f2ea225 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7e9503e7 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x84023e79 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8a330a36 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9d83ba2f usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa5a2d7f5 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xd771ef6c usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xdf9356b6 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xfa5a5695 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x28da1650 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x6f993059 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 0x14060f62 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x183c60ac lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x82b9546e devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xf5f5190e devm_lcd_device_register +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x0d24a5fc 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 0x1f713551 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x288ec8a6 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x583f7aa1 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x69a99361 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 0xe28d2a49 svga_set_default_gfx_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xed004f2e svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xefec795c svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0xd85f9f8a sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x25bc09f2 sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x9853c035 sys_imageblit +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x26ea49d4 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 0x029b9623 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 0x095cee8f g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x68840d4a matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x855df811 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x5f276855 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6151ae35 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x81f5f103 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8fb0d1f0 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xb6b4a20e matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x30d93908 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x284e14f7 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x43ea30d9 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xcd25f22e matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xfc2ab73c matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x4c201fd3 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xa969795a matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3dc1be3f matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5ea7ec07 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x833a744b matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb0b124bc matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe206fc8b matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x41b79704 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 0x09fdf9c7 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x3ae9bc90 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x3be13c1e w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa6427e72 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x5bd8438b w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x704582cb w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x31c14a1c w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x95c0895b w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x99711649 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x9c5242d9 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xdadf2dfa w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xf271f17c 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 0x0ea6978f config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x1b4902aa configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x2b9d5ed5 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x5eb96c44 configfs_undepend_item +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 0x8906e6d5 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x9399309b config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x9d8abe88 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xae097dfc configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xb7d70dd6 configfs_depend_item +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 0xe3e882ad configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xe5486ca4 config_item_get +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x3c1fabe1 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x46ba3af8 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x79347c20 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x827cc825 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x8c1f5677 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x9d454291 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xcc74a64f ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xd31b52b3 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xea6a995b ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xf144d9d0 ore_write +EXPORT_SYMBOL fs/fscache/fscache 0x0342a1a6 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x0846b741 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x1271730a __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x155f80ad fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x234ca348 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x247ce774 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x253144dd __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x2bfdd38e __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x2f188435 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x38d0c277 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x3fc96404 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x438066e7 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x4a26e370 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x4a845b34 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x4ae8a50a __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x618fc7b4 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x61d3e5a1 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6f3b87c5 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7b21f3e4 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x817f3653 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x82b30708 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x895ceb67 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x8bb149a4 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x91dc5057 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x97d19511 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xa0dbc573 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xa73c094f fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0xa7f6b50a fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xaa65e6ff __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xb2e81feb __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xb59bcadb __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc210577a fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdb5b3837 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xe6e7e8a7 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xe9d75a30 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xea4a6d87 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xf0efb43d fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xf91259d3 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xfe9c5886 fscache_put_operation +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x11b9c476 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x2da3fefb qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x61668ab5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7ab545da qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xfa1489cc 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 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 0x88d9d42a lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x9265fcc5 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 0x698f1401 lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x748d9c42 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x9f223838 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x60e32080 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xbf8cefe5 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x6d36fca8 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xc3539fbc destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x0743eb74 register_snap_client +EXPORT_SYMBOL net/802/psnap 0xffb89b81 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x01e44caf p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x06eeff61 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x0cd99400 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x140d59c1 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x19468218 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x230077a1 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x26218e59 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x34eb6714 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3859afde p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x3871d641 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x3c18922e v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x4089a375 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4fe11f91 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x51a9d0b1 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x546077b1 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x578e6d5b v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x57a5c624 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x5af0dd6f p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x5ddcb2c5 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x5e19f390 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x61c5d058 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x713255d8 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x744507e5 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x7d497b98 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7ee745e6 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x8668e4a4 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8d20c35d p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xa3627ebc p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xaec6d4df p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xb6bf1768 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc15051cf p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc61a61e0 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xcbd0c5fc p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xcd430d25 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdb606b3a p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe9cd6f81 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xef4ec060 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xf1621110 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf5fb1921 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x2cf86990 alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x351a2ca5 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x45f1d1ce atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x932cfbdf atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x0e92a509 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x14118b7c atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x41c878b0 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5239d968 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x56b62974 atm_charge +EXPORT_SYMBOL net/atm/atm 0x8ddbfc86 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0x8f33aff3 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 0xb2eb8195 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xc4087481 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xc7009e22 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xcc366de8 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0xd29bcfe2 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xe40d2d5f atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0xecb3fcd8 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0b54153e ax25_listen_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 0x4795c346 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x6355f64f ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8002a68c ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x92b3b219 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x97bfa19e ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xbe7150c0 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xf9113df9 ax25_find_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0607e7c3 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0912b838 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0bd64ee1 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0c97aee3 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0e55a0ad bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0ea86da3 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x176ed14b hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x29ad0fcc bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x327b1826 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x32e00c4f hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x38319e8e bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3d312b8b l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x432832a6 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x567fc86c bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5836ae1a l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f91ee08 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6877d927 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6fad8524 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x70539f37 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x76d05f96 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x77b58621 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7eb51129 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f47201a hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7f6e526f bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a6e8e90 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9042bc8e bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x974fa0bf bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e95c9e1 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0541378 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb59ca09a hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3e2fe89 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7147f7b l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd14afdb8 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd38694bd hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd51b7ae9 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdda6632c bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe0b361fb hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xeb29190f bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef61b993 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5a2c4fb l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8894ce0 bt_accept_dequeue +EXPORT_SYMBOL net/bridge/bridge 0xaced4d59 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x05487331 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xa9625a9f ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xb04b5c0b ebt_do_table +EXPORT_SYMBOL net/caif/caif 0x03050412 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 0x31145916 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 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x54e71864 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 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xbb3ceb78 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xc198e5c2 caif_connect_client +EXPORT_SYMBOL net/can/can 0x80ce7bc4 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xa6737066 can_ioctl +EXPORT_SYMBOL net/can/can 0xc3b06d8c can_rx_unregister +EXPORT_SYMBOL net/can/can 0xc70da1ea can_rx_register +EXPORT_SYMBOL net/can/can 0xd6406be7 can_proto_register +EXPORT_SYMBOL net/can/can 0xf8ddb034 can_send +EXPORT_SYMBOL net/ceph/libceph 0x031e7e9e osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x03c5f1cf ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x0897a7a3 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0bf08a64 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x0cef37af osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x117832c1 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x139ec033 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x198d0afb ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x1b97fafa ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x1bed0674 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x1e38fd2f ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x1ff5d5d8 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x26dc38a0 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x270cd71a osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x277d265b ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x287ce700 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x2ed440b1 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x2f6d9744 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x326adb9c ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c806bbf osd_req_op_extent_osd_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 0x41c3a335 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x41e40b4d ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x42362319 ceph_msg_get +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 0x48d6bf55 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x4caa4668 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x55ad14d9 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x5703e9f9 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x59158969 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x5d3069c5 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x5fab3095 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x693d6f8f ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x6a497208 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c026c2d osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x74a778b9 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x75df738e ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7e1d2784 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x8143601f ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x82f40bec ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x88d7aa15 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x8b76a49b ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8bee5c67 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x91592c59 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa0e6fce5 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa2023819 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xa3b8c8c3 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xa4964667 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xa609bb2a ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xa93d514b ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xab203bbb ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae91d297 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb08a9d8d ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb1cb9bbf ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xb384c7d0 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb52c4f66 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb937e3ba osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xb968fb7e ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xc18077b8 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 0xc78505f7 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xc7bf21b7 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xc8a1e885 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 0xcd5128ea osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xcf746973 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xd1d95d86 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd388a6fc osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xd3d74c55 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xdb5674d3 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xe0508bf0 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xe0b1df75 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xe104c9fc ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe590022d osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xe64ba048 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xe78b35c2 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xe808da41 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xe9d7bd88 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xeabe6220 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xefd8bfcb osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xf3c199bf ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf40ed6de ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xf8a67dfc ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xf9ae7c88 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xff1e798a ceph_con_keepalive +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2ee72534 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x3a3a20f2 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x0aaaa616 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6e74f959 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x768cd28a wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xa1d0cb59 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd1482848 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfffe744e wpan_phy_register +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x7184e3be fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xe816569c gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2e8c34d0 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8678788d ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb55a7037 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe3f395f8 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xe970f282 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfa959eb7 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x5f7228d2 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x97c5b3db arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xfb4f4cb0 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0de1509b ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0f0da198 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3edad9b8 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x3d7594e4 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x6409192b xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x38a3cf8a udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x712932ca ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xc5086393 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xcacd1b5c ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xec490e12 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1d8231c8 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x20b3eb4c ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xcb1bf449 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x4e0ed79d xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x54486cd9 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xa741e268 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xaf1c4996 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x226e2fdd ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2b1b13ca ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x44e445a2 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5fe7933a ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x84c7d426 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xad61160a ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdf3a1735 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xeb5a50c6 ircomm_flow_request +EXPORT_SYMBOL net/irda/irda 0x06692fc4 irlmp_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 0x0acb5755 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x0cb4a2d2 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x1b42ca7f irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x1c8cdf80 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x1d9cb4c8 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x1eab4a38 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x22a79422 iriap_open +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x25251da1 irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x26100360 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x306ae3c7 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +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 0x5b521414 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x5d601e88 irlap_open +EXPORT_SYMBOL net/irda/irda 0x5e36002d async_wrap_skb +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 0x78f7a32b irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x7957f728 irlmp_update_client +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x81c7b58f irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x826291ca irlap_close +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 0x9dcfec80 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x9e9f37f4 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xacda2ac0 irda_notify_init +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 0xd5dbc5c6 alloc_irdadev +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 0xe141b9a4 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xea470184 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xea698c41 iriap_close +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 0xf436c770 irlmp_connect_request +EXPORT_SYMBOL net/l2tp/l2tp_core 0x6472f9fa l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x443623ac l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x019e2eba lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x13698587 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x3513c9c9 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x7e99f978 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x7f992813 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xb3555f98 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0xd37727c7 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xd56ee985 lapb_data_request +EXPORT_SYMBOL net/llc/llc 0x12f10511 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x233a6448 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x521a0888 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x73946810 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x831453fb llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x83521f21 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xc8d5a6c2 llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x07229707 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x072f2c8f ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x0fb27339 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x11e1a22b ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x1434de57 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x20262122 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x227cad2d ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x25493b91 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x25dd521a ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x2ce3c196 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x301075fb ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x36a0d21b ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x46601948 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x4671bb81 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x4b895724 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4d49b25c ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x4fc97935 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x56b0cba6 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x5bc68599 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x63ab5038 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x681687a5 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x68389152 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x6984748e ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x6b8ce45c ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x703991a2 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x728f20d8 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x76af28d1 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x793379f9 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x7b3d0fb8 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x7f4bed38 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x812869b4 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x896cd388 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8ae3ba5e ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x8b1c218c ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x8b3d8202 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x8bac1c2d ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x91eaeda9 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x94800de7 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x95783b92 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x961904f9 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x994fb2ff __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9a1261b2 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x9a9e59d0 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9b4bce93 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x9df819ca ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x9f1a7162 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9f65fb26 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xa5c5fe64 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xa8c163f3 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xab992351 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xac835573 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xad80bdb5 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xaef07b78 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aa30d7 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xb26d3088 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb4f84d3e ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xb89446ca ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xb988b770 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xc3266bc3 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xc6f62574 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0xcedbb3f3 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xd188a4bb ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xd210b497 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xd264906f ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xd2ff8603 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd5bf73d8 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd7fa894f ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd9af5799 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xdf3b4a95 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xe0944393 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xe2c58402 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xe65ba10d ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xe8afba25 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xe9304a7b ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xe9cbe874 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xecd8380e ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xed944d07 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xf4b4a4fc ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xf6aa2715 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac802154/mac802154 0x0d4db4c5 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x14adda14 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x240d02a4 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x356461a2 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x35b7ae84 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x3af70a27 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x50082e2a ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x5c073c93 ieee802154_unregister_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05547612 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x21c012c2 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x262f4fdc ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x36367296 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x39fcccc9 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x522bcdee ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5782202c ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75eb13aa unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8c788518 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa3552861 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa55c5e7b register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xba5a8978 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbba9fe94 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf453b7c7 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4df04759 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa992b788 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xefb7bb10 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x06cf49bc nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x1c80415e nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x65451848 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xa46b169f nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0xce453fbf nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe9f9768f __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x057727e2 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x0e06fe62 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x1b24c9f4 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x1ca4d1b3 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x23a7a788 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x3cd44f97 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5bd663cb xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xc06d4dfc xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xc3aab376 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xeae51a17 xt_register_match +EXPORT_SYMBOL net/nfc/hci/hci 0x014075b5 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x02fbb67c nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x0bfe1b80 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x1a1258d1 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x571090fd nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x5ac5c7f8 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x640d75b2 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x6d674e4f nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x82c441b1 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x89b8bfc5 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8f08e4d0 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x9a3dd04f nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xad826fa0 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xb56b7b3f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xb59e285c nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xb9e61e2c nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc405fd26 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd0de2d33 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xd50337b6 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xfa10772d nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xfb073cbf nfc_llc_stop +EXPORT_SYMBOL net/nfc/nci/nci 0x011d7122 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x071c0586 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x1136b263 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x20a2bebe nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x2251cf88 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x2306b8d1 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x29a17db8 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3828efc9 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x3c67c6a2 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x496a1fc7 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x4d78e92e nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x7b5f90cc nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x7d3c62af nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x809cd070 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x86da78d8 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x917be4f3 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x9e5b227b nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xb5e614e2 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc97c311c nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xce43a627 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xd352cc3a nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xd4adaf93 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xd8c2d22e nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe7f18ae8 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0xea89898b nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xf4de7d46 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf887df23 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0xf9b3ab14 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nfc 0x26785a43 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x27ab7b4b nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x31b3bc8d nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x33ec8dcb nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x4eec1403 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x4f89be9b nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x527e9d8b nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x64c47484 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x72abe138 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x7a982917 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x8109705b nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x8d77200a nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xa099c9df nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xa64f65f1 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xb36aa91e nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xb4aa9381 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xc0697e74 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xc44947ea nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xcf427f8a nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xd296b9cf nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xd64c54e0 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xda1ba910 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0xf1bf3b2d nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xfdf06c85 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc_digital 0x4c9c7290 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x5e8de831 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xb3a7bcb0 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xef1ddbbd nfc_digital_register_device +EXPORT_SYMBOL net/phonet/phonet 0x25017687 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x275140e6 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x35172cc2 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x369dda43 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x6ffa2b91 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xa0c3e73a phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xe464053f phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xff2a63f3 pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x093e7e1f rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x13fc62f7 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1f7f5b14 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3f9bb69d rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6d691a96 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7a7fc8e3 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8ecfd51f rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x95e9b033 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x961d48b3 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xa198bb09 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb73a37b8 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc706ef86 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xce1b84a5 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd4e24948 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xea2d3556 rxrpc_get_server_data_key +EXPORT_SYMBOL net/sctp/sctp 0x2c692fba sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x5ebcc892 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6b76cafe gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe6a237d3 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x060f8201 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x2303db04 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe1081aec xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0xb88d7e56 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xe61cee44 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x00f8e22d cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x04497775 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x058c1002 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x059bd51a cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0bc20f1f ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x0fe99219 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x10de01db cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x11079aee cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1180830b cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x143b898a cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x1997454a cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x19f7c743 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x2189486f cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2a8699c8 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x2b1361fc cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x307ad3b2 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x340a96e5 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x3a579be7 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e15a37b cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x4223cac5 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x424b7a9b cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4358aaec cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4d0d4370 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x52b202f6 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x53b754e0 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x54b93cff cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x56b98198 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x5d64e003 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x67c3f144 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6befbd10 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x6ce48116 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x7339d0a1 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x788156b6 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7b4e2993 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f3a088c cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x810b633d cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x81241906 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x824d9ace cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x872a00d9 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x876defc4 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x876e7f25 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x87c3668a ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x87e04787 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b23d31f cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x8db0520d cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8e603553 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x90be65ac wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x916a2fd9 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9210a143 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x932edb19 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x96f5df8a cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x9c374ed0 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x9d4435fa __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9d75037b __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9de89790 cfg80211_remain_on_channel_expired +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 0xa50f2068 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xa83c6ed4 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xb1bb1aa2 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xb32be621 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xbc685d75 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xbd109202 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xbf99994c cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xc2a57499 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xc46c1826 cfg80211_ref_bss +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 0xcb107365 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xd0f551e8 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xd6fa7e1b cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xda5a7b63 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdbb3536f cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdc5460d8 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xdc5684b2 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xdfce9b5c wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xe4716963 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xe97d6761 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xeabee5bf cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xec03e8b7 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xed94f0c2 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xefd669ba cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xf0aa5f97 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xf161f9f5 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xf2d6e1ce cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xfa58c42c cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x4fce3d82 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x78a2e7e9 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7b3a3e5a lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xd35f670b lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe04627a2 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xe91b814f lib80211_crypt_info_free +EXPORT_SYMBOL sound/ac97_bus 0xb3c6a560 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xc9c32df2 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 0x34bfbab7 snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x3fb4d161 snd_seq_kernel_client_dispatch +EXPORT_SYMBOL sound/core/seq/snd-seq 0x590f4b4e 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 0x6f47994f 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 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 0xd0117f22 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 0x26dd97e5 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 0x5af545fe snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02550121 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x07325326 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x07cd16e4 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x13a1d2d5 snd_card_file_remove +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 0x1dfe06ad snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x206c750f snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x2291721f snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x264de0e6 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2e96c2e2 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x399ec187 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x3ef7a9d2 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4ea1d6e4 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x50fe6b49 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x535ef376 snd_card_register +EXPORT_SYMBOL sound/core/snd 0x55ce4706 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x5b169727 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x5c50a23f snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x5f299949 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x5ffd8f47 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x61baf570 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x6314d60a snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x64a175dd snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x6c34419d snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x6fddd7b4 snd_device_new +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7624494a snd_card_new +EXPORT_SYMBOL sound/core/snd 0x77982d02 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x78ca4168 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x7d859571 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x804c1ced snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8d29ee3a snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8eec2964 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x95b80deb _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x96872aaa snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x9a7fcf98 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x9b387f1e snd_register_device +EXPORT_SYMBOL sound/core/snd 0x9d5d55a2 snd_jack_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 0xa1094c7c snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0xa7c7c405 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xaaef657e snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xae00804d snd_info_register +EXPORT_SYMBOL sound/core/snd 0xaf6029ed snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb4a598a5 snd_cards +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd368c1b7 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xe850d363 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xec32aaa3 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xfbe9fbd8 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd-hwdep 0x1e419c1a 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 0x04dcf8a1 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x0c74a7d4 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1121c33a _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x1127168e snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x1326a9d6 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x1bb27e1a 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 0x22ea2051 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x22feed84 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x2d2768da snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x2e8b16b4 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x3699fe18 snd_pcm_hw_constraint_list +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 0x3ce6f888 snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x4b726683 snd_pcm_lib_mmap_iomem +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 0x5537b588 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x5550c5b3 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x55747212 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x566a68d9 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x60e47cae snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x68295cad 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 0x70c5fe71 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x762a9d79 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x83078c6f snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x867a189e snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x86ede42d snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x8aa71dc1 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x963c630e snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x96ae4031 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x97ee7423 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x9fc3040e snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xa2ffb04e snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xaafee45b 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 0xb0d20c66 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbe5b9a86 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xbfdf4245 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xc3475543 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xc827e113 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xc8bcb172 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xc9864c00 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xccde8f36 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xcd1e4dc5 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xce12b244 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd3a48764 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0xdb725290 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xe06ca87d snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xec847289 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xf6c600dc snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xfd2f37aa snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xff287720 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x155a3490 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1a4c55d6 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x25086fa7 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2d062c73 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x371b4701 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3c2c7421 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x44b76d50 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5eda512f __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9f1c81ee snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa043e283 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa5d1a9bf snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaa62fbeb snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc96c94bd snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdc6908f3 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe121cb7c snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe4e747ad snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe7e1270c snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf21c2b95 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf44d21dd snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-timer 0x0b55dcd6 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x1870d398 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x240f889a snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x400d62b6 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x61c9792b snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x7271f931 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x97095c69 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xa7e493d7 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xaeb88bc6 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xbba90bac snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xd5f5f4c8 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xda784707 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xeba9f132 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 0xb8f24f88 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 0x01a77387 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4c950e76 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6427a0e3 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x7977742a snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x8ad080ef snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x99685e6d snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb2b3274c snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf7466e9d snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xfae3ff09 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x1fbd4c78 snd_opl4_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x23a8991a snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x4290472b snd_opl4_write +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x8c66a6b8 snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0xd2669b66 snd_opl4_read +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x31758f9e snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3675bcd5 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4aa72ede snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x4d99122e snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5fdf2ee3 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x62fff756 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6b0aa15b snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9b55b745 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xc28dc3e8 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x114ff0a3 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20dd8175 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2caa5716 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f4e79b4 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34d02f47 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x36738031 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a944ac0 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b5db146 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x643ef373 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66f420b6 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x69b98489 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6a92ed78 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7411c954 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7aa12dcb fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x874a62fd snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8e8c0091 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9b73b860 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9b824cba amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaa9280f8 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae6a0d52 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbbf2e39d cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc656e50f cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc6dd3b1c snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xce8085a2 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xceb4c2f9 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd16907ea amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd8cab97f cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9abbf8f amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdd1ed0a4 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe2d74e90 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeb022db5 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf815a6c6 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2f9b60c0 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x65971d6b snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2f3e2630 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x318aede7 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x3476ba2d snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4343af3d snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5462aa71 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x58a7932f snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x95b392f7 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd01c010f snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x17fbe5f1 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x19f68036 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5e8c5d64 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x84d6c97d snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xa16a7ba2 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xcebf95ff snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x2df8dd06 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x75f0078d snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xcfe3cf50 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xef6462d7 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x65fda308 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xf6561440 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x41e23fec snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5de34411 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbd182f3c snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xbea91168 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc0f495ee snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd4cff9f9 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1917ab33 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x310f4957 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7cda353e snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x89a75357 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd2e85222 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe4ff2c14 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x61ed93b0 snd_tea6330t_detect +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x77bc46c0 snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x1806d375 snd_es1688_reset +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x6e17fab2 snd_es1688_pcm +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xc0ae11f1 snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xd3242339 snd_es1688_mixer +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xf1efd399 snd_es1688_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0df28eca snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x0f20ab3f snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x187174f5 snd_gus_initialize +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1a8faeec snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1cb84eae snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3021c7fb snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x35250659 snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3bb878f9 snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x3e3ba1eb snd_gf1_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x48469257 snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x4eaa3cb4 snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x626303dd snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6576e2a2 snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x68b081fd snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x68fb6f94 snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x6e78c104 snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x86edfc80 snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8fc1d492 snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9774dd4e snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa279d3e8 snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xad7f14d4 snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb7b8277c snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xb8279ea3 snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc2435cf0 snd_gf1_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd1533eb6 snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd2dc438b snd_gus_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xed21cb1c snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf037860c snd_gf1_poke +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf8cc9f58 snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xfbc1b016 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 0x21da229c snd_msndmix_setup +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x2c8a3e87 snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x2dedf10d snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x50e04c7f snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x584f21cc snd_msndmix_new +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x69a3341c snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x8b2c12ae snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xad316800 snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb064fa45 snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xbaae4e28 snd_msnd_pcm +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xc0709bff snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xc3cc1fae snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x9432ed4e snd_aci_cmd +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0xe751cd10 snd_aci_get_aci +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x0febdaf5 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x21fcbfff snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4a67e3c2 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5a796198 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x711bc64d snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x724345b8 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa47bea20 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb33ee728 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbd058ed3 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd0a45efb snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0xdb153548 snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x18f489c1 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x80b5dd5e snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xbfe6dbf4 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x33dc0365 snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x63f32859 snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x9bf03553 snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xf7d8c5a8 snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x294ebcda snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x4fa6ceb9 snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x552a2a77 snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x55437796 snd_emu8000_peek +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x7140f922 snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x7703a6ce snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xafe8381d snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xba49279a snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xc67a1751 snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xd81e00a7 snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xde801d2e snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1601ce61 snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1995bfeb snd_wss_info_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x2c704980 snd_wss_pcm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x318b6d57 snd_wss_mce_up +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x498dec39 snd_wss_mce_down +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x577e8047 snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x5c436737 snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7dd88f78 snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x85297c1b snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x946be6fb snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x9d135641 snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xc4e30e01 snd_wss_get_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xd9d9e03c snd_wss_get_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xdfab4aab snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xeadb9fc2 snd_wss_put_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf125ae7a snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf3291ecf snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf41a9340 snd_wss_timer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf7e171ff snd_wss_put_double +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x40977f1f snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5444f473 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5c90a85a snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5d15af2a snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5dab884a snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x61cc7d0e snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x67ddbb1e snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x82c90f85 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8a76b1e5 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9abc0e35 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa219c35f snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa38780cb snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9438288 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc817baa4 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe78602a4 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xed9f946a snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe7fae12 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0x45233a91 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3c9c1280 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x40a33abe snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x44e70924 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x48d8bd84 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5d2b5d76 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5ecc7e66 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x74fcc8fd snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa3a9b8df snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd6d739e4 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0479c508 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x13aa002c snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x7315aa0c snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0fc88b35 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1aa26b50 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2912d9a0 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x2e268ec5 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x389450f4 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x431cfac1 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5e6ebdc6 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x61008b8c oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6afd6db9 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6c7db282 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6cc02ae2 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x73e11369 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x79db63df oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7bf3f1ee oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7db0e004 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x832aa124 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x97b7210b oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaf6a82d5 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb2685b07 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbcdd6bfd oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xec077d32 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x25a6f098 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x78bba5b1 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x82e5481a snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9d0fabe3 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xeecd2c75 snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x0b3e1638 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xb557cc56 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0x2d176af4 sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0x405a7467 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x02ab90c8 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x27da4738 sound_class +EXPORT_SYMBOL sound/soundcore 0x2d58c472 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xc3faa357 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe1309ee0 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xf6e2fe13 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x6c88ee60 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x79153190 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xb1b20f95 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc5b64553 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd4af2eb5 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xff551854 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/snd-util-mem 0x07196514 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2254fdf6 snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x2e23875e __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa43aeb2e snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xbcdbae28 snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe4e837bb snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xe7f222cb snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0xef56cf88 __snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x00eef49f 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 ubuntu/hio/hio 0x1383c763 ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x59bdb133 ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0x6015dded ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x77db1824 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x8c73ce8c ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x931e2966 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0xb0a1d250 ssd_get_pciaddr +EXPORT_SYMBOL ubuntu/hio/hio 0xbbeda78b ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0xc0c2f085 ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0xeda19af8 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0xf8b2b973 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 0x000d66e8 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x00150cfb ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x0017f43c __sock_create +EXPORT_SYMBOL vmlinux 0x001e4a78 devm_release_resource +EXPORT_SYMBOL vmlinux 0x002b1712 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x0037c1fc blk_start_queue +EXPORT_SYMBOL vmlinux 0x0066651f gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x00795250 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x00a8de4e bioset_free +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00c03971 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00f69f0b nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01066aae mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack +EXPORT_SYMBOL vmlinux 0x014baab1 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x0151f822 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x0152a8fd sock_i_ino +EXPORT_SYMBOL vmlinux 0x0157693a scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x015ba841 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x015ce859 acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0170610d xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x0170a024 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x01733d25 put_page +EXPORT_SYMBOL vmlinux 0x017cdd1b no_llseek +EXPORT_SYMBOL vmlinux 0x017d6f9f blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x018204fd arp_tbl +EXPORT_SYMBOL vmlinux 0x01b7799f sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x01c1e43d gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x01d6ad64 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x01ddca37 padata_do_serial +EXPORT_SYMBOL vmlinux 0x01e854b3 d_add_ci +EXPORT_SYMBOL vmlinux 0x01edbe1f read_cache_page +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x021ceddd scsi_print_command +EXPORT_SYMBOL vmlinux 0x021f7588 simple_dname +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0264b1b7 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x026acb05 get_gendisk +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0276efa9 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x028e43a9 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02aac4d6 elv_register_queue +EXPORT_SYMBOL vmlinux 0x02b0728a dev_deactivate +EXPORT_SYMBOL vmlinux 0x02b7930f blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x02bf15a9 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x02c5864f inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x02cef066 down_write +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02eaf099 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x03117aee blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x03222cd1 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x03245590 __kfree_skb +EXPORT_SYMBOL vmlinux 0x032fd5db led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x033479d0 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034332fd mdiobus_scan +EXPORT_SYMBOL vmlinux 0x035752ce wake_up_process +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035ba569 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036dd165 param_set_ulong +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0391a982 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x039e21f8 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x03bfd989 tty_lock +EXPORT_SYMBOL vmlinux 0x03c66732 ping_prot +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 0x042bed40 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04520a70 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x046bfa95 dquot_quota_off +EXPORT_SYMBOL vmlinux 0x046ef390 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x04743736 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x04757f27 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x04819c5f d_genocide +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04973154 mntput +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04d92887 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x04e003f9 udp_proc_register +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f89085 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x04f96fa6 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530bfb3 cont_write_begin +EXPORT_SYMBOL vmlinux 0x0546c2d7 proc_symlink +EXPORT_SYMBOL vmlinux 0x054dd3f2 kunmap_high +EXPORT_SYMBOL vmlinux 0x0558ed9f padata_alloc +EXPORT_SYMBOL vmlinux 0x05ad0f68 flush_old_exec +EXPORT_SYMBOL vmlinux 0x05b5e042 vme_slave_request +EXPORT_SYMBOL vmlinux 0x05c8bb7a sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x05d847a6 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x05f115e2 tty_port_open +EXPORT_SYMBOL vmlinux 0x05fa1820 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x05fcc34f dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0631d674 inet_addr_type +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x066dde55 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x0670abb9 seq_read +EXPORT_SYMBOL vmlinux 0x0672988e skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x06a310bf sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06c519fc netdev_info +EXPORT_SYMBOL vmlinux 0x06c56927 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x06dc783d qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x06e635ce freeze_super +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x07063312 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x0710c54f xfrm_input +EXPORT_SYMBOL vmlinux 0x0715e0db nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072e068a user_path_at_empty +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073aa19d kmem_cache_size +EXPORT_SYMBOL vmlinux 0x073f7f83 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x074d5226 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x075703ef sock_recvmsg +EXPORT_SYMBOL vmlinux 0x075ea4db inode_set_flags +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x07630c95 get_user_pages +EXPORT_SYMBOL vmlinux 0x0765d6cf inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x0784730e kernel_listen +EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create +EXPORT_SYMBOL vmlinux 0x07920a8d lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x0794b72b scsi_execute +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x07e46771 mpage_writepage +EXPORT_SYMBOL vmlinux 0x07fedf55 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0844da36 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x08488318 make_kgid +EXPORT_SYMBOL vmlinux 0x0848a0b1 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x0849bd59 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x0867f7d7 km_new_mapping +EXPORT_SYMBOL vmlinux 0x08696aa5 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08a60ceb key_reject_and_link +EXPORT_SYMBOL vmlinux 0x08a79181 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x08b788a6 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x08d483d0 current_in_userns +EXPORT_SYMBOL vmlinux 0x08db0eb3 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f077c0 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x093b8fb7 vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0x09552912 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x0956522e mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099e57cc audit_log_start +EXPORT_SYMBOL vmlinux 0x09a860d1 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x09ad8ee1 proc_create_data +EXPORT_SYMBOL vmlinux 0x09b463cc sk_stream_error +EXPORT_SYMBOL vmlinux 0x09bfd2b7 vme_bus_num +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09cb7d56 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x09eab1f1 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x09ef591a iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x09f006fc scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x0a0cbe9e netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x0a1575b3 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x0a23d4a5 seq_printf +EXPORT_SYMBOL vmlinux 0x0a2633ad do_splice_from +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 0x0a5a3039 clkdev_drop +EXPORT_SYMBOL vmlinux 0x0a5d0c0a set_trace_device +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a9de1dc blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aabd1f6 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0x0acdf572 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0adcb5be inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x0af08a1a devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b30dca8 param_set_charp +EXPORT_SYMBOL vmlinux 0x0b46e7e0 free_user_ns +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b56ec3c tty_port_close_end +EXPORT_SYMBOL vmlinux 0x0b5a962a blk_put_queue +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6a85ea pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x0b71ecb7 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b786143 inet_frag_find +EXPORT_SYMBOL vmlinux 0x0b7e8510 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b9a6946 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x0b9f9ae5 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd1914f devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x0bd30dac dm_io +EXPORT_SYMBOL vmlinux 0x0c1ef62a udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x0c29da3e agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x0c441a43 inet_sendpage +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5af9f8 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x0c659883 thaw_super +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c89b9b4 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x0c8bbd4e dma_ops +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0caacae4 empty_aops +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb5d6cf setup_arg_pages +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0cdf919b twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x0ce37586 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x0cf36ebc kill_litter_super +EXPORT_SYMBOL vmlinux 0x0d012c3c scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x0d0541b3 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d3f7d7b pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x0d403ffb phy_start_aneg +EXPORT_SYMBOL vmlinux 0x0d4a31ce mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d914420 dentry_unhash +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dc4aa08 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0df8245d mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0dfbdf3a tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x0e15b781 kill_fasync +EXPORT_SYMBOL vmlinux 0x0e1ec73b sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e892b3a inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x0e956608 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb0c9b9 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef0ca77 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x0ef7c923 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0efda6ad rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x0f079bb8 should_remove_suid +EXPORT_SYMBOL vmlinux 0x0f0c6ad2 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0f12d9c7 generic_write_end +EXPORT_SYMBOL vmlinux 0x0f15e86d input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x0f1cec85 tty_port_put +EXPORT_SYMBOL vmlinux 0x0f332af0 tty_write_room +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f52277b __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x0f53c91d softnet_data +EXPORT_SYMBOL vmlinux 0x0f57c604 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x0f59a011 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7583ff sk_ns_capable +EXPORT_SYMBOL vmlinux 0x0f7703f2 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f85e93a generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x0f89eef0 clk_add_alias +EXPORT_SYMBOL vmlinux 0x0f8bb48f phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x0fa16289 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x0fa61726 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbde9e3 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x0fc163c0 pipe_lock +EXPORT_SYMBOL vmlinux 0x0fcaf085 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ffa1b2e d_obtain_root +EXPORT_SYMBOL vmlinux 0x1005e91b vme_master_request +EXPORT_SYMBOL vmlinux 0x10191cdf dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x1024732c nf_log_set +EXPORT_SYMBOL vmlinux 0x102af165 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x108fcb15 rwsem_wake +EXPORT_SYMBOL vmlinux 0x109356af dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x109d125d scsi_register_driver +EXPORT_SYMBOL vmlinux 0x109d581d kfree_skb_list +EXPORT_SYMBOL vmlinux 0x10b5ab34 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f51993 padata_stop +EXPORT_SYMBOL vmlinux 0x10f85b8e jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x10fa2d42 kthread_stop +EXPORT_SYMBOL vmlinux 0x1104a660 inode_init_once +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x115e3166 inet6_protos +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1198fcdd dev_remove_pack +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command +EXPORT_SYMBOL vmlinux 0x11f6110e devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x1202942a __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1211820b cfb_copyarea +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x123b0409 md_error +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x12578a40 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x125ae665 override_creds +EXPORT_SYMBOL vmlinux 0x1271a802 iterate_dir +EXPORT_SYMBOL vmlinux 0x12a1dfa3 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a5b7ec ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x12a92848 dst_release +EXPORT_SYMBOL vmlinux 0x12ad4420 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x12bc70e2 md_done_sync +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e46636 console_start +EXPORT_SYMBOL vmlinux 0x12e66cf7 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x12f3b61b bio_copy_kern +EXPORT_SYMBOL vmlinux 0x1300f5d9 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x1303f843 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x1312b28f dm_put_table_device +EXPORT_SYMBOL vmlinux 0x1315a700 seq_pad +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x132efeef rt6_lookup +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x13565ba7 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x135c1662 dquot_release +EXPORT_SYMBOL vmlinux 0x13a4d4c0 unload_nls +EXPORT_SYMBOL vmlinux 0x13ad49cf max8925_set_bits +EXPORT_SYMBOL vmlinux 0x13b01e02 __quota_error +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d1914a setup_new_exec +EXPORT_SYMBOL vmlinux 0x13d5b343 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f9de34 cpu_info +EXPORT_SYMBOL vmlinux 0x13fa4f04 module_layout +EXPORT_SYMBOL vmlinux 0x13fdcb33 fb_pan_display +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x142ca423 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x142fa21c sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x14389365 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x1444a976 led_blink_set +EXPORT_SYMBOL vmlinux 0x144a6ee2 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x1452b4cf __mdiobus_register +EXPORT_SYMBOL vmlinux 0x1460f81f ip_check_defrag +EXPORT_SYMBOL vmlinux 0x1467ac1d deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x14790476 free_netdev +EXPORT_SYMBOL vmlinux 0x147cbef5 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x1485a082 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x14901c5d drop_nlink +EXPORT_SYMBOL vmlinux 0x14c331ab inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x15017335 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x1527fe96 ht_create_irq +EXPORT_SYMBOL vmlinux 0x1537c401 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1560bc2d md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x156c2926 tcp_child_process +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x158b8044 pci_iomap +EXPORT_SYMBOL vmlinux 0x15b84abf nlmsg_notify +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15e27d36 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x16074f97 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x16365805 bh_submit_read +EXPORT_SYMBOL vmlinux 0x163ba3f2 tty_name +EXPORT_SYMBOL vmlinux 0x16561cf9 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x1657046c jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x166ff400 tc_classify +EXPORT_SYMBOL vmlinux 0x167a45b8 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x16a3340d from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x16ba97ac cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x16c93e97 pipe_unlock +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x1702c455 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x170e41c3 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x170e7f65 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x172c34ad devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x1738b852 udp_add_offload +EXPORT_SYMBOL vmlinux 0x173ff63a bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x174737fd tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x1747ec20 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x176c245c devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x178274eb iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c424ee skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x17e74917 bio_map_kern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182e0017 __sb_start_write +EXPORT_SYMBOL vmlinux 0x182e2b6a dma_sync_wait +EXPORT_SYMBOL vmlinux 0x1836468b __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184caef6 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x186120d2 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x187a35d8 register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188d598b __breadahead +EXPORT_SYMBOL vmlinux 0x188d963b __neigh_event_send +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x18948ed2 scsi_print_result +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189de67d dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x18a53667 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x18c9942f dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f44236 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x18fa5faa cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x190dfa69 __mutex_init +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x19222549 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x193d1ab2 textsearch_register +EXPORT_SYMBOL vmlinux 0x194bcedd security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x195eabc5 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x196d3533 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x19984512 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b88a37 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x1a0d7d64 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1a232231 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x1a32bcc1 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x1a44e034 tty_port_close +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a4779c5 iov_iter_init +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a75e57d skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x1a998051 from_kgid +EXPORT_SYMBOL vmlinux 0x1ac41fb9 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x1ae11bb5 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b123d40 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b1e5f18 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x1b242f83 kfree_put_link +EXPORT_SYMBOL vmlinux 0x1b3b6a60 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x1b52a2c9 vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b64278f page_put_link +EXPORT_SYMBOL vmlinux 0x1b6a53f0 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x1b70427a sg_miter_next +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b91c730 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x1b928e62 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x1b986e97 vfs_symlink +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb8c213 da903x_query_status +EXPORT_SYMBOL vmlinux 0x1bcdf100 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x1bd13dc1 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x1bdf062b pci_enable_msix +EXPORT_SYMBOL vmlinux 0x1be0e2a2 skb_find_text +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1bfa4903 dev_add_offload +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c30631a clkdev_alloc +EXPORT_SYMBOL vmlinux 0x1c3cf608 scsi_register +EXPORT_SYMBOL vmlinux 0x1c58cccb page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x1c736a49 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1cad9a24 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x1cb94821 send_sig_info +EXPORT_SYMBOL vmlinux 0x1cdb572b block_truncate_page +EXPORT_SYMBOL vmlinux 0x1cf47a9b agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x1cfeadc4 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x1d0133ff complete_request_key +EXPORT_SYMBOL vmlinux 0x1d15044c mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x1d18391a bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x1d466aa6 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x1d46a3d8 __inet_hash +EXPORT_SYMBOL vmlinux 0x1d5010e2 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x1d5549ab km_report +EXPORT_SYMBOL vmlinux 0x1d622473 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x1d64dacf __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x1d726e35 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x1d7bfc73 iget5_locked +EXPORT_SYMBOL vmlinux 0x1da32b3a skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x1da9cc34 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x1daa3d43 vme_register_bridge +EXPORT_SYMBOL vmlinux 0x1dc3102e locks_free_lock +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dc7557b dev_alert +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e144fce __destroy_inode +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e32dc48 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x1e336559 phy_init_hw +EXPORT_SYMBOL vmlinux 0x1e4cdd4f __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x1e5118e2 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e88d38e mark_info_dirty +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb665e6 new_inode +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ed0105f param_get_ushort +EXPORT_SYMBOL vmlinux 0x1ed4ed87 do_splice_direct +EXPORT_SYMBOL vmlinux 0x1edca132 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x1ee3181c pnp_device_detach +EXPORT_SYMBOL vmlinux 0x1eebf1a9 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x1f2d21c6 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x1f4e3525 dup_iter +EXPORT_SYMBOL vmlinux 0x1f520a9b touch_atime +EXPORT_SYMBOL vmlinux 0x1f7863ff __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1fa9d00c reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe664ec twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x1fe70556 input_free_device +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff4a6ae inet_frags_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 0x201b0ac0 lg_global_unlock +EXPORT_SYMBOL vmlinux 0x201fd1ae add_disk +EXPORT_SYMBOL vmlinux 0x20205f64 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x202f4e92 acpi_extract_package +EXPORT_SYMBOL vmlinux 0x202facc4 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x20486c2d cdrom_open +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x20688999 pci_choose_state +EXPORT_SYMBOL vmlinux 0x206b45a5 vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x2072c166 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208220a6 page_symlink +EXPORT_SYMBOL vmlinux 0x20833773 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20be30e0 notify_change +EXPORT_SYMBOL vmlinux 0x20c23b85 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20c6192f intel_scu_ipc_ioread32 +EXPORT_SYMBOL vmlinux 0x20d39a31 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x20db944d dcache_readdir +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20feabfa __f_setown +EXPORT_SYMBOL vmlinux 0x212002a2 key_invalidate +EXPORT_SYMBOL vmlinux 0x212999c1 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x2154f095 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x2179cf88 md_write_start +EXPORT_SYMBOL vmlinux 0x21845ba3 d_alloc +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21b2fc31 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x21c04c5c acl_by_type +EXPORT_SYMBOL vmlinux 0x21c99445 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x21ce538b alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x21d0bc9e netif_rx_ni +EXPORT_SYMBOL vmlinux 0x21d0ff59 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x21d83f4f bio_clone_fast +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x21ff7cf5 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226eefe8 devm_ioremap +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x227d163c alloc_fcdev +EXPORT_SYMBOL vmlinux 0x22ad24e5 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bb93f7 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x22dee5df scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22fc4f3a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x2307d6f7 i2c_transfer +EXPORT_SYMBOL vmlinux 0x2308033e phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23260f41 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x232d18ec rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2336d57d ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x2342fe41 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x2356e05e input_unregister_handle +EXPORT_SYMBOL vmlinux 0x236b16e7 iget_failed +EXPORT_SYMBOL vmlinux 0x2388158e kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b86af0 __frontswap_test +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bb0fba blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23d18242 cdev_add +EXPORT_SYMBOL vmlinux 0x23dcf7e7 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x23e5d2d1 eth_type_trans +EXPORT_SYMBOL vmlinux 0x23edf9a5 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x23f59417 sget_userns +EXPORT_SYMBOL vmlinux 0x23f5c63d unregister_key_type +EXPORT_SYMBOL vmlinux 0x23f778b2 inet6_offloads +EXPORT_SYMBOL vmlinux 0x23f798b2 sock_release +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24130139 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x241ccede md_cluster_ops +EXPORT_SYMBOL vmlinux 0x241fe20b dev_mc_flush +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24288653 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24537bb7 cpu_tss +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245a269e get_phy_device +EXPORT_SYMBOL vmlinux 0x24630111 phy_attach +EXPORT_SYMBOL vmlinux 0x247abace csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x247e3668 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24a09760 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x24a0df93 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x24ac777e udp_seq_open +EXPORT_SYMBOL vmlinux 0x24b4e834 input_unregister_device +EXPORT_SYMBOL vmlinux 0x24ebf3bc mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x24f7b923 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x24fe3d23 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25170259 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252dcd40 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x253059e0 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x254dcb5f led_update_brightness +EXPORT_SYMBOL vmlinux 0x2551575c clear_nlink +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x257af593 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x259a8a06 key_type_keyring +EXPORT_SYMBOL vmlinux 0x259b097a bio_chain +EXPORT_SYMBOL vmlinux 0x25ad8550 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x25d9fd7e xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x25db2b2f ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x261e2dd7 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x263c6eec copy_to_iter +EXPORT_SYMBOL vmlinux 0x2641fd3e nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x264d9026 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2651f201 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x265b5e1d framebuffer_release +EXPORT_SYMBOL vmlinux 0x26879c82 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x268a0e1f blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x26a643d2 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x26b599c0 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x26b6b4ea buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x26c5055f noop_fsync +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26e81e3c jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x26f1dff1 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x27087c3c gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x271647cc elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x272ba3f6 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x272eecd9 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x273a183b skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2749f76f __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275da854 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x2765e437 amd_northbridges +EXPORT_SYMBOL vmlinux 0x276b0803 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x27757c2b netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x278e42d0 __blk_end_request +EXPORT_SYMBOL vmlinux 0x2791ea53 __free_pages +EXPORT_SYMBOL vmlinux 0x27999419 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27af9440 tty_port_init +EXPORT_SYMBOL vmlinux 0x27bb06b9 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x280580ef crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x280c73d2 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28264b2e register_console +EXPORT_SYMBOL vmlinux 0x283fc92e file_ns_capable +EXPORT_SYMBOL vmlinux 0x28739042 follow_down +EXPORT_SYMBOL vmlinux 0x289b9592 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28deb314 bio_init +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28f3a9f2 dma_find_channel +EXPORT_SYMBOL vmlinux 0x292cc9ad mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x2933e99a agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29584098 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x295d4db8 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x295dc1f4 input_get_keycode +EXPORT_SYMBOL vmlinux 0x295e31a6 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x2960c69c x86_hyper_xen +EXPORT_SYMBOL vmlinux 0x2975fc1f fb_set_suspend +EXPORT_SYMBOL vmlinux 0x298ac712 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x29a12afa blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x29f19534 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a101c62 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x2a27d3fe inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x2a2cdfec fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a51c677 fsync_bdev +EXPORT_SYMBOL vmlinux 0x2a5351a3 rtnetlink_put_metrics +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 0x2a99b58c agp_bind_memory +EXPORT_SYMBOL vmlinux 0x2a9c5a04 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x2a9f5ff1 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ada4497 path_noexec +EXPORT_SYMBOL vmlinux 0x2b027682 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x2b038dd4 mapping_tagged +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2c6824 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b49becf xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x2b61e0cd clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x2b97d777 backlight_device_register +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 0x2bf58576 to_nd_btt +EXPORT_SYMBOL vmlinux 0x2bfc691b xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c18a752 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c4322f9 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x2c46c445 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x2c5480f1 param_ops_bint +EXPORT_SYMBOL vmlinux 0x2c692939 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x2c6b3483 free_task +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2cb45ba8 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x2cbf3e72 input_grab_device +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2ce2c3c5 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d143214 iget_locked +EXPORT_SYMBOL vmlinux 0x2d144e21 rdmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x2d1d59e6 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x2d24c134 abort_creds +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d373cac blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x2d690d62 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x2d6da64a kunmap +EXPORT_SYMBOL vmlinux 0x2d71750a dquot_get_state +EXPORT_SYMBOL vmlinux 0x2d908823 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x2dbc655a blk_run_queue +EXPORT_SYMBOL vmlinux 0x2dc058bf pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd4b292 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2ddd87c1 find_lock_entry +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e0b6878 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x2e0d62d5 vfs_getattr +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e2caf35 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e3a8cff set_security_override +EXPORT_SYMBOL vmlinux 0x2e4074d7 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x2e465f45 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x2e49578f max8998_read_reg +EXPORT_SYMBOL vmlinux 0x2e665b34 agp_backend_release +EXPORT_SYMBOL vmlinux 0x2e7fb9f6 keyring_search +EXPORT_SYMBOL vmlinux 0x2e8cfd0d blk_make_request +EXPORT_SYMBOL vmlinux 0x2eab2c82 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ecd458b kernel_accept +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2efd094b dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f08da9d __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x2f15f092 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x2f27802b mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x2f2e130e tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f43414b mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f61d9ee i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x2fa37baa qdisc_reset +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fd4baa1 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe345af netlink_ack +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x30253026 register_cdrom +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3094b0a8 __alloc_skb +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 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x30f6f938 mount_bdev +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x3110366e security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x312da9f9 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x31513db9 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x31561563 __neigh_create +EXPORT_SYMBOL vmlinux 0x315c78f5 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x315e4b89 md_flush_request +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317d1e03 input_close_device +EXPORT_SYMBOL vmlinux 0x318b992f memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x318c43ba nf_hook_slow +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31a8db17 simple_statfs +EXPORT_SYMBOL vmlinux 0x31ca89d5 kern_unmount +EXPORT_SYMBOL vmlinux 0x31df320b build_skb +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 0x31fdbed4 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x32039801 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x320d96d4 simple_getattr +EXPORT_SYMBOL vmlinux 0x3216c030 md_write_end +EXPORT_SYMBOL vmlinux 0x32251113 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x324f03b0 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x32697318 ata_port_printk +EXPORT_SYMBOL vmlinux 0x327b8e1a inet_shutdown +EXPORT_SYMBOL vmlinux 0x3295da2a pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x329e152d mmc_can_reset +EXPORT_SYMBOL vmlinux 0x32a05802 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section +EXPORT_SYMBOL vmlinux 0x32c7df78 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x32cd8dfc __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x32dd5fdd simple_lookup +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32f27e95 generic_permission +EXPORT_SYMBOL vmlinux 0x33168367 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x336600e6 set_user_nice +EXPORT_SYMBOL vmlinux 0x33825150 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x33905c37 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x339392ea param_ops_charp +EXPORT_SYMBOL vmlinux 0x33b08a3b sg_miter_start +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33ce3a1b arp_send +EXPORT_SYMBOL vmlinux 0x33d62b79 agp_free_memory +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x34166da8 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x342054f1 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x3435aa9c blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x34377bcc inet_stream_ops +EXPORT_SYMBOL vmlinux 0x34438b06 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x3457b721 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x346485b2 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346e7182 d_path +EXPORT_SYMBOL vmlinux 0x346fe359 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a09501 simple_setattr +EXPORT_SYMBOL vmlinux 0x34b51573 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x34c56960 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x34d3219f dquot_disable +EXPORT_SYMBOL vmlinux 0x34d4ab1e start_tty +EXPORT_SYMBOL vmlinux 0x34e00a40 phy_device_free +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3520da31 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x3523e300 kernel_read +EXPORT_SYMBOL vmlinux 0x353c50a8 kmem_cache_alloc_trace +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 0x356936b4 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x359e6973 serio_close +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b55bb6 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x35b76573 skb_checksum +EXPORT_SYMBOL vmlinux 0x35d17e7d acpi_device_hid +EXPORT_SYMBOL vmlinux 0x35db84bf request_firmware +EXPORT_SYMBOL vmlinux 0x35def069 inode_init_owner +EXPORT_SYMBOL vmlinux 0x35e7a2f6 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x35fbf927 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x35fc7980 md_register_thread +EXPORT_SYMBOL vmlinux 0x3609df16 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3670721f nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x36a27c35 netlink_capable +EXPORT_SYMBOL vmlinux 0x36a8cebf PDE_DATA +EXPORT_SYMBOL vmlinux 0x36b2c78c ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 +EXPORT_SYMBOL vmlinux 0x36d45f7e iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x36f271b0 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x3704c4c0 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x3735f6bf __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x375319bf nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x37734cc8 kmem_cache_alloc +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 0x37c0bf9d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x37d09656 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37dd0ae2 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37ec5909 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37f65094 kdb_current_task +EXPORT_SYMBOL vmlinux 0x3803821a seq_escape +EXPORT_SYMBOL vmlinux 0x3803ce44 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ad13a user_path_create +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x3820f90c get_super +EXPORT_SYMBOL vmlinux 0x38471d56 nf_log_trace +EXPORT_SYMBOL vmlinux 0x38476475 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x3851e589 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x3867df05 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x387bef1a dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38d551a6 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x38e2b580 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x38e8a70b from_kprojid +EXPORT_SYMBOL vmlinux 0x38f3c344 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x390b77e1 blk_get_request +EXPORT_SYMBOL vmlinux 0x390e51e7 security_path_chmod +EXPORT_SYMBOL vmlinux 0x39140aeb skb_push +EXPORT_SYMBOL vmlinux 0x391ed0f1 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3985318e md_cluster_mod +EXPORT_SYMBOL vmlinux 0x398b24a2 update_devfreq +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39a3956e devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x39a9a44d nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b90ef7 bdi_destroy +EXPORT_SYMBOL vmlinux 0x39c04552 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x39c2ed77 vme_bus_type +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x39f523ed km_policy_expired +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a5276db jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x3a69b9bf blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x3a718a3f page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x3a8a6542 mpage_readpage +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ac9d18a kmem_cache_create +EXPORT_SYMBOL vmlinux 0x3b1eb872 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart +EXPORT_SYMBOL vmlinux 0x3b319ae8 iterate_fd +EXPORT_SYMBOL vmlinux 0x3b3f4c0a inet6_release +EXPORT_SYMBOL vmlinux 0x3b44f8ef dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b89bad3 padata_start +EXPORT_SYMBOL vmlinux 0x3b961ade tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x3bb22e92 set_create_files_as +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bc28858 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x3bc5a5b3 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x3be66e5a pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x3bf21224 nvm_end_io +EXPORT_SYMBOL vmlinux 0x3c2e774c gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x3c3734c6 input_allocate_device +EXPORT_SYMBOL vmlinux 0x3c39ce9d twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c4b14ab tcp_prequeue +EXPORT_SYMBOL vmlinux 0x3c4b1bca jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x3c5eb2b7 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x3c63a9ac vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0x3c788a6c __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x3c7c7ea9 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c85e8a2 check_disk_change +EXPORT_SYMBOL vmlinux 0x3c927b04 skb_store_bits +EXPORT_SYMBOL vmlinux 0x3ca5989f proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cd6a826 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x3cda0616 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x3cdda1c2 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf1140f noop_llseek +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d17c41d pci_dev_put +EXPORT_SYMBOL vmlinux 0x3d1dc369 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x3d24c0b5 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x3d274b04 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x3d32f7d0 netlink_unicast +EXPORT_SYMBOL vmlinux 0x3d3af451 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x3d430c83 set_posix_acl +EXPORT_SYMBOL vmlinux 0x3d64cf52 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x3d64f0be sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x3d6cf5e4 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x3d797a27 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x3d7a2199 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d86323f mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3db63260 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x3dc209ff dmam_pool_create +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e1809c0 account_page_redirty +EXPORT_SYMBOL vmlinux 0x3e1c865b thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x3e25d2d8 param_ops_byte +EXPORT_SYMBOL vmlinux 0x3e293e87 register_shrinker +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e2cbc5c vm_insert_page +EXPORT_SYMBOL vmlinux 0x3e49b7bb pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x3e4dc35f jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x3e55e20e fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x3e5b37ce mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x3e644689 tty_devnum +EXPORT_SYMBOL vmlinux 0x3e64d94f max8998_update_reg +EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9934ab tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x3eb7547c simple_release_fs +EXPORT_SYMBOL vmlinux 0x3ed30625 tcp_req_err +EXPORT_SYMBOL vmlinux 0x3ee242b7 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x3ef4853a tcp_close +EXPORT_SYMBOL vmlinux 0x3ef72c74 jbd2_journal_restart +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 0x3f0d316b nf_log_packet +EXPORT_SYMBOL vmlinux 0x3f1e6b31 key_revoke +EXPORT_SYMBOL vmlinux 0x3f20ca97 rtc_lock +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f45b250 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f707f9c dput +EXPORT_SYMBOL vmlinux 0x3f825db8 vfs_rename +EXPORT_SYMBOL vmlinux 0x3f896dc5 datagram_poll +EXPORT_SYMBOL vmlinux 0x3f973068 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x3f990a12 proc_set_user +EXPORT_SYMBOL vmlinux 0x3fbaa6d8 phy_init_eee +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff57a39 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x3fff8d28 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x4004944d netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x40154d1f locks_remove_posix +EXPORT_SYMBOL vmlinux 0x4015f7df vfs_llseek +EXPORT_SYMBOL vmlinux 0x40239a85 udp_poll +EXPORT_SYMBOL vmlinux 0x4025947a wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x403247b6 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x404ea0a6 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x405cd6fb pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x406cda3b vlan_dev_vlan_id +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 0x40a172aa netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x40a2337a devm_gpiod_put +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 0x40bb17e2 nf_getsockopt +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 0x40cc9e11 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40f4f141 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x40f97e13 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x412b5871 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x413e062c freeze_bdev +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414e8a93 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x415929a6 tty_hangup +EXPORT_SYMBOL vmlinux 0x415a06fc bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x4170a556 __frontswap_load +EXPORT_SYMBOL vmlinux 0x417124dc inet_dgram_connect +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 0x41a9969c agp_copy_info +EXPORT_SYMBOL vmlinux 0x41caab6a mmc_request_done +EXPORT_SYMBOL vmlinux 0x41cd5941 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x41f6c87f neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x41fbb268 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0x4209f2e8 release_sock +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x423637c7 __kernel_write +EXPORT_SYMBOL vmlinux 0x423e6f17 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42641040 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x42697a92 nf_reinject +EXPORT_SYMBOL vmlinux 0x428ac6b7 dev_add_pack +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42aef8cb pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x42c0eb81 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42c94c77 inet_add_offload +EXPORT_SYMBOL vmlinux 0x42daaaf8 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x42db4091 param_get_uint +EXPORT_SYMBOL vmlinux 0x42e37b4d security_path_rename +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430bda55 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x430e8e6f mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x432cdba1 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x433d0f17 skb_dequeue +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438bbe04 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x4392db28 __devm_request_region +EXPORT_SYMBOL vmlinux 0x4399d6d7 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x43e0ab95 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x43ec04e7 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x4412d4e5 simple_link +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443abc21 mpage_readpages +EXPORT_SYMBOL vmlinux 0x443dc433 x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44680635 d_lookup +EXPORT_SYMBOL vmlinux 0x4469dd25 __init_rwsem +EXPORT_SYMBOL vmlinux 0x44762a88 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x44790353 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +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 0x44b4de72 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x44cab401 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x44ce731f generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x44e02eea blk_start_request +EXPORT_SYMBOL vmlinux 0x44e9734d dump_truncate +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f1a84e scsi_host_get +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x45385087 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454593db scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x4559c29a block_write_begin +EXPORT_SYMBOL vmlinux 0x4564881c udp_prot +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457ee385 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x45832a1d sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x458711d1 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x45a08517 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45afd0a9 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x45b0e444 phy_driver_register +EXPORT_SYMBOL vmlinux 0x45b9609d ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x45bf3466 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x45cafe74 nonseekable_open +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x46360737 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x4637be09 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x4647d72e scsi_init_io +EXPORT_SYMBOL vmlinux 0x4656b379 dev_warn +EXPORT_SYMBOL vmlinux 0x465b3a87 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x465ec0c8 skb_split +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466bef7a blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x466e8f1a pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x46727235 ilookup5 +EXPORT_SYMBOL vmlinux 0x4696539e security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x46a0db9a uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x46a33f19 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x46b442f3 noop_qdisc +EXPORT_SYMBOL vmlinux 0x46c48c0e inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x46d70d02 submit_bh +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4711d5b4 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x47185987 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x4718f2fb kern_path +EXPORT_SYMBOL vmlinux 0x472fdca4 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474de010 is_nd_btt +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x47616faf netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x477a77e5 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x478c1ff4 unregister_tcf_proto_ops +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 0x47a081be kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x47a222e0 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x47b2b3fd __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x47c421ae netif_carrier_off +EXPORT_SYMBOL vmlinux 0x47d1accd mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x47dd6506 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x47f79e72 ata_print_version +EXPORT_SYMBOL vmlinux 0x48066675 vga_tryget +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x482d1e3f serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x483457a3 redraw_screen +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x487696b9 __sb_end_write +EXPORT_SYMBOL vmlinux 0x487dafc7 fb_blank +EXPORT_SYMBOL vmlinux 0x48839271 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x4886e1bb skb_copy_expand +EXPORT_SYMBOL vmlinux 0x48902858 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x489f601c skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x48ab042f thaw_bdev +EXPORT_SYMBOL vmlinux 0x48ac53f5 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x48b18192 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bc2d24 __d_drop +EXPORT_SYMBOL vmlinux 0x48ca0709 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x48d6a453 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x48d75098 vme_irq_request +EXPORT_SYMBOL vmlinux 0x48e15978 i2c_master_send +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4905da27 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x490e0981 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x4916d3f7 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x492596f4 __frontswap_store +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x499e1ed7 tty_throttle +EXPORT_SYMBOL vmlinux 0x49a1d44c generic_update_time +EXPORT_SYMBOL vmlinux 0x49a21b14 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b0e728 __register_binfmt +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49cd8962 set_bh_page +EXPORT_SYMBOL vmlinux 0x49ed4ea9 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a0ab574 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x4a35f491 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x4a3a1a8a pci_bus_get +EXPORT_SYMBOL vmlinux 0x4a405345 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x4a567c6d vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x4a57beb4 swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x4a586dda scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy +EXPORT_SYMBOL vmlinux 0x4a73fd9e ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x4a79ba44 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x4a85e01d filemap_flush +EXPORT_SYMBOL vmlinux 0x4a881dd3 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x4a97102a xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x4a979882 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x4aabaacf pci_clear_master +EXPORT_SYMBOL vmlinux 0x4aba5ab9 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x4abb36ba dev_uc_add +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4acf6aab netif_napi_del +EXPORT_SYMBOL vmlinux 0x4ad65518 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x4af450b0 netdev_printk +EXPORT_SYMBOL vmlinux 0x4af5f744 fs_bio_set +EXPORT_SYMBOL vmlinux 0x4af66e5f ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b1f81bb mmc_detect_change +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b67881a dump_emit +EXPORT_SYMBOL vmlinux 0x4b6d687f blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x4b9675ad locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4ba8cdf7 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bbca069 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4bdb2faf dquot_alloc +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c0b5722 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c35fbaf tcf_hash_search +EXPORT_SYMBOL vmlinux 0x4c6c992b read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4c9da4c1 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ced8a6f simple_empty +EXPORT_SYMBOL vmlinux 0x4cf60702 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x4cf611c1 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x4d08b039 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x4d0ea476 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x4d11c497 devm_memremap +EXPORT_SYMBOL vmlinux 0x4d365485 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d63173e ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4d7bbbff tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x4d7c4973 vmap +EXPORT_SYMBOL vmlinux 0x4d7db0ad inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9939b6 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da36900 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x4daedc46 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x4db5cfb5 tty_register_driver +EXPORT_SYMBOL vmlinux 0x4de2bbe1 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de4b31f nvm_put_blk +EXPORT_SYMBOL vmlinux 0x4dee1bc5 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df2ea94 pci_release_region +EXPORT_SYMBOL vmlinux 0x4df89af0 truncate_setsize +EXPORT_SYMBOL vmlinux 0x4dfb4831 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x4e00788e inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x4e0ad1d3 vfs_readv +EXPORT_SYMBOL vmlinux 0x4e1ce26f kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4e958d pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x4e60e1bb param_array_ops +EXPORT_SYMBOL vmlinux 0x4e62e920 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x4e669362 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e7dd548 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x4e887111 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x4e8e9b0b call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4eab7813 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x4ed05895 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x4f09e717 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x4f0b65da abx500_register_ops +EXPORT_SYMBOL vmlinux 0x4f13a6c3 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x4f193ddc qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f206719 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f288cf0 dquot_commit +EXPORT_SYMBOL vmlinux 0x4f29508d security_path_link +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f476e96 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x4f4e8141 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x4f58f62a tcf_hash_check +EXPORT_SYMBOL vmlinux 0x4f5d31c6 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f7277ba xfrm_init_state +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f8ad9b4 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f92b6fa sock_init_data +EXPORT_SYMBOL vmlinux 0x4fa08f41 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x4fc6d35d revert_creds +EXPORT_SYMBOL vmlinux 0x4fd86a31 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fec61d1 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x4fedda35 security_path_symlink +EXPORT_SYMBOL vmlinux 0x4ffa0a20 block_commit_write +EXPORT_SYMBOL vmlinux 0x50009cc6 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501a3e56 __get_user_pages +EXPORT_SYMBOL vmlinux 0x5031867d input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x50394328 dev_get_stats +EXPORT_SYMBOL vmlinux 0x503b3677 pci_assign_resource +EXPORT_SYMBOL vmlinux 0x5048cae8 tcf_register_action +EXPORT_SYMBOL vmlinux 0x50529870 acpi_get_gpe_status +EXPORT_SYMBOL vmlinux 0x506213a7 buffer_migrate_page +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 0x50acdd0e pnpbios_protocol +EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50cbdf1c kill_anon_super +EXPORT_SYMBOL vmlinux 0x50d490ea request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e3d395 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511e9861 bdget +EXPORT_SYMBOL vmlinux 0x512d3fce blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x513cffc6 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x514092a6 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x51491868 input_event +EXPORT_SYMBOL vmlinux 0x51508d36 dev_emerg +EXPORT_SYMBOL vmlinux 0x516424e0 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x516d0ced dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x517b1e05 nobh_writepage +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x51871976 pci_request_region +EXPORT_SYMBOL vmlinux 0x51878ca4 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x51cd61f6 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x51cf091b qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51d551e7 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51efd115 netif_device_detach +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x520db39b pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x52137d7e d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x52162263 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52283cc0 seq_putc +EXPORT_SYMBOL vmlinux 0x52438d44 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x527511aa remove_arg_zero +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5298eec4 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x52a57c08 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52ee68fa end_page_writeback +EXPORT_SYMBOL vmlinux 0x52f3fb9f __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x52f92209 dev_activate +EXPORT_SYMBOL vmlinux 0x52f9757a scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x530897c2 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x530b0b71 __napi_complete +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x53244848 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x5329bc60 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53337d4f simple_fill_super +EXPORT_SYMBOL vmlinux 0x53405819 set_blocksize +EXPORT_SYMBOL vmlinux 0x5343b498 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x534d0cab xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x5353c84c jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x535516d4 ip_defrag +EXPORT_SYMBOL vmlinux 0x53569470 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x5358c020 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x53859537 vfs_writef +EXPORT_SYMBOL vmlinux 0x5388009c vme_irq_free +EXPORT_SYMBOL vmlinux 0x53941f63 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53d9eaec sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x53dcbf9b eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x5403fa36 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x542523fb generic_make_request +EXPORT_SYMBOL vmlinux 0x54279618 drop_super +EXPORT_SYMBOL vmlinux 0x542891d9 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x543cb70d ll_rw_block +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54457d94 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x54681538 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c32ca4 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x54d0d253 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x54d68f08 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait +EXPORT_SYMBOL vmlinux 0x54f58c21 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x54f9cd71 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x5508823c mpage_writepages +EXPORT_SYMBOL vmlinux 0x551bb510 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x55258418 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x55327091 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x554fab5c blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5569d7b5 dev_open +EXPORT_SYMBOL vmlinux 0x557b25d1 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x558368bd tty_free_termios +EXPORT_SYMBOL vmlinux 0x558d94df i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x559779fa __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x559fce34 kobject_put +EXPORT_SYMBOL vmlinux 0x55a407d8 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x55b8439f bdgrab +EXPORT_SYMBOL vmlinux 0x55bdb0b3 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x55d26433 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d8b06b __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x560610c6 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x560a1f7e phy_start +EXPORT_SYMBOL vmlinux 0x56200b90 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x5620e1b1 param_set_int +EXPORT_SYMBOL vmlinux 0x56309852 pci_iomap_range +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 0x5660e0c8 fb_find_mode +EXPORT_SYMBOL vmlinux 0x5669b8f8 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 +EXPORT_SYMBOL vmlinux 0x5676d93c lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x567d2318 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x567d32b2 dentry_open +EXPORT_SYMBOL vmlinux 0x56857cc0 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x56894a52 skb_queue_purge +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569ae464 __invalidate_device +EXPORT_SYMBOL vmlinux 0x56bde1e8 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e399dd wait_iff_congested +EXPORT_SYMBOL vmlinux 0x56e4642d ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x56e9647a phy_device_register +EXPORT_SYMBOL vmlinux 0x56fc67ae genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc +EXPORT_SYMBOL vmlinux 0x5729a02e pci_lost_interrupt +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 0x5770ed5e phy_disconnect +EXPORT_SYMBOL vmlinux 0x578c8e77 pci_dev_get +EXPORT_SYMBOL vmlinux 0x5794d6da dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57ebecac proc_mkdir +EXPORT_SYMBOL vmlinux 0x5803e076 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5830d3c1 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x584738f9 rdmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x58503e24 nf_unregister_hooks +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 0x58679117 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cbf23d __napi_schedule +EXPORT_SYMBOL vmlinux 0x58da7b13 tcp_poll +EXPORT_SYMBOL vmlinux 0x58dd7e70 sock_create +EXPORT_SYMBOL vmlinux 0x58e0bbf4 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f09ae5 pnp_find_card +EXPORT_SYMBOL vmlinux 0x58f4d2e2 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x591b2c79 __lock_buffer +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5955b33f inet_frags_fini +EXPORT_SYMBOL vmlinux 0x595768cc fb_validate_mode +EXPORT_SYMBOL vmlinux 0x595926a8 bdev_read_only +EXPORT_SYMBOL vmlinux 0x597459c2 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x597887a6 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x598867ee lock_sock_fast +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b6d95d security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59ccd2cd kernel_getpeername +EXPORT_SYMBOL vmlinux 0x59dd0084 __elv_add_request +EXPORT_SYMBOL vmlinux 0x5a07ffd4 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a23833e __scm_destroy +EXPORT_SYMBOL vmlinux 0x5a43f55a udp6_set_csum +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a65b2c7 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a85e960 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x5a8fe39e sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x5a949e3e __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x5ac316d7 import_iovec +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5ac41252 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x5ad2a04a locks_copy_lock +EXPORT_SYMBOL vmlinux 0x5ad85374 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x5ad93728 __brelse +EXPORT_SYMBOL vmlinux 0x5ae55998 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b21e053 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x5b59a62c tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x5b64739d mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bd9f918 elevator_change +EXPORT_SYMBOL vmlinux 0x5bfa75f3 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c18f823 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x5c3666cb bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x5c49b096 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x5c51aaa8 _dev_info +EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cec306e audit_log +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d007fb6 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x5d0bd07c fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x5d1577a6 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x5d1ce3cf get_super_thawed +EXPORT_SYMBOL vmlinux 0x5d2e0057 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x5d44ed20 param_get_charp +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d632040 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5db1bf72 udp_del_offload +EXPORT_SYMBOL vmlinux 0x5db77e5b param_get_long +EXPORT_SYMBOL vmlinux 0x5dc57abe dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x5ddfc8a5 neigh_lookup +EXPORT_SYMBOL vmlinux 0x5dffb9b0 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x5e0310d5 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x5e19a517 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x5e2c0b86 init_net +EXPORT_SYMBOL vmlinux 0x5e319806 sk_capable +EXPORT_SYMBOL vmlinux 0x5e7a72d2 set_wb_congested +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ead1ca5 nf_register_hook +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eef1aa1 have_submounts +EXPORT_SYMBOL vmlinux 0x5eefbda6 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x5ef1a6f2 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0fc46b open_check_o_direct +EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register +EXPORT_SYMBOL vmlinux 0x5f1ab144 inet_ioctl +EXPORT_SYMBOL vmlinux 0x5f254b7b mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x5f282873 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x5f607bb8 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x5f612802 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x5f861b84 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x5f8e70d4 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x5f905853 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x5fa6e58d __dquot_transfer +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe2bc54 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x5fecaea6 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601036c7 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x602a4a31 current_fs_time +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603897d7 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x60458dbb rtnl_unicast +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6085e4a5 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x60861883 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x608c4891 wireless_send_event +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60bdacce up_read +EXPORT_SYMBOL vmlinux 0x60da110b ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e5a0f8 put_io_context +EXPORT_SYMBOL vmlinux 0x60e6b6e0 param_get_short +EXPORT_SYMBOL vmlinux 0x60eaa690 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x61283af3 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6156b60d nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x61784938 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x61848450 bioset_create +EXPORT_SYMBOL vmlinux 0x61ac7872 inet_getname +EXPORT_SYMBOL vmlinux 0x61af911e __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61d0cc9f __bread_gfp +EXPORT_SYMBOL vmlinux 0x61d5a242 clkdev_add +EXPORT_SYMBOL vmlinux 0x61e4a3d1 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x61e9b745 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x61ee74e3 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x62049256 acpi_disable +EXPORT_SYMBOL vmlinux 0x62076323 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6218fabc __genl_register_family +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x622366ac path_get +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 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x6268e675 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62a47608 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x62c0128f scm_fp_dup +EXPORT_SYMBOL vmlinux 0x62c3bf12 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x62c45bb7 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x62c5706a scsi_block_requests +EXPORT_SYMBOL vmlinux 0x62dcc774 follow_down_one +EXPORT_SYMBOL vmlinux 0x62dd03ce kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0x62de8df6 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631936da pcim_enable_device +EXPORT_SYMBOL vmlinux 0x63494f5e jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x63721516 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a353b7 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aeba99 pci_set_master +EXPORT_SYMBOL vmlinux 0x63c04b12 tty_unlock +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c7cc69 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x63e39183 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x63e501da pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f8ca41 input_flush_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 0x6425ed98 agp_enable +EXPORT_SYMBOL vmlinux 0x642a4eb4 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x6449593c inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x647b4558 posix_lock_file +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64aa9de8 pci_find_bus +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64b6500d mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x64b89213 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x64d82c29 sock_no_mmap +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 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654fc790 simple_rmdir +EXPORT_SYMBOL vmlinux 0x6555eca0 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x655e1b0f page_readlink +EXPORT_SYMBOL vmlinux 0x655ed617 dm_get_device +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x65766bc5 sock_no_bind +EXPORT_SYMBOL vmlinux 0x65857f4c agp_put_bridge +EXPORT_SYMBOL vmlinux 0x658bb5e7 blkdev_get +EXPORT_SYMBOL vmlinux 0x658f00bb migrate_page +EXPORT_SYMBOL vmlinux 0x6596ee66 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x65975b00 __ht_create_irq +EXPORT_SYMBOL vmlinux 0x659e7b65 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x65a295bb atomic64_xchg_cx8 +EXPORT_SYMBOL vmlinux 0x65b992ac xen_alloc_p2m_entry +EXPORT_SYMBOL vmlinux 0x65c16038 find_vma +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 0x6620ccdb eisa_bus_type +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x666b16dc mutex_lock +EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x667faa94 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x66a8132d pci_disable_device +EXPORT_SYMBOL vmlinux 0x66be8ca2 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x66c80887 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x66ca49db bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x671b2987 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x671cff81 dst_init +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672b367a generic_ro_fops +EXPORT_SYMBOL vmlinux 0x6733f584 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x673d6357 read_code +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67447525 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x6752d289 first_ec +EXPORT_SYMBOL vmlinux 0x675bc09f phy_drivers_register +EXPORT_SYMBOL vmlinux 0x6760f654 filemap_fault +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67a8d95c i8042_install_filter +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x68011130 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x68099420 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x6826ab9d dev_change_carrier +EXPORT_SYMBOL vmlinux 0x68320d3e seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x6836f81f dm_register_target +EXPORT_SYMBOL vmlinux 0x685d7aa4 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x68608b9a blk_free_tags +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689e8b7d elevator_exit +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68aed6c3 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x68b3981d lock_rename +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68d1ca3c inet_release +EXPORT_SYMBOL vmlinux 0x68d5e121 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x68e2ca20 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x68e9a362 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x6907bc09 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x690c2a9a f_setown +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x6912d583 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x6918114c __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x691b5abc __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x6924e3fa inet_bind +EXPORT_SYMBOL vmlinux 0x6925aa24 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x6930b2dc sock_alloc_file +EXPORT_SYMBOL vmlinux 0x6932293f dev_get_by_index +EXPORT_SYMBOL vmlinux 0x695b5d6a netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x695fe9df vme_slot_num +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69738d49 dget_parent +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x6996c280 mount_nodev +EXPORT_SYMBOL vmlinux 0x699d5bf1 down_read +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a6e681 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x69a8d65e rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c9fb4b pci_platform_rom +EXPORT_SYMBOL vmlinux 0x69cd0c67 neigh_xmit +EXPORT_SYMBOL vmlinux 0x69d1ec4e dump_page +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a25cd1d mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x6a290570 block_read_full_page +EXPORT_SYMBOL vmlinux 0x6a390ee3 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x6a424371 blk_finish_request +EXPORT_SYMBOL vmlinux 0x6a488138 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x6a5982dd dev_mc_add +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 0x6aadba67 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x6ab1280c page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6ad87c31 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x6adb8ce5 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6adfeb24 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6aff717a uart_suspend_port +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b37749d blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x6b5754c8 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x6b5c3315 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b8a0683 init_task +EXPORT_SYMBOL vmlinux 0x6b924f6e pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x6b969d8c inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x6b9938d2 blk_queue_split +EXPORT_SYMBOL vmlinux 0x6ba092a3 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bcd1fc8 generic_read_dir +EXPORT_SYMBOL vmlinux 0x6bcf066d _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be54b4c i2c_del_driver +EXPORT_SYMBOL vmlinux 0x6beca688 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x6bf1c17f pv_lock_ops +EXPORT_SYMBOL vmlinux 0x6c0482b7 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c29092f give_up_console +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c6e0113 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c818fba ilookup +EXPORT_SYMBOL vmlinux 0x6c8f1a0a skb_vlan_push +EXPORT_SYMBOL vmlinux 0x6cacead7 current_task +EXPORT_SYMBOL vmlinux 0x6cbb66cd seq_hex_dump +EXPORT_SYMBOL vmlinux 0x6cc3ce89 blk_put_request +EXPORT_SYMBOL vmlinux 0x6ccf7ecb dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x6cd9c6b8 param_set_ushort +EXPORT_SYMBOL vmlinux 0x6cdc36aa may_umount +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cedbe3b __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x6cf24cad flush_signals +EXPORT_SYMBOL vmlinux 0x6cf50c60 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x6cfc100d path_is_under +EXPORT_SYMBOL vmlinux 0x6cfc9877 kthread_bind +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d181380 blk_run_queue_async +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 0x6d49f77b make_kuid +EXPORT_SYMBOL vmlinux 0x6d4c04eb insert_inode_locked +EXPORT_SYMBOL vmlinux 0x6d973e8c __i2c_transfer +EXPORT_SYMBOL vmlinux 0x6d991bc4 param_set_invbool +EXPORT_SYMBOL vmlinux 0x6db6bd35 udp_set_csum +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6de9a878 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e18e801 led_set_brightness +EXPORT_SYMBOL vmlinux 0x6e1a3fc7 nvm_register +EXPORT_SYMBOL vmlinux 0x6e1c176d bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x6e269e55 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x6e3b34ea sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e802f65 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x6e8fad25 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea09ec1 netif_napi_add +EXPORT_SYMBOL vmlinux 0x6ead3e32 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x6ed3faeb simple_transaction_get +EXPORT_SYMBOL vmlinux 0x6ed4b726 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x6ee14a69 skb_seq_read +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6ef6b835 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x6f12c9aa dquot_initialize +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f1cdc9d eth_validate_addr +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f402223 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f5c04fc backlight_force_update +EXPORT_SYMBOL vmlinux 0x6f6af994 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f971d9a xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd5bc15 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x6fe861bd netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x700186e1 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x701050a2 param_get_bool +EXPORT_SYMBOL vmlinux 0x7010ab0d generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x701cb5ed pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x701ddbd0 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x7037a770 acpi_match_device_ids +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 0x707ba218 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x707eb5ae shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x70a40e9c devm_clk_get +EXPORT_SYMBOL vmlinux 0x70a85f90 kmap_high +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d85550 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70f2c798 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x71146779 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x711e74de tcp_shutdown +EXPORT_SYMBOL vmlinux 0x7120755b vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x7123fff6 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7145f1b2 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x714886da kobject_init +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x7173877f neigh_ifdown +EXPORT_SYMBOL vmlinux 0x717be4d1 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a65cd5 netif_rx +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71a8075f dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x71b3b770 vfs_mknod +EXPORT_SYMBOL vmlinux 0x71b6b98c inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x71bcf3cc netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x71debfa2 tso_count_descs +EXPORT_SYMBOL vmlinux 0x71ea134d nobh_write_end +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x72025ef5 processors +EXPORT_SYMBOL vmlinux 0x721653ac open_exec +EXPORT_SYMBOL vmlinux 0x7230ac36 param_set_long +EXPORT_SYMBOL vmlinux 0x723676a4 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x723a49a3 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x7257c8eb mmc_start_req +EXPORT_SYMBOL vmlinux 0x7271d43e mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x728c2c70 mdiobus_free +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72bd0ff2 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x72c26740 default_llseek +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72d7bea1 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x72e96661 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72ee77c4 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x72eecef7 filp_open +EXPORT_SYMBOL vmlinux 0x73136628 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7315f67e proc_remove +EXPORT_SYMBOL vmlinux 0x731f391c vga_put +EXPORT_SYMBOL vmlinux 0x732e6334 make_bad_inode +EXPORT_SYMBOL vmlinux 0x733497cc acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x73473402 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x7360ee12 unlock_buffer +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x7389fef7 kill_block_super +EXPORT_SYMBOL vmlinux 0x7391f28a key_put +EXPORT_SYMBOL vmlinux 0x73bb57ba file_open_root +EXPORT_SYMBOL vmlinux 0x73dd4ee8 poll_initwait +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x74214ecb ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x743cfe90 security_inode_permission +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x7465d4c5 prepare_binprm +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7471d33b cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x7471ed26 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x747a1e98 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x7488efd8 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x749a45f6 pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74ca7cc9 genphy_read_status +EXPORT_SYMBOL vmlinux 0x74e4f8e0 skb_append +EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ee08a4 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x7526f1ac call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x7531f8ac pci_get_slot +EXPORT_SYMBOL vmlinux 0x753449dc padata_do_parallel +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753f434d acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0x755f310f input_register_handle +EXPORT_SYMBOL vmlinux 0x7568f900 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x759b613a mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x75a4adb0 fb_get_mode +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 0x75c1124e security_path_unlink +EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit +EXPORT_SYMBOL vmlinux 0x75d2eb95 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x75d87515 keyring_alloc +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x75fe4211 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x760250a7 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x76047e0e cap_mmap_file +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x760c10e3 netdev_features_change +EXPORT_SYMBOL vmlinux 0x760f0d47 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x764d498c fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x765d9ff4 skb_trim +EXPORT_SYMBOL vmlinux 0x7660af62 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x7670509a linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +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 0x770a0036 isapnp_cfg_begin +EXPORT_SYMBOL vmlinux 0x77145adb sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7737ba28 free_buffer_head +EXPORT_SYMBOL vmlinux 0x774306c6 free_xenballooned_pages +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x778cde91 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x778f72cb __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x779e7490 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x77ac3bc1 elevator_init +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c01bb8 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x77c28720 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x77d0cc65 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x77f1b192 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x780702f6 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +EXPORT_SYMBOL vmlinux 0x7818ff00 proc_douintvec +EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x782af196 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x784ce4b7 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x78610b13 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x7865380e serio_open +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78e866a9 unregister_nls +EXPORT_SYMBOL vmlinux 0x78f6930a flow_cache_fini +EXPORT_SYMBOL vmlinux 0x7901bb07 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x793c21ef __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x7968fe95 I_BDEV +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797f268a alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x798c5c9f pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79ae7e38 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x79b86156 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x79d8b5b7 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x79ed65fb iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x79f33f88 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x79fc1b49 ps2_drain +EXPORT_SYMBOL vmlinux 0x7a0605f6 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x7a20c0f6 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a2f022a iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x7a401ec4 pci_request_regions +EXPORT_SYMBOL vmlinux 0x7a424581 nf_log_register +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4648bf load_nls +EXPORT_SYMBOL vmlinux 0x7a55c309 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x7a6dafe2 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x7a740e42 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x7a77ab83 sk_dst_check +EXPORT_SYMBOL vmlinux 0x7a7f530b phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a90da29 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abf9622 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x7ac4189f devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x7accce24 kobject_del +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7af6d404 blk_init_tags +EXPORT_SYMBOL vmlinux 0x7af87e8b param_set_ullong +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b112f22 devm_request_resource +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2c91fe iunique +EXPORT_SYMBOL vmlinux 0x7b4caf8c kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x7b5063a7 seq_puts +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b679b16 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x7b831fb6 inet_del_offload +EXPORT_SYMBOL vmlinux 0x7ba1abe2 netif_device_attach +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bb8fdc0 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x7bc0ad5e genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x7bc5b8ad rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x7bd21b17 fb_set_var +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c153adb xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c3c7856 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x7c3cfd28 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c5342fd __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c68a366 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x7c91fb1f phy_device_create +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7c9f3b98 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x7cb03a9b pci_reenable_device +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc29266 bio_add_page +EXPORT_SYMBOL vmlinux 0x7cc94991 devfreq_monitor_resume +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 0x7d292d6e __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x7d2bf4b3 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x7d417768 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x7d6e4231 vfs_create +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d75daf4 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x7d88f0bb xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7d9488a7 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d954280 inode_permission +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7d9d3d75 generic_listxattr +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7de5b981 ip_options_compile +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df5b955 pci_get_class +EXPORT_SYMBOL vmlinux 0x7e350f12 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x7e382e16 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x7e3f6e9c jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7ea733e4 alloc_disk +EXPORT_SYMBOL vmlinux 0x7eb38a66 arp_create +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ee3f8d1 seq_release_private +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x7eecc827 scmd_printk +EXPORT_SYMBOL vmlinux 0x7eefaf7e block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f0fc048 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x7f111e10 single_release +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f293ced tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x7f2bf29c __getblk_gfp +EXPORT_SYMBOL vmlinux 0x7f42e320 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x7f4fdb11 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f9cbda1 sock_no_listen +EXPORT_SYMBOL vmlinux 0x7fa3a523 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x7fada281 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7ff5dd56 lookup_one_len +EXPORT_SYMBOL vmlinux 0x7ff8e836 register_md_personality +EXPORT_SYMBOL vmlinux 0x8000e038 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x80268e0d rtnl_create_link +EXPORT_SYMBOL vmlinux 0x803e9ac7 submit_bio +EXPORT_SYMBOL vmlinux 0x80445f7c pcie_get_mps +EXPORT_SYMBOL vmlinux 0x80602103 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x808c358e pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80b080d6 misc_register +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 0x80fc9683 mount_single +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x81191596 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x81401a80 mutex_unlock +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +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 0x8161e782 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x81765021 clear_inode +EXPORT_SYMBOL vmlinux 0x8176adfb tso_start +EXPORT_SYMBOL vmlinux 0x817b600e xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x81a96f12 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x81c54f78 bdi_register +EXPORT_SYMBOL vmlinux 0x81c98276 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81def5d5 init_special_inode +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x81fc6041 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820fa107 __break_lease +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x823432f3 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x82345b1a inet_sendmsg +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x8245e9c1 tty_set_operations +EXPORT_SYMBOL vmlinux 0x8246d787 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x826863d0 touch_buffer +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8285c4a5 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x829476cc tcp_seq_open +EXPORT_SYMBOL vmlinux 0x829534b3 fence_free +EXPORT_SYMBOL vmlinux 0x82ac53f2 uart_resume_port +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b159eb dcb_setapp +EXPORT_SYMBOL vmlinux 0x82bece4d key_unlink +EXPORT_SYMBOL vmlinux 0x82bf0db9 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x82c04698 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x82ebd59a neigh_event_ns +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x8329e6f0 memset +EXPORT_SYMBOL vmlinux 0x832c0ca3 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8349c93e clear_wb_congested +EXPORT_SYMBOL vmlinux 0x83712b80 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x83737e7e i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x838150c0 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x8382e59a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x8385a023 cdev_del +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839d5822 pid_task +EXPORT_SYMBOL vmlinux 0x839f12d8 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b36b44 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83d78cef simple_transaction_read +EXPORT_SYMBOL vmlinux 0x83edd1e4 get_agp_version +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x840d28ed pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x84209392 phy_stop +EXPORT_SYMBOL vmlinux 0x84256533 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x844bbedf skb_make_writable +EXPORT_SYMBOL vmlinux 0x84523233 __module_get +EXPORT_SYMBOL vmlinux 0x845e751d generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x846629c5 alloc_file +EXPORT_SYMBOL vmlinux 0x8490dc15 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x84bfeb35 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x84d7c015 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x84fa5282 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x852417d8 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x8548be6e ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x8552eaff phy_detach +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856ec927 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x8584e1b9 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x859057e8 blk_get_queue +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85c123c1 __bforget +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x861cb507 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x861db92e __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x8620b593 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x864ed39c d_invalidate +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x866365ad jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8678c131 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a34415 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86b7ff66 bd_set_size +EXPORT_SYMBOL vmlinux 0x86b8c22d mdiobus_write +EXPORT_SYMBOL vmlinux 0x86b942a1 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x86c372b1 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x86edffd6 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8708af95 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x870f2ac3 sk_net_capable +EXPORT_SYMBOL vmlinux 0x87199eb9 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x87291726 blk_rq_init +EXPORT_SYMBOL vmlinux 0x873002ea mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x87317183 bio_integrity_free +EXPORT_SYMBOL vmlinux 0x87433983 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x876c7f8e page_waitqueue +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x876ecf20 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x87715f7a padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x8775174c pagecache_get_page +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x878d0e58 __put_cred +EXPORT_SYMBOL vmlinux 0x879089c7 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x8797a40d mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x879e0377 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x8800789b add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x88042314 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x8807da24 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x880afa2f cdrom_release +EXPORT_SYMBOL vmlinux 0x88117b5d touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x8819b152 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x8827c15c generic_file_fsync +EXPORT_SYMBOL vmlinux 0x882fda7d pnp_possible_config +EXPORT_SYMBOL vmlinux 0x88398795 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x88494ba6 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x884d0ed1 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x885030fb ppp_input_error +EXPORT_SYMBOL vmlinux 0x8863c81d blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x88b5d2ee dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x88d1c64c truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x88e616a4 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x88fe54f9 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x8901a483 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x890738dc km_state_expired +EXPORT_SYMBOL vmlinux 0x892810dd __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x892bb602 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x8940bb44 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x894a7896 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x895164ba zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x8996a318 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x899cf891 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x89a2961b vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x89a481a0 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89d408cc __lock_page +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89debe76 ps2_command +EXPORT_SYMBOL vmlinux 0x89ee3257 bio_advance +EXPORT_SYMBOL vmlinux 0x89fd55bb pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x8a01334f get_acl +EXPORT_SYMBOL vmlinux 0x8a090396 d_delete +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a43abcc pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5a40c0 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a881c28 pcim_iomap +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa04693 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x8ac082d3 tso_build_data +EXPORT_SYMBOL vmlinux 0x8ada72eb vm_mmap +EXPORT_SYMBOL vmlinux 0x8ae62d43 param_ops_bool +EXPORT_SYMBOL vmlinux 0x8aeed492 dev_notice +EXPORT_SYMBOL vmlinux 0x8b063731 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b29ffa3 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x8b2a5ec4 generic_show_options +EXPORT_SYMBOL vmlinux 0x8b2bfdfc tcp_disconnect +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b3d9388 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4556c7 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b703d05 pci_select_bars +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b837a9b genlmsg_put +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bacbb41 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x8bb37fbe inode_set_bytes +EXPORT_SYMBOL vmlinux 0x8bba8ed0 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x8bcedbc1 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x8bd587b1 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x8bd6ec93 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x8be193f9 dma_pool_create +EXPORT_SYMBOL vmlinux 0x8c01c6e1 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x8c03bd33 locks_init_lock +EXPORT_SYMBOL vmlinux 0x8c11f40a param_ops_int +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c410b73 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x8c412c1b dqput +EXPORT_SYMBOL vmlinux 0x8c598acf set_groups +EXPORT_SYMBOL vmlinux 0x8c5c8e80 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8cc57afa devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8ccc5f77 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x8cd6e0f0 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8d0e6b51 simple_write_end +EXPORT_SYMBOL vmlinux 0x8d1856a7 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x8d327223 seq_lseek +EXPORT_SYMBOL vmlinux 0x8d378baf loop_backing_file +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 0x8d82c070 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d91be4b dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8dae37dc neigh_for_each +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8db34f1f pci_disable_msi +EXPORT_SYMBOL vmlinux 0x8db353f6 pci_map_rom +EXPORT_SYMBOL vmlinux 0x8db92115 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x8dbabab7 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8dd2ddc8 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x8df2d974 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x8df577f0 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e08860d devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x8e4ee3e0 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x8e510d33 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7d6ce1 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e908424 acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ed37839 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x8ee391dd sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x8efdf64b blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x8f17e58b abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f4d25f7 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x8f573889 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x8f649f74 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x8f6f60ae pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x8f6f8b7c ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x8f72f378 skb_queue_head +EXPORT_SYMBOL vmlinux 0x8f975a33 request_key +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8faddab8 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x8fd5bdc6 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x8fd8377b unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x8fe10102 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8fe4061b __dax_fault +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8fe63f48 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x9021974b __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x9029f1fb blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x9040a0ce tcp_filter +EXPORT_SYMBOL vmlinux 0x9043b73c netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x905e7972 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x907a9f00 param_get_int +EXPORT_SYMBOL vmlinux 0x907d499e set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x907f73a4 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x9084b09b __register_chrdev +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x90922867 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x909a7df9 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x90a04a90 get_fs_type +EXPORT_SYMBOL vmlinux 0x90ac2115 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x90c40b8e pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90d6cbbb lro_flush_all +EXPORT_SYMBOL vmlinux 0x90dbfb96 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x90e23f1e pskb_expand_head +EXPORT_SYMBOL vmlinux 0x90f9c66f nvm_get_blk +EXPORT_SYMBOL vmlinux 0x90fc4dc9 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x91128534 flow_cache_init +EXPORT_SYMBOL vmlinux 0x911e752d vfs_link +EXPORT_SYMBOL vmlinux 0x912733c1 security_path_mknod +EXPORT_SYMBOL vmlinux 0x912a9000 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9154e43d sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x91551795 bio_copy_data +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x91626b07 input_open_device +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x919abfa9 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x91a1df2c __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x91bd471c pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x91e98408 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x91ec32d3 pci_iounmap +EXPORT_SYMBOL vmlinux 0x91ef1adf param_get_ullong +EXPORT_SYMBOL vmlinux 0x91f0e1e1 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91ff89f2 scsi_device_get +EXPORT_SYMBOL vmlinux 0x922736df __sk_dst_check +EXPORT_SYMBOL vmlinux 0x922ded27 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92607ece inet6_del_offload +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x9294a320 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x92a6aaa3 brioctl_set +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92ade195 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x92b658c2 mount_pseudo +EXPORT_SYMBOL vmlinux 0x92bfadd0 single_open_size +EXPORT_SYMBOL vmlinux 0x92cff49e user_revoke +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305d0ff tcp_proc_register +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930ab457 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x932b89f3 write_cache_pages +EXPORT_SYMBOL vmlinux 0x933153e9 vfs_readf +EXPORT_SYMBOL vmlinux 0x9358bbe1 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x935917ff xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x93637ef5 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x9371abee jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9377bcff skb_insert +EXPORT_SYMBOL vmlinux 0x93798a1d clocksource_unregister +EXPORT_SYMBOL vmlinux 0x938a3501 blk_init_queue +EXPORT_SYMBOL vmlinux 0x938cff0d scsi_scan_host +EXPORT_SYMBOL vmlinux 0x9390501c account_page_dirtied +EXPORT_SYMBOL vmlinux 0x9394edc6 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x93ae77e1 register_netdev +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93da2572 __page_symlink +EXPORT_SYMBOL vmlinux 0x93ed6023 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94058811 mntget +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x942c8760 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x942f9324 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x9433a401 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x9435fb9c register_filesystem +EXPORT_SYMBOL vmlinux 0x944adf7a generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x945c5597 register_quota_format +EXPORT_SYMBOL vmlinux 0x94759ab5 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x94769459 __netif_schedule +EXPORT_SYMBOL vmlinux 0x94818e3d inet_frag_kill +EXPORT_SYMBOL vmlinux 0x9488eb04 sync_blockdev +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94c8de01 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x94e28088 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94ff290a scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x951687b3 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x9517f45b get_disk +EXPORT_SYMBOL vmlinux 0x951a40b3 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0x952cb246 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x956d6387 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x95749014 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x958f8831 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x958ff1b6 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x95a428fd ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95ecf1b5 genl_notify +EXPORT_SYMBOL vmlinux 0x95facc7c lock_sock_nested +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x960f658d revalidate_disk +EXPORT_SYMBOL vmlinux 0x961e3103 set_pages_x +EXPORT_SYMBOL vmlinux 0x96271cde devm_memunmap +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x965e8409 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x96624a47 seq_vprintf +EXPORT_SYMBOL vmlinux 0x9663408e finish_no_open +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x969cef10 set_nlink +EXPORT_SYMBOL vmlinux 0x96c036dc tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e375b2 get_task_io_context +EXPORT_SYMBOL vmlinux 0x96f5e8cb dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x96f9b89b xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x96fb49ca d_move +EXPORT_SYMBOL vmlinux 0x970352da input_reset_device +EXPORT_SYMBOL vmlinux 0x970ee771 set_pages_uc +EXPORT_SYMBOL vmlinux 0x972a239b __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x97302926 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x97461e27 skb_put +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97674a5d passthru_features_check +EXPORT_SYMBOL vmlinux 0x9794b5dd param_get_string +EXPORT_SYMBOL vmlinux 0x97996dbb mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97d086ef key_task_permission +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x983bbb37 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x98436c32 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x9843b7bc i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x984540bf blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x98588563 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x985e0531 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x98725654 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x9878745c _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x988ed85d set_memory_x +EXPORT_SYMBOL vmlinux 0x98acecdd crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x98ae3fbf pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x98b4dc55 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x98b6b9c1 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x99070693 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x99192a4e tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99480939 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x99686ae3 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x996a9188 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x999363bf serio_rescan +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a28f6c napi_disable +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99dc667e tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x99e1856e kobject_add +EXPORT_SYMBOL vmlinux 0x99eff622 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a6587d7 inet_select_addr +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a827b93 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x9aa1712f tcp_init_sock +EXPORT_SYMBOL vmlinux 0x9abcd4d7 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x9ae12b2e security_path_rmdir +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9afbc5ac to_ndd +EXPORT_SYMBOL vmlinux 0x9b2d275a __pagevec_release +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3d56f6 nvm_register_target +EXPORT_SYMBOL vmlinux 0x9b403670 unregister_filesystem +EXPORT_SYMBOL vmlinux 0x9b444352 dev_err +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b83fa7f arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba2b205 seq_file_path +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba873c1 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bbf2fd4 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x9bdd1ddb seq_release +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bed0554 dev_get_flags +EXPORT_SYMBOL vmlinux 0x9bf0b8cd pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x9c0f596e vc_cons +EXPORT_SYMBOL vmlinux 0x9c1a6d99 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x9c278c67 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c3556ea nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x9c3d66fe file_update_time +EXPORT_SYMBOL vmlinux 0x9c468fdb netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c4c6112 kill_pid +EXPORT_SYMBOL vmlinux 0x9c648b12 netdev_crit +EXPORT_SYMBOL vmlinux 0x9c7441e2 ps2_init +EXPORT_SYMBOL vmlinux 0x9c8373b9 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cd5d30f from_kuid +EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9ced0e84 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x9d034072 d_drop +EXPORT_SYMBOL vmlinux 0x9d0d3b13 file_remove_privs +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1eac45 param_get_invbool +EXPORT_SYMBOL vmlinux 0x9d31cf96 write_one_page +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3a7a31 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d7720de agp_create_memory +EXPORT_SYMBOL vmlinux 0x9d836d2b ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x9da3b7e1 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x9dbbf757 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x9dd4ec33 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x9de67027 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x9df255f4 sock_no_poll +EXPORT_SYMBOL vmlinux 0x9dfbb554 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e028c27 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e275a07 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x9e318d97 inode_init_always +EXPORT_SYMBOL vmlinux 0x9e347b29 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e3976b9 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x9e3dd85f dev_addr_init +EXPORT_SYMBOL vmlinux 0x9e4a0465 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5c2c83 bio_endio +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e64fbfe rtc_cmos_read +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e792365 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x9e7d6bd0 __udelay +EXPORT_SYMBOL vmlinux 0x9e817272 genphy_config_init +EXPORT_SYMBOL vmlinux 0x9e9276e7 try_module_get +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea0c91f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9eb40d99 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9eca9b8b param_set_short +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9edfa682 nf_log_unset +EXPORT_SYMBOL vmlinux 0x9ee01ad8 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x9f0cec12 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x9f219b6a mmc_add_host +EXPORT_SYMBOL vmlinux 0x9f2c19db md_reload_sb +EXPORT_SYMBOL vmlinux 0x9f3a7278 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f47dcd1 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x9f503e23 generic_writepages +EXPORT_SYMBOL vmlinux 0x9f59e594 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x9f929033 kmap_atomic +EXPORT_SYMBOL vmlinux 0x9f94fc52 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f99c2d2 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x9fac3bf6 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x9fbd3ace __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe59c99 dquot_acquire +EXPORT_SYMBOL vmlinux 0x9feacd6f swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x9ff1a931 tty_mutex +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa00de10b cdev_alloc +EXPORT_SYMBOL vmlinux 0xa03dff28 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa056d1d8 security_file_permission +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05f01ae blk_end_request +EXPORT_SYMBOL vmlinux 0xa06df9e1 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0xa072eadb dquot_transfer +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa096abbf truncate_pagecache +EXPORT_SYMBOL vmlinux 0xa099eb19 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xa09e53c9 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0b6fced netlink_broadcast +EXPORT_SYMBOL vmlinux 0xa0c3e710 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dd2ca6 set_cached_acl +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f28591 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xa0f7449a qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa103854c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10b57e8 input_unregister_handler +EXPORT_SYMBOL vmlinux 0xa114ecb9 block_is_partially_uptodate +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 0xa156afa1 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xa160ea7d xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xa1936285 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xa198ee83 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xa19de3fd boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1cc1bd0 pci_match_id +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2104bf1 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xa22d0421 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xa237ff3c scsi_remove_device +EXPORT_SYMBOL vmlinux 0xa26bb2a0 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xa26fdd83 mem_map +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa298094c __getblk_slow +EXPORT_SYMBOL vmlinux 0xa2ab992f dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xa2c8b9c8 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xa2ec701d serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xa3086e4d path_nosuid +EXPORT_SYMBOL vmlinux 0xa31af315 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa32254ae uart_register_driver +EXPORT_SYMBOL vmlinux 0xa323c086 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xa345e0c5 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa35482ea scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xa35f70d8 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xa36167fb netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xa369dccc sock_from_file +EXPORT_SYMBOL vmlinux 0xa37dc0a5 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa37f016d xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xa3843389 scsi_host_put +EXPORT_SYMBOL vmlinux 0xa38929ef dquot_drop +EXPORT_SYMBOL vmlinux 0xa38a6fa7 nd_device_register +EXPORT_SYMBOL vmlinux 0xa390ed97 skb_unlink +EXPORT_SYMBOL vmlinux 0xa39f728f dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xa3aac1b1 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xa3bd6c52 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xa3d87738 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xa3dcbfd3 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0xa40ac6a7 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xa421f2e2 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa453ab0f inet6_getname +EXPORT_SYMBOL vmlinux 0xa45fb26c xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa48e5a74 uart_match_port +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c2ac66 security_inode_readlink +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4e58f68 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xa505d226 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa52e7055 simple_open +EXPORT_SYMBOL vmlinux 0xa5451daf tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xa5459ec3 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xa54b7bff page_address +EXPORT_SYMBOL vmlinux 0xa551ab01 bdevname +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c2082 serio_reconnect +EXPORT_SYMBOL vmlinux 0xa55ec330 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xa5718da4 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a9e13f jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xa5b46106 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xa5c1dbe6 udp_ioctl +EXPORT_SYMBOL vmlinux 0xa5da1266 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xa5de865c tcf_em_register +EXPORT_SYMBOL vmlinux 0xa6019a0f proc_set_size +EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa64397e6 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xa64e2c75 get_cached_acl +EXPORT_SYMBOL vmlinux 0xa6520cdf fput +EXPORT_SYMBOL vmlinux 0xa663585c d_obtain_alias +EXPORT_SYMBOL vmlinux 0xa664f0c3 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xa6755627 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67cee01 phy_device_remove +EXPORT_SYMBOL vmlinux 0xa6801554 dst_alloc +EXPORT_SYMBOL vmlinux 0xa681ef55 starget_for_each_device +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa69fb078 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xa6a27876 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xa6b69cd6 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6e0dabd __pci_register_driver +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa702930a filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xa70836bc sock_create_lite +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa719e122 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74f865c blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xa76bc4df mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa7741c66 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xa777355d devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xa783972d __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa791c5e1 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xa7b6ba61 read_cache_pages +EXPORT_SYMBOL vmlinux 0xa7bb6bb9 inet6_bind +EXPORT_SYMBOL vmlinux 0xa7be12f8 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0xa7d6666d tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0xa7d92052 dev_set_group +EXPORT_SYMBOL vmlinux 0xa7e362de nd_iostat_end +EXPORT_SYMBOL vmlinux 0xa7f7f932 icmp_send +EXPORT_SYMBOL vmlinux 0xa7fe6b19 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xa816bf5a default_file_splice_read +EXPORT_SYMBOL vmlinux 0xa833515b md_finish_reshape +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa85ad9f5 write_inode_now +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa872766a scsi_add_device +EXPORT_SYMBOL vmlinux 0xa8886083 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xa8b70cad mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xa8b94b00 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xa8cfb4c0 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xa8dd0000 proto_register +EXPORT_SYMBOL vmlinux 0xa8e4ac4e vfs_setpos +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa93abe00 migrate_page_copy +EXPORT_SYMBOL vmlinux 0xa94665a6 sock_i_uid +EXPORT_SYMBOL vmlinux 0xa9563570 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa99a103e inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9ad03d4 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xa9bcc1b5 igrab +EXPORT_SYMBOL vmlinux 0xa9c20928 setattr_copy +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cfea6b x86_hyper +EXPORT_SYMBOL vmlinux 0xa9d56ede sync_inode +EXPORT_SYMBOL vmlinux 0xa9d7dfb6 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xaa124be0 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xaa2117f6 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xaa3fa752 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa673c55 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6cf229 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7340ab param_set_copystring +EXPORT_SYMBOL vmlinux 0xaa776ddd free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xaa7ed397 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xaa7fb3c6 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xaa840507 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xaa8ed19a i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xaa93582f fd_install +EXPORT_SYMBOL vmlinux 0xaa94e57f genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xaa967074 pcibios_set_irq_routing +EXPORT_SYMBOL vmlinux 0xaaa99dcc eth_gro_receive +EXPORT_SYMBOL vmlinux 0xaac61727 nf_afinfo +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadbd960 arp_xmit +EXPORT_SYMBOL vmlinux 0xaae4a23d ether_setup +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaaf1f434 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xaafd25d6 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab07e3d5 blkdev_fsync +EXPORT_SYMBOL vmlinux 0xab09695d blk_peek_request +EXPORT_SYMBOL vmlinux 0xab299f68 prepare_creds +EXPORT_SYMBOL vmlinux 0xab2a2d0f inet6_add_offload +EXPORT_SYMBOL vmlinux 0xab3b6d9f sock_update_memcg +EXPORT_SYMBOL vmlinux 0xab4386af __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xab4dc2f4 __cleancache_invalidate_page +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 0xab752c17 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab987f95 security_path_truncate +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +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 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac48cd44 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0xac4a05fa netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xac51536b reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xac5b8cec intel_gmch_probe +EXPORT_SYMBOL vmlinux 0xac62df95 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xac6bd319 sock_wake_async +EXPORT_SYMBOL vmlinux 0xac769c08 irq_set_chip +EXPORT_SYMBOL vmlinux 0xac8e7c97 register_qdisc +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacbc87f8 tcp_prot +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccad46f netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xacd33783 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xacd71835 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf21b87 key_validate +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad03e7c6 sock_no_accept +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad1a2c5e inet_add_protocol +EXPORT_SYMBOL vmlinux 0xad26fdda pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xad2b7467 d_rehash +EXPORT_SYMBOL vmlinux 0xad3405ee mmc_get_card +EXPORT_SYMBOL vmlinux 0xad501c15 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad615db9 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad8ef7a3 genphy_resume +EXPORT_SYMBOL vmlinux 0xadaee312 vfs_unlink +EXPORT_SYMBOL vmlinux 0xadcd7798 unlock_rename +EXPORT_SYMBOL vmlinux 0xadd3f797 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xadd95172 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xadf36025 con_is_bound +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae009910 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae429c43 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xae672c15 generic_fillattr +EXPORT_SYMBOL vmlinux 0xae728cbe vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0xae72afff dquot_operations +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae7ebda2 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xae982e59 finish_open +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaea9c1a7 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4b1540 acpi_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xaf5f4818 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xaf60e442 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xaf611eac amd_nb_misc_ids +EXPORT_SYMBOL vmlinux 0xaf6b206e dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0xaf6f68ad mutex_trylock +EXPORT_SYMBOL vmlinux 0xaf7bba89 console_stop +EXPORT_SYMBOL vmlinux 0xafdbf8fe dquot_resume +EXPORT_SYMBOL vmlinux 0xafe3418e phy_find_first +EXPORT_SYMBOL vmlinux 0xb001acb8 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xb017cc57 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb0558b11 irq_to_desc +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb069581e release_pages +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a7c64f xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xb0b3afee iput +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c1930c dquot_file_open +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0eb29f9 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb0ebad1f kmalloc_caches +EXPORT_SYMBOL vmlinux 0xb108ad8d pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xb1102a89 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xb118517d tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb122650b get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb1586a03 bdput +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb16acbb7 netif_receive_skb +EXPORT_SYMBOL vmlinux 0xb16d9e35 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xb17dddcd iterate_mounts +EXPORT_SYMBOL vmlinux 0xb18452f5 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb1c05ebb tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1ca39e1 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xb1cd5677 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xb1cdcb7e blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xb1ce697c vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1d6055b nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xb1e89773 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xb1fa6123 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xb2144efe km_query +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb284d106 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xb29055ca ihold +EXPORT_SYMBOL vmlinux 0xb29307cf neigh_destroy +EXPORT_SYMBOL vmlinux 0xb2b1fbb6 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c66a13 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0xb2cca21d d_tmpfile +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 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb32aabe9 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb3406b59 cdrom_check_events +EXPORT_SYMBOL vmlinux 0xb34e3265 phy_connect +EXPORT_SYMBOL vmlinux 0xb34f8242 filp_close +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3633301 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xb38bc424 d_walk +EXPORT_SYMBOL vmlinux 0xb3905d3f scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xb39263eb param_ops_string +EXPORT_SYMBOL vmlinux 0xb3bb7b37 kernel_write +EXPORT_SYMBOL vmlinux 0xb3c6a351 simple_unlink +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 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4540bc1 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47f269a skb_tx_error +EXPORT_SYMBOL vmlinux 0xb4a1fdac up_write +EXPORT_SYMBOL vmlinux 0xb4b9241a km_policy_notify +EXPORT_SYMBOL vmlinux 0xb4c0bd3f gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xb4d64009 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xb4f62246 param_ops_short +EXPORT_SYMBOL vmlinux 0xb4f7b50c invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xb5176ce0 __scm_send +EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xb522a34a pagevec_lookup +EXPORT_SYMBOL vmlinux 0xb522e570 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb54c325a ns_capable +EXPORT_SYMBOL vmlinux 0xb556a14f ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xb56c1a65 pnp_find_dev +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5746b73 dev_mc_init +EXPORT_SYMBOL vmlinux 0xb5960fa6 consume_skb +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5acc10e vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xb5aeacb6 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xb5b321e1 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5cdbb2d neigh_table_clear +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5e207fc tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xb5f5b084 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xb602a9e8 kernel_bind +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62ff3b9 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xb6381d46 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xb63c6731 make_kprojid +EXPORT_SYMBOL vmlinux 0xb647aa4f vc_resize +EXPORT_SYMBOL vmlinux 0xb64d0fad elv_rb_find +EXPORT_SYMBOL vmlinux 0xb6514786 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xb672fae5 vga_get +EXPORT_SYMBOL vmlinux 0xb67400b5 mdiobus_alloc_size +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 0xb6addf62 update_region +EXPORT_SYMBOL vmlinux 0xb6afad10 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xb6c06cf3 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xb6cb71f6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb73d106c d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xb73f19d9 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xb743a38a scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xb7444eb4 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb757e70e nf_register_hooks +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb787476e follow_pfn +EXPORT_SYMBOL vmlinux 0xb79715bd kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7bdd002 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7cd3672 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xb7ce36d6 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xb7e9561b check_disk_size_change +EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0xb80a9065 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb85f0f8f filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xb86d60b9 twl6040_power +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb88781f6 elv_rb_del +EXPORT_SYMBOL vmlinux 0xb8a4c56b __find_get_block +EXPORT_SYMBOL vmlinux 0xb8b2e8bf kfree_skb +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8dba3b7 param_get_byte +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8f1e8d9 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb9039385 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xb921c141 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xb92f15f5 set_anon_super +EXPORT_SYMBOL vmlinux 0xb9554115 unlock_page +EXPORT_SYMBOL vmlinux 0xb9629290 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xb9a89245 neigh_update +EXPORT_SYMBOL vmlinux 0xb9b57ad6 __devm_release_region +EXPORT_SYMBOL vmlinux 0xb9b6b9f7 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xb9be1e42 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xb9e4828a mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xb9e6c5ae sk_free +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba378e2b jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4f56c4 generic_removexattr +EXPORT_SYMBOL vmlinux 0xba5d6a5e kernel_connect +EXPORT_SYMBOL vmlinux 0xba7fa0ac dcache_dir_open +EXPORT_SYMBOL vmlinux 0xbaab9b87 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xbabb46a8 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbac47594 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xbad54e0d kill_pgrp +EXPORT_SYMBOL vmlinux 0xbad83bf5 param_set_uint +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb18d940 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xbb1f5e4b pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9e08c5 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbba8ce66 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xbbb69db2 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xbbdf0b6d posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbbf10853 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xbbf1b345 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xbc035787 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xbc0a96d7 param_set_byte +EXPORT_SYMBOL vmlinux 0xbc1903de iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc302b41 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xbc369277 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xbc41b164 generic_file_open +EXPORT_SYMBOL vmlinux 0xbc41d42e dev_addr_del +EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack +EXPORT_SYMBOL vmlinux 0xbc5a79a7 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xbc687cf1 blk_register_region +EXPORT_SYMBOL vmlinux 0xbc6a35aa security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xbc6cac47 del_gendisk +EXPORT_SYMBOL vmlinux 0xbc7cea26 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xbc9dd2ac devm_clk_put +EXPORT_SYMBOL vmlinux 0xbca44a2d tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc51478 get_tz_trend +EXPORT_SYMBOL vmlinux 0xbcd02b77 icmpv6_send +EXPORT_SYMBOL vmlinux 0xbcf5ceb4 may_umount_tree +EXPORT_SYMBOL vmlinux 0xbd09462f netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xbd0a4c01 register_gifconf +EXPORT_SYMBOL vmlinux 0xbd101379 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xbd1f6fb4 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0xbd5741e9 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xbd883796 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xbd89c734 set_pages_array_wb +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbe0213c0 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xbe02c6e9 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe16e9b7 request_key_async +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe1e4efc tty_register_device +EXPORT_SYMBOL vmlinux 0xbe517dbb unregister_netdev +EXPORT_SYMBOL vmlinux 0xbe5950c0 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xbe8b9765 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command +EXPORT_SYMBOL vmlinux 0xbea04adf devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbee03bd1 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xbee102df nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf016add simple_write_begin +EXPORT_SYMBOL vmlinux 0xbf2ad219 d_instantiate +EXPORT_SYMBOL vmlinux 0xbf3782fc nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xbf5e28ca phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xbf6a38a4 elv_rb_add +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf91bd46 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfb5dadd eth_mac_addr +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe4b443 pci_save_state +EXPORT_SYMBOL vmlinux 0xbfe99f24 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff39fb5 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xbff6a229 bdi_init +EXPORT_SYMBOL vmlinux 0xc01e556d pci_enable_device +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc031c797 dev_close +EXPORT_SYMBOL vmlinux 0xc03a9b06 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xc0403c9c keyring_clear +EXPORT_SYMBOL vmlinux 0xc05e355f idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc077c117 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc089e3ab phy_resume +EXPORT_SYMBOL vmlinux 0xc08e18e9 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xc09a9dbb bmap +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0c1aa78 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc10284ec __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc139d683 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xc145b70f blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc15af91d get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xc16a208b dev_trans_start +EXPORT_SYMBOL vmlinux 0xc172922b dev_uc_del +EXPORT_SYMBOL vmlinux 0xc17923d9 kmap_to_page +EXPORT_SYMBOL vmlinux 0xc18d6687 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xc1ad6a43 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0xc1d0f52d pci_bus_put +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1f33a94 sk_common_release +EXPORT_SYMBOL vmlinux 0xc1fe8f76 i2c_clients_command +EXPORT_SYMBOL vmlinux 0xc222e62a agp_bridge +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc255af9a do_truncate +EXPORT_SYMBOL vmlinux 0xc26e27be netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xc27c904b fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc28cf389 fget +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2a8dbb2 dev_change_flags +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2c4ebdb ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2ef38d9 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc2f18e07 vga_con +EXPORT_SYMBOL vmlinux 0xc342736f done_path_create +EXPORT_SYMBOL vmlinux 0xc365cc5f __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xc367100f __serio_register_port +EXPORT_SYMBOL vmlinux 0xc368ed92 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c3b4cb __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xc3dbebc3 cdev_init +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc42de568 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xc4326361 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xc434d571 vfs_writev +EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc4394be8 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xc4409d08 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xc45e7bf3 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xc4676ccd ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xc467cb2b kernel_getsockname +EXPORT_SYMBOL vmlinux 0xc46e9d54 netdev_state_change +EXPORT_SYMBOL vmlinux 0xc46f22e1 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xc473e767 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc486378b jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xc48bee98 pci_release_regions +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4ae5333 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xc4d7128f generic_block_bmap +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc5151c05 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xc5371991 sock_no_getname +EXPORT_SYMBOL vmlinux 0xc543eea0 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc5464d3e skb_clone +EXPORT_SYMBOL vmlinux 0xc552b0f5 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55bf8a2 mmc_erase +EXPORT_SYMBOL vmlinux 0xc55bfff6 d_set_d_op +EXPORT_SYMBOL vmlinux 0xc5602192 sock_wfree +EXPORT_SYMBOL vmlinux 0xc5715dc7 inode_change_ok +EXPORT_SYMBOL vmlinux 0xc574afb3 pci_bus_type +EXPORT_SYMBOL vmlinux 0xc57ca018 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xc585f7e2 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59f6fa2 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xc5aa908e kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xc5c3affc skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6067376 padata_free +EXPORT_SYMBOL vmlinux 0xc6260838 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63affb4 simple_transaction_set +EXPORT_SYMBOL vmlinux 0xc6517d8f locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc68e6022 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xc68f0678 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0xc6a25d76 sock_no_connect +EXPORT_SYMBOL vmlinux 0xc6a2e9e5 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xc6acab78 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cc1310 sock_register +EXPORT_SYMBOL vmlinux 0xc6daadb8 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xc6df70ce pagecache_write_end +EXPORT_SYMBOL vmlinux 0xc6ee3e53 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xc7170edc napi_complete_done +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc746f85d ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xc74786a8 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7599b88 module_put +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc76cd4a3 netpoll_setup +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc794b90c scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xc797312e scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xc79a6373 key_alloc +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b2e667 param_set_bint +EXPORT_SYMBOL vmlinux 0xc7c568e6 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc8022941 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xc826fd30 kill_bdev +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc82af936 pcim_iounmap_regions +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 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc878dec6 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xc8818b1e swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89f1c39 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8fa52dd netdev_change_features +EXPORT_SYMBOL vmlinux 0xc8fb2ec0 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc938b228 register_framebuffer +EXPORT_SYMBOL vmlinux 0xc947fe3b nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc975c745 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9b5f971 set_disk_ro +EXPORT_SYMBOL vmlinux 0xc9bca340 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xc9c028b6 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xc9c0f1b0 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xc9d385db max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xc9d7567e tcf_hash_create +EXPORT_SYMBOL vmlinux 0xc9f2b3bf tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0d2795 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca19eb4a flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xca3bbe31 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca6afa35 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xca7505bb devm_gpio_free +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaafbba5 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0xcac00669 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xcacefe64 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xcad04418 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xcadf3f4b key_payload_reserve +EXPORT_SYMBOL vmlinux 0xcaef1162 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf3ef14 tcp_connect +EXPORT_SYMBOL vmlinux 0xcafde8b6 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xcb01efec kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb21529e in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xcb227f22 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xcb2ea3c7 simple_rename +EXPORT_SYMBOL vmlinux 0xcb2f9b0f napi_get_frags +EXPORT_SYMBOL vmlinux 0xcb3730dd component_match_add +EXPORT_SYMBOL vmlinux 0xcb539cc9 vfs_read +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +EXPORT_SYMBOL vmlinux 0xcb89080d sock_setsockopt +EXPORT_SYMBOL vmlinux 0xcb913ef8 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xcba15765 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xcbaa9b93 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xcbae6c7a acpi_lid_notifier_unregister +EXPORT_SYMBOL vmlinux 0xcbaf336c sync_filesystem +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 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc62d635 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xcc66a3d2 path_put +EXPORT_SYMBOL vmlinux 0xcc7c8177 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0xcc7e652f jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xccae20dd md_unregister_thread +EXPORT_SYMBOL vmlinux 0xccbb02b4 would_dump +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xcceaff0b pci_write_vpd +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd1940fb stop_tty +EXPORT_SYMBOL vmlinux 0xcd23e9bb skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd364c25 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xcd3e9471 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xcd4b379b mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0xcd790b92 vm_map_ram +EXPORT_SYMBOL vmlinux 0xcda301c9 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd12bb5 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xcdf12dec xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xcdf13376 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xce247caf __register_nls +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce288e88 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xce2bda85 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0xce2c45cc wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xce4904a4 acpi_leave_sleep_state +EXPORT_SYMBOL vmlinux 0xce5133f4 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce688e59 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xce693b24 down_write_trylock +EXPORT_SYMBOL vmlinux 0xce8c500c napi_consume_skb +EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xced3bef3 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xced5dca0 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xceefea8b dcb_getapp +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf32273e lookup_bdev +EXPORT_SYMBOL vmlinux 0xcf38eaeb lock_fb_info +EXPORT_SYMBOL vmlinux 0xcf3e34ca gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xcf438a01 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xcf45a1cd sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xcf470d4a dev_driver_string +EXPORT_SYMBOL vmlinux 0xcf5fb2df mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf6dea25 tty_do_resize +EXPORT_SYMBOL vmlinux 0xcf82df0f acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0xcf83606d scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xcf98d5c6 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xcf9b4e26 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xcf9b9252 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xcf9c6a86 vfs_whiteout +EXPORT_SYMBOL vmlinux 0xcf9c9b35 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xcfa1c393 tty_check_change +EXPORT_SYMBOL vmlinux 0xcfb0bf08 do_splice_to +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcff24074 dev_addr_add +EXPORT_SYMBOL vmlinux 0xd0156fc7 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xd01ce728 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xd03655c2 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xd0382dce blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xd05fb146 dma_supported +EXPORT_SYMBOL vmlinux 0xd05fc5ed pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd07e4ddc tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xd0845220 agp_generic_destroy_pages +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 0xd0acb4ec dev_uc_init +EXPORT_SYMBOL vmlinux 0xd0acbf90 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xd0b45b2e simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xd0d7c28e simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +EXPORT_SYMBOL vmlinux 0xd0dc21a6 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xd0e82e66 fib_default_rule_add +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 0xd0fba7a2 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xd0fec4ba sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd130d096 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xd16254b4 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd16634b6 __seq_open_private +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1abf392 inet_stream_connect +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1c8ef90 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20cf3b1 genphy_suspend +EXPORT_SYMBOL vmlinux 0xd20e1d19 address_space_init_once +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd22fae32 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xd24e7cd6 key_link +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25a2ed1 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2853a4d skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2b18516 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xd2b59c88 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xd2cc5257 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd2fb4718 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0xd33161e5 __check_sticky +EXPORT_SYMBOL vmlinux 0xd332592a force_sig +EXPORT_SYMBOL vmlinux 0xd338338d xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xd3567ed8 eth_header +EXPORT_SYMBOL vmlinux 0xd3676506 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xd36ec278 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xd37776d0 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xd37e1578 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xd3832127 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xd389c815 clk_get +EXPORT_SYMBOL vmlinux 0xd3a00803 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c08e34 skb_pull +EXPORT_SYMBOL vmlinux 0xd3d25548 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xd403c094 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xd408a449 single_open +EXPORT_SYMBOL vmlinux 0xd42e9539 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xd45b8fd2 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xd4690578 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xd478431f soft_cursor +EXPORT_SYMBOL vmlinux 0xd47de4ee input_release_device +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd487554b ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xd4f16865 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd5155651 eth_header_cache +EXPORT_SYMBOL vmlinux 0xd524fbc9 security_path_chown +EXPORT_SYMBOL vmlinux 0xd52809dc neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xd52c3d6b netlink_set_err +EXPORT_SYMBOL vmlinux 0xd5311ccc agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55f4b90 ps2_end_command +EXPORT_SYMBOL vmlinux 0xd561023e pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xd572dad6 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xd5770e03 tty_vhangup +EXPORT_SYMBOL vmlinux 0xd591af90 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5b03efa nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xd5c1b163 napi_gro_flush +EXPORT_SYMBOL vmlinux 0xd5cde40c seq_dentry +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd617bf71 vme_lm_request +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd6461e01 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd66094ad generic_perform_write +EXPORT_SYMBOL vmlinux 0xd68264ba genl_unregister_family +EXPORT_SYMBOL vmlinux 0xd6829987 try_to_release_page +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd699b3b1 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6b83967 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0xd6bd1a74 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xd6d4073c module_refcount +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fb7fc0 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xd727df67 netdev_alert +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd735d67a blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xd73f4783 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xd747c732 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xd75386f8 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd763e171 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xd7824196 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7dbf2d5 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xd7dd43de copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e020de param_ops_long +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd828235c inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xd8385b54 copy_from_iter +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8abdb13 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xd8b2c595 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xd8bb816e jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xd8bfd79b remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xd8c90813 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f38bc8 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xd8f6f281 file_path +EXPORT_SYMBOL vmlinux 0xd8f80258 km_state_notify +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd90d6d7c clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xd913b6b8 phy_print_status +EXPORT_SYMBOL vmlinux 0xd91e34a2 __inode_permission +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd9327d12 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xd93ce80a pci_read_vpd +EXPORT_SYMBOL vmlinux 0xd94322e7 acpi_evaluate_reference +EXPORT_SYMBOL vmlinux 0xd963d2bc bprm_change_interp +EXPORT_SYMBOL vmlinux 0xd96621f7 skb_coalesce_rx_frag +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 0xd9745c08 md_check_recovery +EXPORT_SYMBOL vmlinux 0xd97e2012 generic_getxattr +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd99b9701 skb_copy +EXPORT_SYMBOL vmlinux 0xd9b289f7 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0xd9c98fe6 netdev_notice +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d688cc pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e93e7b simple_dir_operations +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda1b281c bio_split +EXPORT_SYMBOL vmlinux 0xda392437 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda41f119 find_get_entry +EXPORT_SYMBOL vmlinux 0xda44346f pnp_get_resource +EXPORT_SYMBOL vmlinux 0xda5381c9 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xda593f0b ipv4_specific +EXPORT_SYMBOL vmlinux 0xda665203 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xda66c288 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xda6d7c56 param_get_ulong +EXPORT_SYMBOL vmlinux 0xda6dbd8a cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7e6d9f bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xda8af3f2 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdab3b20f d_find_alias +EXPORT_SYMBOL vmlinux 0xdab7442f iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xdab7a88a __nlmsg_put +EXPORT_SYMBOL vmlinux 0xdabfa28c input_register_device +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdada8fc1 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0xdb0f9b69 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xdb103eae netdev_err +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb2fcd5c inc_nlink +EXPORT_SYMBOL vmlinux 0xdb4f69e8 dquot_destroy +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8872df vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xdbacef85 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xdbf3081b devm_free_irq +EXPORT_SYMBOL vmlinux 0xdbf4cd1c dev_load +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc27e9af simple_follow_link +EXPORT_SYMBOL vmlinux 0xdc307d1c netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xdc30f907 xfrm_register_km +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 0xdc90db16 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xdc98910e blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xdc9cb75c ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xdcb1e231 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xdcb951ad twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xdcba7c97 phy_suspend +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd1cb22e get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xdd3e1c33 scsi_device_put +EXPORT_SYMBOL vmlinux 0xdd55fe0b take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xdd642692 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xdd7f9188 search_binary_handler +EXPORT_SYMBOL vmlinux 0xdd8c266b elv_add_request +EXPORT_SYMBOL vmlinux 0xdd9f90f1 skb_pad +EXPORT_SYMBOL vmlinux 0xdda4217b inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xdda4bd6e sk_alloc +EXPORT_SYMBOL vmlinux 0xddae30fb swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xddafef07 register_netdevice +EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec +EXPORT_SYMBOL vmlinux 0xddc374e0 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xdddfd967 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xddeab9be pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xde030c60 kmap +EXPORT_SYMBOL vmlinux 0xde13b6fa dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde224263 unregister_console +EXPORT_SYMBOL vmlinux 0xde374345 __dst_free +EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xde5e9438 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xde75818d param_set_bool +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde93ed16 lro_receive_skb +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 0xdedf689d inet6_ioctl +EXPORT_SYMBOL vmlinux 0xdeee8731 misc_deregister +EXPORT_SYMBOL vmlinux 0xdefc1604 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xdf0da3cc acpi_get_devices +EXPORT_SYMBOL vmlinux 0xdf12a927 acpi_check_dsm +EXPORT_SYMBOL vmlinux 0xdf1427e5 idr_remove +EXPORT_SYMBOL vmlinux 0xdf245aab pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xdf29237f set_device_ro +EXPORT_SYMBOL vmlinux 0xdf2a1580 poll_freewait +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf69597b neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xdf78cc8d from_kuid_munged +EXPORT_SYMBOL vmlinux 0xdf7cf313 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf8d63a2 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9a3615 load_nls_default +EXPORT_SYMBOL vmlinux 0xdfa5b74c udplite_prot +EXPORT_SYMBOL vmlinux 0xdfbf1d05 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfcc695b padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfd85e49 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xdfec3ef7 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe0572255 loop_register_transfer +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0664736 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xe0739a9e tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe0826ce2 save_mount_options +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08fd327 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xe093b0a8 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xe09d6aba pci_disable_msix +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 0xe0b88e12 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xe0ba2131 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xe0bc745f serio_bus +EXPORT_SYMBOL vmlinux 0xe0c0c8d7 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xe0cad9fa devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xe0d7aa17 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xe11a5a41 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe14d90d0 iov_iter_npages +EXPORT_SYMBOL vmlinux 0xe1680a45 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xe16bd309 eth_header_parse +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17a2c86 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xe190264c dev_mc_del +EXPORT_SYMBOL vmlinux 0xe19433fa __ps2_command +EXPORT_SYMBOL vmlinux 0xe1a9637b do_SAK +EXPORT_SYMBOL vmlinux 0xe1d89ffb ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xe1f38424 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe21f6116 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe27ed246 inet_listen +EXPORT_SYMBOL vmlinux 0xe2833974 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xe28b371a ps2_begin_command +EXPORT_SYMBOL vmlinux 0xe28e6f9f udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xe294e384 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xe2958ad7 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b50262 isapnp_protocol +EXPORT_SYMBOL vmlinux 0xe2cf184f gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xe2d2f879 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2ee95eb set_page_dirty +EXPORT_SYMBOL vmlinux 0xe2f15da3 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe2fe597d lease_modify +EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe31cd51e tcp_sendpage +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe35d4336 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xe394718e abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xe3aba69f inet_recvmsg +EXPORT_SYMBOL vmlinux 0xe3acfe3d posix_test_lock +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3fc7c1d param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe43dc6bf generic_file_mmap +EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe44a9c5f inet_put_port +EXPORT_SYMBOL vmlinux 0xe4568925 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xe4601aaf sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xe4647368 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xe4771e6b netdev_warn +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe49f590d input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4dc8e74 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xe4e5bb0b d_splice_alias +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 +EXPORT_SYMBOL vmlinux 0xe5166fe3 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe531d6c7 generic_setlease +EXPORT_SYMBOL vmlinux 0xe561a706 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xe56cf129 kset_unregister +EXPORT_SYMBOL vmlinux 0xe572f285 pci_pme_active +EXPORT_SYMBOL vmlinux 0xe5746531 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe58570bd get_io_context +EXPORT_SYMBOL vmlinux 0xe58582b4 scsi_unregister +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5ba8d69 deactivate_super +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d3d84f blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe608632d security_mmap_file +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe617c6a9 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xe61d875a pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe659d90b commit_creds +EXPORT_SYMBOL vmlinux 0xe65caf8d kfree_skb_partial +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69cb13e vme_dma_request +EXPORT_SYMBOL vmlinux 0xe6a1c68e set_pages_wb +EXPORT_SYMBOL vmlinux 0xe6a2df00 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xe6aa029d fasync_helper +EXPORT_SYMBOL vmlinux 0xe6b031fd dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xe6d5cfdb tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f17344 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xe6f6dd27 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe7210b59 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xe725833e capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe7341f25 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xe73e51ba swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xe73fc58b kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xe74d44c7 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xe7533791 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xe761a5ee ata_dev_printk +EXPORT_SYMBOL vmlinux 0xe76767a6 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0xe76ac399 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv +EXPORT_SYMBOL vmlinux 0xe789f576 seq_path +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7ac3a21 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xe7b3ec2c bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7c78a43 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xe7d211ea dst_discard_out +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7ddd850 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xe80e956b lwtunnel_output +EXPORT_SYMBOL vmlinux 0xe81218a4 sock_edemux +EXPORT_SYMBOL vmlinux 0xe81c088b fget_raw +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe841f44d vfs_statfs +EXPORT_SYMBOL vmlinux 0xe84fe218 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xe86bfb7e bio_put +EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe8825d45 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xe88725ec eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xe8925642 sk_wait_data +EXPORT_SYMBOL vmlinux 0xe8a626b4 __vfs_read +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8be195d posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8e7980e mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xe8ebe0f6 md_integrity_register +EXPORT_SYMBOL vmlinux 0xe8f9d422 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xe9087e97 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe917557d ppp_dev_name +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe959bb8e xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe97bdf6e genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xe97fc9eb pci_find_capability +EXPORT_SYMBOL vmlinux 0xe986686f dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xe9910b69 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe9948f92 __get_page_tail +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9adc651 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xe9aebaec __vfs_write +EXPORT_SYMBOL vmlinux 0xe9de8972 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xe9e738cd submit_bio_wait +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f85a8a pci_get_device +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0c401d blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea5272c9 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xea54ab1a get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xea6c6568 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xea6f9ca0 pnp_is_active +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea7d63a8 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0xea80baae jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xea8d4575 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xeaab7865 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xeaba89be unregister_md_personality +EXPORT_SYMBOL vmlinux 0xeac874fb dump_align +EXPORT_SYMBOL vmlinux 0xead92483 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xead99eec sock_rfree +EXPORT_SYMBOL vmlinux 0xeadfb1c9 mmc_free_host +EXPORT_SYMBOL vmlinux 0xeae1bbaf jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae4c251 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xeb208acd bio_reset +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb45e7dd iov_iter_advance +EXPORT_SYMBOL vmlinux 0xeb556c98 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb5605b4 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xeb7b4a71 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xebfb08c7 dev_crit +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec2f5cfe agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec626a66 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xec63a43c netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xec8c3d63 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xec9c43d8 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xec9cb9b3 devm_iounmap +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xeccee4dd napi_gro_frags +EXPORT_SYMBOL vmlinux 0xecd70fff generic_readlink +EXPORT_SYMBOL vmlinux 0xecd8d6ab vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed0090d7 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xed0e3469 blkdev_put +EXPORT_SYMBOL vmlinux 0xed13e4e9 vfs_write +EXPORT_SYMBOL vmlinux 0xed152338 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xed2af29a elevator_alloc +EXPORT_SYMBOL vmlinux 0xed2e4d4a xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xed3485a9 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xed377ffb free_page_put_link +EXPORT_SYMBOL vmlinux 0xed3d5bef neigh_table_init +EXPORT_SYMBOL vmlinux 0xed4a4d93 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xed546f55 d_make_root +EXPORT_SYMBOL vmlinux 0xed57dc11 put_filp +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed60c970 i2c_release_client +EXPORT_SYMBOL vmlinux 0xed8720fd install_exec_creds +EXPORT_SYMBOL vmlinux 0xed8adccc ppp_register_channel +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedcec358 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xede5ee1f from_kgid_munged +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedf89a7e atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xedfa5f80 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee43db16 proto_unregister +EXPORT_SYMBOL vmlinux 0xee595773 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xee639df8 blk_complete_request +EXPORT_SYMBOL vmlinux 0xee63a3d9 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xee7b11a1 kobject_get +EXPORT_SYMBOL vmlinux 0xee7eb9e1 pnp_platform_devices +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea3f409 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xeea55826 registered_fb +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeaf013b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xeeb9d972 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xeeba48d8 udp_disconnect +EXPORT_SYMBOL vmlinux 0xeec2c7cf ucs2_as_utf8 +EXPORT_SYMBOL vmlinux 0xeecc6741 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xeee4542d km_is_alive +EXPORT_SYMBOL vmlinux 0xeee830e0 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef2b2b66 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xef374c61 seq_write +EXPORT_SYMBOL vmlinux 0xef42d9fa block_write_end +EXPORT_SYMBOL vmlinux 0xef87fd0c sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xef89117e gnttab_free_pages +EXPORT_SYMBOL vmlinux 0xef9661cf ip6_xmit +EXPORT_SYMBOL vmlinux 0xef9aedfc boot_option_idle_override +EXPORT_SYMBOL vmlinux 0xefa9a3e8 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0xefc5f4a1 jbd2_journal_get_undo_access +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 0xefe6a074 get_empty_filp +EXPORT_SYMBOL vmlinux 0xeff01fad cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xeff21473 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf009121e agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xf01817c8 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf0233637 block_write_full_page +EXPORT_SYMBOL vmlinux 0xf02fd8af put_disk +EXPORT_SYMBOL vmlinux 0xf031c371 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf03eeea6 eth_change_mtu +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 0xf071cb21 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xf072b88b secpath_dup +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf099117b mmc_put_card +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0c6911a udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xf0cf8bd8 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xf0eaffce _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f28520 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xf0f5d99b ppp_input +EXPORT_SYMBOL vmlinux 0xf10223f4 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf11c9669 seq_open_private +EXPORT_SYMBOL vmlinux 0xf124fa25 rtnl_notify +EXPORT_SYMBOL vmlinux 0xf1289e88 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf13b7c47 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1528526 inet_accept +EXPORT_SYMBOL vmlinux 0xf1651818 serio_interrupt +EXPORT_SYMBOL vmlinux 0xf1677e7b vme_register_driver +EXPORT_SYMBOL vmlinux 0xf174fd71 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xf18b3a9d acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xf18d869d posix_acl_chmod +EXPORT_SYMBOL vmlinux 0xf18e9947 genphy_update_link +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1c5dcf1 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xf1cd8a25 init_buffer +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf204f377 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf21505d8 vfs_fsync +EXPORT_SYMBOL vmlinux 0xf23047fb __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24d1c6c set_pages_nx +EXPORT_SYMBOL vmlinux 0xf26b2448 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xf286d7dc cad_pid +EXPORT_SYMBOL vmlinux 0xf28d5138 mmc_interrupt_hpi +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 0xf2afd43b dump_skip +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2e6af4d netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xf30c7487 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf332e9cb hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf35b73d3 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xf378cc4e ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xf37f8fb6 input_register_handler +EXPORT_SYMBOL vmlinux 0xf381c910 mmc_release_host +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38b48e8 __dev_set_mtu +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 0xf3a20b1f rfkill_alloc +EXPORT_SYMBOL vmlinux 0xf3b581e2 dm_put_device +EXPORT_SYMBOL vmlinux 0xf3e4cacb msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e82603 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xf3ffca92 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf40f6fe9 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xf412087e tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xf4271b24 pnp_register_driver +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf444a267 netif_skb_features +EXPORT_SYMBOL vmlinux 0xf457053a tcp_conn_request +EXPORT_SYMBOL vmlinux 0xf470ca87 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf496f5ec ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xf4a20d43 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4a85916 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4d19709 kern_path_create +EXPORT_SYMBOL vmlinux 0xf4d20f81 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xf4d2b0f2 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fbcc2c input_set_keycode +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf505b83d mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf51e29c0 bdget_disk +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf55ca4b9 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xf56602b2 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xf58a0055 ata_link_printk +EXPORT_SYMBOL vmlinux 0xf58cf412 send_sig +EXPORT_SYMBOL vmlinux 0xf59cf823 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xf59f6838 register_key_type +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5d4f8e9 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xf5d567e5 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xf5dad531 contig_page_data +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5faa549 fb_show_logo +EXPORT_SYMBOL vmlinux 0xf5ff9064 seq_open +EXPORT_SYMBOL vmlinux 0xf616fc8c netdev_update_features +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64abc50 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67fa2be of_find_mipi_dsi_device_by_node +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 0xf6a2092d pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f0cd66 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xf6f8b828 mount_subtree +EXPORT_SYMBOL vmlinux 0xf6fa9dbb pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xf6fc2a18 read_dev_sector +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7024f30 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xf705d185 simple_readpage +EXPORT_SYMBOL vmlinux 0xf7129a05 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xf724a88b delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0xf752422f netdev_emerg +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf758fbfa follow_up +EXPORT_SYMBOL vmlinux 0xf75e0256 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf7707061 fb_class +EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl +EXPORT_SYMBOL vmlinux 0xf7891779 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf796c87e blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7a0dca5 i2c_use_client +EXPORT_SYMBOL vmlinux 0xf7a48915 __skb_checksum +EXPORT_SYMBOL vmlinux 0xf7c3ae82 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xf7c42b22 xattr_full_name +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 0xf8320d3b mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xf833910e scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xf85b085d __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xf85b42dc pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xf878f401 sock_efree +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf8b9584b ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xf8bbf4d0 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xf8be33a5 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xf8c7f559 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xf8ed84ec pci_scan_bus +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf90104a9 dev_printk +EXPORT_SYMBOL vmlinux 0xf9342b29 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf945c957 generic_setxattr +EXPORT_SYMBOL vmlinux 0xf98f0dd0 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b2d17a downgrade_write +EXPORT_SYMBOL vmlinux 0xf9c60511 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xf9d6f9d6 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9f6715a __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xfa0cdcf7 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xfa33d72b input_set_capability +EXPORT_SYMBOL vmlinux 0xfa486455 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa535b94 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5d8400 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xfa603506 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xfa81e12a __block_write_begin +EXPORT_SYMBOL vmlinux 0xfa8a9e1f ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xfaafd967 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xfabf6874 dqget +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfacf4ff0 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xfad1906b skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb0632d3 dma_async_device_register +EXPORT_SYMBOL vmlinux 0xfb09b050 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb349b19 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xfb41e7e3 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xfb454882 input_inject_event +EXPORT_SYMBOL vmlinux 0xfb4c758f fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xfb554c52 mount_ns +EXPORT_SYMBOL vmlinux 0xfb68a3db put_tty_driver +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6b3076 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xfb773915 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb9c2ab6 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xfba6abc9 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfbf340b9 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc03e76e xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xfc3056b5 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3ed155 d_alloc_name +EXPORT_SYMBOL vmlinux 0xfc3f9422 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xfc4b8180 sget +EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xfc64e1e9 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc7b8ec1 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc95a9ab kernel_param_lock +EXPORT_SYMBOL vmlinux 0xfc9a5b16 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcae89f8 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xfcc17e3c __nd_driver_register +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcd550ac sock_create_kern +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 0xfd0374eb vga_client_register +EXPORT_SYMBOL vmlinux 0xfd056bea invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xfd1423e3 tty_kref_put +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd4694c8 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xfd48c627 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xfd4e773a devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xfd67084e md_update_sb +EXPORT_SYMBOL vmlinux 0xfd764795 dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfd76c633 mdiobus_read +EXPORT_SYMBOL vmlinux 0xfd76da9b inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xfd77a21b dump_trace +EXPORT_SYMBOL vmlinux 0xfd8b5110 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xfd92e559 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdcc1e84 invalidate_partition +EXPORT_SYMBOL vmlinux 0xfdcecf13 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xfddb5022 put_cmsg +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 0xfe115f7b bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe273702 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xfe27addf pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xfe31661a release_firmware +EXPORT_SYMBOL vmlinux 0xfe3e04fa inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xfe522abf inet_offloads +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5d6319 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xfe713afe generic_write_checks +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe91f0b1 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xfe94cb63 param_ops_uint +EXPORT_SYMBOL vmlinux 0xfe977c44 dquot_enable +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfecd1420 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xfecd3e2e dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xfed07529 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee7878e tcp_check_req +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xff0025ff mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xff08209b set_binfmt +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff250c10 dst_destroy +EXPORT_SYMBOL vmlinux 0xff3f675f padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6b85ba sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff78d7cd sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xff7a343e tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xff7d282f replace_mount_options +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff950322 pci_restore_state +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xff9cc465 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xffa3413d nf_ct_attach +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xfffbd553 jbd2_journal_destroy +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 0x511a90f6 glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x5b1b28a1 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 0x9d53dae8 glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xbf9a553f glue_cbc_decrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xd55b5916 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 0x002538de gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x01fe4327 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x061cfe4f kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0849aa01 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0a48e9dc kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0bf97bd3 kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0cee7bbb kvm_scale_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0dd7e0d5 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0faaaefd kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175aea24 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17d937ac kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x17e33061 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1a889454 kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d5f8baf x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2019aa7c kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20c4a8fa kvm_fast_pio_out +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 0x212cc455 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x24f7eaeb kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x25a9199f x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x262ff8d3 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x271314f6 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2720832c kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ade18ff kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2ee5e65e kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fba7c86 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2fff7fd4 kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x30f91c2c kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x316894a6 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3199d3b8 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x322d9b28 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35417986 kvm_get_dirty_log +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 0x387f01bf kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3884170d kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3a092854 kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3c644c20 kvm_vcpu_read_guest_page +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 0x3e4aa1eb kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x3fe423e7 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x409d58e1 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40ce1e45 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43f4230c __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4657dcca reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x482c0fd8 kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x49bd097c gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b62fcbe kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c594011 kvm_mmu_slot_largepage_remove_write_access +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4c97fa2f kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x50d785f9 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x51f4475d kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58360bb1 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ebf7f3a kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ed23aa9 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f903528 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x609d7aa4 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x628274c7 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x65486c8b kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x659c2a3b kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x66f9c330 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68138a79 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6b615988 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6e706c7c kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6ecc166b kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6f39ab68 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x73e36226 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x74c86dd0 mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x761ecda9 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x767befc1 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a5e9377 kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7a7439ff kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c59e22e __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80ecfb6b __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x81e8d401 kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8376d9c0 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8514eea8 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x85939d71 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8775bf63 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x87ea78c4 kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a578863 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8a97f677 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8c2e3566 kvm_mmu_load +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 0x92d713dd __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x93265c04 handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9407bde2 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x94423b32 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95fa3e9a kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x965921be kvm_set_cr3 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982cd932 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9972048a kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b2f1e70 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c171a59 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c96c58b kvm_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e0a65d0 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ec3ab99 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa03b5e44 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0b21217 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa1b83893 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa633ac3c kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa7061d43 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac0741aa kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae0df829 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaf9298ca kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb1473cc5 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb22e7a5c kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb27c64a9 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb2e2fc93 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb5aaf514 kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb72558ac kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb87ef7ce kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb918380a kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb006730 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbd39cbe3 kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbefd2a71 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc23f3bc8 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3efe80d kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4b1367d gfn_to_hva +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 0xc5d87f4f kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc940ea8e kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc9ab8aca kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xca192e50 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcce61867 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcd737ba7 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcec86f76 kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf49558a kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcf5a148f kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0459e67 kvm_has_tsc_control +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd085131f kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd0b2727a kvm_mmu_set_mask_ptes +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd294eea0 kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd2bf2ce4 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd69d9700 kvm_gfn_to_hva_cache_init +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 0xda59ed3b kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xda801f7e kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdbc9f108 kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcf72a00 kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xddf17651 kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9c017c __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdf5461df kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdfa39d0d kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe4936e45 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe5e67a49 kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe774ab8a kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeca4c886 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xecf8a964 kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeea4b9cd kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xef58acda vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf34f9ed8 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf4034b33 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf460a632 kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf5e8cafa __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf61a0de8 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf627a029 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb094877 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb3426fd kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb501a87 kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc68132 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfef5d259 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xff62f40b kvm_irq_has_notifier +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x1c96cc23 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x43e1307f ablk_set_key +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x4af02929 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x665bf268 ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x993ff276 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x9ec8e200 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xc3b7b002 __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/af_alg 0x00cdec25 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x4a57bfca af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x5c33dd99 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x6fb47bb0 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x883fa142 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xc2e9654d af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xc87bada2 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xdc4358c6 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0xed61a50b af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xff4f7374 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x85a46641 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x0ebd6bdb async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xbd94234c async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x49bd95c8 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xbecc3261 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9bf84227 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xba3df151 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbced3e0b __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd690e1cd async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x54383011 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa2de7b38 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 0x1f278695 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x8b50fbb8 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x00016fc3 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x127594f9 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x48df0396 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x52beb1ad cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x646c15cb cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x68b1d105 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x8a9cead6 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x9dcb9b53 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xda17fd37 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xff91f290 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 0x00d57ff0 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 0x00d90bcd mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x1dc7129e shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x5220d73a shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x70af8da0 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x99d5b163 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xae24c502 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd4723992 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xff4e134b mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x491e43fb crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x5019094e crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xbf14e526 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xe6a91d21 crypto_poly1305_final +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 0x9a7d74dd xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x319dd70f acpi_nfit_attribute_groups +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x9a08b91a 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 0x0ca6a722 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0fe4e4a9 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x123804d4 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x199e5462 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1a027a9c ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x44b9a01a ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x503f83f8 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5051b000 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x51ce6814 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x61225c2f ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x63eb43ee ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x768397d3 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9207b1aa ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9b6bc2dd ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa5556f38 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xaf6f7948 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd95e332 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc8a2db9b ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd7769d03 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdea3dbc9 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe1cc1799 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe2664588 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe597b604 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0f527854 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x187c6e50 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2611d4c0 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x514e7c74 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5dfe4e2c ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x73d09344 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8c541e23 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9c129acc ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb77b44f6 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xee76984d ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf3f38cbe ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf6c134b3 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfc092b63 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x8604bb2a __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 0x440c857a __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5209fefa __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x70d59791 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9e4ee1c3 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x17b872f8 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x27ec7780 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x282e726a bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x40a679b8 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ab20411 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5c1ecaec __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5df93975 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x603a8426 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x607e3bed bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6434489a bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x738bb8b0 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7845532d bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b3a90dc bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8fd90e7b bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa0f237d7 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa490dd73 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb65c441e bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc5324421 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc84eb1bb bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xccbaf152 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6994f47 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee8174e8 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf4cda570 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfafe93e9 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x49c15029 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7a628773 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8adf28d7 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x942ebd1e btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x984f2eef btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xfcb41055 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1cef5a9a btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x20b9486f btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3e0e49fe btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x75ee0c48 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7b9116de btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x841334f0 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x84dea60f btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa1fbb3db btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbe9ee503 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcf395d27 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcfd41e0a btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe62ce611 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2e867291 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4a09aeae btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x59538d4b btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x69038896 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6cd1ed1a btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79bf3c7c btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7bcfef6c btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x88193de0 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9fd62b28 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc25ece26 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xfaf4d1bb btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x6e268474 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc2b43899 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x479302da btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x70cfea05 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0x918c651b scx200_gpio_ops +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0xc7179191 ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x00f27dbb adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0319153b adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x076d1238 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0a66f9f9 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x196f2cf0 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b1a03c1 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x235caf8e adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3dbc0aa9 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3dca0ebd adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48524d4b adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x49cef453 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5362f311 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5b670855 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5c46dbf4 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x61e0c93f adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ebc8e0a adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x710297d3 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x72b0e6be adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x74026576 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x749df160 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d074c40 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x899b684d adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8eb465b2 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9b59011e adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa1f7a9df adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad1c0b64 adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb15969b3 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe6eb87a adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc1c5b0e4 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 0xd02956d5 adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd250d46c adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdd9eac7a adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdf72a259 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf31716f7 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf9d51cc6 adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfc4fc8f6 adf_dev_get +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x19466887 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x55e3b776 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x75088923 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7aec37b4 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb448fb63 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x679e1545 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x837c57df hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb235d0d4 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x12744574 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x53b31519 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x80ff01b9 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd2601fc6 vchan_init +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x551f73a4 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x10b1582d edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1b45d282 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x300132fe edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x46504aa7 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x494e35de edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4b6f4aa7 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4eeb0aac edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x53155a6c edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6eeb0012 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x700a65d0 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x79eb2577 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x81495754 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8f348932 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x93d13eb2 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x96f8c652 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9dea2e34 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa1908d75 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbca3831e edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc1d0a97c edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xda2c8102 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xda83d7a1 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe8d26dd5 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf84a72c7 find_mci_by_dev +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 0x613330b1 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x75c5722a fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x99a2d760 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9c4cdc08 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb0d7df84 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc09634ba fpga_mgr_buf_load +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 0xa5e70c51 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xc1abc2c6 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x367656f6 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x90be5f85 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x142ab658 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6d02a2a2 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xfb5dbe75 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 0x14586efe ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x2769f451 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x2b23ad82 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/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x056e97cf hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08c5b638 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0d0d99ed __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x17e6d61b hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1d715769 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e7eb182 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1ea431fd hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x21495003 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2376107f hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24fa8898 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x291079ee hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x318bf8f2 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3313182d hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x35b2b0ab hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x41f4c17c hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4dc9c6f3 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x529746c2 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6263a498 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7f1e5d94 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x989759e4 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9a4569d3 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa3beacbc hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb2e0893a hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc4f7e03 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf7a7a50 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc077130d hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xccba5e1d hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd215c966 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd68cdc8e hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd80af74f hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xec91ead9 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf60278ff hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf700a841 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf9df9bdd hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfd790ce6 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdf13f8d hid_output_report +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 0xa9c810b4 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x1264654a roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4d40d101 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x655754df roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x732ec2c5 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x93761514 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc37ee6e9 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x01c4bb83 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1bfe93fe sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1d31c82f sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x227be542 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4fe729ae sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5701ac99 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5c742599 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8dd9f1d2 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb3150e59 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 0xfc1730ae hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x02e05756 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x185f3556 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x215a0996 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2b6c40eb hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x30e7f6c4 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x383ce12f hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3e733548 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a84fd10 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x72fabdd1 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7729d7b0 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fa64515 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9f8b3ce1 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb25ebc36 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbec2438c hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd49a43ea hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0426fe2 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf3bfc34a hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x14f3b27b vmbus_get_outgoing_channel +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 0x358fafa5 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x57210e4d vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5c99f5f6 vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6a46080f vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x70c3d00a vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x720b0682 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x75e30d78 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7b27a338 vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x812e5eff vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x8326cbfa vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x88db75ae vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x963ad997 vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9dcd16ca vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xa86e62e1 vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xb57dbdf1 vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xbc778158 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe1e7ba0f vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe58003ba vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xe8ddcf07 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x334fdcb3 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc774e0b9 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd3ec58b0 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x04fcbac7 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0ebf1532 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0f0aa4ea pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2c865993 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3f2eaab9 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x43c4b658 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x43c974fe pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6ec1471b pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8e036b02 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x9f14cdab pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa409655e pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa4ec5307 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xda9c5236 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe1bdeb35 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf3f0ec65 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x59385a3d intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6c26a39f intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x765bf48b intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x885dbda6 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x98b1eb3d intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc1c7874c intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdb27f4f3 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x232522a6 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x633502d2 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x9e323531 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa7324341 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xff82a48e stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x077fff3f i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4519f5b3 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x7b4c9d2c i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x8fef5f00 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x91481cd7 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xe5ad9f8d nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x5bd5c2b0 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xb27d31a4 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1c21fe97 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf8905518 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x0e2bfb7d bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xa91291af bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xebcbb880 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0c1b5c0e ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x28de02ed ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2a12f690 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x86e79ef7 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x982ca52a ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa1cd321b ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbd989691 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdb4d6161 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe08c7047 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 0x63041c52 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x6bc03416 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 0x0fac011d ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xceff245e ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x2da29d88 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x30354338 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x44c4de38 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x03bb6a24 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x04264a2c adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0f4e15f7 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x146a0ddd adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1f8513f9 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2cdc729c adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xaae3eb80 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xad9274e7 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbacfff14 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xc03509b8 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe9a4e7c2 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf2035f24 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x027867ec iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x170b8a99 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a2f8fff iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x22a5b1c3 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23bc2ff2 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x38be639a iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3a44268d iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3d30f6e4 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47f6fb83 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x49f99ac9 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x53bb7c1d devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54edd686 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5564864d iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ba40622 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7150e034 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74ea7e9c iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78f16ffb iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96245b2d iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98645c5c iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9c4dd034 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa163ec6c iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad78dae3 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xafb09b3c iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba00e2da iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb74531b iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbce987c9 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3052488 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe443c052 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf27c152e iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf97b168d devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc883194 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xa455f2af 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 0xd56f3a42 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x2c2e7acd cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x81aba787 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xfda6f5ce cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x24a09b23 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa88d1fbd cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc06d2012 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x6ed72617 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xbbe53fea cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x200b0ee9 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x34a8924e tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd14c85fe tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xec8d40ae tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x152a4cac wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x15ab8f61 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2436b844 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4852901b wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x55ec8d41 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x62745b49 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x75ccaaa6 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8436aaf9 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x99468ddf wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xae66cf88 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb3d75f2c wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd2d33cea wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x170efc26 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1b4351d0 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3a7cb75d ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4158edf7 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x47424b04 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5e69beaa ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x66805f7d ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf4cf5eed ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf9f930c0 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 0x24f3b4b0 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x295582d3 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2e177eec gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x45dbc64a gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4b1f03b2 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4b1f34ab gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8d8175c1 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x92494bb7 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb7e34751 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcc437d35 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd0da789a gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd7160fe0 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xee03b112 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfa8e5d03 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfbe2a66a gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfbe8806a gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xff037908 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3cd475d8 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4617c26d led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x88153fa7 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbb8d839d led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd1f064d2 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xee648260 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x16375a60 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x24cf88fe lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x28a55532 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4a3b4c03 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6b9fbfcd lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7819a71f lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8ea2eff6 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa96be836 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xdb307506 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe2c83a3c lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xef52e58f 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 0x158004a0 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x195ec756 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x32478961 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x392130fc mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3b9f7c62 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x53454d03 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x632780d5 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6c0291a6 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7db33d3e mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9f0f9757 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd0e22d4a mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdba58482 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe878db3f 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 0x150503ae 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 0x1c56aab3 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 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6b5cc954 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6ba27991 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 0x98db4b65 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x98e0258a dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9e867f92 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb11fa716 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 0xf78cfa83 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 0x3909d3a8 dm_bufio_prefetch +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0x3aac27da 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 0x15964a51 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x270d4e3c dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x724f40d7 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x898470f0 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x909d2ffc dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb575ec9e dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd8f35164 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x6cafc74e dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xc17043dc 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 0x6e1d6782 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 0x8dad09d6 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 0xd3ce1fe5 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 0xda7a6479 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe5b45e6d dm_rh_dirty_log +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf37a3cfe dm_rh_get_region_key +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xfc5f35df dm_rh_inc_pending +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 0x095935b4 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/saa7146/saa7146 0x0a821d7b saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x180f5355 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x18ed8f77 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2e2b4b4c saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x32a9593c saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x422325cd saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5c460925 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xafba0686 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb583a3b7 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb8c5c87b saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x14dd2307 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2219f1f9 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6c211acb saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6dc0985e saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8ddde4a0 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb0d22722 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbd8d51be saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x08df6131 sms_board_event +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 0x3e902872 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x438a6ab5 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4aea420e smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6a642c40 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 0x759b2836 sms_board_power +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 0x9227131d smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x991d8420 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xadbdc260 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb43e3a8c sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb8833a17 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbda7d1f0 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc382d0a3 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd965bad3 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe9279a9e smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xec1efc38 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xffdc0767 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0xa9e26d6e as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x6477bd36 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x0df76465 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0fbbd393 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x16472edf media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x175f8848 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x1c17cddd media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x1d016ea6 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x22f4ce6e media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x3270f1e9 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x3b399785 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x8d4d59de media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x98d302d6 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xab5043f9 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xb07ba61f media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc1d4243d media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xc513f906 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xd3d61e44 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xd6a30262 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xe3a049f7 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xeb0d1c07 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x5124e2cc cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x03826cda mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x03a0fc49 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1b5f1ef2 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1ed84291 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3193d4c0 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3355909b mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3cb1ecde mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5ed96b92 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6444f778 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6d6614f8 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6f350231 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x74df615d mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8762d0bc mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9dd556e4 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb4ddafd6 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcbe739bb mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xccd32b3f mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd6b5289a mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdd3d7668 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x12014ed1 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x18fca052 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2bb40689 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x304d1e07 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x385d5ba8 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5df05959 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x65a75162 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8081ed60 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x821932c7 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa54fccce saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc81277f7 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdd1bb017 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe1787e42 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe1fec2e8 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe3af2c85 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe540003f saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe89208d5 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf3bf21f7 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xfddcf13f saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3a664588 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x49460d71 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5e3fbc49 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x715ee399 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x77320247 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 0x90dc5b78 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xda2b1aa5 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x72a2b059 radio_isa_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x74be8f52 radio_isa_pnp_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x75752113 radio_isa_match +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xdf10e22c radio_isa_pnp_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xf55e8d2b radio_isa_probe +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb2b952c5 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xfba361c7 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0e6a7650 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1b9956db ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45e6329a rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x49efc4a8 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x524796f1 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 0x5f33e6f6 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ed2cdca rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x753c285f rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x9b163fcf ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb99c1e67 rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbcb07574 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc28901b1 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd274e8e3 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd2c64cee ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xd6b1fe50 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0126ba8 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb9a584b rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfda3a311 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x19d3509f mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x136412a8 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x0942f7a8 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x04fd3e2a r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xd5fb6350 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0xc14de9ab tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0d1ff8c8 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xdc28966c tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x5875250d tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x71f3b6ea tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xdd3f219c tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x34b18bc2 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x54c56d2f tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xa2bd74c4 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x039e2b69 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1f00b61c cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3083251e cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3fdbf229 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x41940bf6 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4f188390 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x67bd0ed1 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x77a8756f cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7e84f6be cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x885fc24a cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8a3f46de cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x97f1c3c7 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c103365 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9c367917 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa6c824bb cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb71d5641 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbdf4979f cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc51c232f cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xca29cb88 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xddbae258 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x378d3bf8 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x5528ad99 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x04ec3706 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x199c08e1 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1a2c3001 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2570c8b2 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2d7a39b3 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4bed0483 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5a6238ae em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6022e4d5 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x615d4fc8 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x64f7af2b em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x685e5d2d em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6927a5a8 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x709ed898 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9460d484 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9ccc4464 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe5914df6 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf8e5879a em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf977d640 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x247ffce9 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6660fd78 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xa858a50f tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf0f878cd 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 0x373b2af6 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x468ede6a 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 0xb74f1f04 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xbff6ecfb v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xd7d4f3a5 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe9887162 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 0x0b7fc592 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x91d523ab v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x064013cf v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c7ff068 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x14323d26 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1fa4bc95 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2172e578 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x29cd0e05 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a427893 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2e32a600 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x500c34ed v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5067d4d3 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x54c0672d v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x649a0f3e v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ab45637 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x761ad6a9 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x84afd71b v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa54db0e6 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbb01a898 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5e08e03 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 0xc9003996 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xced596a9 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd47e1867 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4a9c623 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5dd5b37 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe070d0bc v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xef211cf7 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1b1f160 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8751bbb v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x03db4678 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x107310a3 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x12286df3 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x197d4076 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x27391868 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2a0e8c58 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x35c8b0a4 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x50c81fb6 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x659e68ee __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x65dd62d6 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6bdde61f videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7bf3c44b videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8d959aa5 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9ccbb3f2 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9ead815c videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbd81729f videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc35b1fe6 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc95f5cd0 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcff67af4 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd1afaa5f videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2ba5e08 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf0b82f29 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf2746939 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf8546746 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x4b6cc216 videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x8497cec6 videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0xc7a0d7cb videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x28a41a13 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa2127851 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 0xb6188ec8 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xc6599479 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2c48a88b videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x71d9d7f4 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc9677a6e videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x01ad50f4 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x318befc9 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4511f506 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x67602049 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x694a157f vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7929d1af vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x947c6cc0 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x961d1eb4 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaba08622 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xac045a7d vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc23b92ff vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc9959824 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc9da0c55 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd14ba644 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe8e41964 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xef493454 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf449853a vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf4e5633e vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xc5909ee9 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 0xec142918 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x53d519e7 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 0xf04abff6 vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x46767051 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x05ba65ef _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2031e892 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x209874fb vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2d1e2444 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x30484a16 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x316c73f0 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x361a7484 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x387a179c vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x43ed58e2 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x47608edd vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4c4d8a6c vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4debe133 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x623aac76 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x671c83b7 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7208a443 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x74b30a1c vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7c3d3a6c vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8b42d366 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x91c21753 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x95ca7ed4 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9cd51a22 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaef0fb35 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb34b91ad vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xba7b9406 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc609802c vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd080957c vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdc89de76 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe1e734d4 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe21c5523 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe4a86085 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf0e1cf8e vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfabab058 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x2df367ab vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0309a0f1 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x06b9b731 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0ab2b4e9 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x145d3fe7 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x221db6d2 v4l2_device_register_subdev +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 0x3f0e21f2 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4043d147 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x413e0cf6 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50377f87 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58bab9cc v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5abc182c v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x637932c8 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69f1fae0 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77cdd795 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x85508918 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c22a100 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c22fac0 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c5379cb v4l2_event_unsubscribe_all +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 0xa597dcf5 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb03a132c v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb57b3af3 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xca0c026a v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb4d5bb0 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcda433bd v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd4762d0b v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd6ed94f4 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xda1b5567 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc960ca9 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x19b07266 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x1f2b5c50 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4cf1617c pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x061e61e9 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0807ef03 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x179cc99c da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1a76e533 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1cca2c24 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2c7dbd65 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8b8816f7 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x132416c3 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x26130782 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x400a07ac intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x4a44b046 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x50e37f75 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x08fb29d5 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x20e29dbe kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x36be5f2f kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3e275a2e kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x480032dd kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6a9fecc1 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd2a6b4ae kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xeba1d686 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x173bd1a7 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x77ad3140 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xbd663ec4 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x04d5293e lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x07a182d0 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7a19995d lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa3aa7f53 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa682d788 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc186759c lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf1601767 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x08dc8ec0 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x251cf0f0 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb4a22a37 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5b17431c mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7bb7ffdd mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x88c43ef3 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8fb76fbe mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9acbcb9b mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc87e75d3 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x03113073 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0cebd601 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1b8f0509 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x382c702f pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4c70a593 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8928ca11 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8fd55276 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa0252e0b pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb738baa0 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xc69ed815 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xeefe6d4f pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1d3d3d74 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xe31625e3 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x01ac15f0 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x122ee650 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x2263d4a7 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfd7b960a pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xfe4243a7 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 0x10b90a22 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x18c3bfa6 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1b8235fc rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1cab2000 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1d002403 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2a2002b1 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3ac917e7 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4d574e19 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5b290c8f rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x67565cb4 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x743d272b rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x81cc8924 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8de4ff1f rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa34693f0 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa51cf9c2 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xace4b6e6 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb64fe98d rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd375d597 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd93f3108 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe57a5765 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe6c84b21 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xea71d131 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xef6de858 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf4540752 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x22b7905e rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3df47582 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5017dbe8 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x593c9aeb rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5a9034de rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x889e419c rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8cccc2a3 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x96f36596 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9c53e947 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa4bf9522 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe742e690 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xeade40a0 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfd385654 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0007246b si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f6dd346 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x182cb508 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x20b2d3d4 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41356589 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x48d4cae6 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a68c3d7 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4ceffa56 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4fb1a677 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x56648e0f si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59f3cdd5 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5b387206 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f40c15a si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x70335c49 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x84a37874 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x861e795f si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x87c8648e si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x882ff0bb si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8dc6d775 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9c3a4cce si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb4fae8a1 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd045710 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca23193f si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd256224 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcd7bea78 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd2ce9a2f si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd481529c si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe0d8ad9d si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe471df7c si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe5c24b5e si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2e257d7 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf894df09 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe5b4310 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xff6be992 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2438a940 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x2581c6b5 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x549492af sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc43d950d sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd2fc4aef sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x10a686a9 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x68d3b44d am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbe678228 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbffdccf8 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x4b92aa88 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x54c10ed0 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xc5695d10 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xf49a7cd4 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x8bd873da ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x27f9bee6 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xb5294541 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd618d3f1 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xefa9e72f bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x816919be cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x9816b6d9 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x986a9c88 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xaf2c7ab3 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 0x186ef162 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x275b2c46 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x37785e8c enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4a47e6ce enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x59c79d8b enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9c57a039 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xed972438 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfb1b4564 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x2aca7830 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x7b0468d4 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa50e51e8 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xba4e6f9b lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc7b4c3c1 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd0b0dc31 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xef06be4d lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfc66074e lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x17126a3f mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x33151530 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x40babfb4 mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x428049f3 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x44122ae5 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x46e361d3 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4f5fd3b0 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x54f52b8d mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5f0eebcb mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6263856c mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x6948ea4d mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x69a230fe mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x74047918 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x775f07d1 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8d454dd2 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8f154c11 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9295ff0c mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xad8d4f12 mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb3479d5a __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb56ea194 mei_cldev_register_event_cb +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xd7e5c78b mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdbee598b mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xeb231335 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf2c826ca mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf3b417fa mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xf923708c 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 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 0x166a2bb4 vmci_qpair_enquev +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 0xa657a3b1 vmci_qpair_peekv +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/misc/vmw_vmci/vmw_vmci 0xf405818c vmci_qpair_dequev +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x09ddb294 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1ac7fcc9 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x333ff305 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x56198228 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5a316e66 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5fa44a3c sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6810864a sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a65747e sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x786a0d4f sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7e12cb7b sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaf1fda55 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb3e6c403 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb63c9eea sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xef22641e sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0bd04dd4 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x32392dd3 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4b15c362 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x4f6f9cc0 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5de37440 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6bc43a4e sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa26bdf17 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xbbd8dea5 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe0f80354 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0f15ba4c cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x303c9fa4 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xcd22ba32 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x451a612c cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xb6e3aeaa cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc8b1e57a cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xbe6f6bd7 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x17246d90 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x39f2d0f4 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xc94b2956 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00e049fc get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x049ae900 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04be6dd1 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07d6bd1b mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1029087b mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18506988 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x19088f06 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1d29c5e5 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f923e3d mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x257e3764 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2d1951bb mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2fc8ace0 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x31231053 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c9b51fd mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d38244d mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4ffe6e7d mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a6ffa11 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b253c42 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b92eb1c mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x616a262e mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x67db8aed unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x69350ba0 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ad14ef3 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8220bd4c mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x822ed5cb mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8437cd03 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x892a7370 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97121042 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97c804ec mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa272dc4a mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbad71b67 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbcea4bbd mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5d0343b register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd2a969d5 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd349408c mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7f62a68 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe591f101 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb4e7e57 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xed9e1336 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf060a4c1 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1984ffa mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3285283 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x427ccef3 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x4536aa62 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x89618ebd add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xa08a8594 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xfcef4296 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x52a28fb7 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x617fdaa0 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x49e33187 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x0a43f0b4 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xf16aba93 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x9a7209e7 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00ec8d2e ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1ddd13fd ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x252605b9 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2a74e94d ubi_open_volume +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 0x4333489d ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x518de751 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5f07ad1e ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x644d40d8 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x66d883b5 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x834cd8ca ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa6c9317b ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xb48322c8 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc1998529 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xef8f7b3b ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x5888cfaf arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xaf002d91 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0187261e c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3bb4ccf3 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x56c05cbf unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7f95ab83 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa83edc0f free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb5e826bb c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x07f7e9fb alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x1b867799 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x386d3072 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3ab15fc0 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3be18774 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x53a38cab can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x65b5d99a alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x663067ee alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x74a077d0 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa99dbd59 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xade8e342 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbd022359 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc6e52906 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc9c4a220 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe135311b safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe34f9049 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf73fe61a devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfe781fdb can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x167d0409 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x3edae2ec free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5ecb9878 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x94c60586 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x283c4689 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6439c59e register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xaf25f337 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc5459b74 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0087516c mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00bed3d0 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x018879e0 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0bcf411b mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c54299a mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0de6e92e mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11e26d9a mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14af012c mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15c35285 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1cf8b15a mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ebf2cb6 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21d806a6 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26124402 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26b322ec mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27b1e32f mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29198aad mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b1cb208 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ba46c3c mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dcc9db9 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2f8a9d80 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3240a2b6 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33a6b10a mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34ebfddc mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x360c61ae mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x362865f7 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x369deb14 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3789b5c3 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a37761a mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ab3fd93 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3af25d66 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4032aeb0 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x490d5356 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49c6d80e mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50403044 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55765c8b mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57a7e54e mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57cf7918 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5848c77c mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a297d75 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c0e3218 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e7abe33 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f92c147 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5faf27c5 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x661ca926 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6894f992 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69cebe37 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a05ecb3 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ad94597 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bc7be13 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ed02d27 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ef197a3 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7000e18f mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7117e8df mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71329700 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x762661d0 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b8d269a mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c726a66 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e1caa78 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e37a3d4 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x813b19a2 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x827cdc42 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x898cad60 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8adc9ce6 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c5dfab8 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fa10f69 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fc149a6 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9123d3fe mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9266c996 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95b23384 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9644b02b __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x983e3040 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9c539b09 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f8a69b8 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa3ae23b2 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4c704f4 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5fb4815 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6492133 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa96acae7 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabf939ef mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac6cc275 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb0fa5dda mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2f71c82 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5add31c mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9c8a3f2 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbad4729d __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbad95450 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc081ee2 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0fbb6df mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc183692c mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1d747b2 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc33a96da mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3f8b41c mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc52f6481 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5573250 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5faca89 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc73d7df0 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc98c5633 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb7d2fee mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd167d954 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd343c8be mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd346ed18 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3da1fab mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd480d7a4 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd57c5d30 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd71ad12c mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd91052f1 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb55a57d mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf180c8c mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdf385bd6 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe281e3c0 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6220211 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe709da41 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe713f079 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe98fbac5 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedaf4562 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xede27de1 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf11d3c14 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf38fc303 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4847d3f mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8c81dcb mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc07ffa7 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc255f9e mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe095a8e mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff5ea439 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0322720e mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0850412b mlx5_query_port_proto_admin +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 0x10315eb2 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x18ee5fb4 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2017926f mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b30c987 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3381c27f mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3d88c1b3 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42b34173 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x508e085e mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b768670 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f643dbf mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x63090f04 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6780f93f mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70e2bc96 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7249408f mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74ff544c mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82cbd110 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x838f2695 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x840421f9 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85c58f47 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89becdd0 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a31f121 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8dbbd26a mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8febd6b0 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x927c2e30 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x947ec3cf mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x97103914 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cb1b12e mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa56bb711 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb83c6a65 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb905bd26 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc26ea202 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3a4ce47 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3c8f74d mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6e778e7 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd84d5324 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf064f42 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe14b094a mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec7b8d60 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec99bcba mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeca67a6d mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xecd96eef mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xeed824c1 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfe06f9fd mlx5_query_port_admin_status +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 0xfebc3162 devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x40d7d418 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x57360f46 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x90f003ff stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xf388b940 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x67aa45b7 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x67ae4b71 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x962238d8 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xcd7e0110 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0240a897 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1d338d41 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1f161ff4 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x298a84d8 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4424243d cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x59c3a1a8 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5c76d40d cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x71d44f7b cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x98c25ee4 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa66c0164 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb3b382d6 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd09fa61a cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe1de4efd cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf33aafdc cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf43af3db cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/geneve 0x32896124 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xa9601c3b geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x05482c8d macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xaca18473 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xb4dc2960 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe755b8c1 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x31cd1327 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x29ad8c77 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x32e52d31 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x39e3e96e bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x51fe3680 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5d3b74d5 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8ef8b612 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x96f0e9dc bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd791e24e bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xddd49b7e bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5c179f8 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6522e92d usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x83e3a8cd usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb8faedbe usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xfce8ee82 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2d58e5bf cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x31d75948 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x51bbc114 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6b17acda cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7cdb0590 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x86a4006f cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8712a2e1 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x98122059 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb3aba527 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4a465e59 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x5f2622a9 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x960fda91 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xbcad26fb rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd0c69120 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe668cb15 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05f5a8ee usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x09e74df6 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0ff9c6fb usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1095aad0 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x11124b5c usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1c2f080e usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1dc0d07b usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2c351f28 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2e14c325 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x39ed88ed usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4734c428 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4cc1740d usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4e193f93 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a146cec usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5fb4341a usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64274a94 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x745b2cf6 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7bc1aff0 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7ff6dc77 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8b894411 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9c45ce49 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f2ab68b usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbf40ec6a usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc4f726e9 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xca3e4f4f usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd03546d5 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xddac459a usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde513cd2 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe115472d usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe671babf usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe8a2f92d usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xeb45df1b usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x0107dd3d vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x85976460 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0ae56d3d i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0dd61661 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x15923a2f i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x37b60e86 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x40cb911b i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4b27b865 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x50574eb8 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5fc4a336 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x665472bb i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x75a304b6 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc7a77834 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcda78a7f i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xdf45a7c3 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe89535f1 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xeb32f8db i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf8ae84e3 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x15139b2d cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x50da19d2 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x581b6b79 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xe464d3c0 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x2338c3c6 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x0f074b8e il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x4380a0a3 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x449cb829 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa4cba473 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf23a41e8 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x05d8ed89 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0afc9096 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1141923d iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b825388 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x29d1356c iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x29fed599 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2c88f2a9 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x303f6bd1 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x352b4382 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x367b04ad __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x42b09c6e iwl_set_bits_mask_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 0x5c6460ed iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5ee5ab54 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6dcedb7b 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 0x7b887ff7 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9f0afe89 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa1623da7 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa3dcec66 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaad87209 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb44b9278 iwl_opmode_register +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 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xddcb6f08 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xde058364 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdf5c122b __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe957ca83 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xeea77075 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf63c5e94 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0b77bcdd lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0dba4486 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0dee5d9a lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x13298ba7 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x22511916 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x27da7fa3 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x37e8590a lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x3d3c949a lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x61b0f412 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x818cfcaf __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8963dd61 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdd9a0c4a lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xebf10e1c lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf31a7b00 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf3379c52 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xfe25c192 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1a2f3d7c lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2781c3c0 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3e02f754 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x43724831 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4883869c lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8c3e7b35 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x97da2fa1 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 0xe68f48c9 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x048cbdd0 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x12afde99 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x194349a4 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x20001be0 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2381efdf 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 0x4475b79e mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5a3756b3 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x83f61e57 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8db2b072 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8fa229d0 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x907dc13c mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9e9bce36 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa46f647a mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa4814864 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb0d185f4 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb2024513 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc6286108 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xce8554b9 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xda98df46 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x30d40bd0 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6ab1e67e p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x73ed7734 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa581e33e p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcc6511f6 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xce7ee35c p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xdda60a44 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf2777243 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf8960b94 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x81ef9e76 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x893afc3c rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x90d77a8e dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe5535b6c dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x09c809c7 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d3113f7 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1ff90362 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x567a083d rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x56f29ade rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6c15a538 rtl8723_phy_path_a_standby +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 0x703dbb70 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7ea10028 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9501b038 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9d3c5980 rtl8723_phy_save_mac_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 0xb9289302 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb990ea47 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9e47512 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc435b83b rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc51c4b08 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc9c2c7d1 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcc4612ef rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xccf0a842 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd31fbf8b rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdf95217f rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe0cfaf26 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe105ec0a rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe240feac rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe475722f rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7d86433 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf81cb3cc rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xff156526 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a9106c7 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a95864b rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x241dedc1 rtl_tid_to_ac +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x24eef16f rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2921a4d4 rtl_btc_status_false +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2cdd03d2 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2eeb2fbb rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3088590e rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f76c4ee rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x590a7919 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5a15b5df rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x82051860 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x859074b1 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8dcab746 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x93c3fb9f rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fb85699 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa8fee7d5 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xafcdc668 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb17a2d84 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb8d4a985 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5941198 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5f2d038 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x018a9dda rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x2a297e2e rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7236236f rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa586a245 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x065d24bc rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x09f88426 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1372bc20 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x14f694ee rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x17e7b653 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x181d1677 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1d48a9cc rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x283ad33a rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2ccb8c7c rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x334bbd95 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x35af7255 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3abf5a28 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3ebcf6f9 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c2be121 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x57ba2a0b rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x62adef76 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x65843581 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6810770a rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x735b6870 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x76de0106 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7a284141 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x83f5a48e rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x84ab71d0 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8cac4886 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9de4b4ee rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb0d948d7 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb49b30de rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbb48552d rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcadd32c5 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd4fecfe6 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd9cb5bf6 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe296593e rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe34ce75a rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf364c549 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf4383f03 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf8c7dbb1 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfb9898c9 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfe91ae4b rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x02512837 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x03bf4bd3 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1ee68542 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4511adb1 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4ebe3652 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x591a39a0 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6d0fe6b3 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6fbf78d3 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa79b39c8 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb6552bd6 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc2358d03 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc9172845 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc935cca8 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x029b76c1 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x06df4460 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x11651097 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x13292322 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x182bad72 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x225bcee2 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2631a291 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x295e1418 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x33826392 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38b09544 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3a26286f rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3f77544d rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5275fa45 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x531424c3 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x55f50c74 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e6f9f16 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x63ee911e rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a72c862 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6c36337d rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x71a92fb5 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x796b5b7c rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7c81aa68 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8122cf5d rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x87811887 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x891ef8fd rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x895be47e rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x899bbfea rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8b657914 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9b51e8c7 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa994cf6e rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa16baf8 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaa5e9966 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb0059b7e rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb5ca9b40 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb93f1031 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb3cc3e6 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcb2c7c1b rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd3cae742 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd60c450c rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xde1417c0 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe54591bd rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe6455686 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe94f7d70 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0b48ab5 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf40f86e7 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf9884c52 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4aa20caa rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x9d55d031 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe72380df rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe76c86ae rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe7c151da rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x3851ef65 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x89619e15 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x9136a713 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe8c11f57 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0364a112 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0bf06307 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x11439622 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1456a4df rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x187a5e23 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2e66efea rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3998c89e rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5cc02baf rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6462d162 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x66290346 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7aca93ba rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9c81441d rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9d3fa749 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa2d9f642 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb6941f2d rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc10b619c rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x39a7be84 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x64f7b007 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x97bca5bb wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03cf2c88 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x064e9acc wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x10d920f1 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1a5962c9 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2782664b wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29054fb3 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2915431e wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2aed33cf wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32df41e1 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x355fba16 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e4dcdf1 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5112aa33 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 0x54676cb2 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x55b3efd2 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x570aba49 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6186abfc wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x61af55ab wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x71b49beb 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 0x78f2b32d wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x792e1d31 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7d14ffe4 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f8df982 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8e81e093 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x93be1d4a wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9543de67 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x98c752ac wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa29774f4 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5bd2cef wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5e9c2fa wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa9ca0539 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb33edaa9 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb9685690 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbd5aa5d6 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1bbaf43 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc499ad51 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xccd27f49 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcedc266e wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda415f96 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdcfb1b23 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdeeed8d7 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7926cda wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9c01c74 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea3aece2 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xee747eb8 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x07353ff1 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x186d609b nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x4c4a67de mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x1b3716f2 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x6f77a298 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xab803431 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd797081e nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x07a9e767 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2e7cd4a2 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x43afe8d1 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x59edea5f st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x86815dc4 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xad60f7da st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbefe62bc st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xfd1d3bc9 st_nci_discover_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 0x75258f3e ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x7a59f3cd 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 0xcc91c49c 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 0x19ae78f4 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x26c5ca1d nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3be52d13 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 0x6254b6f6 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 0xaea145d3 devm_nvmem_device_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 0xe5bc8e0f devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x8b7eb5fb intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x97d3e242 intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x9c5e08b8 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xed990956 intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x0e191b2a asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0x523076a0 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 0x382fb992 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5013b328 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xff2f8ebd pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x2056a76a 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 0x17f84716 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x744f35fb mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x98ba58a1 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0e8cf058 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x27ec24cb wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4697f485 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa22f0b88 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xd320e99b wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xfbfed142 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xdedf89c4 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x031f4dfd cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0337a8b6 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x05650f00 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c2fe293 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x10b73176 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2277a0c4 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x23ef1a59 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2671857f cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2d3c6cce cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x35f852cc cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37ac1b78 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ab268df cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3ba5dee5 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41b0f382 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4ba5e0d5 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x539d2fe6 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x55bbb77e cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5898e1c0 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x632b6751 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67a1494b cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68ba3766 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x69c289bb cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ac15f09 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6adf529d cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x82ae4916 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8581ae1f cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x97d55c53 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa051a0ea cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa288f6c3 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab88a90f cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2f0b45b cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb341d1b3 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb571fdd1 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb9c9b7fb cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6caadd5 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xccdb48ea cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xce8f1db6 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd111e278 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4358ea5 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdcad8076 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe1e1409f cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2bd05db cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xee2abd94 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf1beacc0 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf55cef5e cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfdefd4da cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x29ac5b0d fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2c863073 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x36386dba fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x46a3d7f0 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5521bfea fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x556cc2d3 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5f32d702 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x61f23322 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x6d512944 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x754e5ff8 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7db63172 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb4f56ab5 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd77e91f2 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe77d892a fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfc736299 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xffb808d5 fcoe_ctlr_device_add +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 0x00cee4c4 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0228214e iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x05e87800 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0af47c60 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0f6afb52 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x100ea5df iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x11e27f4d __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a07b6c8 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2584f761 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x26b0c047 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f0ef6c8 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x317ec77c iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34600d80 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x373a2ebd iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x414e1500 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x425d96e3 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4dc2ab28 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5284eb02 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5596dd9a iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x572de9de iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x633dd60e iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ae92ae4 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d23e1f8 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x75c0e98d iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x82587655 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x91cfd915 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x93bc231b iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9a35a5bb iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6cf0dec iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb51e00f0 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb940f32a iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc7078b3e iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9de3edd iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc9e5704a iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd36370e5 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd540f762 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd84e590d iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe74e15d0 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf13a513d iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf2566dcb iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf62678cd iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfe1158af iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x04b3a6c8 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x11fee03f iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x44022407 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5927960a iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x60996b81 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x64a5d51a iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8275c320 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9677c92c iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xabc72cc6 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xadb6133f iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc3e2554c iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcca4398e iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcee801be iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe8b9c079 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xef6bf7de iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf37742fd iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf5a5c73f iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10c834ba sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1db630aa sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1ef74b1f sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2382c523 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3a297ef2 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x47499c3e sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x73358d5c sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7ceb0739 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e068837 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8762eb8c sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x96b83b6b sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9aa4336f sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa32b6d41 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf2d3635 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xafe5fe79 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc2c4612e sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc94e5480 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd5417ae6 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdc844b8c sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2e4ff9e sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe563f04b sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1b4de4e sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf2d489cf sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfe214834 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08a51a10 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0c710129 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cd3e6e5 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2e90cca2 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x326843d4 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3318e10f iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38e0e406 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e2c3359 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x42f7d0fc iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x440a880c iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49875e0c iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4adacd47 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d0a9fd8 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e5a9f3f iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x510d5c56 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x525dcbee iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x67b049d9 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 0x6e209e17 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ebcd24c iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8082d2e0 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x80a9b39e iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8536a4fe iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8845d4dd iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95154385 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9a866814 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4249de6 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xace24f9c iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xadfa3a74 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb57f4053 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb5d10550 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8f81548 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba1da13f iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc579d34d iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8b59a5e iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd08d6cd8 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb786116 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf35c35c8 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf97e81fe iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9893b6e iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfcf2226e iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1b9ad3eb sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5c87df7a sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x833d6f3e sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8df77f94 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 0xd4e4ad74 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x21dc64e2 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa915d83a srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xaca2749d srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb0382e44 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xb2ae4a52 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xcac130b3 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1ea18687 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2de5f5cd ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x6e146df0 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xbbe84c46 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xbd19286c ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xdca1b809 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xe96875e9 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x32af6f18 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3496b4e1 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6b57a4f3 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa3db3135 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe4d2268d ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xea7effbb ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xfff5b312 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2ae4a241 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x5bd51c10 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc618469b spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xd6ce4248 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe1894ffe spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x363f79d3 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x447895d5 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6b1e355e dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xce0d5402 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0759e08d spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x2c54f863 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x37d5a0cc spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4489c152 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x478ea992 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5fc0bb7f __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x607a2ad2 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71f5351b spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7ceaa055 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7f0d2f87 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x81e1976b spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82ac3f4f spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x91f0b760 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbfae85ed spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc20ab3e3 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd471890a spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd5d46c82 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfec44ded spmi_register_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xfd635511 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x039fc1e9 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x05eb724e comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0c2fae71 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e231dc8 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x151562e9 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1b2654ab comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d0d8493 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x251de03f comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2b14098d comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x37f10a31 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x45f3f9ff comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x465d7004 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4715fd61 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c596578 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x504bdc6f comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x55f7d124 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x680b1ca2 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6be3caef comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f279ed2 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f9db1c2 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7407c10f comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x777d68f2 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7bfc4d20 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x83f93b38 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8796b233 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x924b2914 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x928a5981 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9f5df822 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb164cc0f comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb1c34ec0 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb6b87370 comedi_is_subdevice_running +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 0xc598482c comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd8ac174 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd1185fe1 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed3e14d2 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1df12d35 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x746585bb comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x812cf0e9 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xad7eb1b3 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xca19c028 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcccdf28c comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf712cc3c comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfab3de2a comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x0f8f26a2 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x20522d53 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x511fd230 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8f612f2e comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbfef1a44 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd2e6ee50 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfc6ab8f4 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x58195c20 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5d106f91 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6ab1c7e4 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xad2973da comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd1444247 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf64613ee comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x79f4a6cf addi_watchdog_reset +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x7c1aaa06 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x392ed71c amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xcab6eeb8 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x60ff23d6 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0251266a comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0d95fc6d comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0ef13ef3 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x109f44ec comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x27a23895 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2a8dc09d comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6e09bfce comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x88811810 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbbee69c9 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdb3b9f7a comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe1203b36 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe4b8e8a5 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf221945f comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x401c9366 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x48d9f39f subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xaf266fb5 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 0xde4c3a3a comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x316c906a das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2469b6d6 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2be53348 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x39c18ea4 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3aea31b1 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3d2330e6 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x43c06e31 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x474c7de7 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4dd4a213 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5e2db58d mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7e819ddd mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8d275a09 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x987e3a9b mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x99253ee0 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa17519cb mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xae558767 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xafc23039 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb149a4fb mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb64ab053 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe0316e7b mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe8d41bb1 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfde2badc mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x30412266 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x75fb94c2 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x526a44b9 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5b11bd10 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x70b680eb labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xe45d7d43 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xebcf016e labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x43d29bee ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x50383d53 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9d5e729f ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9f07fc88 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb73e697f ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbe53db44 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe9c2e73f ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xed06cb40 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0957b827 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6a6dc39e ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7cb4bb5d ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8e77b141 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb42cd919 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf4f9ba0e ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2b71623d comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4accb5db comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5f689c16 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x7a59e09b comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xa5dd0146 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc0648b39 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xf0c41247 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x303b2bf4 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x195114ab most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2c417b8e most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x40beba8c most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x775b96f7 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8300f8d7 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8600a308 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xb1fdafac most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd03b4bbf most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd310d955 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe76b9e38 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfb35a864 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xfeda7280 channel_has_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 0x32129cd7 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x35898c4d spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x414bbda1 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 0x4fbe9218 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x50eac405 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x77c28595 spk_synth_is_alive_restart +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 0x8edd2739 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa6e02e33 spk_var_store +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 0xbc30a8e6 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 0xe7cd4558 spk_serial_release +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xe7e810f8 spk_serial_in +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfe22d7f3 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x3fbdf7d0 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0xa1cc4218 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x481c725b intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x8f4a4682 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x92f6f4cb intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xdf7c241d intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6d381b29 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x796fc2df uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xf3053b01 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x13ac17f4 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x7a1590e2 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x2701198a ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xba643647 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1548c504 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x2100e010 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x450ef39a ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x796a7018 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa1c053c9 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xe8416072 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x39c63caa gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4e0807ef gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4f2b92b0 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x69b18e04 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8c4fbd8c gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9630d289 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9658d49e gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x985ac718 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa3960e0c gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa857bca9 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb2f48c11 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc3ff414c gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc72388a0 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xca16ca27 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xef19d148 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x33bfdca2 gserial_alloc_line +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x4d6db4b7 gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x6b90273e 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 0x062646e9 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x2c32c40d ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x59ea53d0 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0097d012 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 0x225c734a fsg_store_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 0x2afabd3e 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 0x300c8015 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 0x44e959dc 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 0x5747f606 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5cfab88e 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 0x7149df6e fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x79c84579 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 0x91a38da7 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 0x96137089 fsg_lun_open +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 0xb5ea21d8 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xbd1bd745 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xce28f781 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 0xf4efc0c8 fsg_ss_bulk_out_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xfe27c944 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x002fdd3e rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0572aebc rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1cddb468 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1f7388e7 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x29e96a34 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x5fceba3b rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f287820 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x859c3b12 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xabf6bcc6 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaf69521e rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc3869154 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc774295d rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xdc6812e2 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf0933f38 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfba08b17 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x06a1d878 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0a9d7610 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14a411e4 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x15604db8 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x159a7e11 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1cf99110 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x21663aa0 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2db199e0 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x32c64c60 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3571eacf usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36dcac61 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a45ce3f usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c90c519 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x740fb679 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81f84344 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x84e11f2b usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8edae8d1 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x923fb514 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x928e7ab1 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x937b1aa5 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9adcccfa usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb77be677 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbcf2a4cc usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc1324390 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc72ed69a usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd05ea971 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe0514d58 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe4f7cfe0 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed53dd90 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfddbe3b0 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x192181aa gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x20bdd302 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x2d9ae3e2 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8cb91a06 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9b94509c usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e25e771 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa04ce7dc usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xabaf8177 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcb1a6b01 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcdf4289b usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd3944ee8 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe41b3a9e usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf1ee94ed usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x16721069 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x45e1f6b2 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x2f92e02d usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3b0c000f ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x55ee666a usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8aa7a435 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa1de58a5 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdfdc05dc usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf2538cc6 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf39d5a85 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfce05741 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 0x5ca6e4d8 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-isp1301 0x7b3554c2 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x4d6021b3 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x17975a53 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2250be5e usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2a7fe19a usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3d932344 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5f22836a usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6225a3cb usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x68f0e7d0 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7aa3cfa3 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x808b7703 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8186af8f usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x82ef8caf usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x868ee5b8 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x92e28ec0 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa6244ed3 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xaf0399a5 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb17edc41 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc4f03d0e usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xce6901b0 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xce9a9ac3 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xced3abb2 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xde9a9d30 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x08eb03ec usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1011e651 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x22e3a5e5 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3ad7d9a3 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3df7a0e2 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3ebd9641 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x46308c3d usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5c7a361e usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5f071fe7 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7e95f702 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x844d0ff4 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x860634db usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8ebe731c usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9f6bc65e fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa7d67410 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa872b96e usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbc992052 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcad1ab60 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xda038ce8 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xda0e3fc8 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeeb44ca0 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf3eb7591 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf5ab12f7 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xff34c12f usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x22b1a03e usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x28dc2df6 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3f2bf096 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4f08ff52 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5673f3b0 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x69a22a20 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x773dc9db usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x83ecf2d9 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9695a164 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9c05ba53 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa6bcce97 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 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xea87384d usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0e1ceb80 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x350c23a3 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x4ce16256 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa5bf15c1 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb162e2d5 __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 0xf45e4f4c wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfb768491 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x083b2a4d wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x112d21dc wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x13fb7099 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x17c14ecb wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3bea8cd7 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x41db9dde wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x752a5db2 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x78ba086b wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8f896372 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x975120d9 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb77e1918 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc27dc8ba wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdcde8c8e wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfce439d2 __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 0x0525b2d6 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x85fcc947 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xe6ddba4d i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x038a33dd umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x044613eb umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x56e34d26 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x67a0a028 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x82a35ae4 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9934bc8b __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb6ea2dc4 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc48a962e umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x03f7ff6d uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0561c96b uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0a8ae826 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x113f8889 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1dc834f0 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x26cd475e uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3445eb9b uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3e96229c uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x40190161 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x45d4004d uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x46e6836b __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d013362 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55fda2c9 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6d46173b uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x72d79412 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x79b7dfd6 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7c0805ce uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8adbab42 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8ee2dcc6 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x96d9c4d5 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa23246c0 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb6909e13 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbb80094a uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc1d11085 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xce795c8f uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd05e2b99 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd0f78571 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd3464c7c uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdcf85b1a uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe5f6f240 uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe874198e uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeb9d8b20 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xef315ddf uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5607e08 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf58f8516 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf606337b uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xff62ab14 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xcfa73623 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2b32b94a vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +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 0xa7316794 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc2b0747b vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xd91cc987 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf379bed4 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf7322cee vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf8a64b2b vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x1ab6d8cc vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc3b4ea45 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c7f4f9d vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0efe2673 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1872f74b vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1bdaefb2 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x27288243 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2f768ec7 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3002dec6 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3b144de9 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3e6db6ee vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f5dd8c8 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f5282f0 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x503dc5ab vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x504d0cca vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60a5878c vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6333354e vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x64f2e929 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x733a18ef vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79b0d493 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a42f1e1 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7d118038 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8b402e93 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x93f0cf24 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b8b06fb vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa53a8d37 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa5d4c51d vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xaedd4904 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc083013e vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2a3933e vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfcf97cab 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 0x1d8e83a3 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x26cdf8a8 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6d9b5a32 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x713b81b3 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x90b6f7a9 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc07833eb ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xdcb29b40 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x13f9bb60 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5642b9e5 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5a5468fc auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7922920c auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8b388003 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa03f87a0 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb935d436 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc0db8a23 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xca3449bc auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xe4ef2aa1 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xd5faa0a0 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x43d0b096 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd876f3d7 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3c37ff45 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xb92dae2e 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 0xb75a5529 viafb_find_i2c_adapter +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 0x1c7cbe29 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5095f4af w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x59296bf0 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8bd4769a w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8f3d6fc5 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc9ab2162 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd97b9110 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdf6de07f w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf679c25a w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x7ee17f82 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1699acac dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x2ac90cf1 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 0xf269026f dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x412f36c7 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6d4d446c nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x72ded171 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9aa2cdb0 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa0c84c97 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb73ef2a8 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc7380239 nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01885899 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03153e3b nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x03233a3d nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08ca6538 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a58f4de get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0b9d197e nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f5d9dd8 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x107f1350 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1f3edd78 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x238d7e02 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23cfa69a nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2566cd4d nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27151fe4 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x272a9fb2 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27ac2f8d nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x28d1621b nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a645d61 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ebaa229 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2efd05c2 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2f688ccf nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3082ecb0 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3293b206 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32dbf7a8 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33976717 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33d9dfe0 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33f45954 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36679e28 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36ad61ea nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x382c11a1 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x396707b4 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b7b3023 nfs_init_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 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49e3b3ad nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a0e4778 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cc4714c nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d52f19a nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4d571ed2 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x512480dc nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53169bc2 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5584afee nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55ab7dd1 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x569653cd nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59d14c14 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bf42839 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bf8b874 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5dd9dd7a register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x60a26321 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63004dde nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64e70f0e nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66993f31 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67c5afdd nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x688851f8 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c8b093d nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71f7a5e8 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72689247 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x72c013e8 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7710868b nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7959fc8f nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7bf3f315 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ebced4d nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f30912d nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f8c2f1c nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87fdec8a nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88d24e76 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88e53cbf nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b132404 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bb2d50a nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bbc3173 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bc6deb3 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c9435f1 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x909db7ee nfs_post_op_update_inode_force_wcc +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 0x937800d0 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94302afd nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94e4ae43 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97152256 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x990277f3 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d2645d0 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0664a49 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa21c171c nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa26ae6e7 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3e0ecfe nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa504dda1 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa55a75e1 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa834b3e0 nfs_file_splice_read +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 0xac50e290 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3a61d4f nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f43e83 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb68def0b nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb68ec700 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb86c0e02 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8f9b2d9 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9ac35c9 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba257098 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb864168 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc32ce8d nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc48f4b2 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbffee10c nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc01b3fc9 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc371b13b nfs4_dentry_operations +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 0xc67845e2 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8b0a8c2 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc90288a0 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb1b3a8a nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc52f700 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccba9ef4 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd66e4893 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdc78e89b nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe02307c1 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe64d7ba5 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe85f7e48 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9653258 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe997c29f nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeafd7976 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed19746b nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xedb662cf nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeea21b8e nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0b43358 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf1174583 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf17e0c5b nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3018c5d nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf3bcbe5a nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7ebf840 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbe14d87 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfcb86510 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x69d2eb7a nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x01d4d956 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0332bd91 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04fcee8f pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x064e8463 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x074eca30 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f3cb553 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10c75b29 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18b71e12 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d64825b pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20e46dd8 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2694ed2e pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x283e559f pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36c18d97 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38735d15 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e33e343 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d6ecd24 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5694c787 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x60d58fc3 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x655161b0 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69c7d7e1 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f614723 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x70987d6a pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x71257e8c pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x788e9b38 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7891f9f5 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7d87deba pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84d43626 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x853149bd nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8830aa97 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b6a601e nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8eb2eadc nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9064fe0c pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b664d1f nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9caeceac nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e9401ca nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8d11f9d nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1510659 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1add842 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1d680c2 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3c7c6b2 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc45cbcfb nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4656fd9 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4ca688d nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7eb3d20 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc86cd187 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcaa85ab9 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcae0ba91 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcb2ce2a5 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0e62f5a nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe0f66101 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe33c0c4c pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8e9eef1 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe91dba76 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xee42d59c pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeef909f4 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0474818 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0f8a939 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf477869d nfs4_put_deviceid_node +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 0x237a42a7 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x42c39d1d locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xca66941e opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x692f340f nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6d554823 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 0x48fe9b29 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x4900035b o2hb_stop_all_regions +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x5a031e21 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x6112ec5f o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x63b865cc o2nm_node_put +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 0xc078cd9d o2hb_setup_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 0xe7da5979 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfc0523ce o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0eb75952 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1638558d dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5f50e2d8 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x9a715340 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xbf02939d 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 0xf3a695c1 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 0x5da4af03 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x99156399 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 0xaa97af43 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 0x0c0f2e84 _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 0x5e9df945 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 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 0xe906bddb _torture_stop_kthread +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 0x2ccae821 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc0b9ef85 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 0x934d66cc lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xacbb92bc lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x1bcb53a2 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x62fe5a40 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x71598a0a garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xace9bb80 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xc213fdfc garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xd49cdfde garp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x157d5f1b mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x756b44a6 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x97e1bdab mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x9c973653 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xde397f2f mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xe0f49411 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xd073cfc7 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xe4aa818d stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x4f9b88e3 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0xc3936b20 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 0xcccc5922 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x169da07d l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x1a610727 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3bdb49cb l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x50ca60e0 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x9403e7ea l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc9956c93 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xda00dafd l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdf2d8bf7 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x10c8f9fc br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x51cd1b64 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6b2b3cf9 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x87c42d7e nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x9dca3dea br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa5e33dd0 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb5e1a880 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1f7facb br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x2a00b399 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x79d5471e nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x004b8f14 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x12964a68 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 0x23ee373a dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x30134fca dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x43e34e1c dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x46ea376f inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4a49f6b2 dccp_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 0x52648d68 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x58810888 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5eb0993c dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6db21da5 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x768f7a8d dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7926f827 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7bc98f69 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x861d095b dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8bf9f1e2 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8cbb9e5f dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f12383e dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaae32e8c dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe5d6010 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbf620499 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc23d9cd6 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2ea147b dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc837f43d dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd87c2f79 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe0fa4ab0 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5ba323c dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe623b4d6 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe9cfcf49 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xef134bbf dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf4f7f656 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1c4237fb dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x26ee8bbb dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x64555ba5 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa4386046 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd037ae71 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd219b0f0 dccp_v4_connect +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x48b65314 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa872f17e ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc470031c ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xeed5dfca ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ipv4/gre 0x2ad3b77a gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xfc52b038 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x89addfee inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x972a4bd7 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x9e70a029 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xa152d3ac inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd04092c2 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xda437295 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x163f6c9c gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x18d90beb ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1d0f4ec3 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2325915c ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a111249 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4931e4e9 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5138055c ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x54d041d6 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5b35554a ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5f919d14 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x679cd057 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xae6e16d8 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb7d207ea ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc19d303b ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd3c3658e ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfff53b33 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x8027007c arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x68b7c09a 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 0xe7c35632 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x12146e0e nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x254970b6 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x71cbf5b6 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x853dffcf nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xcc94177d 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 0xf5291a2b 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 0x38a72193 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x436cee7e nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x4b0e7f86 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa517083b nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb873117c nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x97ba0659 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x5eb60c49 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6a6ffaa3 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7186dde0 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x81478e68 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd98ceda0 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x1f3a3274 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x28afcc65 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xcc6a8032 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd518fff1 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1a9502ee ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x45e27006 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x78fb78d6 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8c1898cc ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa37bf21f ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa7a84df9 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf58ac4c3 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x204f22ae udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xae430338 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x1343bf3d ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x13539b56 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 0xab09fa46 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x6a1074af nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x44f17761 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5330b66f nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x5f3d8acd nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb29816b8 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc7246008 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 0xb09f18dd nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x066695d0 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x0f38e407 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x260e6bce nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3dd18b6d nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9cc692f3 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x5455cd6e nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x01e08326 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0540130b l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x28fe5a65 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x32384d15 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x49c40767 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4feb9de5 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x517269ab __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x57e94212 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5cf28376 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x66734fc3 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9bfa3368 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbda82ef1 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc4f98508 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd3d1e059 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf5ef6570 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfc68ab76 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x98568341 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05403f59 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x271a94de ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x427d532e ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x48b65ecb ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4e79faad ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d1a687b ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ea67951 ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x95319d1d ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9b974abf ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb8c4c5b0 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbb2a38e0 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc46bfd09 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcf016114 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf4d5d585 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf97cc0f2 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9cb3503 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x56726364 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x938f9024 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa590ac63 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xead1e980 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x025c7b00 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0c985236 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0de88bf2 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2c9641e7 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x35772c72 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x43a552fc ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x457acfbd ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x49a6f272 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5696e2ab ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6f3fcd0b 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 0x7f2cb717 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x80bd1013 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 0x8345ea62 ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8a247c61 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x8f9ee6aa 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 0xb6b01dcf ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x49596bfa register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x893179e0 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa278086d ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf9356231 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0055cf9d nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x018cbc5b nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06cc2f7d nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0be38868 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c1e3d72 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0c5fec30 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d194684 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x111897a9 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x17fde61f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a49188b __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d439409 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25133322 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x275dbd43 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bb19227 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x30600f0a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3190b2d7 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33153ed0 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36a8b4c1 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38238d74 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3962d8e5 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39d5eaea nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x39e31792 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x420c7c9b nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x42118c8b __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4360f8c3 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x456fa60a __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47170c62 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x47a85195 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48b2f202 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48d807b6 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4befb442 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f74576a nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x588a3b7d nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5951810d nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x621571f7 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64149cad nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6439d616 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x66ddca18 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69db614a nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a18dc58 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6dc94199 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71569a41 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72597c43 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x832cd8f7 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8835e5ed __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b600339 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8bef2e7b __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f95677d nf_conntrack_helper_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 0x97a230e6 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d00abd4 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ee2978d nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa73769c8 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa7392b12 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab23d2a7 seq_print_acct +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 0xb4395bb9 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd4b1659 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1032cd1 __nf_ct_refresh_acct +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 0xc83aaa93 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8471f54 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca99029f nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xccc4ad69 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd59b97c1 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd627aab2 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd62b458a nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd85dbf56 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc240218 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe19fd7ae nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3db8d37 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6518397 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe6c72647 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8d64d8e nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xecb1d1fc __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1cb9b38 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2f42cf4 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf34fc73e nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf62fdf58 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa3030f1 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfc420604 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe74c2ce nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x0f4c8f70 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xb7b807b9 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x5aceed31 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0399bd5b nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1b3efad4 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x969b9ef1 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa6afe475 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xaf17db9b set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb5f518e2 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc480b39e get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xccb26808 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdaf45f9a set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xed47d7d3 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x2895c3d9 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2868c007 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3c6eb706 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x8da40020 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xab7a6c67 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x3d293057 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xc665873e nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x16bf1b04 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x229480e7 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x347717e8 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x3d1bbdff ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x7712c9d6 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdc1a11d3 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf4b66986 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x646e280c nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xb1d4582e nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1236f811 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3014363a nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x30e16391 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3c21f887 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 0x1712d5cd nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2bbfa898 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2f0430ab nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x34db010d nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa99a82d8 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xac2b086e nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xdff9b4e1 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe173b8fd nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xe79764b8 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x171556c0 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xff24bce5 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 0xb42e336a synproxy_options_size +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdf89cfdc synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xfd263c71 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x025c2ff4 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x084be3c8 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0a5662c5 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2b55e792 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4af594d6 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x4e9fc3ca nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x519162e9 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x57976e30 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5800a9e2 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x602b97ec nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x737b662f nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7ed40229 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa2e128c2 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa6cf0eec 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 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe0cc6257 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe587242a nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfddb9e29 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x027bd36f nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2355dcc6 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x9ec0df11 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xaa62cf4a nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc3aec1c4 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc89dcea3 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf8a2d8c3 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7693ed7e nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xe1f75b3f nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xf24f04b7 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xd610c4b2 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x1cb9b2ff nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x441a3278 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe8a86796 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x0f619258 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x396d6048 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x51efb15c nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x58391e43 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x6aa397f9 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xbcefb6f4 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x1dcc123e nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x4520ddce nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x78f62cf3 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x048c865f 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 0xde271c0a nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xe8cdab4e nft_reject_icmpv6_code +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x23462eb1 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2e2aa8b8 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x34de6f1e xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5dbbabf0 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63a1d870 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6bd233fa xt_find_table_lock +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 0x9ea27900 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa392e3b9 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xba755fc8 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc63270cd xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd9e67ba xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xce5db504 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe1390d87 xt_request_find_target +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 0x4b0af903 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x89a907e7 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xe2cc3599 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x21f7e7a0 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6394de98 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x6d0ada4c nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x049efa8b __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x42b261b2 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4e1a39b2 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x51f633a5 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x631dd6cf ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7b7e32c2 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7eadaa32 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb8f86fa3 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf44221c4 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x021af840 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x0ed60427 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x155fbacc rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x2363cc8b rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x23ea25d0 rds_conn_connect_if_down +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 0x390badd3 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x431a93f8 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x50703b5a rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x53ce994b rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x65fb1820 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x6a153346 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6ce86c21 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x6fc2aef9 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x8164683c rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x837aae5b rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8b2d6105 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x8ea8b64f rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xa5c32605 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xac482991 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xcf7e6180 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xd3bbff17 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe294def8 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xf15a326a rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x5b04a4f6 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xefe8d442 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 0x8d1a827e svcauth_gss_register_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x9fc7b99e gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xb357f510 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 0xfd2d6a19 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0014d2ab xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x005b742d rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x00f4bf66 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x014160eb rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x037b0142 rpc_proc_unregister +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 0x06b46e85 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06bc0eb8 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07914bca xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x084d8b3d xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d8cb76f xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e41bf3c rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e951921 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10aa205b rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12a2d01f svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12ff244c xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x134cf0de rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x173db903 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17a2f4d7 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b024373 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d46b1f6 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e689b49 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a8b9b cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2037d449 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20506639 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21a62ab2 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x232d013b svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2362b5c7 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25eb9dcb rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2742d860 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28386a26 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28cd94fa rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aaf51b4 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2cedd40c rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d727b17 xdr_write_pages +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 0x32ce3fcf csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32de2a86 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32e394c1 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33292787 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33bbed05 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3419240d xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x357b4a77 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x358b0cd7 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x379d59f1 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ad2c3be xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d2da80c rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d3b5044 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d426e43 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4091673a svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x472c061f rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47490796 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4827da7d svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4936b199 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49f0c339 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cde331b xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fda778c svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x505a45de xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5145af7a xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59373167 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b46be91 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d47c377 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e2d4b2f cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e8906fb rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ff178bf rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60982839 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6189989c cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62112207 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62506891 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62aeb08e xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x634d5e0e sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x644f5290 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x664a6419 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x669f9980 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66e0732b xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x672d38de rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x672f19a1 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x693b6ed1 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x69af47b4 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b5a0120 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b829e74 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f09f75c rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f1ef11d svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f877507 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7165945c auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x728a255e xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72b0eaef svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x737fe8c2 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74d9df8e xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75a2e231 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76f890f3 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7725cae8 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78fcd522 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79d8c7be svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a9395f6 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c02e849 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d37171e rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f1bd17b svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x815d0023 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x835fcdd4 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8374e609 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8449be95 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x852ebcef svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b42f06 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x883e230d xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8843533e rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88d7192b svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89504fe4 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c546aa1 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ee7c7c8 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fa7dfd8 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fb2ad7c _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x900e207a rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91678e6d svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x92048266 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9393adca xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94861b58 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98136180 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98793657 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9abeeb72 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b17cf7e rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b189741 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b5ea350 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9de325df rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1f5afc7 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2743f87 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa625f863 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6937aff rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa172b2b cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacaa674b cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacccf274 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacf005dc rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad56383e rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad58430f svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae18e5c1 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae55acc9 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc99986 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0325dc8 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb1b8a735 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3cd35f8 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb599090f svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb68fc2de rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb7714446 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb803c7d6 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb81ef89f rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb918208d __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9fe576e auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba4a8d07 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbfaeb24 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc4d6936 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd2cec44 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd8aff7f xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc068300b xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0df50f4 rpc_shutdown_client +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 0xc55691fa rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5a59068 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc5f210f6 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc672ab82 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7d4d84b svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8950875 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8defc45 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e318d3 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc919b3b9 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xccf66d50 rpc_sleep_on_priority +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 0xd1c0896a sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd64a8521 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd82a0f2f xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd89a96b5 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda590f25 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdca0e764 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcc9434d xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xddcf0c11 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde5f79cb rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf84f870 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4945e12 rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe65ba336 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6cf33f0 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7d4bc9f rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe810f4c2 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8562c5a rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebb77f99 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec4ca208 rpc_clnt_swap_deactivate +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 0xeed5dafd svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefb60de5 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0432e88 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0502bf1 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1456b1c rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1cd3236 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5afd07c svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf68903ed rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6ae03b0 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c35344 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf984f75a svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xff64a66d rpc_destroy_pipe_data +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 0x2ca216fa __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2d0cbde1 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x323a9b5c vsock_find_bound_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 0x7d8e15fb vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x942ab1fe vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x94328c40 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x94f06738 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9d24f837 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb9db4155 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd0a1dd99 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xdd2c1dba vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe6b4cdaf vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf505f2ea __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0d1e1366 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0d536c2a wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2e81bf88 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x47d837cf wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5168755c wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8caf13a4 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xadb6934e wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb05e0335 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb3e2e5db wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb9a3c947 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xca550971 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xddfe6dca wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe93bfe2b wimax_dev_init +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x01adf916 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1781ae6f cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x422f9533 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5be70804 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5d909f87 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6bad5b5a cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x709b06ed cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7858b1c3 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x880a090f cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8ab6b352 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb53bd6d2 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd6a3322a cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xfaa0c32a 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 0x8b5a811f ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbdd8a875 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd27aabc6 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xe409fd80 ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x736393bd snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x6f7e7983 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xf7239be7 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x3205f7a8 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x44230ec4 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x46beb0bf snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xaca14357 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xae1afe53 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xb09abb93 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xef86d487 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x06c76d66 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x6b70e63f snd_compress_deregister +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x8ea53d09 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 0x1a4c5abd snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x36446bb0 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x393bb38a snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6d91ca44 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x88843af1 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9d6f50f8 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 0xc6fd67ae snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd6b3b23b snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xec8db2f7 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x14c2a563 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2c86e87f snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x309ae438 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3fc7e117 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4024bc23 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x424df425 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x587c4d0b snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x589f153f snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x760c58dc snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xbca1ad69 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xec42e9b8 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x18031b91 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x48c906c3 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x7664e1d8 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb0716770 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xb8177b2b amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xd78ee852 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xdcf87c31 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x090bf291 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x0b33fed1 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1648e584 snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x16899d61 snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x188f33f6 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1fb8fe5b snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x290d9825 snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2fe4d890 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x31c70f65 snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x371aeddd snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x39d0680d snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x497e1660 snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x4f1a9e7e snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x64b20974 snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x685b917b snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6c30617f snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x72a526c8 snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x73fb6389 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x939fd191 snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x9eaa7929 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa26ecf16 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa35b1387 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xab6087bc snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xc7a27695 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd2c13998 snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd57fcb9b snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe6e4dc45 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xec243113 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf2df8e94 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xf3a65019 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfb8ab82f snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfe5dde8c snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x05c4a081 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07e1e79d snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bb73977 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0cd0bbc5 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0df4472c _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13b1594d snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13bcff8a snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x13eaac50 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x190a225a snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19e3e40a snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1aaff076 snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1edb6e80 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ffde274 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2afc3534 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38cb140d snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39df12e7 snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b326ecd snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d195e61 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x428f6bdc snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x45eda220 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e5d8c83 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x521f54b4 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x54bb0f7d snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x570fbbc2 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5873c756 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5c17f7e9 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e91a8a9 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f25d00a snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x63875356 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6470f82e snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6fab63f1 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7701c092 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7aaddc38 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b4f9bba snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c696253 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d7dd3e4 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80bde205 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x865d06f5 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a775759 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x96233649 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e055309 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9ea053dd snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f4a154d snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f7fa911 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa2d20cf8 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa75e8707 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9373b4c snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa97b25bd snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb24449b3 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2d96932 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2f3dc81 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb31fefcf snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb34bcfbc snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4ce312f snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb58feda7 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7941f77 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb85f4a84 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba941874 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbde319a4 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc13a6c9b snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc44ac385 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4b98ea5 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xccb0a511 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd02141d snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2cf55aa snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd622aee9 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd9daae87 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xde25f8a5 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf1998b2 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe0025c04 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe40b3701 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe6f04d04 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe7e8365c snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeaf1a679 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb7d89f0 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf1db8eff snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf3baa164 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0e18aa2d snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3ca0a2d6 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x42ae7332 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x565930d3 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xce2dbb1d snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe778d8e8 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01bbcde2 snd_hda_codec_load_dsp_trigger +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 0x0e0d9d7a snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x10234492 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11279b76 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11a49a6c snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18a9840d snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x194d6931 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bbc4d1a snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c795972 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fd53c76 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20cff8b1 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2714b5b7 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x277f34d3 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2aa6e19f snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2cbad1a2 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d950630 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d9f4595 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e43bfdf snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2f7e68a3 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36402869 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 0x39358a62 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x39a4fa41 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b69c03b azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3def366b snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f614142 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4151a6d9 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41a54774 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4483f384 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x462b991b snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x496eff27 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x498bbc50 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b0d372d azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bb2c6e1 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bb8516a __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bf595f7 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c2721c2 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50e276d8 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x525e9209 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x537a377a snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5601b8ce snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x572ce2bb hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x574c5ae4 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x580d43a0 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a424d20 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5a5224c4 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b843714 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62660e3d snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64a9639d snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67ea6827 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a41ef95 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bb0b4b3 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ef51578 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x728b1fad snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7574c682 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76556c12 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x76e37c7b snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78d83a9f snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a723f21 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bed8308 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c53e174 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d0697fa azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d916c27 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7dad1ba8 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e859173 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f3e1ff2 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f466ab6 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f6d87f4 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f7c4dc4 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x835f0972 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b7f93a2 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c40ae89 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8c8be8e6 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fbc67a7 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x971e8122 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ad864d7 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c0b7866 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dc9d08b snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9e7fa090 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0c26e43 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa1f4fce8 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3731ae6 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa54c0d8a snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa5f0f283 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9489400 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad185039 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf85c3d1 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3d9c815 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4ab0f59 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb89d96b2 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9a3cf72 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc1c33e8 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc9d2226 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcf1435f snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdd018ba azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe7f0813 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc12dafa0 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc44d3d1f snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc707fb2d snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc76cdd7d snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbbbcad7 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcbfcd18a hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd2b182b snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce46a06f snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd0ce7288 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1f3498f snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd44de5a1 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5d8f5a4 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6ab9f6c snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9117ddb snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9680062 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddbd7512 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde8941b5 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe043e1be snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0b30644 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 0xe17c1ccf snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe404b517 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5729e37 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe913c8c6 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe915896f azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed7e774e __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf09faadf snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1e9715e snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf71acaf7 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc4ac81c snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x110f4ab6 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1314781e snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1a4f4de7 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2e78f8fe snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x315d786a snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3af3a0f6 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3cad1062 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x40b1a8c0 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x40d0d9f2 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x62f4b1aa snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x64690c11 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 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x89366ba2 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9302ce4f snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb3dcfd54 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb78e574a snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb9aafb0a snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc86a3a14 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd25783b7 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd45a5ae1 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd8d9c9c2 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe2f01732 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x4bdf7800 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x69ff35a0 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 0xb4903532 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf5444593 cs42l51_regmap +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 0x908aa0c9 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xa14817b4 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xef8d5705 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x97bde275 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe3e4d3e6 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x816f6769 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x1fa966d9 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7323b9f9 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x9451dae5 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xc1364bd1 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 0x73b0b458 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xa071fdd3 rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x306b2c83 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x624fd27b rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x105b08e1 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x1f993489 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x34e0be10 rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x4c60de1b rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x36882fbc sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x74c1254f sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x9b1d6566 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc7ced41e sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xfb7c1cc9 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xba343db3 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0x9170585b sn95031_jack_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x541994fe ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x87bd092c ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x75f91101 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x9ae2b75a tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xe6d33d32 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x2348d495 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x339feac8 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x4f6a21c7 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x629ce7d3 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0xb22b9152 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xff6cfede wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x08f9ea63 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xbb28c548 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 0x586cc4d7 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0x9f17a7e0 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x34113b4b sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x41831e20 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x7b1542a2 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 0xd82342e9 sst_context_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xe2ee5099 sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x08eea0bb sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x1b4cb361 sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x5f2009a8 sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x75d30287 sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xf2c65141 sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x01f9f874 sst_fw_unload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x06c43ec3 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x099a7cc3 sst_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x09fc3d61 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x0bff3b2b sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x14221402 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x1478dd06 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x16fad296 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x187d95b9 sst_module_runtime_save +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 0x1d06478e sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x29775ab3 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x32335934 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x32b2697a sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3613820b sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x39fcc067 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3b03850b sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3d5286f2 sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3daa6d38 sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4102b343 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x481a6cf6 sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x49b09d68 sst_memcpy_toio_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 0x51f995d0 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x522fc2b0 sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x52f65c61 sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x53d07513 sst_dsp_shim_write_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x580cc965 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5d19b1f4 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5efc8085 sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5f55d66b sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6346b472 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x64ae3731 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x67ed788f sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x718f5b40 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x75b38fb4 sst_dsp_ipc_msg_rx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x75d8a3e6 sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7aad454d sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x84bda6f1 sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8579d354 sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x876650f5 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8a255c4d sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x8e0c5eac sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x91e3a54d sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x91f7b8a3 sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x94fb7762 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x94fbd606 sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x953303a1 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa15b871d sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb456abe5 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb4e4f53c sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb7469df8 sst_dsp_inbox_read +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 0xbdbc0cc2 sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbed58af8 sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc074d263 sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd43140b9 sst_dsp_wake +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 0xdbd370f6 sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdc0c8361 sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xedc3a671 sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf7873dc1 sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf9e630ef sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfd3a177a sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x478599d6 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7b21513a sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xae53f18b sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc7b5c969 sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xc9d0ddae sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xd9938960 sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xdc264c2f sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xcb27eec0 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 0xfbbd27ab sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x062d143a skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x09d424ff skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x1745720d skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x35e82557 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x44f44e52 skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x57d77cc4 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x7fc896d2 skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x85455142 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x96c725cc skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xab3ffe9d skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xb126a676 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xd6576a22 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe25c997d skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe50059ea skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xf60e5da0 skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00a8e33b snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x012caae3 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x02cbb89b snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0392136c snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04713201 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0820aba3 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0824450e snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08675acc snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0c16fd5c devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fd5ea5e snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x103e3d52 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10ba07ad snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x161fd173 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x191d905a snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1955474d snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19e15be1 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a3350d3 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1d5b4ca3 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ea734a3 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ec7f237 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fa148a2 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2124cea4 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21582ca0 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21bbbdc2 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x220858ef snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x221a0751 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22d0cb69 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 0x256b1fd3 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27d0d54b snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29aa4b78 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cda8e65 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2f5fc825 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x303ea2e9 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3185e4d0 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31fc59af snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x346ec0cf snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3796a465 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x389fddb5 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39e59c05 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c09c8da dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3eb73a1d snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f20a0b9 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x425a3e8f snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42e41113 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43a35754 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x43a49c60 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4608bfae snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46586049 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47108bb3 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49bef454 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d5026d4 snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d6a6e09 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52507874 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52689aba snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x574ffcd6 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58360cbf snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5a25559f snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c00466a snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c6817dd snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d1cef5f snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d95d0dd snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6418de6d snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64b3237b dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65a2a2bb snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68a38062 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68ff7758 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6987e1d3 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b55dba6 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d98e4fe snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7021d3d6 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7622a2e6 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76d8c9d2 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7786bd78 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b1529f4 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f19d691 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x808eb968 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x811e1949 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82dd57a7 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x835c5fdc snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x837e8a88 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83d207c3 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b82dcc6 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9244cc11 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x939dc9da snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99847353 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x999ac4ef snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ecb642a snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa10753f4 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa237e88c snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4170f94 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa78de443 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa815a7b4 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8f4f18e snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9d9176d snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab11ca38 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab22bbd5 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac861fc7 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf8e3355 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb40de122 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5689bc8 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb59448ef snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7fbb518 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb88e4631 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb89abc39 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8f54670 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba365720 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbea58b20 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbeadfc72 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf9622ad snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfc97cef snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc108b300 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc53458d4 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc87fd781 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca4a1bd3 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca67cd0e snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc0494e2 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd008d92 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf22ca58 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0bfa5de snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0c274f5 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd11ca604 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd1f94697 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd33a91e7 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd4b7dbbf snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbd47fc4 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdc644f60 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd849421 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddcdf8d6 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde7ab0ae snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe040aadd snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe13af62c snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1b2440c snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe23ffbf9 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe355c82c devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe5ca0763 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7517b2d snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe93bad22 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeedc6633 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0b9660d snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf21236da snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf273f362 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3b40981 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf45b4f33 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf49934ba devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf699564f snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6b651b1 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf784bced snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7a4902f snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7cb6ade snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd232ed0 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfdefe742 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff2e4ab7 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffab627b snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffe3d830 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3aa16aab line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x45377ab5 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x516a5c7b line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x78c9b00c line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x88713432 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8b77e1a7 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 0xa8358760 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb3c20565 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbb9a17fe line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcd4457a8 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd5f595b9 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd7139445 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd81f7c85 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe0a9da2a line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xec25be1e line6_resume +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 0x02d01b00 rsi_hci_attach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0c2e5b26 rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x0eee8ba8 ven_rsi_91x_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1010e5ad 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 0x437447f4 rsi_hex_dump +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x45ca198c ven_rsi_dbg +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x7441add8 ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x85661004 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x86c77675 rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa56c8864 ven_rsi_read_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xaecf5107 rsi_send_rfmode_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xc484ae7c rsi_hci_recv_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xcb4f750b rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe9f0dd19 rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xebee2dcf ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xec130f35 rsi_config_wowlan +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xecfcf04c 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 0x0002498c wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x00053e19 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0037fe4f usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x005ac0ba inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x00635ae1 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0072c9d1 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x00820a44 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x00918351 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00ab3afe crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x00c2c530 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x00da8093 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01095555 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x013a72b4 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x015f7e85 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x0178e6fb vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x017ea4d4 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x018353a4 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x0187f7bb xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x01ab9f8b policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x01deb42d udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01ef51f5 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x01ff9c3c rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x0224217b devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x02280cb7 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x022f5b44 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0249720b dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x027719e2 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x028e170d inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x028f9ba0 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x02bf4866 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x02ca9dba da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x02d3700d gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x02e77a1b clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0324b6cf wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0325e576 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x032e2b6d pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03463466 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x035eb575 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x03838a01 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03b64cb3 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03ea9a2a adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x03ec7809 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x03ef8c0b pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04372e39 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x04543afc vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0470faf3 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x049d120d nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x04a6e5cf dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b9df42 usb_bus_list_lock +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 0x04def233 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04f5e709 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x0500bd4d class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x0508a535 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x0523700e irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x0532a7c6 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x054b5fc7 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0557efb1 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x0598b6ac fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x05992899 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x05c08484 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x05d57170 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x05d82e28 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x05fe29b2 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x060aebad pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0615b1da unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x06195132 gpiod_get_index_optional +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 0x064f65e4 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x067d72db pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x06910707 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x06a30144 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x06ab6904 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x06bee165 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06debe3d mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x06f07679 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x06f5cfc2 inet_csk_update_pmtu +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 0x0757e7dc usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0766db23 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x0777c366 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x07945e8d usb_ifnum_to_if +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 0x07c3c27a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x07c4fe77 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x07cc544c perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x07de440d kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x07f82864 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x08103817 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x081c9bf8 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x08284441 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x087a8073 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x08c16914 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x08e3b40c acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x08f10258 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x090ad411 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x090bdb63 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092b0751 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x096ec5b1 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x096ef802 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x096f1fee devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x097b3b34 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0983e624 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x09902af3 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x09cc28d8 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x09d2f304 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x09d82466 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09f0d728 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x0a20b2c0 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a6235d1 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x0a75a151 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a7962c4 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x0a8c6f5b rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x0a8d00c7 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0a916a9a list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x0ac19703 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x0acc60bd ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x0ae18af7 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0fcd8b xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x0b22beaf reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0b302587 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x0b4d18fc tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x0b51ed5e platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b7a2da1 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x0bd5c24f virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0bd673c6 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x0be54ec5 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfde01f tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c147cdc irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3002c9 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x0c4c335f pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x0c5b9d56 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c8aa7be led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x0ca1b06a input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x0ca2051e ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x0ca6ce48 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce12d34 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x0cfde72d attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d276306 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x0d353254 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4d36ba blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x0d685187 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x0d6bd039 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d9581a5 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0dec7590 pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x0df925f6 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0x0dfec66f skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0e007edf xen_evtchn_nr_channels +EXPORT_SYMBOL_GPL vmlinux 0x0e104136 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x0e11328a spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x0e1186ea xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x0e13cb4d apei_resources_release +EXPORT_SYMBOL_GPL vmlinux 0x0e15baae pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x0e32a0a0 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x0e6ffd99 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x0e75439c dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x0ea38f1c xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x0eaaaa52 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x0ed49b5a tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x0eefd76f wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0f0b5359 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0f1cb239 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f2edf0e xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f62bf86 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0f6b7907 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x0f6e4206 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x0f736941 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f89708b regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x0f8a6932 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x0f8f246c i2c_unlock_adapter +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 0x0ff472d7 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x100ffb6d perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10185826 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x103a1d76 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x103a5bd8 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x103b46f7 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x103bd6d4 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x104497a2 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x104e4a09 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x1063f262 md_run +EXPORT_SYMBOL_GPL vmlinux 0x1078f950 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x107fdc4d sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x10884cae inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x108adb00 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x1093ee45 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x10b20a20 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x10c7018d ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x10d19d42 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f0a659 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x113c7c75 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x113e19a9 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x113f7692 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x11428489 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x1152f77a xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1199bb74 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x11cc3931 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11dd7340 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x11de5519 acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x11e1e44e spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x11e467cf rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x11f03bd1 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122a7b09 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x12401ece ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x1274b2f9 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12ea3c14 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x12ed3e36 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x1306094b debugfs_create_regset32 +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 0x1323ed12 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x132517f6 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x134fa4c2 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x13517f92 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13563f4e spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136708ea md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x138375e4 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x138debb6 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x139321ed rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13ca4a63 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x13e5d2fe mmput +EXPORT_SYMBOL_GPL vmlinux 0x13e6c31a evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x1428a303 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x145511ce alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x145d0039 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x1466decb rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x14901d30 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x14b32531 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x14b7d696 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x14c457bd usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x14c834ed ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x14e406a1 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x14f3316d device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x14f7f19d split_page +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x1512592d component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x15209192 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x152280dc rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x1522f73b ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x153c2742 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x15419071 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x1543926b proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x15446edf led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x1550da3d dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x156dfdf1 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158da723 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x15957dd4 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x15b03140 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15b961ae bus_register +EXPORT_SYMBOL_GPL vmlinux 0x15bcef58 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x15bf3714 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x15d582f4 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x15dad4cd blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x15ea4251 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f19641 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x15fd483e clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16413041 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x164934f4 pgprot_writethrough +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165c4a79 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x1682f64b usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x16a82f71 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x16c15845 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x16eef003 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x17114d4f usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1714cc07 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x17281490 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x174bfdd4 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x17605341 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x17614bf3 apei_resources_sub +EXPORT_SYMBOL_GPL vmlinux 0x17666bf4 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17b48a02 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x17b7174a crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x17bc1897 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x17cee470 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x17e844f0 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x18202e14 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x182b79ca devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x18332da6 gpiod_direction_output_raw +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 0x1899471e efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x18aea738 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x18b0821b ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x18b0b691 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x18b6824f init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x18ce0351 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x18ef2557 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x190cff28 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x192c3021 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x1947c2f2 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x195a3787 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x195b1239 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x19685915 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x197c718a sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x198ca62a da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1995029e posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x199d52b8 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a371a2 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x19a42875 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0x19b77f84 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x19c2fe59 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x19cd91cb __put_net +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19fe13aa usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x1a05d81e blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1a133da1 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a1fe625 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1a4e30fc __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x1a6e22e7 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x1a813249 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x1a8ad46f usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1a9ec58c usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x1abc5b4b cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad05962 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x1adca99c ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x1b1bec28 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b2905d5 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x1b315002 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b6fb778 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x1b70d283 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x1b748341 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1b7c1f76 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b92b28c crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x1b982675 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bb90e67 blkcipher_walk_phys +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 0x1c185d0b usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1c50a600 pci_user_read_config_dword +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 0x1c7f2e93 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c995368 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1cd4e0ac cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1cffd3c0 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x1d0d9bd7 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x1d1535d1 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x1d1a7537 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x1d2178c4 ata_pci_sff_init_host +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 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 0x1d8cfce8 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x1da3dbc7 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x1dc19502 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x1ddd47e8 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1e07ac29 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x1e10d279 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x1e3ea950 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x1e44bb54 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x1e4c9294 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x1e578adc generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e76ed18 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ea03c0a pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x1eafdaa1 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecc7b67 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x1eea312e devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x1f4647dc acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8b82b2 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fb91502 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x1fe1b89f blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x1fe52b25 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1fe5b59a blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x202209d0 smp_ops +EXPORT_SYMBOL_GPL vmlinux 0x20424bd7 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x20448f04 xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x2076a053 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x207deddf ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20e11714 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x20ed1cd5 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x20f303b2 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x21041ef5 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x210552dc devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x210f6cf2 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x21175176 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2124954a kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x2126f3be regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x21439adb vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x217c0074 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x21a228ff sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a98673 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21da4136 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x223ae6e9 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x224c10ad crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x225864b9 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x22589c97 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x226d41dd pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x2275d7af sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2287b633 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x228bf4d1 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22a2d77f nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x22b8aca5 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x22c4b41a phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x22f644d4 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip +EXPORT_SYMBOL_GPL vmlinux 0x23090a5a of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x2371e7bf key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a51b4d smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x23b07009 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x23b1370c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x23c20a55 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x23db45db led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23f90f63 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x2404ad52 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0x240f1ebc pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x24118e5a sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x241b278b pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x2434bdea user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x247d955f iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2483b3aa wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x24a4704e pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x24a90800 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24cb036e devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x24d1a393 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x24dc8010 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f20193 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24f45195 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2511fa1e blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x25198d34 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x251afb53 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x251bab61 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm +EXPORT_SYMBOL_GPL vmlinux 0x2537113a mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x254bda39 xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x2561c014 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x258792a2 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x258a9de0 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x25a0968f pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x25b7a349 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x25d4fbcf pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x25e95bed pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f04b40 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x2611ce57 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x262f4a89 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x266cf0c6 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x266dccdb pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x267c5127 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x269a4910 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x26b11b6e ata_sas_port_stop +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 0x26c4ffdf i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26c968a2 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x26cbb61f xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x26e66352 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x27079e71 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x272d1499 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x2774a9ee pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278fcf14 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27bb7f18 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27ce0dc5 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x27d5d88b regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x27dc2d41 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x27e84707 rtc_irq_set_freq +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 0x28227ad5 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x282777c7 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2877cb83 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x287c3888 pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x287f2b7f ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x289ee06c acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x28c21b8a intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x28d1f19a usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28fefd80 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x29022572 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x292ab867 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2939bf8c alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write +EXPORT_SYMBOL_GPL vmlinux 0x297205a9 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x2999c587 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x29a98562 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x29bff5fa wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x29d38bc9 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x29d98837 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a047f90 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x2a2eb16d cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2a43b678 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x2a58b80f trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x2a58c73c pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x2a5cd3c6 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a7b02c0 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x2a99344b unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x2aa7b1bb dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x2ab2c2b1 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x2ab58322 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2abd749d class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2ada8105 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x2af19330 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2b1502b8 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x2b1ff805 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2ee688 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x2b644c01 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x2b64998a device_set_wakeup_enable +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 0x2bb03512 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x2bc32bfc fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x2bc4f562 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2bc7c778 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x2bc882bd rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x2beab895 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2bffd2bc skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x2c0509c6 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x2c064961 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x2c1b2843 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c4191ca usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x2c545406 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x2c638ec8 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x2c765f07 device_move +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2ca4f658 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x2caeddaa trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x2cc544b7 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x2cca3729 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x2cd8204b xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf31372 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d21b880 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x2d2849b6 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x2d2c1ba3 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x2d3b8e2e iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4e71b6 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2d51e98a xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d826e19 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x2d834849 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x2d843a23 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x2d95878e regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2da84134 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x2dbbcb1f fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2df8e50c pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x2df9cc9f rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2e27b5 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e3d1477 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2e484d08 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x2e92ab2b nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2e943f95 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x2ea742f5 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec7b44e __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2ef79b7c netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f43f22c usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2f55a849 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f646f5d inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f72ebf8 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2fd71fd9 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x3029197e rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x3052497e percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x30552a66 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30dc3c80 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31128b8e hv_remove_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0x311786dc fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312872e4 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x312b30c3 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x314598b4 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x319eda17 serial8250_rpm_put +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 0x31c8215a pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x31d1bfcd devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x31dbf50a usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x31f6dacc mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x31fb561a anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x321782e9 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x321dee97 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x324cfcc1 nf_queue_entry_get_refs +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 0x3272c5d5 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x32a207fb tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x32aa85c5 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bf6875 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x32c1a395 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d9c177 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32e5c73a acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x3315db33 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x33309faa cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3346a9ee xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x334e8591 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x335517b4 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x33586801 inet_hash_connect +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 0x337029e5 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x33b769da dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33ce4a5b wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x33faf466 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x3402bd7b device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x3411fc1f dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x341bdcdd posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x343400ab inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x34757b82 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x348f9253 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x349d8643 extcon_get_cable_state_ +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 0x34b35b09 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34d516ad iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x34d759c1 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x34ee491f cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x34ff1ebd usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x35074aa2 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x350a2d1e blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x3542fe80 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x3543f313 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x35545372 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3559b87c devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x355e105e pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x356a2d54 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x356bf06d fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x3588ca0b irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35c0ea23 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x35d499bc put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35e15f5b bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36234cb6 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x36287896 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x363c69fc xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x363fdb8d ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x364ab930 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0x364fe263 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x366efd69 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x367d8bbb thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a5feb1 xenbus_dev_changed +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 0x36d09842 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x36d92fed pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36dcc7b5 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36fed2a1 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x371a9dee simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3764f4fe cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x377435ee ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x378439b6 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3785a4f7 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x378bc1a0 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x379afb80 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x379d8b12 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x37ae77ca pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x37b7c71a devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x37f26130 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x380f5bd2 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x3825c5ec ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x383196f5 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x384b22dc regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x3865eb00 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38c39c60 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x38de6cc3 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ece489 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x39213f58 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x3931bd3a thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x395ff1f8 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x397c22a2 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x39847142 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x3996f461 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x39a4f229 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x39b4d3ea single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39f3642b clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x39fb5ff9 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a2a2db0 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a437ba8 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a8bc3c4 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab8020b __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3af7ce23 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x3b2363c3 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3b50de31 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b551711 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x3b5a68ab ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b8d5ea2 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x3b92412a ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x3b93acc9 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x3bb6b60e get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3becbdc2 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x3bef4887 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x3c02f096 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x3c16fd0b gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x3c1783a8 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x3c3911ec devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x3c60bb02 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3c7a65b0 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x3c8829e8 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x3c90782f sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3c941068 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x3c9b70f5 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd3d0e4 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3ce12fae gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x3ce1f2c6 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x3d05f00d md_stop +EXPORT_SYMBOL_GPL vmlinux 0x3d07b631 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x3d13b2b9 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3d28eca0 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x3d2b5e81 is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3d8604ca gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x3d9e82ad mmu_notifier_unregister +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 0x3df94e21 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x3e2375b1 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x3e2c9552 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e4b8725 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x3e529a11 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x3e54b244 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e68dd0f blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x3e6d3d42 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e9ee731 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea62e38 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ea7afcf ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x3ead2a89 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x3eb50262 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x3ecedefd dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ee501dd of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3ee534a3 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x3eea2eec mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f09dc6d usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f24545a find_module +EXPORT_SYMBOL_GPL vmlinux 0x3f250399 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x3f326116 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f8d9598 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x3f95102e pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3fa2c8ea crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fb4a123 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3fba6e25 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x3fcfe8a1 ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3ff1ee11 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3ffcc62f pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4006ba77 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x401a9236 debugfs_rename +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 0x404c4599 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x4069e35b ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x408212ba hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x408c0a30 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x40a2fd77 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x40a61232 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x40acf8ae device_create +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40bb1e05 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x40c4044f rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e7bf72 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f39bb5 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x410f44a7 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x414c00f8 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x416d9caa acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x4198ab5a tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x41ba9df4 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41c9ea68 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41ddc74d hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x421a4fe4 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x422eb10f da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x42302c7c class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x4233a102 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x42483a00 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42624b4d __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4264a6f4 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4284f2b5 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x428de52d irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x428f0716 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x4292a6c6 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x4293c728 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x42a74d3d put_pid +EXPORT_SYMBOL_GPL vmlinux 0x42b2b2ed usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x42bc8326 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42fdfde5 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x430fd7b7 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x435182ba usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x436453bc platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4369d3b6 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4393487c get_device +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43ab21f9 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x43c4bfb9 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43cfa0f6 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43dea836 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x4421bc14 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x44289994 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x442c513e __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x4467a61c dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4470c9cd pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x4477bf2e unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44929519 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4495c945 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x449a547f irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c25298 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x44d1be83 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44e3d745 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x44ff006f phy_create +EXPORT_SYMBOL_GPL vmlinux 0x450758e7 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create +EXPORT_SYMBOL_GPL vmlinux 0x45164633 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x451e9a0f rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x452cef30 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x4531561c usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x45404e09 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4542255c regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x45569c73 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x4564a4a3 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x45710b69 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457c1835 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x458c7efb device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x45ad7ed4 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c91f85 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45d93764 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x45f7f384 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x45fb4cd3 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x4602b6e7 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x461141c1 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x4626c4e6 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x4636b0d9 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x46382f3b ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46582bfa hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x46639596 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x467b2db5 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x467b8867 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x46875a63 apic +EXPORT_SYMBOL_GPL vmlinux 0x468873e3 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46899956 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x46c11464 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x46d31bb3 pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47237b14 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x4747aa2a regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x475849a1 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x476a5356 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x4785d46d dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47b9d6a1 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x47ccfdb2 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47e3112c rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x47edee75 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x4813f805 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4833533d mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x48427da1 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x48446c6f wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x484583db efivars_unregister +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 0x4878e57f pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x488ebda0 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x489bb2a2 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x48b324eb ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x48bdbd0e cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0x48c5d2a9 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x48e5d05b handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x48e7a43b __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x48eb8ef7 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x491425cb thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x4932086f nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x49504f07 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x4973fe13 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x497b6dcb list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x4983934e device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4990966e rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x49a3b9d1 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x49b02029 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x49bea3cb pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x49cbb706 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ea2d87 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x4a15b2bb pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x4a18f0aa iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x4a23cc58 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a46ff4b power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x4a4bc44e bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a9b055d rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x4aa3cd12 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab46f73 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x4ab6a2af blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x4ae5896e ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x4ae9baa1 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x4af0a700 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read +EXPORT_SYMBOL_GPL vmlinux 0x4b0188ba rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x4b135c00 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4b29ae87 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4b31e3c8 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b3f6563 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x4b5571ec sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x4b5b2fd9 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x4b8b48f8 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x4b9d6681 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x4baf13d1 usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x4bc32677 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4bcd8ebf iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x4bdcb246 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x4c01689e ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x4c179000 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x4c5cb49a regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c8e4d1c __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x4c904539 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4c9bc4ad bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x4cb79be5 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x4cc9c856 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4cd52a7c vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x4cd665fb wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4cd99094 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4cfa8c7c lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d7232af ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x4d8d852c iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x4dc9ccb7 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4ddac179 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de2ae29 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e07d2fe ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e16a1e4 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e669725 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x4e67f903 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x4e6e05ec ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4ea9f2ac ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x4eb451d2 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x4eb995a4 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x4eca1d91 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x4ed7ef3c tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3ea156 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f4d3069 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4f5bae24 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4fab1a87 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x4fad5a1a shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x4fbc8477 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fddaa27 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ff33ff4 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4ff597be da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x50342434 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x503ecb17 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x504118f1 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x50514209 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x505d8c5a blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x506be671 xen_swiotlb_unmap_sg_attrs +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 0x508f5d6d wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50c55c0d devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f98d41 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51008323 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x510307d8 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x51098761 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x511c2042 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x5156e9c9 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x51721b2b dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x5174024e regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x517a6a98 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x5186a91c palmas_ext_control_req_config +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 0x51c9b10f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x51d0fc83 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x51d18166 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x51e411eb __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x51ea4718 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x52548e4f call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x5256aaf2 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x525b081a srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x528fc0a4 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x5294e2aa dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x5294ef1f usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52a97fd5 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x52b48328 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x52b4c429 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x52b6692e crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x52b6e4c3 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x52bf4c08 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x52c25b43 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x52d3c1bf crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52e1bc39 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x52e5417a irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x52f5a7e4 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x52ff0a76 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x5332e449 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53784b26 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5397f945 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53bf8824 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x53c8e660 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x53ed40ab pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x53f93826 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x543b0454 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x54473d62 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x545c3ca2 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x545d1e26 fat_setattr +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 0x54c97979 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x54ce2d57 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x55201b26 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x552880b4 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x552e92e7 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x5536a4b0 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x55372a3a tps6586x_irq_get_virq +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 0x556e4390 clk_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x557a3443 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x557e653a pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x55885dfc ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x5591bcd9 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x559559a1 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x55a73d31 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x55aa3591 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55b10815 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x55e337fe pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x55e81c9d rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x55edd53d unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55ff7707 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x5621a772 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5622c35f device_get_child_node_count +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 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x565d5069 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x56810dd4 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x568ddeea fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x568debcb rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x5696c380 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x56b00fb8 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56bc30ad devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d719da gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56eab6e9 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x570c3b05 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5728ff2e gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x572ba529 acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x574770a8 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x5749255e skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x5786aac0 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a06288 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57f14e2c usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x57f216d0 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x5802e1c6 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x58173784 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x58199260 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x581b0afe get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x581fc80c subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x584b2858 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x584c3047 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x585190bf trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x587a361c blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58b73f79 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x58e640d5 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x58ea4c4e module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x590b2972 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x591af99f ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x591cd301 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x593e827f pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x598b03c9 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x59a30076 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x59b3c712 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x59d64597 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a00f9c5 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a4d1187 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a699c6a fpu__save +EXPORT_SYMBOL_GPL vmlinux 0x5a7449c5 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a83138b gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x5aa430b4 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x5aa66aef crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x5aa7c4ea irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x5abdb5ed flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x5ac9ed8c gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x5aee99e5 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5afa4990 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b017ba8 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b23697a input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x5b25bc51 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x5b591df3 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x5b622c9f regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x5b64e710 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x5b663310 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x5b951350 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x5baa2696 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes +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 0x5bf97efd inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x5c1aa59b pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5c341f94 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x5c4dc5ed xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c7982f6 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x5c7e1d34 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x5c8cd33e cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d3c61b0 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x5d3c91cd crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d873380 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x5d8d3184 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da97d99 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x5dafe715 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dd2f214 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x5dd87f9d event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x5dde7a1b __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5de4d7df page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +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 0x5e574d69 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x5e77ba35 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x5e817007 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5e9b6519 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x5ea53955 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x5eb4f2d4 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x5edee230 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x5ee0d666 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x5efee1d2 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x5f08e08b regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5f2026db regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5f26a3ec device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f3de585 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x5f42cd9a xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x5f510880 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x5f633d4d fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x5f6ed926 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x5f92d95c reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fc92bd5 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x60012d85 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6018ebb3 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x601cec7c component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x603f4db8 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605d711b phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x60707d75 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x607892b0 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x60930d37 save_mc_for_early +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60af2958 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x60b5a1d8 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x60b866c2 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60cef609 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x60d264c4 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x60e554fb __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60f4dc98 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x610383ce thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6109054b tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x6111ed9f scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x61221a98 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x6132d02f __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6141f688 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6143cefc regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6154b1df scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x61696c77 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x61a854bb pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x61a97a7a __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x61b0f0c9 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x61cb4d72 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61d206f1 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x61ef67d4 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x61f67b12 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x6215e960 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x625989f1 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x626419c9 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x62734deb dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x629539a5 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x629c26ad pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62baf41b usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x62f55b38 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x62f90cc3 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x6313e443 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x633476bd kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x633bf8d0 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x635cff8f gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x636c4e0b virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x63813d1b regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x638a5425 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x63d3b31b tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e52ede device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x63ea61da ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x63f240bd __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x63fe19c0 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x641e0d5d ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x64289d13 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64435d23 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x644b8432 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x64601204 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6463b0d2 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x6469ea44 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x648202bf add_disk_randomness +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 0x64fd8e4c wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x650b7c98 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x650d2f7c skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x6513f90e xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0x651916c7 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x651d7b49 sysfs_remove_bin_file +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 0x654436a6 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x656e7461 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x6577ecd2 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6580e899 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65debdf0 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x65fd9028 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x65fe02fc scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x660e1ea0 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662c9e11 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x663d77b6 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x664b874d bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x664ef07a ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x66639104 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x666d8a33 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x668071c8 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x668cb067 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x668f28cb security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x66c32495 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e8a33c l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x66ef44c0 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x66f08178 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x66f32b86 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x66f805b4 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x67139414 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x6716ce8f regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x67267b9c pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6736a2e5 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674a65a6 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67565562 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x6779036f rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x6785feb0 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a1fdeb ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x67a3cd06 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x67bafedf __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x67bce68a mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x67f37d46 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x67f66d5b __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x6817aec6 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x68285900 regmap_add_irq_chip +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 0x6864ed15 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0x68659329 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x68842162 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68be6d62 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x68c4b4dd wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x68d7e6d1 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x68dfe468 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x68f2e813 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x69083e22 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x69110695 gpiochip_add +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 0x694cdf1e dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x6953a810 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698815d6 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x6994bec7 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x69a818cb perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x69a92878 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x69fcd8c5 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x69feb5ed debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x6a0031d7 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a17ac9c tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x6a29316f smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6a3c4ed9 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x6a3d3575 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x6a4ba2b4 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5dc036 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a65f151 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6a6651e3 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a914de9 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6a990b5d thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad79c91 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x6b0bf454 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2ed744 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x6b311cb1 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x6b327de3 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x6b33309e regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x6b5fc44e virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x6b6b3123 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b833016 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6ba7670b ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x6bd5e147 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6bd685ad perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x6bd7d5ec irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x6bdfec07 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c1a364d rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +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 0x6c7b8d2c crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c87ee51 crypto_shash_final +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 0x6cd52005 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6ce408ad intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x6cf7c345 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x6d12a8b5 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x6d1b75aa pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x6d1d206a cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x6d2bb1eb da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d4be7f7 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d9091b1 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x6d9ae22c wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6d9d9bcd ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6dbc77be ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x6dd24ac2 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x6de8a724 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e2fc293 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x6e35e910 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x6e390615 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e5cb69a ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x6e61090c class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e782c23 iomap_create_wc +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e7de28b regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x6e85b00b local_touch_nmi +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e911b87 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6e997f79 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x6e9e1781 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6eb18814 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x6ee40787 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x6f1891d5 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f44117f find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x6f4687af shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6f5205d7 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x6f611d7e __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe532f8 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6fed3e0f mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6ff134f5 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x701bdbdf crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7027d2c0 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x70700fd2 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70926f2e x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x7094e703 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x70a0528a disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x70b1ff05 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x70b50a71 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70ff664a __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711113c2 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x711300c5 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7183c6ac init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x71866627 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a14601 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x71a8796e bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x71c8e520 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x71d9fb94 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e851d4 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x71ee94bf pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x71f745e7 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x7200a019 ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7210b3a8 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x7258f677 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x7273a278 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72a7ebd3 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x72b65069 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72da00cd ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x72e07e78 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x72f2858b led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x73175e3b debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x73367b0d xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x734f0276 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x73511f45 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x735a8716 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x735daafc rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x73693cf2 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update +EXPORT_SYMBOL_GPL vmlinux 0x73a3bcf5 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b1e19c usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x73b45c1a pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73bb6460 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x73c30571 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x7408efe9 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x7419cab3 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x741e92ef percpu_up_write +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 0x745d4d9e crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x746b0583 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x746baf5b pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x7488a534 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74b16399 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x74b3622d virtqueue_is_broken +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 0x74be79b3 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x74c08941 kvm_async_pf_task_wake +EXPORT_SYMBOL_GPL vmlinux 0x74ca9fe8 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x74f6bc42 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x74f879df pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x751c888a class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x751e76c8 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x753f4cf9 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x756358c3 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x7591292f ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x75b9384d key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75c47c05 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x75cbd3d8 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75dc2ea2 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x761571be acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x761c57aa acpi_ec_remove_query_handler +EXPORT_SYMBOL_GPL vmlinux 0x763df98d cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x7645f4b8 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x766b3011 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x767d7a51 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x768c0cb6 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x76950b20 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x769cea32 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x76a87987 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x76b67573 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x771c0f8b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772cb276 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0x773f6768 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7742122e driver_create_file +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 0x775e8bb1 trace_event_raw_init +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 0x77ca84ec scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x77cb69a3 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x77ecf682 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x77fd4269 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +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 0x7874b5ec unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x78a40bd6 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78af759d ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x78b1d4b3 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x78e2fe66 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x78e84890 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x78fd7d58 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x7942d240 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x79435cbb ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79480fd8 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x796f49c9 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x797fa50c devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79a21fbe component_del +EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer +EXPORT_SYMBOL_GPL vmlinux 0x79ab6883 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x79ad6803 user_update +EXPORT_SYMBOL_GPL vmlinux 0x79bb5373 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x79bd46ee regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x79cc1612 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x79d4c32b bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x79d7c692 ata_sff_data_xfer_noirq +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 0x79f747e2 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x7a016397 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a097f27 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x7a176ab1 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x7a1a9079 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7a2bcf92 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a3cbcbd vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7a43640e sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7a4d94a1 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x7a53afad devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7a7663bd crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa11899 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x7aa8677d pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac29ce5 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7aca07d3 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7adc20d2 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x7b0c14bd device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1ced0f debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b202401 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x7b60f9c1 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7b71b72e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x7b8c703e scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b900e13 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7b9d9344 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x7ba0bae0 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x7ba91f4c ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x7bad216f kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x7bfc1770 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7c079f46 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x7c11f9c0 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x7c15e1ec xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x7c38104f driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7c6467fe fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cb853ef inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x7cd3d039 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cd8021c tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x7ce3b254 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x7ce836d1 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7ce8ca92 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d038ac5 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d1d6b36 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d681085 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x7d8a88b4 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db1e1ae device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x7db8e390 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x7dbd7b10 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x7dd9cf2e xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de31cd1 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7e235824 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x7e4d7010 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea16e66 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x7eca7695 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x7f0cc1d4 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x7f1fac01 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f389def pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7f517228 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x7f5e48d4 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7f7a39af dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7e37bc __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x7f90f7ca usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x7fb7b501 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd77d4d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x7fe9f9ac wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x7fee9124 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x8006a1c8 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x801d60cb acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x801e5f8e watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x8041ab2e ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808838d9 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x808acba5 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x8090cf37 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x809529fd alloc_iova +EXPORT_SYMBOL_GPL vmlinux 0x80bed1fa usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80dabdaa uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x80e2ab6f crypto_ahash_walk_first +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 0x8122a4c1 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x8134aebd blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x8147090c usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x815a331a tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x818e73c3 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x81b5f769 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x81ccbfb8 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x820bc156 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x822029c6 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x8253180f usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x825746fd rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x826b5d0e __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x82721231 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x827b6acf bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x828149fa ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x828f50a8 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x82978442 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x82c69337 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82fdc4a5 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x830da644 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x831bd410 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x8322b618 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x832fa4ed gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8344d48a __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x8362d591 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x8365aca7 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x8365f297 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83984041 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83d3c7a3 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x83e4d191 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x83f13779 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x841ae4ef acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x842b8842 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x8469c794 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x847cebcc unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b8f5c8 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x84c46c4e power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84d22902 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x84d55b8e dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x84df086a blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem +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 0x85171ead pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85676247 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x856a18d7 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x856c2f64 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x856d2267 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x8579c78a rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x859206f8 swiotlb_unmap_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 0x85d91e22 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x85f572e3 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x85f9bdf2 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861faa99 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x86261796 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x86267dbc i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x86372d2e fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x8654be58 hv_remove_vmbus_irq +EXPORT_SYMBOL_GPL vmlinux 0x86622f6c tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x86623fd7 notify_remote_via_irq +EXPORT_SYMBOL_GPL vmlinux 0x86674dec tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x8667d043 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x866d8407 usb_lock_device_for_reset +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 0x86bec66b __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x86bf2753 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x86c39848 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x86cb3151 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x86d253f7 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 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87110685 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x872e43b6 tty_standard_install +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 0x87560305 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x8775e9d6 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x878be771 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x8799dc4e use_mm +EXPORT_SYMBOL_GPL vmlinux 0x8806930e dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8822221c blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x882edc4d dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x88505f4d blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x889cf99d usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88af387e get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88b8a7b7 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x88be3faa locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x88e3213f desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x88eb848e fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x88efedf9 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x88f71ae9 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x8900c3b8 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x890391f4 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x89059a69 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x8910ed57 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x8914524b tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +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 0x896e4e55 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x89898a16 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x899a7bb5 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x89b38488 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d01b6e acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x89d72d44 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x89f7e702 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x8a2eb3a1 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a335104 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x8a3fbe3e ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x8a4e5336 __cpufreq_driver_target +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 0x8a6da44c seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x8a73da6f device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x8a78989f irq_from_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a7cb9c4 platform_thermal_package_rate_control +EXPORT_SYMBOL_GPL vmlinux 0x8a7e1736 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8ab7353c __module_address +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac386d4 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x8ad5f9fc spi_async +EXPORT_SYMBOL_GPL vmlinux 0x8adf8a1c __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b235324 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8b270b02 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8b360bf0 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x8b4d784a kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x8b4f34f9 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x8b61eec4 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b9ba787 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x8bbf41f6 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8bcbb20e wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x8be0be1a pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0528be efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c356e4f devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x8c465d5c ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8c48c286 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x8c4dd4b8 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c91ef84 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8cdbbe18 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x8d000b89 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d0d42df md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d5d86e2 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x8d826570 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x8d91a4f6 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x8d94d764 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x8dc35570 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x8dc6e677 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x8dd11f85 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x8df48c61 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x8df91649 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e5e9204 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x8e7ebd46 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x8e919806 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8ebae4bb devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x8ebc9ec2 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x8ec7396e trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x8ed477ce crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x8f032320 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x8f06268f lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f261166 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x8f43e795 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8f47c784 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x8f66be78 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x8f6cd6cb regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f93c518 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8f99d2fd usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x8fa7ad9a ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x8fa8ffe6 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8fbe699b crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8fbfd775 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8fc4f4c2 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x8fe23ba2 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x8ffbd14c irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x8fff25bf fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x9026810a dev_pm_qos_hide_latency_tolerance +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 0x907335cb ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x90813214 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x9093474a xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90d2499e da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90e00523 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x90e31470 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x90f34d16 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x911b38e4 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x914caa98 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9150df1c __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x915cebdb public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x915d79c2 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x91808ae7 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x918eb827 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x918ee352 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x91b5af51 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x91b6b9fd iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x91bece1a rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x91c42ca9 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x91c4c8fa xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c7e342 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x91de4dcd cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x91e396a1 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x92123e06 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x92446e02 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925d24d7 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x9273db12 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x9279868e pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x929dab6a usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x92a79328 xen_swiotlb_free_coherent +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 0x92ed3a17 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x92edc31a devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x92f4855e clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x9303c9e9 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x9334d714 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x9353d4f6 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9376ff6d platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x938f3b2f __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x93918975 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x93a0cd69 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x93b1d0ed xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93c845a6 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9429cdcc usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x944dc568 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x9453d9a8 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9483a4ff pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x9497249f blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x949d4991 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94c2aee0 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94df0ac1 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9502f5ee tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95093fa9 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x952e287e dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956ab392 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95b73533 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x95bb1524 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bd572b tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x9608d744 acpi_subsys_suspend +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 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9662aa67 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x96a4113c blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x96b7ba35 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x96ba213f pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x97296af5 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9764040b rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x97701b10 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x9777acb1 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x9785af2e netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x97c02628 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x97d34a5f unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x981dcefc vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x98276e45 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x9828506b shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x982afda3 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x984a7243 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98833349 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x989411c1 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x98959b0e gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0x98969855 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x989ca11d sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x989d2d58 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98b158b8 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x98b7d07e cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x98ba4adc power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x98daf1fd usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x98f2e528 xen_swiotlb_sync_single_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x98ff3a76 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x991475cf tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992944d8 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9938085d __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x993a75fd xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x9956b7dd to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x99592dff skb_complete_wifi_ack +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 0x9988f142 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x998b91b7 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x99a512cc clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x99a55a8a devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99b0ff4a dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99d443fa ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x99ddf21a __inet_lookup_established +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 0x9a126ce9 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9a2b2359 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x9a2f982e pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x9a4472e3 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x9a87fc65 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a9d1d99 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x9aafbaab pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af59e44 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x9afaf649 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x9b1d89d2 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x9b514b2f PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x9b556270 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9b566605 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x9b662f45 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x9b66ffc2 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b9868df exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9bc57713 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x9bd34785 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9bdab2f9 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9be37dca efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bfc6193 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c23811a shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x9c2ab842 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c4f20a9 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9c5be451 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x9c5d3962 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x9c7e32ae securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x9c983c0e ping_err +EXPORT_SYMBOL_GPL vmlinux 0x9cb4904a ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d0bb81b unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x9d164321 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x9d19d882 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d43b1c1 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d713fe5 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8c725b tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x9d978fdb attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x9da14c00 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9db52246 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x9ddcfc05 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x9dead945 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e56b9db usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x9e6c3495 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x9e6fbe04 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x9e9b163b crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee05ff8 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x9ee88df0 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x9eeb8395 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x9f5df1cf crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x9f710101 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x9f73e1b6 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x9f75e7c9 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x9f76c778 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x9f8c1446 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9fadba22 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x9fcaf500 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9fe9656d pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x9ff9f264 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa00f7ef7 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa0433705 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa05f5199 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xa06c9ffa kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa07ab316 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa09e1d77 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xa0c29121 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa0c75ba1 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xa0f8ccf1 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xa100e501 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xa11216be xen_store_domain_type +EXPORT_SYMBOL_GPL vmlinux 0xa11b55b2 xen_start_info +EXPORT_SYMBOL_GPL vmlinux 0xa12400e5 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xa14a1817 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xa151d669 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xa156a1f2 erst_get_record_id_end +EXPORT_SYMBOL_GPL vmlinux 0xa15c5cf1 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xa15f26a2 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0xa16cd086 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa17d05bb ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa184a6b6 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1947c58 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa19bf401 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0xa1b2030b regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa1effca2 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa21ef26e sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xa231de15 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa24fac4a ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2779ac0 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xa2855e48 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa291fbc2 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa29ef1f8 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xa2a8b9c0 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2bd65e5 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xa2d59b05 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xa2d93d03 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xa2f49938 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xa2fe630f crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa30a43c3 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3272820 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xa3272cf7 xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xa32e235d devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xa3409cd2 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa3447beb noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa3577cdb spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xa35e19b1 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xa3814bca raw_seq_start +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 0xa3ad446d usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xa3b21804 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3c783c1 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xa3d457bc pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3eb9fca pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa402f38a usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xa408f8d4 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa4353ed3 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xa448e69c ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xa452c297 hpet_mask_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa452f2a4 xen_pirq_from_irq +EXPORT_SYMBOL_GPL vmlinux 0xa464ac3f mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa479cb70 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa47fd5a8 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4a632e5 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa5034187 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa5078fd6 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa50f2c05 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xa52ea5a8 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0xa52ebdce posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa54e0665 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xa55d42e7 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xa55d5598 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xa5810dbf perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa59d719b ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa5b47d5a irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa5de6ff8 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f179fa regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xa5f53f62 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa60d6b24 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xa611e7bc bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa62b0e61 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xa6360ec0 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa657655a __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xa66f9c41 gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xa694215b devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xa6b03ace nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6ce672c watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa6d484e7 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa703821a xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0xa70a3a9c blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xa724ce6b thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa73d05f8 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xa749a412 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa74cc588 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa759e4ac iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa77ab67a genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xa77e5884 device_register +EXPORT_SYMBOL_GPL vmlinux 0xa795d8b4 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xa7a57bc5 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0xa7b7429a shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa7e92ab7 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa7ed6626 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xa7f6c23f __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa808eb18 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xa80dd9d6 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa858a45f skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xa87b9c28 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xa87ed0c0 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa89b7433 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xa8b1be3f acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bc5de1 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa8bd44bc relay_close +EXPORT_SYMBOL_GPL vmlinux 0xa8cf7bde fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xa9126bff hpet_set_rtc_irq_bit +EXPORT_SYMBOL_GPL vmlinux 0xa9143342 find_iova +EXPORT_SYMBOL_GPL vmlinux 0xa921078d sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xa9269ff9 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9617cdb inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xa979a04e gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa97fb5fc xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xa987243c __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9afb810 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xa9bee0b2 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xa9c277cc iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa9c35573 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xa9c62d73 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa15f525 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa2b318e __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xaa2c288a pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xaa2d79e3 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xaa509dff clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xaa56cb8e usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xaa638d84 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xaa83435f scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xaa8cfc1e devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xaa94640a virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xaaa06af9 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xaaa2cf8d cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaad6d9b6 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xaae193f6 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xaae20d4a virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab01acbe gnttab_request_free_callback +EXPORT_SYMBOL_GPL vmlinux 0xab1e0e93 hv_setup_kexec_handler +EXPORT_SYMBOL_GPL vmlinux 0xab2592ae usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2efc30 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xab449356 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab641408 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab7bdcfa debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xab829920 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabcda579 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xabe5a5aa devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xabecd00a usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xabf4e944 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xabfb086d inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xabfbc862 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xac3c91d7 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xac4d0057 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0xac559b80 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xac5e42e2 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xac5ffe8f acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xac6401e1 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xac73e51d mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacc8ef24 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xacd81f4f transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xace000e6 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xaced19f3 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xad061beb regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xad47f020 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xad5ecc73 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xad82b113 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xad991a33 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xada6db89 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xadb2cc5e msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xaddb1eb8 acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadf95e03 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xae320bc0 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xae3a672d dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xae3da0f3 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6b4bbf da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae8d49bd blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xae93cc7e dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xaeb35a4a blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xaed28fa2 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xaed3305d bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0xaedfb61e pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xaef17235 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xaf073fc6 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xaf28bb27 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xaf2d9c9e powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xaf2e5373 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xaf4e40a1 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xaf4e5d27 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xaf5727ce __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xaf5c789a fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xaf7981d6 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xaf7ea96c __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xaf81dd6c rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xaf8d9435 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xafb54f23 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xafb8d78d ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xafc93ed6 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xafff2bf5 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xb005ef63 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xb0081a91 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xb00cc16c efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xb014dda5 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb03bfedf class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb03de91d acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb0643faa fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xb06c7f46 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0938286 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xb093d0a1 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xb0a80c0a fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb0b0f8a3 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0ec2e4b get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xb1011ebd regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb10b1c5d gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xb116f547 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xb117d3c1 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb141f634 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb172ffac efivars_sysfs_init +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb18ff231 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b42f66 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xb1b72596 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c2a9fb dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xb1c807db disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb1cd190b virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f8e365 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb2021ba0 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb24586ba __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb24b5cce regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xb24f3a82 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb273cfd8 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb285b8f8 xen_in_preemptible_hcall +EXPORT_SYMBOL_GPL vmlinux 0xb292a9c8 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xb2979d38 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xb2a4354c ping_close +EXPORT_SYMBOL_GPL vmlinux 0xb2a624d2 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xb2b1b196 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xb2bb4272 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xb2c1312b unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb2d4ce3c pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xb2d99cf4 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb305b7bd rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb3551e44 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xb3cc797b component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xb3d22731 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb3d67780 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xb3f5c1f2 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb3fb39cd pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb4119a2f scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xb41a79e4 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xb43718f1 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xb4411e8d crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb460386f ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xb46574f4 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xb473ca8b security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xb476c535 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb4ae670a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xb4b768d9 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb514a7d3 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb518a0e8 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +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 0xb54fef2d __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb55ee8fb scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb571e549 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xb57b482e __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0xb57d5dec regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb584a8cb relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5e2505e wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5ec8b4f gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f8bd4d skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xb600753f ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb6194167 __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb64fe106 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb66b35ad securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xb67d04b2 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xb6962f06 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xb6ac98be dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xb6bdb5fd edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb6c3760c ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xb6d5acf1 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb707d2fa max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xb709b68f gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb711fcbf fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb71e820f acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0xb731d3e2 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb734e8cb pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xb74100ee rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xb74b65b8 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb7599bc5 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xb784bfc6 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb79a646c pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xb7c03a37 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e0d6a3 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb81a749e usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb8748976 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xb8835e3b tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb88512c6 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89e72e2 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb8b19c02 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8cb639e sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xb8cc3ff5 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d61eb1 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90d33d2 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb935e85f find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9ac93c8 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xb9ae0e78 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c4cb64 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9f85872 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xba23a971 acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xba2a618a pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba4bd278 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xba5ff020 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xba6d8e83 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xba6e2adc gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xba74f4b4 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xba77ff03 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xbaa4f2be usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xbaa7903f crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xbaaf2008 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbacbc403 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbaf59435 nd_tbl +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 0xbb3e3a8f regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xbb431af0 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xbb64352f handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbb92528e devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xbb9a9bdd wm8350_read_auxadc +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 0xbbd825b1 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xbbe3bd1e tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xbc092c07 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xbc20f28c rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbc297d6b bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbc2d1568 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbc3600f6 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbc3a74de rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc4d280a sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xbc5d80e9 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array +EXPORT_SYMBOL_GPL vmlinux 0xbcaa2830 pm_generic_freeze_late +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 0xbce586aa iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xbd104223 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xbd120f3a __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xbd121159 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xbd153671 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xbd319238 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd427cee xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xbd5481ab spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd6dd9db pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xbd739ef2 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +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 0xbdfb69a3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xbe087651 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe29f487 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xbe31f2e5 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe759b5e extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xbe9d4d4f blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea6bd04 register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0xbed1137c pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbeeaba35 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xbeed369b powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xbeef0dc6 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0c7e7c locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xbf0d7fdd invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf17d38e tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xbf200908 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf295d74 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xbf2bbd7b devres_find +EXPORT_SYMBOL_GPL vmlinux 0xbf400495 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbf4bdddb perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbf68d2c5 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf6b71f5 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xbf7ba4fc device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xbf86aeb9 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf953ddb usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xbf9e442e fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xbfa337e1 crypto_alg_mod_lookup +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 0xbfe5b74b gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xbfef5719 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc00cddf1 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc02be4ed debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xc0448b29 inet_csk_route_req +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 0xc0ac0361 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xc0b803d5 flush_kthread_worker +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 0xc0f7c905 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xc12e0ada srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xc137e252 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc151c669 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc161e97c crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc16a9283 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xc16bacfb sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xc1731efe preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xc173b1d6 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18d4b1c tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc1a03096 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc1c36e57 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc1c84368 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xc1dabf33 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1dfbe98 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc1f69190 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc234f4b4 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xc2437e0e uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc26b254d xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc283f1a8 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc28f7b1f gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc2a0217f dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xc2b61291 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc2b7345f scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xc2d6f9ef lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2f3d339 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xc3122a2b cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34e4943 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xc35c7e38 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37df132 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3ef3812 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xc3fad997 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4684ca3 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xc46efa46 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47f2bf4 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4adae85 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d0242b gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xc50602a3 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xc523fa04 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xc52fd898 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc5590c2e blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5837333 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xc589556f skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xc5a5b10b hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xc5abde7e simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xc5c3f328 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xc5c5d040 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5f4b1ef pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xc5f6c366 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xc609c616 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc615bad3 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc65788c5 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66019cc xen_resume_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc6695bd9 ping_proc_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 0xc6b80867 input_class +EXPORT_SYMBOL_GPL vmlinux 0xc6d8e778 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xc6fc8bd3 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc701e6f1 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xc705c39c __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc70eefd8 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7631eb2 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc79c3bbf usb_for_each_dev +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 0xc7e3aa40 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc826e5d3 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xc82a68b8 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xc865dea7 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xc868c629 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xc86d3aea xen_swiotlb_sync_sg_for_device +EXPORT_SYMBOL_GPL vmlinux 0xc86f6a17 crypto_alloc_akcipher +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 0xc8807613 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b316db screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xc8c5b38c generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc90bb46b pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc94dbec0 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc966c647 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xc9670afc crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode +EXPORT_SYMBOL_GPL vmlinux 0xc97430ce spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xc9a9a7a2 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc9c0b6d6 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9d0816b __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xc9d528f8 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xc9e201fa xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc9e64fc3 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca0fd8a4 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xca1b7048 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xca63487b usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xca72eb71 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca7ee71c dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xca81ea9a xenbus_transaction_end +EXPORT_SYMBOL_GPL vmlinux 0xca93a008 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xcabb29b1 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcabc763c raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac574b2 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xcb006540 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb211b3e mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xcb260ddf devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xcb44ac88 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb50929c extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb58d1ff mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xcb637dc3 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcb6c5ee7 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xcb6fcab7 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xcb78467c anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xcb7b1293 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcbae3176 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xcbbee1a5 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xcbd48b47 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe8c058 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc16a377 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xcc1a9099 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xcc1f6911 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xcc4b0f49 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcc5746eb fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xcc5a963a fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xcc68e088 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcc6d32da usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xcc7b26d9 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8bac2b regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcc8c263d devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xcc9c4ec2 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xccba99a2 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xcceb5e63 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xccfdb776 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd5f113c br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xcd690dd7 of_css +EXPORT_SYMBOL_GPL vmlinux 0xcd766d74 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xcd7cafb9 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0xcd81e7a5 skb_segment +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 0xcd99b9c2 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda0a2e6 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xcda872c9 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xcda973bb tty_buffer_lock_exclusive +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 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce1d34b6 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xce2bff28 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xce3acc68 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xce434918 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xce495ab6 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6d20d0 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce90f9d4 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xceaa6354 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xceb15155 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef00ab6 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xcf07df46 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xcf0e8506 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xcf15ec3d pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xcf3749e4 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xcf3c86d7 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xcf511f3c xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5b4a3c crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcf5edbc9 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcf70b7c1 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xcf74cb01 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf946d14 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xcfa4adf9 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfe05c87 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xd00336e5 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xd008bdc8 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd0129c41 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xd0335b18 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0458ccb xenbus_strstate +EXPORT_SYMBOL_GPL vmlinux 0xd0574e08 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd078ea83 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd0fc9b48 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xd12fda16 xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16a9b3f xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xd17f7a4a device_del +EXPORT_SYMBOL_GPL vmlinux 0xd1b65027 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd1c0fee5 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xd1dfec47 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xd1edcb4c crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd21015b7 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xd2117030 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd21c32c2 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xd22c0b47 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd237a218 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd2508e63 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xd253213e skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd28285ef power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd28f4dde usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xd2a0ab6e crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2b43364 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd2b8e402 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2d1927b hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0xd2de81dc dev_get_regmap +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 0xd30d094a crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd33f2ebb devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3415b33 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xd3647ead pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd370b496 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd399e1e4 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xd3a9b2ce usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3d33241 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd400d285 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40413e4 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xd4100ee2 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4244ac8 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0xd42bd75f netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd454df67 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd484438f default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xd4987d35 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xd499c0aa sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xd4a4ba49 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xd4abc7a8 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd4b2f13d rio_request_mport_dma +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 0xd4fd4102 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd50ae566 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xd5380b2d unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0xd54701ef regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd58f905d extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xd59411cf dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xd5981e15 usb_hub_claim_port +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 0xd5da5ef6 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xd5ec92f7 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xd5f7d2a0 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd614159d user_read +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68c6648 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd6a18f59 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xd6c49eb3 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd6db1c97 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd70d7a87 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd72feba2 xenbus_read_driver_state +EXPORT_SYMBOL_GPL vmlinux 0xd738d862 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd73a556a put_device +EXPORT_SYMBOL_GPL vmlinux 0xd764d265 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd768fae2 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd790b412 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xd7a8cc79 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7c20d94 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xd7ca0b1d extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7f7f9e2 blkdev_ioctl +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 0xd8321792 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xd853a0ad fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xd86f9a9e clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8be79e1 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xd8c75bf0 acpi_unbind_one +EXPORT_SYMBOL_GPL vmlinux 0xd8c76c4b pv_info +EXPORT_SYMBOL_GPL vmlinux 0xd90b38e5 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd91ea38a acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +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 0xd9501428 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd996d1eb fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f717dc skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xda2afa67 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xda34a389 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xda467880 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xda59ae15 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xda66b067 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xda6c3344 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xda8098b7 acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdaa28a48 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xdac734ad pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xdae1dfbc pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xdaecd571 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf34158 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb15057d wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdb403569 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb4fc9f0 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xdb561160 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xdb5d27ba device_add +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb6e5cd2 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc03e13d ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc160114 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xdc2e8773 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xdc5c06a3 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc733ed6 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xdc75675c mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xdc8038ed wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc89bef1 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xdc9645b6 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca52be5 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xdcb2fdb4 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xdcc80f2f devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdcc848b5 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdcd3837b ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xdce2d4bb da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xdd0508fe usb_free_streams +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 0xdd3c2816 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xdd5766e8 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xdd89f02d wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdd8b3925 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xdd8dc159 xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xdd92d20c ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xdd9af2a7 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xddafeaab bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xddb25038 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdde55753 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde1d3b2c gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xde26548a unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde69c02b regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xde7c17db console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xde822e04 xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xde883c25 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde91df67 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdeba2d0b __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xded028fd regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3239 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf15c9ff ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf3cee5b inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xdf3d3c90 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xdf4a8523 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xdf609469 inet_unhash +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 0xdf767c0d ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xdf7bbb3f ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xdfb27de1 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xdfceb11b wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xdfd23acc fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xdfd2a369 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00a6c95 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0xe00d4fd2 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xe0150fe4 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xe0270553 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe037360e devres_get +EXPORT_SYMBOL_GPL vmlinux 0xe045e319 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0xe055c2d5 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe066e6d1 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe08a311b acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xe0a68c83 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0c23b4a nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0e2821a raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xe0f0b2d8 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe121385f pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe12def56 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xe14feff3 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xe1556655 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xe16ec5b5 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17b6793 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xe17eca1a iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe18361f6 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe187a068 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xe18c1ff0 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xe18c8ce3 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xe1a6d4b0 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xe1b59e5e input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1e03cb4 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xe1e662e8 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xe1e829cb arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xe1e98f23 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xe1ee6b08 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe208fe04 acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0xe26aac30 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xe283c514 spi_alloc_master +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 0xe2af6be6 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xe2b612d7 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe2c45585 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xe2d7dbcc crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xe2dfb22c md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe316948b sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xe3225cb7 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xe351a945 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xe352dd7b netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xe3548321 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe371cd6c blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xe377fee4 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe3781628 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe3a1e40b devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe3a86d1e clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0xe3abad5c irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xe3b203f8 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3b54c2e rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe3b66f09 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xe3b72520 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3ff3521 acpi_gpiochip_free_interrupts +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 0xe439815c erst_get_record_count +EXPORT_SYMBOL_GPL vmlinux 0xe44f05a7 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xe44fae9a subsys_interface_register +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 0xe4a24a89 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe4a928f7 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xe4ad76eb uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xe4bc5653 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xe4bf86e7 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4d65a0b regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe4d8e46e dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xe4e04dcd usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xe4e0e099 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe505d214 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe5294abc pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe54fdde3 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0xe574123a swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5980168 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xe5b6fecf tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5c93a41 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe5cc7ec7 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xe5e0f7aa disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe5e3688e arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xe6075440 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xe60b825d regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xe6145abd bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xe614aa0c gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xe645e80e __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe68b38d7 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xe69adef8 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xe6a315bf irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6b50d03 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d516b8 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xe6d5409a xenbus_match +EXPORT_SYMBOL_GPL vmlinux 0xe6d742eb regulator_get +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 0xe70a47ec pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe73939da irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe75b9ad8 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77617f4 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe78f4a79 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe793aa5c pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xe79910a7 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xe7fbd994 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe809b1a0 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe822b7ac debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe853f53d pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe865f1db pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xe86daf93 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xe86e2200 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe876d7cc dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xe877a16d power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe8c9bf9b serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe8d59163 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xe8d5b9ac init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xe8f66004 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe8ff34e3 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xe91d0146 intel_scu_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9467e52 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xe94e7f89 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xe9691695 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xe973ce62 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xe9751cb3 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xe975533a devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xe981b416 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe9a3787a pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xea02b4dd pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xea0a3962 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea30d726 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xea39f605 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xea3ddab6 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea47812c irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xea486ff3 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xea4c4784 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xea62c1b1 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xea726463 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xea74390a rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xea78dc5e ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea952bea sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xea96bcce crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xea99b795 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xeab0963d devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xeac4a958 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xeb18b8b0 acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb348191 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb49a75e regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeb569bbb kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xeb8095c5 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebb17133 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xebb225f3 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebdab75a skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xebdeb108 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xebe5b6c1 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec187e69 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec1b3c90 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xec258a37 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2f16f1 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xec336ebd device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xec618c77 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec6e025d usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xec76036c usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xec8dc644 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xec966180 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xec9ed1fd devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xecce9bd7 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xecf70734 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed2b5e9c get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xed37a6a6 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xed5e272a key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xed69e793 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0xed7272f6 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xed89f3ad ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xed8a88ff arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedaf52c9 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xede1a676 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xee2a89ea adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xee5613b6 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xeebadcc5 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xeeeafb5d scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xeeff8ee3 regulator_enable_regmap +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 0xef514f65 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xef5f20a3 __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef8bbd88 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef927626 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefad600d cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xefb8fe83 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xefbfde4b spi_sync +EXPORT_SYMBOL_GPL vmlinux 0xf0119d59 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04a1f15 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0xf04c709d xenbus_dev_is_online +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 0xf0828e9e udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xf09332bd securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0de7513 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xf0f094fa posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf10d5271 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xf123b575 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xf12571e0 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf192c469 evm_verifyxattr +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 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2252830 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xf22c5cbd crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xf244df69 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xf260b7b3 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xf260f1ac xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xf265ee7b dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf289f103 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2a0c509 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2cd9ca0 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf2fb08e1 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf3095a78 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf30a5502 cpufreq_enable_boost_support +EXPORT_SYMBOL_GPL vmlinux 0xf30b192f __pci_reset_function +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 0xf31571fe wm831x_device_shutdown +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 0xf33cff99 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf36b9b04 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3904bba xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf39a416c usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xf3b07bbc xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c05e76 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3c89aed tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xf3dd3ec1 atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf3e1eb77 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xf3e8f389 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xf3ebf4eb arch_apei_report_mem_error +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf423d82b sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xf427c5f9 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf44255fe nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf4430a2e ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf44621f3 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xf44a58b6 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf44d4d7a pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xf45aed02 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xf4772ce9 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xf4933c37 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4b06482 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xf4cd219c irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf4d9c5a0 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xf4db6087 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5384c7f __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xf541ae23 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf5478f01 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf55b26f2 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xf571fe50 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5768369 balloon_page_enqueue +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 0xf5cd8d29 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xf5e8ad20 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xf6035a3a __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0xf60b450e gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf6243a6a tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xf62b0b40 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xf666785b regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xf6998c6b sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf6b12815 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xf6b95ac4 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6d017c3 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0xf6d17d94 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xf6de1857 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xf6e178f8 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf762ae99 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xf789b94c dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf7b3f19b fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7d39ddf metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83427d1 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xf83489b6 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xf850d079 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xf8608afd blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xf876a397 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf889122a power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf894ba00 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8ea95c1 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f858f3 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf8f934d2 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90fb29d hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf94f85c3 blk_add_driver_data +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 0xf99bd41e gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a161ef bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xf9af0353 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xf9b454d1 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf9b84018 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xf9bfcf8a transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xfa0365c1 register_acpi_bus_type +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 0xfa602bd6 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xfa741279 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xfa7d5110 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xfa7f0fdc devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xfa7fb86e pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfabecd39 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xfad94660 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xfaf42198 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xfb11ec39 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0xfb16c26a pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xfb254c7d rio_release_outb_mbox +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 0xfb7717c6 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xfb782d61 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfbb12f1f ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xfbb89c1e ref_module +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd0516c nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xfbd1a162 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xfbfc2ce8 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xfc01dd4a virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0d16d8 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc26f6a1 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xfc330502 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc4be6b0 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xfc4ebc20 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xfc6d5c11 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xfc93398d __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfc9fb8b9 component_add +EXPORT_SYMBOL_GPL vmlinux 0xfcba00c7 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xfcc6bc96 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xfcd1fab8 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfcdd1a12 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xfce3082f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xfd1be75e blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xfd51b281 gnttab_end_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0xfd7243c7 erst_disable +EXPORT_SYMBOL_GPL vmlinux 0xfd77596d inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd999b8e ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xfda94867 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xfdb3820b devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfddc1071 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xfe00187a dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe88ea5e usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfebd7923 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed3183a dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xfeda02f7 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff01cea7 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0b2c5d register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xff250378 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2b3a9f regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff2ffa4c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xff56e52b crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff6782a4 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xff68a3b5 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xff8462e4 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xff939d0f usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xff9b3b88 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xffaf3af2 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc0a4f2 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xffc5a7d4 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xffd13d4c pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xffd3cd4c uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xfff62d10 nvdimm_bus_unregister only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/i386/generic.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/i386/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/i386/generic.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/i386/generic.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 +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-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/i386/lowlatency +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/i386/lowlatency @@ -0,0 +1,18875 @@ +EXPORT_SYMBOL arch/x86/kvm/kvm 0x69329062 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 0x4400f89c 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 0xe2d44b34 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x42df5acb uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x354f87e6 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xf3cc4a0b 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 0x18a36c07 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x3240b2fa pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x41e70088 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x5a43687f pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x65e53488 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x9f270f01 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xa6ec09ec paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xc989e5aa paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xcbe085da pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xcde085da pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xd49187f9 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xd5ca08d3 pi_read_block +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xba7a099a btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x15a3f020 ipmi_register_smi +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 0x23d09fbf 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 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 0x90113c3f ipmi_smi_watcher_register +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 0xd31d7f01 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 0xea740780 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/nsc_gpio 0x409190ed nsc_gpio_write +EXPORT_SYMBOL drivers/char/nsc_gpio 0x790d1800 nsc_gpio_dump +EXPORT_SYMBOL drivers/char/nsc_gpio 0xd0c3d59e nsc_gpio_read +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 0x8cfd2d5e st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xaf6de433 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xbaa86fdf st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf31c2792 st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x3d5d3225 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xa987241a xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xde3b7b43 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x013d633b dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x04c56dce dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x21de24ce dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x782d3e70 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd582e564 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xddd53738 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/edac/edac_core 0x07fcd4b2 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0c8e82f4 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x105ea8b0 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x124c1c9f fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bf8b608 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1ccb1071 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3077c0f7 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3a38a6b2 fw_iso_context_flush_completions +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 0x4e83a5bc fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x64df59b0 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x696f616a fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c601533 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6c7cef55 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7357b6b4 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e4e6e0e fw_cancel_transaction +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 0x9172e747 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9ba440ab fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3c60e60 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xabcf7946 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaeade697 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb67b73dc fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6bc21fd fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbc856b08 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc744878b fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcae78cb6 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcbbe768e fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe30dcb7e fw_run_transaction +EXPORT_SYMBOL drivers/firmware/dcdbas 0xa75079d6 dcdbas_smi_request +EXPORT_SYMBOL drivers/fmc/fmc 0x31580908 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x3f937d99 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x4a7bbe24 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x50a1bafa fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x55848e44 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x5851baea fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x765dc732 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x81587c1a fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0xaa6453c8 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xd5e6449f fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xeb0189e6 fmc_find_sdb_device +EXPORT_SYMBOL drivers/gpu/drm/drm 0x003a8c7d drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0092e78a drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00c81dc6 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x011e68e8 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x014ded1f drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01ea0888 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0453beef drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x053b6e7f drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x056249ea drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06842cfa drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0aa7a132 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b2fa065 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c446bd0 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d8fc606 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ddd1e6f drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dfe5f7f drm_atomic_set_mode_for_crtc +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 0x0fde64d7 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x100cc81c drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x109b7079 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1113c45a drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11c8c05c drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x156a9d9e drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16050dc9 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16b4bd73 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c82a02 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18a29067 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e08ae9 drm_prime_gem_destroy +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 0x1a8edefb drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b02a8c5 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f71c4e3 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a19a51 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2231fa2e drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22e5cad6 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24ec0d5f drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2570af3e drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2656dbf9 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2701e7a2 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x272b1647 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x274c53ea drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28c8b31a drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28f942c8 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x295a0815 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ce418f3 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cfef7d7 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2debe497 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ebadbd5 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f6bbdf9 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x301af4ac drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x306fc01f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31cca053 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31d140cd drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x324bf3fd drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33319e27 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3370fc85 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3406fa91 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3441bb4b drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34816446 drm_legacy_rmmap +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 0x392612ba drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39536a92 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a2cc53 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a287d3c drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b4cbc62 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c4fe710 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3da9c4b8 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3dcb5128 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e3ba36b drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f22a77e drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40a0be3d drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x416dc2c8 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42ef2eb4 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46130bdc drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x465df41b drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x469fc770 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4860999d drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48bbcd42 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c03252a drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4df2b17e drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e8d323c drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f0cd4c4 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ff6c961 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5264eec2 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52e2bb35 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53c44a22 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54b8597a drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x566e4d8c drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5878a4d2 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58872cc0 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58dba8d5 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58e32ff4 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59404222 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d5fee45 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7d7c87 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e398a51 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60a5f20e drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61f4bb43 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62bc64a6 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6403b6e0 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64e4bc47 drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65135fdb drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6520c574 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6523eb67 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65a60998 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65b3f3fe drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66105cfc drm_mode_config_init +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 0x6911de75 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a468c21 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c731f77 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6daf6f81 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e6bc9aa drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ed2c27a drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f0426fd drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7117a56a drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7281f71c drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7333fb5a drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7399ae5e drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74cf6416 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7830ffc7 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7892f5e7 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x79bb9ee4 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a9ce94f drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7afcb07c drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b456c4d drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c0a81c3 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d707d3c drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e51bd0c drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f4f6eca drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f90f9b1 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fe78766 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81d7f11f drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x827de515 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x829d33fc drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82d24d72 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82e41043 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82ec03c1 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83daa8aa drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x854bf99b drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c0c61f drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x864ba1d4 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x870fc0ef drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88bd9f30 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89c14c14 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89d02d4a drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a67ece6 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bcf6ea2 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bd9f31c drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8cdb9532 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef7e5cd drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ff00d85 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x900726f0 drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x909f990f drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x915278ef drm_connector_index +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 0x925888aa drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92605569 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92c44052 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x940d3072 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x944c2dfc drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x947822cf drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95265f54 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9898e95b drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x990abdcd drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x996dae76 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99e8bf48 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a7c0ed3 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c14e494 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cc0d950 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d0fdc71 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e46bdb0 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f6ccc45 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f8a664d drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fb2a22a drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0095f22 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1ee7ec5 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1fcd48c drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa281acfe drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2cadc21 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa417849d drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4b1ded5 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa50e072e drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa69b6b89 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa86dbacd drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9caf2df drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa12b11b drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaace9180 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xacca57a7 drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad434595 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae044a29 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae423e5d drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae710d99 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0fc0a7b drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb25bcfab drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb26a9e56 drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb324bb5c drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb36da9db drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5dd0648 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6e36da9 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb925184f drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba7065fa drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcb522d6 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd7a9d18 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe3a4f88 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbefb58bb drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfbdbe43 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc126e708 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc20eb4c2 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2324c7c drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2b402b7 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc611cc11 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc652a9b5 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc78386e7 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8107dcc drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc81da8f0 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8322686 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8f37847 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc91f2743 drm_add_modes_noedid +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 0xcbc46974 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbfa3dac drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcce26a1b drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce072b95 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce4b59f6 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce7298f5 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04cf912 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0596275 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0f0d1a5 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd121a15b drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd446fcaa drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd47f24b4 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd49ebc14 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4c75c2a drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd513b90e drm_agp_alloc +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 0xd7ad1791 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8bbfb38 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd98f77a5 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9c6a389 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda982192 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb2b4e37 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb8c7ba6 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbdf20a4 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd3c3117 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde5152d9 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf31248d drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf6d56dd drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0ce40ed drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4463c5f drm_put_dev +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 0xe5775717 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6d30e6c drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8f81659 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe980cc1b drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xea6a3699 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb4f5227 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb73c896 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed24fa30 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedda73d7 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeef779c1 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefc1cfef drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xefc5f857 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf05b0000 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf068f549 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1421d13 drm_mode_sort +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf18b87c5 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1e1bada drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1f4e7e2 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2033382 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf22417d6 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf352eede drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf54e99d5 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf58610ca drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf621ca0f drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf65753ce drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6ca611b drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf81e44ba drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf82a94b2 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa61daf6 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfad659a6 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb48d001 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb633843 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbcb2694 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbf34871 drm_vma_offset_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc55ff61 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfceb872d 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 0xfd13a5f3 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff51ae90 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfff34814 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02e561cd drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03824388 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03edf345 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0754a9d5 drm_atomic_helper_crtc_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 0x09ab7248 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0ab104bf drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0c823868 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0dda73aa drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e5f7656 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e6153db drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11194eb8 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11b08092 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1202d13d drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12a8b783 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x12c51707 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14eb4540 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x150d2970 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x156f7b0f 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 0x178ee207 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x181cc82b drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1a4a0a1c drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dfde526 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1ef0fe8b drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1f0f6872 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x20b2523d drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2299f61c drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25404113 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a421f06 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a7a0792 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cb623e4 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e83c9f3 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x33502894 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b9d7693 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f3e3d07 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x409111a4 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x41fdc3e0 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x421709cc drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x42650365 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x426906c4 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47c2c540 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bbc2d12 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4cd62e18 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d3f3b46 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4df5db04 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x536c2a4e drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x53cded9d 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 0x548ff22b drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55a263d6 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x564a4666 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x581267bd drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5afacaa2 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x632f8764 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63653991 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6539c819 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x66c68845 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x693e0eae drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6e6c0eb8 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x72caaf96 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x746ff613 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x74e80058 drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x766ea3ff drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7694f93b __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b188a55 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bbdd686 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bddb040 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7dfb5256 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7f3179ca drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8223e96c drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x855ae5a9 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8689ee49 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86fa4357 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89dce2bd __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a04c068 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8be5c67d drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d1d13da drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ef6f1cb drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9063cc35 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x933f050f drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93eac517 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x944ec7d7 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x999824ff drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ab4d27c __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c9f9b17 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9cdb0a8e drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f28468e drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0c0c65d drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1d672a9 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa204d8c6 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2b7bd73 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 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa80a5e6d drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9f02ec3 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf221a97 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb181f0c3 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1aa8f94 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1edfb22 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb29094d6 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8896244 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbb3b6c27 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc996628 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbfe6d328 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0d6f6a4 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6ddaa4c drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7854ac8 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc81c7f56 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca201b19 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca5483d1 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcae93110 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccbc37aa drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcdec2ae2 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xced5f220 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf0cf742 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf1ccdb9 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf2b001f drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd110e62f __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd21321e5 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd24950e2 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9565e10 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdbca0b26 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc75e017 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe28b7333 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3e8e8b1 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4f4861b drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe66a9403 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe73ca12d drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7ae506a drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb702a76 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xebf0c7cb drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedff80b5 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xee8b992e drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef0db239 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xefef5ba8 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0e0fc1a drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf10de130 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf2634434 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf37cb42e drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf498dd8e drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6758295 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfb3e1538 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc1bf378 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd9dfdd9 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfdfc9f17 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff2e16c0 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x01916da8 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x03101045 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05366754 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05eb5b00 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x09996967 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0a185e83 ttm_agp_tt_create +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 0x134318d8 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x138bd478 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15e9d559 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1940e4cd ttm_write_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1acf7406 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21637963 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 0x2933b8e7 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x38d13a87 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a60e787 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4035e7c4 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4919526b ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5019044d ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5278561b ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60ae8a63 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x657c1144 ttm_dma_tt_fini +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 0x6f0c51ff ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73fa0bb4 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x763f571b ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7db0a550 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8252ef7e ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x836d8fd0 ttm_suspend_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x843a1e62 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x845c1fec ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x85a9ba41 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8bf246b6 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8dfadd2b ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91961f5b ttm_eu_reserve_buffers +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 0x963cc18d ttm_mem_io_unlock +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 0x9b2d2fbf ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9ca2c635 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9d4a49d1 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5681985 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa6f7378e ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xacbb9093 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb842fb6a ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb927842c ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd23d554 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc000642d ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc4a657c1 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6d9e1ae ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc8000bd6 ttm_bo_lock_delayed_workqueue +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 0xd24cd8a4 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd762ddb9 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd8edb115 ttm_base_object_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdd8df2e6 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde11ad5c ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xde292c15 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe637529a ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6f5bb1a ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xee3ce28e ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xefa51083 ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf51a6544 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6e6216f ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x7ea382e8 vmbus_recvpacket +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9a26bdb0 vmbus_sendpacket_ctl +EXPORT_SYMBOL drivers/hv/hv_vmbus 0x9a5b062e 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 0xd5e9a0b6 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 0x56cf0492 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x67bc50e2 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x962650d1 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1727b4f6 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xc45e0caa i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x1f03d10f amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x27ce213b mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x283209f5 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5b0b0b57 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x75a84ab5 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7e36913d mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7fc4c7ce mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x91da956b mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x93cc60b3 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x950e39fa mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa70daf6b mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb312ba1b mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb8cb68c8 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc206acd8 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xea309e28 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfb89c684 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfc95b3dc mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x34a81355 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe53b0254 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x50e95eb3 iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb7bfd491 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x1197919f iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3d7759e6 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x79710e7a devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf480caa5 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x20de252a hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x5ab024d6 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x73078412 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xaa412584 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc4658a00 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 0xfc0f4069 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x1b0fe95a hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xd254f294 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xdedfa5f8 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xf5eada6e hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0737a410 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 0x381f77a0 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x541abd7a ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x580cea26 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5b3f6278 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5f16a38c 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 0x96a166bf 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 0xd76be126 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xdf60433e ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x439a3aab ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x59d7970e ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb6f2b90e ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xead89424 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xfd193b1b ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xce79d994 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xcfe19b0c ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xde1ffe2b 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 0x2ad3eb27 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x344a50ec st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x44739423 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x46fbc999 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x57029d88 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6de2bb9b st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6e8801b2 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7d8bc732 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7e45cea5 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa981a263 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xad528c4f st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbd61e283 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc4a932bd st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd213e319 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe443f426 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf2d526ce st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xfe1b0096 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x1a21fa86 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xce7628d5 st_sensors_match_acpi_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x4082c093 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x4de35819 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x5321a766 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x93948180 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x3248d4c6 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x56a5e19d adis_enable_irq +EXPORT_SYMBOL drivers/iio/industrialio 0x16d9c35f iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x17c6a32a iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x23c839a0 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x26e8c2ff iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3d3c63bf iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x4a41d3a6 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x4e66daa6 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x5b0cf067 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x5f29a04c iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x6874013a iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xbd41ff68 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc98c887e iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xca52eb79 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xcf22e2b4 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe47860d9 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xe7351ddd iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xfff5e950 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x90292923 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9e3f96e9 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6f95be0b st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xa0baa0c8 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xc48463f5 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x12abb2e2 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x3faa1964 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 0x6a843758 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9ae03ee7 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9d9cabc5 rdma_addr_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb204b10c rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xeee3f066 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x071ad89c ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x0c493b52 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1edb4146 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x21cb7a66 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x380f5622 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x403f6b2e ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5c11468f ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x67c7c642 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7bdbc1b9 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x817e44fd ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xaca8c4f3 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc5f4a2a4 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc783081c ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd3e0629f ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd5063117 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdaf3afe5 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xeac6c4f1 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf86dfcd4 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x017814fa ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09abb743 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a4f23ae ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f0652d7 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1318a164 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16717616 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x171a82f1 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21e97749 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2384351d ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x28bdb613 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a799dee ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c27a4e4 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cc9ef06 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f5cdfe9 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x323ef244 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32cb164a ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3761cae3 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x385fb377 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b72d501 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d130cd7 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d78c9b0 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3f46acaa ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3fb0b554 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x406f3211 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42e70888 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4903cc13 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c677b27 ib_get_cached_lmc +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 0x522ab06a ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x54f0ba03 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x563b3f1d ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x61ce80ea ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x640301a3 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64252628 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64573cd0 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x660e5b3e ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6734bb82 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x676823f2 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68544236 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x68c2d3f7 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6bed13e2 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c679278 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6d67e5c4 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6f916ec1 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71b9b273 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x75fbfe85 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c1eee53 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7c7f3a1b ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fa08187 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8192b0d9 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x823f2740 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82e0d9a7 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bab523c ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9185baa8 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9987e41e ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99ad56c0 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d2591ca ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e35ac50 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f309c71 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0501c47 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2c211d5 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa52de8d1 ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa57da4a9 ib_find_cached_gid_by_port +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 0xaba4132f ib_sg_to_pages +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 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3dc2356 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc4bc4e3b ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc59b2134 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc849ab63 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca7a8c4e ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc94e3ad ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfeefa98 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4699dc6 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd6e69428 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe11d9034 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe29ef7b7 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe53ff89c ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea72e42c ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf02c67fe ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5f959ab ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7092bbf ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb03fa5a ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfbe7a75f ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfe678368 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfeb96a99 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x0913cf0f ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x178482bb ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x24a38b83 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x310b0e55 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x47366512 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4c07eaa9 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x627373e2 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x627dd72c 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 0x8c22afb4 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8dd83355 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa40b04ce ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc5eedc33 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xeb8f464d ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x01189746 ib_init_ah_from_mcmember +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 0x2adc1e9b ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x36970be0 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x7a411547 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x90215b63 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa518ffa7 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xa7b07f03 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xce9d2707 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_sa 0xf8ca4e5d ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x01857e1f 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 0x5c07ef16 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 0x146c3239 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x22571586 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x28d3a2a5 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x62e6a3f5 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6aa1bbab iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7552bdbd iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8375b838 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x88181d8c iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x88b897bc 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 0x91c11527 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x92533ed8 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9327be67 iwpm_exit +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x94f79751 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa44d606d iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc1fb7185 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdd16fdf4 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1066a5de rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x121b9e75 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x28526ff4 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2a402a39 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2b484014 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x30ed20a4 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5fcf1d9f rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66e93310 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a0e7f26 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6d8c02f5 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8181acf4 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9c665855 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb833e41e rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc034d141 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc21bc734 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe940c03f rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9c4eb4b rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xeae64b62 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xec80a63b rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf084de56 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfc2f9bb6 rdma_bind_addr +EXPORT_SYMBOL drivers/input/gameport/gameport 0x04ba5309 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1069672f __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x34e5fbd4 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x5316235c __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6d0f710e gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x74fc250b gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7bc4eebc gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xbb7bc829 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe91aab66 gameport_unregister_port +EXPORT_SYMBOL drivers/input/input-polldev 0x02e49130 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x2f51f07f input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x42087f7d devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xd20bead1 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xfbabcabd input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0xd93e4ccd matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1e81fff8 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3a8c5152 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x4bebf181 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 0xb92055fd cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4b0263a9 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x645fae39 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x6b5c2952 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x98b011db sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xcbfcd61b sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xe35e23cb sparse_keymap_free +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x6f80ef5c ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xea038c77 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 0x21027a32 capi_ctr_resume_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 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 0x6e5b88fe capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x71d66812 capi20_put_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 0x7e6f1307 capi20_get_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8fbeafba capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa5251636 detach_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 0xaabaaa76 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb19fda8d capi_cmd2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb3cb7460 capi20_release +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 0xc4332b7e capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe73b675f capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe8ad9bd1 capi_cmsg2str +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd666907 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0984368f b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x153934ce avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x46fa5bd1 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x610a6810 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6b6b7ddb b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7dc83c57 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x822dd28d b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x84f461c2 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9d310772 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb09d0bf8 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb5a4d412 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb5a94335 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb9cb9697 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbe00935b b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcbad181b b1_register_appl +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 0x3f159e45 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x60d367e5 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x978639e4 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9ae68423 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc02d45ad b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc5f21685 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc6095da6 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xcd05f691 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf4613c87 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 0x49eff7ef mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x55cbe956 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa54b2ad9 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xded3171f mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x4b898aff mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x680bdd8f 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 0x862e241b 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 0x016b3d21 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x053b6bee isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3fb844ff isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6b2b3f1e isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x85895564 isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x8194179d isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdd4323b3 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdf08f03d 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 0x0f00a4dd recv_Dchannel +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 0x3cdc855f bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x432a62bc queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x45cad55b mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x51bf64f8 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x60d3c30f recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6570243c mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7343bd37 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7837079a recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7d218432 mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8d181d2c recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8de8fc0f mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x91a196c8 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x96fccf2f mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa416745d mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xac9c3601 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xba2e4093 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xbd58a333 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcaf8d3ce create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd2a26f94 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe4b4c00c dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf6a19c2f recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfa8e0585 mISDN_unregister_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 0x0490cd9a closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x44b3e1bb 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 0x7858f6ae closure_sync +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 0xc04554f7 bch_btree_iter_next +EXPORT_SYMBOL drivers/md/bcache/bcache 0xc5b0b9eb closure_sub +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 0x0a978102 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x3e714f05 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x44cf95c5 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xb1f36351 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x04b0efac dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x083bd375 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x1cc1db42 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x59cce4fe dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa5cd50ae dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xbea72506 dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0xf72026b2 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3bb4891e flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x64aeb092 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x88fee5c9 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x8f4fc5b7 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9327774d flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa57b085d flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xabe74b29 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb84c0387 flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd94df3c1 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe2106748 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe55e848b flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xea46cddf flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf28881a9 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/cx2341x 0x0cb16e18 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x18481189 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 0xcfafe669 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xdc3300c8 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x8bd4dcdd cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x0e4806e5 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xe3cbfb30 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0732994a dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x13b20a69 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1b64f452 dvb_unregister_device +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 0x363892d4 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3ee8cfed dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x40cc1fab dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x45f300c1 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x45f31f6f dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4b5682fb dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4e8c3ef5 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4ffb0677 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x58c0b3ca dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a0e5410 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5a6f883d dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x61c4bdde dvb_dmxdev_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 0x752329d5 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7f6f67b2 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x83920914 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85190add dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8db31d94 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x932ea408 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9562ab26 dvb_register_adapter +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 0xb1293b98 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb32dc0cf dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc645fbc3 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdf8ab3e9 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe3406489 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeafb0ece dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xebd38af9 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xec7f5cb7 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xed135654 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xefe6e436 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf2b07440 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-frontends/af9013 0x9f639658 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0xc82e3193 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x8a730a03 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x14eb5767 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x35889b3a au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x493fbd13 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5d3a2e6e au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x713b92f2 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x8d4bbcc6 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa08a1f03 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xae0c5366 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xfec08123 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x705aa3ec au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x2101d28e bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xc4ad813e cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x07691bff cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x0b344de2 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x6e89d509 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x7d223bdd cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xb1ed0c34 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xac9d49db cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xdea7fc80 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xec536577 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x58201a0e cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x44beb69c cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x56ec8584 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xbcafef30 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x24479d32 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8e5c97bc dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x9c1a24a2 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xb5a225ba dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd8a14ea0 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x256d2d18 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2a901d2c dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2cc6264e dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4736ae3a dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4b6b84e2 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5cd41a46 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x792b7771 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x92aab5c2 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x99f00dd1 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaadbbf81 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb412f25d dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc05743f0 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc9d7d950 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf06d4a70 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfc54281f dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0xd24acddd dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x38f110b3 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x493e1cd7 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5f471740 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7101421a dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x792b3feb dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x96615b0f dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x1c4bed7b dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x2665424b dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x840f74c3 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xcd255599 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xe871638e dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x372d8f4b dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x07ccc75e dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6c86af67 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x75da59b8 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x827d96f7 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x8ece8968 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x7a62b9f5 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xdfb108fa drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xe1aac2f9 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x5f9307aa ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x9413d61a dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xc218981a ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xf0bc18ea horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xef3e7a4a isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x05af8d6b isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xefa6c520 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x7458d656 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xff12e2c4 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x1ce7e815 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x6a48886e lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x07ff9a62 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x7a094959 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x28e9f916 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xbd68b142 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x2a270ba8 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x9cf56b80 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xf4fa509e lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xc99a7e00 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa669f289 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xcb457665 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xecd042d4 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xf58ddcbf mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xc8239b52 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x5471a713 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xfad348be mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x415253ce nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x93d0db34 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xfa8ca3fb or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xd619a0af or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x270fd84a s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xf4f48dee s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xc5e40c2c s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xd238fd97 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0xcf431196 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x30d013e8 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xb83e7920 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x2f0b5f8f sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x7cbe9d4e sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x65efb8e7 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x239cf427 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x6ff3c441 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x212ce7af stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xed2f84e6 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xd4b2fc95 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x953e3c07 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x9667041d stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xc0b6d990 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x18242328 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xc1782a0b stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x7c7c0994 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0xe66ed84f tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xc6b06553 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x8bed13d3 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x989ea9bc tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xac8b01d4 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x71f28857 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xa76ec9c6 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xa9178162 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x5b22f753 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x784deb17 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xe25196ba ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xe85669e6 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x4be621e5 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xc9da5ba5 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x8b0d72a6 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x6e021c5a zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xb30f650e zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x02651c81 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1e045915 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x2f6c4bdd flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4f044cad flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7e46bace flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xa0e1507c flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe4a7bf6b flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x2b7a47db bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x579971c2 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9e445956 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd90cd998 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x2476ff19 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x3b550e98 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8797aadb 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/dst 0x0922d1b4 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0e9f7f9b dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x21beb9eb read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x636132bd dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x67eaefc3 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x812734e5 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa55097cd dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc5165218 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xde8df8bc dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xc44fbe51 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x02888e97 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x50ae95b8 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x656f1f70 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x828c6cfc cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf2c938d4 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x8ddf5d33 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 0x0f4b4a67 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x140e9ee9 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x1ba667c2 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x2e5ce3ca cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x66f4bc6a cx25821_risc_databuffer_audio +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 0xe7faa846 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf04145f4 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x92463cd4 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd4379a60 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x216b5255 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x7df28b0e cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb6b11a2f cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xf37c993a cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1808934e cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x38850c15 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x79bac95c cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa526bd34 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xa7c20dbb cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb69ff1bc cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xbd23cda8 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x039aac4b cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x20e46858 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x25251203 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2647662c cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2f0c7a56 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x491cc719 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4c3ae40c cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f1da5a6 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x539db62b cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5b05a28c cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5beaea0d cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c72e99e cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5edc1a04 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a531f4e cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6c7f6730 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x78e0dc45 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7ee6047b cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8fd793f8 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb2214e61 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xecf51dcd cx88_reset +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x17138c07 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1d8ac66d ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x21e1fd33 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x39c3c3f4 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x427713f0 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4fb11f79 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x508b025b ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8171a37d ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xae0689eb ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc23a8cb8 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc75a9880 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcb2d4df8 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd8421100 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe53612fb ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe760e4ac ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf04e37aa ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf62ee360 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x02b0a329 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 0x5e1c675d saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6a523265 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x728633dc saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7b7baa12 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7f5e2972 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x85103997 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa76d6a76 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa7722c02 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe2d90f94 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xf04b527d saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfc406a16 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xcbc8541a ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x6c1d4984 videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x949e9064 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x99b086c1 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xc8e852fd videocodec_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x1b494234 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x20a41d25 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2ebd2bd4 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x37877bf4 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x723b00e1 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcf756f9c soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xfd9f6fa1 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 0x178d4242 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x21fd0e75 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x80fbc81b snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa0b490de snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa875021a snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb12d8473 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xed1ac4aa snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x333a4fc7 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x33d49cee lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x45f27acd lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4d0d1d72 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x558fe3b5 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb50c994c lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb90f61ca lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdea25d73 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/rc-core 0x63bcdb43 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xa2dbbfa8 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x6e3e5f4a fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xbf4d136b fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x22c3120e fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x967865d1 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xf19257a3 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x8d8d536a max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xcbb75c2e mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x5912c553 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x615a7276 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x0e9df41f mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xd2577b51 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x7732f735 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x505d3292 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 0x0b59c003 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xc84ed3c0 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x7ade274e xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x30c4c275 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf404ae3a cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1e7e2227 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2b1a0c89 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x535a7b89 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x64da41d1 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x6eabe30f dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x78250345 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99b52ed4 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9bc618a6 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf97533fe dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2e761d9b dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x52d568cc usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x55ec4262 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x590a9853 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6531948b dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd955a2cd dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xfe98928b 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 0xc300ef46 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 0x070e801b dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x1e58ec2f dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2ea04a26 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3eabbaf7 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x52b33791 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8f00b5cc dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb230e804 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 0xb4ac373e dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xbb70249a dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcc4b58ac dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe21103ad dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa06630ab em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xdd5e3e1c em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x00488010 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x02808c60 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x222c39a4 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x23bae15c go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x35f687ba go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x41add9d1 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaee4f520 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbba6055c go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xebb85904 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0c895fea gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0e60f509 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x191c4315 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x329b4904 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5bc8e927 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x8483959c gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc02d7389 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xedb06d10 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x3b997d29 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4089a0f6 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x985c57f8 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xc0692288 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xebae2342 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 0x663084cc v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xb100390a v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xffd68a14 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x05e71730 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1b9279c8 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x33897163 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x5ed1e229 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x76cd11e8 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd2e4d1cd videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x17a15373 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xbf1c5bb5 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x35f0af07 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x54800322 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x5ea06600 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x627445bd vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x9597978d vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xa4c57a91 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 0x87502f90 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x05b9bea1 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c5ef447 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e9c2c96 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1564a1b6 v4l2_ctrl_new_std_menu +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 0x1b6d4a46 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1c5da0d1 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1f1c1058 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2012aa39 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x214d4c02 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21ff0175 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2380d2ce v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24e7098c v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26f687b0 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x289977f7 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ad32f14 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3279641d v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x370fc79a v4l2_ctrl_add_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 0x3e6821dc v4l2_ctrl_subscribe_event +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 0x4a872cbc v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ad99703 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4db56e48 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e28a6e1 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a59e4fa v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5cd3c90d v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63711bf7 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6958df1c v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b9a7fe2 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f38e395 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f69eef1 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x75ac1322 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7825f202 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79d515e9 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79d67e69 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80be73ae v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8ee6457d v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x931f141b v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93633293 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x93949e65 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9fdbcabc v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa06572e0 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa107d167 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1bba1a9 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa4b8abab video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaadac49c __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xabb10694 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad2049cf v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae605273 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xafb6f936 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0a827d6 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1d8f672 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb229a622 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb2746ed0 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb31ee7a3 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb91f7047 v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbdf6bf1 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbcd94062 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc11ec4f5 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc757d6c4 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8143e72 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcdfc9b75 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0a4bc09 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdae4f8ff video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc8383ab v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xde68e020 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf0fd8a6f v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfb3da5dc v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe829dc2 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe82a5d0 v4l2_subdev_init +EXPORT_SYMBOL drivers/memstick/core/memstick 0x007cecff memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x49ea2c3c memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x542e168e memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5c782925 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9428dd2e memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x99d12797 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa66e4e93 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xbb620199 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd3c8debb memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe88456aa memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xecdad752 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xee32b4da memstick_next_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x02732a73 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1835567a mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1be53514 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1ca8861d mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x348126e2 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x35d9625e mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x37dc0b71 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3939c97b mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4ad6f978 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4b08ecbd mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b5623c5 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6153f559 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6479df4f mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x668cd850 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x699f503b mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6ec9620c mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x71db9148 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7ab3689f mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x86930a3f mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8e292775 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x905deecb mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9b29d1a2 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa84ab0db mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb04a7735 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9140f35 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc0e69f82 mpt_device_driver_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc1377575 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xc47c22e8 mpt_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd1e3e80e mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9e35f89 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xff31595c mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x02c0575b mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0e66afae mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x23803b30 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x36f0203e mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x38a6883b mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3a60468c mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x457a4045 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x48f21142 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a7b19a2 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4e9d7769 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7653415f mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7f39c147 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x854ad89b mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88afcdb2 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8cd7a891 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x985c4877 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c4f188e mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa55893d5 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xaf4a0c45 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0b17d8d mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb4fe3e2b mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb943eccc mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc66a0c64 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd2f3ddc3 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdd09b370 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe6c69fdb mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfd932ea1 mptscsih_shutdown +EXPORT_SYMBOL drivers/mfd/cros_ec 0x08a4f9da cros_ec_register +EXPORT_SYMBOL drivers/mfd/cros_ec 0x3a49ada6 cros_ec_resume +EXPORT_SYMBOL drivers/mfd/cros_ec 0x6425460a cros_ec_remove +EXPORT_SYMBOL drivers/mfd/cros_ec 0x79cdc397 cros_ec_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x07a73ca6 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x91235239 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xb29433e5 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x0010fa37 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x75bf177b pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x26f9a0aa mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x38d2fd39 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3ba825e4 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x43645965 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4d29f693 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x805dda8c mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xbee35df2 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc00aebd9 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xea7d42d1 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xeb146d36 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf4b868b4 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 0x00fa0c39 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x61a94eb3 wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x02286b61 wm8994_base_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x1f1a82b1 wm8958_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x2d203928 wm8994_regmap_config +EXPORT_SYMBOL drivers/mfd/wm8994-regmap 0x8078809c wm1811_regmap_config +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x8bfb17a6 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xeaf715fe ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x075983d1 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xb2012b80 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0xb911fc7b c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x295bbf68 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x63b6d1e0 ioc4_unregister_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 0x1d29380a tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x23d47f0e tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x4d304dd0 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x50b86fa0 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x6fa83af5 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x7e7414f5 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x8068cb72 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8849ad16 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x97d3fe6d tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xef2d2ed8 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf48b4284 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xf63f88bb tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x991f5916 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x473d3604 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x4c4da029 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x7ec8b94e cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9987886a cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xa3d1732a cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc771ce38 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe0021932 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x226a6fbb unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc9775198 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xdd2e5329 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xee903685 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xbc9d1031 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x718fbb05 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x6603e300 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x45e6c991 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x7e93f647 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x8f01dbfd denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0xa3c07da2 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0985d4fe nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x9790f07a nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa63ebba4 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xbd8ff605 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xd0a0333e nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe0212eb0 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x221ba567 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x5a7afb23 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xf20c6b8e nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x7175dfc4 nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xb4b94377 __nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xfda87684 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 0x491db253 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x5618cc5b onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xbaf07160 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xd2410786 flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x120090b7 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x193f797b arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2f278763 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5bb74ec3 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x605a6df7 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6935fe70 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6a77e94e arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6ace54f5 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6c77fe77 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc65c5a5b arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x6c7231f7 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd24ab0ea com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xf5077285 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x26cb6777 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x4891e663 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x51bc7691 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x693edd53 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x73ae8417 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7cb6d6ae ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7ef2addc ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9802c5ba ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbcca7e7c ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc97f40ad ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x1b8fec26 eip_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x1efbc1e8 eip_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x30345112 eip_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x3f65612b eip_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x40efda60 __alloc_eip_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x541d5e25 NS8390p_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x8104149d eip_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0x99c03fd7 eip_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xb739cca9 eip_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xd5fb5f19 eip_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390p 0xfd7ea298 eip_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x408d8750 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xd8ac2ec3 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0a642475 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x155f1319 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1f22eb5c cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x21210b8d cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x23ea54a3 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x52cdd9f7 cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x55c5d935 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x652d2388 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x93c84451 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9eac72ce cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa959b360 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc6a36dbc t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc86abc58 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd63c23f6 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd97008b2 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xfe90fb65 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x082d9e79 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x141ccff2 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x18b1596d cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a00fe16 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x22d371be cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2575052b cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x30c34e87 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3273364c cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x32adcf38 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x345f467c cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x35d51ca9 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3c7a2ed4 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 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x740b8efc cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x78671ddd cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa02cf089 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa2708e0d cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa38855b9 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa9b08f88 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xabaa8733 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac942967 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xae6ecc70 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaed9933b cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd945d1b cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc26d12df cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc466866f cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc92af569 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xce7b61a0 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcfc05a09 cxgb4_pktgl_to_skb +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 0xdd6edd44 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe27b7849 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xecccfcfd t4_cleanup_clip_tbl +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/cisco/enic/enic 0x2818d55e vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2ec44cca vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x6a57a94c vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x83fef6be vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa109262f vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb3e3bcd9 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x11c1d767 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xaf3f8bd0 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 0x0f27632b mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13e3531d mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14e14f44 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1797fb53 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19d6a6b5 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b8a86e8 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x216d8fd7 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x307a7d83 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35e1fc23 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3ae5c050 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3fec7581 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47742d7e mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4825e9fe mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640fe048 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x73401b08 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x78f4f52d mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x892d7121 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x896c9070 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9056f8df mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x926c2bed mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9603a571 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99fa515b mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a2b8170 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa3c50a4 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4fd1880 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5aca10e mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5d634e5 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8484ed7 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8768b15 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb8c7e9d4 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca60508f mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3bb1502 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd59a90fa mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdd9e2e4f mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfe697b5 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe00d8970 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf819802c mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc376149 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00547ab2 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x046a985e mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05f2cae4 mlx5_core_attach_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 0x0a7d08e1 mlx5_core_create_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 0x11de63f2 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x186d2303 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a2744aa mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f1a99e1 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c864015 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32c632d0 mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3349ce13 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a1419a3 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4396608a mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x490b1b45 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5799787b mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a60c8ba mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62ded591 mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e7b5e3a mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x721d3b85 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x732f259d mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84138537 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9406ff2f mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b522c99 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaab681ff mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb0a4261c mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb578c2ee mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf8b10c1 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc58f165d mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc97ade7d mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce72be3e mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xda50a589 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdaad22ca mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdbbfd1df mlx5_modify_vport_admin_state +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 0xec34a8c6 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee79dc75 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xef64ba9b 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/mlx5/core/mlx5_core 0xfd4ad09f mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfdee4e29 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0ceafec8 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x1bf8a45c mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x229019e2 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x341b2299 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x491eb0bb mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4d851ace 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 0xc15cfd92 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 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 0xaec2933b qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x11e5bef1 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x55d817e1 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7412b5cb hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xc484e1ae hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdd418d01 hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x30906632 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x38498a80 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x459a2c57 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9ff900b5 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa1a7b794 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa6ec29c5 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc7c4500d sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xdff97b8c sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe8fde0d4 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xedeb2b4c 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 0x12b41c71 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x3ed89ede mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x440c4ed0 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x58452b4f generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x68423d04 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x71b336fc mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x75cef419 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xcaceb8b4 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x5f50fcc6 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x7d6efe7c free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x07492157 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc4f274b6 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc7cd5cc0 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0xc0bc348b vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x18dcb77a pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x58c9a1d7 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xbcbbb023 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x098c0392 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x2037077f team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x4ac3df3d team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x55e3568e team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x5d930cad team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xa09e81a8 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xa2ff8935 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xef10e265 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xef69f676 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x198a8336 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x34fd5a7a cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x57f5b0f5 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xdd6c1197 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0183c374 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x052b84c8 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1c24c851 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x29ac6d04 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3bc84dfd hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4c4da7c7 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x54c0b6fa detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x578db719 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbcb00b25 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xc63f5ca1 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe034990e unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/z85230 0x10c78988 z8530_dead_port +EXPORT_SYMBOL drivers/net/wan/z85230 0x120354c4 z8530_sync_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x17282fe1 z8530_null_rx +EXPORT_SYMBOL drivers/net/wan/z85230 0x19938a3f z8530_sync_close +EXPORT_SYMBOL drivers/net/wan/z85230 0x22c7389c z8530_sync_txdma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x3253f447 z8530_init +EXPORT_SYMBOL drivers/net/wan/z85230 0x4da8303d z8530_sync_dma_open +EXPORT_SYMBOL drivers/net/wan/z85230 0x5085fdad z8530_nop +EXPORT_SYMBOL drivers/net/wan/z85230 0x5cd24d29 z8530_hdlc_kilostream +EXPORT_SYMBOL drivers/net/wan/z85230 0x61b55c21 z8530_sync +EXPORT_SYMBOL drivers/net/wan/z85230 0x750d924a z8530_shutdown +EXPORT_SYMBOL drivers/net/wan/z85230 0x7c139795 z8530_sync_txdma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xbc255370 z8530_queue_xmit +EXPORT_SYMBOL drivers/net/wan/z85230 0xc206c014 z8530_channel_load +EXPORT_SYMBOL drivers/net/wan/z85230 0xc9163706 z8530_describe +EXPORT_SYMBOL drivers/net/wan/z85230 0xd4ffebf0 z8530_interrupt +EXPORT_SYMBOL drivers/net/wan/z85230 0xddad6be3 z8530_sync_dma_close +EXPORT_SYMBOL drivers/net/wan/z85230 0xe3d80064 z8530_hdlc_kilostream_85230 +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x5e2f9b40 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x62f5bd69 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x79a59e35 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x9daae04b stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x01d0bf2f ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0761ac88 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3073494d ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3ccc7429 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4673e4cd ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5d8d6ecf ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x6574f43e ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa4146cda ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa94e1952 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd1343316 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe3b5bae0 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf084d313 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x12efbbba ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x16c40f03 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2495bdb3 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b9e0480 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2bb063c4 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x425baf71 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x50f74c84 ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7ecf785c ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x80e8abdb ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8bf1ed62 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x95c37648 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb4134d6b ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcc37cf31 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd498ad6d ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xfbda0f26 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x09cfed07 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1cb68b29 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x454e21e3 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x461decce ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x487a07b6 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 0x824a8688 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 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xac491c15 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd9d254fa ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xec40c976 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xec76eb53 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf215ce15 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x09204d1a ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0b349a58 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2037bd91 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 0x3861acbe ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x438bb147 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x509317b8 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x72f7e973 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7c3fa6a7 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x886f8374 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x917cd102 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x9dca5eb3 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbfd5df26 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 0xd7273bdf ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd7606976 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe106eb5a ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe4c056a7 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe8f3b846 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe938430c ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe95b22ef ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8181c3d ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfa03c2d9 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfdf0d4b6 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfed4743c ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x000622c4 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x02cad61c ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08c3c3f4 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09882e1c ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a3afab6 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ac0cbac ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d1cb822 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x113b5f6f ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1589f493 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a44b8d2 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1e8a97dc ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x214b8163 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23085ef1 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x250cc598 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x28895498 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x29a6e6b0 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2afcbf38 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2b705f69 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e1cd571 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2fa3d66c ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3308aaa0 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x36b993dc ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3763caf9 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x435ac077 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4446bf34 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48cd5548 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f44dd41 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5002aa0e ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5041fc0e ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x52b9529e ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5495fd3f ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x556c5036 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x571280dc ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bc337c9 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d28940b ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6576bda0 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x694786a8 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e970683 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6fc314a5 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72529644 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x754fb5f1 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x77016644 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78e688e7 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ad21e40 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7c1a61e0 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f407d15 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x811459bb ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83b1fe72 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84e66c74 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85e73922 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87fdbb69 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cdf1b9e ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cef9c8b ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d5d1b2a ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9079247a ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9240779a ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94163564 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94385454 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9462d182 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x98e97f08 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x99b72fbe ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9afb00f4 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f125836 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f1dcc04 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0630690 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa08a1f5f ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa08ab416 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa08ee5d7 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3fab55f ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab5ff35d ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xadae1d9a ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb25e1f03 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2c762a6 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8f1b311 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbb30baa8 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc198f56 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd77870e ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc2c8597f ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc327a744 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8bbcb06 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd09e3de ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcddc89ed ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd07da3b7 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1c5f90c ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4017215 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd48a7431 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd599120b ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd7989354 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8df185b ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd994bc4b ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda8bc887 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb459cb2 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xddf81401 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe18f1611 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe79691eb ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7b9bbaf ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe90f3ef2 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaa3ae0f ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xed74dea9 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeed04746 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4beb7d4 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf51b8ce9 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf9dd3dff ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb0d6019 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfc6c1c72 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x1750c231 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x652f8dc7 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0x7013ee40 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0b3f03e4 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x299abd74 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2ba466cf brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4422996f brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5ebb4a3a brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x775dfd18 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x79736be2 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8229a1fb brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x96928ffd brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb853e58a brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb85585a8 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbc798a92 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xeffa8580 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x016746f0 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0826aca5 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0b5a1dd0 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x11e3b959 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1b8b0c4c hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1fb7a160 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x268fc84a hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x41206a8a hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x451ef1b3 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6e30e2bb hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x77ff6154 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8f4cb06b hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x98c900a5 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa02c822c hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa2edec46 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb0b3da8a hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2a945e0 hostap_dump_rx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb2f99a7b hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb33bd7be hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb4b77c8b hostap_80211_get_hdrlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbacf1e14 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc6008411 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xca01e30e hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xcd33bca5 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xce219335 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdf2c2c65 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf1c3ab92 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0f10a033 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x114400c6 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x179cdbb9 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x19877207 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x21b1c4fd libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x42a5313c libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x45526dfe libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x70cd5356 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7f2404e1 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x90d31275 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x91fee93f libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9297be10 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x976d13f6 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9b6f6a93 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa99e77ad libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xab8ff3c4 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc50f5793 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc985c381 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xd185df57 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf1272a16 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf2d62ae1 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00ae65b3 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x01cd8852 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x03bbd844 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x03d2ebd0 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05abcc43 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06b01f60 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1acf22e9 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ad5fb45 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1afd8cd5 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1cd57457 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d55406e il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1dd90379 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2036dcc0 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24a06697 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x24e2ccc5 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x27b28087 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x28c9addd il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a2b814c il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a33e91b il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2a6fd0f6 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2e389282 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ece4893 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x345d3679 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3542ebf1 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x36241180 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x397c13fa il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c47518a il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e53e142 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3edb8fe1 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f02db10 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40ccb9da il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x44e1e6bc il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c1a74f3 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4ca30778 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e0a13b4 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x50a02484 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54c178d1 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56d86aff il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5a326bc0 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5a41a029 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5b835a0e il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f1935a0 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x68156979 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x69ea49df il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6b73c34f il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f310f07 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7340d1b1 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7378aac4 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x75442865 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76f55801 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78542dcc il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79a2b2ca il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7f510fc1 il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x807f94a7 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x834012b0 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8540ad8b il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86179382 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x86dcc479 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x87c1b643 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89516984 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d699f84 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8fa18750 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x90e1ff45 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93293667 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x950ad59f il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9cc55501 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9deb0a0d il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9e848d5d il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa1aa373f il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa311a381 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3a4e32f _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5ae56e9 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa5dc799c il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6692a0f il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa81e1a3e _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb31cfcf5 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb478248f il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb4f7f33c il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb58ebc8c il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb74ced89 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7cca920 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc01a3fcb il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc108a1c8 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc923597 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcfd2c854 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd5909bf4 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd5dbaba5 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8b06ecd il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda1c2550 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdfa902cb il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2bf0a95 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe41f3b9e il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe4e6f440 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe818812b il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe92691f1 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xea2ec62c il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xecfa083f il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf091ec3b il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +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 0x0a2156dd __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0b273471 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0e35e0b8 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2b93cc9f orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2bb92723 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x60e109ce alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x61ff92e0 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x67515722 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x795bca78 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7fc6643b orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9bacfc40 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd018434f orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd921596d orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xdae6602c orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf245d564 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf765968d free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x10c9a8a2 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x017e3999 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x09ed23a7 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0bc18a32 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0c21ff0b rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10f6e191 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x13247d7c rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1be09c7e _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1cebda96 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1cfe3654 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x24ba6b07 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2ef5badb rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x33fea94c rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3daece0e rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x403ff307 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x45b1f3ce rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x473693e2 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4c990af5 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4e036279 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x556335f5 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x58025c9c rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6131c82e rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x69d588f6 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d00f3b0 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6e7c8d04 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7096f54d rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x80a9ea34 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x882ab371 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x893895ce rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x938ace7a rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xab40ffd4 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 0xbd29f13d _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc81c0a1b rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcbc6342c rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xccbd381b _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd5f44e83 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd8292447 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb6b0a3d _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe6154951 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0ca1879 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf4a80d13 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf68bb130 _rtl92c_phy_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 0x0c212690 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x2d21c355 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x782081ac rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa2eb5b86 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x2e034383 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa16548a5 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd28b508a rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xec8386d0 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0e5d3753 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x19c2089b 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 0x24456b83 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x276cd697 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a218921 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4f3ea1e5 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5fa879ba rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x72f8e4e9 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7f183aca efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x87127a6f rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x932c7128 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9d1136c9 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9e53e01f rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3a4c730 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa468be8a rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xab7377a4 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1237673 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5d08a13 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbec78072 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc01fe8ba rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcbd8c619 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc87432a rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda2e5181 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf9a536e rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe27ac733 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9fd0652 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedcea50b rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf28c2194 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x19850cea wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x45abb630 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa21f9230 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xdfdc1b41 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0894e78b fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x2b5dc4c6 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbdf9748d fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/microread/microread 0x8dcac5a9 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xd720e6ae microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x01106302 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x1cfd0c0e nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xcaae904b nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x82cea32a pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xe35cbcb5 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x17dd3d33 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x466a9004 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa2f409a3 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x150fb25b st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3324dd10 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x44d99b97 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x70cbfc55 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x77b7bda7 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9ce1fb38 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa2664e44 ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc262f8ac ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd346c341 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd40dc897 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfa943037 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0ff62d25 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x119e11fc st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1354ba85 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1b584298 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1db8547f st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2be39c7f st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x572f3abc st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5a6ff3f2 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x63a373fd st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6770e750 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7c8ff972 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa76a120b st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaa9d34ea st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb87485f2 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xce0ae3ed st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe4b73756 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe8159cc9 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf4c57539 st21nfca_hci_remove +EXPORT_SYMBOL drivers/ntb/ntb 0x2f1d5c9f ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x39f9ce79 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x4faefe1d __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x523e40c9 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x573651f5 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x6e7d7936 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x826ea47f ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xdedd5dde ntb_unregister_client +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x2f2b61b7 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x5b80677b nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x67a147df devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0b9a5e3e parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x1ea965af parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x24f230e3 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x32e751fc parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x34d8a7cd parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x373c1e3c parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x4b161f0d parport_read +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5691c4c6 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x58061731 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x849b5554 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x8cf792f1 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x923b5e0e parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x9b76105e parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x9befbe18 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0xa1022a58 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xae926f1a parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xb02fa230 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xb12f8e16 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xb5fc4707 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xb756c315 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xb7ca12b3 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xb852087f parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xbd6840aa parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xcba89c2e parport_write +EXPORT_SYMBOL drivers/parport/parport 0xccdba4d2 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xcd13e3c1 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0xdd37aaf5 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xe0baa64f parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xeb33e845 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xf263ca62 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xf2aaf71d parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xfdd14e67 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport_pc 0x4d9a010a parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xb8665a8d parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x04938da0 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1009b749 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1e398f09 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4243ce52 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x475734d7 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4f260a03 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5bad85de pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x624edd03 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x69a9df3a pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x76a1b3b7 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x840be5e2 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8ac9c94c pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9245ae15 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9b27a284 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa490501d pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xabc85ef3 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcec92b8c pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xde60c3af pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe519adac pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x062aa583 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0bf8ddbf pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0e3f8f07 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x381f08b7 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x386bc731 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x40cb98f6 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5b72895c pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7f514d53 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x89d802d1 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xaa9f0765 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xbcafebe9 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x05846d8f pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xf6856e3d 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 0x191d1223 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x4808b18b pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0x8236bc92 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xa263df51 pps_event +EXPORT_SYMBOL drivers/ptp/ptp 0x17bdf1b1 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x50d2fbd9 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0x6fb8c6b6 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x73739393 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xe6546b97 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x20fe4846 pch_rx_snap_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x2dc44906 pch_src_uuid_hi_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x4ed3ee88 pch_ch_control_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x5716bf40 pch_ch_control_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0x607237e6 pch_ch_event_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xa3a66dce pch_src_uuid_lo_read +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xab2adef9 pch_ch_event_write +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xde9f73ae pch_set_station_address +EXPORT_SYMBOL drivers/ptp/ptp_pch 0xf809dd49 pch_tx_snap_read +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x139e3ba9 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6d79a657 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xb4de38bb rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc62edc18 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd3af4fa2 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe221e438 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xe5454f76 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf4df8faf rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfd6b2ceb rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xfefbbb80 rproc_boot +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xcb6d0bab ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/53c700 0x02732bd4 NCR_700_release +EXPORT_SYMBOL drivers/scsi/53c700 0x3d9cece0 NCR_700_intr +EXPORT_SYMBOL drivers/scsi/53c700 0xf4d10ce7 NCR_700_detect +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x364bd377 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x63e9dd01 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x9342a6fc scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xb5ca1b98 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x09266e9d fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x185d2ba2 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x48e9569f fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x521cda45 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x59bd1c52 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6a4c6e6f fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6b937ea9 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x701923ad fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x78715a2e fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9ce0c53c fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdfbd9635 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf799238b fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x08608708 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14d31339 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1880f47c libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1be225d8 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c35c3f8 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x274c46f5 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27d3b60c fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34cb2df6 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x409bcb04 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49011acc fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x49d53460 fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4cca783d fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4d5d6424 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5506a0eb fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x595991af fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x641abd0c 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 0x6ffa745d fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x76c1a64b fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e00e443 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x81c0718e fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85b33e3c fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x86c36515 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b2f1563 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93de59c3 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96d1ff68 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x96fa173d fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x99d16b7c fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f527914 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2c1c637 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa474ed33 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa09fef8 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb051d8a3 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb2096398 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb318db48 fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb66eec50 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc22692d4 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc351c485 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc38590b0 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xce19f52f fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2af378e fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6c9689a fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd8fc8338 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdedec1b1 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xeafb83c7 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xedfa8e28 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0bd153b4 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4308f25d sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x6ae71e9e sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x83980d5a sas_suspend_ha +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 0xf6cd17ca mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x04e25a74 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x13a069fe osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1cfe753b osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x21c900d6 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2645b413 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b42d1cb osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3110c5b6 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4230a1f0 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x475922d6 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x55c4bca2 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5876dad6 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x58bd9c56 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5df049ef osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5e9d1300 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6981f862 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6b56c210 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6e7f6fa0 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x70db5b52 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74e8a55e osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x819b62d2 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x888f6ce8 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8fbd56e1 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x93709984 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x996b8290 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9cce7706 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa0046740 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa74cdf59 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xab5ccf87 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb5abd036 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb66aba1e osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd1b7e94 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdd9d31e8 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe839de33 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf1220ba9 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf6ed9a73 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xff844131 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0bf2c88c osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7e844fd4 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9fefa5d3 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa33c2a1e osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xcb643101 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xfd40520b osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0383a6d8 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1b2547b2 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x1f97709a qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2352a4cd qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x51fe0f34 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5869d3bf qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5d7592b7 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x63cd224c qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xad49dc26 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb45e8a7c qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc3683d4c qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe5c9aebc qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1c7ed9a7 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x35e7ee63 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x42dd7d1b qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x50689821 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8c853544 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8cf77730 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 0x5fb1a69f raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xa930ac70 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xd462556a raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x14f77d91 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1e7e1feb fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x31ecea1b fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3ee42f0d fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x643f7db6 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x660e7709 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x74fb58b1 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x86ea3538 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8969d9b9 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x92d4f0ae fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa05eceff scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xba503e0f fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xfc55c133 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x00996ac7 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0497aad5 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0a850fcd sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x101d2e7f sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1eab8cb6 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x23afb091 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x28fcb87b sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2a545b26 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d658fea sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x52c26f05 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5d7656dd sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x79af089e sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7ebc3900 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x80d4e185 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95b694d0 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x98316017 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa0ec9f07 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xac60f9f7 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb7ad62d8 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcf0c10bd sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd130d84f sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb8b0899 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe0a217c4 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe4113368 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf0f91b5b sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf77aa7b2 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfadda010 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff0dd121 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0d2cac5a spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x12ed92bd spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1378913f spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1fe3cb67 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe71de0e3 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x33a90f89 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x5d381a7f srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x7901b9de srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf69bdafd srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x4069de93 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5d3cfd56 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xacb271cc ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xae1a49dc ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xae3eb87b ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb560c905 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf5b5b5ce ufshcd_system_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x14349113 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x18f3b22b ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x18f95d1a ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x2e7b9165 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x2eb499aa ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x35360a04 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x387ee2f1 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x594fc616 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x6e2e4dfe ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x82e9fa3d ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x8e5a6575 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x94da0c8d ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xad54582d ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xb2dfed89 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xbfeb7df1 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd367fc91 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe5ecb512 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xea393fb1 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xf3e7c167 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xfe490f91 __ssb_driver_register +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x01dfb1be fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x08f285a5 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1821a8b0 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1c677537 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2f8f609b fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x442f757d fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4f9ff51d fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x60de45cc fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x658b6e6f fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7ee12c18 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x98363d92 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa1b7e750 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa4c6c03f fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xae028c20 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb65bcb34 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbd2b20a2 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc16e1dd7 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc6ff4a0a fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc8f6cf31 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xccbb555d fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcd8d269f fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd93fdf36 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe64d343c fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfd58ecd8 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x07fea5c6 fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xfb605fe0 fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x9e59a75e adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x3ad81e2e hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x46c89257 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x731329a5 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb8097176 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x3e86ed9c ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xaa9d07fb ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xdddb4554 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x85f18cde most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0050f1c8 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x00c82ec9 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x08611859 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c044215 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0dd9ce0f rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0df459f2 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e949fa1 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1a76bfd1 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b2c8009 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x237aea2b rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x24f6916d rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2601e714 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2e3fd2c9 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x307c72e5 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x365c057c RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x381761fe rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3e912651 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x461647b4 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49636b2c rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4d6ced5f rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4df096e6 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5adc966e rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x63e2e7e3 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6cd06c0b rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x737428ee rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7d381748 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x803d967a rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x86af86c2 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89d2eb05 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8af2025e rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x91a4663d rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95ec54b9 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x97e3d273 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9950f060 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9bdc2a12 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9df9e2a1 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9fd3ac61 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0995069 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9a42a2f rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc24fb9d9 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3395db4 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4d1e10f rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc9f022fc rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xced6d957 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd9543f74 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xda34f927 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdb24aed8 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xedfaf5bb rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf13e7bdf rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1ffe164 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0671b16d ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0ddb7c0a DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x10126d0a ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x103cd432 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x152103b7 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d2fc9c9 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x214b05ab ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21a6116b ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2a85b37c ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2d90910a ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3b3e9331 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x405a0f05 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4476ea0c SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x458e2061 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4694e07d ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x477e461f ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x48a249ad ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4aa2601c ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50e927dd ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x587dfaa8 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5bba261b ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5becaa56 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61034155 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x696586e5 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6ae9350c ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x75d442e3 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7bb09262 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x81a42fd0 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88e5e4b9 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b6fc70e notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa2592963 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa7d0fe13 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8658319 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa89f290a ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa9e1baf8 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xafb4804b ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb348b5e1 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb39f1b22 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd7ae6fd ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0c156ce ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc64e92ec ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca78128d ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca981b9c DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd0065700 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd4d0f591 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdef17059 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe588b49c HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe9fedf2e ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xed6da550 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf02b4f7b ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfc1dcf1a ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfcefb9a6 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd9a2395 Dot11d_Init +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01fc1773 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0476f28e iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x071664b4 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0d46b099 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2006dde2 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x22cd0f05 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x24be4523 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x39fee26a iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x554cc0f6 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7f08ba01 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x816fa8e1 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x850d3a39 iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x940dfa2a iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x964865b0 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9e85e431 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa3f0dd95 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa59b5a2a iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac067807 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xad24fc08 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb4936a7c iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc766919 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbd22be63 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc3ab689a iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd29f910b iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xee503f93 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef3874ac iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0242297 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6e8e9c7 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x07996c6a target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0968a58c core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x0979f074 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f222b73 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f726e3b __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x11c990eb core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x16bbb6e9 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e5fdf94 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x213f8c6a target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x29756668 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b30aa58 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bb0e7ea transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c8bfadb spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x31c8a2c2 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x3b22abf1 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e96e516 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x405abbc4 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4500d8d1 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x45b56b6f passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x47208a66 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x4dcf712f target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e39cf65 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f96c3da target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x53b46ddb transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x555471fb transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x58cbe4fc target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x5c88c03f transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x62f8bb75 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x68d84a06 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ad5d046 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x71490f11 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b48bd19 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ccd12d3 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 0x808a281d sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e22fad0 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x9032fe05 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x912d0411 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c0721b3 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c5a2e65 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x9d32562e transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x9fb33134 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0ce3246 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5ce492a target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xa651dc64 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xad01a6ec core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xaee3ec2e transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb06b1736 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1007c1a target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb53c0023 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xb94cbf3a core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcda32c0 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcdaa8a2 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xc290233d sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc2be35fc target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc62c60c4 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8449193 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xcaa79a8b transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xce4aa1e5 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xcee8c282 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf05f3cc transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcfedf538 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd0b15a18 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd23b8efa target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xebd89881 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0b21486 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa693f79 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb1dbbd4 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb55238f target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xfbb2da1e transport_generic_new_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 0x4c8b172f usb_cdc_wdm_register +EXPORT_SYMBOL drivers/usb/gadget/function/usb_f_uvc 0x92e9ebac uvc_set_trace_param +EXPORT_SYMBOL drivers/usb/gadget/libcomposite 0x08606416 usb_os_desc_prepare_interf_dir +EXPORT_SYMBOL drivers/usb/host/sl811-hcd 0xc78b095b sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0fadd3df usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x22af19e6 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3368d9fa usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x36d0ee72 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5d325f07 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6743a8dc usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x99a68796 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x9c96869f usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa1ddef71 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbc83d0f9 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbd975829 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xe7d79552 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x8d9c5b50 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xeddee593 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 0x0986ae32 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4598ae95 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x53757deb lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xa3eb1feb 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 0x24c6e05f svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2b4ec56b svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2c68e71d svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x2eecf0bf svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4324ed77 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 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa77337b9 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xac7be396 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 0x283e544a sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x8d48779f sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x191ab3bf 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 0x7833022c 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 0x4bde634c mac_find_mode +EXPORT_SYMBOL drivers/video/fbdev/macmodes 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x1a8c40d4 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x1b5adb98 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x91a7bb93 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x38f270a1 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x3e55ec44 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x51ca7552 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x527f7d5f matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xb4c5ea27 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x23f239b1 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x53af3a14 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x98452017 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb5b44b8c matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xfc33a64d matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x88369a96 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xab81ee68 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x21deb369 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x3de5ede5 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5db43b34 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb8db6443 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc1978c1a matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xce80deea 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 0x09fdf9c7 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x3ae9bc90 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x3be13c1e w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa6427e72 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x5bd8438b w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x704582cb w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x31c14a1c w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x95c0895b w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x3a14c0df w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x4de33071 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x814de71d w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xe04ce4b3 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 0x0ea6978f config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x1b4902aa configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x2b9d5ed5 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x5eb96c44 configfs_undepend_item +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 0x8906e6d5 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x9399309b config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x9d8abe88 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xae097dfc configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xb7d70dd6 configfs_depend_item +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 0xe3e882ad configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xe5486ca4 config_item_get +EXPORT_SYMBOL fs/exofs/libore 0x03eb9d47 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x3a29c5dd ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x5887d92b ore_create +EXPORT_SYMBOL fs/exofs/libore 0x59cc444c ore_write +EXPORT_SYMBOL fs/exofs/libore 0x810d7349 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xa1d9a3ec ore_read +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa94a8c1b ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xc8060b91 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xd73aa7cc ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xdab6b6e1 extract_attr_from_ios +EXPORT_SYMBOL fs/fscache/fscache 0x049f596a __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x0524c4dc fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x28030496 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x2e2baa6c __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x32614fbb __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x3379300c fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x3a34fa47 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3bb5417e fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x3e3d8ab6 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x44ccca7d __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x493e0a2a fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x4a669a0e __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x53f55881 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x59aac53d __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x617e85ed __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x65cffbf1 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x686c2cb9 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x6b4507ce __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x71a355d2 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7cbdb380 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x7de5b44e __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x7fa50f50 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x8265f289 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x884860cd __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x88dc1a6f fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x933ce5bb __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x9bdf323e fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0xb5574004 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xbbcf541d fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc0abe96d fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xc96e3286 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xc979104d __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xca942f8c fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xd70704ce fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xda3bb517 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xe610fd3b __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xe8b3bbfa fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xeeaf06bc __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xf65cd03a fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xffae0ccd fscache_object_init +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x11b9c476 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x2da3fefb qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x61668ab5 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x7ab545da qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xfa1489cc 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 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 0x88d9d42a lc_seq_printf_stats +EXPORT_SYMBOL lib/lru_cache 0x9265fcc5 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 0x1cb4174b lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x536b2fd2 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xed62235b lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0x903eb390 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xc7e0ca28 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x01aefb10 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xc17ec0a1 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x73814bbc unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xcdf1cb86 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x01b8778d p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x0e7f39ac p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x12121d3b p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x19468218 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x1ae84fce p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x1c0e0a35 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x2061db36 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x2458202b p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x2561a1c2 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x35f3aee5 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x383f46cd p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x42cf95c7 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x436a5663 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x458cd4d9 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x51ad997f p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x53028054 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x5717cff6 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x57abc0cb p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x67a633f7 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x6bc026cb v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x6cb375ea p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x6e5e09d8 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6ec8006f p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x6ff76eb9 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x7105fc8a p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x7c783b4a p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa973f907 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xaa9245ae p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0xaae8fe9c p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xac57bc62 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xb7b7ea5d p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xba72fbd2 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xbaf900ab p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xc022c2e6 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc478afd9 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcb26a27a p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xce095981 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xdeaad8b1 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xed162b39 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 0xf866ec86 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xfac94f01 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x1be9d13f alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x2e869d86 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x58e50b88 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x6b2e7487 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x1044a4eb atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x113be250 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x31e9b734 atm_charge +EXPORT_SYMBOL net/atm/atm 0x3eda37c6 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x570175b6 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x59694455 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x624a1168 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x6dd7f508 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x708b8b87 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x769de55d atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x87f0d1af atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x8c6d006a atm_dev_signal_change +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 0xb4be4568 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x14a84ada ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x1a3ea3f1 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2f479da4 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x475fe183 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x7ae86f9d ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa3ed5733 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xc0bd688f ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe6b4cb21 ax25_header_ops +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4479fde0 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bd60dfb hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d50633e hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f613747 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x53a99259 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x550f9d3f hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5694ac43 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x569b5753 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x58b705bc hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59284e2a hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5f618f6a l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6a2e50b9 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x73fc6166 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7d616a99 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x853c0417 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x86381876 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8882d6e9 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x891e8079 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8c10e004 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 0x9309325b bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x93e92962 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x962acd0e bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x98e57c88 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x99698b4e bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9e95725e l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa73546fe bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa827d535 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xab88d65a hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb132cfdc l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb96ab8c2 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbe269907 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc3f73cb6 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca778a50 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc3d6ae0 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd8c071c1 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xda587a28 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdb8bc679 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdc2aa3fe hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe48a963f hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe87580a0 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5d6b4d4 l2cap_chan_close +EXPORT_SYMBOL net/bridge/bridge 0xfe495f88 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x14d18612 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x3917b753 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x61dc2038 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x0596c07f 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 0x66e89949 get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x7a8ba18f 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 0xbb3da13b cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0xcbce5e05 caif_enroll_dev +EXPORT_SYMBOL net/can/can 0x079c00fd can_send +EXPORT_SYMBOL net/can/can 0x18ec73fe can_ioctl +EXPORT_SYMBOL net/can/can 0x1a4cf7b4 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xb221621c can_rx_register +EXPORT_SYMBOL net/can/can 0xcf83d81e can_rx_unregister +EXPORT_SYMBOL net/can/can 0xe164d05e can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x00313a0a ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x009017ae ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x055bc635 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x0607b469 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x0916f4cf ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x1a2491f8 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1a947ea4 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1bed5d28 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x1d2c4134 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x22ec393d osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x23709db5 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x2cd3f96f osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x33003490 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x331ba89e ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x3479f99c ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x34d0fedb ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x36301a1a osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3ba49abc ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x3c9c634d ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3df2c355 osd_req_op_watch_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 0x46043548 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4ba9c397 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x5603764a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x586c6363 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x5e0e4808 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x60268c89 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x62bccfb5 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x64a59b37 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x704866f4 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x7387b90a ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x750ee15d ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x75799046 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x769a972a osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x7928d43e ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x7b441eb1 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x7fc0841a ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x7fde7d33 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x802bbed8 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x85c8dab7 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x861efa83 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x885d4292 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x8a936499 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x8b82a126 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x902e3239 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x90cbbfc4 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x91edf404 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a3216d9 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x9f298327 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa15fb361 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa8a54187 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xa8b91e5c ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0xaa7246c8 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb08d0866 ceph_monc_init +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 0xba0d03b7 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xbb99ba91 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xbe4ae044 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xbfb7c86d osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xc018d521 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc4c6ac51 ceph_auth_is_authenticated +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 0xd0e5858d ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xd2aeb76b osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd37d22fc ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xdd289c15 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xded86519 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xe3fa4e9d ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe59c2e37 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xe7e95969 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xe878b17a ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0xe8f89267 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xecd94ed4 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xedeb7ce5 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xeeb480c3 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xeebcb8cc ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xf1936791 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xf30f1ee6 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0xf3de01fa osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xf6a9efab osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xf7940877 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xf7d9bbd8 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xf90fea92 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xfb6b31ad osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6016d384 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x7373681e dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x1598021d wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x953d0a4c wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9b9d2b19 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xaa28e71e wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xe4d7964e wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0xfdb499f6 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x70e6b91f gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd7db5fb4 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x02ada886 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2b6dd523 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x583529f4 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6087be7e ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd4a89a80 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xda17c6fb ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3152c526 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x3cd1d3ab arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x9481c008 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x02b38af3 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x4f7a4f71 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xa45055f6 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x3bb070f5 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xbaed14ab xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x5bfb6744 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x08721d74 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x3d87d4a3 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x890a2ccc ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xd245dd05 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x07c606c9 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x08205701 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x42b9e37f ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x3d8836a6 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0x3f1452df xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1b9041c5 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xd26290ab xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3ccd0819 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x401431f6 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x45c741dd ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6e755141 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x74cb956c ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xcd816c5c ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xeb5df5ab ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xfd5ee031 ircomm_flow_request +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x077a64dc irlmp_data_request +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 0x1e5331fe irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x23bbc2ce irias_find_object +EXPORT_SYMBOL net/irda/irda 0x29ae305e irda_notify_init +EXPORT_SYMBOL net/irda/irda 0x2ab1cbd6 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x2b432980 hashbin_get_next +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x385847aa irias_delete_object +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 0x50a14fa8 irlap_open +EXPORT_SYMBOL net/irda/irda 0x5d356aa2 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x65b6ea0d irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x6887d07e irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x69510cb0 iriap_open +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 0x7978d410 irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x7c9e85be alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x7cfd1d01 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x831a9d91 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 0x98a8b3b4 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0x9ccbdfca hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xa92af22a irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xac3dc858 irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xaeeff2b5 hashbin_find +EXPORT_SYMBOL net/irda/irda 0xb49f8868 iriap_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 0xc65f41e1 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xd2fdc2c5 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdb0d8bc5 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xdc0196c2 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0xde4c6b3c irlmp_service_to_hint +EXPORT_SYMBOL net/irda/irda 0xe17dc56a irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xe1ba6308 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xe2a8e706 irlap_close +EXPORT_SYMBOL net/irda/irda 0xe329462a hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0xe618af89 iriap_getvaluebyclass_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 0xee28c627 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xefbb737a irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0xf4218d7c irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xf531deb1 irttp_disconnect_request +EXPORT_SYMBOL net/l2tp/l2tp_core 0x9b46196c l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xdd4a2056 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x22a74f57 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x26a444af lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x2dabb6d6 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0x32571641 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x5db5b183 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x6390a33d lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x71c3c739 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xf6e2ab02 lapb_getparms +EXPORT_SYMBOL net/llc/llc 0x0b0e40eb llc_add_pack +EXPORT_SYMBOL net/llc/llc 0x1b322a60 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x34f0ff14 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 0x59e3efac llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x85495e38 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x906e7cc1 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xf4a1bc47 llc_sap_open +EXPORT_SYMBOL net/mac80211/mac80211 0x00aa052d ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x012be1ad ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x04592ca9 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x04f2a3d4 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x098b0c0f ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x0afc3b92 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0d140458 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0d1f56da __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x0faefaad ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x10fd30ce ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x138d7f22 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x17fdd003 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x20e68281 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x22df1eb4 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2553e96d ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x2661428b ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x26ea7576 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x2859070b ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x2ad2372b ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x301075fb ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x309b2e86 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x3230e1f8 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x338cde03 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x37d2b5db ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x39a5bd0a ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3cdd9ef2 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x434e7533 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x4ec5b4ce ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x4fff1cfa ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x509a3ed5 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x50e63fda ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x52297720 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x549cd53d ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x5edafd9b ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x60d33991 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x6171948c ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x64eb1dc9 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x656d4124 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x713c02da ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x724832f2 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x74ef0876 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7b8af6d2 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7dec39e1 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x807e54fd ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x872ed0c6 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x8e549875 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x8f9fc354 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x91b1da9d ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9433fd69 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x988b1b86 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9fe6389d ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xa009b927 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xa23753af ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xa4c3854c ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa52d97be ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xa8061b10 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xa9442a51 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa98ab595 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xaf6c1492 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0xb73ce24d ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xb9519a03 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb99e22ad ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xba1d6ff9 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xbb463f5f ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xbb6e747b ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0xbec4a008 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc07a01eb ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xc21787ad ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0xc4e611df rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xc6ecd3fc ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xcb88a593 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xce2af803 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xd238ffca wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd449463d ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdc802e22 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xdde90b67 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe759d272 ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0xe8beb8dc ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xf367081e ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf4307026 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xf5304f44 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xfd051b66 ieee80211_scan_completed +EXPORT_SYMBOL net/mac802154/mac802154 0x012553c2 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x4292be08 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x4d3f465b ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x719e95ec ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x9f6d66f1 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xaf42a91f ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xce1f195b ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xe8517697 ieee802154_stop_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x11f29fd1 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x16d15e08 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x460f01b7 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4c16ac54 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6025f31a ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8bceae9f ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8eadc7b ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xae38c049 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb519ec22 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc0507671 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe7d98ea2 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xefe430e7 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf1925dbf ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf8b87bf3 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x13be5408 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x5a24fd83 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xc0fc4aa6 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x01d99083 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x0af4e7fc nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x828540d4 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xd27cf3ab __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xdc30f207 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xf9e83fbf nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x1232cd60 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x132430ff xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x52bea182 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x598d17e2 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x5dfbc2d9 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x64b09104 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x706d0ed2 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x932d85b3 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xac96ad29 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xf3ae2682 xt_unregister_match +EXPORT_SYMBOL net/nfc/hci/hci 0x1297b434 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x14e1472f nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x259e5664 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2d997391 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x3fdf0012 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x41d7c9d8 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x5053d151 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x5078d312 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x6b97625f nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x7e738974 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x885da05b nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x920aa1b5 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x9b20baf6 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xc8b554e3 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xd02e5fce nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xd6ed62d5 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xe3274bfb nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xe8aefa6d nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xea2ea083 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xeb1a1b8a nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0xef937de3 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/nci/nci 0x0386be28 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x04ffd5be nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x0acc34bc nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x169d5f29 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x2c93a3a2 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x315a4a02 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x344b0d59 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x4d33929e nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x4dea34e7 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x60f9c6ec nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x75ee78fa nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x7c485208 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x8c9ea42a nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x8fc256ed nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x91888e13 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x97440722 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x97bc411e nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x980d7b0b nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x99f195a0 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xb3987102 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbd7a2787 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xbdb1a84b nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xca1d2508 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xd69ba813 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xe3e9ff71 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xe48628e2 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xea8f7ab1 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0xec0080f4 nci_send_cmd +EXPORT_SYMBOL net/nfc/nfc 0x00bd5442 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x1af8ce08 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x267f6dd5 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x2947d524 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x3a82da19 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x462d7e9f nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x47a35f85 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x49852c22 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x4b1c7e9e nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x4bd4d161 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x4db690b7 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x506c0433 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x5618e12b nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x595395b7 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x6b226028 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x82c0000b nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x951ad04c nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xb4d3a09a nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xd9f967dd nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xe135118a nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xe77ccfeb nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xf0a107a6 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xf7bee26c nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xfaebeef1 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x27c08051 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x36678364 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xa88f9c80 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe00b5055 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x1b7cc3c6 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x314aaa4e pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x50ee337a pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x7f02eaf1 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xa7ef1fdd phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xe391ecca phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xecd095c9 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xf42acf36 pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x15d41b5e rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1acfdaa7 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x206864ef rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x27cc6e1d rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2a4b866b rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3cbac4ff rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4185dafa rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4c03e3b5 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x50e0a2aa rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x51947c79 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x62029dae rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6c54d324 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9bfe5629 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9f39f739 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe33a1f6d rxrpc_kernel_abort_call +EXPORT_SYMBOL net/sctp/sctp 0x298dad33 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x6be74d93 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x795ec7fe gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x956db248 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x3e6367da svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x560c3a01 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0x723ce9d8 xdr_truncate_encode +EXPORT_SYMBOL net/wimax/wimax 0x03ade95c wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xfdf4cf73 wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x051cbc6a __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0ac3b1f4 cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x0adbcb66 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x0c3a0adf cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x1101f270 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1459f951 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x147d1e80 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x183c0a2e cfg80211_pmksa_candidate_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 0x1cbe2483 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x1f346c9f cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x22ecee17 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x24f386d3 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x257336a4 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x37db074e cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x3807076a 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 0x40e31c01 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x416db1c0 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x432ebb05 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x463e384d cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x47a88dac regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4d8b954d cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x534f6378 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x53c5bcfd wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x581ecacf cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x587b37df cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x589cb9b1 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x5ad05c9f freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x5be2e5ae cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x5bfc2442 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6ab79da1 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x6b00fda3 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x709beb2f ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x71b7e089 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x71c9c0b1 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x733c965a cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7a5aa1af cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x7aa607db cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x7c031b85 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x7c0792e8 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x7d69811d cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x822ede55 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x825fa8d1 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x826deca7 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x837f1c18 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x8783288d cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8c2211cc cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x92a91a66 __cfg80211_send_event_skb +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 0x9859fecd cfg80211_abandon_assoc +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 0xa48b2afa wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xa76eb758 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa957d820 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xaa5de9d3 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0xac9785fe cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb1317bc7 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xb13b2a2d cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xb188cb1e cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xb1f85057 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xb6d23387 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xbe864993 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xbf77de05 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xc0107644 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xc4f40efd regulatory_set_wiphy_regd_sync_rtnl +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 0xd23a7f7b cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xd5effef1 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd953a020 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc18a8d3 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdd877f62 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xdeeb6432 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xe255050f cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xe26f1bc3 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xe39759b6 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe532ca06 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0xe785624d cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xea81f93c cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xeb925daf cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf2e9cc24 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xf4e08810 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xf636b462 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfa8f4204 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xfb907521 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xfe4a54cd cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xfe9f1632 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x212f077e lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x5eb9ac06 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7f743e60 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x9890521c lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xc5ec9949 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xffcc5ca3 lib80211_register_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x238ceddf ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x2979abf4 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 0x7a0b26da snd_seq_kernel_client_write_poll +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 0xace9981d snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0xae5c7d00 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 0xf2ea9670 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 0x961050eb 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 0xdaa4b4ab snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x078e30ac snd_device_new +EXPORT_SYMBOL sound/core/snd 0x1137ebdd snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x1575ff30 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 0x1a12f635 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x20c9b48f snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x26df8844 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2cb87d69 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x36d241bc snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x41f403cb snd_device_register +EXPORT_SYMBOL sound/core/snd 0x44c9a571 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x4781c8c7 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x54fe4777 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x590e94e8 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x5aedb437 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x5dce1ebf snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x64da3714 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x6b4fa381 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x78553ab5 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x80de6227 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8a745771 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8ed46900 snd_cards +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x93d1fc4e snd_card_free +EXPORT_SYMBOL sound/core/snd 0x945b1a0c snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x96a0dc15 snd_unregister_oss_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 0xa440cac5 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xa454d623 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xa8384d67 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xae0c6c89 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xae50dc13 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb5d9d332 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xbf638822 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xbf92f7c3 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xbfe36004 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xc0f49642 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xc5facb1c snd_device_free +EXPORT_SYMBOL sound/core/snd 0xc6916493 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xcf247e51 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xd3339363 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xd35e2fd1 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0xe2ac5ada snd_info_register +EXPORT_SYMBOL sound/core/snd 0xe7c51520 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xe7e1e1af snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xf3d56385 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xf4bd567b snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xfa05fbd7 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0xfa418ce3 snd_jack_new +EXPORT_SYMBOL sound/core/snd-hwdep 0xb2e386b0 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x032eb911 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x0f6c58d6 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x138906ca snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x19b52bca snd_pcm_lib_mmap_iomem +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 0x22798296 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x27d3cfe7 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x2d9a8a6d _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x2de1ff5e snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x2fbd124f snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x331dfc4b snd_pcm_sgbuf_ops_page +EXPORT_SYMBOL sound/core/snd-pcm 0x3796bdcc snd_pcm_format_little_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x37e57d30 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x3918e30e snd_pcm_mmap_data +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 0x470f3777 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x4b16f501 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x4b635162 snd_pcm_lib_preallocate_free_for_all +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 0x593ae25f snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x5cf22176 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x62ea00d0 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x681f1dd8 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6bc41800 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x6db36e53 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x71830297 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x828d1df7 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x83078c6f snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x90cbd90c snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x91c3414d snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9d56b2a4 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa781e682 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xa801d712 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xaa36a22f snd_pcm_set_sync +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 0xaeff0f74 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xb13183ab snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb7e55f4a snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xb9b97b9a snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xb9ded17b snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xc0e0b09d snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xc24d5653 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc31401c1 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xc9864c00 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xcb1c44bf snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xccef8005 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe634631e snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xf53459dd snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xf657b7bf snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xf82c9be0 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xf830a018 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xf8b11d00 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xfd2f37aa snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x012f38d3 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x10e96696 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1a79d226 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4d17cf95 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4f1cc638 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6cc8dfd6 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6d0ce9bc snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x75c11a16 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d1916a2 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x85ded7d2 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9683f5c6 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa6447111 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa8fe3829 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaa8a6911 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb1167294 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb7ec0da4 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc78f10f2 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe3007b84 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf34bae77 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-timer 0x01e952e4 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x2c0bfe93 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x3b0d4a24 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x645becef snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x73478411 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x7607e79b snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x8e0f960e snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xaee8f9e6 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xafd438b1 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xbd812210 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xc5664f15 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xdec2d9ba snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xfaf6493d 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 0xc0fec227 snd_mpu401_uart_interrupt +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0xf017a7ba snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x38876bfb snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x4251de11 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5d77e4bf snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x919bfcaf snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9e78ca25 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa19e9c7c snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb93b30da snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc82d8606 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd02789d8 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x1c8c0f32 snd_opl4_read_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x2b00eb16 snd_opl4_write +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x38d5b1a3 snd_opl4_write_memory +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x39da4d10 snd_opl4_create +EXPORT_SYMBOL sound/drivers/opl4/snd-opl4-lib 0x68ebc485 snd_opl4_read +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0307eba7 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1b8a05d1 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 0x64825dbb snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6aa2d8c2 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8bdafe1a snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8bdb7136 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x8ca451b8 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xafc9ba5e snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf552a382 snd_vx_suspend +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x196a7d3a snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d8b06f3 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x210922db amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f1618e6 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2f4e79b4 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x30813c12 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e1d6ea6 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4697b87e fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4755f6e0 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4d944daa amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x52b7e8c9 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x66f420b6 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d98cc28 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81fc2062 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x99ed5f51 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa6637482 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xafd8be96 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb51ec35d avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5a16ad7 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5aa28e6 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xba593304 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbba9d37e fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc5a781ef cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc87ed0bf amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdbb05dc2 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdc16978c amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe77320b0 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xef7fdb6b amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf9350bcb cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc02ee5e avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfcf89bcc amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfe546c88 fcp_avc_transaction +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5c78e1c7 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf13ad336 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0f6201bf snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7fa59015 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x8076410f snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9cebb945 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x9f83ee5f snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa0a57566 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb6e1b89a snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xc0a2c1ce snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0b3983a1 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x4c9a171b snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x6a16b115 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x886e9c06 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8af50b96 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xab758eff snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x04a19c80 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x11f63955 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x4d1efa30 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x822f7589 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x52ccac9e snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x8fd51471 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x00a731a6 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2400ee56 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4cf66c91 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6c46ef52 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x91776417 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9816da00 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x01150f79 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3d175415 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7e846665 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x88d37e52 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8a268928 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xbc8d8a72 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x6046d0a6 snd_tea6330t_update_mixer +EXPORT_SYMBOL sound/i2c/snd-tea6330t 0x8da53d73 snd_tea6330t_detect +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0x9649ef56 snd_es1688_mixer_write +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xa39d5504 snd_es1688_reset +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xa97b65bd snd_es1688_pcm +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xcfd70f80 snd_es1688_create +EXPORT_SYMBOL sound/isa/es1688/snd-es1688-lib 0xeb686bf3 snd_es1688_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x188a9fff snd_gf1_alloc_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x1c1ce117 snd_gus_interrupt +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2d30d841 snd_gf1_rawmidi_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x2d667c2d snd_gf1_translate_freq +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x36a20eb0 snd_gus_dram_write +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x41558d43 snd_gus_use_inc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x4434f82c snd_gf1_new_mixer +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x46db8d67 snd_gf1_lvol_to_gvol_raw +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x4c887d07 snd_gf1_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x4d77aaf1 snd_gus_dram_read +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x59909fcb snd_gf1_pcm_new +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x792bbaa3 snd_gf1_mem_alloc +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x80735d0e snd_gf1_mem_lock +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x81298d73 snd_gf1_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x85bf1864 snd_gf1_ctrl_stop +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x89af2e9c snd_gus_initialize +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8afb8bc1 snd_gf1_poke +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x8da41bfd snd_gf1_i_look16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x99d76daf snd_gus_create +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0x9f56074c snd_gf1_stop_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa2170292 snd_gf1_write16 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xa6f48cdc snd_gf1_peek +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xaaea9f6c snd_gf1_i_look8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xaf5849ba snd_gf1_free_voice +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc1dffb9d snd_gf1_dram_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xc43a5527 snd_gf1_atten_table +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xd0496bf1 snd_gus_use_dec +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xdbecd282 snd_gf1_mem_xfree +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xdfc05371 snd_gf1_delay +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xe118bd00 snd_gf1_write_addr +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf24cf40b snd_gf1_mem_free +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xf9f70b49 snd_gf1_i_write8 +EXPORT_SYMBOL sound/isa/gus/snd-gus-lib 0xfdffe074 snd_gf1_look16 +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x0e096be3 snd_msnd_init_queue +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x52ed4577 snd_msnd_upload_host +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x53358067 snd_msnd_disable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x538f1376 snd_msnd_pcm +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x546153aa snd_msnd_send_dsp_cmd +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x70bcc57d snd_msnd_DAPQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x75026b24 snd_msndmidi_input_read +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x76ddaef8 snd_msndmix_force_recsrc +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x85b78cd9 snd_msnd_enable_irq +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x98978eb9 snd_msnd_dsp_halt +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0x9dbde50a snd_msnd_send_word +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xac6dea85 snd_msnd_DARQ +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xb671211c snd_msndmix_new +EXPORT_SYMBOL sound/isa/msnd/snd-msnd-lib 0xde69fbae snd_msndmix_setup +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x51ef0c62 snd_aci_cmd +EXPORT_SYMBOL sound/isa/opti9xx/snd-miro 0x56c03180 snd_aci_get_aci +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x15f4ed0e snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7dce5305 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8831705e snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9746bf27 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa07d27b4 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb8af65c6 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xba674160 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xcbb79b1b snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf19e5ab1 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfa9e7af6 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb16-csp 0x92b67b89 snd_sb_csp_new +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x14b09e8a snd_sb16dsp_configure +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0x7ac46682 snd_sb16dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xd05c9eb9 snd_sb16dsp_get_pcm_ops +EXPORT_SYMBOL sound/isa/sb/snd-sb16-dsp 0xe0b3f690 snd_sb16dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x1f4c79eb snd_sb8dsp_pcm +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x59d7a87c snd_sb8dsp_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0x9cb1a44a snd_sb8dsp_midi_interrupt +EXPORT_SYMBOL sound/isa/sb/snd-sb8-dsp 0xc358d171 snd_sb8dsp_midi +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x01897aba snd_emu8000_poke +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x48d69f35 snd_emu8000_peek_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x68c1ef92 snd_emu8000_update_equalizer +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x69bb5556 snd_emu8000_load_reverb_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x7b388b56 snd_emu8000_dma_chan +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0x9b359369 snd_emu8000_load_chorus_fx +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xb31a8430 snd_emu8000_poke_dw +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xe7bb9800 snd_emu8000_init_fm +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xe92a928c snd_emu8000_update_chorus_mode +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xf16d7e4f snd_emu8000_peek +EXPORT_SYMBOL sound/isa/sb/snd-sbawe 0xfe7da22b snd_emu8000_update_reverb_mode +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x031f131a snd_wss_timer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x115aaa97 snd_wss_get_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1b30c82a snd_wss_info_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x1c47e710 snd_wss_mce_up +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x34baf825 snd_wss_info_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x363a21e2 snd_cs4236_ext_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4343e848 snd_wss_chip_id +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x43bd6219 snd_cs4236_ext_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x4d81b19a snd_wss_put_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x5049c679 snd_wss_out +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x52bff965 snd_wss_pcm +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x7b202637 snd_wss_interrupt +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x80f6eaef snd_wss_create +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0x81ca3d36 snd_wss_get_double +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcd448d92 snd_wss_get_pcm_ops +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xcd7edd41 snd_wss_in +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xdd11263b snd_wss_put_single +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf1463283 snd_wss_mixer +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf19d848e snd_wss_overrange +EXPORT_SYMBOL sound/isa/wss/snd-wss-lib 0xf7d979e9 snd_wss_mce_down +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x02032d0f snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0417e9a5 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x171fd6ea snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x264d851f snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4756dc54 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6f3c86ec snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7a8b1847 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7fdcaf13 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8434bbdb snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb65b23cf snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc086e5ac snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcf4229d1 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd0e98414 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd2c9b4ac snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe7b6fd21 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xea131a4b snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xec85981d snd_ac97_update +EXPORT_SYMBOL sound/pci/asihpi/snd-asihpi 0xcb399538 hpi_send_recv +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x2c7f4d95 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x688da85d snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x80dcb267 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xb93727b3 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd96786e7 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xdc388d26 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf6ca768f snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfd6f9ea0 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xfee22664 snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0ffdb95e snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x8a9cac0b snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xa7a37e16 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0847c86c oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x105c86a4 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x20c2f6e7 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3a89b66a oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3b62f6e2 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x43048c08 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x43762486 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4f01d3c5 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x53ef4fc4 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x59c61912 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6b3590a3 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d2b3867 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8164f5df oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x99cb9f94 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xaccfcd3e oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbbb455e4 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc177c651 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea111eef oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xefecf4f0 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf3858f2a oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xf6cb7aec oxygen_write8 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xa014c31c snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbc4b3153 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xc01627eb snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe4051bb9 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf90770f9 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x071a4380 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x91208606 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xca282fdf sst_dma_new +EXPORT_SYMBOL sound/soc/intel/common/snd-soc-sst-dsp 0xdc045797 sst_dma_free +EXPORT_SYMBOL sound/soc/snd-soc-core 0x2d7f149e snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x0b73b719 sound_class +EXPORT_SYMBOL sound/soundcore 0x34ae6f51 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x48bc9341 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x73288068 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa2096093 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe4f0b5c7 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x655cb202 snd_sf_linear_to_log +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x79d98cc6 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x90da53af snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa5f33ffe snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xeedb78ae snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xf99fd56f snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xfc81d97d snd_emux_register +EXPORT_SYMBOL sound/synth/snd-util-mem 0x4fcdf1ac snd_util_memhdr_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x5f1483dd snd_util_memhdr_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0x740cc45f __snd_util_mem_free +EXPORT_SYMBOL sound/synth/snd-util-mem 0x7aac27b9 snd_util_mem_avail +EXPORT_SYMBOL sound/synth/snd-util-mem 0x925ae41a snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xa2b5ee5b __snd_util_memblk_new +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd455df12 __snd_util_mem_alloc +EXPORT_SYMBOL sound/synth/snd-util-mem 0xd4e03382 snd_util_mem_free +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x1f265472 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 0x24b20776 ssd_get_temperature +EXPORT_SYMBOL ubuntu/hio/hio 0x2ca2e3f1 ssd_bm_status +EXPORT_SYMBOL ubuntu/hio/hio 0x300eb447 ssd_reset +EXPORT_SYMBOL ubuntu/hio/hio 0x5c5bcca3 ssd_get_version +EXPORT_SYMBOL ubuntu/hio/hio 0x77f6a791 ssd_register_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0x80872d7a ssd_set_otprotect +EXPORT_SYMBOL ubuntu/hio/hio 0x81f044a6 ssd_get_label +EXPORT_SYMBOL ubuntu/hio/hio 0xb1531e2c ssd_unregister_event_notifier +EXPORT_SYMBOL ubuntu/hio/hio 0xb9d0460c ssd_set_wmode +EXPORT_SYMBOL ubuntu/hio/hio 0xbbe731c2 ssd_submit_pbio +EXPORT_SYMBOL ubuntu/hio/hio 0xc39a46fe ssd_get_pciaddr +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 0x001e13f0 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x001f79a3 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x00541020 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x0066651f gnttab_alloc_pages +EXPORT_SYMBOL vmlinux 0x0084d989 sock_create_lite +EXPORT_SYMBOL vmlinux 0x00af3bda migrate_page_copy +EXPORT_SYMBOL vmlinux 0x00b0d8da release_firmware +EXPORT_SYMBOL vmlinux 0x00b8c3a7 mempool_alloc +EXPORT_SYMBOL vmlinux 0x00c42096 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x00cf995b nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x010099d9 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x0131e60e blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x0139b504 cpu_current_top_of_stack +EXPORT_SYMBOL vmlinux 0x013a2cbf iput +EXPORT_SYMBOL vmlinux 0x015ba841 dmam_release_declared_memory +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x016f87db skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x017c9cad xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x0181b6b6 bdevname +EXPORT_SYMBOL vmlinux 0x019a84f8 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x01b1ff29 qdisc_reset +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x0237b57a arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027997fd tcp_splice_read +EXPORT_SYMBOL vmlinux 0x027b9f56 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a49cf3 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x032fd39a skb_copy_expand +EXPORT_SYMBOL vmlinux 0x032fd5db led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0337a9b4 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x033dd7e2 kill_bdev +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03675bf4 agp_bridge +EXPORT_SYMBOL vmlinux 0x036dd165 param_set_ulong +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037c0b3a set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x039e21f8 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x03b055e4 path_is_under +EXPORT_SYMBOL vmlinux 0x03b17fc6 __dynamic_dev_dbg +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 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x048339ba netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x0485245c pci_restore_state +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04a89430 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x04a9f2de vfs_create +EXPORT_SYMBOL vmlinux 0x04ab1afe sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x04aec1ea page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04d8c750 release_perfctr_nmi +EXPORT_SYMBOL vmlinux 0x04de53b8 pid_task +EXPORT_SYMBOL vmlinux 0x04e112e5 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04f47752 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x050877b9 dmi_first_match +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x053e4244 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x0549f467 mount_bdev +EXPORT_SYMBOL vmlinux 0x054b648b i2c_release_client +EXPORT_SYMBOL vmlinux 0x05635967 del_gendisk +EXPORT_SYMBOL vmlinux 0x058471a0 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x0597684d dev_addr_add +EXPORT_SYMBOL vmlinux 0x05980198 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x059f9bd5 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x05cac87b dqput +EXPORT_SYMBOL vmlinux 0x05f2f3af follow_pfn +EXPORT_SYMBOL vmlinux 0x060c14d2 flush_signals +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0618b305 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x061b92ff put_page +EXPORT_SYMBOL vmlinux 0x061dbeb4 blk_queue_split +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x0663edf6 input_register_handle +EXPORT_SYMBOL vmlinux 0x0669bb77 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x066ba499 irq_set_chip +EXPORT_SYMBOL vmlinux 0x0670abb9 seq_read +EXPORT_SYMBOL vmlinux 0x06760cf2 serio_reconnect +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c7263 ioremap_cache +EXPORT_SYMBOL vmlinux 0x06ac48f8 md_write_start +EXPORT_SYMBOL vmlinux 0x06c0734b swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x06c0dae5 __kernel_fpu_end +EXPORT_SYMBOL vmlinux 0x06ef9040 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x070e6182 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073a5ca7 file_update_time +EXPORT_SYMBOL vmlinux 0x073f5e3f inet_add_offload +EXPORT_SYMBOL vmlinux 0x07608604 acpi_get_vendor_resource +EXPORT_SYMBOL vmlinux 0x0767f92b dev_printk +EXPORT_SYMBOL vmlinux 0x076b4c6f __check_sticky +EXPORT_SYMBOL vmlinux 0x0776e924 __brelse +EXPORT_SYMBOL vmlinux 0x077d8bcd generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x078822e4 gen_pool_create +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07ac678b dump_skip +EXPORT_SYMBOL vmlinux 0x07bdc951 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x07c02d90 tcp_poll +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d50a24 csum_partial +EXPORT_SYMBOL vmlinux 0x08062a35 init_net +EXPORT_SYMBOL vmlinux 0x0826e7b7 phy_device_free +EXPORT_SYMBOL vmlinux 0x082b39a9 dev_mc_init +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0871f5a1 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x08802b0a mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x0891b93b zero_fill_bio +EXPORT_SYMBOL vmlinux 0x0897287b acpi_disable_all_gpes +EXPORT_SYMBOL vmlinux 0x08ad80a8 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x08bcacac __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x08d1a9da xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x090a8c3d block_commit_write +EXPORT_SYMBOL vmlinux 0x09232ba7 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x09282e7d bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x09666ff3 __inet_hash +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09ac4f85 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x09b30c6e vga_con +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c89493 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09d1c45c i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09dff5e0 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x09e88526 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x09ee8c8d mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x09eeb899 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x09fbe8de cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x0a23d4a5 seq_printf +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a3fd974 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x0a44ae00 dev_add_offload +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a4bfac7 netdev_alert +EXPORT_SYMBOL vmlinux 0x0a5a3039 clkdev_drop +EXPORT_SYMBOL vmlinux 0x0a661faa lg_local_unlock +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a773aa5 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x0a873127 simple_lookup +EXPORT_SYMBOL vmlinux 0x0a9ba7ff inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aaed0d1 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x0ac5c54a bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0af08a1a devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x0afd539b gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1a1012 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2959bc inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x0b2c9e07 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x0b30dca8 param_set_charp +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b649047 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x0b6a85ea pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b79953f phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x0b7e2f2a dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x0b905c66 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x0b960d63 vfs_writev +EXPORT_SYMBOL vmlinux 0x0ba4f7e4 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bbfc5f4 vfs_rename +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bdd5667 vm_insert_page +EXPORT_SYMBOL vmlinux 0x0be11a4e __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x0c2d1ff0 mmc_start_req +EXPORT_SYMBOL vmlinux 0x0c2f2397 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x0c304a13 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4ffe20 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x0c55351e eth_gro_complete +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c69c353 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0c868960 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x0c870c63 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x0c8b718f touch_atime +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca7b7a8 acpi_check_region +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0caf9fe7 dma_ops +EXPORT_SYMBOL vmlinux 0x0cc67202 page_address +EXPORT_SYMBOL vmlinux 0x0cdb7d12 __kernel_fpu_begin +EXPORT_SYMBOL vmlinux 0x0d041a98 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x0d19e615 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x0d2be667 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x0d3dda14 acpi_get_type +EXPORT_SYMBOL vmlinux 0x0d3f7d7b pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x0d4d0a10 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d836c39 invalidate_partition +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dbb7d86 dquot_initialize +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dc213b2 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x0dd599df __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0df8245d mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x0e4af2cd dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x0e4ccddc tcp_req_err +EXPORT_SYMBOL vmlinux 0x0e6451a9 security_inode_permission +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e98884d acpi_bus_unregister_driver +EXPORT_SYMBOL vmlinux 0x0e98d68b set_pages_array_wb +EXPORT_SYMBOL vmlinux 0x0e99a6ff lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0x0ea60d39 mpage_writepage +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb867d8 __mutex_init +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ecc1fe2 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0ef5dbd5 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0da95f cdev_del +EXPORT_SYMBOL vmlinux 0x0f15de2f mmc_request_done +EXPORT_SYMBOL vmlinux 0x0f15e86d input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0x0f33cc27 thaw_bdev +EXPORT_SYMBOL vmlinux 0x0f3c89bc tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x0f416d4d rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x0f444864 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f60d425 km_policy_notify +EXPORT_SYMBOL vmlinux 0x0f64fcc5 skb_split +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f82478f truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x0f89eef0 clk_add_alias +EXPORT_SYMBOL vmlinux 0x0f90d1fd jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x0f95a798 iterate_fd +EXPORT_SYMBOL vmlinux 0x0fa16289 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x0fa1fc2d neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fcf1a11 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x0fd00a68 acpi_clear_event +EXPORT_SYMBOL vmlinux 0x0fe16fad __getblk_slow +EXPORT_SYMBOL vmlinux 0x0fe5a58d dma_pool_create +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x102c56de irq_regs +EXPORT_SYMBOL vmlinux 0x102d28c9 input_reset_device +EXPORT_SYMBOL vmlinux 0x1044044b skb_pull +EXPORT_SYMBOL vmlinux 0x104b2d53 tty_unlock +EXPORT_SYMBOL vmlinux 0x1065a501 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x10738198 file_path +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1086c1e9 ns_capable +EXPORT_SYMBOL vmlinux 0x10948227 vfs_statfs +EXPORT_SYMBOL vmlinux 0x10a3829b bio_clone_fast +EXPORT_SYMBOL vmlinux 0x10ab144f jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x10bb501a pci_write_vpd +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x111a3016 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x111ca6da start_tty +EXPORT_SYMBOL vmlinux 0x111ee23d iov_iter_npages +EXPORT_SYMBOL vmlinux 0x11220f8b key_invalidate +EXPORT_SYMBOL vmlinux 0x11239cfc jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x11302f56 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x11360592 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x113a5b26 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11891786 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x118b9152 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x119dce92 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11af617c proc_symlink +EXPORT_SYMBOL vmlinux 0x11c81d00 kfree_skb +EXPORT_SYMBOL vmlinux 0x11dd01ad intel_scu_ipc_command +EXPORT_SYMBOL vmlinux 0x11edbe6a unlock_buffer +EXPORT_SYMBOL vmlinux 0x11f59b21 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x1202942a __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x120ae780 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120d67d4 unregister_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0x120f8c9f blkdev_fsync +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x12117aeb gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x121b4e4b memremap +EXPORT_SYMBOL vmlinux 0x1250c7e1 _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x12578a40 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x128ea0a9 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x129c45d7 from_kprojid +EXPORT_SYMBOL vmlinux 0x12a1dfa3 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12a4636c security_file_permission +EXPORT_SYMBOL vmlinux 0x12aa40d7 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x12aee09f xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x1314e98a phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x1315a700 seq_pad +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13294a60 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x133af98b pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x1348baba dev_alloc_name +EXPORT_SYMBOL vmlinux 0x134f1539 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x1363a851 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x13797b50 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x13941431 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x13a4d4c0 unload_nls +EXPORT_SYMBOL vmlinux 0x13a829b8 dev_alert +EXPORT_SYMBOL vmlinux 0x13b7cb95 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x13b83330 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d5b343 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f66c73 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x13f9de34 cpu_info +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1421bd4a zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x143a0311 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x1444a976 led_blink_set +EXPORT_SYMBOL vmlinux 0x144a6ee2 cros_ec_cmd_xfer_status +EXPORT_SYMBOL vmlinux 0x1463a81c netif_receive_skb +EXPORT_SYMBOL vmlinux 0x14645d51 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x1466d739 scsi_host_put +EXPORT_SYMBOL vmlinux 0x14c98682 dquot_transfer +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14e7f17b netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x14edad31 intel_gmch_probe +EXPORT_SYMBOL vmlinux 0x14f5f45e dev_err +EXPORT_SYMBOL vmlinux 0x150389d6 acpi_processor_power_init_bm_check +EXPORT_SYMBOL vmlinux 0x150bc757 vmap +EXPORT_SYMBOL vmlinux 0x1527fe96 ht_create_irq +EXPORT_SYMBOL vmlinux 0x15346dd6 __frontswap_test +EXPORT_SYMBOL vmlinux 0x1541a060 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x1547bfd6 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1569e2a6 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x156a8a59 down_trylock +EXPORT_SYMBOL vmlinux 0x156febb9 netlink_set_err +EXPORT_SYMBOL vmlinux 0x15799c11 _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0x158b8044 pci_iomap +EXPORT_SYMBOL vmlinux 0x159c36ac inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x15a3c9ea __neigh_create +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c1ca7a scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x15c91762 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x15d229bf xfrm_init_state +EXPORT_SYMBOL vmlinux 0x15da6333 put_filp +EXPORT_SYMBOL vmlinux 0x15ebe3b3 dquot_operations +EXPORT_SYMBOL vmlinux 0x160ea4c8 sfi_disabled +EXPORT_SYMBOL vmlinux 0x1616cb30 acpi_evaluate_dsm +EXPORT_SYMBOL vmlinux 0x16185fcb scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x162fd530 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x16305289 warn_slowpath_null +EXPORT_SYMBOL vmlinux 0x167e7f9d __get_user_1 +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x16d33d46 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x16d7410d agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x16dc4d1f fence_init +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x170b2765 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x170c25ee acpi_get_next_object +EXPORT_SYMBOL vmlinux 0x1717c4f1 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x171fc9a8 free_buffer_head +EXPORT_SYMBOL vmlinux 0x172bfa3e passthru_features_check +EXPORT_SYMBOL vmlinux 0x172c34ad devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x172ddae5 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x17403558 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x17442ba4 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x174c5392 __vfs_write +EXPORT_SYMBOL vmlinux 0x1754c54d phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x176d4251 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x17761a00 tty_mutex +EXPORT_SYMBOL vmlinux 0x1786db04 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x178da1d0 f_setown +EXPORT_SYMBOL vmlinux 0x17944af0 pagecache_get_page +EXPORT_SYMBOL vmlinux 0x179651ac _raw_read_lock +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c5041a blk_peek_request +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x18111632 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x1813665e truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1841535f vme_dma_request +EXPORT_SYMBOL vmlinux 0x18439649 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1851df0a pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x1862fd20 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18b15464 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x18b4ccd9 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x18c38cc7 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x18d58dfb buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x18d96501 atomic64_dec_if_positive_cx8 +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f44236 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x18fa5faa cros_ec_prepare_tx +EXPORT_SYMBOL vmlinux 0x19012093 proc_remove +EXPORT_SYMBOL vmlinux 0x19078c18 set_anon_super +EXPORT_SYMBOL vmlinux 0x1916e38c _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x19182aa3 register_md_personality +EXPORT_SYMBOL vmlinux 0x191bca4d skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x19372524 input_set_capability +EXPORT_SYMBOL vmlinux 0x193d1ab2 textsearch_register +EXPORT_SYMBOL vmlinux 0x1945ef49 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x195a31ba blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x195eabc5 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x19680db3 pnpacpi_protocol +EXPORT_SYMBOL vmlinux 0x1983df6c dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x198dbd03 pv_mmu_ops +EXPORT_SYMBOL vmlinux 0x198e4de0 inet_select_addr +EXPORT_SYMBOL vmlinux 0x1992ae9c phy_find_first +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b0f80d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c02e6d pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x19e13222 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x19e31afa alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x19f51668 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x1a04cb02 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x1a07ad94 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x1a45cb6c acpi_disabled +EXPORT_SYMBOL vmlinux 0x1a63af34 vga_switcheroo_process_delayed_switch +EXPORT_SYMBOL vmlinux 0x1a6d8c63 bio_chain +EXPORT_SYMBOL vmlinux 0x1a7c1693 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x1a7dfaeb dev_remove_offload +EXPORT_SYMBOL vmlinux 0x1aacd2ee free_netdev +EXPORT_SYMBOL vmlinux 0x1ab02a04 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x1ac41fb9 dmam_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0x1adb91bf __init_rwsem +EXPORT_SYMBOL vmlinux 0x1ae09f75 _raw_write_unlock_irq +EXPORT_SYMBOL vmlinux 0x1aec3f9f bprm_change_interp +EXPORT_SYMBOL vmlinux 0x1af3ab9c xfrm_lookup +EXPORT_SYMBOL vmlinux 0x1afb1aaa acpi_mark_gpe_for_wake +EXPORT_SYMBOL vmlinux 0x1afdc3da scsi_init_io +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0f16c4 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b22bfd6 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x1b4d4ca0 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x1b570d23 acpi_warning +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b74102f read_dev_sector +EXPORT_SYMBOL vmlinux 0x1b7d6472 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x1b7ec187 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1ba45a51 set_device_ro +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc83b45 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x1bdf062b pci_enable_msix +EXPORT_SYMBOL vmlinux 0x1be0ea31 inode_change_ok +EXPORT_SYMBOL vmlinux 0x1be1dd26 lg_global_lock +EXPORT_SYMBOL vmlinux 0x1bf457a7 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x1bf53831 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c30631a clkdev_alloc +EXPORT_SYMBOL vmlinux 0x1c6b5f20 twl6040_power +EXPORT_SYMBOL vmlinux 0x1c7bfdbb fddi_type_trans +EXPORT_SYMBOL vmlinux 0x1c8a04b0 acpi_reset +EXPORT_SYMBOL vmlinux 0x1c963a45 __devm_release_region +EXPORT_SYMBOL vmlinux 0x1ca57b9c devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x1cb3e790 mmc_release_host +EXPORT_SYMBOL vmlinux 0x1cba50d0 inode_init_always +EXPORT_SYMBOL vmlinux 0x1cd71c51 tty_free_termios +EXPORT_SYMBOL vmlinux 0x1d15c574 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x1d2ef897 phy_device_create +EXPORT_SYMBOL vmlinux 0x1d5b26cc xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x1d6e7478 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x1d77509c bio_reset +EXPORT_SYMBOL vmlinux 0x1d970df4 follow_down_one +EXPORT_SYMBOL vmlinux 0x1dad5e47 __sock_create +EXPORT_SYMBOL vmlinux 0x1db0496b ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x1dbbe068 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x1dbd5d7d pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de13ed2 md_check_recovery +EXPORT_SYMBOL vmlinux 0x1de74f72 acpi_execute_simple_method +EXPORT_SYMBOL vmlinux 0x1e036c98 acpi_set_gpe +EXPORT_SYMBOL vmlinux 0x1e047854 warn_slowpath_fmt +EXPORT_SYMBOL vmlinux 0x1e062c3a fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x1e0c2be4 ioremap_wc +EXPORT_SYMBOL vmlinux 0x1e18f6d2 mmc_add_host +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e316a81 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x1e461c08 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x1e500a81 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x1e61221a __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x1e61e448 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x1e68b26e simple_statfs +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8731c3 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb7109c register_filesystem +EXPORT_SYMBOL vmlinux 0x1eb922a3 IO_APIC_get_PCI_irq_vector +EXPORT_SYMBOL vmlinux 0x1ebd457a clear_nlink +EXPORT_SYMBOL vmlinux 0x1ebd6f66 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x1ed0105f param_get_ushort +EXPORT_SYMBOL vmlinux 0x1ed75130 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x1edca132 gen_replace_estimator +EXPORT_SYMBOL vmlinux 0x1ee3181c pnp_device_detach +EXPORT_SYMBOL vmlinux 0x1ee71784 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x1eebf1a9 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x1ef22285 skb_push +EXPORT_SYMBOL vmlinux 0x1f1ce127 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x1f59621b sock_kmalloc +EXPORT_SYMBOL vmlinux 0x1f7d0df8 set_pages_array_wc +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f8f37aa fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x1f959904 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x1fb92c1a ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe32e85 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x1fe7d4d8 xfrm_unregister_mode +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 0x2009d6e5 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2014bff9 scsi_vpd_lun_id +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 0x203d93b4 ilookup +EXPORT_SYMBOL vmlinux 0x203e6643 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204ccb81 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x206788ab request_key_async +EXPORT_SYMBOL vmlinux 0x206e3d42 sk_stream_error +EXPORT_SYMBOL vmlinux 0x206f9f3c mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x208739f6 acpi_load_table +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20afdb1b kmem_cache_alloc_bulk +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 0x20f10887 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x20ff40c6 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x211583cf d_genocide +EXPORT_SYMBOL vmlinux 0x2121dcf4 sock_rfree +EXPORT_SYMBOL vmlinux 0x21297097 __sb_end_write +EXPORT_SYMBOL vmlinux 0x214d538c input_unregister_device +EXPORT_SYMBOL vmlinux 0x214e1bda kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x216cae81 console_stop +EXPORT_SYMBOL vmlinux 0x217ce30e fput +EXPORT_SYMBOL vmlinux 0x2182ea8f tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x21871dd0 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x2193e45d mntput +EXPORT_SYMBOL vmlinux 0x219fcfde i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x21a701fe fence_signal +EXPORT_SYMBOL vmlinux 0x21ce5d42 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e557e4 generic_getxattr +EXPORT_SYMBOL vmlinux 0x21e992a5 ida_simple_get +EXPORT_SYMBOL vmlinux 0x21ffd46a end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x2207a57f prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x220a2da8 get_agp_version +EXPORT_SYMBOL vmlinux 0x22150b0d elevator_init +EXPORT_SYMBOL vmlinux 0x2225b36e path_nosuid +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +EXPORT_SYMBOL vmlinux 0x22309969 register_netdev +EXPORT_SYMBOL vmlinux 0x22334b0b blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x224b593f set_wb_congested +EXPORT_SYMBOL vmlinux 0x22530736 dquot_acquire +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226eefe8 devm_ioremap +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x22773dfc blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22c783c1 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x22c9c1fb dst_discard_out +EXPORT_SYMBOL vmlinux 0x22cfc127 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x22d0312e pci_set_mwi +EXPORT_SYMBOL vmlinux 0x22d3d133 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22e0252c xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x22e4cc4b tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x22f598f6 pcix_get_mmrbc +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 0x236b16e7 iget_failed +EXPORT_SYMBOL vmlinux 0x236c722d jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x236fd762 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x2376e01d twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x238a5b1c pipe_lock +EXPORT_SYMBOL vmlinux 0x239e3b40 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c18f3d sk_stop_timer +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23e9c291 kmap +EXPORT_SYMBOL vmlinux 0x23ea5a84 request_firmware +EXPORT_SYMBOL vmlinux 0x23fa2f6f touch_buffer +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240eb34a add_disk +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242a96a8 padata_alloc +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24537bb7 cpu_tss +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x24656495 tcf_register_action +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x248689ef sock_wfree +EXPORT_SYMBOL vmlinux 0x2490d3b4 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x24a6ebbb sockfd_lookup +EXPORT_SYMBOL vmlinux 0x24ac8702 acpi_device_set_power +EXPORT_SYMBOL vmlinux 0x24c25209 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x24cf1509 rt6_lookup +EXPORT_SYMBOL vmlinux 0x24f6b78d pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x254dcb5f led_update_brightness +EXPORT_SYMBOL vmlinux 0x256e4dc7 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2578657b sock_recvmsg +EXPORT_SYMBOL vmlinux 0x25808f31 blk_start_queue +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25944319 inc_nlink +EXPORT_SYMBOL vmlinux 0x259731c3 path_noexec +EXPORT_SYMBOL vmlinux 0x259986d4 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x25b97664 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x25d0c9de block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x25e8043a should_remove_suid +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f24853 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x25f881d4 set_security_override +EXPORT_SYMBOL vmlinux 0x2608323e ip_setsockopt +EXPORT_SYMBOL vmlinux 0x262578b3 inet_bind +EXPORT_SYMBOL vmlinux 0x263563bd blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2646a05c xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2651f201 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x266bed05 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x268cc6a2 sys_close +EXPORT_SYMBOL vmlinux 0x268eb8ab inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x2692006f register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x2697410d scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x26ae5e57 inet_frags_init +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bcfa9c acpi_evaluate_ost +EXPORT_SYMBOL vmlinux 0x26cb34a2 mempool_create +EXPORT_SYMBOL vmlinux 0x26dd6086 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26e8499f pci_choose_state +EXPORT_SYMBOL vmlinux 0x26ed148a lookup_bdev +EXPORT_SYMBOL vmlinux 0x26f2eb45 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x2718f0a7 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x271cba95 acpi_bus_private_data_handler +EXPORT_SYMBOL vmlinux 0x2739298f inet_put_port +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2758c464 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x275af65e bio_put +EXPORT_SYMBOL vmlinux 0x2765e437 amd_northbridges +EXPORT_SYMBOL vmlinux 0x27860ca3 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27882b9b ida_simple_remove +EXPORT_SYMBOL vmlinux 0x278bc0a4 uart_update_timeout +EXPORT_SYMBOL vmlinux 0x27a0c624 input_release_device +EXPORT_SYMBOL vmlinux 0x27ae7d0c ec_transaction +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bc5e24 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x27c0bc9d ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x27c5c480 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x27e995aa pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x27ea838e tty_name +EXPORT_SYMBOL vmlinux 0x27ffb55e nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28191e78 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x28248bf3 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x2836859a sk_reset_timer +EXPORT_SYMBOL vmlinux 0x28588c52 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x28681b3a ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x287f2379 sock_create +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a48b4e blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x28b715a6 isapnp_cfg_end +EXPORT_SYMBOL vmlinux 0x28c26228 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x28c67ffa devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x28e09af1 iosf_mbi_available +EXPORT_SYMBOL vmlinux 0x28ff9c3f bio_advance +EXPORT_SYMBOL vmlinux 0x292db9f8 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x293c2cb0 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2960c69c x86_hyper_xen +EXPORT_SYMBOL vmlinux 0x29821709 cdrom_release +EXPORT_SYMBOL vmlinux 0x29838a7c dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x298f18cb alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0x2994b78f xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x29b0a7ff sock_edemux +EXPORT_SYMBOL vmlinux 0x29b7617b tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x29c37ba0 devm_release_resource +EXPORT_SYMBOL vmlinux 0x29c78213 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x29d86b8e __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x29dfeed7 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x29ea86a2 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a30d0bd inet6_add_offload +EXPORT_SYMBOL vmlinux 0x2a3204f2 __invalidate_device +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3bc4ff swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x2a565a25 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0x2a5def2f intel_scu_ipc_iowrite32 +EXPORT_SYMBOL vmlinux 0x2a750422 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x2a8399f1 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x2a8ad21a kobject_set_name +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab37756 may_umount_tree +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad0660e block_truncate_page +EXPORT_SYMBOL vmlinux 0x2aee07d1 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x2afeb68e inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x2b027682 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b225a3d sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x2b2a8ac7 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b44a49c tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x2b4c11ea mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x2b8e5032 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bacbc2e eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x2bb55d6e acpi_remove_notify_handler +EXPORT_SYMBOL vmlinux 0x2bb6e3b6 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x2bd35c60 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x2bfeb410 acpi_get_handle +EXPORT_SYMBOL vmlinux 0x2c0a27a7 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x2c0dd06e register_gifconf +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c15a359 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c276261 get_acl +EXPORT_SYMBOL vmlinux 0x2c5480f1 param_ops_bint +EXPORT_SYMBOL vmlinux 0x2c6de82d tcp_connect +EXPORT_SYMBOL vmlinux 0x2c6fce8e swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x2c7b73e7 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x2ca319a6 wrmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x2ca41ee5 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x2cc40ecf fence_remove_callback +EXPORT_SYMBOL vmlinux 0x2cf0b47e sock_init_data +EXPORT_SYMBOL vmlinux 0x2cf68ec1 simple_getattr +EXPORT_SYMBOL vmlinux 0x2cf751ec tcf_em_tree_dump +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 0x2d35df96 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x2d36f518 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d3d40d9 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x2d655dbb get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x2d71653b dev_warn +EXPORT_SYMBOL vmlinux 0x2d9d9eaf put_disk +EXPORT_SYMBOL vmlinux 0x2da8cb4b free_user_ns +EXPORT_SYMBOL vmlinux 0x2db92e2a skb_put +EXPORT_SYMBOL vmlinux 0x2dc058bf pnp_stop_dev +EXPORT_SYMBOL vmlinux 0x2dd16564 arch_register_cpu +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de199bf redraw_screen +EXPORT_SYMBOL vmlinux 0x2dedc4c2 acpi_format_exception +EXPORT_SYMBOL vmlinux 0x2def7f76 rtc_cmos_write +EXPORT_SYMBOL vmlinux 0x2e035245 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x2e085e38 cdrom_open +EXPORT_SYMBOL vmlinux 0x2e14961e cdev_init +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 0x2e5b1f52 xfrm_input +EXPORT_SYMBOL vmlinux 0x2e694c43 try_module_get +EXPORT_SYMBOL vmlinux 0x2e806dfc da903x_query_status +EXPORT_SYMBOL vmlinux 0x2ea6f732 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x2ec141a4 key_validate +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ee8db20 locks_free_lock +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 0x2f162dd0 input_event +EXPORT_SYMBOL vmlinux 0x2f24c8c6 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x2f384db3 acpi_is_video_device +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4be665 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x2f4f4d51 __free_pages +EXPORT_SYMBOL vmlinux 0x2f504179 lease_modify +EXPORT_SYMBOL vmlinux 0x2f81b4ae alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x2fa23c38 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbb0d60 tty_register_device +EXPORT_SYMBOL vmlinux 0x2fceba8b blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2ff8326b acpi_device_hid +EXPORT_SYMBOL vmlinux 0x2ff90ac4 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x30170b07 __scm_destroy +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3035d1af nd_device_unregister +EXPORT_SYMBOL vmlinux 0x303cc5f3 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x3043157d scmd_printk +EXPORT_SYMBOL vmlinux 0x3049e7db filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x30512da2 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x3057258a sock_no_connect +EXPORT_SYMBOL vmlinux 0x306cad2c acpi_pm_device_sleep_state +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309994fc no_llseek +EXPORT_SYMBOL vmlinux 0x30a78469 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b04526 ida_init +EXPORT_SYMBOL vmlinux 0x30c3d516 lockref_put_return +EXPORT_SYMBOL vmlinux 0x30c4610a nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x30ca71a9 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x30d7895c write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x30e38ac1 __kfree_skb +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x30e85885 skb_dequeue +EXPORT_SYMBOL vmlinux 0x30f623e5 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x30f688a7 neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310bcd4d get_user_pages +EXPORT_SYMBOL vmlinux 0x3133c004 kern_path +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x313dae3c generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3182c5b9 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31aa3485 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x31bfe0aa sock_kfree_s +EXPORT_SYMBOL vmlinux 0x31c772c9 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x31d323fd sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x31e76b57 recalibrate_cpu_khz +EXPORT_SYMBOL vmlinux 0x31ec44a0 _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0x31ef43e2 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x31fdbed4 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x3202435a wrmsr_safe_regs +EXPORT_SYMBOL vmlinux 0x324f03b0 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x326425ca pci_unmap_biosrom +EXPORT_SYMBOL vmlinux 0x3270df11 dev_uc_init +EXPORT_SYMBOL vmlinux 0x32b5fa2f mem_section +EXPORT_SYMBOL vmlinux 0x32d1c893 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e6f1a0 acpi_video_backlight_string +EXPORT_SYMBOL vmlinux 0x32f0e778 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x33218e6f make_kuid +EXPORT_SYMBOL vmlinux 0x333c1603 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x3341d61d mmc_detect_change +EXPORT_SYMBOL vmlinux 0x3351c97c acpi_get_hp_hw_control_from_firmware +EXPORT_SYMBOL vmlinux 0x3377c0be skb_append +EXPORT_SYMBOL vmlinux 0x3393414e phy_device_remove +EXPORT_SYMBOL vmlinux 0x339392ea param_ops_charp +EXPORT_SYMBOL vmlinux 0x339545d4 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d103ed nf_log_trace +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x3401607c registered_fb +EXPORT_SYMBOL vmlinux 0x34221c71 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x342ec21c bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x342ecdbf netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x342f60fe apm_info +EXPORT_SYMBOL vmlinux 0x3448d685 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x3449370d from_kuid_munged +EXPORT_SYMBOL vmlinux 0x3454300d input_register_handler +EXPORT_SYMBOL vmlinux 0x345f482e replace_mount_options +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346b7f61 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x348b73f4 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34b3a483 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x34b6d34b jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x34d0957c inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x34d2511b twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x34da2b7c module_layout +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f52008 bio_copy_data +EXPORT_SYMBOL vmlinux 0x350012e2 path_put +EXPORT_SYMBOL vmlinux 0x35019ff4 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x350b8dc7 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x350bcd1f napi_consume_skb +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x353e21e3 acpi_bios_warning +EXPORT_SYMBOL vmlinux 0x3542b8b7 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x35449497 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x3545a396 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x35607501 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x3560a4ff set_pages_wb +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35667be9 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x35a7e083 simple_write_end +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ad35ef inet_frag_find +EXPORT_SYMBOL vmlinux 0x35e8a4bc input_get_keycode +EXPORT_SYMBOL vmlinux 0x3600ed00 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x360b1afe probe_irq_mask +EXPORT_SYMBOL vmlinux 0x3614b1cc do_splice_direct +EXPORT_SYMBOL vmlinux 0x365f84ab user_revoke +EXPORT_SYMBOL vmlinux 0x3661b4d4 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x369e4f28 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36bf02e1 agp_enable +EXPORT_SYMBOL vmlinux 0x36c6af51 intel_scu_ipc_iowrite8 +EXPORT_SYMBOL vmlinux 0x36dbcf3b set_binfmt +EXPORT_SYMBOL vmlinux 0x36ee0af1 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x36ff31b1 vga_switcheroo_fini_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x370b76bb netdev_notice +EXPORT_SYMBOL vmlinux 0x370f9850 efi +EXPORT_SYMBOL vmlinux 0x371960d5 mpage_readpage +EXPORT_SYMBOL vmlinux 0x372860cc tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3760c65c kfree_skb_list +EXPORT_SYMBOL vmlinux 0x377697f0 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x37955b2b dev_change_carrier +EXPORT_SYMBOL vmlinux 0x37956684 vfs_getattr +EXPORT_SYMBOL vmlinux 0x37991e32 tcp_child_process +EXPORT_SYMBOL vmlinux 0x379dee5f trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b6f8de tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d6ed36 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x37db8f19 dmi_get_date +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37ec5909 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x3803821a seq_escape +EXPORT_SYMBOL vmlinux 0x38039866 send_sig +EXPORT_SYMBOL vmlinux 0x38066f96 netdev_update_features +EXPORT_SYMBOL vmlinux 0x38099e13 wrmsrl_on_cpu +EXPORT_SYMBOL vmlinux 0x38105053 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x38521e8b jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x3866ba6d xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x388799f6 unregister_kmmio_probe +EXPORT_SYMBOL vmlinux 0x38a47ed9 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38dc27ca __register_binfmt +EXPORT_SYMBOL vmlinux 0x38e58cd2 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x39081193 __max_logical_packages +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39470a82 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x396157f1 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x396299c4 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x39693015 empty_aops +EXPORT_SYMBOL vmlinux 0x396ba4dd pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x3977f738 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x398f9538 simple_dname +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399b8aea udp_sendmsg +EXPORT_SYMBOL vmlinux 0x399d5e1b inetdev_by_index +EXPORT_SYMBOL vmlinux 0x39a055f3 acpi_remove_gpe_handler +EXPORT_SYMBOL vmlinux 0x39a3956e devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b6ca08 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x39b86cf1 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x39dc6160 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x39f1c2f4 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x3a08475f platform_thermal_notify +EXPORT_SYMBOL vmlinux 0x3a1653b4 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x3a17999c iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a252e63 agp_copy_info +EXPORT_SYMBOL vmlinux 0x3a30f15a simple_setattr +EXPORT_SYMBOL vmlinux 0x3a32839e intel_gtt_chipset_flush +EXPORT_SYMBOL vmlinux 0x3a3720e0 simple_empty +EXPORT_SYMBOL vmlinux 0x3a3bebcf vfs_rmdir +EXPORT_SYMBOL vmlinux 0x3a5c5786 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x3a73f3ab ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x3a8469d2 read_code +EXPORT_SYMBOL vmlinux 0x3a84dd87 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x3a99f998 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3ab36774 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x3ac9853a update_devfreq +EXPORT_SYMBOL vmlinux 0x3adb02cc xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x3ae6958f tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x3b11ac56 elv_rb_find +EXPORT_SYMBOL vmlinux 0x3b201620 machine_real_restart +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6f6cd2 udp_table +EXPORT_SYMBOL vmlinux 0x3b71b3ce inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3b7f22eb generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x3b8ec781 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x3b95fecd frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x3bb5114a prepare_to_wait +EXPORT_SYMBOL vmlinux 0x3bc11e74 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x3bc8f9bf blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x3bda61d8 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x3be5220f acpi_match_device_ids +EXPORT_SYMBOL vmlinux 0x3be66e5a pnp_request_card_device +EXPORT_SYMBOL vmlinux 0x3c030702 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x3c0e78b6 padata_free +EXPORT_SYMBOL vmlinux 0x3c2e774c gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c42afc0 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x3c477262 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c84f163 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x3c9fe30a netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x3ca13d7e scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3ccd4bae dquot_disable +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce91a27 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x3cea09ed blk_complete_request +EXPORT_SYMBOL vmlinux 0x3d039acd netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x3d1391e2 _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x3d1cb5eb inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x3d43c02f thaw_super +EXPORT_SYMBOL vmlinux 0x3d64cf52 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x3d7c1ed7 msrs_alloc +EXPORT_SYMBOL vmlinux 0x3d86323f mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x3d9395cb blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x3da171f9 pci_mem_start +EXPORT_SYMBOL vmlinux 0x3da19c2c neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3dabd630 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x3dc75c8a tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de7cb68 register_console +EXPORT_SYMBOL vmlinux 0x3de8bc28 to_nd_btt +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e07a3fc skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x3e0bf933 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x3e254f8a pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x3e25d2d8 param_ops_byte +EXPORT_SYMBOL vmlinux 0x3e2ae3a8 acpi_release_global_lock +EXPORT_SYMBOL vmlinux 0x3e3312f4 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x3e33a5c2 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x3e654f49 acpi_decode_pld_buffer +EXPORT_SYMBOL vmlinux 0x3e764286 vfs_mknod +EXPORT_SYMBOL vmlinux 0x3e869188 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e8bcb36 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e92aab9 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ea16fa7 inet_ioctl +EXPORT_SYMBOL vmlinux 0x3ec761ca trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x3ed6e7f7 tty_port_put +EXPORT_SYMBOL vmlinux 0x3eece004 blk_put_queue +EXPORT_SYMBOL vmlinux 0x3eef1bdf blk_queue_dma_pad +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 0x3f2999ae pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x3f31d04e ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x3f37652a do_splice_to +EXPORT_SYMBOL vmlinux 0x3f39b462 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x3f44c7e2 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f47436b iov_iter_zero +EXPORT_SYMBOL vmlinux 0x3f543058 acpi_bus_get_status +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f726a61 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x3f96b5ce skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x3fb102ec end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x3fbdbea7 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x3fc32564 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x3fd838f1 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x3fde71d5 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x3fe7e27a scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x3fe7fede i2c_use_client +EXPORT_SYMBOL vmlinux 0x3feb8e0f dst_destroy +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3fff8d28 pnp_release_card_device +EXPORT_SYMBOL vmlinux 0x40173e3c max8925_reg_read +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x403f0db5 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x404d54ed keyring_clear +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405b4bd3 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4064a4af current_in_userns +EXPORT_SYMBOL vmlinux 0x407253b8 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x408ee7d1 blk_mq_stop_hw_queues +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 0x40a2337a devm_gpiod_put +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 0x40bd5c74 vfs_mkdir +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 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40f7c3ed tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x410213de give_up_console +EXPORT_SYMBOL vmlinux 0x4103d283 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x4104d319 simple_write_begin +EXPORT_SYMBOL vmlinux 0x411d2ab3 scsi_device_get +EXPORT_SYMBOL vmlinux 0x413b6d08 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41648291 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x416bd35c vfs_iter_write +EXPORT_SYMBOL vmlinux 0x41862ad4 vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x41873525 dump_page +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x419598eb dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x41ac5443 block_write_begin +EXPORT_SYMBOL vmlinux 0x41e87ca9 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x4202c8bd inet6_ioctl +EXPORT_SYMBOL vmlinux 0x42071b6a twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421bba86 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x4228eb3f neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x42350e8d ucs2_strlen +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42569e1e agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42775059 filp_open +EXPORT_SYMBOL vmlinux 0x4285d002 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x4292364c schedule +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42b073ee n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x42b1793a dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x42bb622f __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x42c76cbb tty_register_driver +EXPORT_SYMBOL vmlinux 0x42c8de35 ioremap_nocache +EXPORT_SYMBOL vmlinux 0x42da84da phy_connect_direct +EXPORT_SYMBOL vmlinux 0x42db4091 param_get_uint +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430c8a64 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x430e3d54 sock_i_uid +EXPORT_SYMBOL vmlinux 0x43178a29 generic_removexattr +EXPORT_SYMBOL vmlinux 0x431ba5b1 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x432cdba1 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x432f501f do_truncate +EXPORT_SYMBOL vmlinux 0x434ad75e tty_port_close +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436224f2 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x4365c381 __dst_free +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x437797dc rwsem_wake +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43b5cf99 sock_create_kern +EXPORT_SYMBOL vmlinux 0x43bd26cb bio_endio +EXPORT_SYMBOL vmlinux 0x43d10b1e iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x43def1be udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x43e1dd93 register_qdisc +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43faccdc wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x44094a55 simple_rename +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x4412fc09 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x443bac30 skb_copy +EXPORT_SYMBOL vmlinux 0x443d6555 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x444e38f9 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x44500d50 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x4451baf8 key_revoke +EXPORT_SYMBOL vmlinux 0x445bbcba tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x445e6524 neigh_destroy +EXPORT_SYMBOL vmlinux 0x44644128 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x4474e669 skb_seq_read +EXPORT_SYMBOL vmlinux 0x448495e6 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x44870af9 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x448e085f prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x449a538d blk_mq_stop_hw_queue +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 0x44c72f6d d_find_alias +EXPORT_SYMBOL vmlinux 0x44d3006b blk_fetch_request +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44f463d2 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x45004025 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x4506ad2f pcie_get_mps +EXPORT_SYMBOL vmlinux 0x45081703 ec_get_handle +EXPORT_SYMBOL vmlinux 0x450b1f9b elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x45433c2c flow_cache_init +EXPORT_SYMBOL vmlinux 0x45690907 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45c67015 kdb_current_task +EXPORT_SYMBOL vmlinux 0x45c8601d vfs_link +EXPORT_SYMBOL vmlinux 0x45e8bf48 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x46047606 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x462494f8 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x4624f445 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x4629334c __preempt_count +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x463dfea3 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4673ed3b nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x469b0000 vme_lm_request +EXPORT_SYMBOL vmlinux 0x469c5c6a bh_submit_read +EXPORT_SYMBOL vmlinux 0x46a1c832 __skb_checksum +EXPORT_SYMBOL vmlinux 0x46a43e2e uart_add_one_port +EXPORT_SYMBOL vmlinux 0x46b87337 __sb_start_write +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x46ff1b2f netpoll_setup +EXPORT_SYMBOL vmlinux 0x46ff8c9f iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x472bc71b udp6_set_csum +EXPORT_SYMBOL vmlinux 0x473d6595 scsi_unregister +EXPORT_SYMBOL vmlinux 0x4740b3bc xen_arch_unregister_cpu +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x4747f682 blk_rq_init +EXPORT_SYMBOL vmlinux 0x4756fa76 migrate_page +EXPORT_SYMBOL vmlinux 0x475bf216 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x475f010b acpi_purge_cached_objects +EXPORT_SYMBOL vmlinux 0x478d10b2 ht_destroy_irq +EXPORT_SYMBOL vmlinux 0x4791b0ca sk_receive_skb +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479a6f41 vm_mmap +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47b95213 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x47bdbdb1 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x47cf2bdd netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x47d1accd mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x47d1dc94 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x4803b5c0 dev_addr_del +EXPORT_SYMBOL vmlinux 0x48193639 acpi_lid_open +EXPORT_SYMBOL vmlinux 0x481cb9ab acpi_enter_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x483bb181 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x484393cf bdi_destroy +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x488604ba ppp_channel_index +EXPORT_SYMBOL vmlinux 0x489d7067 inet_del_offload +EXPORT_SYMBOL vmlinux 0x48a25f88 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x48ac53f5 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x48b347d4 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48cecb66 release_sock +EXPORT_SYMBOL vmlinux 0x48f1123c __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x48f3d835 tty_write_room +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49238c8c mpage_writepages +EXPORT_SYMBOL vmlinux 0x49310c7e netif_rx_ni +EXPORT_SYMBOL vmlinux 0x49356430 prepare_creds +EXPORT_SYMBOL vmlinux 0x4935954c unregister_filesystem +EXPORT_SYMBOL vmlinux 0x493992d3 __block_write_begin +EXPORT_SYMBOL vmlinux 0x49408a4a netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x494ca689 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49877894 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x49a21b14 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x49a5a3e9 processors +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b163b8 acpi_bus_scan +EXPORT_SYMBOL vmlinux 0x49b4c113 input_close_device +EXPORT_SYMBOL vmlinux 0x49c552f7 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a023652 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x4a1b2aec pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x4a303692 vfs_readf +EXPORT_SYMBOL vmlinux 0x4a3a1a8a pci_bus_get +EXPORT_SYMBOL vmlinux 0x4a5e8b35 dquot_destroy +EXPORT_SYMBOL vmlinux 0x4a619f83 memcpy +EXPORT_SYMBOL vmlinux 0x4a7fb081 __bforget +EXPORT_SYMBOL vmlinux 0x4a96ff9e twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x4aace4bb inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x4aade1a3 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad87bc2 md_done_sync +EXPORT_SYMBOL vmlinux 0x4adb6d89 setup_new_exec +EXPORT_SYMBOL vmlinux 0x4aef1687 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b33bd4f nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x4b50bda7 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x4b532637 mount_nodev +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b667176 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x4b84e7dd pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x4b930679 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x4b9dfb04 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x4b9f29d7 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bc1e7f6 kern_path_create +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4c07a7e0 acpi_processor_unregister_performance +EXPORT_SYMBOL vmlinux 0x4c28ee54 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c388d72 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x4c5baf8c netdev_printk +EXPORT_SYMBOL vmlinux 0x4c5f85ac first_ec +EXPORT_SYMBOL vmlinux 0x4c714998 noop_qdisc +EXPORT_SYMBOL vmlinux 0x4c72b1f9 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x4c81ffbd i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x4c878322 iosf_mbi_modify +EXPORT_SYMBOL vmlinux 0x4cb49525 blk_put_request +EXPORT_SYMBOL vmlinux 0x4cb8663c proc_create_data +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce5beb4 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x4cea8302 ___preempt_schedule_notrace +EXPORT_SYMBOL vmlinux 0x4cf4b845 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x4d11c497 devm_memremap +EXPORT_SYMBOL vmlinux 0x4d2ba8c4 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x4d362877 filemap_fault +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d4caed4 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x4d662494 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x4d690825 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x4d74b214 neigh_lookup +EXPORT_SYMBOL vmlinux 0x4d876512 bioset_free +EXPORT_SYMBOL vmlinux 0x4d8d877b __frontswap_store +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dca262f scsi_ioctl +EXPORT_SYMBOL vmlinux 0x4dd66e79 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de69dc3 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfdadc1 mutex_trylock +EXPORT_SYMBOL vmlinux 0x4dff8b13 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e369d86 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x4e45b98a pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x4e60e1bb param_array_ops +EXPORT_SYMBOL vmlinux 0x4e644f03 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x4e65b68b security_path_rename +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4ea25709 dql_reset +EXPORT_SYMBOL vmlinux 0x4ea72c9c serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x4eb4f776 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x4ebfb48e netif_device_attach +EXPORT_SYMBOL vmlinux 0x4ed89bfe copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x4eea07a1 serio_rescan +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 0x4f4f226f xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b400b _copy_from_user +EXPORT_SYMBOL vmlinux 0x4f6f0197 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x4f783f30 acpi_read +EXPORT_SYMBOL vmlinux 0x4f7d0b2b key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x4f84c60d ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x4f8b5ddb _copy_to_user +EXPORT_SYMBOL vmlinux 0x4f9b9f73 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x4fb4f6f1 search_binary_handler +EXPORT_SYMBOL vmlinux 0x4fcb647a mdiobus_scan +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501119e3 genl_notify +EXPORT_SYMBOL vmlinux 0x501f00e4 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x5031867d input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x503b3677 pci_assign_resource +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 0x507d4f1a gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x50820b06 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x5095c5d6 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x5096bcbf vme_register_driver +EXPORT_SYMBOL vmlinux 0x5098ca37 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x509b64ea acpi_has_method +EXPORT_SYMBOL vmlinux 0x50a4ab3e jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x50a53005 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50ce30be alloc_disk_node +EXPORT_SYMBOL vmlinux 0x50d68377 arch_phys_wc_del +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50e3eb0c poll_freewait +EXPORT_SYMBOL vmlinux 0x50eedeb8 printk +EXPORT_SYMBOL vmlinux 0x50f28acb from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511be1a8 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x514e53b8 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x5158e406 get_fs_type +EXPORT_SYMBOL vmlinux 0x51719973 dq_data_lock +EXPORT_SYMBOL vmlinux 0x5186518f profile_pc +EXPORT_SYMBOL vmlinux 0x5196bb12 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x51d12d4e acpi_pci_disabled +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51f27dac scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x51fde04a __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52095e19 acpi_get_data +EXPORT_SYMBOL vmlinux 0x520a9ff7 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52283cc0 seq_putc +EXPORT_SYMBOL vmlinux 0x522fd2a2 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x5231d913 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x524a0ea2 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x525e026f acpi_os_unmap_generic_address +EXPORT_SYMBOL vmlinux 0x52824d17 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x52863fe2 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x528929e7 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x529da01f rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x52a84b2f genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x52a8c338 i2c_transfer +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52b28c69 dev_uc_add +EXPORT_SYMBOL vmlinux 0x52dc111f d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x52dd12b9 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x52e4583e vga_switcheroo_init_domain_pm_optimus_hdmi_audio +EXPORT_SYMBOL vmlinux 0x52ee355c skb_pad +EXPORT_SYMBOL vmlinux 0x52f85cc7 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x52fc6744 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x5300fadc vme_slave_request +EXPORT_SYMBOL vmlinux 0x530897c2 pnp_disable_dev +EXPORT_SYMBOL vmlinux 0x530a76a9 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x530b1e4c rdmsr_on_cpus +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x531b5bce nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x531b604e __virt_addr_valid +EXPORT_SYMBOL vmlinux 0x5329bc60 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53569707 this_cpu_off +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536f0b9e generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x5391d5df pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x53982756 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b7e00f ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x53cd5ce2 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x53e3a7d9 mdiobus_free +EXPORT_SYMBOL vmlinux 0x53f659f2 km_new_mapping +EXPORT_SYMBOL vmlinux 0x53f77eed __dquot_free_space +EXPORT_SYMBOL vmlinux 0x540054d3 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x54066864 blk_finish_request +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x54326814 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x544b0c11 acpi_lid_notifier_register +EXPORT_SYMBOL vmlinux 0x545b6e4c __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x5464a080 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x5464d3f6 acpi_remove_sci_handler +EXPORT_SYMBOL vmlinux 0x5487f791 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x548aa5cd backlight_device_register +EXPORT_SYMBOL vmlinux 0x549a501d tty_port_open +EXPORT_SYMBOL vmlinux 0x549b57ad filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x549be1ba vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c07c4e max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d98086 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x54e2ace7 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f24d1a fence_default_wait +EXPORT_SYMBOL vmlinux 0x550886f0 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x550f4a2c __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551bedc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x55258418 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x557b22b2 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x559fce34 kobject_put +EXPORT_SYMBOL vmlinux 0x55bdb0b3 dma_mmap_from_coherent +EXPORT_SYMBOL vmlinux 0x55cf1cf9 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x55d3869c __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e60a36 queued_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x55e6a00d generic_read_dir +EXPORT_SYMBOL vmlinux 0x560f793e framebuffer_release +EXPORT_SYMBOL vmlinux 0x5620e1b1 param_set_int +EXPORT_SYMBOL vmlinux 0x562740ee __neigh_event_send +EXPORT_SYMBOL vmlinux 0x562b71a5 kfree_put_link +EXPORT_SYMBOL vmlinux 0x56309852 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563706b8 vga_get +EXPORT_SYMBOL vmlinux 0x56378103 set_pages_array_uc +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x5641419b wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x5643ecd0 fget_raw +EXPORT_SYMBOL vmlinux 0x56656957 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x5676a3e5 intel_scu_ipc_ioread8 +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56945fc2 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x5705088a __vmalloc +EXPORT_SYMBOL vmlinux 0x571f1ed6 __pagevec_release +EXPORT_SYMBOL vmlinux 0x57299ed2 kernel_read +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5742b20a dev_printk_emit +EXPORT_SYMBOL vmlinux 0x5748d29b page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x574a86d3 simple_unlink +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x575b723c dev_set_mtu +EXPORT_SYMBOL vmlinux 0x5765d873 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576f43c0 fb_get_mode +EXPORT_SYMBOL vmlinux 0x578544b6 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x5786c9ce max8998_read_reg +EXPORT_SYMBOL vmlinux 0x57954bde md_write_end +EXPORT_SYMBOL vmlinux 0x5795b727 mount_ns +EXPORT_SYMBOL vmlinux 0x579d9abe nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57a17cc5 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x57a945e1 input_grab_device +EXPORT_SYMBOL vmlinux 0x57ab649f register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x57b47d89 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x57ba72ab fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57cf3df1 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x57d59b3a blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x57e12ebf phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x57efa974 make_kgid +EXPORT_SYMBOL vmlinux 0x58039cff d_delete +EXPORT_SYMBOL vmlinux 0x580b629d __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5833f744 sock_alloc_send_pskb +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 0x58679117 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5879aea3 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58b9fbec pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x58c25c73 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x58df6e09 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f09ae5 pnp_find_card +EXPORT_SYMBOL vmlinux 0x58fef6f8 ist_info +EXPORT_SYMBOL vmlinux 0x591885f2 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x59219f31 tty_throttle +EXPORT_SYMBOL vmlinux 0x5926473f posix_test_lock +EXPORT_SYMBOL vmlinux 0x593790b7 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x59431857 fb_find_mode +EXPORT_SYMBOL vmlinux 0x5944d015 __cachemode2pte_tbl +EXPORT_SYMBOL vmlinux 0x5946e2b0 install_exec_creds +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595802e8 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x595e69c8 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b9b963 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x59bc9609 acpi_write_bit_register +EXPORT_SYMBOL vmlinux 0x59cfe89f generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x59eb2846 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a259cf8 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x5a4896a8 __put_user_2 +EXPORT_SYMBOL vmlinux 0x5a4a0cae blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x5a82c44a complete_and_exit +EXPORT_SYMBOL vmlinux 0x5a85ae03 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x5a8d9e42 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x5ac376a5 acpi_install_fixed_event_handler +EXPORT_SYMBOL vmlinux 0x5aea70d7 sg_miter_next +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b138d88 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x5b162bc8 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b2cf6b2 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x5b3214f5 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x5b45be24 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x5b53daee cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x5b94456c bio_split +EXPORT_SYMBOL vmlinux 0x5ba55fd9 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x5bbc3f4a netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x5bc8d583 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x5bd4dec9 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x5bf8f01a nf_hook_slow +EXPORT_SYMBOL vmlinux 0x5c0442fd acpi_gbl_FADT +EXPORT_SYMBOL vmlinux 0x5c106b34 dst_alloc +EXPORT_SYMBOL vmlinux 0x5c32f6c1 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x5c4c8281 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x5c545234 ucs2_strncmp +EXPORT_SYMBOL vmlinux 0x5c6ed981 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x5c711e29 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x5c76edd5 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x5c7be041 generic_listxattr +EXPORT_SYMBOL vmlinux 0x5c88db20 pci_bus_type +EXPORT_SYMBOL vmlinux 0x5cbdc957 napi_disable +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cee2b61 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d00227a dm_io +EXPORT_SYMBOL vmlinux 0x5d1577a6 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x5d2e0057 x86_hyper_ms_hyperv +EXPORT_SYMBOL vmlinux 0x5d44ed20 param_get_charp +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d74dbcf pnp_range_reserved +EXPORT_SYMBOL vmlinux 0x5d8475e0 completion_done +EXPORT_SYMBOL vmlinux 0x5d95d280 find_get_entry +EXPORT_SYMBOL vmlinux 0x5d9a036d tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x5db77e5b param_get_long +EXPORT_SYMBOL vmlinux 0x5dc9fe09 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x5dffb9b0 x86_hyper_vmware +EXPORT_SYMBOL vmlinux 0x5e404721 blk_make_request +EXPORT_SYMBOL vmlinux 0x5e686455 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x5e6de9c6 acpi_processor_notify_smm +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5e97100e __nd_driver_register +EXPORT_SYMBOL vmlinux 0x5ea1fe35 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x5eaf986b security_path_mkdir +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebf7d17 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ef80bd2 nf_log_unset +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0ef4bd __breadahead +EXPORT_SYMBOL vmlinux 0x5f1a07f6 pci_dev_get +EXPORT_SYMBOL vmlinux 0x5f1a4ccf intel_scu_ipc_update_register +EXPORT_SYMBOL vmlinux 0x5f1c55a3 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x5f2071ef key_type_keyring +EXPORT_SYMBOL vmlinux 0x5f2748e5 save_mount_options +EXPORT_SYMBOL vmlinux 0x5f27f692 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x5f2be527 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x5f5d0890 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x5f656139 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x5f80b65a lro_flush_all +EXPORT_SYMBOL vmlinux 0x5f8e70d4 pnp_unregister_card_driver +EXPORT_SYMBOL vmlinux 0x5f905853 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x5f9d5cf6 security_mmap_file +EXPORT_SYMBOL vmlinux 0x5fb2e8ef idr_init +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe1727d crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x5fed861a jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x60051713 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601621d7 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x601cc66a __find_get_block +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6020e0ea skb_store_bits +EXPORT_SYMBOL vmlinux 0x6024b6be unlock_rename +EXPORT_SYMBOL vmlinux 0x602d1140 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x602ed00d acpi_current_gpe_count +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x603b0957 nvm_register_target +EXPORT_SYMBOL vmlinux 0x604316d8 acpi_finish_gpe +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x606e7572 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6091ac3a netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x6095902a nf_afinfo +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL vmlinux 0x60ae8507 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60c0c3b0 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x60c65f25 filp_close +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e626cc abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x60e6b6e0 param_get_short +EXPORT_SYMBOL vmlinux 0x60f399d3 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x6108e034 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x610aaa40 mempool_destroy +EXPORT_SYMBOL vmlinux 0x611ca666 register_shrinker +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x615387f0 __lock_buffer +EXPORT_SYMBOL vmlinux 0x618733c2 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x6189dc34 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x618c3374 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x618cebf8 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x61ad5b8f dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x61b1c937 input_open_device +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c555f6 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x61d5a242 clkdev_add +EXPORT_SYMBOL vmlinux 0x61da42d4 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x61e7f044 blk_run_queue +EXPORT_SYMBOL vmlinux 0x61ede26d rtnl_notify +EXPORT_SYMBOL vmlinux 0x61ef2c98 dev_trans_start +EXPORT_SYMBOL vmlinux 0x61f30a80 ipv6_find_hdr +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 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622fa163 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x6237f6b5 acpi_enable_event +EXPORT_SYMBOL vmlinux 0x6238d4ce nf_reinject +EXPORT_SYMBOL vmlinux 0x6241a2ab __copy_from_user_ll_nocache +EXPORT_SYMBOL vmlinux 0x625e028f mark_page_accessed +EXPORT_SYMBOL vmlinux 0x625ec022 pnpbios_protocol +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62ad8e5d ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x62e6add1 irq_to_desc +EXPORT_SYMBOL vmlinux 0x630e300e qdisc_destroy +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x632a921f dev_uc_flush +EXPORT_SYMBOL vmlinux 0x63367cf5 netdev_crit +EXPORT_SYMBOL vmlinux 0x63574643 vfs_setpos +EXPORT_SYMBOL vmlinux 0x6365681e dquot_resume +EXPORT_SYMBOL vmlinux 0x636a5691 acpi_register_ioapic +EXPORT_SYMBOL vmlinux 0x63721516 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x6388591c down_timeout +EXPORT_SYMBOL vmlinux 0x639812b5 icmp_send +EXPORT_SYMBOL vmlinux 0x63a01291 acpi_leave_sleep_state_prep +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63c1e10e proc_mkdir +EXPORT_SYMBOL vmlinux 0x63c4438f i8042_install_filter +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d57a95 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f3bbc3 xfrm_init_replay +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 0x6449fd41 acpi_install_address_space_handler +EXPORT_SYMBOL vmlinux 0x644b44be pci_save_state +EXPORT_SYMBOL vmlinux 0x64941787 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64a595df tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x64aa9de8 pci_find_bus +EXPORT_SYMBOL vmlinux 0x64ab0e98 wait_for_completion +EXPORT_SYMBOL vmlinux 0x64b1c020 kmap_to_page +EXPORT_SYMBOL vmlinux 0x64d5af62 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x64df7701 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x64eae7ad set_memory_array_wb +EXPORT_SYMBOL vmlinux 0x64fa7693 __acpi_handle_debug +EXPORT_SYMBOL vmlinux 0x65069fef xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x6511d31d netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6520d128 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x65217671 deactivate_super +EXPORT_SYMBOL vmlinux 0x65311fca skb_make_writable +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x654fb630 key_unlink +EXPORT_SYMBOL vmlinux 0x655e801a blk_requeue_request +EXPORT_SYMBOL vmlinux 0x655f1ab0 set_memory_array_wc +EXPORT_SYMBOL vmlinux 0x65634273 write_inode_now +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x6572df2a md_reload_sb +EXPORT_SYMBOL vmlinux 0x6592fee5 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x65975b00 __ht_create_irq +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 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x6602d067 phy_print_status +EXPORT_SYMBOL vmlinux 0x6605fcb6 arp_xmit +EXPORT_SYMBOL vmlinux 0x6620ccdb eisa_bus_type +EXPORT_SYMBOL vmlinux 0x66355efc vprintk +EXPORT_SYMBOL vmlinux 0x663739fa d_walk +EXPORT_SYMBOL vmlinux 0x663c0a86 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x663f7cd0 acpi_install_table_handler +EXPORT_SYMBOL vmlinux 0x664ccad0 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x66780166 simple_open +EXPORT_SYMBOL vmlinux 0x667e4e80 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x667f101e tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x66885fbf scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x669affab __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x669bf80b proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x66a57882 dump_trace +EXPORT_SYMBOL vmlinux 0x66ab09b8 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x66b33a21 km_report +EXPORT_SYMBOL vmlinux 0x66c80887 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x66cb8bc0 dev_load +EXPORT_SYMBOL vmlinux 0x66d16c55 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x66d804b1 percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x6701b6f3 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x67104bd9 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x671210fc max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x6714d358 netdev_warn +EXPORT_SYMBOL vmlinux 0x6729d3df __get_user_4 +EXPORT_SYMBOL vmlinux 0x672b2a0d uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x673ef8ee netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67499cc4 down_write +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67737789 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x67a20684 file_remove_privs +EXPORT_SYMBOL vmlinux 0x67a72e1d sock_wmalloc +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67c78399 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x67e4fb64 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x67fb9703 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x67ff579a qdisc_list_add +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680ec266 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0x680f1070 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x68189e0d nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x682055e5 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x68320d3e seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x6839e6e1 fd_install +EXPORT_SYMBOL vmlinux 0x68532330 elv_add_request +EXPORT_SYMBOL vmlinux 0x68603fb5 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x68658ee0 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x68731504 dev_driver_string +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68849cda pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x68862ac1 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x6888f591 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x6897ad5e scsi_device_resume +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b2c1b6 _dev_info +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68be989e kmem_cache_create +EXPORT_SYMBOL vmlinux 0x68bffc41 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x68d0e592 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x68e1fb8e cdev_alloc +EXPORT_SYMBOL vmlinux 0x68f1c513 arch_dma_alloc_attrs +EXPORT_SYMBOL vmlinux 0x69035228 dev_mc_add +EXPORT_SYMBOL vmlinux 0x691001b5 acpi_evaluate_integer +EXPORT_SYMBOL vmlinux 0x69388314 get_task_io_context +EXPORT_SYMBOL vmlinux 0x69589a3c stop_tty +EXPORT_SYMBOL vmlinux 0x6958c5ae simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697c4782 input_allocate_device +EXPORT_SYMBOL vmlinux 0x6988d0ca cpu_dr7 +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a7596a blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69afbcc2 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x69b65f65 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x69b7ed32 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x69c28e92 set_page_dirty +EXPORT_SYMBOL vmlinux 0x69c9fb4b pci_platform_rom +EXPORT_SYMBOL vmlinux 0x69cd4452 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x69e040ef end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x69e35ddd gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x69eced13 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x69f3ae2a md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x69f52556 tty_do_resize +EXPORT_SYMBOL vmlinux 0x69f8f2ed inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a184a49 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x6a23400b mmc_of_parse +EXPORT_SYMBOL vmlinux 0x6a27bfce csum_partial_copy_generic +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 0x6ac001be __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6acc0bc9 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x6ad85887 acpi_enable_gpe +EXPORT_SYMBOL vmlinux 0x6add5c9a dmi_find_device +EXPORT_SYMBOL vmlinux 0x6ade92a7 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x6ae62475 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x6aecdf0e __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af8f4e8 put_io_context +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b22557e pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x6b374eae bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x6b42deb7 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x6b58f0d8 blk_end_request_all +EXPORT_SYMBOL vmlinux 0x6b73b057 set_nlink +EXPORT_SYMBOL vmlinux 0x6b74b9be bit_waitqueue +EXPORT_SYMBOL vmlinux 0x6b7ff604 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x6b894030 dev_get_stats +EXPORT_SYMBOL vmlinux 0x6b924f6e pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x6bad39a8 jbd2_journal_try_to_free_buffers +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 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c0e6567 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x6c158a66 send_sig_info +EXPORT_SYMBOL vmlinux 0x6c1ca0cf key_alloc +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c2e3320 strncmp +EXPORT_SYMBOL vmlinux 0x6c4c5cf6 blk_mq_map_queue +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 0x6c75693e inet_stream_connect +EXPORT_SYMBOL vmlinux 0x6ca43551 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x6cab3a53 dev_addr_init +EXPORT_SYMBOL vmlinux 0x6cb1a300 vme_bus_num +EXPORT_SYMBOL vmlinux 0x6cb1c94b jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x6cbb66cd seq_hex_dump +EXPORT_SYMBOL vmlinux 0x6cbecc2d phy_init_eee +EXPORT_SYMBOL vmlinux 0x6cc6c7f8 km_policy_expired +EXPORT_SYMBOL vmlinux 0x6ccf7ecb dma_mark_declared_memory_occupied +EXPORT_SYMBOL vmlinux 0x6cd9c6b8 param_set_ushort +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6ce68cf0 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1d5d9b iosf_mbi_write +EXPORT_SYMBOL vmlinux 0x6d2750d1 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d2963fe tcp_shutdown +EXPORT_SYMBOL vmlinux 0x6d2e3c8e inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x6d334118 __get_user_8 +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d422dbe phy_device_register +EXPORT_SYMBOL vmlinux 0x6d748295 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x6d7a60e8 elevator_change +EXPORT_SYMBOL vmlinux 0x6d874d4e agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x6d991bc4 param_set_invbool +EXPORT_SYMBOL vmlinux 0x6dc0c9dc down_interruptible +EXPORT_SYMBOL vmlinux 0x6dc6dd56 down +EXPORT_SYMBOL vmlinux 0x6ddda703 dst_release +EXPORT_SYMBOL vmlinux 0x6de79bd6 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x6dec5e92 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e066ff3 current_fs_time +EXPORT_SYMBOL vmlinux 0x6e0b7704 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x6e1461c7 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x6e18e801 led_set_brightness +EXPORT_SYMBOL vmlinux 0x6e1b8892 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x6e1f94f3 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x6e20b5ad tso_start +EXPORT_SYMBOL vmlinux 0x6e269e55 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x6e4fb0d1 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e748bd6 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x6e77a2bb bmap +EXPORT_SYMBOL vmlinux 0x6e952dd9 d_invalidate +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ef66e8a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x6ef6b835 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x6ef88b0e fget +EXPORT_SYMBOL vmlinux 0x6f16357e read_cache_page +EXPORT_SYMBOL vmlinux 0x6f17d32f fb_show_logo +EXPORT_SYMBOL vmlinux 0x6f18af34 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x6f1bf786 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f21316f tcf_exts_change +EXPORT_SYMBOL vmlinux 0x6f2e4f46 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0x6f556bdb acpi_get_gpe_device +EXPORT_SYMBOL vmlinux 0x6f56f28d tcp_parse_options +EXPORT_SYMBOL vmlinux 0x6f59144a is_nd_btt +EXPORT_SYMBOL vmlinux 0x6f8839d5 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f9c27ca kmap_high +EXPORT_SYMBOL vmlinux 0x6fa4cd86 pcibios_set_irq_routing +EXPORT_SYMBOL vmlinux 0x6fb29dc1 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x6fb89d2b nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6feb2039 acpi_write +EXPORT_SYMBOL vmlinux 0x6ff16fca generic_block_bmap +EXPORT_SYMBOL vmlinux 0x7002e0e2 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x700318b9 security_path_chmod +EXPORT_SYMBOL vmlinux 0x701050a2 param_get_bool +EXPORT_SYMBOL vmlinux 0x701ddbd0 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x7023bea8 unregister_acpi_notifier +EXPORT_SYMBOL vmlinux 0x70248df6 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x7029f11b iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x703f5908 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x706cf369 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x70707238 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x707158f4 blk_get_request +EXPORT_SYMBOL vmlinux 0x707f3496 udp_seq_open +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x707f93dd preempt_schedule +EXPORT_SYMBOL vmlinux 0x7088ce72 printk_emit +EXPORT_SYMBOL vmlinux 0x708998cb pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x708a79f7 __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x70a262d5 I_BDEV +EXPORT_SYMBOL vmlinux 0x70a40e9c devm_clk_get +EXPORT_SYMBOL vmlinux 0x70d1f8f3 strncat +EXPORT_SYMBOL vmlinux 0x70d8ab82 acpi_acquire_global_lock +EXPORT_SYMBOL vmlinux 0x70f1c78e agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7104e6a3 register_cdrom +EXPORT_SYMBOL vmlinux 0x71090b51 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7131ad48 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x713e5b86 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x714886da kobject_init +EXPORT_SYMBOL vmlinux 0x714ab6ea find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x715cef6b netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718261aa blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b86198 __netif_schedule +EXPORT_SYMBOL vmlinux 0x71b93538 dst_init +EXPORT_SYMBOL vmlinux 0x71ce4953 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7230ac36 param_set_long +EXPORT_SYMBOL vmlinux 0x7237ec13 make_kprojid +EXPORT_SYMBOL vmlinux 0x72401c8b padata_do_serial +EXPORT_SYMBOL vmlinux 0x724513ab __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x72465271 generic_file_open +EXPORT_SYMBOL vmlinux 0x726c154f __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x72934bca starget_for_each_device +EXPORT_SYMBOL vmlinux 0x72a94b9f netif_napi_add +EXPORT_SYMBOL vmlinux 0x72a9fe9b tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x72aca763 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72bbb7dc d_move +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72d62cb5 vga_switcheroo_set_dynamic_switch +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72fefc64 proto_unregister +EXPORT_SYMBOL vmlinux 0x72ffd8bc unregister_netdev +EXPORT_SYMBOL vmlinux 0x7303bd00 up_write +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x732e6334 make_bad_inode +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734419a8 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x73495c58 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x7357c5f9 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x735a0bd5 native_io_delay +EXPORT_SYMBOL vmlinux 0x736262df dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x738714db ida_pre_get +EXPORT_SYMBOL vmlinux 0x738803e6 strnlen +EXPORT_SYMBOL vmlinux 0x738ef939 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x73b9ae9d inet_del_protocol +EXPORT_SYMBOL vmlinux 0x73bfe413 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x73d8444c inet_frag_kill +EXPORT_SYMBOL vmlinux 0x73dd54eb irq_fpu_usable +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e7b6e3 dm_put_device +EXPORT_SYMBOL vmlinux 0x73eb1d18 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x73f3abed block_invalidatepage +EXPORT_SYMBOL vmlinux 0x73ff3ef9 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x7405f599 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x740a1b95 reserve_evntsel_nmi +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7413793a EISA_bus +EXPORT_SYMBOL vmlinux 0x7415e5db dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x743b4ae3 atomic64_inc_not_zero_cx8 +EXPORT_SYMBOL vmlinux 0x744e9322 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x745caa3e padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x745f20a3 idr_is_empty +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x747a1e98 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x74836e24 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x748f8f77 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x749859a3 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x74a4f180 input_set_keycode +EXPORT_SYMBOL vmlinux 0x74b8dfee mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74ccc9fe register_netdevice +EXPORT_SYMBOL vmlinux 0x74cfaf3d tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x74d3a39b udp_ioctl +EXPORT_SYMBOL vmlinux 0x74e07e48 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x74e54dac neigh_for_each +EXPORT_SYMBOL vmlinux 0x74e5c98f ucs2_strnlen +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e6a776 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x74ff0eed phy_start +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x75271716 save_processor_state +EXPORT_SYMBOL vmlinux 0x752c5944 blkdev_get +EXPORT_SYMBOL vmlinux 0x7531e3dc acpi_get_event_resources +EXPORT_SYMBOL vmlinux 0x7531f8ac pci_get_slot +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x755181ce pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x7569e83c iov_iter_init +EXPORT_SYMBOL vmlinux 0x756fe2d8 arch_debugfs_dir +EXPORT_SYMBOL vmlinux 0x757a1b7f posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75aa1b89 phy_detach +EXPORT_SYMBOL vmlinux 0x75b204fa ata_dev_printk +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 0x75bf9814 submit_bh +EXPORT_SYMBOL vmlinux 0x75c18c58 xen_biovec_phys_mergeable +EXPORT_SYMBOL vmlinux 0x75c75ffe agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x75cee23b mmc_can_discard +EXPORT_SYMBOL vmlinux 0x75d21809 vprintk_emit +EXPORT_SYMBOL vmlinux 0x75ea0243 set_disk_ro +EXPORT_SYMBOL vmlinux 0x75fbdefd acpi_remove_address_space_handler +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7620dbcf page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x76244cd8 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x762add85 atomic64_inc_return_cx8 +EXPORT_SYMBOL vmlinux 0x7636706d __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x7644dfdb get_phy_device +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x7659a537 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x765a5f1e xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x765decf7 vfs_llseek +EXPORT_SYMBOL vmlinux 0x767ddb02 set_memory_wc +EXPORT_SYMBOL vmlinux 0x76891635 skb_checksum +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76b2a960 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76e321e6 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x76fc4649 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x770a0036 isapnp_cfg_begin +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7720a91a noop_fsync +EXPORT_SYMBOL vmlinux 0x77456e0a acpi_root_dir +EXPORT_SYMBOL vmlinux 0x777eced4 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x777f9184 sock_no_listen +EXPORT_SYMBOL vmlinux 0x7780ea51 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x7794ef03 uart_register_driver +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77a95dfa jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e5de0a padata_add_cpu +EXPORT_SYMBOL vmlinux 0x780702f6 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x780f33e9 done_path_create +EXPORT_SYMBOL vmlinux 0x780f586a swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x780fdfd1 intel_enable_gtt +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 0x78438b6f loop_register_transfer +EXPORT_SYMBOL vmlinux 0x7848889c pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788ce25a netif_skb_features +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a5ff8a fence_add_callback +EXPORT_SYMBOL vmlinux 0x78b3655f xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x78d05b14 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e36385 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x78e618b4 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x78e739aa up +EXPORT_SYMBOL vmlinux 0x78e866a9 unregister_nls +EXPORT_SYMBOL vmlinux 0x78e8bc3d security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x79068fda acpi_install_method +EXPORT_SYMBOL vmlinux 0x790e3943 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x791ed1c9 rename_lock +EXPORT_SYMBOL vmlinux 0x7924c0dc fb_set_cmap +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797ef433 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79d54992 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x79e3ec37 inet_getname +EXPORT_SYMBOL vmlinux 0x79fbabce kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x7a03a3b9 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x7a16231b vme_master_mmap +EXPORT_SYMBOL vmlinux 0x7a249ab9 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x7a2889f3 blkdev_put +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a2af7b4 cpu_number +EXPORT_SYMBOL vmlinux 0x7a39a373 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x7a427bd6 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a4648bf load_nls +EXPORT_SYMBOL vmlinux 0x7a46e38d abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x7a555970 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x7a6e8de8 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x7a76ffcf task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x7a82cb47 rdmsrl_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7a878485 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x7a927ab8 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac12657 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x7ac1f496 km_state_expired +EXPORT_SYMBOL vmlinux 0x7ac4189f devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x7accce24 kobject_del +EXPORT_SYMBOL vmlinux 0x7acedaca __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad68858 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x7aec9089 clear_user +EXPORT_SYMBOL vmlinux 0x7af6e3cd bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x7af87e8b param_set_ullong +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b074358 softnet_data +EXPORT_SYMBOL vmlinux 0x7b134ddf acpi_get_name +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b1fb28b iterate_dir +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2cbc64 km_state_notify +EXPORT_SYMBOL vmlinux 0x7b3b5059 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x7b5063a7 seq_puts +EXPORT_SYMBOL vmlinux 0x7b52a859 wrmsr_safe_on_cpu +EXPORT_SYMBOL vmlinux 0x7b54817f mntget +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b6fea99 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x7b8bfb49 pci_release_regions +EXPORT_SYMBOL vmlinux 0x7b95b7d8 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x7bad7a1a acpi_walk_resources +EXPORT_SYMBOL vmlinux 0x7bb090d7 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x7bcfab07 set_user_nice +EXPORT_SYMBOL vmlinux 0x7bd38759 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x7bfd39d1 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c26579b dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x7c3878fa locks_copy_lock +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c47a528 ps2_end_command +EXPORT_SYMBOL vmlinux 0x7c489ef9 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c669d85 pci_dev_put +EXPORT_SYMBOL vmlinux 0x7c74ae4d sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x7c7d99a1 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x7c8942e3 acpi_bus_register_driver +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cdea90b vga_client_register +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce83365 acpi_remove_table_handler +EXPORT_SYMBOL vmlinux 0x7ceb4850 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf4193f find_inode_nowait +EXPORT_SYMBOL vmlinux 0x7cf73cce scm_fp_dup +EXPORT_SYMBOL vmlinux 0x7d03e6af sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d247ee6 __frontswap_load +EXPORT_SYMBOL vmlinux 0x7d2bf4b3 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x7d5725e8 genphy_read_status +EXPORT_SYMBOL vmlinux 0x7d65e2f4 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d812abb mmc_remove_host +EXPORT_SYMBOL vmlinux 0x7d83e1be proc_set_user +EXPORT_SYMBOL vmlinux 0x7d94f746 acpi_os_write_port +EXPORT_SYMBOL vmlinux 0x7d96cea3 wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x7db1e46f inet_recvmsg +EXPORT_SYMBOL vmlinux 0x7db72428 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x7dbc2e57 mmiotrace_printk +EXPORT_SYMBOL vmlinux 0x7dcdd7eb sk_wait_data +EXPORT_SYMBOL vmlinux 0x7dd255f2 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x7ddd08cb thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df5b955 pci_get_class +EXPORT_SYMBOL vmlinux 0x7e01b74e key_link +EXPORT_SYMBOL vmlinux 0x7e22f3af serio_close +EXPORT_SYMBOL vmlinux 0x7e2aac41 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x7e2b91a4 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x7e2efbb8 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x7e5c35b1 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x7e6c65d9 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x7e712117 would_dump +EXPORT_SYMBOL vmlinux 0x7e795593 d_drop +EXPORT_SYMBOL vmlinux 0x7e7d6c74 free_task +EXPORT_SYMBOL vmlinux 0x7e7fc3fb __wake_up_bit +EXPORT_SYMBOL vmlinux 0x7ea40b29 try_to_release_page +EXPORT_SYMBOL vmlinux 0x7ebb3a48 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ed00f9c page_symlink +EXPORT_SYMBOL vmlinux 0x7ee07a8c inet_offloads +EXPORT_SYMBOL vmlinux 0x7ee3f8d1 seq_release_private +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 0x7f06d614 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x7f111e10 single_release +EXPORT_SYMBOL vmlinux 0x7f1620f4 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x7f16d941 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x7f170291 request_key +EXPORT_SYMBOL vmlinux 0x7f19999b netlink_unicast +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f302af4 nobh_write_end +EXPORT_SYMBOL vmlinux 0x7f351a0d kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x7f3e8946 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x7f48511a scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f7b2727 ip_options_compile +EXPORT_SYMBOL vmlinux 0x7f830e8b genphy_resume +EXPORT_SYMBOL vmlinux 0x7f9d3f15 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x7fb2b09c padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x7fcae967 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x80063596 address_space_init_once +EXPORT_SYMBOL vmlinux 0x803a41df sock_register +EXPORT_SYMBOL vmlinux 0x809388ca idr_destroy +EXPORT_SYMBOL vmlinux 0x80b080d6 misc_register +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d537ad xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d871d8 napi_get_frags +EXPORT_SYMBOL vmlinux 0x80d9ca85 paravirt_ticketlocks_enabled +EXPORT_SYMBOL vmlinux 0x80e72fa7 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x80e9ac96 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x80eb423b acpi_get_object_info +EXPORT_SYMBOL vmlinux 0x80fac56c phy_drivers_register +EXPORT_SYMBOL vmlinux 0x81144f9d idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x81191596 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x8124704a phy_connect +EXPORT_SYMBOL vmlinux 0x812b7867 generic_perform_write +EXPORT_SYMBOL vmlinux 0x81472677 acpi_get_table +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81514143 genlmsg_put +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x815f2897 empty_zero_page +EXPORT_SYMBOL vmlinux 0x8161e782 eisa_driver_unregister +EXPORT_SYMBOL vmlinux 0x816748c5 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x81783588 module_refcount +EXPORT_SYMBOL vmlinux 0x8180e484 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x81986a25 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x81a1e4bf filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x81a365f1 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x81a96f12 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x81c1cddf datagram_poll +EXPORT_SYMBOL vmlinux 0x81c946b8 phy_driver_register +EXPORT_SYMBOL vmlinux 0x81cb0615 kill_anon_super +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e6b37f dmi_get_system_info +EXPORT_SYMBOL vmlinux 0x82058d00 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x820eb9ae sock_efree +EXPORT_SYMBOL vmlinux 0x8212721d xenbus_dev_request_and_reply +EXPORT_SYMBOL vmlinux 0x821a86fc tso_build_data +EXPORT_SYMBOL vmlinux 0x82351d3c sock_no_mmap +EXPORT_SYMBOL vmlinux 0x8235805b memmove +EXPORT_SYMBOL vmlinux 0x8235e1c0 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x8244c9f9 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8291916f ether_setup +EXPORT_SYMBOL vmlinux 0x829364fa vc_resize +EXPORT_SYMBOL vmlinux 0x829534b3 fence_free +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b123d0 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x82bf0db9 eisa_driver_register +EXPORT_SYMBOL vmlinux 0x82bf4806 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x830e547b ioremap_prot +EXPORT_SYMBOL vmlinux 0x830fba5a do_splice_from +EXPORT_SYMBOL vmlinux 0x8329e6f0 memset +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x833c03aa acpi_enable_all_runtime_gpes +EXPORT_SYMBOL vmlinux 0x8342d225 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x834a42e9 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x8353f73f security_path_unlink +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8377779f tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x837fe881 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x8382e59a acpi_walk_resource_buffer +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839d3acb proto_register +EXPORT_SYMBOL vmlinux 0x839e3c02 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x839ececb agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83cf9561 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x83dab097 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x84060081 xen_poll_irq_timeout +EXPORT_SYMBOL vmlinux 0x840d28ed pnp_activate_dev +EXPORT_SYMBOL vmlinux 0x841447ab lwtunnel_input +EXPORT_SYMBOL vmlinux 0x8417f512 acpi_update_all_gpes +EXPORT_SYMBOL vmlinux 0x842ecb97 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x8439bead kern_unmount +EXPORT_SYMBOL vmlinux 0x8444f279 genphy_config_init +EXPORT_SYMBOL vmlinux 0x848d9492 ip6_xmit +EXPORT_SYMBOL vmlinux 0x84a75b1d __vfs_read +EXPORT_SYMBOL vmlinux 0x84d2bf42 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x84f2742a dcb_getapp +EXPORT_SYMBOL vmlinux 0x84f38ac4 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x84f4c915 mdiobus_read +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x851656a5 iunique +EXPORT_SYMBOL vmlinux 0x8526c35a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x852cebc9 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x854fe8d3 vm_map_ram +EXPORT_SYMBOL vmlinux 0x856459aa dev_get_flags +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857582f7 acpi_enable_all_wakeup_gpes +EXPORT_SYMBOL vmlinux 0x8577fbe1 blk_init_queue +EXPORT_SYMBOL vmlinux 0x857f1638 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x858b3fe3 free_iova_mem +EXPORT_SYMBOL vmlinux 0x8598e44a poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x85ac3851 elv_rb_del +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85ba7960 set_pages_x +EXPORT_SYMBOL vmlinux 0x85bce53e secpath_dup +EXPORT_SYMBOL vmlinux 0x85d0d863 serio_bus +EXPORT_SYMBOL vmlinux 0x85d602c6 import_iovec +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e1f1c8 to_ndd +EXPORT_SYMBOL vmlinux 0x85ee5582 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fd620a submit_bio_wait +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x861db92e __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x861e1c27 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x861e22a4 acpi_map_cpu +EXPORT_SYMBOL vmlinux 0x862ff6d3 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x8632404c genl_unregister_family +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865d263c tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x86629e37 sk_dst_check +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x866b8782 init_special_inode +EXPORT_SYMBOL vmlinux 0x86723995 dquot_commit +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a0752e set_groups +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86caa06d ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x86dbdb5a tcp_check_req +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870aa1c5 user_path_create +EXPORT_SYMBOL vmlinux 0x871bd456 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x871eb2e9 clear_inode +EXPORT_SYMBOL vmlinux 0x872ceb8f tcf_hash_create +EXPORT_SYMBOL vmlinux 0x872df7af tcp_close +EXPORT_SYMBOL vmlinux 0x872e7a2f udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x873002ea mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x873907d5 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x8755e2b6 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x8760ebdb dput +EXPORT_SYMBOL vmlinux 0x8768e8f0 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x876dafc3 ec_write +EXPORT_SYMBOL vmlinux 0x8771e273 posix_lock_file +EXPORT_SYMBOL vmlinux 0x87753fee blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878cd015 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x87a4016c i2c_register_driver +EXPORT_SYMBOL vmlinux 0x87a87d09 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x87aaddf8 wrmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0x87b37152 vfs_readv +EXPORT_SYMBOL vmlinux 0x88042314 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x8808485f __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x88117b5d touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x881a44c6 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x882a97d9 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x882fda7d pnp_possible_config +EXPORT_SYMBOL vmlinux 0x8847d1c0 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x88618464 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x88792aa1 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x88bf735f mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x88c9575d __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x8907cfb4 skb_trim +EXPORT_SYMBOL vmlinux 0x890bf76e fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x891f0c1d pci_map_biosrom +EXPORT_SYMBOL vmlinux 0x892b26a0 set_memory_nx +EXPORT_SYMBOL vmlinux 0x892d5c59 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x895164ba zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x895c6025 arp_create +EXPORT_SYMBOL vmlinux 0x899cf891 devm_gpio_request +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89d5b06a locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x89ed65a8 blk_register_region +EXPORT_SYMBOL vmlinux 0x89fe2325 d_add_ci +EXPORT_SYMBOL vmlinux 0x8a02b6bf sk_capable +EXPORT_SYMBOL vmlinux 0x8a0b12c6 complete_all +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a294aa8 fb_blank +EXPORT_SYMBOL vmlinux 0x8a2e3353 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x8a337dc7 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x8a3bd249 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x8a43abcc pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x8a447dee __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a52f7bc xfrm_register_type +EXPORT_SYMBOL vmlinux 0x8a601752 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x8a6944f9 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8a7689c5 fb_pan_display +EXPORT_SYMBOL vmlinux 0x8a798810 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a80d7a5 acpi_error +EXPORT_SYMBOL vmlinux 0x8a881c28 pcim_iomap +EXPORT_SYMBOL vmlinux 0x8a8ca89f mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x8a8fc7e6 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8ab2a5c5 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x8ab2e321 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x8abd3eb7 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x8ac17344 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x8adc7d69 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x8ae62d43 param_ops_bool +EXPORT_SYMBOL vmlinux 0x8af4d919 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x8b170d8a ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x8b1810f1 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x8b18496f __copy_to_user_ll +EXPORT_SYMBOL vmlinux 0x8b18fad5 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b5e0f71 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b989cf9 acpi_bus_can_wakeup +EXPORT_SYMBOL vmlinux 0x8bba8ed0 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x8bdb6e07 generic_readlink +EXPORT_SYMBOL vmlinux 0x8bfefee5 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x8c04d65a dma_supported +EXPORT_SYMBOL vmlinux 0x8c11f40a param_ops_int +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c198f25 vga_switcheroo_unregister_client +EXPORT_SYMBOL vmlinux 0x8c1c4a27 down_write_trylock +EXPORT_SYMBOL vmlinux 0x8c2709ad devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x8c51c078 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x8c563ca5 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x8c596dc0 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c6d6493 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x8c7d8f1d security_path_link +EXPORT_SYMBOL vmlinux 0x8c8807d2 generic_update_time +EXPORT_SYMBOL vmlinux 0x8ca66466 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x8cc5647b iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x8cc57afa devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x8cc5ca35 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd208ba swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x8cda8029 xen_clear_irq_pending +EXPORT_SYMBOL vmlinux 0x8ce01d9e pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x8d24c298 pci_find_capability +EXPORT_SYMBOL vmlinux 0x8d327223 seq_lseek +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5aac36 ipv6_push_nfrag_opts +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 0x8d75f629 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x8d838d91 ida_remove +EXPORT_SYMBOL vmlinux 0x8d8d96c6 acpi_get_sleep_type_data +EXPORT_SYMBOL vmlinux 0x8d921f20 md_register_thread +EXPORT_SYMBOL vmlinux 0x8d9c357c ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x8da1a3cb acpi_remove_interface +EXPORT_SYMBOL vmlinux 0x8daf8c42 dql_init +EXPORT_SYMBOL vmlinux 0x8db34f1f pci_disable_msi +EXPORT_SYMBOL vmlinux 0x8db353f6 pci_map_rom +EXPORT_SYMBOL vmlinux 0x8dc6e564 restore_processor_state +EXPORT_SYMBOL vmlinux 0x8dc8f52d pci_release_region +EXPORT_SYMBOL vmlinux 0x8de49850 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x8dfea743 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x8e002cda acpi_remove_gpe_block +EXPORT_SYMBOL vmlinux 0x8e08860d devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x8e2b00a9 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x8e2b8fd7 fasync_helper +EXPORT_SYMBOL vmlinux 0x8e53cee7 phy_init_hw +EXPORT_SYMBOL vmlinux 0x8e74db2a blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e844169 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x8e85ce0d __bread_gfp +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8ea17e03 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x8ea69665 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x8eaf2a5f vga_switcheroo_unregister_handler +EXPORT_SYMBOL vmlinux 0x8ebfbdd9 padata_start +EXPORT_SYMBOL vmlinux 0x8ec6801d sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x8ecf2a64 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x8edbd5dc netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x8ef29259 setattr_copy +EXPORT_SYMBOL vmlinux 0x8f22fadb blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x8f2703b7 wbinvd_on_all_cpus +EXPORT_SYMBOL vmlinux 0x8f2dd06d mem_map +EXPORT_SYMBOL vmlinux 0x8f39fdb7 soft_cursor +EXPORT_SYMBOL vmlinux 0x8f3d3450 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x8f5fabea gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x8f649f74 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x8f6ffcfd vga_switcheroo_register_client +EXPORT_SYMBOL vmlinux 0x8f76b324 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x8f7dbbdd adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x8f89433a xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x8f9c199c __get_user_2 +EXPORT_SYMBOL vmlinux 0x8f9fbb78 put_tty_driver +EXPORT_SYMBOL vmlinux 0x8fd1152e _raw_write_unlock +EXPORT_SYMBOL vmlinux 0x8fd5bdc6 pnp_start_dev +EXPORT_SYMBOL vmlinux 0x8fe59cef convert_art_to_tsc +EXPORT_SYMBOL vmlinux 0x8fefe4a9 generic_write_checks +EXPORT_SYMBOL vmlinux 0x8ff4079b pv_irq_ops +EXPORT_SYMBOL vmlinux 0x8ff520eb ip6_frag_match +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x90045d57 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x9012449c pci_clear_master +EXPORT_SYMBOL vmlinux 0x9023c3ba iterate_supers_type +EXPORT_SYMBOL vmlinux 0x90255e19 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x903981e8 d_alloc +EXPORT_SYMBOL vmlinux 0x904409c6 acpi_set_firmware_waking_vector +EXPORT_SYMBOL vmlinux 0x905405a8 wireless_send_event +EXPORT_SYMBOL vmlinux 0x906805d0 sk_free +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x907a9f00 param_get_int +EXPORT_SYMBOL vmlinux 0x907da33d tty_devnum +EXPORT_SYMBOL vmlinux 0x908575fe queued_write_lock_slowpath +EXPORT_SYMBOL vmlinux 0x90ac2115 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x90bc5c92 posix_acl_valid +EXPORT_SYMBOL vmlinux 0x90c07833 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x91041844 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x9107db2c dev_uc_del +EXPORT_SYMBOL vmlinux 0x910b5d9d gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x911088bc locks_remove_posix +EXPORT_SYMBOL vmlinux 0x9126f505 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x913a0f9f phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91607d95 set_memory_wb +EXPORT_SYMBOL vmlinux 0x916ea7b2 d_splice_alias +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9174ab43 inet_register_protosw +EXPORT_SYMBOL vmlinux 0x91855291 consume_skb +EXPORT_SYMBOL vmlinux 0x9196793d blk_end_request +EXPORT_SYMBOL vmlinux 0x91967e8e xen_selfballoon_init +EXPORT_SYMBOL vmlinux 0x91d34001 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x91dadbe5 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x91ec32d3 pci_iounmap +EXPORT_SYMBOL vmlinux 0x91ef1adf param_get_ullong +EXPORT_SYMBOL vmlinux 0x91f6028c netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x92225dd7 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x922ded27 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x926e1668 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x9270ce22 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x92897e3d default_idle +EXPORT_SYMBOL vmlinux 0x929a9d9f dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x929e2f22 scsi_device_put +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92bfadd0 single_open_size +EXPORT_SYMBOL vmlinux 0x92d6f206 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x92dcf93f mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x92e25f50 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x92f6767f lg_local_lock +EXPORT_SYMBOL vmlinux 0x92f86100 kill_fasync +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931c3da7 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932493a8 iosf_mbi_read +EXPORT_SYMBOL vmlinux 0x933253e2 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x93388a18 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x9347a4ca blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x934a9c51 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x935f76df __devm_request_region +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93805618 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x93949777 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c425da may_umount +EXPORT_SYMBOL vmlinux 0x93f071b8 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x93fb5161 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9404915c mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x9428bcaa vfs_whiteout +EXPORT_SYMBOL vmlinux 0x943c7a8c grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x9481656c mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x9491069a get_super_thawed +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94d198d1 phy_suspend +EXPORT_SYMBOL vmlinux 0x94d8b9a7 locks_init_lock +EXPORT_SYMBOL vmlinux 0x94dc1f30 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x9505c8a8 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x9508afa5 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x95133a2d ihold +EXPORT_SYMBOL vmlinux 0x95395301 acpi_exception +EXPORT_SYMBOL vmlinux 0x953ba1a5 udp_add_offload +EXPORT_SYMBOL vmlinux 0x953f79bf x86_dma_fallback_dev +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x954c5aea xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x95502f53 register_key_type +EXPORT_SYMBOL vmlinux 0x9553cefe lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x95544c73 phy_disconnect +EXPORT_SYMBOL vmlinux 0x956d6387 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x958652df sync_filesystem +EXPORT_SYMBOL vmlinux 0x958a9250 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x958ff1b6 dma_alloc_from_coherent +EXPORT_SYMBOL vmlinux 0x95a08027 dqget +EXPORT_SYMBOL vmlinux 0x95a22455 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x95b0934f vga_put +EXPORT_SYMBOL vmlinux 0x95b63588 copy_to_iter +EXPORT_SYMBOL vmlinux 0x95bd6e26 acpi_install_sci_handler +EXPORT_SYMBOL vmlinux 0x95c8d290 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x95d6f775 vga_switcheroo_init_domain_pm_ops +EXPORT_SYMBOL vmlinux 0x95d74f4e kill_pgrp +EXPORT_SYMBOL vmlinux 0x95f95190 ps2_command +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x960ff6f0 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x96149fd0 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x96262761 up_read +EXPORT_SYMBOL vmlinux 0x96271cde devm_memunmap +EXPORT_SYMBOL vmlinux 0x96354806 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x963b2c59 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x9640c7b3 phy_stop +EXPORT_SYMBOL vmlinux 0x965145b9 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96624a47 seq_vprintf +EXPORT_SYMBOL vmlinux 0x9668f709 __alloc_skb +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968d0792 vme_master_request +EXPORT_SYMBOL vmlinux 0x969bf845 mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x96a2614f rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x96bc5f20 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x96cccc92 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96f3bcb8 dentry_open +EXPORT_SYMBOL vmlinux 0x97094079 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0x9737fa8d truncate_setsize +EXPORT_SYMBOL vmlinux 0x97398ffd netdev_err +EXPORT_SYMBOL vmlinux 0x973c62ad xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x973fa82e register_acpi_notifier +EXPORT_SYMBOL vmlinux 0x9743f912 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x974558bc neigh_parms_release +EXPORT_SYMBOL vmlinux 0x975046ed jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x9756764b ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x9758b256 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x976764ba tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x97691aa9 ps2_init +EXPORT_SYMBOL vmlinux 0x977cce3e __genl_register_family +EXPORT_SYMBOL vmlinux 0x9782c544 vme_irq_request +EXPORT_SYMBOL vmlinux 0x9794b5dd param_get_string +EXPORT_SYMBOL vmlinux 0x97996dbb mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a60f30 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x97c1ef09 pci_set_master +EXPORT_SYMBOL vmlinux 0x97c5bd0a acpi_unload_parent_table +EXPORT_SYMBOL vmlinux 0x97de0ddd acpi_install_gpe_block +EXPORT_SYMBOL vmlinux 0x97fc7dfa dm_get_device +EXPORT_SYMBOL vmlinux 0x9808c77b inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x9820b644 warn_slowpath_fmt_taint +EXPORT_SYMBOL vmlinux 0x984296d5 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x984695bf netif_napi_del +EXPORT_SYMBOL vmlinux 0x984b10ce eth_header_parse +EXPORT_SYMBOL vmlinux 0x9851f583 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x986a7683 mmc_can_sanitize +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 0x98ae3fbf pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x98d51791 submit_bio +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98f789ed napi_complete_done +EXPORT_SYMBOL vmlinux 0x990a7196 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x9918685e devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x99233c32 cpu_core_map +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99581c72 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x99686ae3 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x996a9188 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x997d06cd sget +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999cf48d skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99c32d60 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x99ca43db sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e1856e kobject_add +EXPORT_SYMBOL vmlinux 0x99ed253a security_path_chown +EXPORT_SYMBOL vmlinux 0x99eff622 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x9a095af6 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x9a0eb670 inet6_getname +EXPORT_SYMBOL vmlinux 0x9a1166fb revert_creds +EXPORT_SYMBOL vmlinux 0x9a12c011 nvm_register +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a293ee9 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x9a3d4d7a dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x9a45de91 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x9a4d0035 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x9a6a83f9 cmos_lock +EXPORT_SYMBOL vmlinux 0x9a7034ce pagecache_write_end +EXPORT_SYMBOL vmlinux 0x9a963eca netdev_info +EXPORT_SYMBOL vmlinux 0x9a99f9a3 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x9a9edb34 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x9aabdde9 agp_create_memory +EXPORT_SYMBOL vmlinux 0x9aae3f75 __lock_page +EXPORT_SYMBOL vmlinux 0x9ad736d0 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aec93a3 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x9af8a8a8 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x9b2627ff serio_interrupt +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b40c2b2 vga_tryget +EXPORT_SYMBOL vmlinux 0x9b4273f4 __serio_register_port +EXPORT_SYMBOL vmlinux 0x9b443f40 inet6_bind +EXPORT_SYMBOL vmlinux 0x9b44a9a4 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x9b6ac4e4 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b88476c dquot_quota_off +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba146bf wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x9ba2b205 seq_file_path +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bad77ba mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x9bb0dc2b tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bdd1ddb seq_release +EXPORT_SYMBOL vmlinux 0x9be22a7b ping_prot +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c1a4f49 nd_device_register +EXPORT_SYMBOL vmlinux 0x9c239b62 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x9c2c944a __copy_from_user_ll_nocache_nozero +EXPORT_SYMBOL vmlinux 0x9c309cfe phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x9c348197 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c55a898 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x9c779cda dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x9ca7abf4 inet6_offloads +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cc042fb skb_copy_bits +EXPORT_SYMBOL vmlinux 0x9ce169af neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9d057990 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d1eac45 param_get_invbool +EXPORT_SYMBOL vmlinux 0x9d2f3dbd blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x9d33ef5e acpi_enable +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d3e5560 kthread_bind +EXPORT_SYMBOL vmlinux 0x9d783d03 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x9d920fe8 __blk_end_request +EXPORT_SYMBOL vmlinux 0x9d9cb1a9 mmc_get_card +EXPORT_SYMBOL vmlinux 0x9db0f427 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x9dc66bbf netdev_change_features +EXPORT_SYMBOL vmlinux 0x9dceab0e tcp_init_sock +EXPORT_SYMBOL vmlinux 0x9dd80b9c scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x9ddd5e72 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e363b6b acpi_disable_gpe +EXPORT_SYMBOL vmlinux 0x9e36efb2 vme_slot_num +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 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea0c91f proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x9eaf4194 dev_base_lock +EXPORT_SYMBOL vmlinux 0x9eb41359 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9eca9b8b param_set_short +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9ee01ad8 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x9f2bd4d8 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x9f2d78c0 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x9f3a7278 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f59e594 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x9f807248 security_path_truncate +EXPORT_SYMBOL vmlinux 0x9f8995c0 tty_check_change +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f99c2d2 cros_ec_query_all +EXPORT_SYMBOL vmlinux 0x9fb7984b sync_inode +EXPORT_SYMBOL vmlinux 0x9fd1aea4 backlight_force_update +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fd84982 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x9fdeba1c __page_symlink +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ff0a542 bd_set_size +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00aca2a dql_completed +EXPORT_SYMBOL vmlinux 0xa01c3f17 pci_reenable_device +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 0xa087e926 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0xa08c9b4f __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xa0ad157c max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c4161a file_open_root +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f6b11d bdi_register +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fd4b0d sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xa0ff87ae mfd_add_devices +EXPORT_SYMBOL vmlinux 0xa105f09d redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa1158c96 try_to_free_buffers +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 0xa1501bca inet_listen +EXPORT_SYMBOL vmlinux 0xa1542cbc open_exec +EXPORT_SYMBOL vmlinux 0xa171a1df inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa174f252 key_put +EXPORT_SYMBOL vmlinux 0xa176ab7a elevator_alloc +EXPORT_SYMBOL vmlinux 0xa186c1f1 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xa18813e1 vfs_write +EXPORT_SYMBOL vmlinux 0xa19de3fd boot_cpu_data +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1ea058d max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xa1ee0ef7 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xa1f308c5 genphy_suspend +EXPORT_SYMBOL vmlinux 0xa201f4e8 tty_port_init +EXPORT_SYMBOL vmlinux 0xa2049320 sock_i_ino +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa218ccec fb_class +EXPORT_SYMBOL vmlinux 0xa248c2f9 __d_drop +EXPORT_SYMBOL vmlinux 0xa2495fad kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xa25bd80f crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xa27a1567 pci_select_bars +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2b33591 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xa2d298ee pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xa2d434cd inet_accept +EXPORT_SYMBOL vmlinux 0xa2ec1bde sk_alloc +EXPORT_SYMBOL vmlinux 0xa2edcad1 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xa2f312ff pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xa2fd400d remap_pfn_range +EXPORT_SYMBOL vmlinux 0xa3106af1 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xa31af315 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xa31b385b __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa32248ac inode_init_once +EXPORT_SYMBOL vmlinux 0xa3239957 fsync_bdev +EXPORT_SYMBOL vmlinux 0xa34fcb2d mempool_create_node +EXPORT_SYMBOL vmlinux 0xa350a8f8 set_memory_array_uc +EXPORT_SYMBOL vmlinux 0xa3613293 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa3962bb7 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xa39f728f dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xa3b47284 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xa3c2c5ab tcp_ioctl +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 0xa3e83dc7 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xa3f3babd tcp_seq_open +EXPORT_SYMBOL vmlinux 0xa4011dde noop_llseek +EXPORT_SYMBOL vmlinux 0xa421f2e2 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa47aac33 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xa4897802 find_lock_entry +EXPORT_SYMBOL vmlinux 0xa4a58c35 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xa4b70f61 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4c327b2 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4e82222 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xa4f5a9b7 sock_no_getname +EXPORT_SYMBOL vmlinux 0xa4ffde88 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xa51cdfe8 __FIXADDR_TOP +EXPORT_SYMBOL vmlinux 0xa523e1a0 generic_setxattr +EXPORT_SYMBOL vmlinux 0xa524d3e7 unlock_page +EXPORT_SYMBOL vmlinux 0xa5265be2 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xa54bc59f mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xa54d2f84 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5669c99 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xa56a94a8 dquot_drop +EXPORT_SYMBOL vmlinux 0xa58d55b3 abort_creds +EXPORT_SYMBOL vmlinux 0xa58e58b1 eth_header +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a8c6e6 read_cache_pages +EXPORT_SYMBOL vmlinux 0xa5b4ded6 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xa5ba5f2e bdgrab +EXPORT_SYMBOL vmlinux 0xa5c3fbb8 dev_set_group +EXPORT_SYMBOL vmlinux 0xa5c5a495 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xa5d07e78 simple_rmdir +EXPORT_SYMBOL vmlinux 0xa5e00fa8 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xa6175775 inet_addr_type +EXPORT_SYMBOL vmlinux 0xa62e6e4f acpi_get_table_with_size +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa6762b57 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa69fb078 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0xa6aaf247 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xa6aea27d tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xa6bbd805 __wake_up +EXPORT_SYMBOL vmlinux 0xa6bd63ca acpi_bios_error +EXPORT_SYMBOL vmlinux 0xa6d3dc50 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xa6e8832c nvm_put_blk +EXPORT_SYMBOL vmlinux 0xa6fee3c1 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70fabbe release_evntsel_nmi +EXPORT_SYMBOL vmlinux 0xa710c311 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xa7190617 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xa72b6d06 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xa73423ec pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa75572f2 d_rehash +EXPORT_SYMBOL vmlinux 0xa788f1a0 i8253_lock +EXPORT_SYMBOL vmlinux 0xa7ab0e36 cont_write_begin +EXPORT_SYMBOL vmlinux 0xa7cf6c2f atomic64_dec_return_cx8 +EXPORT_SYMBOL vmlinux 0xa7f123d9 page_readlink +EXPORT_SYMBOL vmlinux 0xa7f331ba nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xa80f4425 vme_irq_free +EXPORT_SYMBOL vmlinux 0xa81b2976 set_pages_nx +EXPORT_SYMBOL vmlinux 0xa81c5255 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa82cc83d swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa849f02d __destroy_inode +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87936e1 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xa892b4e7 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0xa89721ca vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xa8b87607 simple_fill_super +EXPORT_SYMBOL vmlinux 0xa8d02c29 dcb_setapp +EXPORT_SYMBOL vmlinux 0xa8d20511 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xa8f132d2 drop_super +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa9283341 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xa92979fc __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xa95cb1e1 uart_match_port +EXPORT_SYMBOL vmlinux 0xa9731b9e udp_poll +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97cd76a d_alloc_name +EXPORT_SYMBOL vmlinux 0xa98a731b tc_classify +EXPORT_SYMBOL vmlinux 0xa9a8e17f arch_phys_wc_add +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9cfea6b x86_hyper +EXPORT_SYMBOL vmlinux 0xa9e9c83a ll_rw_block +EXPORT_SYMBOL vmlinux 0xa9ebb153 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xa9f5dae6 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xa9fb28dd copy_from_iter +EXPORT_SYMBOL vmlinux 0xaa27fc2b lock_sock_fast +EXPORT_SYMBOL vmlinux 0xaa516910 write_cache_pages +EXPORT_SYMBOL vmlinux 0xaa53c08b xattr_full_name +EXPORT_SYMBOL vmlinux 0xaa5bd08d __pv_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6cf229 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7340ab param_set_copystring +EXPORT_SYMBOL vmlinux 0xaa79f89d dma_async_device_register +EXPORT_SYMBOL vmlinux 0xaa8fea18 acpi_processor_register_performance +EXPORT_SYMBOL vmlinux 0xaa96dbe1 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xaaa6d5ac netdev_emerg +EXPORT_SYMBOL vmlinux 0xaaae7f77 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xaab6056d dev_mc_del +EXPORT_SYMBOL vmlinux 0xaac522ab bitmap_unplug +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad88279 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xaae48df5 agp_free_memory +EXPORT_SYMBOL vmlinux 0xaae8ab0e acpi_bus_power_manageable +EXPORT_SYMBOL vmlinux 0xaafd25d6 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab044f04 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xab4ccf27 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xab4dc2f4 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xab551fad acpi_get_data_full +EXPORT_SYMBOL vmlinux 0xab5ca44a skb_try_coalesce +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 0xab70cd2e mmc_can_reset +EXPORT_SYMBOL vmlinux 0xab770678 rdmsr_safe_regs_on_cpu +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab924820 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xab93530c key_task_permission +EXPORT_SYMBOL vmlinux 0xaba3159c gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabaa8be7 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0xabafc1b7 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xabc8660d scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabcf8308 pci_disable_device +EXPORT_SYMBOL vmlinux 0xabe3c8fd blk_sync_queue +EXPORT_SYMBOL vmlinux 0xabfb1914 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac17adf3 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac391a68 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac55c964 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xac6d21c9 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xac8d2172 path_get +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb99769 ida_destroy +EXPORT_SYMBOL vmlinux 0xacc021d6 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xaccaee0b nf_register_hook +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacd86fc7 d_obtain_root +EXPORT_SYMBOL vmlinux 0xacdc80d6 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad12f6fb ip_ct_attach +EXPORT_SYMBOL vmlinux 0xad1f3ddb generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xad35a3f0 agp_backend_release +EXPORT_SYMBOL vmlinux 0xad399925 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xad3eef79 igrab +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad698f77 dqstats +EXPORT_SYMBOL vmlinux 0xad6e4bb6 mempool_free +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xadbb5632 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xade83327 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae044bc7 panic_notifier_list +EXPORT_SYMBOL vmlinux 0xae075252 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xae076e09 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xae1accf9 fb_set_var +EXPORT_SYMBOL vmlinux 0xae4b50b3 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae7ebda2 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xaea976a8 acpi_check_resource_conflict +EXPORT_SYMBOL vmlinux 0xaeaac3b3 km_query +EXPORT_SYMBOL vmlinux 0xaeb665f5 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xaebbff3d update_region +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaec79f2a tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xaef53119 dev_get_by_index +EXPORT_SYMBOL vmlinux 0xaf25f745 lookup_one_len +EXPORT_SYMBOL vmlinux 0xaf33deae mdiobus_read_nested +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 0xaf6b206e dma_release_from_coherent +EXPORT_SYMBOL vmlinux 0xaf6e0bfb kunmap +EXPORT_SYMBOL vmlinux 0xaf6ef57a inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xaf88f776 page_put_link +EXPORT_SYMBOL vmlinux 0xaf965010 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xafd36806 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xafd3c69f inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xafd9b4ee fifo_set_limit +EXPORT_SYMBOL vmlinux 0xafe0e463 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xb01b1db8 intel_gtt_insert_sg_entries +EXPORT_SYMBOL vmlinux 0xb02bd591 _raw_read_unlock_irq +EXPORT_SYMBOL vmlinux 0xb03991cc filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb07dec86 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb08f1625 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e71df9 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xb0e78526 bdget_disk +EXPORT_SYMBOL vmlinux 0xb0eb41ff iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0xb0f2d13d agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xb10820e4 _raw_read_unlock +EXPORT_SYMBOL vmlinux 0xb118df42 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xb121390a probe_irq_on +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb17be9af blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xb17e99bb bdi_init +EXPORT_SYMBOL vmlinux 0xb184fcdb input_register_device +EXPORT_SYMBOL vmlinux 0xb187b3a8 lg_lock_init +EXPORT_SYMBOL vmlinux 0xb1b827fd tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1cc581b inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1cfad22 rdmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xb1f0c9b8 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0xb219d56c wbinvd_on_cpu +EXPORT_SYMBOL vmlinux 0xb21c4548 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xb234ff62 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xb2647e15 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb28411e3 acpi_pm_device_run_wake +EXPORT_SYMBOL vmlinux 0xb284d106 cros_ec_check_result +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +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 0xb300ed1d call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xb3284531 acpi_dbg_layer +EXPORT_SYMBOL vmlinux 0xb32aabe9 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb3507224 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb36876bb sock_release +EXPORT_SYMBOL vmlinux 0xb39263eb param_ops_string +EXPORT_SYMBOL vmlinux 0xb3cfc2c7 iw_handler_get_spy +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 0xb40477b4 dcache_readdir +EXPORT_SYMBOL vmlinux 0xb40703f3 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb433d530 i2c_master_send +EXPORT_SYMBOL vmlinux 0xb4390f9a mcount +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb45578b8 memscan +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb476f7c8 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xb4a245b4 dump_emit +EXPORT_SYMBOL vmlinux 0xb4ba38b7 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xb4db2c9f __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0xb4dc74e1 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xb4e12206 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xb4f5f20a block_write_full_page +EXPORT_SYMBOL vmlinux 0xb4f62246 param_ops_short +EXPORT_SYMBOL vmlinux 0xb50a0579 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xb50ba6f1 elevator_exit +EXPORT_SYMBOL vmlinux 0xb517d8b3 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xb52272d9 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xb5229392 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xb52d2d1b truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xb52ee8be intel_gtt_clear_range +EXPORT_SYMBOL vmlinux 0xb5431483 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xb564771c max8925_reg_write +EXPORT_SYMBOL vmlinux 0xb56c1a65 pnp_find_dev +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5796fc6 dump_align +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b16a4d down_read_trylock +EXPORT_SYMBOL vmlinux 0xb5b3edac fs_bio_set +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5dbd16a __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xb5f1c03e get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xb5f91546 sk_common_release +EXPORT_SYMBOL vmlinux 0xb5fef0b6 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xb620b3af dev_addr_flush +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb62d778a jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xb6472623 tcp_prot +EXPORT_SYMBOL vmlinux 0xb6539175 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xb6544468 __ps2_command +EXPORT_SYMBOL vmlinux 0xb65861ef __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xb674a534 acpi_unmap_cpu +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67e267a i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a95300 __break_lease +EXPORT_SYMBOL vmlinux 0xb6afad10 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xb6b34658 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xb6de3f12 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xb6e41883 memcmp +EXPORT_SYMBOL vmlinux 0xb6ed1e53 strncpy +EXPORT_SYMBOL vmlinux 0xb6f15b7c kernel_accept +EXPORT_SYMBOL vmlinux 0xb6f40b52 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xb708da5f vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xb73e6efe dev_change_flags +EXPORT_SYMBOL vmlinux 0xb73f19d9 con_copy_unimap +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb756c914 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xb758b225 acpi_disable_event +EXPORT_SYMBOL vmlinux 0xb7621192 pci_pme_capable +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7723505 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xb77e4ac8 kernel_connect +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d562c5 pci_request_regions +EXPORT_SYMBOL vmlinux 0xb7e53f0a security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xb7f55ecc atomic64_add_return_cx8 +EXPORT_SYMBOL vmlinux 0xb80c212a inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb81ac216 md_flush_request +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb83d689f netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8777a3d rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb88a896c __serio_register_driver +EXPORT_SYMBOL vmlinux 0xb8b6a76c __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb8cc428d km_is_alive +EXPORT_SYMBOL vmlinux 0xb8dba3b7 param_get_byte +EXPORT_SYMBOL vmlinux 0xb8e7ce2c __put_user_8 +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8fdcd10 mempool_resize +EXPORT_SYMBOL vmlinux 0xb94627cf eth_header_cache +EXPORT_SYMBOL vmlinux 0xb94ff7ee insert_inode_locked +EXPORT_SYMBOL vmlinux 0xb966a46f lro_receive_skb +EXPORT_SYMBOL vmlinux 0xb982ebed __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xb9e3fcdf ps2_drain +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xba0dd443 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xba1acd0b unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xba26eed7 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xba2d8594 ec_read +EXPORT_SYMBOL vmlinux 0xba341711 nvm_end_io +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba585797 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xba5c8770 __elv_add_request +EXPORT_SYMBOL vmlinux 0xbaac5cd5 end_page_writeback +EXPORT_SYMBOL vmlinux 0xbac1ab19 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbad83bf5 param_set_uint +EXPORT_SYMBOL vmlinux 0xbaf86b1b rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb2c845e ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb39402a __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb5c0987 sock_from_file +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb869819 nf_log_packet +EXPORT_SYMBOL vmlinux 0xbb87439d kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xbb8ad428 dma_find_channel +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba2ca67 dev_crit +EXPORT_SYMBOL vmlinux 0xbba70a2d _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xbbcc5011 kill_block_super +EXPORT_SYMBOL vmlinux 0xbbd8ae51 proc_set_size +EXPORT_SYMBOL vmlinux 0xbbeb1ec6 ioremap_wt +EXPORT_SYMBOL vmlinux 0xbbf1b345 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xbbf271d1 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xbbf443f4 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xbc0a96d7 param_set_byte +EXPORT_SYMBOL vmlinux 0xbc1bcf0f scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xbc1c2254 con_is_bound +EXPORT_SYMBOL vmlinux 0xbc1c9bcf neigh_update +EXPORT_SYMBOL vmlinux 0xbc2031de acpi_processor_get_bios_limit +EXPORT_SYMBOL vmlinux 0xbc302b41 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xbc435770 dump_stack +EXPORT_SYMBOL vmlinux 0xbc62e169 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xbc9dd2ac devm_clk_put +EXPORT_SYMBOL vmlinux 0xbca9b895 filemap_flush +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd716d9 freeze_super +EXPORT_SYMBOL vmlinux 0xbcdb066a iterate_mounts +EXPORT_SYMBOL vmlinux 0xbced8cbf scsi_add_device +EXPORT_SYMBOL vmlinux 0xbcfa352f scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xbcfe7ed3 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0xbd11ce73 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xbd42df92 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xbd605e84 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xbd755b0d skb_insert +EXPORT_SYMBOL vmlinux 0xbd8397c3 poll_initwait +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdaf5b07 acpi_os_read_port +EXPORT_SYMBOL vmlinux 0xbdb3b00c __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xbdb893f4 __scm_send +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe31a0b1 __napi_schedule +EXPORT_SYMBOL vmlinux 0xbe56cfb3 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xbe8c37d9 intel_scu_ipc_simple_command +EXPORT_SYMBOL vmlinux 0xbea04adf devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xbea50a15 tcf_em_register +EXPORT_SYMBOL vmlinux 0xbea5767c __get_page_tail +EXPORT_SYMBOL vmlinux 0xbec30d05 x86_match_cpu +EXPORT_SYMBOL vmlinux 0xbec9a302 simple_release_fs +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef2521a ppp_input_error +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf0ec9e5 vfs_unlink +EXPORT_SYMBOL vmlinux 0xbf153973 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xbf629a37 file_ns_capable +EXPORT_SYMBOL vmlinux 0xbf6b650a netdev_state_change +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf855eb2 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xbf8b39e9 isapnp_present +EXPORT_SYMBOL vmlinux 0xbf90e1bc sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xbf9446c2 keyring_search +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa36ef0 sock_wake_async +EXPORT_SYMBOL vmlinux 0xbfabe89a sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xbfbe8153 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfe6f427 _raw_spin_unlock_irq +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff39fb5 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xc01eed33 __copy_from_user_ll_nozero +EXPORT_SYMBOL vmlinux 0xc02f8f15 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xc04c87dc mb_cache_entry_free +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 0xc0905f51 __kernel_write +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0ae854a dev_activate +EXPORT_SYMBOL vmlinux 0xc0cd3b13 ___ratelimit +EXPORT_SYMBOL vmlinux 0xc0ced847 generic_show_options +EXPORT_SYMBOL vmlinux 0xc0da22b1 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc0f39489 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xc0f8ebdf put_cmsg +EXPORT_SYMBOL vmlinux 0xc1077448 get_disk +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc1a6a3e3 pipe_unlock +EXPORT_SYMBOL vmlinux 0xc1b78922 __napi_complete +EXPORT_SYMBOL vmlinux 0xc1d0f52d pci_bus_put +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc203304b audit_log +EXPORT_SYMBOL vmlinux 0xc21d6b29 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xc223f6b2 dquot_get_state +EXPORT_SYMBOL vmlinux 0xc23625e3 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xc2381ea3 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xc2399ab9 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc24ee20a unregister_console +EXPORT_SYMBOL vmlinux 0xc2614838 netlink_capable +EXPORT_SYMBOL vmlinux 0xc270629b jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xc2732480 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xc280a525 __copy_from_user_ll +EXPORT_SYMBOL vmlinux 0xc2831dee unlock_new_inode +EXPORT_SYMBOL vmlinux 0xc286f9c3 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xc295ee90 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xc29c9a24 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xc2a68755 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e68a71 finish_open +EXPORT_SYMBOL vmlinux 0xc2ec9977 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xc301e79d arp_tbl +EXPORT_SYMBOL vmlinux 0xc30a28fa d_path +EXPORT_SYMBOL vmlinux 0xc314ede2 generic_make_request +EXPORT_SYMBOL vmlinux 0xc317b7bb register_quota_format +EXPORT_SYMBOL vmlinux 0xc3550d4a get_super +EXPORT_SYMBOL vmlinux 0xc393ea75 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xc39be810 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xc3aaf0a9 __put_user_1 +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3c31c16 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xc3c718e1 have_submounts +EXPORT_SYMBOL vmlinux 0xc3cdec97 neigh_connected_output +EXPORT_SYMBOL vmlinux 0xc3e9224b mdiobus_write +EXPORT_SYMBOL vmlinux 0xc3fa6a59 memchr +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc42b8321 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xc435ed50 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xc473e767 is_bad_inode +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4cff66b ata_link_printk +EXPORT_SYMBOL vmlinux 0xc4f594d0 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xc4fe7a16 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xc5137552 x86_bios_cpu_apicid +EXPORT_SYMBOL vmlinux 0xc519d13e ppp_dev_name +EXPORT_SYMBOL vmlinux 0xc51c389f mutex_unlock +EXPORT_SYMBOL vmlinux 0xc5224d44 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xc5462085 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc5654479 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xc57ca018 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5cbcfeb bdev_read_only +EXPORT_SYMBOL vmlinux 0xc5d762fd init_buffer +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5dd640f find_vma +EXPORT_SYMBOL vmlinux 0xc5e14910 inode_permission +EXPORT_SYMBOL vmlinux 0xc5e39956 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc60e6f0c mmc_register_driver +EXPORT_SYMBOL vmlinux 0xc61c395c blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xc62276b0 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xc6234397 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xc62a7931 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63626af inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xc6367867 security_inode_readlink +EXPORT_SYMBOL vmlinux 0xc639ea70 dquot_enable +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc6708911 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xc67a09fe intel_gtt_get +EXPORT_SYMBOL vmlinux 0xc6829e07 build_skb +EXPORT_SYMBOL vmlinux 0xc68c292f __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xc68e914b bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0xc698c093 __put_cred +EXPORT_SYMBOL vmlinux 0xc69e7c33 simple_link +EXPORT_SYMBOL vmlinux 0xc6a2e9e5 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xc6b23120 intel_scu_ipc_iowrite16 +EXPORT_SYMBOL vmlinux 0xc6b368d3 acpi_gpe_count +EXPORT_SYMBOL vmlinux 0xc6b3c224 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xc6c5c885 vc_cons +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc709f15c elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xc716ff87 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xc719f4ff i2c_clients_command +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc751334f dquot_release +EXPORT_SYMBOL vmlinux 0xc751b122 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc75bac8a uart_get_divisor +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc76ecc60 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7847a95 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc787eb65 lwtunnel_output +EXPORT_SYMBOL vmlinux 0xc7956d41 vga_switcheroo_client_fb_set +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b2e667 param_set_bint +EXPORT_SYMBOL vmlinux 0xc7c514e9 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xc7ceb3e8 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xc7cff913 fb_is_primary_device +EXPORT_SYMBOL vmlinux 0xc7e9ab0a pci_set_power_state +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc7f34787 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xc7f3b419 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xc7f8bee2 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xc7fcc5bf acpi_resource_to_address64 +EXPORT_SYMBOL vmlinux 0xc81b5f65 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc82af936 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xc82c97e6 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc839954d dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc86d6799 ___preempt_schedule +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a2533b dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xc8a6d94e scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0xc8a7437c i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b49e6e follow_down +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8c0101f __ip_dev_find +EXPORT_SYMBOL vmlinux 0xc8c2c08e iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xc8cf2866 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xc8e47ac1 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xc8ef274a commit_creds +EXPORT_SYMBOL vmlinux 0xc8f26f42 brioctl_set +EXPORT_SYMBOL vmlinux 0xc8f5ae45 dev_uc_sync +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9169fd4 dentry_unhash +EXPORT_SYMBOL vmlinux 0xc9262609 nf_getsockopt +EXPORT_SYMBOL vmlinux 0xc9300ef9 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xc935103d unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xc9537cf0 uart_resume_port +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9652363 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xc96795d8 kunmap_high +EXPORT_SYMBOL vmlinux 0xc96be7fd eth_type_trans +EXPORT_SYMBOL vmlinux 0xc975c745 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xc99bb325 arp_send +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc99f6aae dma_spin_lock +EXPORT_SYMBOL vmlinux 0xc9b76db7 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xc9ca1122 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xc9fef317 add_wait_queue +EXPORT_SYMBOL vmlinux 0xca0d2795 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca26cb13 __quota_error +EXPORT_SYMBOL vmlinux 0xca2a6965 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xca2fa05c __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca45caba write_one_page +EXPORT_SYMBOL vmlinux 0xca467bfd nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xca49070b jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xca4cd2d0 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xca57038b skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xca5b2490 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xca64ba58 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0xca7505bb devm_gpio_free +EXPORT_SYMBOL vmlinux 0xca8acc78 acpi_dbg_level +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcaa964ff dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0xcaafc3e0 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xcabee426 audit_log_start +EXPORT_SYMBOL vmlinux 0xcac682f5 inet_csk_reqsk_queue_drop +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 0xcb03022a blk_get_queue +EXPORT_SYMBOL vmlinux 0xcb14f69a tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xcb3730dd component_match_add +EXPORT_SYMBOL vmlinux 0xcb4e0956 tty_vhangup +EXPORT_SYMBOL vmlinux 0xcb733bf2 acpi_bus_set_power +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 0xcbd6e1a2 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcbedd00c scsi_print_result +EXPORT_SYMBOL vmlinux 0xcbfd9097 dev_add_pack +EXPORT_SYMBOL vmlinux 0xcc031332 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xcc0db8d6 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2f29a3 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xcc306947 input_inject_event +EXPORT_SYMBOL vmlinux 0xcc4d1bfb atomic64_read_cx8 +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc607152 release_pages +EXPORT_SYMBOL vmlinux 0xcc82add3 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xcc838223 __pte2cachemode_tbl +EXPORT_SYMBOL vmlinux 0xcc88ea4a revalidate_disk +EXPORT_SYMBOL vmlinux 0xcc8d3f4f acpi_os_execute +EXPORT_SYMBOL vmlinux 0xcc9814ec pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xccbca4d9 get_tz_trend +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xcd11a884 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd3363bd __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xcd39090e scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xcd3dd0ab free_page_put_link +EXPORT_SYMBOL vmlinux 0xcd3eae2c kernel_listen +EXPORT_SYMBOL vmlinux 0xcd62e080 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0xcd6bb5db bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xcd8fdf85 mmc_put_card +EXPORT_SYMBOL vmlinux 0xcd9b9189 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xcda39f26 block_write_end +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc65086 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xcdeb7074 dev_emerg +EXPORT_SYMBOL vmlinux 0xcdfb09ec notify_change +EXPORT_SYMBOL vmlinux 0xce0e380d scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xce1cbabc vlan_uses_dev +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 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce9c7efc phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xce9e41e9 lockref_get +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae88ce blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xcec41c80 kthread_stop +EXPORT_SYMBOL vmlinux 0xcecd555c bio_map_kern +EXPORT_SYMBOL vmlinux 0xcedfc84d lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xcee9f0dd netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf0675d5 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xcf1515ed vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xcf6cfe1f msrs_free +EXPORT_SYMBOL vmlinux 0xcf84da9f scsi_print_command +EXPORT_SYMBOL vmlinux 0xcfb4c3ee acpi_bus_get_device +EXPORT_SYMBOL vmlinux 0xcfe05d4d register_kmmio_probe +EXPORT_SYMBOL vmlinux 0xcfe5f7e7 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xd00217ec vme_bus_type +EXPORT_SYMBOL vmlinux 0xd018fa69 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xd04ec51e md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xd04f7006 tcp_filter +EXPORT_SYMBOL vmlinux 0xd05f1e77 set_create_files_as +EXPORT_SYMBOL vmlinux 0xd05fc5ed pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xd06ce795 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd084b0da __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xd08ea75e jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xd0912018 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xd091940d scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a154ad dm_put_table_device +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a90e79 kset_register +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b887ba deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xd0c410eb blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xd0d8621b strlen +EXPORT_SYMBOL vmlinux 0xd0db5e63 abx500_startup_irq_enabled +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 0xd1009e01 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0xd10eb0ae sync_blockdev +EXPORT_SYMBOL vmlinux 0xd111befc i2c_del_driver +EXPORT_SYMBOL vmlinux 0xd1153767 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xd11f5172 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xd134b134 generic_writepages +EXPORT_SYMBOL vmlinux 0xd15384e7 md_integrity_register +EXPORT_SYMBOL vmlinux 0xd162e699 kmem_cache_size +EXPORT_SYMBOL vmlinux 0xd1652a93 acpi_info +EXPORT_SYMBOL vmlinux 0xd16634b6 __seq_open_private +EXPORT_SYMBOL vmlinux 0xd16d864b phy_attach +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd18c8df5 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xd190b42a tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd19e69c2 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xd1a95b62 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e50d45 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xd1f6c5f3 smp_num_siblings +EXPORT_SYMBOL vmlinux 0xd2064e2f idr_replace +EXPORT_SYMBOL vmlinux 0xd20aa447 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xd20f3020 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xd2212d33 udp_del_offload +EXPORT_SYMBOL vmlinux 0xd22b4c2f xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xd22f950c __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd256f51b flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xd257b93f netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27ae8b4 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28b371f __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xd2a3aab1 neigh_event_ns +EXPORT_SYMBOL vmlinux 0xd2a9651a current_task +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2cc539b kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e6a582 acpi_processor_preregister_performance +EXPORT_SYMBOL vmlinux 0xd2e8f42f pci_request_region +EXPORT_SYMBOL vmlinux 0xd2f1ec81 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xd2fbf97b init_task +EXPORT_SYMBOL vmlinux 0xd303c0db jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xd307d277 dev_close +EXPORT_SYMBOL vmlinux 0xd30b379c scsi_register_interface +EXPORT_SYMBOL vmlinux 0xd31ad7d9 check_disk_size_change +EXPORT_SYMBOL vmlinux 0xd3215ad3 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xd322b9dd ilookup5 +EXPORT_SYMBOL vmlinux 0xd34724aa block_read_full_page +EXPORT_SYMBOL vmlinux 0xd357744c new_inode +EXPORT_SYMBOL vmlinux 0xd3661bc1 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xd37776d0 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xd389c815 clk_get +EXPORT_SYMBOL vmlinux 0xd39e3020 inet6_release +EXPORT_SYMBOL vmlinux 0xd3a96be5 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xd3adaf7d mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3bcb7d7 keyring_alloc +EXPORT_SYMBOL vmlinux 0xd408a449 single_open +EXPORT_SYMBOL vmlinux 0xd41b4b0b ipv4_specific +EXPORT_SYMBOL vmlinux 0xd41efa57 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xd42e9539 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xd44dc0f7 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xd45b8fd2 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xd4628f22 ppp_input +EXPORT_SYMBOL vmlinux 0xd462f2f3 mutex_lock +EXPORT_SYMBOL vmlinux 0xd4643a8b ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xd467c61f console_start +EXPORT_SYMBOL vmlinux 0xd47172b9 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xd4835ef8 dmi_check_system +EXPORT_SYMBOL vmlinux 0xd48bbb9b set_trace_device +EXPORT_SYMBOL vmlinux 0xd492abd3 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xd4b51199 inode_init_owner +EXPORT_SYMBOL vmlinux 0xd4b69bdb vfs_writef +EXPORT_SYMBOL vmlinux 0xd4e4cfbc pci_match_id +EXPORT_SYMBOL vmlinux 0xd4e6ddd7 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xd4feb5d5 cap_mmap_file +EXPORT_SYMBOL vmlinux 0xd50fef48 acpi_detach_data +EXPORT_SYMBOL vmlinux 0xd5189f7d bioset_create +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd561023e pnp_register_card_driver +EXPORT_SYMBOL vmlinux 0xd56de4dd xfrm_state_add +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd599cea1 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xd5cde40c seq_dentry +EXPORT_SYMBOL vmlinux 0xd5db7548 mount_single +EXPORT_SYMBOL vmlinux 0xd5ec2bb4 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd601cc62 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63b8a89 blk_free_tags +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd66bcbcc inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xd67068f1 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68e1d1b _raw_read_trylock +EXPORT_SYMBOL vmlinux 0xd69f2cfb get_io_context +EXPORT_SYMBOL vmlinux 0xd6a7c582 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xd6add018 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xd6b2ed5f generate_pm_trace +EXPORT_SYMBOL vmlinux 0xd6b33026 cpu_khz +EXPORT_SYMBOL vmlinux 0xd6d1f386 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xd6e1a8ea sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f65e38 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xd712239c __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xd730959d seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xd7459778 wake_up_process +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd76068b9 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xd7785ef0 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0xd795afaa dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7b3a907 md_error +EXPORT_SYMBOL vmlinux 0xd7dd777b reserve_perfctr_nmi +EXPORT_SYMBOL vmlinux 0xd7e020de param_ops_long +EXPORT_SYMBOL vmlinux 0xd7e4fc93 lock_rename +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd8064f0f qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xd809234b qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd8691258 pci_pme_active +EXPORT_SYMBOL vmlinux 0xd88b1e91 account_page_redirty +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a3349d padata_stop +EXPORT_SYMBOL vmlinux 0xd8a960fc nf_log_set +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8dad3ec reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e3193f lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e9d687 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xd9062f83 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xd9091363 acpi_install_notify_handler +EXPORT_SYMBOL vmlinux 0xd90d6d7c clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xd91a2cd8 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xd92e2dca tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xd93ad402 udplite_prot +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 0xd9713d52 __dax_fault +EXPORT_SYMBOL vmlinux 0xd971c6c4 xen_arch_register_cpu +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd989f418 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xd9ad6d1d netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0xd9d3bcd3 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xd9d688cc pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xda08c0d7 pcibios_get_irq_routing_table +EXPORT_SYMBOL vmlinux 0xda17f76f d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xda1b3cae skb_tx_error +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda44346f pnp_get_resource +EXPORT_SYMBOL vmlinux 0xda4a9cfe d_instantiate +EXPORT_SYMBOL vmlinux 0xda6d7c56 param_get_ulong +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda85085a vga_switcheroo_register_audio_client +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda8fd495 isapnp_write_byte +EXPORT_SYMBOL vmlinux 0xda97afda vme_register_bridge +EXPORT_SYMBOL vmlinux 0xdaa263ce inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaaa64a7 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xdabd4ae9 get_gendisk +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdade174a downgrade_write +EXPORT_SYMBOL vmlinux 0xdae0a394 sget_userns +EXPORT_SYMBOL vmlinux 0xdae80100 _raw_spin_unlock +EXPORT_SYMBOL vmlinux 0xdb0fd84e pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xdb11d7e8 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xdb16b170 topology_phys_to_logical_pkg +EXPORT_SYMBOL vmlinux 0xdb17c986 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xdb2a0aef dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xdb346a01 skb_clone +EXPORT_SYMBOL vmlinux 0xdb417f05 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xdb478d46 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xdb51b81d ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xdb52df22 ata_port_printk +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6ead82 neigh_app_ns +EXPORT_SYMBOL vmlinux 0xdb7305a1 __stack_chk_fail +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb89b086 udp_disconnect +EXPORT_SYMBOL vmlinux 0xdb9e8109 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xdbba8ecd tty_port_close_end +EXPORT_SYMBOL vmlinux 0xdbbf6fc9 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xdbc6d204 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xdbd7013e dup_iter +EXPORT_SYMBOL vmlinux 0xdbdd4c4e unregister_shrinker +EXPORT_SYMBOL vmlinux 0xdbf3081b devm_free_irq +EXPORT_SYMBOL vmlinux 0xdbf325d1 tty_kref_put +EXPORT_SYMBOL vmlinux 0xdbfda244 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0f64c1 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc19fec2 dentry_path_raw +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc48a93b register_sysctl_table +EXPORT_SYMBOL vmlinux 0xdc4d3ae3 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc57f532 acpi_install_gpe_handler +EXPORT_SYMBOL vmlinux 0xdc8093d3 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xdce411fd tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xdce4a27f d_prune_aliases +EXPORT_SYMBOL vmlinux 0xdcf970d7 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd266cd1 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xdd2a57c0 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xdd5bac7d down_read +EXPORT_SYMBOL vmlinux 0xdd5c0594 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xdd929513 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xdd932b1d dquot_file_open +EXPORT_SYMBOL vmlinux 0xdda6ee9b scsi_target_resume +EXPORT_SYMBOL vmlinux 0xddb37d02 proc_dointvec +EXPORT_SYMBOL vmlinux 0xddc374e0 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xddeab9be pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xde04a0ff nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xde06e00e nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xde16dc16 tboot +EXPORT_SYMBOL vmlinux 0xde1b391a alloc_file +EXPORT_SYMBOL vmlinux 0xde1c26af simple_follow_link +EXPORT_SYMBOL vmlinux 0xde23d9c1 neigh_seq_start +EXPORT_SYMBOL vmlinux 0xde3057a7 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xde39891d nobh_write_begin +EXPORT_SYMBOL vmlinux 0xde496383 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xde51cbc4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xde544118 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xde6c0b38 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xde713575 alloc_disk +EXPORT_SYMBOL vmlinux 0xde72b506 dquot_alloc +EXPORT_SYMBOL vmlinux 0xde75818d param_set_bool +EXPORT_SYMBOL vmlinux 0xde7707e6 iget5_locked +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde991f43 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeacef86 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xdeb95b00 mmc_free_host +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xdedb6611 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0xdeee8731 misc_deregister +EXPORT_SYMBOL vmlinux 0xdf02c107 set_bh_page +EXPORT_SYMBOL vmlinux 0xdf06ac9e uart_remove_one_port +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 0xdf2dfce6 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf4f80a6 cfb_fillrect +EXPORT_SYMBOL vmlinux 0xdf4fc797 __register_nmi_handler +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf5a10f0 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xdf5ce476 __inode_permission +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf7db647 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xdf80297f skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xdf8c695a __ndelay +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf955bf2 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xdf9a3615 load_nls_default +EXPORT_SYMBOL vmlinux 0xdf9f3e4a vga_switcheroo_get_client_state +EXPORT_SYMBOL vmlinux 0xdfbeb667 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfd3a075 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0xdfefbe19 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe014fed9 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xe02ab8a9 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xe03175d6 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0672904 jbd2_journal_set_triggers +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 0xe08c71e3 generic_permission +EXPORT_SYMBOL vmlinux 0xe091f29b qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xe0932d57 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xe09d6aba pci_disable_msix +EXPORT_SYMBOL vmlinux 0xe0a16a20 intel_scu_ipc_i2c_cntrl +EXPORT_SYMBOL vmlinux 0xe0a33053 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xe0a7e4ee lock_fb_info +EXPORT_SYMBOL vmlinux 0xe0aa22de bio_integrity_free +EXPORT_SYMBOL vmlinux 0xe0ac8bd2 acpi_bus_generate_netlink_event +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0c10b5d md_update_sb +EXPORT_SYMBOL vmlinux 0xe0c64e8c blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xe0c6fe25 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xe0dfebdb ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xe0fb7b4e qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xe106b150 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xe10f5caa dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xe115dbe7 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xe11f7a1e acpi_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1353403 sk_net_capable +EXPORT_SYMBOL vmlinux 0xe137d581 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xe13cd8a7 dmi_name_in_vendors +EXPORT_SYMBOL vmlinux 0xe1426cdf iov_iter_advance +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe177c7c9 get_task_exe_file +EXPORT_SYMBOL vmlinux 0xe1b0c9d9 vfs_read +EXPORT_SYMBOL vmlinux 0xe1cd58c8 netif_device_detach +EXPORT_SYMBOL vmlinux 0xe1cfff4b mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0xe1e785ca udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xe1eca9db fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xe1f38424 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xe1f61b9c xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20391cb proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe2143a17 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xe21f5dbc skb_queue_head +EXPORT_SYMBOL vmlinux 0xe231f087 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23f6116 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe2567d17 scsi_execute +EXPORT_SYMBOL vmlinux 0xe259ae9e _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xe26289ae freeze_bdev +EXPORT_SYMBOL vmlinux 0xe262aae5 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xe2924019 napi_gro_receive +EXPORT_SYMBOL vmlinux 0xe294e384 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xe2966f66 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b50262 isapnp_protocol +EXPORT_SYMBOL vmlinux 0xe2bc9c43 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f8ddbd page_waitqueue +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3070132 set_cached_acl +EXPORT_SYMBOL vmlinux 0xe3197208 proc_dostring +EXPORT_SYMBOL vmlinux 0xe319eb24 acpi_pci_osc_control_set +EXPORT_SYMBOL vmlinux 0xe33737cc kill_litter_super +EXPORT_SYMBOL vmlinux 0xe3399a75 native_queued_spin_lock_slowpath +EXPORT_SYMBOL vmlinux 0xe36ce5d9 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xe377f453 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xe38710d8 udp_proc_register +EXPORT_SYMBOL vmlinux 0xe38e32d4 kmap_atomic +EXPORT_SYMBOL vmlinux 0xe392bb57 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xe393a8f4 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xe3a025b6 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xe3b70603 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3fc7c1d param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe40eeea7 input_free_device +EXPORT_SYMBOL vmlinux 0xe4144170 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xe42e3a66 d_tmpfile +EXPORT_SYMBOL vmlinux 0xe43bbfe3 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xe43fc434 check_disk_change +EXPORT_SYMBOL vmlinux 0xe44040c0 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xe4415de1 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xe445db4a acpi_check_address_range +EXPORT_SYMBOL vmlinux 0xe4647368 dma_release_declared_memory +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4934dde do_SAK +EXPORT_SYMBOL vmlinux 0xe49f590d input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xe4a90624 udp_prot +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4d6077a security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xe4d92eaf genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4f99433 nf_log_register +EXPORT_SYMBOL vmlinux 0xe5075d6e generic_write_end +EXPORT_SYMBOL vmlinux 0xe509a403 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe50f904f intel_scu_ipc_ioread16 +EXPORT_SYMBOL vmlinux 0xe51d229f sg_miter_start +EXPORT_SYMBOL vmlinux 0xe5216f60 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52bc66a nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xe530d757 acpi_clear_gpe +EXPORT_SYMBOL vmlinux 0xe55751bc PDE_DATA +EXPORT_SYMBOL vmlinux 0xe56cf129 kset_unregister +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe580ffec blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xe5815f8a _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5a9742d skb_checksum_setup +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d48cf6 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xe5d4a866 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xe5ea0ab8 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe608b14f i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xe6162877 down_killable +EXPORT_SYMBOL vmlinux 0xe64d98fe rdmsr_safe_regs +EXPORT_SYMBOL vmlinux 0xe6602e9d mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6a1b3d7 netlink_ack +EXPORT_SYMBOL vmlinux 0xe6bfcc08 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xe6d44644 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6f17344 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0xe6f8ea31 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe716baed acpi_unregister_ioapic +EXPORT_SYMBOL vmlinux 0xe73c8a5f kernel_sendpage +EXPORT_SYMBOL vmlinux 0xe74d44c7 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xe750efc8 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xe7623559 kernel_write +EXPORT_SYMBOL vmlinux 0xe77cf79b blk_delay_queue +EXPORT_SYMBOL vmlinux 0xe781b5f6 intel_scu_ipc_readv +EXPORT_SYMBOL vmlinux 0xe7896577 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xe789f576 seq_path +EXPORT_SYMBOL vmlinux 0xe79c6aa4 alloc_xenballooned_pages +EXPORT_SYMBOL vmlinux 0xe79e928f default_llseek +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7af6050 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7db2376 tty_hangup +EXPORT_SYMBOL vmlinux 0xe7fd118a xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe83e6f32 neigh_xmit +EXPORT_SYMBOL vmlinux 0xe85dd55c sock_no_accept +EXPORT_SYMBOL vmlinux 0xe8602b2f udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xe863ae3f security_d_instantiate +EXPORT_SYMBOL vmlinux 0xe87025f0 acpi_evaluate_object_typed +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8ad8009 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xe8b68849 wrmsr_on_cpus +EXPORT_SYMBOL vmlinux 0xe8b6e5d5 cad_pid +EXPORT_SYMBOL vmlinux 0xe8bb2424 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xe8bbe0a3 phy_resume +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8db8dd2 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xe8e7980e mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0xe8f3e41c lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xe90df528 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe93657f0 serio_open +EXPORT_SYMBOL vmlinux 0xe93f6042 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe9495c7d dump_truncate +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe98b4152 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xe99763af mmc_can_trim +EXPORT_SYMBOL vmlinux 0xe997667b wrmsr_on_cpu +EXPORT_SYMBOL vmlinux 0xe9ab1bfa xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xe9acfac4 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xe9b812cd reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9f85a8a pci_get_device +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea270ffd pci_scan_slot +EXPORT_SYMBOL vmlinux 0xea3f725d _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xea6f9ca0 pnp_is_active +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7b8a44 acpi_install_interface +EXPORT_SYMBOL vmlinux 0xea812dc2 dev_notice +EXPORT_SYMBOL vmlinux 0xea90bdd3 acpi_attach_data +EXPORT_SYMBOL vmlinux 0xea99620a blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xeaae076b mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xeac22bcc elv_register_queue +EXPORT_SYMBOL vmlinux 0xeadeb4d4 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xeae3dfd6 __const_udelay +EXPORT_SYMBOL vmlinux 0xeae96a54 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xeaf4d6ed __register_chrdev +EXPORT_SYMBOL vmlinux 0xeb19cff6 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb47c720 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb92c9d4 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xeba70aa3 elv_rb_add +EXPORT_SYMBOL vmlinux 0xebae56d1 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xebc47107 override_creds +EXPORT_SYMBOL vmlinux 0xebd2d44a icmpv6_send +EXPORT_SYMBOL vmlinux 0xebf22292 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xebf9996b security_path_symlink +EXPORT_SYMBOL vmlinux 0xebfb2204 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xebff5cf5 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xec16b392 acl_by_type +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec317584 security_path_mknod +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec62db9c writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xec7735f5 udp_set_csum +EXPORT_SYMBOL vmlinux 0xec7b8ac4 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xec8a20e0 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xec8a4326 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xec9cb9b3 devm_iounmap +EXPORT_SYMBOL vmlinux 0xecae4728 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecc8f4b0 neigh_table_init +EXPORT_SYMBOL vmlinux 0xeccd3e0c acpi_handle_printk +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecf51d13 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xed0d0761 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xed23713c __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xed3df138 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xed418df9 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xed4e39a4 vga_switcheroo_register_handler +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed598ca6 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xed75bb43 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xed8838ae vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed95fa5c bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xed97a9fe dev_open +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda1b620 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc2a5e8 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xeddbe706 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xeddeaaa6 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xede0fe34 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xedfd918c nonseekable_open +EXPORT_SYMBOL vmlinux 0xee03f449 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xee158e11 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xee159983 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xee1d8e2b __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee34eab4 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xee46089b d_find_any_alias +EXPORT_SYMBOL vmlinux 0xee4b5e2f napi_gro_frags +EXPORT_SYMBOL vmlinux 0xee50002a disk_stack_limits +EXPORT_SYMBOL vmlinux 0xee78c462 pci_bus_find_capability +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 0xeec3835b sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xeed53324 set_blocksize +EXPORT_SYMBOL vmlinux 0xeee734e3 bdput +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef86bf1 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xef0d2b3d vfs_symlink +EXPORT_SYMBOL vmlinux 0xef0d6049 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xef26a832 mount_subtree +EXPORT_SYMBOL vmlinux 0xef2b2b66 pnp_device_attach +EXPORT_SYMBOL vmlinux 0xef374c61 seq_write +EXPORT_SYMBOL vmlinux 0xef528528 inet_shutdown +EXPORT_SYMBOL vmlinux 0xef658ec9 unregister_key_type +EXPORT_SYMBOL vmlinux 0xef728087 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xef89117e gnttab_free_pages +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 0xefedf33c iget_locked +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf01817c8 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf039cc32 kill_pid +EXPORT_SYMBOL vmlinux 0xf045a9e4 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xf049033e nf_setsockopt +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 0xf071cb21 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xf08242c2 finish_wait +EXPORT_SYMBOL vmlinux 0xf085a768 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0ab622e from_kuid +EXPORT_SYMBOL vmlinux 0xf0c694ce bio_copy_kern +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 0xf11bc71d jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xf11c9669 seq_open_private +EXPORT_SYMBOL vmlinux 0xf1271f99 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xf12cf167 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xf138950e skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xf1398e2e lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf143808a __ip_select_ident +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1481582 cdev_add +EXPORT_SYMBOL vmlinux 0xf1563591 register_framebuffer +EXPORT_SYMBOL vmlinux 0xf16dba9d devm_request_resource +EXPORT_SYMBOL vmlinux 0xf18242e1 atomic64_set_cx8 +EXPORT_SYMBOL vmlinux 0xf18dc1f6 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a70dc2 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xf1ad654e generic_fillattr +EXPORT_SYMBOL vmlinux 0xf1b751f1 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f437cb agp_find_bridge +EXPORT_SYMBOL vmlinux 0xf1fe65ae mpage_readpages +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf2349e2d nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xf23d63e5 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25dee83 padata_set_cpumasks +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 0xf2aef780 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2f4f45c inet_stream_ops +EXPORT_SYMBOL vmlinux 0xf312cb9d ucs2_strsize +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf332e9cb hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf342dbc2 tso_count_descs +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf3498824 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xf34f26fc __nlmsg_put +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf355e0a2 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xf378fa92 free_xenballooned_pages +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 0xf39ca48d flush_old_exec +EXPORT_SYMBOL vmlinux 0xf3a04edf jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xf3a7eaeb scsi_register_driver +EXPORT_SYMBOL vmlinux 0xf3b5f9d2 bdget +EXPORT_SYMBOL vmlinux 0xf3d94b23 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xf3db98b0 inet_sendpage +EXPORT_SYMBOL vmlinux 0xf3e21393 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xf3e4cacb msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e69ecf __blk_run_queue +EXPORT_SYMBOL vmlinux 0xf3e82603 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xf3fb5526 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf4271b24 pnp_register_driver +EXPORT_SYMBOL vmlinux 0xf42be6af loop_backing_file +EXPORT_SYMBOL vmlinux 0xf43d2d9c get_empty_filp +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4554954 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xf45cc102 module_put +EXPORT_SYMBOL vmlinux 0xf461e27f xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf475f019 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xf47eae7a splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xf47f706c swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xf4a20d43 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xf4a5c213 avail_to_resrv_perfctr_nmi_bit +EXPORT_SYMBOL vmlinux 0xf4a7b020 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xf4b754fd acpi_resources_are_enforced +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4d20f81 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf502d273 acpi_get_current_resources +EXPORT_SYMBOL vmlinux 0xf505b83d mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xf51ae235 touch_nmi_watchdog +EXPORT_SYMBOL vmlinux 0xf52bf4a2 tty_lock +EXPORT_SYMBOL vmlinux 0xf532d33b dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xf536d22e acpi_set_gpe_wake_mask +EXPORT_SYMBOL vmlinux 0xf53cf311 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5437b8b device_get_mac_address +EXPORT_SYMBOL vmlinux 0xf551399b dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xf554cd9f pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xf589e348 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5ab287c set_posix_acl +EXPORT_SYMBOL vmlinux 0xf5b10e67 acpi_install_global_event_handler +EXPORT_SYMBOL vmlinux 0xf5b9be60 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5d567e5 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xf5dad531 contig_page_data +EXPORT_SYMBOL vmlinux 0xf5e9e4bf bio_add_page +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ff9064 seq_open +EXPORT_SYMBOL vmlinux 0xf626de35 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xf62a7359 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf65bf815 nobh_writepage +EXPORT_SYMBOL vmlinux 0xf660c652 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0xf66b64e2 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67fa2be of_find_mipi_dsi_device_by_node +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 0xf6a2092d pnp_unregister_driver +EXPORT_SYMBOL vmlinux 0xf6a755a1 netif_rx +EXPORT_SYMBOL vmlinux 0xf6a7c658 __module_get +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6d9d727 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ebf1df netdev_features_change +EXPORT_SYMBOL vmlinux 0xf6f0cd66 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xf6faaf38 genphy_update_link +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf701f1b5 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xf707102b dget_parent +EXPORT_SYMBOL vmlinux 0xf711c633 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xf726d02f atomic64_add_unless_cx8 +EXPORT_SYMBOL vmlinux 0xf728364a phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xf73e9020 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xf745cb16 atomic64_sub_return_cx8 +EXPORT_SYMBOL vmlinux 0xf74d2dcd d_set_d_op +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf764868a udplite_table +EXPORT_SYMBOL vmlinux 0xf769af6f prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xf788424d register_sysctl +EXPORT_SYMBOL vmlinux 0xf7891779 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf79e0677 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xf79e97cd acpi_get_physical_device_location +EXPORT_SYMBOL vmlinux 0xf7c094fc linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xf7c1d910 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0xf7ec1c53 vga_set_legacy_decoding +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 0xf83e1c6a __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xf8690bfa eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xf86d2018 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xf87448a7 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xf87ccbdc inet_release +EXPORT_SYMBOL vmlinux 0xf88e0ee2 acpi_get_table_header +EXPORT_SYMBOL vmlinux 0xf890adec sock_no_poll +EXPORT_SYMBOL vmlinux 0xf895c747 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0xf8b746c2 kernel_bind +EXPORT_SYMBOL vmlinux 0xf8bf1aa8 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xf8c7f559 dma_declare_coherent_memory +EXPORT_SYMBOL vmlinux 0xf8cbdaff tcp_conn_request +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8fc7964 sock_no_bind +EXPORT_SYMBOL vmlinux 0xf8fcf73e blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xf90bd5bd __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xf92c9f76 get_cached_acl +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf93dea88 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xf941e614 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xf9512d84 set_pages_uc +EXPORT_SYMBOL vmlinux 0xf96113e9 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xf96f54f4 inode_set_flags +EXPORT_SYMBOL vmlinux 0xf990dba5 pagevec_lookup +EXPORT_SYMBOL vmlinux 0xf9976e97 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9ef461f blk_init_tags +EXPORT_SYMBOL vmlinux 0xfa03b11d bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa51dbbb mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa7860d6 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xfa80e50d __secpath_destroy +EXPORT_SYMBOL vmlinux 0xfa844233 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xfac379d9 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad1c815 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfae9d7af dm_register_target +EXPORT_SYMBOL vmlinux 0xfaec761f scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xfb0443fb acpi_get_parent +EXPORT_SYMBOL vmlinux 0xfb15af1d devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xfb21e200 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xfb28de91 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xfb349b19 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xfb3ed430 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xfb4b8594 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6b3076 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xfb774290 ip_defrag +EXPORT_SYMBOL vmlinux 0xfb77d8e2 pci_biosrom_size +EXPORT_SYMBOL vmlinux 0xfb7cc390 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xfb80c7a0 acpi_walk_namespace +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbabf1a4 mount_pseudo +EXPORT_SYMBOL vmlinux 0xfbb2a76d ata_print_version +EXPORT_SYMBOL vmlinux 0xfbc100fd skb_unlink +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd4d89f mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xfbd71298 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0xfbdd968a follow_up +EXPORT_SYMBOL vmlinux 0xfbf26f35 blk_start_request +EXPORT_SYMBOL vmlinux 0xfbfbb125 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc0af76f __get_user_pages +EXPORT_SYMBOL vmlinux 0xfc275471 scsi_register +EXPORT_SYMBOL vmlinux 0xfc2d67fb tty_port_close_start +EXPORT_SYMBOL vmlinux 0xfc2e9519 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xfc2ff4e1 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc418151 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xfc420977 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xfc562165 acpi_run_osc +EXPORT_SYMBOL vmlinux 0xfc56d70d bio_init +EXPORT_SYMBOL vmlinux 0xfc58fda5 d_lookup +EXPORT_SYMBOL vmlinux 0xfc5f5904 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xfc63e120 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc72dcd7 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xfc734327 queued_read_lock_slowpath +EXPORT_SYMBOL vmlinux 0xfc872fd1 get_ibs_caps +EXPORT_SYMBOL vmlinux 0xfc95a9ab kernel_param_lock +EXPORT_SYMBOL vmlinux 0xfca3888b mmc_erase +EXPORT_SYMBOL vmlinux 0xfca5c67b i2c_put_adapter +EXPORT_SYMBOL vmlinux 0xfca6999a dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xfcac0d40 acpi_install_interface_handler +EXPORT_SYMBOL vmlinux 0xfcbd014e xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfceeb0cb dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xfcf8246c jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xfcf8ae15 finish_no_open +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd0105e8 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xfd02c38f drop_nlink +EXPORT_SYMBOL vmlinux 0xfd11df78 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd347aa7 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xfd3a6ef3 skb_find_text +EXPORT_SYMBOL vmlinux 0xfd4694c8 cros_ec_cmd_xfer +EXPORT_SYMBOL vmlinux 0xfd4e773a devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xfd54879f blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xfd5cae52 d_make_root +EXPORT_SYMBOL vmlinux 0xfd72221f remove_proc_entry +EXPORT_SYMBOL vmlinux 0xfd7a24f2 from_kgid +EXPORT_SYMBOL vmlinux 0xfd7b939f kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfda9f0ce scsi_host_get +EXPORT_SYMBOL vmlinux 0xfdabc79d elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xfdb0567e __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xfdb0bd12 dev_deactivate +EXPORT_SYMBOL vmlinux 0xfdb7264b __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdc5abf4 simple_readpage +EXPORT_SYMBOL vmlinux 0xfdcecf13 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xfdd02b8d filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xfde1622e phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0xfdec004e pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xfdee6ff7 jbd2_journal_lock_updates +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 0xfe0c75a2 tty_set_operations +EXPORT_SYMBOL vmlinux 0xfe12fbdb in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xfe13c522 acpi_install_gpe_raw_handler +EXPORT_SYMBOL vmlinux 0xfe27addf pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xfe3ebd6a generic_setlease +EXPORT_SYMBOL vmlinux 0xfe5d30e9 _raw_write_trylock +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6a9ace input_flush_device +EXPORT_SYMBOL vmlinux 0xfe6be4d8 pv_cpu_ops +EXPORT_SYMBOL vmlinux 0xfe6fb84a inode_get_bytes +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe884176 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xfe94cb63 param_ops_uint +EXPORT_SYMBOL vmlinux 0xfe9ebbbb acpi_osi_is_win8 +EXPORT_SYMBOL vmlinux 0xfebc5ee7 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xfebd4123 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xfec645c9 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfecc5dbf __f_setown +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfededd41 inet6_protos +EXPORT_SYMBOL vmlinux 0xfee1cb4d security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xfee88aa1 mapping_tagged +EXPORT_SYMBOL vmlinux 0xfef2c78f idr_get_next +EXPORT_SYMBOL vmlinux 0xff05c14c prepare_binprm +EXPORT_SYMBOL vmlinux 0xff070751 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff26add6 register_xen_selfballooning +EXPORT_SYMBOL vmlinux 0xff26f79d force_sig +EXPORT_SYMBOL vmlinux 0xff4673ca pci_enable_device +EXPORT_SYMBOL vmlinux 0xff480992 dump_fpu +EXPORT_SYMBOL vmlinux 0xff4d2639 vfs_fsync +EXPORT_SYMBOL vmlinux 0xff5c8c61 i2c_smbus_write_byte_data +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 0xffc31e28 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xffc971cb i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdfa5dc blk_mq_alloc_tag_set +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 0x4efe1cc4 glue_xts_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0x54eca397 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 0xab3cd83e glue_ctr_crypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xde8131d9 glue_cbc_encrypt_128bit +EXPORT_SYMBOL_GPL arch/x86/crypto/glue_helper 0xfc4c7d87 glue_cbc_decrypt_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 0x0005d931 kvm_find_cpuid_entry +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x00aaf935 kvm_disable_tdp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x02ed0f1d kvm_rdpmc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x062e0255 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x083ead27 kvm_before_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09e6c2c3 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x09ff5fe4 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x0d4f6bae kvm_get_cs_db_l_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x11a57205 kvm_cpu_get_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13686637 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x13ff1280 kvm_require_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x15a26028 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x163ce31d kvm_is_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x168fbdf3 kvm_mmu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x173cc115 x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x175aea24 kvm_write_guest_virt_system +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1c644f4e kvm_requeue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1d1f7936 kvm_arch_register_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x1dc2964c kvm_clear_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x20f5eac4 vcpu_put +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2124f042 kvm_read_guest_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x237e70d0 kvm_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x23adaaed kvm_fast_pio_out +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x27d31b11 kvm_mmu_sync_roots +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x282250b9 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x28f9e717 kvm_arch_start_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2c78b8d4 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2e09cb0c x86_emulate_instruction +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f636c31 kvm_spurious_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x2f963ae7 kvm_mmu_clear_dirty_pt_masked +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x317f9e6b kvm_enable_efer_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32e0fd9f kvm_set_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x32e2fdc5 kvm_task_switch +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x35517d61 kvm_lapic_set_eoi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x36c7957d kvm_scale_tsc +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 0x386723ff kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38746786 kvm_mmu_reset_context +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x38aca510 reprogram_gp_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x39292d49 kvm_release_page_dirty +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 0x3fa942b4 kvm_mmu_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4027b812 reprogram_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x40ce1e45 __tracepoint_kvm_inj_virq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4307d46d kvm_set_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x431d94fa kvm_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x43f4230c __tracepoint_kvm_write_tsc_offset +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x482c7e3a kvm_arch_has_assigned_device +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x48e14129 kvm_get_dirty_log_protect +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4a2ac466 kvm_get_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4b48a043 kvm_read_l1_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4ecb00f8 kvm_inject_realmode_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x4f8df6b8 kvm_init_shadow_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x528b9fb4 gfn_to_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x556e8508 kvm_arch_has_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x58be5656 kvm_mmu_invlpg +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5995975d kvm_cpu_has_interrupt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x59b712a1 kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5a891037 kvm_queue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5cb8455c kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5e7895b6 kvm_emulate_cpuid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5eaca5c7 kvm_apic_write_nodecode +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5ee6b696 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5f640678 kvm_x86_ops +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x5fc547ce kvm_get_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x635d244b kvm_set_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x64020e10 kvm_set_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6446f5b2 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x67ce219b kvm_requeue_exception +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68138a79 __tracepoint_kvm_nested_intercepts +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x684a8937 kvm_set_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x68a30dc0 kvm_vcpu_is_reset_bsp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6a4cb6e4 kvm_inject_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6c81a353 kvm_lmsw +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6d186fce handle_mmio_page_fault +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x6fca09d3 kvm_mmu_slot_leaf_clear_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x70a67df6 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x72b77483 kvm_after_handle_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7716bd90 gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78ab5959 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x78d7089a kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7c59e22e __tracepoint_kvm_ple_window +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7ef2afa9 reset_shadow_zero_bits_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x7f6edc44 kvm_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8090acde kvm_mmu_unprotect_page_virt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x80ecfb6b __tracepoint_kvm_skinit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x824c4653 kvm_mtrr_valid +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x828ae06d kvm_set_xcr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x82faa3fb kvm_arch_end_assignment +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x831327da kvm_max_guest_tsc_khz +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x843fcdb4 kvm_vcpu_reload_apic_access_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x84a6a6b2 gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8599c619 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x886414ff gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x889279da kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x88e5c753 mark_page_dirty +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 0x8e308bae kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x8f2bbb88 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92d713dd __tracepoint_kvm_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x92e93454 kvm_apic_set_eoi_accelerated +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x930bebb0 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x95e7f2b7 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96be80e2 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x96dbe382 kvm_mpx_supported +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9792ca58 kvm_vcpu_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x982cd932 __tracepoint_kvm_nested_vmrun +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x98383134 kvm_get_kvm +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x99aabbe7 kvm_inject_nmi +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a216313 kvm_define_shared_msr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9a4c38e4 kvm_intr_is_single_vcpu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9b08a045 kvm_set_msi_irq +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ba9c257 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c171a59 __tracepoint_kvm_cr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9c27cf2c kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9dc379f1 kvm_get_msr_common +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9dc4c593 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9e0a65d0 __tracepoint_kvm_nested_intr_vmexit +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9f2f025a kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0x9ff1a5b0 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa0ec3a0a gfn_to_hva_memslot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa189d6e7 kvm_get_dr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa27ed960 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa47e5588 kvm_queue_exception_e +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xa4b0ce99 load_pdptrs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xaa4640d4 kvm_init_shadow_ept_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xac5b24b3 reprogram_fixed_counter +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xacf7f97c gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xae127f8c kvm_arch_unregister_noncoherent_dma +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafb7b8d0 kvm_require_cpl +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xafec6f00 kvm_set_apic_base +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb0e3686a kvm_get_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb6bf019b kvm_valid_efer +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xb995fc5f kvm_emulate_wbinvd +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba6af743 kvm_write_tsc +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xba9ed435 kvm_mmu_set_mmio_spte_mask +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbae72151 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbb0e440f kvm_mmu_unprotect_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbefb4f52 __x86_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf443a9d kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xbf915a57 kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc23f3bc8 __tracepoint_kvm_pi_irte_update +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc2dc3d9f kvm_get_rflags +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc3b54d51 kvm_complete_insn_gp +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc47bbe86 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xc4cfc446 kvm_set_cr3 +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 0xcb89335d kvm_emulate_hypercall +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcc062751 kvm_set_cr0 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xcdd55e82 kvm_mmu_slot_largepage_remove_write_access +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 0xd2e4a365 kvm_set_cr4 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xd615f161 kvm_write_guest +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 0xda3aaadb kvm_mmu_slot_set_dirty +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdb3ccc3c kvm_read_guest_page_mmu +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xdcbd446c kvm_get_linear_rip +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xde9c017c __tracepoint_kvm_invlpga +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe1f6e08f kvm_inject_pending_timer_irqs +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe54cbe13 vcpu_load +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe66dfe30 kvm_mtrr_get_guest_memory_type +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe860c7aa gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xe8d19f5e gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xeb28b7c2 kvm_emulate_halt +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xebe1acc5 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xec05f70d kvm_mmu_unload +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf1c32f39 kvm_set_cr8 +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xf2f286c4 kvm_tsc_scaling_ratio_frac_bits +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfb68693a kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfbc8f478 cpuid_query_maxphyaddr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfcf1c57a gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfd60cceb kvm_apic_update_irr +EXPORT_SYMBOL_GPL arch/x86/kvm/kvm 0xfdc68132 __tracepoint_kvm_page_fault +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x18d403c5 ablk_init_common +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x65aa2deb ablk_decrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x7281933e __ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0x93a1b925 ablk_init +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xa1df5014 ablk_exit +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xaab07306 ablk_encrypt +EXPORT_SYMBOL_GPL crypto/ablk_helper 0xf68a42e6 ablk_set_key +EXPORT_SYMBOL_GPL crypto/af_alg 0x11badcb8 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x4f5ebbca af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x5623ab97 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x5dab0102 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x7711016a af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xbe5f9e91 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xdf470e3d af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe52031b9 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xf85f7589 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xf8f22e27 af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xfceee705 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x772c0c70 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6065c805 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xeb91d067 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x05060985 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xaa0f5cfd async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9bf84227 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xba3df151 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbced3e0b __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xd690e1cd async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x54383011 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xa2de7b38 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 0x13fb38b9 crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xfdf842b9 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x1a05f533 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x383fb02e cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x548c3a4e cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x8c081c75 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xb9871374 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xc3b1be5e cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0xc8b04176 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xca05e902 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd051f8d2 cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0xd9556967 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 0xd9d25dfe lrw_crypt +EXPORT_SYMBOL_GPL crypto/mcryptd 0x05111a69 shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0x14bdd4d3 mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x65bc3a9e mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x73fd6922 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x7de34d3d shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0xde5e31b6 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xdeae1765 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0xe7ae87a6 mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf9cc04f9 shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x0a9cc6ac crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x4ffe1b4e crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6e6187bf crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd96258be 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 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 0xafd7d877 xts_crypt +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x1d671d58 acpi_nfit_attribute_groups +EXPORT_SYMBOL_GPL drivers/acpi/nfit 0x34d88ced 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 0x02392ded ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x050f5d6a ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x129274f2 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1bba7bf0 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x210a6bb5 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x24f64b8d ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2e881f06 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3710029f ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x411ef0aa ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x42e37749 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x454975e4 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x46afbcbe ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9b27836f ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa31a2584 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xac24fe27 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbb3751a0 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbca47e9f ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xde975387 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe4c9ec13 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe724ed83 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe8d3b04b ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef46af33 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef77d941 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x043a969a ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x064354f0 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x24a13e62 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4370e959 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x478ab68c ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4c59d00c ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6375266c ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x785e8e7f ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa5c629bd ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb703f66d ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc364d2cf ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc5b906a9 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf69795f8 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x5f9afee8 __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 0x440c857a __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x5209fefa __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x70d59791 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x9e4ee1c3 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x17b872f8 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x27ec7780 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x282e726a bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x40a679b8 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5ab20411 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5c1ecaec __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5df93975 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x603a8426 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x607e3bed bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6434489a bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x738bb8b0 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7845532d bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b3a90dc bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8fd90e7b bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa0f237d7 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa490dd73 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb65c441e bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc5324421 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc84eb1bb bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xccbaf152 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd6994f47 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xee8174e8 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf4cda570 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xfafe93e9 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1d7d36ed btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2243db2d btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x51a36812 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x991ad06c btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd099ab52 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xef3d27f5 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2250c0a6 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2b57b04f btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x411c823d btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x477d5282 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4bd590d8 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x786fc723 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8e0cfc44 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xadf5772b btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb3a7abf8 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd84b2b26 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeb0facb3 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xebe89f8b btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0146fc68 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x0502f5ad btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2c5028b0 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2e244499 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x472e3b6d btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4ad2b486 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4e2cc59e btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5584ba57 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x79da5630 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc4fe0375 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd7e1d3f1 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x5bc5685c qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc577dcd7 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x6ebd0238 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x315075f6 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/char/scx200_gpio 0x918c651b scx200_gpio_ops +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x04773b60 ccp_present +EXPORT_SYMBOL_GPL drivers/crypto/ccp/ccp 0x0dacef1b ccp_enqueue_cmd +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x00f27dbb adf_dev_in_use +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0319153b adf_dev_put +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x076d1238 adf_init_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x0a66f9f9 adf_enable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x196f2cf0 adf_cleanup_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x1b1a03c1 adf_cfg_section_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x235caf8e adf_cfg_add_key_value_param +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3dbc0aa9 adf_send_admin_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x3dca0ebd adf_cfg_dev_add +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x48524d4b adf_iov_putmsg +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x49cef453 adf_disable_sriov +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x4c12ea06 adf_response_handler +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5362f311 adf_dev_init +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5b670855 adf_devmgr_add_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x5c46dbf4 adf_dev_stop +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x61e0c93f adf_devmgr_pci_to_accel_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x6ebc8e0a adf_disable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x710297d3 adf_dev_start +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x72b0e6be adf_init_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x74026576 adf_enable_vf2pf_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x749df160 adf_devmgr_in_reset +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x7d074c40 adf_disable_aer +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x899b684d adf_sriov_configure +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x8eb465b2 adf_devmgr_rm_dev +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0x9b59011e adf_exit_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xa1f7a9df adf_init_etr_data +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xad1c0b64 adf_service_register +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xb15969b3 adf_devmgr_update_class_index +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xbe6eb87a adf_dev_shutdown +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xc1c5b0e4 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 0xd02956d5 adf_disable_vf2pf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xd250d46c adf_update_ring_arb +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdd9eac7a adf_dev_started +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xdf72a259 adf_exit_admin_comms +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf31716f7 adf_cfg_dev_remove +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xf9d51cc6 adf_enable_pf2vf_interrupts +EXPORT_SYMBOL_GPL drivers/crypto/qat/qat_common/intel_qat 0xfc4fc8f6 adf_dev_get +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x19466887 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x55e3b776 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x75088923 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7aec37b4 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb448fb63 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x679e1545 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x837c57df hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb235d0d4 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x12744574 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x53b31519 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x80ff01b9 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xd2601fc6 vchan_init +EXPORT_SYMBOL_GPL drivers/edac/amd64_edac_mod 0x653dafd5 amd64_get_dram_hole_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x085efdeb edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0d523e38 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x15994cca edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x19c7ae43 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1e472f34 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x23fa347d edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x28c4ca99 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2e5d896e edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x31afd087 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x51e65472 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x56b5fd3f edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x79384d1d edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8df772b8 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x923695a8 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9a4c8825 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb9e9f8e4 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbbf03203 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc42e2627 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd4fb2d93 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdb92297e edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xdfb6e964 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe056792e edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf23de24a edac_pci_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 0x613330b1 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x75c5722a fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x99a2d760 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9c4cdc08 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xb0d7df84 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc09634ba fpga_mgr_buf_load +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 0xa5e70c51 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xc1abc2c6 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x367656f6 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x90be5f85 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3d7029f4 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x6c7dc5da drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x79b7f94c 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 0x2b9ee6d1 ttm_dma_page_alloc_debugfs +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x600521f4 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 0xa2a0396f ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xce36343e ttm_prime_handle_to_fd +EXPORT_SYMBOL_GPL drivers/hid/hid 0x02fc22b4 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x03d62e56 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x056e97cf hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08c5b638 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0a651b5a hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0cf5ec69 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1494a5de hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x193a8aa4 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x295b6cde hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2ad61c47 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x318bf8f2 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x461ada5c hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x47f3b184 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cebed18 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4dc9c6f3 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ee05c77 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x59d3c2f3 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5bdf2fb2 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e12a7b3 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e553a0e hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6ffa2c58 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7212aeed hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x743d3478 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x76466575 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x79da6fc5 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9042703f hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9f06ea18 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb297aa7b hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb4c951d3 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbc4f7e03 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbef515e3 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0db3adf hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3b37ddb hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xca1cfb10 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd80af74f hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf60278ff 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 0xdddfacdd roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x075740a9 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x538c97cf roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x625806fe roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8e6fe0a6 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc3681621 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc8305cd9 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x01c4bb83 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1bfe93fe sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1d31c82f sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x227be542 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4fe729ae sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5701ac99 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5c742599 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8dd9f1d2 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb3150e59 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 0xeb71585f hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x02e05756 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x185f3556 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x215a0996 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2b6c40eb hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x30e7f6c4 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x383ce12f hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3e733548 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5a84fd10 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x72fabdd1 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7729d7b0 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7fa64515 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9f8b3ce1 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb25ebc36 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbec2438c hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd49a43ea hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0426fe2 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf3bfc34a hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x07ae679c vmbus_set_chn_rescind_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1a25cd8a hv_do_hypercall +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x1f2c9c73 vmbus_get_outgoing_channel +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x25a0a3d2 vmbus_cpu_number_to_vp_number +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31367c58 vmbus_sendpacket_pagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x31763173 vmbus_sendpacket_multipagebuffer +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x358fafa5 vmbus_prep_negotiate_resp +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x458e30be vmbus_are_subchannels_present +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x46a417ca vmbus_proto_version +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x4859efb9 vmbus_teardown_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5bc61e41 __vmbus_driver_register +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x5c60d3b9 vmbus_hvsock_device_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x6ec447e2 vmbus_establish_gpadl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7d976bcf vmbus_sendpacket_pagebuffer_ctl +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x7fe213fa vmbus_driver_unregister +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x86ff5fa6 hyperv_cs +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9cd3e47d vmbus_allocate_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0x9f93cea9 vmbus_close +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc43efd92 vmbus_set_sc_create_callback +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xc8448988 vmbus_open +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xcb6753d6 vmbus_sendpacket_mpb_desc +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xd0a626b4 vmbus_set_event +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xdb2f6047 vmbus_free_mmio +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xea980760 vmbus_setevent +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xeadb5fcc vmbus_send_tl_connect_request +EXPORT_SYMBOL_GPL drivers/hv/hv_vmbus 0xef8a67b4 vmbus_recvpacket_raw +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x334fdcb3 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc774e0b9 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xd3ec58b0 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x124018d4 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x1d01a2a8 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x23602cad pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x258cd0c5 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2b8dbca0 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x413d05dd pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x656cc9c8 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x65fe1097 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7122f067 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x72066984 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x90aec127 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x973adb64 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcea0cec9 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe3b279b7 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xea9b9052 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x59385a3d intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6c26a39f intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x765bf48b intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x885dbda6 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x98b1eb3d intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc1c7874c intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdb27f4f3 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x0ceebd7c stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6207122b stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa7c8fbd8 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xd5bd5318 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf3317261 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x44776af5 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x814b3668 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x9f653c17 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xa8f52aab i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xedcbb742 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-nforce2 0xbce48536 nforce2_smbus +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x0f4ffdd4 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2825e0b7 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x0490648b i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xdce025f0 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe12b1276 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe2cde8d0 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xfe2392ff bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x444f43e8 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x591f6bfc ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x69fad158 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6f281e9b ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7d05249d ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x863f4313 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x891faf2c ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc62e4007 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc89c99bc 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 0x63041c52 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0x6bc03416 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 0x0fac011d ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xceff245e ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0912245a bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x43c8ee57 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x505033f2 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0672334f adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x111637f2 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2593b7ca adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2c121f6b adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3c74851b adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x3e8387b1 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4bc20ffc adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x54865c88 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x63e96603 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x68738623 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8d8f1d2e adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa5bef7fb adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x027867ec iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x170b8a99 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x195cb5e2 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1a2f8fff iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23bc2ff2 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2dd77bb2 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x382e1502 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3a44268d iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3c1ddc07 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x47f6fb83 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x53bb7c1d devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x54edd686 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5564864d iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x692695f0 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7150e034 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x78f16ffb iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7a07d4a0 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x93056bbc devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98645c5c iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9c4dd034 iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9f8a2e48 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6290037 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xad78dae3 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb74531b iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbce987c9 iio_read_channel_scale +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbf1f0eb9 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd762f40d iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe344adf1 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf883d5ac iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfc883194 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfef4a235 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xa455f2af 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 0xd56f3a42 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x6894141e cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x958186d5 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9641d719 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x24a09b23 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa88d1fbd cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xc06d2012 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x026a5b64 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x04d345ff cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x200b0ee9 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x34a8924e tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd14c85fe tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xec8d40ae tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0fb85457 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1206490d wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2021c75b wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2dde81f9 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3062a81e wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x43cde818 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x556e3a93 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x567a0a93 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbb395961 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xca37dc06 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcd7ec1bd wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdeac4993 wm9713_codec +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x170efc26 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1b4351d0 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x3a7cb75d ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4158edf7 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x47424b04 ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5e69beaa ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x66805f7d ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf4cf5eed ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xf9f930c0 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 0x272d65b5 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2d107dbc gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x422fae98 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4854ad45 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x4afe08ab gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x54ebadf0 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x70c1ac5f gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x7aab4a50 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8abe7c27 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9311b629 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xab1a6b4e gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb43110ae gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbd8d7a2d gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbe5c2561 gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xce9aa3d8 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe0b0c064 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfbb0af85 gigaset_start +EXPORT_SYMBOL_GPL drivers/leds/dell-led 0x86fd1ffb dell_app_wmi_led_set +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3cd475d8 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x4617c26d led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x88153fa7 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbb8d839d led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd1f064d2 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xee648260 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x063d2fd6 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3e290bb3 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4169aa7c lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53c1c28f lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x53fc39df lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb0bc0a0d lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb4d1023f lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf5355933 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf6fd2f50 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf823be1b lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xfe6f0c21 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/mcb/mcb 0x158004a0 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x195ec756 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x32478961 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x392130fc mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x3b9f7c62 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x53454d03 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x632780d5 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6c0291a6 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7db33d3e mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9f0f9757 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd0e22d4a mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xdba58482 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe878db3f 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 0x2287ab37 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x23541907 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6210d94c dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6ec2c420 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 0x90484391 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9265abdc dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb1de981d 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 0xcab3b9cb dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xe8630484 dm_bio_prison_free_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 0xbb7096f5 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 0x1dc37523 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x3e2dd038 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x419758fe dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x56e046cb dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb1d1211a dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xd7a2d9ea dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf8ae9756 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x50671c3b dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb0fdb0c8 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 0x2436b610 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 0x5a23a671 dm_rh_delay +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x6efc46f3 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 0x7b195eeb dm_rh_dirty_log +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 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xec8f089c dm_rh_bio_to_region +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 0xfda597d7 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 0x7fd26035 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 0x22761119 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x33c6d72d saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x36bde6b0 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x830790d0 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x85951d18 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x90e80019 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9881607d saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xa453e616 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc8072261 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xec68d395 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x3a480258 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x47f99772 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5a63428c saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x62349cf3 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6a214743 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8c99f0ae saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9fa712ef saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x13c6f6c0 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3426f2b2 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x389d7edb smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3b05d300 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3c818726 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4de92881 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x603b4b19 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x67e186d8 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 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x87afa0be sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9441b0fc smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa1d44b0e smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbbe0a2b sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc8e8d2af smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xceaaa083 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd19b231d smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd1c6fc87 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe3f57cef smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x5ecee84e as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xcf7f6ddc cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x159772f7 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0fbbd393 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x16472edf media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x175f8848 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x1c17cddd media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x1d016ea6 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x22f4ce6e media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x3270f1e9 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x3b399785 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x8d4d59de media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x98d302d6 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xab5043f9 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xb07ba61f media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc1d4243d media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xc513f906 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0xd3d61e44 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xd6a30262 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xe3a049f7 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xeb0d1c07 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xddd551f5 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x16ad44e4 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c85d3cb mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1f06e388 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x22648316 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x31a16de3 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x41b68aa8 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4a152e3b mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5495707c mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x574df75d mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x63180ba7 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a92aaaf mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x75e44a14 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x938a89e2 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9391959e mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xae9a2ec4 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd2ed1d2f mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd6059421 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe2fb5d7d mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf0439c20 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0585726f saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1d491561 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2102d91f saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3dbfdfe3 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x599ffff5 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x63455a04 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6787cea8 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x728fad3d saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8cd9aced saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x96f00c1d saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9c6a7e08 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa49d508a saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa6e807ea saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcbaf0e85 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xce026f81 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd0bfb2c7 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd73ccef2 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xea193075 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xed46a54e saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x450fc893 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4ad92650 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x5b27afea ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9ceb695b ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb023af11 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcbf52d16 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf3e6e1ec ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x44d589fb radio_isa_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x5e1a46ed radio_isa_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x6b7ed8da radio_isa_pnp_probe +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0x735bdf2f radio_isa_pnp_remove +EXPORT_SYMBOL_GPL drivers/media/radio/radio-isa 0xbdf73b8f radio_isa_match +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x29fe565c radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x84356033 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0e6a7650 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x37c163e3 rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4167746a ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x45e6329a rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x49efc4a8 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x501848da ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x524796f1 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 0x5f33e6f6 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x61e23b31 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6ed2cdca rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x753c285f rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x799dbd7d ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb6cc1b23 ir_raw_event_store +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 0xd6b1fe50 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe0126ba8 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb9a584b rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfda3a311 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x71c5b306 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x9737f713 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x1a8cf6b3 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x5935295b r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x5a4d633e tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x6cfa0f9b tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x9fa403e7 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xf23af47b tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xdcde1f61 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x735a7473 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc1d9121c tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2857b842 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0xd79b007f tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xd1222ea0 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x12ab05d3 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3659806e cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x392a53a6 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x455d9e17 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4859185b cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4a236c3f cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4d6dc7ba cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x742cfe42 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7c9d5fb4 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8106b7ff cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8156a496 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8b87bc3d cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8bfe5c6f is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8cce1b86 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa7830b6e cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xadf0ba0a cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd62dee98 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd842689d cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd974c5c0 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe41b557e cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x19178bbe mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x546b2a64 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x08f5b67e em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1c80978a em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1d551615 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e297aca em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x26932a2b em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x27e7a7e5 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2d287053 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x334c65b7 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5fc6252f 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 0x898d6043 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x930008ed em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x94994958 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9e0c9f2b em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbc71a1e9 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcacec223 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe43c47b2 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe94f0031 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf3dff69d em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x05d7a67f 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 0x9f107b2a tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xbb545afc tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc1e0f354 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 0x0aa475d6 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x3edbece3 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 0xbbd96add v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xbf87810a v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe2f3357d 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-common 0xf6fd4894 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 0x2df6f850 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xe2d5cc34 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x021b64a1 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0cfcfdfb v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0e847b31 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 0x1db23ef8 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x2a440e8f v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x467de37f v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x497c6f59 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x508c2cb4 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x52460d37 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6fe25c4c v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73eeed14 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c19f931 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8df6cf05 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8ee5b7e3 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9284a2b8 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xa10f5485 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb562f989 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe14ad78 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe73780a v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc13de517 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 0xca3eeb74 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd14040ce v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd22184a7 v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd4311989 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe951a0e8 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xedaef78e v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf1fa584f v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0106a870 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x04745c13 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0cc3887f videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10318378 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x16264f87 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20105453 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3863df51 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x44aa6a37 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4acbbc77 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d3a00d3 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7079aebf videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7d509ccc videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x805c3845 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x80b06450 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x85d1f0e3 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x98d7f6c9 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9b7f793f videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa03da10c videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa50fee87 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd7cf654 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd95bed6 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd692f026 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd85e907e videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd9a348d5 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x07a7937a videobuf_dma_contig_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x1f3e74bc videobuf_queue_dma_contig_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-contig 0x4cb5a61b videobuf_to_dma_contig +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x033c0e38 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x26ca82b4 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x387f5c60 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6857d320 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 0x13dfec3c videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x199b14ca videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x99966c21 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x129115ae vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x27812b3b vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x41819fe1 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x43b57892 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x461ccdd2 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4e4dc416 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x58df34f2 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x66739be0 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x738f7ab7 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x96a29dbc vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa9a8c4e6 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbdc5ef3f vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc34fea4e vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdb2a88a7 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xddb5063e vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdf2e7346 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe7e451e4 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf80f9a79 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x6a64aa64 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 0xec25a2a0 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x0d72656c vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xc1b0a93e 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 0xe8616174 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x05c7fcc9 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x258e97fb vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x25ac9f56 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3835eb8d vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4700f89b vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4c3ebc07 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x50ca32cc vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x592e43f2 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6221b17a vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6571f58c vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7384609c vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8379cab7 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x84c79fc5 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x88a89f3e vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e4ab2c4 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa05fa68d vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa1ea2849 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa85822fb vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xabe7dad4 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xaf967f5d vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc2259af vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbe3e1094 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc6b81b51 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd1b54b78 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd6f7e9f4 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd7aa3439 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xda9bf19a vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xde43c923 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe57cb7d0 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xeab45103 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf4d13d18 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf8ddda4a vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x3dd4252b vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x014b0e22 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0309a0f1 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x085c1c98 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0d1b597b v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0fe1db95 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1557946e v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x213269e6 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2135d258 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2141c079 v4l2_device_register_subdev +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 0x375d097a v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x50772964 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x671cd8b9 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67cb5426 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69f1fae0 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77cdd795 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7c049384 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81ea10eb v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x82f16606 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8c22fac0 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8d597128 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x93fd892e v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa347ab23 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcb4d5bb0 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcda433bd v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf9f8b6a v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe3195bd2 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf65bf4de v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf7554402 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfc960ca9 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x4d14c6d2 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7dca926f pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x7f02c532 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1e625077 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x47363eb3 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4804a22f da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x941ae456 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa7ca55c4 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa8808ea7 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbbd04db9 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x132416c3 intel_lpss_prepare +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x26130782 intel_lpss_remove +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x400a07ac intel_lpss_probe +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x4a44b046 intel_lpss_suspend +EXPORT_SYMBOL_GPL drivers/mfd/intel-lpss 0x50e37f75 intel_lpss_resume +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x08fb29d5 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x20e29dbe kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x36be5f2f kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3e275a2e kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x480032dd kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x6a9fecc1 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd2a6b4ae kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xeba1d686 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x423cf5a3 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa49cd58a lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xdf2a50fe lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x04d5293e lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x07a182d0 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x7a19995d lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa3aa7f53 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xa682d788 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xc186759c lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf1601767 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x1c1d4caf lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xdd9f76e1 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xeb6e0ea2 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5b17431c mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7bb7ffdd mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x88c43ef3 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x8fb76fbe mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9acbcb9b mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc87e75d3 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x17bc5f37 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4b9473d8 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4f3615e0 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x54cba744 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x61dc1e70 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x6d7ac608 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7a60f3fd pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x94a32356 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe9bbb867 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xeb23dac6 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xec7a8349 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x60d129bf pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xab17e2a5 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x260c5af7 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x3b788141 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6926647f pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9c29a2ed pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc8ab9e78 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 0x0c55b3ce rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0e7e60c7 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x131ce5fd rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1588e766 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x29a42ae2 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2cc8bb5c rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2db424a6 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x390b11d5 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3de93a8d rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3f5f6ec7 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4b362713 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4cb508b8 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x59a8a1f1 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x63361118 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x67219bf8 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x6fb1ecf2 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x860f4a40 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9846077a rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa22845fa rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb39c99c3 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb76706bd rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbe7c8b6b rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe9facdd8 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf850fa88 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x082865e4 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1b6c787e rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x22a3d6d4 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x59502510 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x94ae5897 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb0b68b39 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc2ef8fca rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcb6e10d0 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd20b5a3e rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xdc2f113a rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xed6e3ce5 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf4de63d8 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfa4dfc89 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c99a58b si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24c56909 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2972c65e si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x31361a6f si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a8c5e1f si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x42a68dc3 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x498c8ac3 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4cb1a016 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4de81a4d si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5d8939cf si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5f96cf96 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65062f0d si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68d1e358 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7af644dd si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8feef658 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x907de550 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x94877ff3 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x952159dc si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x98ab6514 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d5a39cc si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa4eb08de si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa5ffaf43 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb2992ccd si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb72791ba si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xca204c29 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd62bf0aa si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd999d75c si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdacb4aaa si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xde76bb43 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe2ddf447 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe42803cf si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf97d59ce si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfb1b8e53 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfc3ee6e2 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x08a2bb6f sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x23e5a2b5 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xa58ab044 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xabe3076b sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xd453ef01 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3e9292b0 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc0f98745 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdce49b65 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xeab3cee3 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x52190f32 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x72a3042d tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x932953bf tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xd8da1119 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x537aa5b6 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x27f9bee6 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xb5294541 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd618d3f1 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xefa9e72f bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5772d7c1 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x85100017 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x88ccccea cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc0b6acd4 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 0x186ef162 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x275b2c46 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x37785e8c enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x4a47e6ce enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x59c79d8b enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x9c57a039 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xed972438 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xfb1b4564 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1272624c lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x14eb561c lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x1ecbdd01 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x875a69d7 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9d26fd68 lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xacdee663 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xec4d3e57 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfc975a26 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x03ad80d1 mei_hbm_pg_resume +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x04c55a27 mei_cldev_get_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x0511df59 mei_device_init +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x18c255e1 mei_stop +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1b9ed87e mei_cldev_set_drvdata +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x1f296c2a mei_restart +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x2820ccc8 mei_cldev_recv +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x28c8bbe0 __mei_cldev_driver_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3bbec581 mei_cldev_driver_unregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x3d166a87 mei_irq_write_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x47f7c230 mei_irq_read_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x48403607 mei_cldev_disable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x4e0b91fc mei_cldev_ver +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x5cecf377 mei_cldev_send +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x631625ee mei_deregister +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x682c2953 mei_cldev_enable +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x717c4737 mei_cancel_work +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x8bc66ef0 mei_irq_compl_handler +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0x9ee560d1 mei_reset +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xa54d7dc3 mei_cldev_uuid +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xb4e61e3b mei_write_is_idle +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xbc721f8f mei_hbm_pg +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xc3c6bbcf mei_register +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xda27124f mei_fw_status2str +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xdbc34952 mei_cldev_enabled +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe29281cf mei_start +EXPORT_SYMBOL_GPL drivers/misc/mei/mei 0xe3518b52 mei_cldev_register_event_cb +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 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 0x69e9b72e vmci_qpair_peekv +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 0xc3fd309d 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 0xe7e7c107 vmci_doorbell_destroy +EXPORT_SYMBOL_GPL drivers/misc/vmw_vmci/vmw_vmci 0xe9397fe9 vmci_qpair_enquev +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x0a4b6ea0 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x101a0441 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x19d874fe sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2555da76 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2cac61b5 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2f8b99b9 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x87bf8af3 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x974b8ad5 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x9a41075c sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb30f8ddc sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbced4303 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc43289bf sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe4c4b495 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf85a2200 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2b203070 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2fc883cb sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x478c66be sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x53ca7fb6 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9240c052 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xc40eec65 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcd9c0d37 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd2063686 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xeec899b0 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x168ae939 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd4bde947 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xeb94ccaf cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x0b72c92f cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x86d94d79 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf88b06a9 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x65c738dc cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x425b230d cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7d2952f3 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8341b02f cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0096bf93 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x03426ecf __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x09f4e149 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1029087b mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1dedddd7 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x257e3764 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x444ba1d6 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a47cbab mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52c5bcf2 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x55dec486 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5656f070 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a6ffa11 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5b253c42 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5e983454 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x617ad917 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x71d95734 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x75a1d06f mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8119b4bf mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x822ed5cb mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x86d6ad19 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x892a7370 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9288d48d mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97c804ec mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x98b4ea1d mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa0087036 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa99da589 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xab66be8a mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb5304340 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc686611a __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd1528beb get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd301cff6 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd9aa2207 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xda65a032 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe0acafe3 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe31c6dfa put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe36334bc mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9ee5ad6 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb4e7e57 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf3285283 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf66b34f2 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf8cd786e mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xff98f39f mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x25a491a4 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x2eb08ea4 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x39ddbefc deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xae6667ac del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xeaf2ed30 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xe7cea456 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xf963b97f nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x7b863db8 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x38b1d724 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xeb9a9160 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xda8508cc spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x07623f6c ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d4408e7 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1165693a ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x36989047 ubi_open_volume +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 0x6078690f ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8616f91c ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x87b6bc0f ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8b3e0047 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8cecf0ef ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x961630d6 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa6655597 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdde6b2b8 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xed3fad63 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xfc0ba866 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x69f4b646 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xb49b7b37 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x27b005b2 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x79ea4978 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa445ce94 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xba4a25de c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd791607a alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd81b3d43 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x074fc0eb unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x17938a6e safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3a37d8c2 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x41a76128 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x434f305f can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x59a702d7 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5de2a2a1 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6947fe24 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6a25e2a2 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6cb42554 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x768857ba close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7e6fcdc7 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x97457a45 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa61f8c78 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc4446663 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xeab05044 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xeab9a58f alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf4fdf101 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x069afdf0 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4fea19b5 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xdb408b97 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xfacd2cc9 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x7c862597 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa9bf6269 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xc5350575 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe6be994c alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x02bb3bcb mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0482fb13 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05f15565 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x061f422e mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x093b3ea9 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b8a5462 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f99ab1a mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0feb9a78 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11260ea5 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12ffa061 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13eb7211 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x148bd279 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x164ed4c4 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19ca4628 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20a533de mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2279b05e mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x258490ae mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d4de8ed mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d66ecef __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2dd5eb31 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30254201 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31f96e83 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32a70582 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34c1bc7c mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3787160e mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b0b9722 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f299340 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42987a9e mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x439ce6f8 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44773d2d mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44b26d5a mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44f71a53 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4504ab23 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45fa8492 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x463a4ab1 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a13683e mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aa79fda mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4af1da2b mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c69e095 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c8ad6a5 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5061645a mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x510a3e8e mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51d548af mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x522f3f9e mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x560d84dd mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x56a7b1ff mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e918eed mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x620987ef mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6381feb2 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65ada33b mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d27be1f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e26a593 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e560a68 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6edb3553 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f3f101e mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x704306bd mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x752a82dc mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75a1433a mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x76a25bd0 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x787baf16 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ae9c4b7 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c447231 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80c800ba mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x81e51530 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82e11c73 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8350a6c2 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83c9baad mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8544e5fe mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86f95812 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x899a0fe9 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8c812081 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e1000d8 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x915b0970 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9243a2b3 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x937d97c7 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93984e65 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93afb44d mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93ed2754 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9439697f mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d50f84a mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d6d4223 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fee94d4 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaafc9bfb mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xabb93103 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xace0b999 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xad8d9da4 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaebfe962 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb37c1152 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb37c63c1 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb44d4fe2 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4dec89b mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb6b6c536 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba2a2833 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbd6d43a7 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf9478dd mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfeb5eb5 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc11e3b4c mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc62f3d0d mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8eb2b14 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca10bc73 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca60f847 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce4c95f1 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcffc9a93 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1eb608d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3234800 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5815b67 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd824b0f3 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda6170c7 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda6fddff mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe08f4c18 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1416d6d mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe22ea73c mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe31cc4ad mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6ebf299 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7ced3b0 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedad5a62 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedeed7fc mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0716920 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf099489b mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf1ace214 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3a65a88 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5816e22 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7d1d6d2 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff19794a mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04ebae21 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0745e9d0 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 0x0999045f mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e848de2 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1b75ceb3 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1dd4c82f mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b009183 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b4f440f mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2bcd24d3 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e901c88 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x300aa67d mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40ca7186 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45263f76 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48ec0f69 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4b2d1826 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d31b877 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x53739ecd mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5ed130d7 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67e3b995 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6b52a255 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c2fecdf mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x718d81cf mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7781e568 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7bd1104f mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7efee1f1 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x84c5cfe9 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x89a9c797 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x919891f5 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x91e04b89 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa05df7e9 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa1243548 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa93e48c8 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab7def80 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb67a4495 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb858a440 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb988b616 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbafabbef mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb68259e mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf86eca5 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc5ca06a4 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca05ea10 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xca6ac541 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1771bb4 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7d89f99 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xff5b87b4 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1a581115 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 0x0487e188 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x0b35c89e stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4da34c5f stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x62e26208 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x5e9e6704 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6eecec71 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x6f361122 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x7b0e17a6 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x162f44de cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x390bce15 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x44801b74 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5775ba0e cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5fde764b cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7ffd973e cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x81e33925 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x81ee65b3 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x97496232 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xacc0dcc5 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xb410b17b cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc90f71a9 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd1dadb7e cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdaa205cc cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe07f73d4 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/geneve 0x33cdeb9c geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0x92f9ae85 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x43dcd1a9 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6019898c macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x86c33fcc macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8bb7a023 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x5cbaacb5 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1306a122 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x194c855f bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x27c3f088 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3be3de70 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3ea7fc3b bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x79339d5c bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8b6b973f bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9538c3ca bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb4479bfc bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb58dc0e4 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x161664af usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x474eb89e usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5e00d2ea usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xba4bc144 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x026b6a03 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1e59607f cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x29e0effb cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4796fbb4 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5f01c79f cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x88bafdd2 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xafe37562 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xec7b991e cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf0c2114c cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x062409b7 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2069aba3 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x58d08278 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7d639bec rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xca2c0b42 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf4b1b802 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0bf3be11 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1235d931 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x129b5a86 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2407dd1b usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2cf755a5 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x37e960b3 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f208e08 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x58e9fdab usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b88c367 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x63847af0 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64987f5b usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x64c27085 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6b01ad03 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x718f99ec usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7427edb7 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7565396f usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7e69c8ac usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9538dedb usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9ca47e30 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb0995777 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb3c7359f usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb9d2d728 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc2598d87 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcc3408cc usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcd2f2f6e usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xcf6689b0 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd456c4ea usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd8ed3249 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdccc7c61 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe233db68 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf03ac0cd usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf68041a6 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3b418ecf vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xc0b98b59 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x07897141 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0df9dd70 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3584ae9b i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x386a6e82 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x44af716b i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x463eb27e i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x50e68276 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x600a40e9 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x86e5b7dc i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8bc4ba19 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa3b7cd20 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa8dc37b7 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xabb68d97 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xad0c0ed6 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 0xd2d8152f i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe1d722db i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2a88a346 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x3a6e6549 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x444c4dc2 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x88f3b1c9 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x41b0ce95 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x1c645810 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6fdc70e7 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x93e83ddf il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x98d41656 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe67188ed il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0a8cd24b iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b074767 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1fa9c73d iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x249ed498 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2e6c12d9 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3a50b94a iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47929f4e iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x47a233cd iwl_parse_nvm_mcc_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 0x53bc733e iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x56551daf iwl_read_direct32 +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 0x68eb2508 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x69dc5259 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6f4bddfd __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x894dd147 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8ef23be0 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x931e59ef __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x98c66170 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9b35a946 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xabff73d3 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb127719d iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb8979af3 iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbc5d846e iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc4a8fc91 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xcab975a7 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd49b4b3e iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xdcebcb4b iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe9cb9571 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf745d62c __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xfe196b1e iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0225b5d5 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x22dfd821 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x393ec550 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x6184fd03 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x622d0ffd lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x66f59f0b lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x99219aca lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9bd74c89 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9ca34e07 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9f2cad53 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa441765e lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa9eebe18 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc3440169 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xcef868fc __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd6f49e15 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf03350b0 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x09babf48 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2dc33595 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x389c89d2 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x6af28870 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x8db8d897 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb486f3e0 __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc1540a39 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 0xd38de0c8 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0ad992c7 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0e4ae354 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2206b312 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 0x3a597244 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3d313f22 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3fb843bc mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x598f5b2a mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6018ed6e mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9db1f993 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa3f6ccfc mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa4ea03c9 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb769698f _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb93b30f2 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbe59930d mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc1a12f76 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf7e74558 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf98c5692 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf9dd650e mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfe56ca91 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x07934afd p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x29357f23 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x71e21e3e p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc169b417 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc9bc07c9 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe86375d1 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xeb577763 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf55756ae p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf9b0c86f p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x39087936 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d6fcb83 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd50dedc2 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc17c7fa dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x03615526 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x040c5db4 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x154bdef0 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1b3f7c18 rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x29157a24 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2fe062a5 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x48efe1c7 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5703d977 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6291bb12 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6c0df127 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 0x7df54af6 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7fc3cf91 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x89982f66 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x97c2dfa8 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9b8e2307 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9badba15 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa020831c rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa7fa4949 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 0xc0c4ff88 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc5f70279 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd6d73364 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdb48871b rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdd5bcf42 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebba657b rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xee6d882e rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfec57d3d rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xff898979 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x01342165 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0a6e5e4b rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0bf4337d rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12e933e1 rtl_recognize_peer +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 0x3c62b94e rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47609f3b read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x61970897 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6af36eb3 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6f7cd97b rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x74856335 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c3f847e 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 0xb464f324 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb6b187d4 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbe7be84b rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbff6dbbf rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd7d1d427 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xda0effda rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf02162c1 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf48ab261 rtl_deinit_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 0x4d2915d3 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa572ed82 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xb1ed2d1a rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xe9742551 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0e616600 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x11f128d5 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x14a5a68d rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2b2e172d rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3336c945 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x346a1f50 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3b1d6d94 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x41ccb9da rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4f701dbd rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x539ae429 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x571dc5e6 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x574fd6c2 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x59e50d0b rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6632ef46 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x70bd8f76 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x74d8e064 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7578e92b rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x769f1eca rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8be7674a rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9215c419 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x93e9db01 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x981c8155 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9a706fd1 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9fab01c9 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa54d8163 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa9957868 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xae60783c rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xba07de8b rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc13a23f3 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc6d1a2be rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcab36a6e rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcf920e62 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd1fd795a rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdbf9d632 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe09b6e32 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf6cff646 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf7ca5e2c rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf95afc87 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0bf615cb rt2800mmio_queue_init +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 0x3cf607ca rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x432854ad rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x4c71d514 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa55ab8 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x62ea8244 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6eb11910 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x784cbbc3 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7cccb394 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xabe68163 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb7a73cc3 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc2e9abd9 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 0xeac43c8c rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x128f4821 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x18c4fd02 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x18dcf100 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x20c5ea81 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x25dbbc93 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x27da2b7a rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x30806815 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x37f421eb rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38a6b6a1 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4760d3b6 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x486c8126 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ca03f34 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4fabafd2 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c2962e2 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5c54cc8e rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5e505696 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5ede2143 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6657a824 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x679375ba rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x67d135d7 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6b7bbb65 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6f7dbb83 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x818fb304 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82285759 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8386f939 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8d7db309 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x905be9c4 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x95f9a858 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x978716b2 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x999e397d rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa08712e3 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa3cde959 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xac8c9d04 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xafff45a6 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb2908884 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb607b08a rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbb7d74e0 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc21403d1 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc79f43ba rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd9318c46 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdff58c72 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe5808401 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xed67617a rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf099ee31 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf5106473 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfcc08e42 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x51b2a590 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x546ed205 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x7779b9ea rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd1873f9a rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe3d58dc4 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x21ce17aa rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x32b69870 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x3eaa2378 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xd636462b rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0880e285 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x08f1f8df rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x091f47b7 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x25f8f24a rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2d52fa98 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x35e7104d rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x45e0ee65 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7d26261b rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8608427e rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x93aa6dc0 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x9bd032ca rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa816f05c rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xab162fbc rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb613fd9f rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc672986b rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xef7b4ea7 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x71e54983 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc043531d wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xeec3eb43 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0224b262 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x085fb5d8 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a7e04b1 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a91ecd4 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ce801a4 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0e2e1a54 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0eaf0fe5 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x111035f7 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14fa72e8 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15874c89 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x18cbbccc wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x192b3783 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x221977c5 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27538d89 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2fc85842 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32b3993d wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x32ce774e wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33d519b3 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3509ab5c wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6747aa07 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x679d4c07 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6acd0aed wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73108185 wlcore_boot_upload_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 0x816905c9 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x81e1f0b6 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x82722609 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8510c7ac wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x88fbaf7b wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c0bc7ff wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8cc17898 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x97346ef1 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99b3de56 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9ac15c9c wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xba3647e3 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbfef1715 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc202ed83 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcac1d9b9 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2303d0c wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd971d626 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde6ea66c wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe263f9ae wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf3b514e2 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf8ea90e2 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfccf071e wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x4c4a67de mei_phy_ops +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0x76fd5514 nfc_mei_phy_alloc +EXPORT_SYMBOL_GPL drivers/nfc/mei_phy 0xd9157e42 nfc_mei_phy_free +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x37dd4e61 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xeca920bb nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xee1630da nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf753bd37 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x237f1069 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x31bba73b st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x34c1f8bb st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x56473f52 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6da97628 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x853cc08a st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb3700e06 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb549ea4a st_nci_probe +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 0x6c3004b3 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 0xb29537ea 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 0xeeae94ff ntb_transport_register_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 0x19ae78f4 devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x26c5ca1d nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3be52d13 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 0x6254b6f6 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 0xaea145d3 devm_nvmem_device_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 0xe5bc8e0f devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe9a7fe16 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x2a7d355a intel_pinctrl_remove +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0x829e917b intel_pinctrl_suspend +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xbde22a73 intel_pinctrl_probe +EXPORT_SYMBOL_GPL drivers/pinctrl/intel/pinctrl-intel 0xcf26d16d intel_pinctrl_resume +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xa75bb358 asus_wmi_register_driver +EXPORT_SYMBOL_GPL drivers/platform/x86/asus-wmi 0xeb15e7b5 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 0x286b117d pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x31af6b43 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x610e1388 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/pwm/pwm-lpss 0x2056a76a 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 0x12e2c626 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb3a7e532 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf236c91d mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0c0c91d6 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x600f3a1d wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x79d180d9 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x83d587d7 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xdd202d06 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe720c9b1 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xb02ae765 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x08697653 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d9b2b35 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21758456 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c405d4e cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2ea2b418 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2eaa62ce cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3570a430 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3de833cf cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41bf3376 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x442ae14e cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4507aab8 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4db58123 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5824168b cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5a2f94c2 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x607389f2 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6561bd88 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x691442f9 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6cc643b2 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6ef34469 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f7f3be4 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x76926f9f cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7c709e64 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8002300f cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x80876c72 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x829b792b cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8552da4a cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9800d3cf cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa08cad6c cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb658cb12 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6e8a015 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbc1503cc cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbcac0dfa cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd83f5a5 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc4de7272 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xceb4d1ca cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd346a419 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd539f246 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5590b70 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xde63016c cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2ad3b53 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe645658d cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe72f27c3 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe87e432a cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeafcf68e cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfb0edd97 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfe38df23 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x02f2df36 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x080139d8 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x27e16441 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x35ea7644 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3b13e541 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x45392054 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x573e3272 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8b3a8649 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9038cc1f fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9a31253b fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9c47a639 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xaccbb679 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb224fc89 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb74a218b fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xde960e4f fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe4b97ff5 fcoe_ctlr_device_add +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 0x0d608d20 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10325e8e iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x10373c98 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12f1a320 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x140abc01 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d30bf19 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1d82460b iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e18c979 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2ffd987a iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x305aadad iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3332f5ab iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3356a1b4 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3abd4f3c iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4580a16b iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51135822 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d9fc171 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67c84c5c iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6a76940f __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ceb67bd iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d49cd50 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6f8b2460 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b2b893b iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84667711 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x89bd59b0 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x992bf3b6 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa36fb3f4 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad8acb0b iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbb2e4e45 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf136eb8 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc0bb1375 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc2e11105 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcfd69510 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd489ef19 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd55d025e iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd566b0b5 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd700162f __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd7d2a2f9 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdd56e134 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdf3597b8 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xed9ae4f0 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xee10a3db iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xef2c58be iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x10c742f0 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x329a6250 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x395a2b89 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x55e33543 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d1540c4 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6d7a5cf6 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7545f058 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb4ea5ae8 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb6875379 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb90872e7 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd2fd12a9 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdeb243e1 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe9fe6369 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xedb5a2a8 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xeea2a4cd iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf2b97676 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xfd2b4975 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x00dffd52 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14fd2c78 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x201e315c sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x215d1221 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x27afbfba sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2d7a027b sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x387f2aee sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6320a00c sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6a529aa2 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x712be3d3 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7e121eee sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9510b500 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9cd6378a sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae0b9922 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb1a5c8e2 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb1bcd39c sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3729128 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb58c56ad sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc459abe4 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc98b8041 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcd4a124e sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdab4134e sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb9c522d sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc391e1d sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0d9691a6 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0f5393b1 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13e54168 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a9e4fb7 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x403e1ffa iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x427f3bd2 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4759f431 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4887b4f4 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4ada2464 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4db85efc iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x52fa6da3 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x584d329d iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5db571ea iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61d0d440 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6226b0b4 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 0x6db0f0b0 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6f17494b iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6fee6173 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x734d0f5f iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7a98e5d4 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7bf97ebb iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x858a140e iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x86743e58 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8d8e60e8 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa04df28f iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa4dfbbf4 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa6804588 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaafbae3d iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae81c8f3 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2b056d1 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 0xc7f50766 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcea3d914 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcffe6684 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd1cf35a2 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe423457e iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf01d6d1f iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf111a4ed iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf2323245 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf63c7f0f iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf8fcc641 iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x27f2eec7 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x78444d8c sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x902aff9b sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xb18607c5 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 0xaec032a2 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 0x1bfedef9 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3157c884 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x474310f2 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7816ac2e srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe256ddab srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe5c6df8d srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x0f666a6e ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1ed281e8 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x20330a8a ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7cc5ad48 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x97d2fd51 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9ae06c4d ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x9f8098e3 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x013313db ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x02c1bf31 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x24f772ac ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x3e4fefb9 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8f8ddc4d ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa24a44a7 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xaaa0abf4 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x0c8b3513 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x450866c0 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x627a35e6 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdad8caa0 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe7f7f9b1 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x08f54e47 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x54d73094 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6d6877ac dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xb0f00fcd dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03296823 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0359d468 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x09cecd2c spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0a5f53de spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x178668f4 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x82bef7a0 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x88775640 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa6340e2b spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb153ceb3 spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb721d720 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc37d20e2 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc9a8c736 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xcb1030fe spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdce93caf spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea0eafbf spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf0d7f825 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf3c0e3b7 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf4ff99a5 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xfd635511 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x020916e4 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x039fc1e9 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0c2fae71 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e231dc8 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x151562e9 comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1b2654ab comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x1d0d8493 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x251de03f comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x37f10a31 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x45f3f9ff comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x46912d54 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4715fd61 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4c596578 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x504bdc6f comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x518f1914 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x54907a01 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x55f7d124 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x680b1ca2 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f279ed2 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6f9db1c2 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7407c10f comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x777d68f2 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7bfc4d20 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x83f93b38 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x924b2914 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x928a5981 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9f5df822 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb164cc0f comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb1c34ec0 comedi_nscans_left +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 0xc598482c comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcaeba708 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd8ac174 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd1e4f581 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xed3e14d2 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeeb1a771 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1df12d35 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x746585bb comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x812cf0e9 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xad7eb1b3 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xca19c028 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcccdf28c comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf712cc3c comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfab3de2a comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x24f74be4 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x3419eb56 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x86d1edd8 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x93c803f6 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb1644c72 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xb70949cd comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xdbd4186c comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x06af376f comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x50588eb9 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x63734eae comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6c5eab1a comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xbc60f7db comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xd7c53757 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 0x7c1aaa06 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x392ed71c amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xcab6eeb8 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x60ff23d6 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0251266a comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0d95fc6d comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0ef13ef3 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x109f44ec comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x27a23895 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2a8dc09d comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6e09bfce comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x88811810 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbbee69c9 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdb3b9f7a comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe1203b36 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe4b8e8a5 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf221945f comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x401c9366 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x48d9f39f subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xaf266fb5 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 0xde4c3a3a comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x316c906a das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2469b6d6 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2be53348 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x39c18ea4 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3aea31b1 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3d2330e6 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x43c06e31 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x474c7de7 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4dd4a213 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5e2db58d mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7e819ddd mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8d275a09 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x987e3a9b mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x99253ee0 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa17519cb mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xae558767 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xafc23039 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb149a4fb mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb64ab053 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe0316e7b mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe8d41bb1 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xfde2badc mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x30412266 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x75fb94c2 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x526a44b9 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5b11bd10 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x70b680eb labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xe45d7d43 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xebcf016e labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x43d29bee ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x50383d53 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9d5e729f ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9f07fc88 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb73e697f ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbe53db44 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe9c2e73f ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xed06cb40 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x0957b827 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6a6dc39e ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7cb4bb5d ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8e77b141 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb42cd919 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xf4f9ba0e ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0f97c6f1 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x33dfb54f comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x9dedfefa comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xac064bcd comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbcb33a9d comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbe92ae1b comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe0729ca8 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7e33cb33 adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x03fb829b most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x07e11ef4 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0cb239e0 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1bd1d516 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5a6c955d most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x66baf39b most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x92d05c67 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x94595898 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa683c52d most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xba369278 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcff69b3e most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf445bb4c most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x07829c0c 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 0x17c322ad synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x1ebed796 synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2ab8daa7 speakup_info +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3c42c100 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 0x6ae859e2 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x73114e5f 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 0xa6e02e33 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xacb31774 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xb2cc8aae 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 0xbc30a8e6 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 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 0x5cd91689 int340x_thermal_zone_add +EXPORT_SYMBOL_GPL drivers/thermal/int340x_thermal/int340x_thermal_zone 0x7d13c960 int340x_thermal_zone_remove +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x481c725b intel_soc_dts_iosf_interrupt_handler +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x8f4a4682 intel_soc_dts_iosf_init +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0x92f6f4cb intel_soc_dts_iosf_add_read_only_critical_trip +EXPORT_SYMBOL_GPL drivers/thermal/intel_soc_dts_iosf 0xdf7c241d intel_soc_dts_iosf_exit +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x20dd7cf7 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x5b7a4176 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xe4700fcc __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3293b446 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x59aaff5b usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x8541b4a6 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb92dcb93 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0ffd1ed6 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x3067cc60 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x5157c4d1 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x75114198 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc108a270 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xed9df4a2 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x070b15df gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0bc1f398 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x36fb970c gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x423e1147 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4f90bcfb gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x622ab2bb gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8bb007aa gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x952cc28d gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9c988921 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb9631fdf gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc8cbf62c gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd87b9e8e gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd9924875 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xea73c589 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xeedd9430 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x2c426151 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 0xd4b45d96 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x67bebf82 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x9bb2b847 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xec97a1f1 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x048a5b0e fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0973f7f3 fsg_show_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 0x175d92ef fsg_common_set_cdev +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 0x1e5cbcaa fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x237c7d1c 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 0x381fbe45 fsg_store_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 0x423845e4 fsg_ss_bulk_in_comp_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4316a2c0 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4341f510 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 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 0x9a5489eb fsg_store_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 0xd3745fcc fsg_show_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 0xd7123dc8 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xda7ea422 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe5ff4d76 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_mass_storage 0xfe54015c fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xffcef0ad fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0d4ab66a rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x25e9a002 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x2eaf63bd rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3820a32d rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3c42fee0 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x68c63bfe rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x82a9d6f2 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8b1a85a8 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8fac8ea8 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9ace493e rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa3da9855 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcf8155f8 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe851e4dd rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfba63668 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xff3b45e3 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0eec4058 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x18fd49bd usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1cf99110 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x27d58287 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x288f856e usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2a3e92fe usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3571eacf usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4a45ce3f usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4f00e258 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x53236ced usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x56105a07 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5c90c519 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x711b7289 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80895fe3 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x84e11f2b usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x923fb514 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x97eece47 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa4233f4c usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa52e985e usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb4b32d28 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbb7c33ae usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd05ea971 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe0514d58 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe186323e usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe9a63030 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed53dd90 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xedd85cd5 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf4b0b760 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf84b2138 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfddbe3b0 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1baa9a85 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x46e9cb3e usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5470592e usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x559886fc usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x56354591 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x573024dc usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x74be8e75 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7a23b6fe usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x7e302d25 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8a726a80 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa3b493f8 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 0xe2cb1370 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xebf5bc84 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x12e6efc4 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x32caee09 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x324c146d usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x60b52604 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x67241d28 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7a04a82a usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x86f039f8 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa7d8489d usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xadb6359e ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc9927b8e usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd124c5de 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 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 0xddfce3b2 musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0xd7bb5402 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xd5109edc usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x13adcbdd usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1931dbbf usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2b9efd7d usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2e9d7a81 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4476c36f usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x538f0540 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x632b2ee4 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x68073439 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x689da8cc usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x85ff73b5 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c5bf96a usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x937bbadb usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa01b8eec usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0bf6acd usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbab8b63c usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc7589161 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcff3c80f usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe0402d01 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xede027af usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf5e4f2ab usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xff70f789 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x04b907c1 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0666cc98 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x07e3e89b usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x14823cef usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x198aef31 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 0x1cb4382e usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1d954652 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1e8716f5 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2fdce12a usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x33adef5f usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3573375a usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x373aa567 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4af7baff fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x54bca4d9 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5ea5c1c3 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6ba0c8d1 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7396363b usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x7430a47b usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x80787ec4 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa7c2dd15 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc0c82614 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd26d7214 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd567f690 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf4bd4653 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x066fbcba usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x072fec65 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x07da6144 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x32823d1f usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4b5320da usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5a9b42d9 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x76d8449b dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x957a9ec1 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd4830fb0 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd6ce2776 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xeba6ddc6 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf90d422b usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x0f784c5a wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1661ad2f wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x31eeba15 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x398d4b4b wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x7fce7bf4 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb331d59e 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 0xf4037d0b rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xf4654c3f wa_urb_enqueue_run +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0092ed9d wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x1caca6b5 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x20b927de wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x38feae1d wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x519872fd wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6160ae57 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x85c1260a wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9355a0a9 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9e4774a3 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa7960b19 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xae8ed489 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xaeec089e wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc5ad5909 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfc01e3ff wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x5072dfc3 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xaa425f1f i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xbbb4ee75 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x038a33dd umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x044613eb umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x56e34d26 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x67a0a028 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x82a35ae4 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9934bc8b __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xb6ea2dc4 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc48a962e umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x004f98f8 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x035d1d5c uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x125789fe uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x15e881b1 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x26c06fc6 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x26d25bbc uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2a29d1b9 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x360f7bb2 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4a22de51 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4dbb5dd7 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4e955b26 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5a035c1a uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5dbb0c5d uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x64a8de84 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x64ad1727 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6a654ac7 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6fd83978 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a5aa497 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7a99e2f2 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8d3bb91a uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8d818004 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x958ed782 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x96d8c7f1 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9f6bc807 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb2c0b63a uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb88a98cd uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc51060f1 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc7c51c0c uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd906ab4 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd4b400ae uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd586e361 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd6e6bb18 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdb660a85 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe83ce8c6 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xecf53f6a uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xefc69fdc uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeffd2fed uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xcfa73623 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x07239277 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0b57345d vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x2738902a vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x390ec981 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x452711de vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x7d9a0477 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 0xa5931bcd 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 0x1ab6d8cc vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xc3b4ea45 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x03569ff3 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x14165f3e vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2676c847 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3cde1f91 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x47ec5956 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x483ceb97 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb96f77 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x612bf9c2 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6604acb8 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x68b77556 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6a45360c vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7043d84f vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x704d51eb vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x71fb334e vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79cad478 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x875c7cd2 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8807c15d vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91e72fa7 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9b3873b7 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa09b590f vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xacc07499 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5161bf7 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb593adc4 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb8ae5d85 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd246fbcd vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xec1c78b7 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf6a53903 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa647780 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfa689f0b vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe10de1a vhost_log_write +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 0x2ff2fccd ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x72ff34eb ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7991de36 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc0f8d525 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd4dd6dfd ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe86bce62 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xff5bd2b0 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x0a65f87a auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x20ebea66 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5733b04a auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5879abc4 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x5b97ef61 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6e45ed73 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x995e9aad auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xaa847e18 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xbe7e715e auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfc0d89ec auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x947b4c85 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xd1693624 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xe272a352 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x585c4cff sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x67726f06 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 0xf8c4c92c viafb_find_i2c_adapter +EXPORT_SYMBOL_GPL drivers/video/fbdev/via/viafb 0xfff2dfd2 viafb_gpio_lookup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1c7cbe29 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5095f4af w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x59296bf0 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8bd4769a w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8f3d6fc5 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc9ab2162 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd97b9110 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xdf6de07f w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf679c25a w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/xen/xen-privcmd 0x546a7ae4 xen_privcmd_fops +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x4d2b458b 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 0xee45e7bf dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xfeba8833 dlm_posix_lock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x186885c6 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x1c3bb0c6 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x2e312a31 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x946eb181 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xadbd736f nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc7cba459 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf4bec45e nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00482bbd nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x017081b6 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0334fa1c nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08f226b6 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c2ca84d nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0df286b5 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x112aa254 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x135cb05a nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16c90a0f nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x180fcaf4 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18c00423 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18f47d82 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x19141faa nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ce69b6c nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d104b1c nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d2eb038 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d640760 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e8a2b95 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x203f455e nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x218c7b73 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x230c0478 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23d23459 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2460c2b8 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24b0354b nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x24e19fe7 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2562436b nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2aa09eae nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b103918 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bbc7052 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2ce2505d nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d8584a9 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3093eed1 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33955d08 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x362f7b3a nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x365b5b96 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x377149d2 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x377cd4f3 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a1cfdbe nfs_post_op_update_inode_force_wcc +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 0x41e8c306 nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4483a2cd nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47a66dc0 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x47e4a779 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x484dee4b nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x489a3518 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x48e88491 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b66dffc nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c27bfbf nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c5d2925 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e6ac6fd nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fc97d90 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5005e4dc register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5454ef42 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57f22c51 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a3f4f24 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5c7b2a4b nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6193779f nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61f60c6a nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63485fe0 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64a32387 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64d5cb8f nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6822ba58 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68f19a26 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f64afb4 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x728c7cdb nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x758829eb nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84be52f5 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85c7b4cc nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8607120b nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87713f7b nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88be328d nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88cae393 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b246f5a nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8b8e597a nfs_retry_commit +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 0x92d0d89a nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94c02d41 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9573773e nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x97da0d39 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa251e45f nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3d03f8f nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4ba10b5 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa584ef33 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa7ac66a nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xabcb42ca nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaee1a0d1 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf8a2c3b nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafaf9cc0 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb078382b nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb32dc0c6 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3e8cb81 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4a037da nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb616a2b1 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb6591d64 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb770d4b3 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8f8e66e nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0584c8f nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc1b29e58 nfs_create +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 0xc797156d nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc803768a nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8c706f9 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd202ada9 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd24d5a7c nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd254fddd alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5ede753 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6687d6a nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd735b8a3 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdda0e039 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xde253190 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe26c01f0 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3339ea8 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4b3fb03 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe54d3b39 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe61d4744 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe634e684 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6d6e26f nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe70860bf nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe87fc9f2 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea71c0ff nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea7cae1a nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0553daa nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf696f8e8 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf6e5bf11 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7672333 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +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 0xfea64b94 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xaac25f78 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x056d0a8e nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0981b900 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0b7a375d pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d63edae pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x11437765 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x130be66c pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x15429da1 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x157fbba0 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x191300bb pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1b58e2fc pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20cfb8f8 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24340542 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2b3291ca pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x307c016e nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32648aa1 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x33c592e6 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x353f88b6 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x407b772f pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x432e2200 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x47a4f666 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5584369a nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5879e38e nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x592e4707 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x630d1692 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x650ac89a nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ac8e898 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8642e163 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c840eb9 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x90b75e01 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x916530f1 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x92ad3de2 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x971281be pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9bdc38c7 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9da67f24 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa4952161 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8a2fa11 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa93db742 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad8ea026 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5f26765 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb92fce97 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbad48955 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc250ab84 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4544c2d nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca5cfe81 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca764150 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcae2ad93 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbf5718f nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf202c09 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6d0bdf0 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda621e0e nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1b70fd2 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe2b5117c pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0b922ea nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf398faf2 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3d8cfd9 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf90bccab pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfacfe944 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xff87b8fe pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x4f171d9d locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x6ab90462 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xbbca3a83 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x692f340f nfsacl_encode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6d554823 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 0x1e278339 o2nm_node_put +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 0x81ac2110 o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x82768d09 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x9da6a0fd 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 0xae808bac o2net_register_handler +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb0586824 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xb47106a5 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 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 0xeb4dbc9e o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x16d51ca2 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x33ba8cca dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x78eeeab0 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 0xb9f033ac dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc3c3ab97 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xcc747d90 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 0x5da4af03 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x99156399 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 0xaa97af43 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 0x3ca3a9f7 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 0xb15691b7 _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 0xf6d34fb5 torture_kthread_stopping +EXPORT_SYMBOL_GPL kernel/torture 0xfa7d4600 _torture_stop_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/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 0x2ccae821 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xc0b9ef85 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 0x0e2b5ab1 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x2c86d5cc lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x254077a9 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x37d70fd6 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x5348f18d garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x56e408a8 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x6faa439d garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x88552101 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x0c7f258a mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x3e3c609c mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x559fe76a mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x95365fe7 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa79c7a82 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xbf03f0cd mrp_register_application +EXPORT_SYMBOL_GPL net/802/stp 0x2abf5420 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0xff2e1d4c stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x900ec10a p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbe460b4e 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 0x2146c0dc 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 0x0a9ed4f4 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x57bd2c96 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x67925497 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x6e027611 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x83b138e8 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8e2f27ab l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x92ab8dc0 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfc609d97 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x2180a702 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6e2a7002 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x72ab92cb br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb1f82a57 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb8de9275 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbb2c4a46 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd7501491 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xfd32176b br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x04d5df6e nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xc9616599 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0a8677c0 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0ca00b65 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x102db410 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x16b58be7 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x185adbc7 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23672cd0 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2578fdfc dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a9701ff dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x41403eab 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 0x51fb962a dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x53079a6c dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5aec1a7f dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5d9bd17b dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8f7763e3 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x960d479c dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x983373c0 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x99fea4d2 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9a42c1ec dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9f523c30 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa66e448d dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8fba642 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0298389 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbbf1fc5e dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbe9e00a6 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc1e2e623 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xca8d3805 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd430028f dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd95c46e9 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xda4405c2 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe2c8d9e3 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea8745ce dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xec398ec0 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8414e36 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x019b589a dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2e0b6b1a dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x4a896f54 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6ef5e009 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8eaef6d2 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa214326c dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x2f537d74 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x520da3a2 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x88816bd2 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa213ca6f ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ipv4/gre 0x142877e1 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xf2596e3d gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x1f70ff49 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4fa68130 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6b360265 inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x85e081a2 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb2965b25 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe43d63e2 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x12854cfd gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x066cdd55 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x073c52f1 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x18b29bed ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x19ecd6de ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x36a477f1 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4bc4e6e3 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4cdd17e3 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x837dec51 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x88d33169 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa65db8f2 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb0543c55 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb978dc3b ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf29dd2d8 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf8c0fd36 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfbc068f0 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xff0f9b65 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x4745f3e9 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 0xc3386f04 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x1c3067a4 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x39e77122 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x988b7fdd nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x98a200af nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf3abd161 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 0x85c888d0 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 0x1366bfbb nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x15cc8264 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5a23e227 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa239b302 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc495b9e7 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x69396324 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x144e50d3 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1a47fce1 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x31db34c6 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x457cc9ff tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9204a04c tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5c2e4664 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8a7c6b92 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa27b931e udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xd09bbc67 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0e1adc08 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x15028e38 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xce18a6ed ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xe46ddcda ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xea170baf ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfb95e909 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfbd4016d ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x22f74ca8 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xdfe536f3 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x90f1e5c8 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x2e66b4af 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 0x9eb8e308 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x8d926ee5 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x224034f9 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x2c7750c7 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x998e2279 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa962e3a3 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe282d7e2 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 0x8e18266c nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x32e41049 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x61dd6c12 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc00666c3 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xcca5931b nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf65885a3 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xc74df434 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0807f763 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1a54ef22 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x21163baf l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x252fbf32 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x39b9de56 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6c9d042f l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x85f2013c l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x892b9c40 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8b53c250 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x96f8f346 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa6e51dc1 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xabeaa5ce l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc2d2f8d2 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc642af82 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcaedb96d l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe6684d19 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x98c88d38 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0de0e6e3 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11066c07 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x275cdea6 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33afd28d ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x359d01d3 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3671fac3 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3b831598 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x4f69a187 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5d42034e ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5e0c97c6 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x82196e8d ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8ea67951 ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa3cf0c3a wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb7e2375f ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc6f32b63 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdf5d71fc ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe09ea892 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xebdf8959 ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x124e316e mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4e2542a1 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc3b2d0f7 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf9cfa3ba nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x054b274a ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x065e95db ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b505f7d ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2ab3a8b0 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2d5c4a19 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x4ca91e9a ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5483ad7e ip_set_put_byindex +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 0x7e47f5ff 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 0x9cfd814a 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 0xa7c4fb67 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb23c7b4d ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb41302d5 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb6bbd2a7 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbbfa1c59 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 0xd084be94 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd5bb6d8a ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x36120dbd ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x3f821d5b ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x46c360a3 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x9368a185 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00780444 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x04e91b1a nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x063f2835 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x093e1218 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a1df273 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b052c03 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x11fc4394 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1497885b nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f133229 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2267e0d2 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23d72202 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x251ee0e1 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2545e0c4 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2a9e8776 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2c152187 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2eb62739 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x309d80ec nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32e77b22 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ab4b6fe nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4791beea nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x48482e86 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x492b7f51 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4b46a5a5 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d2c337c nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x52392dfb nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x535edc86 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x541b92d1 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x545cbc42 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d861367 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6033cc57 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x605358a1 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60ec5cc7 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61d14905 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x662df053 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x69703d74 nf_conntrack_unregister_notifier +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 0x70d45aa3 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7278f2ed nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72d2df47 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74946718 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b42a856 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b9ba1a8 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e29be17 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x846e4274 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84c5f102 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84cd05d6 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86db3045 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8b45a99f nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f868fdb 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 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9570c4fb nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x977964a3 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a60df7c nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9e4d4365 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa54f0621 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaaa4187f nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac441c47 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb002cb23 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb285fb0c nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb482223a nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb4fc62b5 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9408e5a nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbce468c6 __nf_ct_expect_find +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 0xc4f70db0 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9c48235 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcc6ce798 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7c9f07a nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd904121a nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd62038b nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xde7567a2 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe0e88501 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe14a7bd8 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeed805a0 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef4be5e0 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0676e19 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0b4faa3 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf1429e8b nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2a8f574 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf4f7b29d nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5f8de93 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa8c19a5 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x06ae0456 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x60e17ff8 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xb372d8cc nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x12ce1a6c set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1fbb06f9 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3c8cbd51 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa0b49316 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb9ab5aef nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbe3380bd nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc862f585 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd1c51dec set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe451b5e8 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf64f3a32 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x04e32392 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1adba487 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x306f82bc nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x45730ac2 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xed6d7b43 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x6fa376e8 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xb373f417 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x004a417e nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x4856688b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x76568157 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x923bac0c ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xad3b070d ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd04452ca ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf3b4e51c ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x423e8168 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xf64defe7 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x31d093e9 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa2c4483f nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xbb07c4fc nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xbb8667f0 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 0x1a23f442 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4c9865d6 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7f64d832 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xb4bd4897 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc1806e90 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd47131b4 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd6354f39 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd6e63372 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf1a8ecd5 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x3fb26b29 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xca8fac41 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 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 0xcce32b15 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xdb92fb87 synproxy_parse_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0xef7db50c synproxy_net_id +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0af6a2d3 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x176f3494 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x32f46a36 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35481578 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3fb0df83 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b4aa899 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x661941c0 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x67313fad nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x83d4c3be nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8be23753 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97401cd3 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9cfe5ee6 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9f117ec3 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xae99acb8 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb0b8ee1a nft_register_expr +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 0xd8627775 nft_register_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 0xfe1c15da nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2731bdb1 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x300b5e2c nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3fb1c22c nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x58b76dcc nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x698f8a7a nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x75f8dc01 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd09fc0e3 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x38b28d3d nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x60c1bdb7 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xcae8af8c nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x1eb2a04b nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x4dc12a17 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x6e7f35f7 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x87d633cb nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x25121b3a nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x3284c661 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4249644b nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb856e495 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd28e5b47 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfe51381b nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x04285f20 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x120ef0a8 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x828de5b9 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x136d3840 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 0xf45ca1f0 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x00c2aaec xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x17192aaf 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 0x759a26f4 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x85d78376 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8fa26e64 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9e9db35d xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xadc2cd9c xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xae75c083 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfda570c xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc8bd960e xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd906d568 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf6974614 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa9e5528 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 0x36b292b6 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x47bbb249 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf7042769 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0f0ff62e nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x0f69f625 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x59f37a80 nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x04e354fd ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x16e4b61e ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3948e696 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4d26cd39 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x693bcf89 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x69b9c052 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9be85c96 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa04c2f84 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xe179332e ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x00c266e1 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x010f7b9a rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x0d921285 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x202c9459 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x297d8439 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 0x3b4fc0fc rds_page_remainder_alloc +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x51af269f rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7680e236 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x859dde31 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x8914d4e7 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x8bd0cb1e rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x96a2cdf1 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x9786e012 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xb4418897 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xbae2bdbc rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc9a24ed4 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc9b07a0b rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xd1d42619 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xde673448 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0xe35a6f11 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xeaac5c32 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xf3e83300 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xf5f83d82 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0xf8533f5f rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xffad95f2 rds_inc_init +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x49752ac1 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x6c875669 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 0x0d29f781 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x75130686 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 0xeefeb44f gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0124d3d2 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01aa1017 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01fde363 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0361d899 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0483d5d9 xdr_write_pages +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 0x06cf9c00 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x080d6428 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08ef2e13 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09ab4fd3 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa235bc svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bfa2267 rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c0e09e5 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fd2b7c3 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a3ac30f rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a958d02 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b82bf29 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1bfe8910 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c35d93b svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1cdac17b rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d03890e rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d4588bd rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2b7434 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x217ff147 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22a5b2f0 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24df0e9e svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26016d9f svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x288800ff svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28d657d1 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a3c2ec7 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b17c7b1 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b96fd04 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c03be43 rpc_lookup_cred_nonblock +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 0x305bb688 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31b23599 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33a14385 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3541c564 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x386aec02 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3941a8bf rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3960104b xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3a14127f svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ab1ba3a xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b6bd966 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c46572e rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3ff8c74c xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x427bd199 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x443ae810 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4590eb72 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x459c54b9 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47677d8e rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x496dc78e rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b1f0493 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bba9870 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e2e36d9 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ed0e2aa rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f7c20dd rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f915a65 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50c0ce0f svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52b190ea cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55f61e21 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57a1fd82 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a6f22bd rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5aec5107 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bdfdff5 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5c2cf3c4 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60876efc svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63a08cc0 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x63e6a394 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x673669b9 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x679dea3b rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a416939 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ac2282d rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6adb5c7a xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b0308d6 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c6e5167 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cb4d90b rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6cf9ae4d bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ff2d2cf read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x703cae21 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70edd763 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x721aae53 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7296cb5f svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7355cb88 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x736eaae5 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x73bd60ac rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7414bde2 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75e97296 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b44028f rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7bd4e3aa svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c123f47 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7c583750 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e64a69f xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7eaa7537 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7f7be525 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80210f48 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81a6ae20 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8383029d rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x838cc821 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8488a064 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x850605ec svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85b9254d rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85d2dd74 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85da607a xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x861cbda8 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a6faa9e auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d9365d3 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e381ca3 rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f39f743 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9109b8f6 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91f4c1e8 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94a0b0ed xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ae195ed sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cc9c4f5 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dd8b193 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1d87625 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3cad5cb rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa53d9705 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa54ce6f0 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b0300d xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa809aa85 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a88b46 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab14c118 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab9c37c1 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad4ad827 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0eb1fac svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb241029b svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb264f4a4 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb419a395 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4de2566 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb64a6726 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6ddb8ca xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb914369c xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9c84a91 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9ff9cb3 rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc4f257b rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcc6aaf2 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd10b31e sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd61175c xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd7131db svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe4ae3c6 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf75b9b4 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9980c1 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfaa090d rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbfb990c5 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc07b3a1c xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc093aecd rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc123b387 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc27a44fc rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc381e931 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc478f3b6 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc68efa0d xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc76bf7fc rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8292298 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc83c89f8 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc92da1b8 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc931813d xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcba29e12 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbb4b514 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc1bfb1b xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc95b166 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce37dda4 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf25bef5 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf8fc5a6 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd14c8eb9 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1b89447 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2a8aefd xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3764f10 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd5c12de3 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6d22944 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb38d18f rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbc13207 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdcd5757c rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd1906af xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd493238 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd7c0429 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd8c8e55 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf868641 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf9a2726 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0a87664 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe263a309 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5295b11 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5dc8e3e xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5e1e2c9 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe63953bd svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe950ad23 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9ef9ff3 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb5ccc53 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee526f23 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeefe6261 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefe719d1 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2236e5a svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4d7d3a8 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4dc3c9d cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf623b940 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f78a52 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf80d4c02 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8594757 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb04def4 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe434882 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x098c0529 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 0x1a23d237 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2b0f403d vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x33eaff14 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x44b85f20 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 0x8e51fd23 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x935a3025 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa6781e35 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb7966c13 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc1315c01 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc99a3082 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xcef18d05 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xebb82c33 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x11e27277 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1e753f5f wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x29b76b74 wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x29ebddb5 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2b6864d3 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x44a512f0 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x709e9cda wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8dddd80b wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x935338cf wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa05612d8 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb5f1c244 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb623b4e5 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfe7c9f7e wimax_msg_data +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0191bb92 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x17e3b5ae cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1af3da70 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2046bd8a cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x31ef5e6a cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x37802637 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6e7746d5 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7583e6b5 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8085a9be cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x91147d5d cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbd5d1a39 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc5ae1cd5 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd60f0f68 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 0x7a1c95c1 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8150cf49 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x9861490b ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc3807525 ipcomp_input +EXPORT_SYMBOL_GPL sound/ac97_bus 0x4ee0ec2a snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x312cfa48 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x3ee6b60c __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x0f099a0e snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x2bf3c0e0 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x937d6e5b snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0x9e0f92df snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xbed7827d snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xbfa165fb snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xcb894471 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x4ce8cc94 snd_compress_new +EXPORT_SYMBOL_GPL sound/core/snd-compress 0x5853ffa5 snd_compress_register +EXPORT_SYMBOL_GPL sound/core/snd-compress 0xfeaeb0ed 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 0x0c01fce4 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x20848bfb snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x31c17a95 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x56314e30 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x65b39800 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x82022af0 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x90979a44 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x9b34c85a 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 0xae238f19 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0809bfdf snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x68070162 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x6f13dbb3 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9b23b2ed snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9cb4c9d8 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9fe176d8 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa8f0ef4a snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc37efc3c snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd32dc5ef snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd7f915bf snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf75cabff snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x177f0e07 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1aac24af amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x201d0993 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x662b4561 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x999d822b amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9a5ab16c amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe90171de amdtp_am824_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x05dea592 snd_hda_ext_driver_register +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x1e2a8074 snd_hdac_ext_bus_device_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x284758fe snd_hdac_ext_link_stream_reset +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x2fd4d440 snd_hdac_ext_stream_set_spib +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x30da8be2 snd_hdac_ext_stream_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x311c4d6c snd_hdac_ext_stream_decouple +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x3239bd70 snd_hdac_ext_bus_get_link +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x37638645 snd_hdac_ext_bus_link_power_up +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x50f4ab53 snd_hdac_ext_bus_get_ml_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x52139f96 snd_hda_ext_driver_unregister +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x56e8596d snd_hdac_ext_bus_ppcap_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x6119f1a3 snd_hdac_ext_bus_link_power_down_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x718e45e4 snd_hdac_ext_bus_parse_capabilities +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7d13a15f snd_hdac_ext_stop_streams +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x7d31fe3e snd_hdac_ext_stream_get_spbmaxfifo +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x823f750d snd_hdac_ext_bus_ppcap_int_enable +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x877e7a26 snd_hdac_ext_bus_device_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x90f9cdad snd_hdac_ext_link_stream_start +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0x99a0372f snd_hdac_ext_link_set_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xa84f2223 snd_hdac_ext_bus_init +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xae8af376 snd_hdac_ext_bus_link_power_down +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xb29efc9a snd_hdac_ext_stream_init_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xcf75daab snd_hdac_link_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd081fabb snd_hdac_ext_link_clear_stream_id +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd0c89a7c snd_hdac_ext_link_stream_setup +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd3c4cd5b snd_hdac_ext_link_stream_clear +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xd969eea2 snd_hdac_ext_stream_assign +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xda29ef01 snd_hdac_ext_stream_release +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdf10c32b snd_hdac_ext_bus_exit +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xdf4552d4 snd_hdac_stream_free_all +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xe58f2de4 snd_hdac_ext_bus_device_remove +EXPORT_SYMBOL_GPL sound/hda/ext/snd-hda-ext-core 0xfb5ef3ef snd_hdac_ext_stream_spbcap_enable +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03f8da42 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0876f27e snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0aaab07d snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b186eb1 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0bb7f7b1 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c418b9f snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d88b322 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0e852d70 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0eaa6385 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0f1b49ce snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1176b618 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11e7dc29 snd_hdac_i915_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1ccb2d4f snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x27335e52 snd_hdac_i915_init_bpo +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2afccba6 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33b4d246 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35bcb762 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x35ee1f47 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3842c03a snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39300c0a snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x459ce837 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46df936f snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4ce04d13 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51da4b1e snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55b56fe3 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x581b1d5e snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x603af95d snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x67f95769 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x681111fa snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d2b9b26 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e7f760d snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6eb3d58a snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x704fc7ae snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73187668 snd_hdac_i915_register_notifier +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75993d02 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x75c4a7b3 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x78096dbb snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ce44611 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7d40654d snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x82a850d8 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87d441b2 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f2872f3 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x956e3856 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x99198a4a snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e32bcee snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa25fc5df snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa350c918 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8a92ef5 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa94ad312 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab01c04c snd_hdac_display_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xadfa59e9 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb41275c2 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba947678 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbd89919d snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc000e1aa snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4839f10 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6c6b859 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc6e47bc2 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9e67655 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcbbeebee snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc270baa snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcc2c6f62 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xce7b3f73 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf8ee043 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd33d1634 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd61e4e9d snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd77a853b snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc92a3cb snd_hdac_set_codec_wakeup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdea49cfe snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdecea1d8 snd_hdac_get_display_clk +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe4c9c81a snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe5fb3ee8 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe8cdfd48 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe95bb80f snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xec018d6d snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeeead773 snd_hdac_i915_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf73c2c9c snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf7a56ca8 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x0f235d9a snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x3eea4d7a snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x4d27faf9 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa4511d33 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xae72edf3 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xeab66eee snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00beecce azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0399299b snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x044c9766 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x054314d6 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x065dfe3f azx_bus_init +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 0x06ac40bc snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x07b1fb58 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a647921 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b49b737 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d5b5b7a snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e8a1696 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ee1731b snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f36b289 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fee16b7 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1037d409 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1199192a azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16206644 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x18bf0977 snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d629652 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d75ff07 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x20c4b690 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x212ba650 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27667481 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a4477a3 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x30f1fd07 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3481ef8a snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34db0342 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 0x38c53855 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x401b8cb4 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4217641e snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42f8b6b4 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42ffba9a _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x432794c4 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44554e8f azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47df6dec snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49c6b8de snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a0aef95 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a83aa41 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4b7ecc89 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c98c73a snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x522bb3b7 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53aae156 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5469b4ca snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5820d92f snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c2cdfb1 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ed4f485 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5efe2e77 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6421992e snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6678570b snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66d257fe __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67c67edb snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67c726e5 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6a06e7b1 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b766b05 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6bf0f515 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7025ee63 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x708ec839 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x713c18f1 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x715c3583 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72d5febf snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73f7f972 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x753efe16 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75a6d36d is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75fc8174 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x769406ff snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77f4a6b1 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7824be9c snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78dea326 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ba75777 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c4bd246 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x808a08f1 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x849f1263 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84bf1a4b snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8808e22f snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88d6bf7a snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90185797 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x902d86f3 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90ea9e7c snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9259b612 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9590c019 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98e9fa4b snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99009688 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9aa1f0ab snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9bad98d7 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f8c346b snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa0d1878e snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa137525b snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa73f8c12 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa76fb366 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8cc559d snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8d861ca hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacd029ca snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaef77905 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf22726f hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf469d82 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb3cf0cfc snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4c3eb1a snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5ecbf7b snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb75dabaa snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8bf95c4 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb4ad681 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd7359a8 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc631edd3 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc96279c0 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9c02a9b snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca637264 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcb56aede snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcfe6c735 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3755809 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4779d4f snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd612f971 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd688ef1d azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc91df34 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe171e557 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb9773e7 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeca357f6 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf095df31 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf1ccfa9e snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf61a9e2d snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf624b368 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf7790365 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf978ffd7 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbdf6b40 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xffa4e58f snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01317fa4 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x173215f7 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x221b07fd snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x40dd6aa9 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x433d043e snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x43607e51 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x44245d5e snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x496a967a snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5083719c snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x67a9b8f2 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x76a74567 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 0x8559d084 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 0x8e9f6fcb snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xafb2bb19 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc1bf193f snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc35a1280 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc6fbd563 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc8731dbe snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd474b7b3 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xee5c6ccb snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfbc8b55c snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x32f56944 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x81828e21 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x66cae4f4 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb9e45c9d cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x31f1353c cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x658400c3 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 0xd2ffa79c cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x3dd8ac10 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xdcdd6d56 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-max98090 0x8840f3f1 max98090_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x43771ff7 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x67e40ac2 pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x8c27c7be pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd67d7d56 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 0x1e49e1b4 rt286_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5640 0xcd75635b rt5640_dmic_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0x0e0a00e7 rt5645_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5645 0xafcdc47a rt5645_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0x36ba3e7d rt5670_set_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xbf60be76 rt5670_jack_resume +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xce878547 rt5670_jack_suspend +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-rt5670 0xf1006661 rt5670_sel_asrc_clk_src +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x23632afb sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x24838286 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x48ba87aa sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x533ac483 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xed0df2e1 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x64838c3d devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sn95031 0x5694daab sn95031_jack_detection +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x375384cb ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xbacff9b5 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x3e5cd1f8 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x7ec855e0 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x90bc4791 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x900eeb82 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x9ec22531 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc00eefb7 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xe50f6fa2 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x8a35fbe1 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xeb8638c1 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x0694e357 fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x7f681825 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 0x0dd030b3 sst_register_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/snd-soc-sst-mfld-platform 0xa1ad3810 sst_unregister_dsp +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x06ef21be sst_context_init +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x20b3fd0f sst_configure_runtime_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x98b8ec98 intel_sst_pm +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0x997d89a3 sst_alloc_drv_context +EXPORT_SYMBOL_GPL sound/soc/intel/atom/sst/snd-intel-sst-core 0xa7c47394 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 0x251c1cfb sst_byt_dsp_wait_for_ready +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x3946f3d3 sst_byt_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0x6e534e9a sst_byt_dsp_suspend_late +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xa65062da sst_byt_dsp_boot +EXPORT_SYMBOL_GPL sound/soc/intel/baytrail/snd-soc-sst-baytrail-pcm 0xf4ee3654 sst_byt_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x09643b06 sst_memcpy_fromio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x10515f89 sst_memcpy_toio_32 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x148eba4d sst_dsp_boot +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 0x1fc7bef8 sst_module_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x202e74c4 sst_dsp_shim_update_bits_forced_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x2870f5b4 sst_module_runtime_save +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x360a0427 sst_dsp_shim_read_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x3ede1ab6 sst_dsp_shim_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x41132137 sst_dsp_register_poll +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x424cb4d9 sst_module_runtime_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x45fb1536 sst_dsp_shim_write64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x46876eea sst_fw_unload +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 0x4b2579ab sst_module_runtime_restore +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4b3604dc sst_module_runtime_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4ba12090 sst_dsp_dma_copyto +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4d35e216 sst_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x4f2583e8 sst_module_runtime_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5058bf57 sst_block_free_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x562e6b38 sst_fw_reload +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x58b3956b sst_mem_block_register +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x5c71c12b sst_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x602cd60c sst_dsp_shim_update_bits +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x63e0496d sst_dsp_get_offset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x6f0ff1eb sst_dsp_ipc_msg_tx +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x70215c58 sst_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7057943b sst_dsp_shim_read64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x7e267e03 sst_dsp_shim_update_bits64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9457f754 sst_dsp_stall +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x953329c6 sst_dsp_dma_put_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x98365c21 sst_dsp_shim_update_bits_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9861e2a3 sst_dsp_outbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9f09b1d9 sst_dsp_shim_write64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0x9f6b08fb sst_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa032c4fc sst_module_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa063f9b4 sst_module_runtime_alloc_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa0a5e290 sst_dsp_mailbox_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xa2d44da6 sst_dsp_outbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb2355769 sst_module_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb31b84de sst_dsp_dma_get_channel +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xb93be820 sst_dsp_ipc_msg_rx +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 0xbe892ae9 sst_dsp_shim_update_bits64 +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xbf3e68fe sst_dsp_dump +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc2c57b46 sst_dsp_shim_update_bits_forced +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xc69a95d1 sst_fw_free +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xcac46544 sst_mem_block_unregister_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd1788410 sst_dsp_dma_copyfrom +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd3c7a6e1 sst_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xd78be3b0 sst_dsp_shim_write_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 0xd9fd02c5 sst_dsp_shim_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdb8f247a sst_module_free_blocks +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdbe7c466 sst_dsp_shim_read64_unlocked +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xdfa73c61 sst_block_alloc_scratch +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe03f0efc sst_module_runtime_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe6b5ef87 sst_fw_free_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xe983ed57 sst_dsp_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xf961fd44 sst_dsp_reset +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfc5942b3 sst_fw_new +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfc6d2c4c sst_dsp_inbox_write +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfce3dba0 sst_module_get_from_id +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-dsp 0xfff906db sst_dsp_inbox_read +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x367c05c0 sst_ipc_tx_message_wait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x50cd872c sst_ipc_tx_message_nowait +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x63121ee0 sst_ipc_fini +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x63f47c08 sst_ipc_init +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x7a40ec8c sst_ipc_drop_all +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0x9c00d160 sst_ipc_tx_msg_reply_complete +EXPORT_SYMBOL_GPL sound/soc/intel/common/snd-soc-sst-ipc 0xf7548a76 sst_ipc_reply_find_msg +EXPORT_SYMBOL_GPL sound/soc/intel/haswell/snd-soc-sst-haswell-pcm 0xc28658fe 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 0xdddaa634 sst_hsw_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x17aec7c5 skl_ipc_set_pipeline_state +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x27d7dd75 skl_ipc_set_dx +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2dece995 skl_dsp_wake +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x2f3a6624 skl_ipc_create_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x3bac274d skl_sst_dsp_cleanup +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x5edf44ef skl_ipc_restore_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x75056b69 skl_ipc_save_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0x7a2fd255 skl_ipc_delete_pipeline +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xacc4786d skl_sst_dsp_init +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xbad41e36 skl_dsp_free +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xbbf5ca36 is_skl_dsp_running +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc498e9b9 skl_ipc_bind_unbind +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xc8b2d164 skl_dsp_sleep +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xe3439185 skl_ipc_init_instance +EXPORT_SYMBOL_GPL sound/soc/intel/skylake/snd-soc-skl-ipc 0xef31f071 skl_ipc_set_large_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00c9e766 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00fac6a2 snd_soc_new_compress +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03cee085 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04236d5c snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04eaff44 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05c7e8b3 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x066c1500 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09a23e4d snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x09c48807 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b85568a snd_soc_tplg_widget_bind_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0fe66a8c dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10dec28c snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x119796ed snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x156b9717 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x167c60df snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18c2c26c snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1af29597 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1c65601e snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1dab642c snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1de08022 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ea07d56 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f485437 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f7d13c0 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2039d847 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21ff5ea5 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x234c38c7 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x234d7ea5 snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x23526ae6 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x24657c39 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26cd4d30 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27017b46 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a0c7d03 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2b13a27d snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2bf32430 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c306102 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c76ae8f snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cbd9768 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x335082ea snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x336b17ae snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x379a46c9 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x393d91b1 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x397c39c9 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a28c454 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3b60f1dc snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bccd193 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c91de91 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f8dd3b9 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x41defedb snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4209bf01 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x424ef732 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x429312e6 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42edc5ea snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46b71e0c snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x480a0262 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x490bc08b snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ab684ec snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bbe0acc snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4c18e723 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ceff137 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d8aef65 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f1a7cf5 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f2e44dc snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fe2b323 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5017d96f snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x52b5b4c3 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x570348ef snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x572c8eed snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x582de63e snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c0df0f6 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5da44bba snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e98c305 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6059be35 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61050628 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62dfa832 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x632a4c0b snd_soc_tplg_component_load +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x643e9464 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65d2ac05 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6749c0a2 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68505183 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68ca75ed snd_soc_tplg_component_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a6f86dc snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c35886f snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d82b67a snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73b0ee5d snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7bbb7bad snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e34c159 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x82bb58e0 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8436c997 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8af120c2 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b256c3f snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c3f59c6 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ed7a044 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f314205 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91d64d61 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9206f851 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92845e78 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x951b8c8d snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x979ffec2 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bf732e0 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f0adbac snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa15d1ce4 snd_soc_tplg_widget_remove_all +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa50a94c5 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5c14b7f snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa81986d7 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9306764 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa57b471 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac18da32 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0015f76 snd_soc_tplg_widget_remove +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0d2d0ae snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2044302 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb257e98c snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2802e18 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5a4a07e snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb62c209a snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb68e2872 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6dd1591 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb88171e2 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb96b1e5f snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9cb5cc0 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba81c2a2 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb4d6eb0 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbef8d4d0 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1daad15 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2a87e42 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc3881778 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc65d4e72 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 0xc89dd153 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9e0b5ba snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb4980b6 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcff32a25 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcff55ec6 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd3803443 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd61e33cd snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd86b1448 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdad9afe1 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd3b90fe snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf48525c snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf70cb6b snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf9c6b38 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe62cc95a snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe774b62a devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeadf9498 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb1b98e4 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec3b4c31 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef53090f snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xefbc95e0 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf32dafa5 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3c8c30c snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf66e9976 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf71f9813 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf73618a5 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf963328d snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbdd6172 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xffe0e0d6 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x14444fe7 line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1ace3c91 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 0x37868eaa line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x53669393 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x53fc98d7 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x581cd9c7 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x623f5a43 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x68cb0aaa line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6f4be04f line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9b73e534 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa61f9a4b line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xabf0a5f4 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xafb562ad line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf67aed35 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfc6a57d5 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 0x0430b5e0 rsi_hci_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x15785a4b ven_rsi_91x_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x1e678bb2 dot11_pkt_type +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x26944da9 ven_rsi_mac80211_detach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x276a33df ven_rsi_read_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x3779c31e rsi_default_ps_params +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x3b4eb867 rsi_config_wowlan +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 0x5ae1a05b rsi_send_rx_filter_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x61d4b905 ven_rsi_91x_deinit +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x62722659 rsi_init_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0x6bcb972b rsi_send_rfmode_frame +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa8089a1e rsi_hci_recv_pkt +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xa87ac127 rsi_remove_dbgfs +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xade2d1d2 rsi_hal_device_init +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xde57dc85 rsi_hci_attach +EXPORT_SYMBOL_GPL ubuntu/rsi/ven_rsi_91x 0xe173f5a6 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 0x00026113 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x0034f3b6 xen_has_pv_nic_devices +EXPORT_SYMBOL_GPL vmlinux 0x0045cb02 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x00470e77 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x006228d8 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x006935fa spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x007cf004 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x00820a44 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x00918351 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00c1c308 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x00ce7bb7 acpi_create_platform_device +EXPORT_SYMBOL_GPL vmlinux 0x00da8093 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f90369 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x00fe2add da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x0103adfb thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0104b7ec ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x01320857 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x013a72b4 isa_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0154ae9f i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x016380da ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x0170cb6c efivar_work +EXPORT_SYMBOL_GPL vmlinux 0x01848a8e local_apic_timer_c2_ok +EXPORT_SYMBOL_GPL vmlinux 0x0187abe9 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0187f7bb xenbus_unmap_ring_vfree +EXPORT_SYMBOL_GPL vmlinux 0x01ab9f8b policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x01b39423 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x01d7239a fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x01dcbb29 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01f18214 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x020cbd1c ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x02227711 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x0224217b devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x02280cb7 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x022f5b44 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0234db9a regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x02440596 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0257bb80 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x025d5e80 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x026f9711 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x0287e3fc xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x02a67d5e irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x02b72cb1 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x02bcc9bb ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x02d2715d usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x02d7b8b1 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x02e54d21 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x02e77a1b clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x031ba3a4 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x0325e576 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x032e2b6d pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03467b6d xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x0367bb6b dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x038d0521 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a17315 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x03adbacc xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03ef7559 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x03f7ed7b swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x03fe8ed3 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0403e606 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x040ef04e nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x04103b58 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x042546c8 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x043de220 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x04543afc vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x045d64c9 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046b0731 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x046bf168 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x04813b1a ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0485655f amd_get_nodes_per_socket +EXPORT_SYMBOL_GPL vmlinux 0x048a2bd7 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +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 0x04e91d36 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x04ecfb5c set_memory_wt +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04f4d9ef rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x04f6e76d device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x0500bd4d class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x0508a535 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x05116a1b i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x05119088 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x051197a5 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x0512c5de usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054fb824 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x058598e3 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059b8e8b ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x059d6dfc xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x05b960d2 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x05c08484 xen_xlate_remap_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x05cc76e5 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x05d3b280 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x05da0fb2 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x06118526 rtc_update_irq +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 0x065c1437 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x067a79ca cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x06963c36 intel_msic_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x069dac35 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x06a547fd tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x06d549e6 pinctrl_free_gpio +EXPORT_SYMBOL_GPL vmlinux 0x06debe3d mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x06f137fb __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x06f8340d gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x07032f9e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x070798f2 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x071ee624 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x072e7ff7 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x073a338b fpstate_init +EXPORT_SYMBOL_GPL vmlinux 0x07431549 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x077deb24 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x078981d9 thermal_zone_get_zone_by_name +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 0x07c3c27a mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x07f700cc ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x07ff3802 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x0801cd1c tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0830e404 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x08593d2f set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x08982e78 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x08b18ac4 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x08c4e975 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x08f10258 gnttab_unmap_refs_sync +EXPORT_SYMBOL_GPL vmlinux 0x090ad411 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x090bdb63 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x09138959 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0962d0e8 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x096f1fee devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x09871386 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x09941383 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x09d2f304 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x09d82466 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09efb4f2 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x0a1b2a08 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x0a1bd1cf wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x0a1fbb68 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x0a283ab2 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x0a4fde00 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0a5c8c01 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0a65cbf7 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x0a8c6f5b rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x0a8d21ae list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0x0ab27e52 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b22beaf reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0b418ba7 arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x0b52e502 apei_resources_add +EXPORT_SYMBOL_GPL vmlinux 0x0b5950d9 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0b67f20a inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0b710a98 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x0b7668dd acpi_dev_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x0bc80154 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x0bd5c24f virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x0bdffcfd mmput +EXPORT_SYMBOL_GPL vmlinux 0x0be36272 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0be8640e alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x0bf41096 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c100c97 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0c147cdc irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c3002c9 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x0c377a39 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0c465987 xen_remap_domain_gfn_array +EXPORT_SYMBOL_GPL vmlinux 0x0c4c335f pinctrl_pm_select_default_state +EXPORT_SYMBOL_GPL vmlinux 0x0c610d9c __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x0c65af44 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0c805f93 clflush_cache_range +EXPORT_SYMBOL_GPL vmlinux 0x0c80e3fe efivar_init +EXPORT_SYMBOL_GPL vmlinux 0x0c8aa7be led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x0cba903b get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x0cbfccc9 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce7374c metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x0ced5146 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x0cf94cfd pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x0cfde72d attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d0440ce intel_scu_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d0e8b52 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x0d0e9227 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d4a5e7b ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x0d685187 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x0d6ba13d crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d7eccad system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x0d97a70e tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x0db3790f smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x0dcf25ed blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0ddd86b4 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x0dde73f1 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x0de1e32a ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x0dec7590 pci_reset_pri +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 0x0e15baae pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x0e32a0a0 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x0e6ffd99 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x0e797e46 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x0eab9e87 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x0ed4430a scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x0ee4345e usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x0f0b5359 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f2d7d87 mce_unregister_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0x0f2e47a3 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f62bf86 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x0f6e4206 gnttab_unmap_refs_async +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f82d881 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x0f8a6932 efivar_entry_size +EXPORT_SYMBOL_GPL vmlinux 0x0f94a92c devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0fa138de xen_hvm_need_lapic +EXPORT_SYMBOL_GPL vmlinux 0x0fb7bbb0 ata_scsi_slave_destroy +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 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x101a95fe register_mce_write_callback +EXPORT_SYMBOL_GPL vmlinux 0x10336fc8 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x103a1d76 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x104497a2 xenbus_frontend_closed +EXPORT_SYMBOL_GPL vmlinux 0x104515aa securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x106e3218 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x1076cc83 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x10884cae inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x1098d80d acpi_bind_one +EXPORT_SYMBOL_GPL vmlinux 0x109c87f5 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x10a59aed adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x10b1b745 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x10b4e05e fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10f3107e crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x10f4c24c shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x110106c1 cper_severity_to_aer +EXPORT_SYMBOL_GPL vmlinux 0x1101266b put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x1102a581 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x111ff7cc nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x113c7c75 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x113e19a9 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x1158b79e ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x119d931c crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11d9d93b page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x11e467cf rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x122a7b09 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x12365e8c percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x123d5213 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x124bf253 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125a9a97 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x128de383 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x12a7a1c5 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +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 0x133e4e0d sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x133fa0ae sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x13517f92 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x137314fe register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x138aff76 gnttab_init +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13ae923a inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x13b1b59b crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x13b89dee pinctrl_request_gpio +EXPORT_SYMBOL_GPL vmlinux 0x13bd9448 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x13f3e0d5 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x13f51fc3 ms_hyperv +EXPORT_SYMBOL_GPL vmlinux 0x1410e45f dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x145784d1 gdt_page +EXPORT_SYMBOL_GPL vmlinux 0x145ce51e __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x146920bb handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x14901d30 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x1495e6fd regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x14b32531 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x14dd2a27 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x14e0bb18 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x14fe1705 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x15010e1f arbitrary_virt_to_machine +EXPORT_SYMBOL_GPL vmlinux 0x1512592d component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x151483b5 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x15209192 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x1530bb13 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x15446edf led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x15568631 lookup_address +EXPORT_SYMBOL_GPL vmlinux 0x158158a2 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158da723 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1597864e crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x15b0606e e820_any_mapped +EXPORT_SYMBOL_GPL vmlinux 0x15b961ae bus_register +EXPORT_SYMBOL_GPL vmlinux 0x15e59cce crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x15ea4251 devm_pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15fd483e clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16089125 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x161bdd76 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1621892a dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x16237eb7 usb_mon_register +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 0x1659ba39 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x165b1a52 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x165c4a79 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x16776ee4 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x1691045c mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x169166f4 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x16a34559 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x16e215c6 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x16eb78cb ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x16edd761 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x17199ccd rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x174dc774 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x174e563c pci_user_write_config_dword +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 0x179c423a crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x17a04767 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x17a6f7f2 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x17bc1897 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x17c1c395 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x17cee470 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x17ed7561 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x18104daf dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x18152066 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x182b79ca devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x1837500d acpi_ec_remove_query_handler +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 0x1874cca0 usb_acpi_set_power_state +EXPORT_SYMBOL_GPL vmlinux 0x18776e7a cpu_tlbstate +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x187c775d relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x1883012d regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x1899471e efivar_entry_find +EXPORT_SYMBOL_GPL vmlinux 0x189da2b3 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x18cfe04b device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x18f5e50e arch_apei_enable_cmcff +EXPORT_SYMBOL_GPL vmlinux 0x18f83fab gnttab_grant_foreign_access_ref +EXPORT_SYMBOL_GPL vmlinux 0x1914bbe2 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x191f8638 gpiochip_add_pin_range +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x196614ce hw_breakpoint_restore +EXPORT_SYMBOL_GPL vmlinux 0x197c718a sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x1982ff29 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x1984e2b2 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x1999f970 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19d6fcab dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x19ece72e skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19fef048 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x1a138e11 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a1fe625 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1a22099a rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x1a2dbf44 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x1a4f106d user_read +EXPORT_SYMBOL_GPL vmlinux 0x1a5088b5 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x1a5b238c sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x1a6e22e7 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9cb062 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1aefcbe5 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x1af66ac1 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1b1f2bda speedstep_get_freqs +EXPORT_SYMBOL_GPL vmlinux 0x1b348a9b blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x1b38b3c6 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b62b96c usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x1b70d283 pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x1b748341 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x1b8021ce ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x1b839ae5 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x1b8822d8 pinctrl_gpio_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x1b8a9dad usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bb5e512 sata_scr_write_flush +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 0x1be1ebc4 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x1c02d622 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x1c3bfcb9 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x1c527b0e gpiod_get_array +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 0x1c7f2e93 xen_swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c88b9ea swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x1caa618e regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x1cc6a47b xenbus_dev_cancel +EXPORT_SYMBOL_GPL vmlinux 0x1cd46094 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1ce41534 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x1cfde257 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x1cffd3c0 pinctrl_dev_get_devname +EXPORT_SYMBOL_GPL vmlinux 0x1d0d9bd7 clk_gpio_gate_ops +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 0x1d6e0d36 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1d739e1c xen_set_callback_via +EXPORT_SYMBOL_GPL vmlinux 0x1d745ea4 vfs_cancel_lock +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 0x1d83eed4 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x1dda0b16 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x1de66b96 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1def880e bind_interdomain_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x1df5f9f3 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1dfaf5f0 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1e06de7a device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x1e0e8260 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x1e3dced5 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x1e44bb54 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e7073ac pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e9ad042 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x1ea03c0a pinctrl_utils_add_map_configs +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ecd8735 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x1eda7402 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x1ef04924 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1ef09e15 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x1f3dbe20 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1f7f6fac register_jprobe +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 0x1f9100f7 acpi_pci_check_ejectable +EXPORT_SYMBOL_GPL vmlinux 0x1fa22f68 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x1fa5b19a preempt_schedule_notrace +EXPORT_SYMBOL_GPL vmlinux 0x1fb91502 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x1fc8f75b xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x200cc695 __free_iova +EXPORT_SYMBOL_GPL vmlinux 0x20285ec6 apei_get_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x203b7810 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x204e66e6 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x20594caf mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x207818c2 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x208362aa key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x209a8112 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x209ec764 xen_event_channel_op_compat +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20bd3461 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x20e11714 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x20e4d4e1 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20f097be scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x20f303b2 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20f935a0 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0x20f9f5ea rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x21041ef5 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x21189ce8 acpi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2126de60 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x215b7a51 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21a98673 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21b85d74 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x21be8987 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x21c07157 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x220dae3a crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x22328121 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x224fc416 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x22589c97 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x22655259 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x226d41dd pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x2275d7af sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2288085d device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299ec81 perf_assign_events +EXPORT_SYMBOL_GPL vmlinux 0x22b44b70 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x22c03fff mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x22c4b41a phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x22ebc234 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x23048011 __intel_mid_cpu_chip +EXPORT_SYMBOL_GPL vmlinux 0x230683fd __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x23090a5a of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x230e64e3 user_update +EXPORT_SYMBOL_GPL vmlinux 0x2311dcd6 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2338dc0c irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2346a909 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x2366a2c0 errata +EXPORT_SYMBOL_GPL vmlinux 0x2371e7bf key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23886137 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x239a889b pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x23c83e85 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x23d6cf65 __xenbus_register_frontend +EXPORT_SYMBOL_GPL vmlinux 0x23db45db led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23ff114a blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x240580a9 xenbus_probe +EXPORT_SYMBOL_GPL vmlinux 0x241b278b pinctrl_pm_select_sleep_state +EXPORT_SYMBOL_GPL vmlinux 0x241f9b97 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x245ee8f1 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x2466a2d3 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x2469810f __rcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x24706fdc dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x247d955f iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2488780e pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x24a4704e pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c7698a xenbus_write +EXPORT_SYMBOL_GPL vmlinux 0x24cb036e devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x24cf341f ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x24db8a9f pm_wakeup_event +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 0x250958d0 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x2509bb2b crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x25198d34 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x2528314f pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x252c09be injectm +EXPORT_SYMBOL_GPL vmlinux 0x2537113a mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x25383c4d list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x2545c170 unregister_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x2561c014 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2570c2f1 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x257710e1 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x257e460a aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x25a6ded2 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x25b7a349 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x25d4fbcf pinctrl_utils_reserve_map +EXPORT_SYMBOL_GPL vmlinux 0x25e95bed pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x25f02c87 xen_p2m_addr +EXPORT_SYMBOL_GPL vmlinux 0x25f4d877 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x26237e75 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x264ae4c6 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x264e30a7 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x26717523 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0x26774d99 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x26965721 slow_virt_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x269eea1e usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x26a39e13 ata_acpi_cbl_80wire +EXPORT_SYMBOL_GPL vmlinux 0x26b3c701 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c22b9f genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d04d25 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x26db06ad clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x26f61a67 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x26f6d476 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x27033496 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x27079e71 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x270b8795 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x273574b6 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x2738cfde tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x273c9492 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x276ae921 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2773b60a tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x2776e478 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x279cb985 apei_exec_pre_map_gars +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27edad7e regulator_list_hardware_vsel +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 0x28201e99 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x28227ad5 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28819e07 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x2890771b digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x2894a8de ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x28971dca get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x28a7d0b0 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x28aa6a67 call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28af47dc spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x28c44638 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x28c6d1b6 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x28e64c64 xen_has_pv_and_legacy_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0x28e70951 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x28f21dd7 ata_acpi_gtm_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x29003de0 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x29022572 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x290a0631 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x291a7fc0 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x29213614 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x293f073e vrtc_cmos_write +EXPORT_SYMBOL_GPL vmlinux 0x294e08d8 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x296dd083 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29a52651 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x29ad6447 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x29da5db1 acpi_dev_get_property +EXPORT_SYMBOL_GPL vmlinux 0x29e96e43 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29ebe72a debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x29f74a75 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2a047f90 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x2a1e4169 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x2a3b6504 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6c6e69 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x2a71ccd4 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x2a7393b6 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x2a79a7cb __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x2ab2c2b1 xen_swiotlb_sync_single_for_device +EXPORT_SYMBOL_GPL vmlinux 0x2ab74976 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x2abd749d class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x2ac8c500 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x2af63321 acpi_dev_resource_address_space +EXPORT_SYMBOL_GPL vmlinux 0x2b0eff25 acpi_register_gsi +EXPORT_SYMBOL_GPL vmlinux 0x2b1ff805 xen_swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b3eb920 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x2b55c743 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x2b5fe4d3 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x2b67f096 speedstep_get_frequency +EXPORT_SYMBOL_GPL vmlinux 0x2b697558 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x2b69ed2d tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b96316a efivar_variable_is_removable +EXPORT_SYMBOL_GPL vmlinux 0x2bb03512 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x2bc4f562 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x2beab895 virtqueue_add_sgs +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 0x2c32312d ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x2c545406 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x2c630bd1 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0x2c6a0410 xen_set_domain_pte +EXPORT_SYMBOL_GPL vmlinux 0x2c7607b3 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x2c7d9c64 xen_store_interface +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2ca4f658 pinctrl_select_state +EXPORT_SYMBOL_GPL vmlinux 0x2cc12e9c hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x2cd05b20 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf31372 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1c24bd ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x2d384bbc xenbus_register_driver_common +EXPORT_SYMBOL_GPL vmlinux 0x2d386492 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x2d3b8e2e iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d470976 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x2d56115c ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d826e19 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x2d834849 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x2d843a23 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x2d9f2ce3 sched_clock_idle_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2dbe6f4c __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x2ddb8d99 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x2de0bc54 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2df9cc9f rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e6d6eab blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x2e7e54d2 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x2e855b9e fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x2e943f95 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x2ead06da tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2ebae645 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec36c77 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec7b44e __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4ddfb5 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2f61688d fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x2f64415f unregister_acpi_hed_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f6f4d59 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x2f8049de irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x2f90da7e trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x2fd71fd9 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x3020853c single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x3029e480 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x30313da4 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x3045e64d xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x30539277 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30635782 cpu_has_xfeatures +EXPORT_SYMBOL_GPL vmlinux 0x30702f0a __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x30808e0b device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30dc3c80 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x30dfdbe3 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x3106afbe preempt_notifier_unregister +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 0x312872e4 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x313c4a12 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x315ff348 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x316ef3c0 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x317f4c30 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x31862364 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d1bfcd devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x31f6dacc mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x31fb561a anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x324242ed irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x32557712 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x3256306e blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x325e677c gnttab_grant_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x32633aca skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3263d968 gnttab_map_refs +EXPORT_SYMBOL_GPL vmlinux 0x3273373e ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x32aa85c5 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32bd9cf1 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c68c6a ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x32d9c177 pinctrl_register +EXPORT_SYMBOL_GPL vmlinux 0x32e3b076 mxcsr_feature_mask +EXPORT_SYMBOL_GPL vmlinux 0x32f86f16 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x333228ec intel_msic_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x334359e9 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x3346a9ee xen_swiotlb_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x334f2df5 da903x_unregister_notifier +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 0x337029e5 devm_pinctrl_get +EXPORT_SYMBOL_GPL vmlinux 0x337f627b of_css +EXPORT_SYMBOL_GPL vmlinux 0x33b61d5d __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x33b64a65 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x33b96e5d apei_exec_write_register +EXPORT_SYMBOL_GPL vmlinux 0x33c803de xenbus_dev_remove +EXPORT_SYMBOL_GPL vmlinux 0x33e367c4 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x33ecbbaf sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x33faf466 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x343f5a2f nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x3448f294 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x34757b82 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x349d8643 extcon_get_cable_state_ +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 0x34b35b09 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34b58045 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x34b5d982 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x34c4b6c8 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x34d4ce3b cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x34d516ad iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x34d7548d kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x34eb5fc1 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x34ee491f cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x352650ee gnttab_batch_map +EXPORT_SYMBOL_GPL vmlinux 0x3542fe80 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x35433670 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x354bf115 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x35545372 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3560b8d1 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x357be7b2 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x3581f995 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x3588ca0b irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35910f72 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x35cdecf8 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x35d58493 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x35d813d9 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x35dcd1f7 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x35e26d30 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x35f2cbfb dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x35f68210 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361cfeb8 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3620f782 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x36230d1b get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x36324c42 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x363825bc pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x364aae59 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x3676f10e clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x367e6a74 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36aadf6b ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x36b5497e intel_iommu_enabled +EXPORT_SYMBOL_GPL vmlinux 0x36b73687 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x36ba2551 intel_scu_devices_destroy +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36cb0e60 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x36d92fed pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36ff9f7b tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x374157dc usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x3748807e blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3785a4f7 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x3797e7a0 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x37b7c71a devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x37d2612b hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x37f6cf75 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x37fe6251 acpi_initialize_hp_context +EXPORT_SYMBOL_GPL vmlinux 0x381899cb regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x381fdb2e xen_pci_frontend +EXPORT_SYMBOL_GPL vmlinux 0x3831a648 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x384b22dc regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x38571c15 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38722f80 kernel_fpu_end +EXPORT_SYMBOL_GPL vmlinux 0x38737c56 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x3895bedd split_page +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38acef03 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x38d476b5 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ece489 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3901e0fc usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x3912212d bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x39213f58 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x3926c867 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x39394e71 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x393ac15b ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x395ff1f8 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39dec9a4 acpi_subsys_prepare +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39fd5760 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x39fd718f __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x3a04d058 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x3a0e6ea7 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x3a1d9bba crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x3a26ed11 sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x3a33226e sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x3a3db234 divider_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x3a41954a skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x3a446618 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a523982 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a7d80f9 xen_max_p2m_pfn +EXPORT_SYMBOL_GPL vmlinux 0x3a881e0f blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x3a89a6a3 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x3a984ed6 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x3a99f7a7 acpi_dev_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3acfbe40 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x3ad3b21d blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x3b36a9af gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x3b547bc9 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3b5614ea dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x3b7145bb apei_exec_read_register_value +EXPORT_SYMBOL_GPL vmlinux 0x3b8543ba ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x3b8d5ea2 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x3b93acc9 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x3bb946f2 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x3becbdc2 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x3bfd3d0e scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x3c1783a8 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x3c282f34 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x3c3911ec devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x3c554493 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x3c60bb02 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x3c71a87f cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x3c759f20 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x3c8829e8 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c93ea25 trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x3c97ea53 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x3c9b70f5 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x3ccd843e usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd3d0e4 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x3cf05080 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x3d07b631 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d717569 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x3d756d70 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x3d7ea99a gnttab_grant_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x3dab27cf regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dc2e6ec nd_numa_attribute_group +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 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e529a11 arizona_free_irq +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 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3ea5196d apei_osc_setup +EXPORT_SYMBOL_GPL vmlinux 0x3ea62e38 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ead2a89 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x3eb2653f ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3ecedefd dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x3ed64605 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x3edc0f85 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x3edc1238 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x3ee501dd of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f229c4c oops_begin +EXPORT_SYMBOL_GPL vmlinux 0x3f326116 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x3f3a4735 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x3f811ffb blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x3f84d4c9 gnttab_release_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x3f8e2375 acpi_driver_match_device +EXPORT_SYMBOL_GPL vmlinux 0x3f95102e pinctrl_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x3f9d0bcc __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x3fa1d7a7 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fc1ceaf blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3fc423e9 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3ff18562 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x3ff1ee11 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3ffeaa65 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0x400a024b acpi_scan_lock_release +EXPORT_SYMBOL_GPL vmlinux 0x4010b80f pmc_atom_read +EXPORT_SYMBOL_GPL vmlinux 0x401cbd04 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x401e84c8 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x4021ba99 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x404a70bd dev_pm_domain_attach +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 0x408c0a30 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x40a61232 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x40a989cf dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c4044f rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x40c433bc wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x40c7d5b9 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d9f505 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x40dfab1d br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x4127d68e tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x417fc376 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418710e7 mce_inject_log +EXPORT_SYMBOL_GPL vmlinux 0x4189f154 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4198cae7 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x41ba9df4 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x41c9ea68 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d94b9d wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x41ddc74d hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x41df2b5b bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x420e0258 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x42100cac cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x4213a51a efivar_entry_set_safe +EXPORT_SYMBOL_GPL vmlinux 0x421eeb02 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x422eb10f da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x42302c7c class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x4233a102 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x42483a00 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x4264a6f4 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4267dfb2 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x427b78da __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x428de52d irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x42a034b6 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x42b5e614 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x42bc8326 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x42c989ff iomap_atomic_prot_pfn +EXPORT_SYMBOL_GPL vmlinux 0x42d4c17e __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42f36bfa crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x42f6b74c ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4313294f pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x4322da03 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x432850ee platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4364574d pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x4369d3b6 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x438d8df2 iova_cache_get +EXPORT_SYMBOL_GPL vmlinux 0x4395953e usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x439c5e5e ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43ab21f9 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x43c96221 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43dea836 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x44071be4 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x441b5b50 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x441fa356 irq_ts_save +EXPORT_SYMBOL_GPL vmlinux 0x4430ae6b platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x44537b00 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x4467a61c dmi_kobj +EXPORT_SYMBOL_GPL vmlinux 0x44826c52 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x44839818 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c25298 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x44dd2f2e crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x44e1e9aa balloon_stats +EXPORT_SYMBOL_GPL vmlinux 0x44ff006f phy_create +EXPORT_SYMBOL_GPL vmlinux 0x450bb12e do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x450c7f99 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x45124bd5 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x4512b086 intel_scu_devices_create +EXPORT_SYMBOL_GPL vmlinux 0x451c87e8 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x451e9a0f rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x452cef30 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x45404e09 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x4541fe0d mtrr_state +EXPORT_SYMBOL_GPL vmlinux 0x4542255c regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x454f1cb4 efi_query_variable_store +EXPORT_SYMBOL_GPL vmlinux 0x45506c7d nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x455e6535 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457de8d1 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x45b7d6a0 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0x45bdf89e clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d14bdf hypercall_page +EXPORT_SYMBOL_GPL vmlinux 0x45e3a9a6 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x45e68180 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x45f704d8 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x45f7f384 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460f31aa rodata_test_data +EXPORT_SYMBOL_GPL vmlinux 0x4612435b xen_unmap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x4617ad98 acpi_os_map_iomem +EXPORT_SYMBOL_GPL vmlinux 0x46349473 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x4636b0d9 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x463cae01 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46582bfa hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x46689af4 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x467175c2 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x4678157d pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x467e5039 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x46851ba3 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x46875a63 apic +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4689156c debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x46a47bcb device_register +EXPORT_SYMBOL_GPL vmlinux 0x46b077c9 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x46be85d3 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x46c23e6b da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x46c43262 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x46e3187b vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x46f524e7 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x470c2ef9 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x47201599 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x472d3d26 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x47348dde debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x473f04cd debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x47493ddb debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x474aea0a nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x475c14be sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4771744c udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47a5f438 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47d0eea2 acpi_lpat_temp_to_raw +EXPORT_SYMBOL_GPL vmlinux 0x47d5eeb7 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47fa0879 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x482062f5 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x4828e77b acpi_scan_lock_acquire +EXPORT_SYMBOL_GPL vmlinux 0x4833533d mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x48427da1 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x484583db efivars_unregister +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 0x48938f93 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x48eb8ef7 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x48fa95cf usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x490a8df6 x86_platform +EXPORT_SYMBOL_GPL vmlinux 0x49165687 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x491afa68 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x49453502 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x49584983 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x495f27cc spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x4968573f ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x497a2709 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x497ad73f dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4990966e rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x49a3b9d1 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x49b02029 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x49d034f4 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x49d57e7b usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a38260e pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x4a3c3cf9 microcode_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x4a420d09 acpi_bus_detach_private_data +EXPORT_SYMBOL_GPL vmlinux 0x4a46ff4b power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x4a4bc44e bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a8f6b8f dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x4a90a954 device_add +EXPORT_SYMBOL_GPL vmlinux 0x4a95c8f3 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x4a9b055d rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x4a9be614 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4aac3b4e pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab802e7 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x4ad8671e pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x4af37225 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x4afb573b vrtc_cmos_read +EXPORT_SYMBOL_GPL vmlinux 0x4b0188ba rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x4b135c00 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4b29ae87 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4b4de5d3 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4b5571ec sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x4b5d36a6 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x4b89f586 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x4baebf90 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x4bcd8ebf iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x4c04b965 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4c109367 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x4c2a472b __static_cpu_has_safe +EXPORT_SYMBOL_GPL vmlinux 0x4c396d88 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c8c59e8 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x4c900bcd rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x4c9bc4ad bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x4cccf2e2 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x4cd4c5e3 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x4cd665fb wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4cf03177 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d043dc2 xenbus_dev_resume +EXPORT_SYMBOL_GPL vmlinux 0x4d24a165 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x4d300271 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x4d3b05a8 print_context_stack_bp +EXPORT_SYMBOL_GPL vmlinux 0x4d435ce8 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x4d5cc7fd usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x4d8d852c iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x4d8fb038 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x4d91e624 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x4dc3198e posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x4dc9ccb7 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x4ddfe02b trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de2ae29 driver_for_each_device +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 0x4e2f4220 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x4e497a92 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x4e57723d apei_read +EXPORT_SYMBOL_GPL vmlinux 0x4e67f903 xenbus_dev_fatal +EXPORT_SYMBOL_GPL vmlinux 0x4e6d4082 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x4e74e625 gnttab_batch_copy +EXPORT_SYMBOL_GPL vmlinux 0x4e97a832 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0x4e9c4051 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4eb995a4 xenbus_alloc_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f1b512e input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x4f1b79d8 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3da7d6 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x4f3ea156 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f543483 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x4f5eee11 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f74a016 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x4f8dd279 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x4fba5bf1 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe78bf0 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5026585c xen_irq_from_gsi +EXPORT_SYMBOL_GPL vmlinux 0x506be671 xen_swiotlb_unmap_sg_attrs +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 0x50b63c03 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x50c55c0d devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50d36049 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50e9ac48 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x510307d8 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x511c2e7b crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x5130f650 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5137b151 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x514e9875 divider_get_val +EXPORT_SYMBOL_GPL vmlinux 0x51696ffe blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x5170ec46 acpi_dev_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5174024e regulator_map_voltage_iterate +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 0x51981055 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x51c9b10f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x51e32897 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x51ebe896 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x523675d9 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x523db660 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x526280c7 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x526d9633 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x526ec6b1 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x52744f55 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x528fc0a4 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x5299e4b4 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x529bd4e1 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52b48328 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x52b7b9c7 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x52c803f5 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x52d8c375 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x52df390b usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x52f102db __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x52f39d2b dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x52f5a7e4 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x52f88ea9 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x53549bfb device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x53839d3f __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x539f157b pci_xen_swiotlb_init_late +EXPORT_SYMBOL_GPL vmlinux 0x53c9149c rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x53d25549 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x53ed40ab pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x542e850b device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x543b0454 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x5447b360 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x5477db17 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a92eb3 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x54b3a150 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x54b94de7 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x550ce709 pat_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5517856c ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x552e92e7 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55501fb4 mmc_send_tuning +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 0x55a55fe9 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x55aa3591 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55b10815 xenbus_grant_ring +EXPORT_SYMBOL_GPL vmlinux 0x55be1b20 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x55e337fe pinctrl_remove_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x55e81c9d rio_route_clr_table +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 0x55ef6da8 pci_ignore_hotplug +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 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x567b47bd blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x568c7b94 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x568debcb rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x56947347 dmi_walk +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56bc30ad devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x56c12a30 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x56c3dd60 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x56c3ffd9 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x56cf6b36 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x56d2b1a3 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f69316 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x571a1083 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x572e2909 usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x57326439 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x5746315c unregister_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x574bf944 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5779d445 xenbus_exists +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57918cfb rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57aa7f2e inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x57b84c36 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x57c0872a __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d0a5ae dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x57d98c5a reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x57de166f gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x57f216d0 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x57f8062c acpi_dev_resource_io +EXPORT_SYMBOL_GPL vmlinux 0x57fa8a91 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x58040cfa iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x581fc80c subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x5828012d acpi_subsys_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x585704ab aer_recover_queue +EXPORT_SYMBOL_GPL vmlinux 0x5877d5d7 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x587bd46f alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x5889f77a crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x588d528f device_move +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58e83c9b crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x591cd301 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x593e827f pinctrl_find_gpio_range_from_pin +EXPORT_SYMBOL_GPL vmlinux 0x594cde67 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x595b4dac disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x59688cf7 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x596c1199 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5985e844 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x599c56ae regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x599da6fc ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x59ce786a file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a01010f platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a072750 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x5a18b09f regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x5a2b1b67 gnttab_free_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5a312d29 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5a41d396 yield_to +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 0x5a9bc877 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5aa7c4ea irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x5ae5719a tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x5ae5d982 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x5aeb0ce9 acpi_node_get_property_reference +EXPORT_SYMBOL_GPL vmlinux 0x5af03a28 gnttab_claim_grant_reference +EXPORT_SYMBOL_GPL vmlinux 0x5b1009f9 acpi_dev_add_driver_gpios +EXPORT_SYMBOL_GPL vmlinux 0x5b1899f8 free_iova +EXPORT_SYMBOL_GPL vmlinux 0x5b454bcb gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x5b463a09 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x5b715e95 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5b8b2fc0 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x5babf842 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x5bbd8978 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x5bce8ca1 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd4adee crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c156ea4 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x5c1aa59b pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x5c2e1454 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c66e90c efivar_run_worker +EXPORT_SYMBOL_GPL vmlinux 0x5c755cf3 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x5c7e1d34 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5d0e368c flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d2a60d3 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x5d366dec gnttab_cancel_free_callback +EXPORT_SYMBOL_GPL vmlinux 0x5d3d09a3 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x5d5ca512 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x5d73a52f ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x5d9267fe shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5da4a58f ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da74d01 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x5dafe715 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x5dbcfa4f boot_cpu_physical_apicid +EXPORT_SYMBOL_GPL vmlinux 0x5dd0bdbe usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x5ddd1396 acpi_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x5dde7a1b __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +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 0x5e77ba35 do_machine_check +EXPORT_SYMBOL_GPL vmlinux 0x5e80b355 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x5e817007 x86_hyper_kvm +EXPORT_SYMBOL_GPL vmlinux 0x5eb0dc92 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x5ee0313d __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x5ee32376 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x5ef299da xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x5f28b777 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x5f2da8c4 check_tsc_unstable +EXPORT_SYMBOL_GPL vmlinux 0x5f5ab4f8 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x5f6a773a ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x5f90c2b9 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x5f926b08 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x5f92d95c reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x5fa0c8e8 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x5fc21409 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x5fc27be9 acpi_dev_irq_flags +EXPORT_SYMBOL_GPL vmlinux 0x5fc410d1 xen_register_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x5fd5d58d regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x5fdfa2c1 amd_pmu_enable_virt +EXPORT_SYMBOL_GPL vmlinux 0x5ffbf6d5 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x601cec7c component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x60272f95 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x603f4db8 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x6047e972 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x604888a5 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x604b9db1 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x604bb8cb dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x604e9fd1 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605d711b phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x60661009 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x60874fb3 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x6089fffe device_store_int +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 0x60b866c2 pinctrl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x60cd73ed pv_apic_ops +EXPORT_SYMBOL_GPL vmlinux 0x60cef609 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x60d4f475 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x60d9ed54 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x611f9d39 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x6143cefc regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x615a595a spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x615b4c40 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0x61696c77 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x617b45c2 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x618d1547 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x61a854bb pinctrl_pm_select_idle_state +EXPORT_SYMBOL_GPL vmlinux 0x61b0f0c9 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x61beda66 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x61cb4d72 pinctrl_lookup_state +EXPORT_SYMBOL_GPL vmlinux 0x61cde409 acpi_dev_resource_memory +EXPORT_SYMBOL_GPL vmlinux 0x61d01224 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x61e01e1d pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x61e9f929 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x61f228c9 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x61f5cc84 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x61f6d953 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x620b6fcb init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x621a7780 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x621bd7ba ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x6222f721 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x623803c8 hest_disable +EXPORT_SYMBOL_GPL vmlinux 0x62485c7b ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x6253f24f ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x625989f1 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x625d2483 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x62609815 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x626dad50 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x62734deb dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x627a835b spi_async +EXPORT_SYMBOL_GPL vmlinux 0x629c26ad pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x62a1c981 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x62a688fa rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x62e444ce blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x62e55d80 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x63117d3e raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x6326fca2 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x63353e24 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x634d51ff spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x635cff8f gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x635ec980 apei_exec_post_unmap_gars +EXPORT_SYMBOL_GPL vmlinux 0x636128be ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x636c4e0b virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x637609f7 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x63b34e3e aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x63c77c93 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63ea80b3 cper_mem_err_type_str +EXPORT_SYMBOL_GPL vmlinux 0x6406909b debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x64074491 __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64115eb7 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x64232fb7 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x642ebfee mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x64318593 acpi_dev_filter_resource_type +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64601204 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6469ea44 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x647cae98 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x64880100 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x649db78f debugfs_create_u64 +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 0x64c71964 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64eda0bb cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x64f6f483 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x6512fdcc ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x65135496 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x6513b237 ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x651916c7 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x651d7b49 sysfs_remove_bin_file +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 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x658c8186 amd_get_nb_id +EXPORT_SYMBOL_GPL vmlinux 0x65ad75bd __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d30ba4 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x65dadbcb uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x65fd9028 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x66037798 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x660e1ea0 __xenbus_register_backend +EXPORT_SYMBOL_GPL vmlinux 0x6613ab42 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x664b874d bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x665733a3 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x6657d925 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x665e9867 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x665ecab0 pv_time_ops +EXPORT_SYMBOL_GPL vmlinux 0x667ad3f2 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +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 0x66ca2523 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x66d5142b smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e1bf08 xenbus_read_otherend_details +EXPORT_SYMBOL_GPL vmlinux 0x66ef44c0 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x670021d5 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x67267b9c pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x6739a503 balloon_set_new_target +EXPORT_SYMBOL_GPL vmlinux 0x674a65a6 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6779036f rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x677d303f nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6785feb0 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67c4f114 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x6824c46a dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x68285900 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6834ac43 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x683c3c9c scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x683c85ad __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x6844b67a mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x6851dcf9 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x6859e869 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x68659329 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x6873ed93 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x687ea3c5 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68da720b pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x68e2cf4e key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x69083e22 wm831x_bulk_read +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 0x6946c033 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x6967be96 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698859d2 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x699f2cfc fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x69b89257 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x69c0e972 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x69c79e57 acpi_subsys_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x69fcd8c5 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a2a6a19 disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6a3a4102 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a57aae4 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a64a5d9 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x6a65f151 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6a6651e3 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a75265f __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x6a8040c6 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8fa73a usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6aa98bc7 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x6ab1b8bb usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x6acad21f acpi_get_cpuid +EXPORT_SYMBOL_GPL vmlinux 0x6ad55e0d get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x6aee569c dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6af50ab6 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x6b0dc565 xen_set_irq_priority +EXPORT_SYMBOL_GPL vmlinux 0x6b18ab9b crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x6b248825 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6b2494d5 xen_unregister_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2b078c inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x6b5fc44e virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x6b662b7c regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x6b6b3123 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x6b77331d acpi_gpiochip_free_interrupts +EXPORT_SYMBOL_GPL vmlinux 0x6b7d11e0 clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8469f4 find_module +EXPORT_SYMBOL_GPL vmlinux 0x6b9f40b2 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x6bd60d94 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6bdfec07 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x6be2b3a8 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x6bea0f01 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x6bf1b90d dmi_memdev_name +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c1251fd apei_exec_read_register +EXPORT_SYMBOL_GPL vmlinux 0x6c1a364d rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c389761 acpi_bus_get_private_data +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c4cea89 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x6c6538df init_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0x6c655913 register_acpi_hed_notifier +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 0x6cb2e76c xenbus_dev_changed +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6ceb344f ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x6cee77bb tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x6cf8cf3a fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x6d276c37 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x6d2bb1eb da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d4be7f7 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d8a887d ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x6d9091b1 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x6d94f62e fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d9ae22c wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6daf28cb ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x6dc97d39 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x6de4c699 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6df8f2fa inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x6e01d0ea pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0bd9d4 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x6e0c8acd acpi_subsys_freeze +EXPORT_SYMBOL_GPL vmlinux 0x6e26b8a7 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e58ddf0 gnttab_end_foreign_transfer_ref +EXPORT_SYMBOL_GPL vmlinux 0x6e61090c class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e625cfc usb_hcd_pci_probe +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 0x6e9e1781 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6ea05476 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x6ea5ca47 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x6eb18814 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x6ed61a61 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x6eef4a10 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6efa64d5 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x6f0427c6 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6f1418cf usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x6f1901e1 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f28e4f2 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x6f321f76 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x6f38869f ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x6f3b6f1c rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x6f402ba6 acpi_dev_resource_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x6f41b95e ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x6f516ab1 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x6f6e51a4 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x6f7a99f4 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe532f8 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ffe0384 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x70033f7c ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x7018159d sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x70201233 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7027d2c0 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x704b6fee gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70a445c8 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x70b3eeb1 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70dc3c94 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x70e11dee skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7109d8a5 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711300c5 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x713c6d1a sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x719aac0f __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71c8e520 efivar_entry_set +EXPORT_SYMBOL_GPL vmlinux 0x71cf8481 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e851d4 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x71ed47a9 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x7210b3a8 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x7236d8bd regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x72453015 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x724a3fe4 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x725a0941 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7273a278 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x7291d406 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x72a23a71 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x72b14cbd crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x72b719ca irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x72cdd3e9 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x72cf714d klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x72f2858b led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x73013896 xenbus_printf +EXPORT_SYMBOL_GPL vmlinux 0x730a0ce0 acpi_device_modalias +EXPORT_SYMBOL_GPL vmlinux 0x731dba7a xen_domain_type +EXPORT_SYMBOL_GPL vmlinux 0x7332d625 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x734f0276 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x735a8716 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x735daafc rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x735e580d mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x73657141 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x736cb5e5 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x738fd248 intel_msic_reg_update +EXPORT_SYMBOL_GPL vmlinux 0x739d86ed usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x73a3bcf5 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73af2d4f pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x73b45c1a pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c0cccd __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e1bef2 ata_pci_bmdma_init +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 0x7456c440 sock_diag_put_meminfo +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 0x74a5a996 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x74a960dc sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x74b3622d virtqueue_is_broken +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 0x74c5167c xen_find_device_domain_owner +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74d6ef2f nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x74deb10c used_vectors +EXPORT_SYMBOL_GPL vmlinux 0x75005826 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x75043ca8 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x751c2f81 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x751c888a class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x7521afb6 leave_mm +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7555591d crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x755f96f8 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x75888b00 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x75978836 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x75c2b9f1 memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75dc2ea2 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x76187bdc crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x76370555 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x763df98d cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x765a28eb shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x7664d7d8 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x7674af8d __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769cea32 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x76a87987 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x76d8e8af usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e6c53b spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x76ed385f acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7712771a unbind_from_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x771c0f8b iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x771ffee9 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x772b8faa usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x7732c1ec task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x773f6768 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x7742122e driver_create_file +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 0x777d1ced sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x778b675a pmc_atom_write +EXPORT_SYMBOL_GPL vmlinux 0x7790adc0 aout_dump_debugregs +EXPORT_SYMBOL_GPL vmlinux 0x779d1468 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x779d9b02 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77ba57ff is_dock_device +EXPORT_SYMBOL_GPL vmlinux 0x77cb69a3 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x7804749f rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x782adb74 hpet_rtc_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x784030c6 get_kernel_pages +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 0x789278d8 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x78955f02 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78e4db24 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x78e84890 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x78e864b8 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x78fd7d58 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x78fd9858 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x79060a43 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x790c3a12 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7915a326 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x793b173a ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79480fd8 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7954829f usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x7955c26a vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x797c11ca pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x797fa50c devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7991fd8d crash_vmclear_loaded_vmcss +EXPORT_SYMBOL_GPL vmlinux 0x79a21fbe component_del +EXPORT_SYMBOL_GPL vmlinux 0x79a4c658 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x79a71c48 kernel_stack_pointer +EXPORT_SYMBOL_GPL vmlinux 0x79bb5373 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x79bd46ee regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x79cc1612 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x79cdf513 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x79dc0d23 devm_acpi_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79ddd9a9 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x79de4da9 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e69460 intel_iommu_gfx_mapped +EXPORT_SYMBOL_GPL vmlinux 0x7a093833 set_memory_array_wt +EXPORT_SYMBOL_GPL vmlinux 0x7a097f27 efivars_kobject +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a319404 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0x7a34b7a5 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x7a3cbcbd vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x7a403984 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x7a53afad devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x7a5c923e unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7a5ce8a2 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x7a7683f5 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7a83d355 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x7a890d29 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x7a8c1d8e clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa76b29 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x7aa954b8 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ac8e5b0 acpi_gsi_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x7aca07d3 rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7ae78a1e usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x7aede4b8 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x7af8490a ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7b0178cd pm_runtime_barrier +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 0x7b60f9c1 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x7b71b72e sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x7b74c92e scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x7b90d1a9 bind_virq_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x7ba83521 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x7bd0b835 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7bff4171 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x7c15e1ec xenbus_switch_state +EXPORT_SYMBOL_GPL vmlinux 0x7c38104f driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x7c38aca7 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x7c38d08e md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7c3d9bb6 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x7c82f911 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x7c870511 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x7c8cf783 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca2f487 platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x7cb71fae inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7ce6b2fe crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d239178 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x7d45490b usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5bf107 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x7d5d1daf acpiphp_unregister_attention +EXPORT_SYMBOL_GPL vmlinux 0x7d65da71 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x7d75573e sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x7d8032c6 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x7d8c7044 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x7d93ae75 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x7d9c2402 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7db1e1ae device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x7db62b35 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7dbd7b10 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x7dd53685 intel_svm_bind_mm +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de31cd1 pinctrl_utils_dt_free_map +EXPORT_SYMBOL_GPL vmlinux 0x7de65a03 acpi_lpat_free_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0x7e235824 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x7e29657f acpi_dma_request_slave_chan_by_name +EXPORT_SYMBOL_GPL vmlinux 0x7e348f57 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x7e42c90f ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x7e570608 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e7b37f1 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e988212 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x7e9b16fa generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x7ea24db2 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0x7ec9a530 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x7eea1028 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x7eee4233 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7f0ae3bd wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f1b7b5b usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f2bea22 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x7f517228 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x7f5e48d4 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fa535ee scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x7fb01847 xen_xenbus_fops +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd77d4d pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x7fe11cb2 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x7fe9f9ac wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x801e5f8e watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x8021c53a device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x80245eee intel_svm_unbind_mm +EXPORT_SYMBOL_GPL vmlinux 0x8056981e __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x80605736 lp8788_write_byte +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 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d1cb0f ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e0d671 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x80f8589f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x80f91983 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x80fefc33 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x81112abf sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x8129d289 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x81503b4c ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81744910 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x8199d062 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x81de00b7 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x81f93a6c xenbus_probe_node +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x82375c8b spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x825746fd rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x82683847 ata_acpi_gtm +EXPORT_SYMBOL_GPL vmlinux 0x827b6acf bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x828aa1fe l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x828f50a8 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x82978442 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82d9adfa gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x82dbec19 erst_write +EXPORT_SYMBOL_GPL vmlinux 0x82dc9d6e crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x83100878 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x831bd410 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x83547f60 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x836666ce alarm_init +EXPORT_SYMBOL_GPL vmlinux 0x836a63e7 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83984041 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x83ba5fbb hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x83ce7e07 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x83f688ec inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x840543c7 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x840c1548 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x842b8842 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x843d70ef acpi_is_root_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8447a269 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8462bdcf btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x84739e25 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x847f13cc usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x84917d09 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84c46c4e power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84e839a9 acpi_os_unmap_iomem +EXPORT_SYMBOL_GPL vmlinux 0x84e8bc0a ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x84f3b212 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x84f50b10 unuse_mm +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 0x8511ffb4 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x85171ead pinctrl_dev_get_name +EXPORT_SYMBOL_GPL vmlinux 0x8517dc23 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x855228db input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x856c2f64 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x85709f43 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x85810743 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x8583a34a usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x858b0b86 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x85ae689c usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x85bf51d1 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x85c0323d platform_device_alloc +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 0x85f572e3 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x85fd97ba ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x860f82dc user_describe +EXPORT_SYMBOL_GPL vmlinux 0x860fb959 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861fadcf bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x86428552 skb_scrub_packet +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 0x86647d86 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x866b05c9 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x86819bc6 irq_ts_restore +EXPORT_SYMBOL_GPL vmlinux 0x868261e4 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86a51007 gnttab_end_foreign_transfer +EXPORT_SYMBOL_GPL vmlinux 0x86c39848 efivars_register +EXPORT_SYMBOL_GPL vmlinux 0x86cfaefa scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x86da5747 get_device_system_crosststamp +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 0x87012922 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x870e16b7 xen_test_irq_shared +EXPORT_SYMBOL_GPL vmlinux 0x87110685 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x871afcce ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8723c90c relay_open +EXPORT_SYMBOL_GPL vmlinux 0x8724e870 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x87259b93 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x87338d7d kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87410813 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x878a4b32 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x87928cdd scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x8803aa81 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x880ca64a dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88136838 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x881c474b tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x8831f8b1 kmap_atomic_pfn +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x88884293 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x88958b04 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88adbff3 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88efedf9 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x890391f4 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x891a5a7f gnttab_max_grant_frames +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 0x899138f4 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x899aa421 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x89ae807a sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89ca131b adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x89f0bccc PageHuge +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 0x8a7e1736 xenbus_free_evtchn +EXPORT_SYMBOL_GPL vmlinux 0x8a870b1f request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x8a9597f1 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x8a9b457f ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x8a9ef7b5 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x8aa868b9 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x8ab8b76a sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac386d4 efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0x8af5ec48 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x8b04668e bind_interdomain_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0x8b0ced41 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b2729c6 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x8b360bf0 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x8b6fb375 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x8b784095 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b9e4559 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x8bc41382 fpu__restore +EXPORT_SYMBOL_GPL vmlinux 0x8bc477cd inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8bc72926 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x8bcdfb09 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x8be44d86 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0528be efivar_entry_add +EXPORT_SYMBOL_GPL vmlinux 0x8c06a108 xenbus_transaction_start +EXPORT_SYMBOL_GPL vmlinux 0x8c0fa601 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x8c1061bc usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x8c2345b1 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x8c356e4f devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x8c357697 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x8c3ef723 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x8c48c286 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c649ab4 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7ee3fb dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x8c9d1661 arch_phys_wc_index +EXPORT_SYMBOL_GPL vmlinux 0x8caaa4cd lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x8cd6b99c usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cd9f935 setup_APIC_eilvt +EXPORT_SYMBOL_GPL vmlinux 0x8d0ac4fe rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3b4c33 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x8d522714 __rcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x8d8bba68 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x8d8d3ff7 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8dc93d12 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8dfbf055 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e42e42a usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x8e5e9204 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x8e816c4b acpi_processor_get_performance_info +EXPORT_SYMBOL_GPL vmlinux 0x8e919806 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8e953bab devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x8eaf659c ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8ebae4bb devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x8ede26bd crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f09376d ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x8f1d8c41 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x8f261166 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x8f43e795 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8f66be78 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f731f4d __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x8f78a0d8 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x8f875e3c rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x8f8b9559 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x8f93c518 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8fa2db67 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x8fa8ffe6 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x8fcdb53f event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x8fe3293b pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8fe95c3a device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x8ffbd14c irqd_cfg +EXPORT_SYMBOL_GPL vmlinux 0x9009602a acpi_bus_get_ejd +EXPORT_SYMBOL_GPL vmlinux 0x901f33b7 usb_autopm_get_interface_no_resume +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 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90813214 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x9086df86 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a5702c ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x90b03d11 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x90d2499e da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x90d4cb64 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x90de0452 platform_thermal_package_notify +EXPORT_SYMBOL_GPL vmlinux 0x90e8ad8e hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x90e8fc8b pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x90f34d16 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x9100d9f9 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x911ba76c register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x912f3502 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x9132c0f0 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x9150df1c __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x915cebdb public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x915e4b55 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x9160e6fb ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x9166575d crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x918eb827 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x918ee352 pinctrl_find_and_add_gpio_range +EXPORT_SYMBOL_GPL vmlinux 0x91949e58 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x91aa4018 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x91b5af51 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x91b6b9fd iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c7e342 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x91de4dcd cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x921ae7fa devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x925d24d7 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x9273db12 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x92a53ccb thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x92a79328 xen_swiotlb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92c5cfa4 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x92d53fa6 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e66649 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x92ed3a17 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x92edc31a devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x92f6e6fb dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x92ff784c device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x930b374e rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x9312d80e evtchn_put +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x933adffc blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x934ea013 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x936667ad fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x937842b2 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x9380f4fe crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x938f3b2f __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x93918975 pinctrl_force_sleep +EXPORT_SYMBOL_GPL vmlinux 0x93a9fe8b crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93ce8b08 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9405fc6b regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x940f82b0 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9428063f sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x943fc708 xen_setup_shutdown_event +EXPORT_SYMBOL_GPL vmlinux 0x944dc568 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x947c5de7 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9483a4ff pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x94896255 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x9496ec63 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x94983a49 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94af4b36 acpi_match_device +EXPORT_SYMBOL_GPL vmlinux 0x94c318be apei_exec_collect_resources +EXPORT_SYMBOL_GPL vmlinux 0x94df0ac1 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x9502f5ee tps65912_set_bits +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 0x954f071e sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9564ecbd rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x957d6550 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95b73533 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x95bb1524 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95d61fce get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x95d926bf blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x961da288 securityfs_create_dentry +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 0x96532dc5 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96566583 ata_acpi_stm +EXPORT_SYMBOL_GPL vmlinux 0x965dae4a part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x966fcddd device_create +EXPORT_SYMBOL_GPL vmlinux 0x9684c2f6 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x96b4646f spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x96be5a84 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x96cfea64 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x96e12039 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x96e1abc5 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x972a361d dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x973ab8ad cper_estatus_print +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x979a6eb7 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x97a246e8 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x97b7904b regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x97bfa4e3 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x97c02628 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x97c892dd crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e06104 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x981dcefc vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x982cc1d6 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983cce6f __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9854ef5a crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x985d0560 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x985ff21f ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x98691301 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989123eb cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9894c62f max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x989d2d58 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98a6de1f aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x98ba4adc power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x98bbffb1 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x98da1e01 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x98dd92c4 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98edab23 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98f28c24 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x98f2e528 xen_swiotlb_sync_single_for_cpu +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 0x99371566 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x993a75fd xen_xlate_unmap_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0x9957ebdd debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x995a7abc pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x995c67b1 sk_clear_memalloc +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 0x998a986d blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9993232b get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x99a55a8a devm_power_supply_register +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 0x99fa4c43 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x9a078208 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x9a0d6634 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x9a10da89 __tracepoint_extlog_mem_event +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a126ce9 pinctrl_dev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x9a1f719b ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x9a462cb2 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x9a658e0c fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x9a87fc65 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a8aad81 set_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9a8e1693 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x9a99b768 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x9aadcfa2 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x9aafbaab pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad22b21 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x9ad61587 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af59e44 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x9afaf649 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x9b3b6d5e crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x9b556270 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x9b60bf78 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9b662f45 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x9b66cc2d trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x9b720312 acpi_target_system_state +EXPORT_SYMBOL_GPL vmlinux 0x9b7ff3ca regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9b9359d2 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x9b981aa0 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x9b9f3648 pcibios_scan_specific_bus +EXPORT_SYMBOL_GPL vmlinux 0x9bcf1c0c get_device +EXPORT_SYMBOL_GPL vmlinux 0x9bd1a435 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x9bd72b78 apei_write +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9be37dca efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bfc6193 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x9c09dc5c nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c10b6d2 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x9c29e40c pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x9c2ab842 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x9c2e4b66 acpi_unregister_gsi +EXPORT_SYMBOL_GPL vmlinux 0x9c462261 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0x9c5d3962 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x9c71049b usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x9c878c8a sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x9c9c5414 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9cbb71a8 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9cbdd3b4 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ccd4f96 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x9ce4e65b l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9d06688b register_xenbus_watch +EXPORT_SYMBOL_GPL vmlinux 0x9d1008cf regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x9d3850e1 gnttab_alloc_grant_references +EXPORT_SYMBOL_GPL vmlinux 0x9d54b7b8 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x9d62c898 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x9d652fdc usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9d7d767f fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x9d805e05 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d91c1a4 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x9d978fdb attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dea30b7 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e08694e serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e52d418 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x9e58e539 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x9e7562c5 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x9e7bd5aa dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x9ebe2188 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x9ebff902 start_thread +EXPORT_SYMBOL_GPL vmlinux 0x9ec01d87 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x9ed111eb bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee88df0 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x9f04df1c scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x9f10c67b ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x9f1d11d7 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x9f820d7b netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x9f8c1446 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9fbba9f6 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9fc309ad usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x9fcaf500 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fdfa69e platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9feac120 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x9ffebdd2 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xa0137180 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa0433705 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa054a787 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xa0595e26 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xa05f5199 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xa0617f6e usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xa061ae96 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa06c39fd xenbus_dev_probe +EXPORT_SYMBOL_GPL vmlinux 0xa06c9ffa kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa082b9de bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xa0a7607f ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xa0a8802e regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xa0fdd950 device_unregister +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 0xa1600d93 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa176029b pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1947c58 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa1b2030b regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa1b817d8 pci_msi_set_desc +EXPORT_SYMBOL_GPL vmlinux 0xa1c440d7 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xa1d94124 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xa1f79553 xen_create_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xa231de15 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xa242c39f vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2779ac0 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xa2855e48 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa286a8cb dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa2881262 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa291fbc2 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa29c7c3a clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xa29dd0ae rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xa2a618b2 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xa2b9c993 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2bd65e5 efivar_entry_remove +EXPORT_SYMBOL_GPL vmlinux 0xa2d59b05 xenbus_map_ring +EXPORT_SYMBOL_GPL vmlinux 0xa3063949 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xa30ae204 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xa3272820 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xa32e235d devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xa3409cd2 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa353fffc xenbus_rm +EXPORT_SYMBOL_GPL vmlinux 0xa3572d81 ata_cable_ignore +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 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3ba6526 print_context_stack +EXPORT_SYMBOL_GPL vmlinux 0xa3cdf490 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xa3d457bc pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xa3e58789 efivar_validate +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3eb9fca pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xa3f16d7a hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xa408f8d4 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xa4189317 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xa43119c2 usb_for_each_dev +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 0xa458515a skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xa4602df5 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xa464ac3f mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xa466de38 acpi_processor_ffh_cstate_enter +EXPORT_SYMBOL_GPL vmlinux 0xa47fd5a8 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4824f26 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xa4893d60 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4bd8d00 input_class +EXPORT_SYMBOL_GPL vmlinux 0xa4eafe54 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xa4fd8f2c debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa505c21c da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xa540df5d blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xa54ec5c9 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xa55ab625 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xa55d42e7 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0xa55d5598 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xa56dbe20 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0xa57f6bba kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xa5b2c505 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xa5b47d5a irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xa5ba592d crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa5c2cd17 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xa5c97c4a cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa5d0793b usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xa5d6744f ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xa5db1d3a bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5f136fa pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xa60d6b24 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xa620130a netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa62892c6 efivar_sysfs_list +EXPORT_SYMBOL_GPL vmlinux 0xa64f3a7a regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xa657655a __efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xa66e1d5b device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xa6828cd7 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xa69c9211 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa6b04197 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c92f91 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xa6ce672c watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa7153547 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa71c9cbd ping_close +EXPORT_SYMBOL_GPL vmlinux 0xa74cc588 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xa759e4ac iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0xa7a14216 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xa7bf0004 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xa7fad8b2 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xa7fae3cb alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xa801b359 efivar_entry_iter_begin +EXPORT_SYMBOL_GPL vmlinux 0xa8142955 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xa81892c8 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xa819bf89 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xa828176c pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xa832978f fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa855985e sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xa874238a trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xa883ca7a ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa89ec7bb platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8bc5de1 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa8bcc13e pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xa8f603f8 devm_usb_get_phy_dev +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 0xa941241e regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xa947a1fd crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa9756599 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xa979a04e gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa9b29738 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa9c277cc iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa9c35573 pinconf_generic_dump_config +EXPORT_SYMBOL_GPL vmlinux 0xa9d6d5ff fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9effe9f find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xa9fe041f crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0xaa05a97f tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xaa15f525 gnttab_foreach_grant_in_range +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa509dff clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xaa72bf93 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xaa8cfc1e devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xaa94640a virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaca6c1c nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xaad26289 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xaae20d4a virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xaae39be7 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +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 0xab449356 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xab464d7b shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab63c2c4 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab829920 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xab92f576 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xaba8b572 pci_msi_prepare +EXPORT_SYMBOL_GPL vmlinux 0xababbd67 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xabbdff25 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd671db __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xabe5a5aa devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xabf298b3 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xac2ba651 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xac3201c9 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac333122 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xac559b80 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xac74dfae mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xac7d289f pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xac9ce195 kvm_async_pf_task_wait +EXPORT_SYMBOL_GPL vmlinux 0xacafa8e7 vector_used_by_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xacd81f4f transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xad1811bd xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0xad597f47 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xad67d5bb usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xad709395 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xad8d8ab0 xen_physdev_op_compat +EXPORT_SYMBOL_GPL vmlinux 0xada1b23a sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xadb2cc5e msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd16721 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadf95e03 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xae27b855 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xae5361a8 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xaed28fa2 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xaed6c82b bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xaedd1ab8 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0xaf073fc6 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xaf18a5bd gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf1dad5b blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xaf2d9c9e powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xaf4cd6d3 acpi_os_map_memory +EXPORT_SYMBOL_GPL vmlinux 0xaf5c789a fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0xaf6a30cf blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xaf9439db leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf97d80c security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xafc848c9 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xafcd252c usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xafe383a2 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xafe8bcd0 set_pages_array_wt +EXPORT_SYMBOL_GPL vmlinux 0xb0000483 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xb00cc16c efivar_entry_set_get_size +EXPORT_SYMBOL_GPL vmlinux 0xb024e71b locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xb0274c12 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xb02ac411 register_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb03bfedf class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb06c520c acpi_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07ae4a8 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bce4f0 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb0c6a283 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xb0f2cea6 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xb10a1cf6 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb12040b6 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xb12ad9e0 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14c62be raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xb1615e8c usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xb172dfb0 ohci_suspend +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 0xb18a3c5e regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xb1a5f2fe usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1bbe740 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c2a9fb dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xb1cd190b virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xb1d16bcf dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb1d2259a input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xb1d7b722 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1e894b5 blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xb1f8e365 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb20688d3 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xb208fdc5 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22d0e25 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xb24586ba __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xb24f3a82 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb2571762 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xb25d7ece ref_module +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2794b1f fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xb27f9131 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xb2a16e1e tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xb2a624d2 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xb2b2b610 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xb2bd1c79 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xb2c1312b unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb2c4d97e regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xb2d93912 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xb2e232ea fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xb2e36bc3 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2ef86a5 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xb305b7bd rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xb3253ed9 hpet_rtc_timer_init +EXPORT_SYMBOL_GPL vmlinux 0xb326aec9 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xb34465b1 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb37d2313 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb3a53658 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xb3cc797b component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xb3cdafaf __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xb3d56f3f regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb3e79a25 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xb3e96243 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xb3f5c1f2 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xb3fb628f ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb4557e67 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0xb4935779 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xb4a05ae7 put_device +EXPORT_SYMBOL_GPL vmlinux 0xb4ae670a power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4bd28f2 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xb4d3d94b sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb4d4f2b0 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xb4e14553 gnttab_query_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f211d4 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xb4f6b272 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xb50ca6d3 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb533299f xenbus_match +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 0xb559a641 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59f9c4d __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5ccdc78 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xb5ce73e7 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xb5e65d6b debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5fddd73 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0xb60f10e9 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xb61e6ff7 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0xb6230f1f gnttab_grant_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb64fe106 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6555bad tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0xb66421b2 acpi_str_to_uuid +EXPORT_SYMBOL_GPL vmlinux 0xb698c8e2 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb69c88f0 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc49a9 __supported_pte_mask +EXPORT_SYMBOL_GPL vmlinux 0xb6bdb5fd edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb6d5acf1 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6f122d0 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xb6f6ea9f iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb718f2f9 sfi_table_parse +EXPORT_SYMBOL_GPL vmlinux 0xb73167b3 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb74100ee rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0xb758319d rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb7599bc5 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xb75f61da ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xb787ab9a blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0xb79a646c pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xb7d7c12e hpet_set_alarm_time +EXPORT_SYMBOL_GPL vmlinux 0xb7e0d6a3 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb816e8c2 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xb83532b1 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xb8755b44 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb87c330c usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xb88366e1 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89e72e2 isa_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xb8b2b1f7 mce_register_decode_chain +EXPORT_SYMBOL_GPL vmlinux 0xb8be9a42 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0xb8cb639e sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8eef3e0 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xb8f10f6d scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9069ef0 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xb90d33d2 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb91ac5f7 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xb9226352 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb93bc479 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xb93dfd14 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xb99d5837 xenbus_read +EXPORT_SYMBOL_GPL vmlinux 0xb9b52ade __netpoll_free_async +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 0xb9da1e35 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xb9ed19af skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xba052edd md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xba165c61 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xba1a0b98 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba3cd6c4 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xba5c2b03 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xba699f54 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba94c685 cper_estatus_check +EXPORT_SYMBOL_GPL vmlinux 0xba9fe57e blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xbaa35aaf regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xbaaf2008 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbae1e8ba relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xbaeb89d5 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0783e9 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb1100fe crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xbb58b814 iomap_free +EXPORT_SYMBOL_GPL vmlinux 0xbb6fd8ba pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbb89529b usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xbb92528e devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xbbb98859 edid_info +EXPORT_SYMBOL_GPL vmlinux 0xbbbd7153 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xbbd4f657 xen_pcpu_id +EXPORT_SYMBOL_GPL vmlinux 0xbbe6c1dd pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xbbece25e ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xbc12f372 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xbc17f953 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xbc20f28c rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0xbc2d1568 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xbc3600f6 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbc4217d4 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xbc4daad3 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xbc54c82f xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbca0201a sfi_mrtc_array +EXPORT_SYMBOL_GPL vmlinux 0xbca357eb gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xbcaa9600 usb_phy_generic_unregister +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 0xbcd4daf5 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce586aa iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xbd14284d wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0xbd153671 clk_fractional_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0xbd169ce5 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd427cee xenbus_watch_pathfmt +EXPORT_SYMBOL_GPL vmlinux 0xbd480b65 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xbd522578 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd6dd9db pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xbd86b127 usb_scuttle_anchored_urbs +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 0xbdf0ac30 acpi_dma_request_slave_chan_by_index +EXPORT_SYMBOL_GPL vmlinux 0xbdfb69a3 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0xbdfb9f32 acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xbe06ccfb device_rename +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe1f63a9 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xbe399558 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe759b5e extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0xbe84f1ec usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbec69bca cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xbed1137c pin_is_valid +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbee83a0f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xbeeaba35 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xbeeca971 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xbeed369b powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf10959a list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xbf17d38e tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xbf200908 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf2bbd7b devres_find +EXPORT_SYMBOL_GPL vmlinux 0xbf400495 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xbf4bdddb perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbf68d2c5 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf86aeb9 led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf9d2db7 rtc_irq_unregister +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 0xbfdb3f2f cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfff0167 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc00560b4 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xc04e83a4 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xc060dba0 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xc06b09c9 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc0811306 ata_pci_bmdma_init_one +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 0xc0b78f9f regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xc0c3d187 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0d4d3b6 acpi_unbind_one +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 0xc10792d3 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc12e0ada srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0xc131db50 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xc137e252 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc13870c4 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xc1584b48 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc1622244 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xc164642e xenbus_otherend_changed +EXPORT_SYMBOL_GPL vmlinux 0xc16ccef5 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc17b3ad0 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc1969a66 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xc1b57c47 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1c2cee1 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xc1c36e57 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xc1c4116e tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc224413d pcc_mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc25b4e5d dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xc25b8971 hv_remove_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xc26351f8 bind_evtchn_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xc277f4cd regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xc27dd190 acpi_dev_gpio_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc28580b0 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xc287d96a kvm_set_posted_intr_wakeup_handler +EXPORT_SYMBOL_GPL vmlinux 0xc2ceca9c clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xc2d8d526 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc2e068d2 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc30044bd ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xc30a4ad3 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xc3122a2b cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37df132 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xc3bb6b76 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xc3c37b25 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3f85ade ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xc42018e5 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42c1a3b gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xc42fe6a5 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc458120e task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xc45bb28c pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xc4678af6 crypto_tfm_in_queue +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 0xc4aff0d0 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d0242b gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xc4d37c90 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xc4d68f45 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xc4e5f11b __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xc4f4900d platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xc5169cc9 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xc519cb54 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xc51b6f34 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xc51fb2b5 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0xc5231d1b alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc523fa04 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xc5262efe platform_bus +EXPORT_SYMBOL_GPL vmlinux 0xc5397da6 xenbus_mkdir +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 0xc57cbdca pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xc58c5a15 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xc5b8b945 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xc5bb1a30 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xc5bda498 xenbus_dev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5dba0c6 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xc5eda667 acpi_get_pci_dev +EXPORT_SYMBOL_GPL vmlinux 0xc5f4b1ef pinctrl_utils_add_config +EXPORT_SYMBOL_GPL vmlinux 0xc5f6c366 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xc5fab079 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xc609c616 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +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 0xc661d786 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc676227e fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xc6795cd8 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xc6928719 md_run +EXPORT_SYMBOL_GPL vmlinux 0xc69b0e51 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69d0d5c register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6bb1737 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xc6de46ec tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xc6f35db6 acpi_gpiochip_request_interrupts +EXPORT_SYMBOL_GPL vmlinux 0xc7002ac4 evtchn_make_refcounted +EXPORT_SYMBOL_GPL vmlinux 0xc7061ef3 iova_cache_put +EXPORT_SYMBOL_GPL vmlinux 0xc71c8e25 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xc728f133 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc748b92d crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xc75473f5 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xc7567e07 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc75ae041 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xc75e825a find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xc773aa6f da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xc791e0c4 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc7979fd9 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7bb8435 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc81b765d put_iova_domain +EXPORT_SYMBOL_GPL vmlinux 0xc82a68b8 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xc858d1ec xenbus_dev_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xc868c629 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xc86d3aea xen_swiotlb_sync_sg_for_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 0xc888f328 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc891a82b balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xc8ab1d40 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8cbebb9 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8f39723 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xc9038816 acpi_is_pnp_device +EXPORT_SYMBOL_GPL vmlinux 0xc90bb46b pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9299f6e task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc9705eeb has_newer_microcode +EXPORT_SYMBOL_GPL vmlinux 0xc97b10b3 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc9c0b6d6 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xc9c3f176 hpet_register_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xc9c66e26 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc9c7a442 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xc9c8b551 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xc9d528f8 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xc9e201fa xen_swiotlb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xc9ef9ac7 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca2c936a i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xca2f77e8 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xca3faaec skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xca5b009d pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xca682d47 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xca72eb71 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xca79c6f0 usb_autopm_get_interface +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 0xcac574b2 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xcad379c2 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xcada466b inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xcaf720e9 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xcb12bec6 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb260ddf devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb50929c extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xcb51b8f7 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xcb62a45f pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xcb6c5ee7 pinctrl_get_group_pins +EXPORT_SYMBOL_GPL vmlinux 0xcb6fcab7 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0xcb7ac94c ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0xcb87014a ioremap_uc +EXPORT_SYMBOL_GPL vmlinux 0xcbbee1a5 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xcbc36624 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xcbd18751 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0xcbd48b47 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xcbd48c3f hv_setup_crash_handler +EXPORT_SYMBOL_GPL vmlinux 0xcbdf752c crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xcbe14d2d bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbe8a84d invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xcbe8c058 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc1b1364 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc24678b apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xcc61b983 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xcc703ad0 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xcc7b26d9 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc9c4ec2 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xccba99a2 pci_msi_create_irq_domain +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccea4e34 perf_get_x86_pmu_capability +EXPORT_SYMBOL_GPL vmlinux 0xcceb5e63 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0xcd12df48 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xcd1516df register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xcd5d4ef9 btree_update +EXPORT_SYMBOL_GPL vmlinux 0xcd859cd6 ata_sff_qc_issue +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 0xcd99b9c2 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xcd9cd2ff wakeme_after_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcda872c9 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd5f97b ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcdf6b61b balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xcdf7a061 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xce117066 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xce12d037 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0xce14e7d3 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xce31a7b8 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xce3c03ae __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xce5b047d mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6d20d0 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xce6d96d7 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xceb15155 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xcec851b1 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef1dd0e perf_check_microcode +EXPORT_SYMBOL_GPL vmlinux 0xceff2495 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0xcf2fdc49 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xcf3eab85 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xcf4b8ab7 acpi_ec_add_query_handler +EXPORT_SYMBOL_GPL vmlinux 0xcf511f3c xen_swiotlb_set_dma_mask +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5d93ac vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xcf5edbc9 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xcf6901aa usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xcf6fa9d0 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcfa7d683 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd514ec hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcfe1f01e regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xcfed809e relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xcfffc3b8 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xd01a86e6 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xd0335b18 pci_hp_create_module_link +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 0xd06651e1 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd0ad6e62 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0f9eea5 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd14ded60 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xd1507e59 erst_clear +EXPORT_SYMBOL_GPL vmlinux 0xd15f5a1f __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16a9b3f xenbus_watch_path +EXPORT_SYMBOL_GPL vmlinux 0xd18f951a usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xd1c7a75e dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xd1e0b01e crypto_hash_walk_done +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 0xd21c32c2 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0xd21c9d2f rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xd221960c gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xd237a218 firmware_kobj +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 0xd2b43364 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xd2b8e402 clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xd2c58ab2 apei_exec_noop +EXPORT_SYMBOL_GPL vmlinux 0xd2cd4c43 usb_asmedia_modifyflowcontrol +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 0xd2fd83d1 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0xd33f2ebb devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd3415b33 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xd36b3dbd dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0xd370b496 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xd3878d6e __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xd3addde1 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3d45990 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xd3d69ac0 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xd3e9a271 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd40413e4 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd44145cf tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xd441a534 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd441d223 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4517d14 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xd454df67 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xd458fc86 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd45ea32f hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0xd47b49bd eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xd484438f default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xd4987d35 xen_swiotlb_dma_mapping_error +EXPORT_SYMBOL_GPL vmlinux 0xd4b2f13d rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4baa9eb devm_acpi_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d2c705 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xd4d61e6a rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xd4d9a2af srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xd4f430f0 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xd5030f07 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xd50516c4 device_del +EXPORT_SYMBOL_GPL vmlinux 0xd50df855 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xd5135faa ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xd517f6d4 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd53b2a48 gpiochip_add_pingroup_range +EXPORT_SYMBOL_GPL vmlinux 0xd544e902 pgprot_writecombine +EXPORT_SYMBOL_GPL vmlinux 0xd5508a80 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd58f905d extcon_get_extcon_dev +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 0xd5e8e049 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xd5ec92f7 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd612c116 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd6379e57 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xd643db60 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xd652ed89 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd68614c1 nl_table +EXPORT_SYMBOL_GPL vmlinux 0xd68c6648 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xd6980f10 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xd6a447d4 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xd6cea6fc __module_address +EXPORT_SYMBOL_GPL vmlinux 0xd6dfb4dd clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xd6ed3a8e cper_next_record_id +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 0xd7320a93 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xd738d862 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xd7399d2a efivar_entry_iter_end +EXPORT_SYMBOL_GPL vmlinux 0xd749dffa kernfs_path_from_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 0xd783164f raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c0c speedstep_detect_processor +EXPORT_SYMBOL_GPL vmlinux 0xd7ab2c92 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xd7b636cf pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd7c28b7a i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0xd7c2de30 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xd7ca0b1d extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +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 0xd82d1f5b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xd8396c19 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xd859701f da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd8836d26 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xd8879d8d rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xd88d1d3c dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xd8963354 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xd8b2db1a gpiochip_remove_pin_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd8c76c4b pv_info +EXPORT_SYMBOL_GPL vmlinux 0xd8ca6dea crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xd8ed1007 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xd90b38e5 pinctrl_add_gpio_ranges +EXPORT_SYMBOL_GPL vmlinux 0xd90d4869 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd919806a amd_cache_northbridges +EXPORT_SYMBOL_GPL vmlinux 0xd923afae list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd945bea3 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xd94b737e erst_read +EXPORT_SYMBOL_GPL vmlinux 0xd94cfcdd fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xd94fa823 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0xd95463c2 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96e5565 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xd97160db handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xd9742319 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xd97759b1 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xd986dad1 kernel_fpu_begin +EXPORT_SYMBOL_GPL vmlinux 0xd9882423 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xd9c887c0 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd9e28770 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xd9e35e00 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xd9e36eb6 irq_chip_ack_parent +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9ed16cb trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xda2afa67 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xda34a389 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xda42900a handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xda6c3344 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xda82c167 acpi_bus_trim +EXPORT_SYMBOL_GPL vmlinux 0xda913173 xenbus_probe_devices +EXPORT_SYMBOL_GPL vmlinux 0xdaa06dc1 acpi_lpat_raw_to_temp +EXPORT_SYMBOL_GPL vmlinux 0xdab245c2 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xdab89e4f mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xdac7dd24 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xdae671ac skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xdaecd571 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdafc9e45 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb15057d wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xdb25c6fb inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xdb29adc2 acpi_subsys_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb561160 __efivar_entry_delete +EXPORT_SYMBOL_GPL vmlinux 0xdb63a944 acpi_lpat_get_conversion_table +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbb20df9 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xdbcabf5b debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xdbf5f070 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc14a211 xen_hvm_evtchn_do_upcall +EXPORT_SYMBOL_GPL vmlinux 0xdc441036 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0xdc5833d8 acpi_subsys_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc63e8d0 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xdc6699cb acpi_dev_free_resource_list +EXPORT_SYMBOL_GPL vmlinux 0xdc6b8b75 regulator_sync_voltage +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 0xdca1259a pcc_mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xdca52be5 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xdca59f80 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdcb2fdb4 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xdcc80f2f devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdcc848b5 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xdcf895cb tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdd10567c usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd18338a pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xdd203b18 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd5277d5 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xdd80f31c xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xdd825e9d swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xdd89f02d wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdd8b3925 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xdd8c9e38 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdd9af2a7 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde104d29 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xde4656a1 sis_info133_for_sata +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde48070a regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xde4ce76e dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xde70602b sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xde747356 intel_msic_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xde7d41a0 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xde8dd926 klist_next +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdeab7658 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xdeba2d0b __efivar_entry_get +EXPORT_SYMBOL_GPL vmlinux 0xdefd6ec3 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xdf0e0a2a ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1882af dbgp_reset_prep +EXPORT_SYMBOL_GPL vmlinux 0xdf431a62 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xdf48275d pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xdf4f60c5 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xdf579604 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xdf622181 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xdf66ca81 ucode_cpu_info +EXPORT_SYMBOL_GPL vmlinux 0xdf6eb61a ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xdf75282c inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xdf88da83 clear_foreign_p2m_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdf8de219 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xdfb27de1 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xdfceb11b wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xdfefb41c tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xdff6854d ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe02c3393 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe037360e devres_get +EXPORT_SYMBOL_GPL vmlinux 0xe045e319 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xe04b7dfc clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0xe04d59b6 fpu__activate_curr +EXPORT_SYMBOL_GPL vmlinux 0xe066e6d1 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0xe069dd48 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe085bb4e handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09dea9c thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b5e4ed rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe0bc704c arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xe0c77bb5 mce_notify_irq +EXPORT_SYMBOL_GPL vmlinux 0xe0e69c1a usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xe0e783e6 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe0f58bef unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe10cd6ad erst_get_record_id_begin +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe138137e tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xe14feff3 __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0xe17654c4 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe17eca1a iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe18c8ce3 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0xe1923a6a debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1da12cf blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe1e40a70 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xe1e662e8 iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0xe1ee6b08 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xe1f7f56a tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xe1fbc24f dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe1fe1111 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xe203604f __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xe2102930 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xe216b450 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xe21c4ebb bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xe231576c tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xe24c5787 regulator_register +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 0xe2b612d7 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe2b9ab70 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xe2c45585 efivar_entry_iter +EXPORT_SYMBOL_GPL vmlinux 0xe2f53083 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3059beb serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe3425cda pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe364aaeb vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0xe3781628 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0xe3857cd1 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xe3948ff4 acpi_walk_dep_device_list +EXPORT_SYMBOL_GPL vmlinux 0xe3a1e40b devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xe3b55d82 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xe3bc7fd4 hpet_unregister_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xe3bda663 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe3ef0e7f acpi_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xe41534ce bind_evtchn_to_irqhandler +EXPORT_SYMBOL_GPL vmlinux 0xe4171828 fixed_phy_register +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 0xe44f05a7 xen_swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xe44fae9a subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xe451aaa3 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe469987f register_acpi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xe472dd32 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xe478f556 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0xe4963493 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe4a0d7af __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xe4a2d353 xenbus_dev_groups +EXPORT_SYMBOL_GPL vmlinux 0xe4c331b6 acpi_os_unmap_memory +EXPORT_SYMBOL_GPL vmlinux 0xe4c4ff26 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4ce9353 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xe4e68bc8 apei_map_generic_address +EXPORT_SYMBOL_GPL vmlinux 0xe4ffa1ac percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe50d7252 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xe514d401 usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xe524c2fb nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xe5294abc pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0xe545a811 get_xsave_addr +EXPORT_SYMBOL_GPL vmlinux 0xe5808925 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59b1896 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xe5a6052f kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xe5b8082b cper_estatus_check_header +EXPORT_SYMBOL_GPL vmlinux 0xe5d13574 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xe60266c3 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xe64ad8ea unregister_nmi_handler +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe69fc0a9 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xe6a315bf irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d516b8 devres_for_each_res +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 0xe71229ce rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe7232e0f user_return_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe74a12f7 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe75efed5 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77ffdc0 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe785304d pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe793aa5c pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xe7e1aa0a rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xe7e1cf0e bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xe7fa32d8 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xe7fbd994 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe809b1a0 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xe80e61d5 nd_region_attribute_group +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 0xe865f1db pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xe86daf93 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xe86e2200 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe877a16d power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xe8a5a8b1 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xe8a63b50 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xe8b56ed5 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xe8bf4a10 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe8e12450 acpi_pci_find_root +EXPORT_SYMBOL_GPL vmlinux 0xe8fb33c9 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe8ff34e3 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xe92d1f7e ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe958604e __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xe975533a devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xe9928bca wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xe9a3787a pinctrl_force_default +EXPORT_SYMBOL_GPL vmlinux 0xe9ae2a43 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xe9ce931a kvm_para_available +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9e0cc8b md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xea02b4dd pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xea0fed3c i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea146a7b usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xea25c6a8 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xea30d726 xenbus_dev_error +EXPORT_SYMBOL_GPL vmlinux 0xea3587ba dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xea3ad886 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea47812c irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0xea48c9dd smp_ops +EXPORT_SYMBOL_GPL vmlinux 0xea6011b7 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xea62c1b1 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xea638d8c device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea99b795 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xeaa10029 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xeaabe01c sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xeab0963d devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xeaccaac3 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xead1caf5 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xeaeb4469 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xeb12b02b __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xeb23f3d5 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xeb2798f7 xen_destroy_contiguous_region +EXPORT_SYMBOL_GPL vmlinux 0xeb280325 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb370805 __apei_exec_run +EXPORT_SYMBOL_GPL vmlinux 0xeb49a75e regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xeb4e1e38 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xeb67741a fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xeb8095c5 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xeb833c22 xen_has_pv_disk_devices +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebcd2116 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xebe1682e ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xebec4f1e pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec16543c ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec258a37 pinctrl_utils_add_map_mux +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec3f8492 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xec472827 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xec618c77 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec9ed1fd devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xecc40209 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xecd0b0cf unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xecea9cc7 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed1133eb perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xed18eeb3 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xed4a9821 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xed56b631 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xed6281a1 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0xed8a88ff arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xed8d1d5d preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xed99a26e ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xed9ce7ef inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0xedaf52c9 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xedbc6f67 gnttab_end_foreign_access +EXPORT_SYMBOL_GPL vmlinux 0xedbf108f bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xedcdffd4 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0xedea6f15 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xee042a8f relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xee05e2c2 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xee1447e9 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7aafd3 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xeea46ee3 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xeebc3b87 xen_remap_domain_gfn_range +EXPORT_SYMBOL_GPL vmlinux 0xeebccc96 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xeed06805 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xeeff8ee3 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xef1f6e23 apei_resources_request +EXPORT_SYMBOL_GPL vmlinux 0xef204490 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6e2c96 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xef82f2ab dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef8cd0e7 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xef9ac372 acpiphp_register_attention +EXPORT_SYMBOL_GPL vmlinux 0xef9dd23d napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb8fe83 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xefefd84c mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xf01940c0 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0492b99 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xf04c709d xenbus_dev_is_online +EXPORT_SYMBOL_GPL vmlinux 0xf054ac97 intel_msic_irq_read +EXPORT_SYMBOL_GPL vmlinux 0xf0696401 acpi_pci_detect_ejectable +EXPORT_SYMBOL_GPL vmlinux 0xf06f6489 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf083c77c dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xf083c825 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xf086e9cc device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf09ced0f regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xf09e386e platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xf0c2e0a6 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0c4cfa3 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xf0c86aa0 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xf0ccd551 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf11912d4 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xf12571e0 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xf14447ab platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xf162424e cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1986d0c security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xf1999c5c single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xf1a1d61e blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xf1a7f26d serial8250_rx_chars +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 0xf1cb72a4 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xf1d7739a blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xf200ebd0 acpi_subsys_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf211eb37 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf2252830 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xf2272e8c regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf234cf97 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xf2493664 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xf25c34a6 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xf25dd69e regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xf260f1ac xenbus_map_ring_valloc +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf289bd8f blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf291252d alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2bd234d __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xf2c3cad1 acpi_dev_get_resources +EXPORT_SYMBOL_GPL vmlinux 0xf2c68e01 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xf2f4dd5b crypto_ahash_walk_first +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 0xf31159f4 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31571fe wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf319fde7 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3256538 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xf32bdc5d unregister_xenstore_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf345d008 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xf35db14f __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38d424e device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xf3904bba xen_swiotlb_map_sg_attrs +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3bf8ef2 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xf3c05e76 driver_unregister +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 0xf3fea0bf fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xf40d629e pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xf40eafb6 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xf427c5f9 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf427d9ba regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xf4350aee pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xf44621f3 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0xf44905bc ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xf44d4d7a pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xf47ac0ca pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xf47f08cc __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xf493ae57 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4a4a979 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xf4ae8f69 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xf4c04e51 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf4cd219c irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf4dbca11 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50eef7d __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5163acb md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xf5434963 irq_alloc_domain_generic_chips +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 0xf57a9cae fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0xf583a5e4 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xf5928263 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xf5945bac gnttab_free_grant_references +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5c8905e usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xf5d64f89 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf5e31ec6 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xf610bd4f __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xf615386f percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf62c9749 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xf6463ba4 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xf66455ef eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xf69c3ae9 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xf6c71a25 cper_severity_str +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6daeb4b gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xf6e178f8 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6f929c0 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xf6fb2785 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xf700d38a fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xf7016530 xenbus_gather +EXPORT_SYMBOL_GPL vmlinux 0xf708ec99 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xf70acbb4 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0xf72dbf62 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xf789b94c dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf793cd2f sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xf796e262 pci_get_hp_params +EXPORT_SYMBOL_GPL vmlinux 0xf7c3f273 xen_resume_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xf7c53cdc get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xf7d6a6c8 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xf7daadc3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf7f1147d disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf81b13a9 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf81d8d86 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xf81e350f debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83427d1 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xf84df954 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xf850d079 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xf863850a debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xf86d2bff cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf889122a power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8935749 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xf894ba00 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xf8adb3bb register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8e87137 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf933ae32 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xf93ea042 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xf942b657 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf96e2b7a securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xf974a81c usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xf9765833 dmi_match +EXPORT_SYMBOL_GPL vmlinux 0xf97e10cb regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0xf98bb301 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b454d1 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xf9bfcf8a transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d9264e xen_have_vector_callback +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xfa0cbccc xenbus_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfa0f8fb4 device_remove_bin_file +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 0xfa434cd9 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xfa5ed993 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xfa7d5110 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xfa7f0fdc devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xfa7fb86e pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xfa86635a wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfa9e33f7 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xfaaf3a40 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xfb16c26a pinctrl_put +EXPORT_SYMBOL_GPL vmlinux 0xfb1f55cf ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xfb254c7d rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xfb25ce06 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3a756e regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfb3a7b75 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xfb3fb9f7 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xfb437da3 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xfb5cb83f zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xfb64b230 acpi_processor_ffh_cstate_probe +EXPORT_SYMBOL_GPL vmlinux 0xfb6bded1 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb726331 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xfb73e6ec usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfb84f126 acpi_device_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfb893180 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xfbbb9ec7 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbe02e58 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xfbfbc6dd acpi_dev_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xfc01dd4a virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc254d15 gnttab_free_auto_xlat_frames +EXPORT_SYMBOL_GPL vmlinux 0xfc26f6a1 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xfc2a3a3e __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfc3b4246 acpi_bus_update_power +EXPORT_SYMBOL_GPL vmlinux 0xfc5d8c48 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xfc968c8b apei_exec_write_register_value +EXPORT_SYMBOL_GPL vmlinux 0xfc9fb8b9 component_add +EXPORT_SYMBOL_GPL vmlinux 0xfca944e4 acpi_dev_pm_attach +EXPORT_SYMBOL_GPL vmlinux 0xfcba0aa4 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xfcdd1a12 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xfd10d1f2 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xfd17008f ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xfd24bc8f usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0xfd4551d7 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xfd4d9781 mmu_notifier_unregister +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 0xfd8147bd clk_register +EXPORT_SYMBOL_GPL vmlinux 0xfda709eb tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xfda94867 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xfdb3820b devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfdc18292 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xfe14bf9a xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xfe1953d9 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xfe681078 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xfe727411 get_phys_to_machine +EXPORT_SYMBOL_GPL vmlinux 0xfe81ccc6 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xfe98f705 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfeda02f7 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xfee02f24 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfefb69d1 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xff01cea7 xenbus_unmap_ring +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff11e7ba tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xff250378 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff2b3a9f regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xff2ce747 machine_check_poll +EXPORT_SYMBOL_GPL vmlinux 0xff2df118 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xff2ffa4c virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xff483b7b tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff704229 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xff761459 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xff7af922 usb_acpi_power_manageable +EXPORT_SYMBOL_GPL vmlinux 0xff8462e4 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xff87f99e devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xff9d66d1 acpi_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffc5a7d4 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xffcebf1f cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xffd8383c usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xffdc7b97 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xfff6d04f posix_acl_default_xattr_handler only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/i386/lowlatency.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/i386/lowlatency.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/i386/lowlatency.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/i386/lowlatency.modules @@ -0,0 +1,4755 @@ +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 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc-e500mc +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/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 0xcc4b1154 suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0xaa2e67ba uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0x6b6e295a bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xa40e6111 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 0x215cc647 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x229aba32 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x29c8ea21 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x2ebdfedb pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x46e53092 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x65cd241c pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x86b98ed3 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x9329391f paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xbd8ec709 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xe6ae4e25 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xf52e21fd pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xfbfb76d3 pi_write_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xa9775695 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1542c728 ipmi_smi_watcher_unregister +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 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 0xbbc4248a ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xbd10a28f 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 0xfc5e9b85 ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcffad8e ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x075934d9 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x2121405c st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x3006cd99 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xf358a58b st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x35cae857 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb1e0f32d xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xcf908ca4 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x00804c75 gen_split_key +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x1321fbbb split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x223b122d caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x57af79be caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x9f69c251 caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xe8471462 caam_jr_free +EXPORT_SYMBOL drivers/crypto/talitos 0xf8741d55 talitos_submit +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1034a75a dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x36f07a8d dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x470b302a dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x785b7a88 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x80cfb592 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xb7eddc45 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/edac/edac_core 0x16841dd2 edac_mc_find +EXPORT_SYMBOL drivers/edac/mpc85xx_edac 0x8e498be7 mpc85xx_pci_err_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0d2fe8c2 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f74cdc0 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1b4ec5fd fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1ce8c5ac fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2c1726ee fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x34bfcbdd fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x45467d55 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4961b996 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4d5d4eca fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x56593fac fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x617e84e2 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6bca6935 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7207303c fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7efdd11c fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7fc995cd fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8282d33b fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x84c6242f fw_fill_response +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 0x936ef2d2 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x94c7845c fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xae9766f0 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb6d477ec fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbe328fca fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc33b9ce2 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9cf4b3e fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xce2898a0 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcf1ffd18 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe16f879d fw_run_transaction +EXPORT_SYMBOL drivers/fmc/fmc 0x09223b0f fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x2c8d656c fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x3198d1a8 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x5fe82dd7 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x7a08edee fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xb72092b2 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc40c680d fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc5c24990 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xdeffc40f fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xf32869a2 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xfd375b81 fmc_device_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01452b79 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01f5782d drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03e3e9ae drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x049f54f8 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0596b9aa drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0650ea34 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x067d7229 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06fc8511 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x071f1631 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x072bb52e drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08188988 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0823f373 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08247cb3 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0832fbf4 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08786d70 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08b5c904 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09e13c22 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a3c8604 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a72f765 drm_clflush_virt_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a828373 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0ae4b94c drm_ht_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b62668b drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0b735f25 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0cf85b3b drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d6c5dc6 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d97e8e0 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e0c6512 drm_hdmi_vendor_infoframe_from_display_mode +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 0x107b0b2e drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12365b9f drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13985f54 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1425771f drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1493f71e drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14ced96c drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x159edade drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15e05cec drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1794e5a8 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1797ade1 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17ff60bb drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1c9e5a drm_atomic_plane_set_property +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 0x1ab1a039 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b5eae22 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1cd44cf6 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd335d9 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1de51ae5 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f5d8338 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2133b918 drm_bridge_add +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 0x230f427e drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23a76974 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2567bdc7 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x265f265e drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x279f6834 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x282b9af8 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x288d3708 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29d4c151 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b1f8814 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cdf5462 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e3f4a55 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fb5f725 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30a15207 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30f7e16e drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33da9bdb drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x34cb5c55 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35541839 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x370e8ea2 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x375f6780 drm_poll +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 0x38b6bc07 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39a9a899 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39f40205 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3a390318 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b948233 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cef834f drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d2305c2 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d4bf327 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d614722 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e10fb05 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41e584b5 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x422c16f1 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45766aab drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4989d191 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49c421c4 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49e4671e drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b6efcb6 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c8a4e32 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce79ec0 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e00bc2e drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e6c55fc drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x517c4459 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x51db353a drm_vma_offset_manager_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x52354873 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x547657b8 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x54d97a20 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0x559af952 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x559c0935 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5845d680 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58472937 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x598c7036 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59b4f5c0 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a900116 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b254535 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b856898 drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fab9555 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x603f73e5 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x60485ee1 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x635c8f7d drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x638ff68c drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6407a4b4 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64c9ceeb drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6571c8e2 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x685c8b6f drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x68e17c43 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x693a0a12 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b284e01 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c1ec9ae drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c8bd256 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ccc87d2 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d5ec00f drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d9422bf drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dc1bf51 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6dcf90ba drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6de49426 drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e403233 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x705716c9 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70a8cebd drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70bab05f drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x711254b1 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71f23ed7 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x723b59f2 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7278194f drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72b6093a drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73b09cbc drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75270b5b drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76d7924d drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76e1931c drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77546b7b drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a159d72 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a6051ff drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b37eac9 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc4a716 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e3f56b5 drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80669e00 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8103b3d3 drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x820dc3d8 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82bdf8d7 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82dc1daf of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85ed00f4 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87db7a47 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8af45d6b drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b0e5458 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bd17e00 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c7e9855 drm_vblank_count_and_time +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 0x909b6042 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9166f505 drm_object_attach_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 0x94edfe73 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94f293f5 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94ff37d0 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96e53cdd drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9863ad36 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x990fbbe4 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x999a5790 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99a1ba9b drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a24b54d drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9aa69a69 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c393c91 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c715b04 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e09803c 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 0xa2b3458f drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa32a5484 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa335d2d8 drm_flip_work_queue +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa35d3b65 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa383fcc4 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4772529 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa484d3e3 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4d7358b drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5b8985a drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7623ef3 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8eeed38 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa0d1a83 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa932fc3 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadbb003d drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xadfcd4f0 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae5b27a7 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaebc6531 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf900a01 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafaea3bd drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafec0f0d drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0020037 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0c471cd drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb126893f drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb17c9db4 drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb1ec1f46 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb23c510b drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3c0c6d2 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb43f4f11 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4878d4a drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5457d51 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5acc06a drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5bfe336 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6756228 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8ba4a79 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba31462a drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba47b114 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb3c6240 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb4427c9 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbeb4394 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd6695f0 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc03a4c01 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0863107 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0b819d8 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1d82812 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2b4a36b drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3192750 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc432e8d1 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4399415 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4ca15c7 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc682b893 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6e2c43d drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc938fe3b drm_legacy_rmmap +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 0xcb95ef75 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc4bbe65 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcca5644f drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcefaf536 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf73c1e0 drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd13e2597 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1cc756e drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd22c320c drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd274854c drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd33a9229 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4dbae8d drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4e9bd0c drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5bfc80d drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7c7326a drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9972706 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9bc31ef drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc4df782 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc965ca8 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd015e74 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd0bbb9d drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd5fb300 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde754ec7 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde912d7c drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf348f0e drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdfdb1662 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0594b1a drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe13a4b9b drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2e793f2 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3fd6388 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5716944 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6e5dcb0 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe78970b1 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe841555e drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe866d45c drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8dcfc25 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9a2db94 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9be9868 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb7c22e7 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed3a9540 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedea9570 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeb211d9 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0d1bbb3 drm_mode_config_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 0xf2228575 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2286a1b drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf25c66ec drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf35a29a8 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6c77e17 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6e52d4d drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7aa233d drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf839f36a drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8d9aa2d drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8dfbe3f drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa0bf888 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa5ae63f drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb74d42e drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc8bf33 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbec52de drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbfd7764 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc133c73 drm_get_edid +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 0xfd9b512a drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfda6b75a drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdd1293f drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff17368f drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x008f2148 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00c8b2c5 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01979818 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x033f09dc drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0367ca92 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03c731ff drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x054a5109 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0618028a drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x088f555b drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08ef478f drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09248c00 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x09fcada8 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d7b3297 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f3ceb97 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 0x1071c17b drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14535af9 __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1524caed drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15eab7b0 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 0x17aae6ee drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18051304 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c3f734f drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22f4eaaa drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x244c195a drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26b1164c drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a49898e drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a565f3e drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b58b32c drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2c7d37eb drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc818a6 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d3326e5 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e569b9f drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f59a209 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31a47b3c drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x329989b4 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32c28370 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3629ca95 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x37dc7d23 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38f98538 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ba6f659 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e0d9fc3 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43ded0b7 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4477338c drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4478d361 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48b5b7be drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bd4416d drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c508c63 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4da78301 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4effbc17 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5484db4c drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5663dbd6 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x59e33c2f drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ba32bde drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5bb5087e drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f1b2077 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60b3d8d0 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x617ac7bd drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x652920df drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x657ff3f2 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65a56216 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65d4f452 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x680f9e1d drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x695c074d drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6bcdc8c9 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c1a1bd4 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6dcb7fb6 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 0x74ae195b drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77195820 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78e385b1 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7956052b drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b0c0eff drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b762e9d drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7be0d99d drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7caa60de drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7cfff89d drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83dc2c8d 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 0x889b861d drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8b25aedb drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bfa509e drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d41c430 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93f29167 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9445ccab drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9726f453 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98cddbab drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9a328985 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9af07c69 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9b9e0032 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9c8d32ec drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f7f6b5a drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa166c7be drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa1fdf4ba drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2847df9 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2a3780e drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa2ada445 __drm_atomic_helper_connector_destroy_state +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 0xa7de53e5 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa88e5e2e drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa88f1a2b drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d5726f drm_fb_helper_add_one_connector +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 0xab298925 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab4e4aeb drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacb316c9 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0953f44 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1bbb4ed drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1e62189 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4cea983 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb621cb5a drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6537774 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb6a5c5f4 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaa14f31 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd0da6fb drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe136939 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf4f0b17 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc692fb58 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6ef8576 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc701d0c0 drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8a1edb0 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca520316 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd0454c8 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd8936a5 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf0a6c5c __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfa1ad60 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfb388a5 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcfca9793 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd01637cc drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1c7b174 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd27b4469 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdeac338b drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe184c6ca drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe19a326e drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1d34404 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe231e15a drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4d5bfca drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7bb72a1 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xea4b6a58 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xecfa43b2 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef9f0b51 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf35f9103 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf42ec226 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4978008 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5a56012 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf9b50e80 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc6b1c84 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe589c15 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x042609c0 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x051a5282 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x05b5d758 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x06326501 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0961dfaf ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x115f2b9e ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x139bc396 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x17b0dea7 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18fd8eee ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1977068d ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x207ff60d ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23c51360 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x25521c2d ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27e70b9a ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27f11a46 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2e23e320 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x313a7eb1 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31b6e4f1 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x414c8159 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x41af32dd ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x458a8ec6 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x54634b01 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x563f8102 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x594dfc68 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5abcfce3 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5cf59609 ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5fb93945 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x623e3d02 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6343f70a ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x670f5fe0 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x705d13ca ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x73d680e6 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x79caf9fe ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d21565f ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7e413ab3 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7f7f626f ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80ae8cf3 ttm_prime_object_init +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 0x8798cf3b ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x880a15ad ttm_base_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x883f27e4 ttm_bo_unref +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 0x8e350a61 ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9616c0a7 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x963a0247 ttm_bo_mmap +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 0xa46d1925 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa5864352 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa895df27 ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb8df8570 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbc462f28 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbd328557 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc3a1d44e ttm_bo_mem_space +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 0xd52556fa ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd64d935e ttm_eu_reserve_buffers +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 0xe5ecd8ee ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe6a26763 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedb79713 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf689b7ed ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf78d1350 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7eaad24 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 0x37ae3756 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x51f99a39 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x90260ad2 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xaac0d42b i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xcb218425 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xa10bde12 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0fb57f9e mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3c6c01c2 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x49543839 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5b9b90ce mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x634ec6dc mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x769ac4b6 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x81edda51 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x955a1f71 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9c6ef687 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x9f4a2e57 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa0bcb489 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd4869714 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdb737ef0 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdbeec8c2 mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf7ed66d0 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfd9dfe5c mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x0999b582 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xac45bddc st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x0bcda57d iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xdade6418 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x139f2793 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x3ba89edb devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x624014eb devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xa747210a iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x123b40d5 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x61989f4e hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x7d24568c hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xbcc78472 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xc50aa664 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 0xe3c08523 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x361b7f0e hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x536319d1 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x96920101 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe84db9cb 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 0x27406b99 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x2a79e183 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x3b6258f1 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8001282a 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 0xa7ff6d8a ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa8a8a80c ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xba753599 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc3946551 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc7049caa ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc77b421f ms_sensors_reset +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2f10caa7 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x57272b13 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6c00f0cb ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7c88f8c7 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xf2866a50 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xc5a39d79 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xdccd10ae ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xe2a3eec1 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0178411e st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x0e073c06 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1ff600df st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x3bb2093f st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4628313b st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4adeff34 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5b1b0e64 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x73570315 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x81454b8f st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x895ab122 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x91955346 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xace04a8d st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xcf232c63 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd5eba234 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd86d09e2 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb0e9b1c st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf1bc471b st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xa539f853 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xc4be7430 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x5b922bf3 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x5e217d0b st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xfd4cffa9 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x0bf134b1 hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x36f4ab60 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xdd97742c adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x03a60580 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x0cbf4da8 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x1d868f01 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x29e78b06 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3ca23d80 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x6eb3505c iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x7c69b525 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x81152bc2 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x857b22c4 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0xa323747e iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xa5d26d24 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xacffea77 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xb6d48640 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xc7fa9230 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xcac367bf iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe9bd9dc1 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xfeabf3e6 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x19632255 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x3b70c6c7 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x02763841 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x6b8ce5d2 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0xe04871ac ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x7708e378 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xd8f99f2d 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 0x04ba406e 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 0x55221258 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xd80a65cf rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xe34f5c1b rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1d44b498 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2f6805c4 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2faea485 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3e03055d ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x452764b7 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x556e4dec ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6a0ca1b4 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6a1d1139 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6ef69a8d ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xade26740 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbbb61f2f ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc285a334 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc302b060 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc90ff808 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xceb37b23 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdf749cc1 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe65a6ca9 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xf9f8e141 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x014c8578 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02659e50 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04c440fb ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x062103f6 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08ec7a39 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0bfacdb4 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0ce774c9 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d7b7808 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f38aa8e ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1581480c ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16edf68b ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1da6a9e8 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x20853698 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24ecbf40 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x29392680 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2a0c8721 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c407251 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33337300 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x34cc217c ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3556b80f ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cabc95b ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x40af7f73 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4110958b ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4315322a ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43db3523 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49449719 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c50d67f ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c632d2f ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f0ac49f ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4f87e805 ib_create_fmr_pool +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 0x553dec00 ib_get_dma_mr +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 0x5915b6f8 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x599689ab ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5b76692c ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5efd374a rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ff77925 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x630ad804 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x681ab761 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x730589c5 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7515d9ae ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77ef8681 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7bc3f9e2 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f2cd060 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81e4c183 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82b99be9 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x861ed0e4 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86544e6a ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x866d8c56 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x89cb0895 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a1219ed ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8c9578e2 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d2d43ea ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x90ea7cc0 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d7cea80 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f56212d ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa5e92b95 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa8b50829 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa9c8958c ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xae6fb7cf ib_dealloc_pd +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 0xba93d87a ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbaea42d2 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbf124d36 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc00a7b72 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3064861 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc646c427 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc6bb2acc ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc71f3eb0 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb1b79f2 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc503824 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcd72acf8 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcde984f2 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcf911c0c ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd4ee65ff ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7a9b9b3 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd773f8b ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe0241f75 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1c83651 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe720fa6a ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebd66257 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1bf3243 ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf7252544 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf72e2661 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd6bdb46 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2ad6546c ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2bd7fba6 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x41ebceca ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x46ce88a3 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4baac2bb ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x52dda3de ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x586ebe1f 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 0x996ff66f ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa69b4dc4 ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa9e82dd8 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xaf8c4081 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc5c424b7 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xca98b011 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x10f12674 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x26daacde ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x292418d5 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2c2e878e ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x344e8df9 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5906440c ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x97b6635f ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb9c64676 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xcf24ca30 ib_sa_join_multicast +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 0x74a71cad ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0xb7398769 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 0x0916de2d iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0b6b8bd4 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x33d898de iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x39f9462c iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3aeec576 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3be51f2f iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x48da2a3f iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5fd86c72 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 0x7081cad9 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 0x9d4b92d9 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa986fb78 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb04ac152 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc146247f iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd0aefec2 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe214fce1 iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x02608bb9 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x11951654 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x154fd0b1 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1e01e913 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x31064aba rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x34b9e16c rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x45c4673c rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4b360b1e rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5a632720 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6884f01f rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8ed8cdc4 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9eea103f rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa1f62673 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb232870c rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc4260ef9 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xc7e7c976 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd4df8321 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe5a8922e rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe6ec71d9 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf36b7c0d rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfbdabb47 rdma_accept +EXPORT_SYMBOL drivers/input/gameport/gameport 0x01131c7c __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x03a55ebd gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x257dc6fb gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x44a940f6 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6f51cdaa gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x977d3993 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9cf265eb gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa94b54fb gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcefec0d1 gameport_close +EXPORT_SYMBOL drivers/input/input-polldev 0x0dff7af9 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x0f6656ba input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x2e9a8311 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7bc98627 input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x90775299 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x5c9670d2 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x165228e6 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1bb2bbdb ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xc4990513 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x71d4866c 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 0x49910720 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4bb855c6 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x8894c0bb sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0xa65dd798 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xb112ed0c sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xfc9a1999 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x042cbc53 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xa25eb777 ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x00b8ee5b capi20_register +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 0x1e3373dd capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2b8eab1f capilib_free_ncci +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2ba8c355 detach_capi_ctr +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 0x3a546f1b capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x3cad7d6f capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x546513c6 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x55355865 capi20_release +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 0x8b226103 attach_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 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 0xbabfe13f capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xbd1b3530 capi20_put_message +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/hardware/avm/b1 0x05ef16a7 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2626c752 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x49d0a982 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x651b3aca b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6546f490 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6dbb8065 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x72f792b5 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x784bd538 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x82bc063c b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x97d5c142 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc21b1c58 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc3d23f30 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcc078e37 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd46db9ab b1_parse_version +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 0xfb99f5bc b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x07de55b1 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x122fb2f9 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x17ecfefa b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x262a0fdc b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x31252441 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x39e2a3b7 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4feabf46 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x59283ef1 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfea4a0a0 b1dma_reset +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 0x188d75a0 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6bb9df85 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x94de1c86 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xac027f48 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x0b855b79 mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x52f2b9b1 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 0x73a00c37 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 0x1db01071 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x49607034 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x75e5c958 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x8b34605c isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xad2323ee isac_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x3b099d3d isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x87787820 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdd4fa60c 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 0x003df239 mISDN_unregister_device +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 0x2494efd3 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x31ff1d2d get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x43421d52 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x448d22e4 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4735ebd8 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4a8073a4 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4d7bc70f mISDN_register_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 0x6c206385 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7357b506 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x7866e8c7 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x83f1ef33 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x89583761 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9039536d mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb64335bc mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb9c525e0 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc03f060f bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc9762b33 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xca2cf726 create_l1 +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 0xe116a213 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe5c1b7b3 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xebf4efa1 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf2d5dd6c recv_Bchannel_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 0x00aecdad closure_wait +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 0x3e6dc842 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x58896ea2 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 0x9e8b3cee bch_btree_keys_alloc +EXPORT_SYMBOL drivers/md/bcache/bcache 0xa1ec5ac5 closure_sync +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/dm-bufio 0x72f07bf4 dm_bufio_set_minimum_buffers +EXPORT_SYMBOL drivers/md/dm-bufio 0xa7978f56 dm_bufio_forget +EXPORT_SYMBOL drivers/md/dm-log 0x12708fee dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x154a09bf dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x39336376 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x8d46df2f dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x209b3a7a dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x22bb885d dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x705feecd dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x7e81cf8f dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8f113b91 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xabd2d78c dm_snap_origin +EXPORT_SYMBOL drivers/md/raid456 0x6ab1bd52 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x02a92344 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1be78867 flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2850cdb8 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x34ad4430 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x38ea4007 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4d4e821e flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x63ddea30 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x81cf718c flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9d06eac5 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xac20ea54 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd1efffaa flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xdd31194e flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe778fa16 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/cx2341x 0x1ca0c084 cx2341x_log_status +EXPORT_SYMBOL drivers/media/common/cx2341x 0x2b3be488 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 0x695fa31e cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x9e64d7fa 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 0xde1c8a21 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xc9006158 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0xc345b668 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xf1d123b1 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0d0eaf16 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x11078436 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x113b0428 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17fabded dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x19591134 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1e6b8f82 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x22d6ce4a dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x27cd011d dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2c1679e8 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33b28fc8 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3c0adcf8 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3e0fb924 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x464bafe2 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x477242e3 dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4b4201a0 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c93c672 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x72482a49 dvb_register_frontend +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 0x7cc0e86d dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x80e3832d dvb_filter_get_ac3info +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x831cb7aa dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8782ffcd dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x998c4e20 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac1ed5d2 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb7fc5468 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbb555cff dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd1c9aba6 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe4d974b4 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5490e01 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeaab4091 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xef7c2f1d dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xf6f540e2 dvb_ca_en50221_camchange_irq +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 0x822cd800 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x18b92569 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xc87f4d50 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x356c5566 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x481716f8 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4c4ccc87 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x4ce11c6f au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9a549aa8 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xabff7541 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb7652d7f au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xce55bf2a au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd176f0be au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xa4d6985a au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xb90b8637 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xbb7a55fa cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x34dae71b cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x74e39926 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x62828200 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xb4bbb979 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0xb287ca5c cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x994feff8 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x6e40ee97 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xe6a740c6 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x0082e654 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4c64495c cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5e367a44 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb47510f0 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x022e7f5e dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x6092660d dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x85130ed5 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x88e86214 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xe50ba46b dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x0dc9e815 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x24517e38 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3c1680f3 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x499d9659 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x901815a8 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa018144d dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa10338cc dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xaa31e221 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb1f8e9e2 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb4dd836b dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc4ce4022 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc9dd27de dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca5c9f71 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf3bb0d86 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf92825da dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x6aff342b dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x12ca6b6e dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2e31a445 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x2f1e3da8 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x65fbe88e dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xba30468d dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xcffcc5bd dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x21767809 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xae492046 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbe0d49a8 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xcb0be390 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x2368af2a dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xacf89973 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x07dcc752 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x17f97220 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x3e53ce79 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x664a7685 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9f29d582 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x94709691 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xe8294a6d drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x836e16ee drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x871ecef2 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x22e55165 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x59748055 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x202b0c10 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xec407c17 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xc5a31741 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xa3eeb336 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0xc4b9d73b itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x0672518a ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x786ab8e5 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x0d465146 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x3872c347 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xf57bdb55 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xec2e61a5 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x079d6f88 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x9665561b lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x54113a02 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xe8005c07 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x43df7fa1 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x6668b48c m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x7d4af7c1 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x2fc9d37c m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x5077c297 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xa2298ca1 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xe833faa0 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x649f9445 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xa2410496 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x4d4b038f nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x199ff4a3 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x6a325c36 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x3a409612 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xbf1414d6 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x0962e217 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x75031e3b s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x7881fcdb s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xcb6eeefb si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x8b8d85c4 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x5625c727 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x059005e6 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xaa1a4a6b stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x1beb7e3e stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0xbbe9705e stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x3433ee52 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x9d73ce6e stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x1b8eeeb8 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x30c4222f stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x339d1a35 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x318795f6 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x3a7f8316 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0xf7c62d0e stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x905ceb78 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x68776323 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x05a9f4fb tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x0fd0e34c tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xde74cf74 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xea61671c tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x88923b19 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x1ca163c4 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xd6c055a6 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xe74e806c tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x7b523c7a tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x809542ad ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xd021e3ff tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0xe47f91b5 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xa3d04c56 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x29ee462b zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xc14ac1f8 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x17948650 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6ac10047 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x7e69c354 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x95e7fcc0 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xaf1c5ed2 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbcea4865 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xe53aba45 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xebaa8536 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x99b71d50 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9b3aa7ea bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xadecd599 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd6ccb9d6 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x448ad434 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb7f36c46 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xf24e54b5 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x02842988 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x12800b98 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1a2eb34a dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3cb496ec read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x62e32e37 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x96fe4e34 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x97e88255 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xd02817a0 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe6b2adec dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xbe4db321 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x24521b92 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2b3e96aa cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xbbbdffe9 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xc12b0faf cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf432cc50 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x085f933b 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 0x48aa28ac cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x58caa808 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x62b4c069 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x6fadf87f cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x96dc09f3 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa35a790b cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb269b2c5 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7d96164c vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xe7d5c631 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x0aae0ffa cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x2b591fd1 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9b94755b cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xef3f340a cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x1dd1061b cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x31593f75 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x377e731f cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x39ac40e6 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5ca494e7 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x665285df cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xd0e2f5d2 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x09e749b6 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1bdafc3d cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x57c06105 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c468099 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x67344403 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7a138317 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8034d4b4 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x926a4d63 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x99153082 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa0c7bc06 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa435441c cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbfc5636c cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd2984ffb cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd54090b5 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd5c05f1a cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe0eaad61 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf0612875 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf3ce47be cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf4c4a97e cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfa631cfc cx88_newstation +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0aec0245 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1dfdd710 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x25a01a4c ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x30b63b6e ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3e41f786 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3f3d6892 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4b815af7 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5858fcf4 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x67d113d9 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6faf21eb ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x72fef0f5 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8f64e012 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xb0614f97 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xbcb77d25 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xdc129cf1 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe012f297 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe877fb81 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0227e203 saa_dsp_writel +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 0x3ad06717 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x40ace59a saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x568834d3 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x59d37968 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x645002d4 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8017b462 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xac5b29af saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb52d54bb saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbc423089 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe2821979 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfd2fdc0d saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x41cbd1dc ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x15c56cb4 videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x17e750a2 videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x5fda1772 videocodec_register +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xca24b0da videocodec_detach +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0c2726a0 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x2fb8fcb2 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x40639de8 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x58e2c8a6 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x69f99938 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x6d4d42d0 soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xef127b31 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 0x2c6e2ee2 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x781f65d5 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa1e5e9cc snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa545aaf1 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa8a7b97c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xbd5dd7c1 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc8fdde0f snd_tea575x_exit +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3c2caf97 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x44920f90 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7a39159d lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x95f7d8cf lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x96e4436c lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xa88a345b lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb7c0aee9 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xfe3f07b5 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0x2c7d4ec2 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x741f1e3a ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x2ab46b82 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x0d681217 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2e3829dc fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x8bccae29 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xa5aee216 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0x37ba527b max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xef69f59f mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x09cd8603 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x31853126 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xf95c61b1 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xb093af46 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x80f3629b qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x66e33597 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 0x5c52fce9 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x83ae4af8 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xa18438ce xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x25ebf2a7 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb0358070 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x05704e0e dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x190817ce dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x2a4e8430 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3419467e dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd03be48d dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd7014a2c dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xec7e68ea dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xf0af1090 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xff12264a dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x3e9a6073 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x4251c1d5 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x6e4198f9 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7a9798fa dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x80688b3f dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x8d845ff0 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd59bd019 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 0x5b2f127e 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 0x08fee961 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x176db3e1 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4143feb6 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x52660716 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9c85b9ea dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa4149a0c dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xaa209a81 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 0xb6d22a7b dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xcc27a7c4 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd260a7a7 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf708d438 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x35c83e72 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xa7b339c4 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x1264d284 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x22043d7d go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7a6923f9 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa3cb61c9 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaea5f439 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbb02ffb3 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe1d9c942 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf07e39cb go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf3f5af4f go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x17a86cf7 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1dc20c23 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x368254c7 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x6bad2ff4 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb70c746f gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc2b9df5e gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xefa0e841 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfb0a7177 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x1df60830 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x701d54e0 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x73ff2d60 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x083a8d10 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x23fd8cda ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x31ef0f4f 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 0xa1c503d7 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xfb07e28c v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x00397891 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x40df4aa2 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x8759a394 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa43f0a07 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xbe44e040 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xda429858 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x71c79261 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xbbdf6337 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2231c3ce vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2e80db72 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x32c5ac3f vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x339674df vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x663ce306 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x708ce477 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 0x146907c0 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0184033e video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x025a24e0 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04c12dce v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0544870d v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x057985d0 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0623ee7d v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0749eae8 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ca558e8 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dc9f2c0 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0dd84449 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ea7bba7 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x125a53f6 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1539cebf 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 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x24392703 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x280f5229 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2c7bbb22 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2dfd2694 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3086be0c v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x312c6791 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34adc7c4 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x350ca74b video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36435a31 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x369a5921 v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x38e4b80a v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3b0bcaf4 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44374da1 v4l2_of_parse_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x44ee4cf1 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a82c6d __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x46c53309 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x47a22e32 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x483241ab v4l2_ctrl_add_ctrl +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 0x502a2b8f v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x506bf9f7 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x54aaf5ef __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58d1da33 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5b76738a v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ac25a96 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x76072d66 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a732a04 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e78bee3 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x80e80daa v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x81a56797 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8c257dc7 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8cd63771 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e790572 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9686b27e v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x968e9a62 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x97a52931 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x991750da v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9bd980c9 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9db13126 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9eb8e288 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa312f3cf v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa60e9228 v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xadccc161 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf7be378 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0f8e518 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6a22c71 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbaeceaa9 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc45d9de v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc43ff535 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8a71aaa v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xca5a44a1 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcde3b705 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd6ce47af video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdc8591fe v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe96ef733 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf194ebea v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4f7ca6f v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf6f4795a v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfae5a27d video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe270bc3 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0ece9b72 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0f308cc8 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x23914741 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x37e5ed17 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4806b82b memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5f73a5e5 memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x64cd02a3 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x78c4b22d memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa5987a36 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa8227783 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa85148f2 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb4c1da33 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xd26af043 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0004931b mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0bd27724 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x21498579 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x218bb88d mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e0fde07 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e3b4b1d mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2e4c1e19 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x34d39d90 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a7f5562 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3fc467e6 mpt_put_msg_frame_hi_pri +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 0x50581ccf mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x537d234d mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5877b7f2 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5c76c634 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x68d4b041 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6f1f4cb7 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x70e20c25 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a84b9aa mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d3ebc22 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8e5c44cb mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x967959ba mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x989177ab mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9bb7a3a4 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaa0ebbda mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb7247132 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 0xcd701f57 mpt_Soft_Hard_ResetHandler +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 0xe11b4345 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xe820e380 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf87d28b5 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x18769497 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1b7efad1 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x22bccc6f mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2aed1a1c mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3169757a mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x489a90b2 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4a21a53f mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5748a321 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x58bbc284 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x673d96d1 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x78b09627 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7969d6bf mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7a33dfd7 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x81cea164 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83475fa6 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x95505c2a mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa1aff078 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa546f97f mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb0f37c2d mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb239787b mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb9adde9d mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb1d13a9 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc7c2d586 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc94161b8 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xca954aba mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xdab4eb07 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf6aefc1d mptscsih_host_attrs +EXPORT_SYMBOL drivers/mfd/dln2 0x23628907 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x8e493045 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xaab3dc3e dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x0a328294 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xeb5cab8c pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x06946223 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1a72b6a9 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x56d31a93 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x578d8e55 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6102e2c0 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x634040dc mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x643e686b mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x80427bd5 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x95a1c978 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad5aeb8e mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc9023523 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 0x17957bfe wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xb974f238 wm8994_irq_init +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 0x30c3279b ad_dpot_remove +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xb07a7015 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x37cbc168 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x079db9d5 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xc5868b22 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x448a6e56 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xe6bf3458 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x09ee09d7 tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x16f1eb30 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x232a9897 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f73367 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x82b36340 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x8b2f54f6 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8c490ae8 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x9b47ab2b tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xbcf2f4af tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xd5d729c5 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf25a36d4 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xf63bb8bb tifm_free_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0xc5873bf8 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x05adbf57 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x068e7f3a cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x271a991a cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6a613f88 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8dd826f4 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9b29946c cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc7fc170c cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1606fb40 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6850285a register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6deed86d map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xf09904b1 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xc8af4c3d mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xddd6eb29 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xe20342be simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x25c9292b mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xcfe10cbf mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x57850770 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0x6141c40f denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x1b97c03d nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x463a3270 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x6644218a nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x859f399f nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8bc319f7 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xdebe31e2 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x08dd7efb nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x097edd16 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x8dc9a2a1 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x398320fb nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x89e52d24 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 0x3020ab19 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x6eca5c65 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x8dc9c36f onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xcc6c8b57 flexonenand_region +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x33f88a80 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x4fb12831 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x553f66a5 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x99285ede arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa0a642d4 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xad26c388 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xdceec3a5 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe3d87481 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf0ce787b arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xff9ec6de arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x301bd65d com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x41a23816 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x86d82a67 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2bdc5522 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2e6c929b ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x32421ad1 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x39d37c61 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x7bcba4d1 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb1ae10de ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbed7dde9 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe01cdf72 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf4b3cda5 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf7d79714 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xd199d514 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x228aacb1 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x0dc57df4 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2721b7f8 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x597ef047 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6c226c4b cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8200e1fe t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8a9b9789 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8e8081f5 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa61ba827 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xac857bdc cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb3fb5f0f cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb8a7fa6e cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbf3d2803 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xdd94dd94 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe543aa77 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xecb879f9 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf0091aca cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x16c8a1c6 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1a15da08 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1afdb52a cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x208c37fb cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2abefa1a cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2af40498 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x307b58bd cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39c49ad1 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x41ec0caa cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4a7c811b cxgb4_l2t_get +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 0x570380b6 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5cd8d7c4 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x69d0874b cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7181da2f cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x76ba093b cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8a2cf0de cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x943779d9 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9e7962c0 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 0xab3cbdc2 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaf56cb69 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbf170891 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbfceb318 cxgb4_iscsi_init +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 0xe5d0ed7d cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe7cc2bb6 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef15a90d cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef91aac9 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfa22d86a cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffac2ca2 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x37cdefb2 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x4bf64fa8 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa4e526e1 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc4859c4c vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xda3f3118 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xea1ac2dc enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x50bc2a81 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 0xf6a5a904 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 0x0ff9abda mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19de0457 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a178817 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20c4516a mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26150285 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35c50870 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3c3543b6 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x435c7eaf mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55509bce mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59cf3051 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b37a768 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5faf0dd9 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b010f1d mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f4ec176 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7418d3d4 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75a46195 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a7b779d mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b30aa30 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d387c94 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e091e89 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f43310d mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x889f55e0 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8dcf8d7a mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x906f7bf1 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9105da25 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9883fb24 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f3bbe03 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa30f9320 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8f12aa0 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa151e66 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbfbd4eb8 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc897e0c8 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe607a077 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeaf6cae3 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb6e2fd5 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec6f41ef mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xec7a60e0 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfaeeea5c mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00d5c98b mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x071a61a4 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 0x0eb7287e mlx5_del_flow_table_entry +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x147b5b16 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16ae8848 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x19eaf194 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x27ce16c2 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ec4285f mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3e7b029b mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x40b52042 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x426de825 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4739b4fd mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x496cc338 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x56dbb00b mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b71c81f mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5bef6d5a mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6719834c mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6784a15d mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67fc1f66 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6e42c5b0 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x77b78549 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fa016ab mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x837b6a2c mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x993497f8 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9bef9360 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0845c87 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb7155240 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbbbc733d mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbe85b6be mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcfda4894 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd5a939bf mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdcabcdff mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xddd0cf82 mlx5_get_protocol_dev +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 0xed2a9bb1 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0e25a50 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf157d000 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf204e295 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2e8ab2c mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfbbba84e mlx5_cmd_alloc_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 0x59955b04 mlxsw_reg_write +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6ed1e2f3 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 0x8a033b7a mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x9580c1e3 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa2a06768 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa627f927 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbba00f46 mlxsw_core_bus_device_register +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 0xf57f6f40 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/ethernet/qlogic/qed/qed 0x7c62e1d7 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 0x03d79a21 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x0698fde1 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x128f47cc hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x1a28e7c7 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x7a3227ec hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0be42554 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x1ecad9c5 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x33ab3e25 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x404385a9 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4aee3f43 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x629622d8 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x8e1d197d sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x979ee6c3 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd8676e0e sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xf5b66287 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 0x26e7c306 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x350815fd mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x38d8a147 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x74a613ee generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xa2344651 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0xa4f1e4a3 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xb149368a mii_check_link +EXPORT_SYMBOL drivers/net/mii 0xd6e9c984 mii_nway_restart +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x827e46e8 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xd8ddbeb8 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x0e9b73f8 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x30c6503d xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf3ec110b xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0xf50f91f1 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7b33f8e8 pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xa769912c pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc53d5f8c register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x66d48f42 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x07ee21fa team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x1de846a6 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x30235282 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0x4b1f171f team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x9a7d8bb9 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xb90d9a53 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xba11f28a team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xe21376b2 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2c268054 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x30806861 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x7eed44f8 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xa324bf55 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x58fac03a hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x60af56a6 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x67d8b72d attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x74ed608b hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa00dba29 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb6ddb70b hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb8232a85 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbf35d999 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xdbcc44bb hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xefa5eace detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf89eed1a unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x8e9b6be7 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x27561cfb init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x7ae449a8 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xd0967694 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x006b4000 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x16878010 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x16b3987e dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x23216f3e ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x31f01fa9 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x32697731 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4c23ffdc ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9dd6f228 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xbce37703 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe1cfc373 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe9873637 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf3b2db52 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 0x0a807433 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x14846526 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1614ae68 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1ec6cbac ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x27d7f1be ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x47915eeb ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x55a00cf5 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x578593ac ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7d7cd8a2 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x8f69dad9 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xac4446f6 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb7c2c97c ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe81f2212 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe900c7fc ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf2785842 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x20bff965 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x232f5def ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3af30b9c ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5ca312dc ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x69cd8df0 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6baf4d1d ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6d230f93 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 0x88b67601 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x90a7ed82 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 0xa3e19b99 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc74f42d3 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x005090a6 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x043fc32e ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0a0f5f92 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x25fefb13 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 0x3499271e ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3758fcf3 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4043b508 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x551fe810 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x757b3910 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7aa9eb74 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8244622f ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8d28fc8e ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xafcf97b7 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb113da83 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb12e596e ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xba5b82bf ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbd25553c ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbe259553 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc6a53462 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xdb8d5332 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf08ca78b ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf3b83410 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf7c26bed ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01eb6eb4 ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03354b15 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x04495bca ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x061f2371 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x063152bd ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x085e3f4c ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0d4fe8dd ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1300c241 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13e24782 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x176fe229 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18001bc9 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x18ea644b ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1a18d172 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1dcdc797 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f62166d ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x212d9cd4 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23fd819f ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24453028 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2650809a ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26a52468 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x26c39664 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27959766 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27bcc4e9 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2c8864bc ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x317485ec ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3616ff55 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37be78b5 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x37ca8c0b ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3914c3e5 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a4a69a9 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x408d1917 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44c11e69 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4abe01cc ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e380095 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f7b79ae ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5aca0dc7 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5b5d7dbc ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5ca6e066 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x69020178 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b85791f ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c982ff8 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d4614c7 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6d4feb47 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6e589e9b ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f1712cc ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x72414dd4 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7330d0c5 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79482c51 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7ea51028 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x86df94ad ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x87200697 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b112344 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8b36d2cd ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f3f5f0b ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x90c09b1a ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x926bf9ec ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x964ea46e ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c4b304e ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9c767d8c ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9cce8c84 ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f84d2e1 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9ff90b41 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa3a7460a ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa49d3df0 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4e1fb22 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa539a683 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5c91382 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa643567b ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xae5066f9 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaf12d338 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb4a1f21c ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7b25d72 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb906487e ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba183fd1 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xba239851 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbd31f221 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbfe74e7f ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3034136 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc420cc46 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4ece69c ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5b298aa ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc6e6ea82 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc83e8a48 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca3d6a4d ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xca95bd8e ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb45dfc1 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb9540f6 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd19bb91c ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd82df065 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd06d0b0 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd0f8f75 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde368a9e ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xded28321 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe172e6bb ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2ef5029 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe9e72fa8 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee64c6fb ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeee922bc ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeff8b44a ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf17c8b45 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1ef532f ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6897d7e ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7aec35c ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd32b342 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe24f8f5 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x2366317a stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x3d0c269d init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x877d0d03 atmel_open +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4c7a3906 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x546046b7 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5e169d90 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x665cbe92 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8bf55bb6 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8d58241b brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa48b58f8 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb4ecccfe brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc0060329 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc1c5b1d2 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc4a4ea29 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd52e1368 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xef1d63fa brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0d725360 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x15fcd7bb hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1cfc634f hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2119939c hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x216be197 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2250b77d hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2bbe1a6c hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2c234258 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x315cd20e hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x31f1f2df hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x42c201b8 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x46cc2514 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4aed91f1 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x573a279a hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x575a104b hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6408cef9 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x97e76936 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9fb2b2d3 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa26b3f55 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa7cace93 hostap_check_sta_fw_version +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 0xd3a70971 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd741d55d hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe7f14938 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe92afd60 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfeed7eed hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x131a81a4 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1a5d5db9 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1c48a266 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x40dc834d libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x51268df7 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x54fc2b14 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5f3a5a94 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6fa3a343 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8397b618 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x851f0fb8 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xadf59137 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb626820d libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb8cef70e libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbf6d4a81 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc3400fe5 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc5bd582b libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xca9656ed libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xea3d1cf2 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf03a863e libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf651fd8e free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xff903e23 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x02ba1aa0 il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05d6ca90 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06fc2be3 il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07d81aa7 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b5cb06b il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x100d883d il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x114cfe40 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x12884afe il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13e38844 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x152f3405 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1668b47d il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1768d5e9 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19805ffb il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1b042fc5 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1d7d992b il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1e8b0f14 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ef744ac il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2116a7a2 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x226d8d5b il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23233891 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x25fea934 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x261bfaf2 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2cfd8852 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3031846a il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3039bb14 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x313f5d5b il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x31c24342 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x377134e2 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x37cc24a9 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3a594e16 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ae36f46 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b3fc63f il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b56139b il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b750681 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c36ead2 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3cafe6ea il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ed6cd75 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x487d64b6 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4da039db il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x528dfc6b il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56885ec4 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x57429726 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x585f274e il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x608ed3a9 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x619f4be0 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67119c3a il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6739b097 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67963e90 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67dc158b il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8074b97a il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84250b88 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x87573373 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x893c57d1 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x89859c05 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bd17c18 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8c4b5e18 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d35d80d il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8df6a16b il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8e6aaaf3 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f65ef3b il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x90c28bdc il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91568ee0 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96718714 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x974fc9d4 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98811320 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9944ba6d il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a43dcbf il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a92157c il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9ebc7730 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f41ce9d il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa61973e8 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa8d43a03 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xad760f02 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf8979a3 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xafc50176 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb8492bf1 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xba58362a il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd0a375c il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd280e52 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbed8b713 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc2875f9f il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3bb1608 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcc07d81f il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcdbf27d5 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xced8da9f il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdab82226 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdf655f6b il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe22badee il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3483dd4 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3a55698 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe9d8e49e il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb3387f1 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xed8c7051 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf508398b il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf6caa795 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf98fef2d il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfb384310 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfcff0b12 il_dbgfs_register +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 0x07e393b6 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x09230595 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0bc5595e alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x1e030a7f orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x278208ae orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3ed8b841 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x47a101ff orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x67264171 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x70e58b26 __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x96e59d42 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xaf785a96 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb3897e85 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb78e17cd orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc4a598a8 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc7aaf44c orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfa13d334 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x35791d67 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0374c5ce rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x061fbbcb _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ad1f83f rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0bcaa84e rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1aa65ef4 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2db0544e rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x315a1720 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x362c4caf rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3c378653 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e8b4b30 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3eb72c91 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x498b4fa1 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x599bd968 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6c8ab3f2 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6d4f800b rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f80325e rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x72d4efd5 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x73152171 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x75cca9a4 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78511f84 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7afc6455 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x83bf89c1 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9d920e9e rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9f8ea301 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1112641 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1497d70 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa2e3148b rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa67f3d8a rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa6a28cb5 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xaae0c8e5 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb31f4c78 rtl92c_phy_set_bw_mode +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 0xb4b18284 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc73a50bf _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc794ab6f _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcec855ab rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd15b01bc _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4a91f1c rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd611160d _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9ad1e8f rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda8fd248 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf15baa5c 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 0x4b8bc0dc rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xa80dfcb2 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xab145a2e rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xb7c3943a rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x81ed1cdf rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x8cb80eef rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x9d3b412b rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xb57fb716 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08a47901 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x10e992a7 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18a1ad1c rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1c96e39b efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1f47252f rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2135e0c6 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28c73f1d rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2ffedbf6 rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x366a88cc efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x375332bc efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3a0fa4a7 rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3dae91cb rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3e1948bd rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4ad0abea rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69bd31c9 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b1a8251 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7ee89b5f rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x86780c14 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x868582c9 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x940e460b rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x97074e01 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb40fc7ab rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbaf844bb rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd2a3218b rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdc3e1508 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdda43133 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf63b88c5 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf73a01cf rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x43071c6f wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa085321d wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa30f87b6 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xbc4b1dc8 wlcore_tx_complete +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0930dae1 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x6cffb7f7 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xeb449db6 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x2d13e417 microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xeab67cf4 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2abac224 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x39b83e80 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x53e0d79c nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x03ef0280 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x45a71c1b pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x00735d34 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x277f3e11 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xb981158f s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1b2ae22e ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x25408d9a ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x3436edb0 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5e895d54 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x65ddf56d st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x680bc5df ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x93f92e80 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd1af62a5 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xdc30f2a3 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xef5199ad st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xf60b5658 ndlc_close +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0583a4aa st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x19507fea st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1bbc1914 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2c580681 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x4bc21681 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x68acc22f st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6f524c1a st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x733d82ce st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x94463214 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x95adfa48 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x99db02e8 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa8cb0c54 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaf6da0e2 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd1041df4 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd8517467 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe8ac8748 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xee181858 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf12913fc st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x150e9056 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x25c3004b ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x2f9bf5c0 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x5a5df86a ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x8e7eaf10 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x97c47b52 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xb623baf6 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf690cc53 ntb_set_ctx +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x3a94920b nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xa27b8ced nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0xb82b09e3 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x02e98cf0 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x07441409 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x166ceae3 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x26f70aca parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x3ceced56 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x3e5d769c parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x46ffa1a0 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x4974c1ed parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x4f73d383 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x55c07543 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x5cdfa278 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x7328d790 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x75c03b81 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x784b4de1 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x7f47a65a parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x80f79fee parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x87645fb9 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x8b7d3861 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x8e9f465a parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x8fc64ae1 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x90417f0a parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x9cdfbfbf parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xa07cfb60 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xa6076239 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xa8993c5e parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xb0ddd6fe parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xb636bf50 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xc26defac parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xc47a51fc parport_release +EXPORT_SYMBOL drivers/parport/parport 0xce4957da parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xf15d5023 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xf2356584 parport_read +EXPORT_SYMBOL drivers/parport/parport_pc 0x60064e5f parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xf8286ffd parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x18dd8ffe pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x26e81c1b pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x39ef8e97 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3b8c4c2f pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4a634682 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5988cd24 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x67b1df49 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x6d4c0334 pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x772f8e3d pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x7fcf6a06 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x8cd4d1fc __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x92dcf153 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x95d098a2 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x98ea3035 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9f0f8189 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc2b281a0 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc661ac19 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd4207ee9 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xe138825e pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x106ab03a pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x12e472f0 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x21b7ef3c pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2ac9a00d pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x2d9151e8 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x48e82899 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7827268e pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9c5dcf84 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa0c6cbc4 pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xec70e94e pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf3b053cb pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x88458a52 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x9c69c834 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x70ab5a1f pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x9a4fd635 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xa1d4868b pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xdfa0d833 pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x0f8d565c ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x2c94e576 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0x40fd4486 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xe091fd2f ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xf6e8bd49 ptp_clock_index +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0fe3be2b rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1bbf0efd rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x2e161578 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x50f50ada rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x58c35e4b rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x78a1d47e rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbb904ef7 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd2da4b44 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd62203d6 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xeafea809 rproc_boot +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x9bd3119e ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x014796c7 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x503f56a5 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5f476666 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x88295bce scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x508b168f fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x52f52a9f fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6c321839 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8bf33038 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa101cc82 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaba5a193 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaccbc440 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb0678f78 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc41dd4bb fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeff26805 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf408f491 fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf5f7142b fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x078ab76e fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0bba8c24 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0e80e0bc fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x12b44487 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1d4f5f44 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1fd53048 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2cbcbc2d fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2dfcb823 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x32e4187f fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x40227d63 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x484fb3bb fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4e8299a8 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x52677d3a fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x54c610b4 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5ca06a57 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x63abdf31 fc_get_host_port_state +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 0x6bda4f66 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ccd3773 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6cd0a625 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e2e0df7 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6e803aab fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f9db452 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8460f7c2 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8bfa1c9d fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ce3032f fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9910b4a1 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e00d868 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1aa55a7 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa2673525 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa9c8000c fc_eh_device_reset +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 0xb4665bf1 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb4e81238 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb970eb62 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbc8b0429 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc47ebe8a fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5902d04 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcadd7329 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc82520e fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdf792032 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdfc01b30 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe0784857 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2b9ff7a fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfd703e16 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x399249b1 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5627ff54 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7080171e sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0xb332692a 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 0xa4d7e1fc mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0a07afad osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0de7e1a0 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0eda17cf osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x11d2fe19 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x138d67e8 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x160564c9 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1cd5dea1 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x48535737 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x49b204e9 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4e416acf osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x588e16ca osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5b5082fe osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5d340756 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x603ede0e osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x68a87356 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x777c87b3 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x785b4359 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8448e812 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x876a10b8 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8c8a5559 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa6b0de9f osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad739966 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb49b27ff osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc2f58b01 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc7e09330 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc80d6634 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc9b4ed85 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xca82cf3a osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda2cfc6e osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xde407d48 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeb655b7e osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xec38337d osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf10396bf osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf3546a90 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf7fa7cd7 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfa35c652 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x61231a36 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6cfd138e osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8494bf76 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8fb1f9f8 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xae2841a5 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd7496f62 osduld_device_info +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3646173d qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x3718a9b3 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x63ad20b4 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x646b651a qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6ef939cb qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x9de2e216 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa575d5ad qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa6c5aa53 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xa6f14ea7 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb692baa1 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xcdf59dc9 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf8dadcbe qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x0304460e qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1bb55d94 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x20860fdb qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3584ec40 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3da2085d qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf1a66fae qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x51e79c91 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x7790cbe2 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x91e088c2 raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x15e03fed fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1ab17b9c fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29d31026 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4737cacd fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4e4ccf98 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x51ae3bbd fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x53c9f10f fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8a226ba9 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x997c1b49 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9b1a5628 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc1558fac fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf58a243f fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf8af7d0a fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x113758d7 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d58a5c1 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1f672fb0 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x24c5ee7b sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3c9d4c29 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4cf28039 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54ad76ed sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x54b15a42 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60e11e0e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x61fc8828 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x651a5a5e sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69028b5a scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x69cff605 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7f45536a sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8159f267 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x85b8fff5 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x860a25da sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95472f0d sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x96a1811f scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaaf97c73 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4171eb9 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd937f51d sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdff0a563 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf1a875f9 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf6b2a0d9 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf9d1840e sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfd1f141c sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfd4f831a sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x6422efc1 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x9e38827d spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa540b941 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb163a5c1 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcf926e69 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x009dfae7 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x67102317 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa10988e4 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xdca1831d srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1fb5fd22 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2454029c ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3a89e9cb ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x5c9a3501 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x6705df4f ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x77924b2e ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb7b9ba08 ufshcd_shutdown +EXPORT_SYMBOL drivers/ssb/ssb 0x080abb2d ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x1bc192c8 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x2da620fe ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x556f1cd7 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x582081d9 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x599e2521 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x5b41905e ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x6775fcce ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x7b907093 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8196bbfd ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x8c007a9a ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x8fe0a739 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xa8df8078 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xb31fddd1 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcf038949 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xcf62b360 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe814474d ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xf0a14ab6 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xf26c1d09 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xf65a0184 ssb_device_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x13187717 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1d7110bb fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x20413f1e fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x29717b24 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x47295be6 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4ebefe90 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e444841 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x676e2d0b fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x67c0e3f2 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x683cc4d7 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x79fa9f28 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7d12a682 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x893e3c4c fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95c175f5 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d570d14 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa8cf9b01 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xaf54d019 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xba5a3d5c fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc3430599 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc4f160a3 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xcba78eed fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd691a602 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xda8a84ed fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf9f802c3 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x02c0485b fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xca38c728 fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xd83b4a73 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x29bc9ec8 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x759885ce hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xa66dfc40 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb6dfea15 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x50b3888e ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xa92a2b8a ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x5114cdfe cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x06f5db26 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0292fd5b rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03d9efa1 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x114020f9 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x135a9866 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x143b2750 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x15ea3169 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x189befee rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x204497a1 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2591ba25 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x264efea9 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x387f7ad2 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3d6664bd rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3dbcde26 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3ed38162 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3f3d621c rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x436f6a17 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4aa136e8 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4dc8447a rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x50a8245d rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x51cd52ed rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5cafdd90 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x62270b84 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6f115d77 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70193425 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75184fc2 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7f86b655 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x80d9b35f rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x83019a21 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85c2cf73 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x885ec273 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x89f2c04a rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e62686d rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x94ba9ccc rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x99088894 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaa7fad76 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xac2f379d rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaf32904b notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb3623b9a rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb8c8a1b0 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc36116a4 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1d96680 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd961b940 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf7514e8 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe1ebebb8 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xecfbaa08 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee7806f0 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee7a1632 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf18debe9 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf1cf7d21 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfeb1ad70 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x040000fe ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x05291621 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0850625c ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x11d89246 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x136f07ac ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x180aeea4 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1d03b80a ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20fca80d ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x24e614f2 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2769ccc0 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2908e4f2 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b1238d6 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3147029a ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x31bb6359 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x34e968c7 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53d6bdb9 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x552ceab1 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5a47b405 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ec8570f HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x60481afa ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x612a74c1 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x62da50cd ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6a19ad71 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70838c0d ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x708a5d2d ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x76150343 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x789c7630 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7fde3754 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x87adeb20 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8917d81b ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b1f2ae7 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x942c06ae ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x94ae1799 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x99f11b83 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9a706d95 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa72cf6ec ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa84bea3d ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xaa558291 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb425b737 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb547086c ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb707991d ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbc3f2708 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc8dc06a3 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd2866cc0 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd387148c DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdb3c1c1d ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xdcb3a3d1 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe177bb13 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe4844a8b ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe98e95c4 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xee271271 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7be93e3 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfaba8f11 SendDisassociation_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0ad2c491 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0be5654e iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x23b68745 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2629a792 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f8894fc iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31e0a37a iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x442db948 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4dbc754c iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x52bec7f9 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x54ebd4e8 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x558f7246 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5f72cf0a iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6db49e3a iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x83fdd432 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8a38ff7d iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9479d967 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa59242a3 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaba02215 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xaf78f480 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb1a2f99a iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc9433601 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcaded5ca iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0607cc7 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe0efeeb3 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe14a9292 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe2874fb8 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3692487 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf361f0b2 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/target_core_mod 0x02c147b5 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x03cdd99a core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x04d0bb19 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x06f1bd1a core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x0a87a26b sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x0b034656 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x0c585442 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x13dcbb54 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x13edac86 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x16b305ea target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x19513da5 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x1edaa982 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x2984aa82 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0x2bff6b50 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3824d6fb target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x384000e0 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ae67c79 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x54793a14 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x5986cf66 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x5deaea78 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x657a5cad target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f94014d target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x710ac340 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x74b252cb transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x752ae4ab core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x78717880 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x793de820 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a472451 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7bd4016d target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x7db9c237 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e983d6b target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7fb8dd17 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x86965e7e target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a66c1f8 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x8b8b9d34 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f2fb574 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8fed763d target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x94b55075 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x96adff81 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x96b23843 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x9dab49ad transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9e2363d7 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xa817c8d8 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xab617ea3 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xabbb465b transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xac6dd73d passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb12317fe transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb18bdbb8 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xbfa87bbc sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xc1f0ebc8 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4173b8e target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5c96bae spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xc63efdfb transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xcb18255c transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xce12255e transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xce9de189 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd5a28c9c target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd817cf4c transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xdb7ca113 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdc6441e7 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xe01a38cb transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe49b352c target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8bce19d target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8fe6775 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xeba0badc target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xee503e1e target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xee8a7792 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4233e5f transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xfad16716 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x60583620 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 0xe8c14f57 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1748f2e8 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f5411be usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1f9ca02d usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x21006047 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4a1caa64 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4e8a81f1 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x502dcff7 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x506b74f9 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x5c762605 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb2e212f3 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xeab5288f usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xeb343341 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x79dbffa7 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x84a956c0 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 0x0bbcca13 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xb7e1b936 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xcabb120a devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd4a03575 lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x19e083b0 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x379dfa6b svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3c605f77 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 0x705e36b5 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x80f24d95 svga_wcrt_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x825c0c76 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xb87b32e5 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc75dbb4d 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/cyber2000fb 0x0cc3ede5 cyber2000fb_detach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0x1137dbf0 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 0x72db4bc1 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xa357c9f1 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xf6cf0a06 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x52018637 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x8a90d1dc DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9f3eeaf3 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xce4d6704 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xe466d1f3 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x640de6e7 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x1a9dbcff matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xc416ecaa matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf7ed9f2f matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xfc38da72 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x3f6dc474 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x66896dbb matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x026a231b matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x0b939402 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x37efba51 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8ac02921 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xb57feff3 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x2307290f 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 0x2baa3fbe w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x30e8af47 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5f015ae4 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe7531e36 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x02bbbe57 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x0cafb06a w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7064c534 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe043f7a3 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/wire 0x1999ed33 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x430cc101 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xb10de1f7 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xbbe8a9fb w1_register_family +EXPORT_SYMBOL fs/configfs/configfs 0x108742b5 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x2a16158b configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x2aa50095 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x2eed866d config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x418547ca configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x760f92ee configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x85233eb4 configfs_unregister_subsystem +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 0xc8166888 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xd58edcaa configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xdc840539 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xf6a61a62 config_group_init_type_name +EXPORT_SYMBOL fs/exofs/libore 0x01aad38c ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x34d07886 ore_create +EXPORT_SYMBOL fs/exofs/libore 0x43c7a775 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x5448d48e ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0x8d154ea2 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xa9f12bfd ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xb8ff90e6 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xd8bff702 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xddeaa5f8 ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0xff1ed558 ore_read +EXPORT_SYMBOL fs/fscache/fscache 0x01d2a4b6 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x04825805 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x052086b0 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x12a3101e fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x1a752f83 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1e48a292 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x1fab3af8 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x26f415a9 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x281343a9 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x29fd01bc __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x39bd6c8e fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x3e3ecac4 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x44aced7d fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x4feb3c29 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x55c3633c __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x5876d6ab __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x62cdfc5e fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x650a3d97 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x6f70ddfd __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x72476698 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7c9b5f9f fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x7ca1fe1a fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x86fa5797 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x908c79fe fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x96c10d3c __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x9afadafb __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x9dd1458f fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x9e11ffe2 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xa3cc87b1 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xb5fd20be fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0xb826ea9e __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xcceffdd9 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xd12766a4 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xd388c552 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xd9eb0d6e fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xe6016758 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xe7274148 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xe86c6b1a fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xf5e4342a fscache_enqueue_operation +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x1f8ffe0d qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x4370a1d6 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8f2ef996 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xb7271e9e qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xbbe8d88f 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 0x82d29044 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x84e0214b lc_committed +EXPORT_SYMBOL lib/lru_cache 0xbbe7c23c lc_element_by_index +EXPORT_SYMBOL lib/lru_cache 0xc1273141 lc_seq_printf_stats +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 0x8efbd38f lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0xeb1ec6fe lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0xed5a61c8 lowpan_nhc_add +EXPORT_SYMBOL net/802/p8022 0x440c45e0 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xe3f9b9d3 register_8022_client +EXPORT_SYMBOL net/802/p8023 0x0446087b make_8023_client +EXPORT_SYMBOL net/802/p8023 0xff705389 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0xa2e8d3bb register_snap_client +EXPORT_SYMBOL net/802/psnap 0xcc65f0f6 unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x032c2037 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x086c0776 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x0b85af24 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x0bf4e2f7 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x2a09d9c5 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x3712e446 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x37ca330d p9_client_destroy +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 0x47ac42d8 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x47d83d81 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x4a1030b6 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x50ad5d26 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x535d1b02 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x5dc5273c p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0x627f683d p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x64aeff2a p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x66d22f82 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x79ed04ca p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x7ba63d95 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x8b648be9 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x8ba16578 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x8f7df73b p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x9dbe47e5 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xafd71ee2 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xb10ce93c p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xb2dcf32c p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xb3f63ff7 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xb701e048 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xb7dfad33 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xb83e7d97 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xbd9a3ef6 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xd4d59929 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xd4fe34b6 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd6969c45 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe01d1b52 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe8408464 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xee7f687f v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xf46b8465 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfb7762b5 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x0b7e726d alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x5be502b6 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xe23f2073 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0xe3629075 aarp_send_ddp +EXPORT_SYMBOL net/atm/atm 0x070fda1b atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x15908ff2 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x2fbe1731 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x394ae86b atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x3c7195ce atm_charge +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x5f8de5cb register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x74117bb9 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9560cf4d atm_dev_register +EXPORT_SYMBOL net/atm/atm 0x9d56fa15 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x9e131d29 vcc_insert_socket +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 0xcd6a5844 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xddeed470 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xee0c261d vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x0efe219d ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x1a1d4d74 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3ef5c91f ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4e168def ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x52119513 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x53cb4eee ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x75aff4d8 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 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xfd459b92 ax25_linkfail_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x052ad9fb __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x06470265 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0783d087 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b6f0878 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d6a925a hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x137ed5f2 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14c4eafc bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1506bc74 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x169332b9 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1896a0eb hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1cda8abc l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fb25266 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x28131b7f l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2bec00f5 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x344e0403 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3f829e6a bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4494d8bb hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x44f101f1 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47bbef41 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4bf1d9b9 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x54e3abf7 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5615491f bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5930b41e __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5fd36e4c hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68eaa0c1 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7abf61d6 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 0x925c8ca5 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9460cf02 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x94e05139 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x94f6c2d3 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa6f7e0e3 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xae7cb78a hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0d3e91b bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc7a42a5d l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9f279b1 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9ada152 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe1ea9bd9 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe3de94b6 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xed45670a hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xefc3ea07 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf7cacdf1 bt_sock_poll +EXPORT_SYMBOL net/bridge/bridge 0xe7c3e1e7 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x11ab2f73 ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x51bd33b0 ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x7388ca0c ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x0b8c20d4 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 0x762c1ec7 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x7a7a874d caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8ae286f2 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 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xd4e677c5 get_cfcnfg +EXPORT_SYMBOL net/can/can 0x0de12e33 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x11b6a76a can_rx_register +EXPORT_SYMBOL net/can/can 0x4f81050c can_ioctl +EXPORT_SYMBOL net/can/can 0x513a7c80 can_send +EXPORT_SYMBOL net/can/can 0x6fe1b119 can_proto_register +EXPORT_SYMBOL net/can/can 0xfdbdb215 can_proto_unregister +EXPORT_SYMBOL net/ceph/libceph 0x06b0028c ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x06c5bb36 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x06d56610 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x07672d1e osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0ad2cf9a ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x0ae5bbbb ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x0bd91a0c ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x15d2c539 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x180f9ef7 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x18dedbd4 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x19f8d240 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x2642374d ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x29355616 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x2ba37580 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x2f5af3a7 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x34440710 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x344d880e ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x34c076f0 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x3649fc57 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3bde3923 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x3c1d9414 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x3ce98074 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x3f688151 ceph_put_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x40361f65 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x40753fe7 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x40e9fb59 ceph_parse_options +EXPORT_SYMBOL net/ceph/libceph 0x43e458f6 ceph_file_part +EXPORT_SYMBOL net/ceph/libceph 0x43eeced6 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x43efd647 ceph_calc_file_object_mapping +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46b618f2 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4e9bf205 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x54c21c65 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x586b74dc ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x5b3c3e98 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5bdf69b1 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x5f17315c osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x5f20726a ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0x6021f6d4 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x62a5d148 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x6832580b ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x68f55af0 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6f0f151c ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x710950f2 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x78e04d30 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x7961170c ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x7c69c455 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x7d38ab72 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x7f56541b osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x80947802 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x82ca700b osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x83d89860 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x8469c4b6 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x8ba4c604 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x8fdfe198 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x94d01784 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x97f9e10c ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a2cce2c ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x9b5d86de ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x9dfdfe47 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa1852c5d ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa61c1bff ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xaa5e0583 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xaa8461ae ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xad41eca3 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb0652981 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xb19dc152 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xb40b57e0 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb7f52830 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xb8fed9a5 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xb997beb3 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xba7efb8e ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xba90b109 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbb810bc3 ceph_msg_dump +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 0xccd992a8 ceph_auth_invalidate_authorizer +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 0xdefd7062 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xe23bdf8c ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe251230d ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe29fd5f4 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xe3d606a2 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe93736b1 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xea01d0d3 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0xf371bfa0 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xf55bc276 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xf76d13b0 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xf8c80431 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xfeb1905e ceph_osdc_start_request +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x6c9436e1 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x9b61cee7 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x4f1f44c2 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x6c180536 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7445228a wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7a27bb09 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0xd4ec9c66 wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf36b1a8d wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x482772bd fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd6f28159 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x237cf50b ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6f655fb8 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x86babe6f ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8e4efa2c ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb3fc5d01 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf91c676b ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x238828e4 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x801155b6 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc9c73048 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3e7ad421 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x8868644b ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xc2e8d0e2 ipt_register_table +EXPORT_SYMBOL net/ipv4/tunnel4 0xe1dc21a2 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xf74f5f81 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x105392ff udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x2bb5703c ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6887f1bc ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x7473d800 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x781ebe75 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x1a400132 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x548e861a ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x677d8e8d ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x425c8f55 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0x82c22140 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xbe678d01 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xee1837c9 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x193b241c ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3dde7ce3 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x42ad5de9 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xbe59e0ed ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc446a539 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc648d2f4 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd6db05d5 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xdfecd546 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x0528ffa7 irlmp_disconnect_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 0x0decafa3 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x17fc627b irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x29ee2bf7 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x3064fbee irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3d1d3de8 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x3e833763 irlap_open +EXPORT_SYMBOL net/irda/irda 0x448b8aaa irda_qos_bits_to_value +EXPORT_SYMBOL net/irda/irda 0x4597a82a irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x46c1c4a2 irlmp_unregister_service +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 0x6d1b5778 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0x6e0ab3c7 irias_add_string_attrib +EXPORT_SYMBOL net/irda/irda 0x6ffae55f irlmp_connect_response +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 0x8afc2962 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x9e4d4619 iriap_open +EXPORT_SYMBOL net/irda/irda 0x9eefd5bb irttp_dup +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa22a198e irda_notify_init +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xae87fbe9 iriap_close +EXPORT_SYMBOL net/irda/irda 0xb7d16b4d irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbc474bf6 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 0xbe598666 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xc14414af irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcd800755 irlap_close +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 0xdb523412 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xdc218f2f irttp_close_tsap +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 0xed922b0c irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf252db57 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xffac006a irttp_connect_response +EXPORT_SYMBOL net/l2tp/l2tp_core 0xd9514326 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xebb01ab0 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x0a1e9654 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x0c743386 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x5db49329 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x6b0d1dd2 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x73ba0a3a lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xa37a0abe lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xb5f9ed24 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xf66fbc2b lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x41a872d7 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x5b83f4ca llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x81602c9c llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x9394bddf llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xac90792b llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xbf75aad2 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xd8c3bd13 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x02ff8140 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x04350f6d ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x0627cb16 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x0c021045 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x11596b4c __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x1d3b03ea ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x1f2ca512 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x23f2ccf9 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x28262258 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x2857a9a7 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x2f7f0c21 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x307be65a ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x30c9eb9e ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x310908d3 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x34fe39b5 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x35256045 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x3551649d ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x3c0be14a ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x3e1a8fcd ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x3ebc1dee ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x454ebaf0 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x45ea6e4c ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x4820a065 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x4cd4fdc0 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x50c12c42 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x533ccff2 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x57193bc4 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x58e7afb0 ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x60e31b44 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x626b108e ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x64b86f43 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x6bab5b9c ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x6d2c70e2 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x6fce4525 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x73fb6c7c ieee80211_start_tx_ba_cb_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 0x79bcad76 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x7f0f14f0 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x8483b3dd ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x85b42f49 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x89861a3c ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x8a64ddda ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x8aa00732 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x8b31173b ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x8e090b24 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x97362be6 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x978a152c rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x982bc2e4 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x9b09a2df ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9b9ce8ff ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9bb117aa rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x9e64f0d4 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x9f018628 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xa09bd38f ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa103c573 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0xa55cae2e ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xa9bd0bf2 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xa9fee708 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xad28986b ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xba84ab8b ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xc23baa41 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xc84a8e79 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xca895de8 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xcb18ed58 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xcd06e998 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xcf7ef7ab ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd00eb6e4 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xd2542e42 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd841a7e4 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xd92d2c20 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xdc900854 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xdf8dda51 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xdff3679e ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0xe15dbafa __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xef937a23 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0xf37c2817 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xf61b68ca ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xfa6f0e88 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xfe989126 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac802154/mac802154 0x08dde012 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x0e540d12 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x13a4b2a6 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x3594f25e ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x813c5054 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xaa8da0a6 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xd90d0798 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0xdc8a19cc ieee802154_wake_queue +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x1cf97f02 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2af1d55d ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x321171f8 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3d219a32 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3f5fc1b2 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5c571924 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x934e4d0a register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9bcc8bb9 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa30b34a3 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa3edd345 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xa8c41a0d ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe2ecb56b ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xea2ea9d9 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xffb31af0 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x290e3a2d __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x766eb779 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xbbbfea02 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x485e2e26 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x4ad7bab2 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x57016cdc nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x72fe2f18 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x89e560f9 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xdc79c659 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/x_tables 0x0131745a xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x2c04cbc2 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x67e93166 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x845b93cd xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x9ad23d42 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xab7e7c21 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0xb70d280b xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xc4c23982 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd5e4692e xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe31207ad xt_register_targets +EXPORT_SYMBOL net/nfc/hci/hci 0x02cf3451 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x07d213b7 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x167bb901 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x28324e8e nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x2a33058c nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x4249655e nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x56dc2cd0 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x5701c21c nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x75d936ce nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x7ca33a54 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x834b4cee nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x8820cea1 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x8a5d6b8a nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x92f79259 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xaa332899 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbc190185 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbf615de5 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xc6959dd6 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xdd32dc24 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xe26fd701 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0xe4dda9c5 nfc_llc_stop +EXPORT_SYMBOL net/nfc/nci/nci 0x0117c551 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x032ad208 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x101ab115 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x120ae2b6 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x13bd6d4c nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x1ada9a2e nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x1b99644e nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x3451fcae nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x35651e46 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x404b4d57 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x4f5c99f8 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x531cc235 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x558bff86 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x6a941b22 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x7362e694 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7eed4241 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x85c8b72c nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x8a199514 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x8c47100b nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x8c5f683a nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x8cc4c7fb nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x927c0da3 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xab0a9bc7 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xaf438237 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc576fa79 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xf6c24b89 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xfa7d3ecb nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xfaf3e251 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nfc 0x0c210d27 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x0f91c8c3 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x17e9f87b nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x1847a316 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x24a727c3 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x28bcde00 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x318b4ef5 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x31926162 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x3d40b5e3 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x56455b39 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x5e885bbf nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x62866aa3 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x6a737a49 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x83a470ad nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x83c79c16 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x87abac45 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x92721653 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x9ada123c nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xa99dcadf nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0xabfb796c __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xb56c3e1c nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0xd1d9a6fe nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xec4e3306 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xecd5d66d nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc_digital 0x4f50c4b4 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x83ab0882 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9ad06fbc nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xf82a2c5e nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x0ccaf176 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x28a69c0a phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x497a55d9 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x58b605ad pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xa5f3a9ae pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0xc2cb3d2d phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xd8507838 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xda43f458 pn_sock_hash +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x16e21911 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3327285d rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x43c2dbfc rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x48ee1b14 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5f7c566c rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x6fc5d4ad rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x70593ba4 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x75d51062 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7aceeecd rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x82b34f22 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb12eaf56 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb67b701f rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc6bc252f rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc919206b rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcc766b39 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/sctp/sctp 0x6cc2c012 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc1d0c326 gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf0f09686 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf22ea24a gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x98ce0cd2 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xab9535f9 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xddc6a389 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x63a79d6b wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xb6fd8510 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x00027cd1 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x051efc0e cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x05796fd1 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x0735c418 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x146eefbe cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x17040d21 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x191825ff cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1c58ef8a cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x1e1d0423 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0x1f2bad25 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x1f73a493 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x22d46cb6 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x28a4fed7 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2add68ea __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2bd12e4d cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x2e6b1f9c cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x2fa0f28b cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x38a81768 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x39e7ea96 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x3a14eaab wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x443ba6d2 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4985de1b cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x4b7bbbd0 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x4d52fe1e cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x4d5b40f9 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x5141a51f cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x55e87795 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x565db9bf wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x56be2502 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x5b3df3ac wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x5c842d23 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x5fd11023 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x60c5bd6d cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x60d55b96 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x621689a6 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x66082ad7 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6b20a80a cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6f2c0819 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x72e78198 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x75b035ee cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x775b4f2f cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x81e09e5d cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x877f0269 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8bdab203 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8e82f966 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x91bbb69b cfg80211_rx_unexpected_4addr_frame +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 0x984a9b9e cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x9da59f7f regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x9ee50b53 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xa0a8428c cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xa1425906 ieee80211_channel_to_frequency +EXPORT_SYMBOL net/wireless/cfg80211 0xa159e909 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xa197b1ff ieee80211_get_mesh_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0xa2465516 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xaaceaa6c cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xad2b5e2e cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xb35e0e38 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0xb477c5db cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xb9a777c7 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xbe60eafa freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xc09fd961 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xc2b03d08 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xc3833452 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc6d0e2d7 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xc830fad6 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xca57b0d1 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xccefa545 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xcebb6859 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xd11eeb53 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xd5df3894 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xd6dfb2f7 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdbf2e1e2 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xde241cb3 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xdeaeeeb5 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xe43e4c26 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xe7424f48 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0xea3f0bc0 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xeb022156 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xee70d3f3 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf0f4203f cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xf6015a57 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xfbca5abb cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xfd806f41 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xff61b20f cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/lib80211 0x3ab45659 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x5580ab1b lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x69e4fac4 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x71dedc3d lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0x759266c1 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xe4e3afd9 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x5ba193a9 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x3761db51 snd_mixer_oss_ioctl_card +EXPORT_SYMBOL sound/core/seq/snd-seq 0x137b7f2c snd_seq_kernel_client_write_poll +EXPORT_SYMBOL sound/core/seq/snd-seq 0x1519c384 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 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 0xa31e99a0 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 0xd0d7a2cf 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 0x9b91f13f 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 0x7afb433c snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02219d47 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x02680449 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x05cb7f96 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x07e0b1cb snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x0cb14901 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x0d8b8b02 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x11df3507 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x156cb680 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x16aa2b81 snd_ctl_replace +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 0x19a29862 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x1c248d10 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x1d749038 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x1f9f5e6b snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x24d05f04 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x26b80e80 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x31051f2d snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x44a90e62 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x46fb6f42 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x49a3a4cd snd_cards +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4f49cd2e snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x52e6fa0c snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x5f0dda0a snd_card_register +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x6042242b snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x6119c1bc snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x791070bc snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x79b9c885 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x7a2582b5 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x7e930c16 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x86434472 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x892d8851 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x9377c9eb snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x979fd3d8 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x9aadbd1f 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 0xa60df664 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xb21e4526 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbcb667b2 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xbf41872d snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0xc32f58b7 snd_device_new +EXPORT_SYMBOL sound/core/snd 0xc8d23baa snd_register_device +EXPORT_SYMBOL sound/core/snd 0xcbea3c63 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd31d616d snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xe4871cf3 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xef8a9e53 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xf0589c26 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xf26907ee snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xf7eaa9b3 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd-hwdep 0x8bf68ede 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 0x0cbca98f snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x0f5bf437 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x1244b765 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x1346cf1f snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x172478e9 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x19f9ad76 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1a88f2cb snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x206698db snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x20ce6074 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x229c8c37 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x2b0d0746 snd_pcm_hw_constraint_integer +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 0x3fb7dd4b snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x43b2f4f9 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x48893f94 snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x4d9b6d35 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x4df7d856 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0x4f816e9b snd_pcm_format_big_endian +EXPORT_SYMBOL sound/core/snd-pcm 0x4fbb9b0c snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x502b2122 snd_pcm_new_internal +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 0x5357c429 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5ffb66c5 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x62687285 snd_dma_free_pages +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 0x7320e449 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x791d04e2 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0x7bfe05bd snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x8406d234 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x8687d19e snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x8d3aa47e snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x8dc8e174 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x95ee380f snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x960b308f snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x9fb7104c snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa40606c8 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 0xad0cacda snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xade88e76 snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb07059bc snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xb7871ea8 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xbb0a07b2 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xc1d8b831 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xc4570897 snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xc98a2819 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xd05eb3fd snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xd980016b snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xed06fdcc snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xee223bbf snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0xef5ef8c4 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xf03c073d snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xf16e1ada _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xf69c3c16 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xfcbb39ea snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x016ac525 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x14712edc snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1d697380 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x1f8fe3a2 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x304b093b snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x344fc7b5 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3b0a8a1b snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3ff0891e snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x65a8f148 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6af0f14f snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6d37a6ba snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaf5d2898 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xafae1239 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbb4343fd snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xcefdfd27 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdd443490 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe76bae6d snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xedcbe176 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xef732663 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-timer 0x15bed496 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x2ea6e766 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x4c2e99b2 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x57f4d218 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x78fadec2 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x7ae54d08 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x8a1b65a8 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xb45edee1 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0xd2f22204 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xd3a10a8b snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xd7db882d snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xd7eb92e2 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xfc517cdc 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 0x8bc0bca7 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 0x1747fabe snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1a320d6c snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1d088642 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x63c80dcd snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x9d889cbd snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbc2cc496 snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xcb85c711 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xf84527b6 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xff9d59e1 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x1e6f4af8 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 0x2cd6c8b8 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x49160a07 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6b1f589b snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x725e95d8 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x78d0e7e6 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9255613b snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xcfba6b81 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1dfabda snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x01df03a0 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x094e3bf5 cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0aabb82e fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c7009f2 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0e2b11b7 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1978d458 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1cfc0719 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1e1a5c07 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3795c9de fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3b2a57fb iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5dd3f46e amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x741d742b amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x785b20b7 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x88692ea3 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8abc327c snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d24a5a6 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8fb4dfb8 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x95434d7d amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98aa7aad avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaa41b637 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xac69fdf7 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae60cdfc avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaf4cc1af fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb09413a5 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc1929c6c snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc3bd0829 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd08f3352 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3798506 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd9a7c262 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe647dfab amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0b1ef58 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf1383a9f fw_iso_resources_update +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xcc22acc8 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xf8aec7d6 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0bd4c47e snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2bd6c7c5 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x51fcfed1 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6d2099aa snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6ea122c8 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa2ff4a74 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xeac724a5 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xeb28e398 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x843dfd76 snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8c8c54b9 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xac6754fb snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc4d4855b snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc71385a0 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xcc6fcca2 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x8a5d3b9b snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x9ce183c5 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xb05ccba9 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe1b1efbc snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x0baa0bd8 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x401a8c43 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x215069b0 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x484b7785 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x54b9f722 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xad78027b snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xd8f44ea9 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xdbecbb2f snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-i2c 0x0384d7f9 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3b7fb958 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8d14a89b snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x90c6d11a snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xa2b06cb2 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xda687437 snd_i2c_device_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3e39c6d5 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5ccb09ba snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7e4859a1 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa02de307 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xa985a17f snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbe903f82 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbf79ff0b snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd671a168 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xecb13aef snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xeed9ccbc snd_sbdsp_get_byte +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x102ab5cd snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x167c0793 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x210e3d42 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x31f7cb25 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4785a717 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x57efbf19 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5fd1bb57 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x740cb2c7 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8eb9872b snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x966c2a15 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x98fe5fd1 snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9b710183 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa92b8df5 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xab8e9db1 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdda1ee26 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe5bb00ff snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf0be31e2 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x0265a3d2 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x10e89263 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1403d2da snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x19053752 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x83dbe32a snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xa4b5a99f snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd4fc4312 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd5b7367f snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe474e1dd snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0178c4bc snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4b9edf86 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xd75a3b33 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x07c6931c oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x105e8f15 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x19a925e4 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e20ea10 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x27684557 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x38c2c510 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3abf1bf4 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x48187e36 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4f2ebb3b oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x556df414 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6103997f oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x64865231 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x651ce3ec oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x69d3f755 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6d232efb oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x705e1695 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x837f44ed oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x85ac3550 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e4a7cac oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba8c9ad3 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc483dc0c oxygen_write32 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x0fdc4bb0 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4801458d snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x941351d6 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x977b4aab snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xe0537568 snd_trident_alloc_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x1768312d tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0xe0599e12 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0xa8e5e4e2 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x79756d64 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa2bd6211 sound_class +EXPORT_SYMBOL sound/soundcore 0xbd7a29d3 register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xbfac3d03 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe91e2872 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0xf92eb771 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5ffd4797 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 0x8e6d0dc2 snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xa395b32f snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc8c90bda snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe324adc4 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xe485cf22 snd_emux_free +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 0x16756dc0 snd_usbmidi_input_start +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0x7092a3ba 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 0x002efdff rtnl_create_link +EXPORT_SYMBOL vmlinux 0x006d4bed vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x0076ee13 dev_crit +EXPORT_SYMBOL vmlinux 0x007910ca ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x00c32f8c genphy_resume +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00d9f4af call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x00dba77d __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x00e6cec0 tso_build_data +EXPORT_SYMBOL vmlinux 0x00ecf82a simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x01377ce6 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x01662d4e seq_puts +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x0197e3b3 md_write_start +EXPORT_SYMBOL vmlinux 0x01ad6bbc filemap_fault +EXPORT_SYMBOL vmlinux 0x01c21eb7 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x01df5ee1 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x01e65235 block_truncate_page +EXPORT_SYMBOL vmlinux 0x01f2716e netdev_info +EXPORT_SYMBOL vmlinux 0x01ff3273 set_cached_acl +EXPORT_SYMBOL vmlinux 0x02152275 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x0218eae6 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x0219b62b __vfs_write +EXPORT_SYMBOL vmlinux 0x022063c1 do_splice_from +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027a3543 of_find_property +EXPORT_SYMBOL vmlinux 0x0292634a scm_fp_dup +EXPORT_SYMBOL vmlinux 0x0298adad ppp_unit_number +EXPORT_SYMBOL vmlinux 0x029f280d generic_setxattr +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02dd91ac get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x030ef695 kernel_write +EXPORT_SYMBOL vmlinux 0x0317df09 register_qdisc +EXPORT_SYMBOL vmlinux 0x031fb72c of_get_pci_address +EXPORT_SYMBOL vmlinux 0x0326a033 simple_getattr +EXPORT_SYMBOL vmlinux 0x03345456 param_ops_byte +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0354c2f3 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x035687f8 set_groups +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036fd127 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0383adc4 bdi_register +EXPORT_SYMBOL vmlinux 0x03844320 inet_getname +EXPORT_SYMBOL vmlinux 0x0384f6bf mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x0386901a ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x038cbae7 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x03a4a0a1 elv_rb_del +EXPORT_SYMBOL vmlinux 0x03de6f4c dst_discard_out +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x0406034a bdget_disk +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x040ec955 mmc_add_host +EXPORT_SYMBOL vmlinux 0x04141dd8 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x0419f085 simple_statfs +EXPORT_SYMBOL vmlinux 0x041c096e skb_checksum_help +EXPORT_SYMBOL vmlinux 0x04213614 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x042e656c padata_do_serial +EXPORT_SYMBOL vmlinux 0x0437c24a of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04c0c352 console_stop +EXPORT_SYMBOL vmlinux 0x04d1fafa init_net +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ed5955 validate_sp +EXPORT_SYMBOL vmlinux 0x04f1041d lockref_get +EXPORT_SYMBOL vmlinux 0x0504265a uart_get_divisor +EXPORT_SYMBOL vmlinux 0x050a518f mem_map +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240a63 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x05398eba inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x054d242d dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x05540813 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x056b4e3b nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x05845ef5 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05ab5bcb mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x05bb6c23 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x05dd503b get_io_context +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061b3316 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06380989 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x06509292 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x06533c22 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x065eb13b devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x0660412b blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x066954d1 of_translate_address +EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0695403f mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x069da614 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x06b2ca1f skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x06d0eb69 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x06d904d7 brioctl_set +EXPORT_SYMBOL vmlinux 0x06f30520 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x071196b5 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072c88ff neigh_app_ns +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x073b01c8 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x073fa1a6 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x074553d5 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x0756dbc3 tcp_check_req +EXPORT_SYMBOL vmlinux 0x07583a7e param_set_int +EXPORT_SYMBOL vmlinux 0x075f04c3 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x07985ba9 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x07a790e7 security_path_mknod +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07aa841a jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x081713bc set_create_files_as +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x083f2dca tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x086bed4d dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat +EXPORT_SYMBOL vmlinux 0x0877a394 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x089b0031 kfree_skb +EXPORT_SYMBOL vmlinux 0x08a25f15 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x08c01f69 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x08d53ed2 sync_filesystem +EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08ec77b1 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x08f4eedc jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x08f85eb8 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x090b1993 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x09477f09 blk_start_queue +EXPORT_SYMBOL vmlinux 0x094be138 read_dev_sector +EXPORT_SYMBOL vmlinux 0x094bed39 __page_symlink +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x09588081 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x09831e79 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +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 0x0a1f3805 phy_resume +EXPORT_SYMBOL vmlinux 0x0a208579 clk_get +EXPORT_SYMBOL vmlinux 0x0a274ce2 abx500_get_register_interruptible +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 0x0a51c12d soft_cursor +EXPORT_SYMBOL vmlinux 0x0a5b798d ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x0a977bf2 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x0aa2e812 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad58c3c pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x0adb281b get_thermal_instance +EXPORT_SYMBOL vmlinux 0x0af3dadf unregister_key_type +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b274d10 simple_rmdir +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b839c5d end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x0b8823ae locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x0b9159ba filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x0b99be8c keyring_clear +EXPORT_SYMBOL vmlinux 0x0b9d75e1 dev_get_by_index +EXPORT_SYMBOL vmlinux 0x0baea183 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x0bb4226a dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x0bbb5e3c ps2_drain +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd455c1 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x0bfb09f7 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x0c3c2ddd fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c46a5b6 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x0c4a52e7 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x0c55ebdd cdrom_release +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c780d94 empty_aops +EXPORT_SYMBOL vmlinux 0x0c7c81dc cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x0c874998 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x0c8a1f32 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x0c8bf11a of_root +EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb07f08 input_register_handle +EXPORT_SYMBOL vmlinux 0x0cbfabb2 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x0ce9317a dqget +EXPORT_SYMBOL vmlinux 0x0cef13ae cdev_add +EXPORT_SYMBOL vmlinux 0x0cf372bd inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x0cf7c6ba seq_path +EXPORT_SYMBOL vmlinux 0x0cfb030c nf_register_hooks +EXPORT_SYMBOL vmlinux 0x0d225d3e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x0d38fcf5 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x0d53a7ef mdiobus_read +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5c4a0f mutex_unlock +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d8291ae nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dc54207 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x0dd10307 d_walk +EXPORT_SYMBOL vmlinux 0x0e00bda8 ppc_md +EXPORT_SYMBOL vmlinux 0x0e3ce7e8 param_get_charp +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e6de253 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x0e8006b6 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e99339c blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb7438e seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x0eba6767 sock_edemux +EXPORT_SYMBOL vmlinux 0x0ebafca7 generic_getxattr +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0edb4681 irq_to_desc +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0eec218f pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0eb526 md_done_sync +EXPORT_SYMBOL vmlinux 0x0f1d3b1d xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL vmlinux 0x0f2dd2f2 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x0f460650 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x0f47b59a input_unregister_handle +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f53b34c nf_afinfo +EXPORT_SYMBOL vmlinux 0x0f5e2999 block_invalidatepage +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 0x0f847164 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x0f95ff5e alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0fa7fbda sock_update_memcg +EXPORT_SYMBOL vmlinux 0x0faa717f poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb09ca7 tty_lock +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb843da vfs_iter_read +EXPORT_SYMBOL vmlinux 0x0fbb9787 udp_prot +EXPORT_SYMBOL vmlinux 0x0fc84a98 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x0ff62db2 dquot_transfer +EXPORT_SYMBOL vmlinux 0x101e6e80 tcp_filter +EXPORT_SYMBOL vmlinux 0x10286fea free_task +EXPORT_SYMBOL vmlinux 0x103e4b8b mach_c293_pcie +EXPORT_SYMBOL vmlinux 0x105fb8e0 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10819f70 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x1095b3ce swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x1098a4d4 vfs_create +EXPORT_SYMBOL vmlinux 0x10bdf439 clear_inode +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f02941 fsync_bdev +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1113815b register_gifconf +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x112143bf iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x112f9040 clear_nlink +EXPORT_SYMBOL vmlinux 0x1145067f param_ops_bint +EXPORT_SYMBOL vmlinux 0x114dd2b4 mntput +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116da614 key_link +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a38b3c devm_request_resource +EXPORT_SYMBOL vmlinux 0x11ac6a97 complete_request_key +EXPORT_SYMBOL vmlinux 0x11b25f22 d_genocide +EXPORT_SYMBOL vmlinux 0x11f3dc85 kmem_cache_alloc +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 0x1226f434 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x123de66e inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x1249cd2a param_ops_string +EXPORT_SYMBOL vmlinux 0x12518d7c abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x126a2485 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12bdb87b __neigh_event_send +EXPORT_SYMBOL vmlinux 0x12d4c588 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x12d5afe6 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x13000f17 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x1337f982 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x13701f9b __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x137650bb lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x13783bd9 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x139b8ff7 dquot_get_state +EXPORT_SYMBOL vmlinux 0x13a0a75a vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x13ab19ff __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e38fd6 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x13efb544 bdi_destroy +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f78efe security_path_chown +EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x14317a28 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x147eac98 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x1481e925 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x14a8f511 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d48fdd __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x1532b978 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x153b98d0 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1560d302 ata_print_version +EXPORT_SYMBOL vmlinux 0x1567adc3 dump_page +EXPORT_SYMBOL vmlinux 0x157ee2c9 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x158706ff tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x158aacb4 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x15956357 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x159f3b54 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x15a3a058 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x15a96210 request_key +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c20448 read_cache_page +EXPORT_SYMBOL vmlinux 0x15ccaff9 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15d60192 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0x15d7721a neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x15f17bef mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x15f349a7 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x160a2f0f ps2_command +EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x162782e8 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x1631ae49 __break_lease +EXPORT_SYMBOL vmlinux 0x1634d340 param_get_ullong +EXPORT_SYMBOL vmlinux 0x163a57be mmc_release_host +EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 +EXPORT_SYMBOL vmlinux 0x165410d9 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x167ed98b pci_map_rom +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x16acc8e4 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x16b22b83 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x16b2effd devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x16bcbcda mpage_writepages +EXPORT_SYMBOL vmlinux 0x16c75ba7 pci_bus_type +EXPORT_SYMBOL vmlinux 0x16d55c2a cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16efbeb8 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x1725bc63 blk_free_tags +EXPORT_SYMBOL vmlinux 0x172a06ca iterate_fd +EXPORT_SYMBOL vmlinux 0x174c8a1b flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x174db51d simple_lookup +EXPORT_SYMBOL vmlinux 0x174fe349 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x1759e304 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x175dd989 flush_old_exec +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x177403d1 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x177bf8fd neigh_xmit +EXPORT_SYMBOL vmlinux 0x179a225c simple_transaction_set +EXPORT_SYMBOL vmlinux 0x17a8e6cf crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x18126dd7 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x18145160 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x1823ca14 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0x18281026 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182cbfd4 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18506ab1 param_set_invbool +EXPORT_SYMBOL vmlinux 0x185f692f security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x18679d20 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x18698ae3 dev_emerg +EXPORT_SYMBOL vmlinux 0x186d0ee9 kern_unmount +EXPORT_SYMBOL vmlinux 0x186f0b2b blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0x18741bfa pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x1881866a module_layout +EXPORT_SYMBOL vmlinux 0x18889c36 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18b1644c xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x18c5e3f5 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x18d4688d netif_rx +EXPORT_SYMBOL vmlinux 0x18d68335 nvm_register_target +EXPORT_SYMBOL vmlinux 0x18db8111 inet_frags_fini +EXPORT_SYMBOL vmlinux 0x18df58a2 seq_putc +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18efe987 override_creds +EXPORT_SYMBOL vmlinux 0x19069da0 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x1907baa8 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x191ba795 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x19216889 default_llseek +EXPORT_SYMBOL vmlinux 0x19431cc4 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x195b016a get_super +EXPORT_SYMBOL vmlinux 0x197c41d5 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x198c4001 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19b1b118 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b9b1cf __invalidate_device +EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d22780 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x1a32e4ee param_ops_invbool +EXPORT_SYMBOL vmlinux 0x1a5c0466 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x1a5fc03b tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x1a6590b3 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x1a708167 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x1aa74740 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x1ab97c0b security_path_truncate +EXPORT_SYMBOL vmlinux 0x1aba1875 scsi_add_device +EXPORT_SYMBOL vmlinux 0x1ac6b0ee truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x1aeda075 dev_activate +EXPORT_SYMBOL vmlinux 0x1af47d3e ps2_handle_response +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2dea98 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0x1b356805 datagram_poll +EXPORT_SYMBOL vmlinux 0x1b3b6278 switch_mmu_context +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b793fe2 sget_userns +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1b956121 register_framebuffer +EXPORT_SYMBOL vmlinux 0x1b9dfcac agp_backend_release +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1bcf0aba mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x1bf788ca ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x1bf884b0 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x1bfc21d5 pipe_unlock +EXPORT_SYMBOL vmlinux 0x1c0218ac phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x1c0739c7 sock_init_data +EXPORT_SYMBOL vmlinux 0x1c23f75b vga_client_register +EXPORT_SYMBOL vmlinux 0x1c26ebb4 phy_detach +EXPORT_SYMBOL vmlinux 0x1c79f153 textsearch_unregister +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1ca37a61 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x1cf6008c simple_write_begin +EXPORT_SYMBOL vmlinux 0x1d067684 key_payload_reserve +EXPORT_SYMBOL vmlinux 0x1d068b0d tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x1d08972d scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x1d1f6ef7 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x1d2177d5 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x1d398e43 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x1d5307fd blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x1d7c4ff8 block_write_begin +EXPORT_SYMBOL vmlinux 0x1d91492f scsi_target_resume +EXPORT_SYMBOL vmlinux 0x1d968d98 vme_irq_free +EXPORT_SYMBOL vmlinux 0x1dab7476 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1e0a3ada inet_frag_find +EXPORT_SYMBOL vmlinux 0x1e128180 cad_pid +EXPORT_SYMBOL vmlinux 0x1e25c08e inet_select_addr +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8eb7ec bdev_read_only +EXPORT_SYMBOL vmlinux 0x1e9197b0 neigh_for_each +EXPORT_SYMBOL vmlinux 0x1e96997a tty_vhangup +EXPORT_SYMBOL vmlinux 0x1e9ace74 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x1e9b56f3 thaw_bdev +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb15b5a input_unregister_device +EXPORT_SYMBOL vmlinux 0x1eb39d1e lookup_bdev +EXPORT_SYMBOL vmlinux 0x1ebcc2e8 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x1ecf1dec submit_bio +EXPORT_SYMBOL vmlinux 0x1ee6ee12 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x1ef4a821 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x1efd87a3 __sb_start_write +EXPORT_SYMBOL vmlinux 0x1f52f00f freeze_super +EXPORT_SYMBOL vmlinux 0x1f5f99de dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x1f69d896 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x1f6cc110 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1f98a434 input_register_handler +EXPORT_SYMBOL vmlinux 0x1faaa6e7 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd73072 phy_device_create +EXPORT_SYMBOL vmlinux 0x1fe10065 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x1fe29ae9 revalidate_disk +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1feb01a5 replace_mount_options +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20047586 registered_fb +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x202227db put_io_context +EXPORT_SYMBOL vmlinux 0x2023243f padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x2027bbd3 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x203a6506 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2065f03b __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x206687ad cpm_muram_alloc_fixed +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20836ffc check_disk_size_change +EXPORT_SYMBOL vmlinux 0x20883bde pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x2089b81e twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x208e3517 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x209b1359 of_dev_get +EXPORT_SYMBOL vmlinux 0x20a3ee91 fasync_helper +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20b4d5cd kernel_getsockname +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d5f387 load_nls +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e02dcd xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20ee5d71 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x211c525c sk_ns_capable +EXPORT_SYMBOL vmlinux 0x2120a067 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x213034d2 fb_get_mode +EXPORT_SYMBOL vmlinux 0x21370bef eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x213751e6 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0x213d8b00 __dax_fault +EXPORT_SYMBOL vmlinux 0x21528ae7 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x2165e24d touch_atime +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x216cd86c tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x21822616 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x21f3dc15 cpm_command +EXPORT_SYMBOL vmlinux 0x21fdb4d4 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x221e0976 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x2221af24 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +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 0x22809ed4 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x228c5883 path_get +EXPORT_SYMBOL vmlinux 0x2296c8ad gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x22a32a31 from_kprojid +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22d070d8 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22f6fc77 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x2302fce6 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x231057c0 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x23480770 from_kgid +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x2383f6f7 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x23970aa9 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bee8ae mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x23c64988 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x23cd7be4 input_register_device +EXPORT_SYMBOL vmlinux 0x23d973e0 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242db2e3 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x2434e939 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x243df55c component_match_add +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244967cb to_nd_btt +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x247d7179 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x247ddb98 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x24808f97 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484fc29 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x249edd55 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x249ff5d7 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x24ad6b5f inc_nlink +EXPORT_SYMBOL vmlinux 0x24b24fff netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x24c336cc seq_dentry +EXPORT_SYMBOL vmlinux 0x24e52e1f tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fced8e mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x252ec36e from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x2548db79 tcp_child_process +EXPORT_SYMBOL vmlinux 0x254a0825 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x2555bf9d skb_find_text +EXPORT_SYMBOL vmlinux 0x256cb99c of_clk_get_by_name +EXPORT_SYMBOL vmlinux 0x25705c72 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25d71a80 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg +EXPORT_SYMBOL vmlinux 0x2601f50c inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x261a9b12 nvm_end_io +EXPORT_SYMBOL vmlinux 0x263978d0 dev_addr_add +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2640cb97 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x26621371 would_dump +EXPORT_SYMBOL vmlinux 0x26aa91f1 file_remove_privs +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26bf015d of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x26caaf0d devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x26cd3101 free_page_put_link +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x27024264 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x273d924a dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274aa282 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x2752945d bio_unmap_user +EXPORT_SYMBOL vmlinux 0x275e64f5 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x276d07ef sock_sendmsg +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27cb5747 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x280660ed cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28373fee param_get_long +EXPORT_SYMBOL vmlinux 0x2852d58e dentry_path_raw +EXPORT_SYMBOL vmlinux 0x28613862 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a377c3 fs_bio_set +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28bdebbf mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x28d1cae7 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x28d899ee dquot_free_inode +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match +EXPORT_SYMBOL vmlinux 0x29139a90 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x29261bad ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x2926e38d __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x2938de7c truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x293b58a9 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x294ffa6e update_devfreq +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295b08fb pci_dev_put +EXPORT_SYMBOL vmlinux 0x2975ed18 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x2976846a xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x2995d08f md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x29975d02 __d_drop +EXPORT_SYMBOL vmlinux 0x299a8d6c __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0x29a8e5b0 follow_pfn +EXPORT_SYMBOL vmlinux 0x29afe837 inode_set_flags +EXPORT_SYMBOL vmlinux 0x29b1d8bd sock_wake_async +EXPORT_SYMBOL vmlinux 0x29be0072 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x29dd788d mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x29e30702 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x29f84f32 vfs_llseek +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x2a0d71da generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x2a278d4e tso_count_descs +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a3361ca flow_cache_fini +EXPORT_SYMBOL vmlinux 0x2a35580a skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a59e008 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x2a6c39e9 kernel_bind +EXPORT_SYMBOL vmlinux 0x2a77683f agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x2a801341 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x2a8653f8 padata_start +EXPORT_SYMBOL vmlinux 0x2a90519b elv_register_queue +EXPORT_SYMBOL vmlinux 0x2a94fde0 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x2a9abe86 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x2a9d4444 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aaa3f8a fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab0873d generic_write_end +EXPORT_SYMBOL vmlinux 0x2ab546a0 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x2abe0533 input_free_device +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad08f09 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x2ad192f7 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x2ae4faeb poll_freewait +EXPORT_SYMBOL vmlinux 0x2ae63ee6 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0x2b051833 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2479c1 rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b31d8d9 param_set_uint +EXPORT_SYMBOL vmlinux 0x2b4464d9 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x2b4b93e2 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x2b5f4374 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x2b859646 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x2b99352c security_inode_readlink +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba12ba4 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bc5281a tty_check_change +EXPORT_SYMBOL vmlinux 0x2bd1da1c devm_memunmap +EXPORT_SYMBOL vmlinux 0x2bd7aff1 tcf_action_exec +EXPORT_SYMBOL vmlinux 0x2bda517e mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2be59fc0 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x2bfd9d68 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x2c05efe5 is_bad_inode +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c4418b7 commit_creds +EXPORT_SYMBOL vmlinux 0x2c70a126 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x2c725d29 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c8ee616 mach_twr_p1025 +EXPORT_SYMBOL vmlinux 0x2c9abf4d tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x2cb6796d dev_trans_start +EXPORT_SYMBOL vmlinux 0x2cbfc97c generic_fillattr +EXPORT_SYMBOL vmlinux 0x2cf8402e inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x2d00df5d pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2681cb capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d37342e cpu_online_mask +EXPORT_SYMBOL vmlinux 0x2d4290b6 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x2d4c0e1a dcache_readdir +EXPORT_SYMBOL vmlinux 0x2d526ddd dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x2d68ed7d read_code +EXPORT_SYMBOL vmlinux 0x2d7e5d44 blk_end_request +EXPORT_SYMBOL vmlinux 0x2db7afe4 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x2df239c7 proc_symlink +EXPORT_SYMBOL vmlinux 0x2dfa7bb8 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x2dff032f bdi_init +EXPORT_SYMBOL vmlinux 0x2e0655f3 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x2e0b301a csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e21d8a8 sync_blockdev +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2d15af end_page_writeback +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e2ff809 bio_copy_data +EXPORT_SYMBOL vmlinux 0x2e3105aa __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x2e3fcc46 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x2e5e11dc i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x2e830788 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x2e89ae40 blk_queue_split +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ed078ca blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef6495d da903x_query_status +EXPORT_SYMBOL vmlinux 0x2efef4bb user_path_create +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f3866e5 give_up_console +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4b2e4d pci_reenable_device +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f88523c netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x2f8d430e vme_register_bridge +EXPORT_SYMBOL vmlinux 0x2f96b36d vga_tryget +EXPORT_SYMBOL vmlinux 0x2f9e020b dquot_quota_off +EXPORT_SYMBOL vmlinux 0x2fa1be7f md_integrity_register +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe6d0ca udp6_set_csum +EXPORT_SYMBOL vmlinux 0x2fe708c7 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x2ffc2e18 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x300d1e05 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x300f0ab2 kset_register +EXPORT_SYMBOL vmlinux 0x3021167b vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x30220534 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30453819 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x3061b18a nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x30846a74 register_netdevice +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30aa4817 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30bf6971 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x30d481ce sk_net_capable +EXPORT_SYMBOL vmlinux 0x30d83cf6 __scm_destroy +EXPORT_SYMBOL vmlinux 0x30e3d78d tty_free_termios +EXPORT_SYMBOL vmlinux 0x30e50a2e pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x310059f1 set_wb_congested +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x310ec5b8 release_pages +EXPORT_SYMBOL vmlinux 0x311c6161 tcp_close +EXPORT_SYMBOL vmlinux 0x311da3a4 blk_put_request +EXPORT_SYMBOL vmlinux 0x31267f3c mach_qemu_e500 +EXPORT_SYMBOL vmlinux 0x312694c2 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x312ad233 scsi_host_put +EXPORT_SYMBOL vmlinux 0x31347f6c sockfd_lookup +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x31634f27 mmc_put_card +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317d7355 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x31935f51 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x31994447 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x31c6caf6 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x31cb184e file_path +EXPORT_SYMBOL vmlinux 0x31e45c18 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x32191620 phy_find_first +EXPORT_SYMBOL vmlinux 0x321a34ee hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0x3247cf4c udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x324e9300 pci_bus_put +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3253625f skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x325a0fa1 nf_log_unset +EXPORT_SYMBOL vmlinux 0x3273324f blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x3280ab93 simple_link +EXPORT_SYMBOL vmlinux 0x3284231e mach_p1023_rdb +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32ad51a8 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x32cc489a set_disk_ro +EXPORT_SYMBOL vmlinux 0x32d939bb locks_free_lock +EXPORT_SYMBOL vmlinux 0x32d96af6 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x32dccbab find_vma +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32e39fa4 free_buffer_head +EXPORT_SYMBOL vmlinux 0x32fa44dc udp_disconnect +EXPORT_SYMBOL vmlinux 0x3312563e sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x3314c038 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x3317ba1e eth_gro_receive +EXPORT_SYMBOL vmlinux 0x331b0e79 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x332e5b29 lease_modify +EXPORT_SYMBOL vmlinux 0x33330167 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x333a37df mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x3399edd9 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x339d99f8 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x339ec65b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x33a3f89b mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x33b007e5 sock_release +EXPORT_SYMBOL vmlinux 0x33b183bc __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x33b73878 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d5bc85 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x33dbfd93 tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x34046d4b dev_alloc_name +EXPORT_SYMBOL vmlinux 0x343155b0 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x34371628 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3463f5eb param_get_uint +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346ce499 blk_put_queue +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34bfe83c __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0x34ce7784 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x34d63fdc secpath_dup +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35188d57 __get_page_tail +EXPORT_SYMBOL vmlinux 0x35388940 seq_open_private +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x355352fe textsearch_prepare +EXPORT_SYMBOL vmlinux 0x355ed86b blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x355ff1e7 sock_wmalloc +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x358c25a8 tty_do_resize +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b140ee devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x35c5f55c remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x35f1b4ff bio_map_kern +EXPORT_SYMBOL vmlinux 0x35f27e4a __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x363c134c scsi_init_io +EXPORT_SYMBOL vmlinux 0x364f42fa mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x365ed07e ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x367c80a4 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36b36672 skb_store_bits +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36dc28b1 ps2_init +EXPORT_SYMBOL vmlinux 0x36dea7b8 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x36eebbfb blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x37077153 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x37250b43 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x375109cc blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x37532a52 downgrade_write +EXPORT_SYMBOL vmlinux 0x37579d73 __breadahead +EXPORT_SYMBOL vmlinux 0x376ce507 scmd_printk +EXPORT_SYMBOL vmlinux 0x376df401 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x37710a67 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x37ad57ec scsi_dma_map +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 0x37d689a2 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37eb6319 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x3812dd50 pci_pme_active +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ccc13 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x383120ad nf_reinject +EXPORT_SYMBOL vmlinux 0x3841aec5 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x384e9f9b dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x385ae599 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x38632de9 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x387dd5ac of_device_is_available +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38939960 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38aed492 swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38d2dcf2 drop_super +EXPORT_SYMBOL vmlinux 0x38d89b03 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x3903a32e blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x3916b8a3 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x39187d17 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x392309a7 sk_common_release +EXPORT_SYMBOL vmlinux 0x392d5a6b d_move +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393fa773 key_revoke +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3949828e sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x394a5125 get_user_pages +EXPORT_SYMBOL vmlinux 0x394a6d1e mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x396cd3b7 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x396e3558 vme_slave_request +EXPORT_SYMBOL vmlinux 0x39720ae0 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a4cac6 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x39ad6369 blk_peek_request +EXPORT_SYMBOL vmlinux 0x39ae2d4b param_ops_charp +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39c08721 kobject_set_name +EXPORT_SYMBOL vmlinux 0x39c650a6 arp_tbl +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39d26d5e alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x39dd424f blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x39edefe5 km_state_expired +EXPORT_SYMBOL vmlinux 0x3a1143d6 drop_nlink +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a3bd3c6 pci_request_region +EXPORT_SYMBOL vmlinux 0x3a66ee2b mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9dfde3 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x3acaac82 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x3ad4b072 pci_restore_state +EXPORT_SYMBOL vmlinux 0x3aec77c7 put_tty_driver +EXPORT_SYMBOL vmlinux 0x3af36b7a mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x3b0e11c3 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x3b1f616a key_invalidate +EXPORT_SYMBOL vmlinux 0x3b1f769a tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x3b3f2d53 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x3b4317a4 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x3b576808 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b6184e9 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3bb3dfd5 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x3bceec5a dst_destroy +EXPORT_SYMBOL vmlinux 0x3bd383cb security_mmap_file +EXPORT_SYMBOL vmlinux 0x3bed5c99 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x3c170087 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c62a16c netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3c7de222 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c84da3f vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x3c85b364 of_get_address +EXPORT_SYMBOL vmlinux 0x3cb3931b sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x3cbecbed call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf19fe3 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x3cfa339a skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x3d13d141 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x3d3829fe bdgrab +EXPORT_SYMBOL vmlinux 0x3d4dadc1 inet_put_port +EXPORT_SYMBOL vmlinux 0x3d95a7a6 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x3da0ef50 vfs_writef +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dc32b56 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dce40fc copy_to_iter +EXPORT_SYMBOL vmlinux 0x3dee93c7 vfs_getattr +EXPORT_SYMBOL vmlinux 0x3df01beb get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfd1e26 misc_register +EXPORT_SYMBOL vmlinux 0x3dfd4d24 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x3e493e22 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x3e52fb24 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3eb50d8a thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x3ec79650 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x3eea4371 mpage_readpage +EXPORT_SYMBOL vmlinux 0x3ef08848 tc_classify +EXPORT_SYMBOL vmlinux 0x3efb9d7e mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f147398 put_filp +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f373e14 agp_bridge +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f6ecca5 block_read_full_page +EXPORT_SYMBOL vmlinux 0x3f70edbf mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x3f7f9985 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x3f918741 dm_put_device +EXPORT_SYMBOL vmlinux 0x3f956220 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x3fa79e0c cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x3fabae99 dev_add_offload +EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3fcd9690 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x40075842 netdev_crit +EXPORT_SYMBOL vmlinux 0x4025bd71 serio_close +EXPORT_SYMBOL vmlinux 0x40266101 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x4041cdf4 tty_port_init +EXPORT_SYMBOL vmlinux 0x40547eab tcp_disconnect +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4069baf8 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x4073e94e dev_change_flags +EXPORT_SYMBOL vmlinux 0x4086478b pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x40877d17 __brelse +EXPORT_SYMBOL vmlinux 0x4088948c inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x4093333d max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x409636d8 phy_stop_interrupts +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 0x40b72552 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x40b8dc2a locks_copy_lock +EXPORT_SYMBOL vmlinux 0x40bbdbeb md_flush_request +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +EXPORT_SYMBOL vmlinux 0x40c3f909 __nla_put +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40cd595c audit_log_start +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e09b5f genphy_read_status +EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy +EXPORT_SYMBOL vmlinux 0x41116f4e udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x4116c10b file_update_time +EXPORT_SYMBOL vmlinux 0x412191c8 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x41429789 tty_unlock +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x414bec72 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x4168d25d blk_mq_all_tag_busy_iter +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 0x419dc263 simple_rename +EXPORT_SYMBOL vmlinux 0x41ba9193 giveup_fpu +EXPORT_SYMBOL vmlinux 0x41bcb688 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x41c192e4 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x41d162da serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x41f3f047 scsi_register +EXPORT_SYMBOL vmlinux 0x421458b9 copy_from_iter +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422a4ecc inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x42322131 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x42368468 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424b8246 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42573a30 get_task_io_context +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x426ed702 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x427c3b92 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0x428b072b module_refcount +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42c38b8a dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x42c577a1 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x42c66420 blk_rq_init +EXPORT_SYMBOL vmlinux 0x42d7e9b9 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x42d9b72f remove_arg_zero +EXPORT_SYMBOL vmlinux 0x42e87333 __inode_permission +EXPORT_SYMBOL vmlinux 0x42ecef2b __lock_page +EXPORT_SYMBOL vmlinux 0x42f26808 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x42fce228 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x4308fd16 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x431f06f4 mount_ns +EXPORT_SYMBOL vmlinux 0x4324ff82 add_disk +EXPORT_SYMBOL vmlinux 0x433e91cc of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x4370e238 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x439426e9 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a8bb45 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x43a9da18 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x43cfb708 set_posix_acl +EXPORT_SYMBOL vmlinux 0x43d81c77 md_error +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x440064ab filemap_flush +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44174387 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x4428c45e d_make_root +EXPORT_SYMBOL vmlinux 0x442a272a dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x442f8a84 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x44480679 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x445012ff n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x445d5e1a param_array_ops +EXPORT_SYMBOL vmlinux 0x447cd040 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x447cd31b pci_get_subsys +EXPORT_SYMBOL vmlinux 0x4489cb56 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x44997b67 fb_class +EXPORT_SYMBOL vmlinux 0x44a2c62c md_cluster_ops +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44b78a35 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x44c028b5 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x44de6437 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44ea9d61 dev_notice +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x4502ad6f param_ops_int +EXPORT_SYMBOL vmlinux 0x4539f82d stop_tty +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454c3e1c of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457a1678 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x4581d388 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x459f7138 __register_nls +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b4f7c8 kernel_accept +EXPORT_SYMBOL vmlinux 0x45d8c8bd filp_open +EXPORT_SYMBOL vmlinux 0x45dafc7f agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x45e04bc9 vfs_read +EXPORT_SYMBOL vmlinux 0x45eb3ecb pci_find_bus +EXPORT_SYMBOL vmlinux 0x461286ae __register_chrdev +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x462345e1 xmon +EXPORT_SYMBOL vmlinux 0x46238e37 dm_io +EXPORT_SYMBOL vmlinux 0x46260143 generic_make_request +EXPORT_SYMBOL vmlinux 0x4629d33a param_set_short +EXPORT_SYMBOL vmlinux 0x462a2e75 match_strlcpy +EXPORT_SYMBOL vmlinux 0x462b1531 security_path_rename +EXPORT_SYMBOL vmlinux 0x463dbce9 kern_path +EXPORT_SYMBOL vmlinux 0x465c958e __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46767793 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x4679c200 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x46b5150c ata_link_printk +EXPORT_SYMBOL vmlinux 0x46b7a432 param_set_bool +EXPORT_SYMBOL vmlinux 0x46bf51b8 km_query +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46d26a05 iterate_dir +EXPORT_SYMBOL vmlinux 0x46ed288c uart_register_driver +EXPORT_SYMBOL vmlinux 0x46f0e0d1 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470ac936 tcf_register_action +EXPORT_SYMBOL vmlinux 0x47239e6b pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47548ba3 set_user_nice +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x47639cea devm_ioremap +EXPORT_SYMBOL vmlinux 0x476bd9a2 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x478488ed agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x47943e1d vme_irq_handler +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47d89bfe mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x47ea1d4f remap_pfn_range +EXPORT_SYMBOL vmlinux 0x4802404f xfrm_input +EXPORT_SYMBOL vmlinux 0x48258198 km_policy_notify +EXPORT_SYMBOL vmlinux 0x482b076c flush_tlb_range +EXPORT_SYMBOL vmlinux 0x483da9ea nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x485a0d1c pci_match_id +EXPORT_SYMBOL vmlinux 0x486ac5d8 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x487d985e icmp_send +EXPORT_SYMBOL vmlinux 0x488389ea of_device_alloc +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48ab48e2 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48baf4bf devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x48c6be88 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x48d8da82 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x48e93a20 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x48f8401b md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x4900d3db shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x49056fe6 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x494ab243 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49726d7d key_alloc +EXPORT_SYMBOL vmlinux 0x4973e7e5 eth_header_parse +EXPORT_SYMBOL vmlinux 0x4974218c reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x499502d8 cdev_alloc +EXPORT_SYMBOL vmlinux 0x49aa1a89 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x49ab17a8 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49c077d3 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x49c27ccf phy_init_eee +EXPORT_SYMBOL vmlinux 0x49d3c37b param_set_bint +EXPORT_SYMBOL vmlinux 0x49f09880 fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49f74401 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x4a08b334 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x4a0924bb kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x4a25628f try_module_get +EXPORT_SYMBOL vmlinux 0x4a303740 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x4a3c41e7 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x4a411e84 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x4a57a9ac __secpath_destroy +EXPORT_SYMBOL vmlinux 0x4a599208 skb_insert +EXPORT_SYMBOL vmlinux 0x4a662042 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x4a66217c scsi_print_command +EXPORT_SYMBOL vmlinux 0x4a81f6ef phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x4a91110d dev_get_by_name +EXPORT_SYMBOL vmlinux 0x4a94ef78 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x4a9f3505 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x4ab18069 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x4ab1acd8 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4abe9b91 kthread_bind +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad8d41e inet_offloads +EXPORT_SYMBOL vmlinux 0x4ad9c466 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0ed38c xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b316090 register_quota_format +EXPORT_SYMBOL vmlinux 0x4b4cc202 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x4b4d1898 get_empty_filp +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b73043f blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x4b7753bb tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b8ea6a9 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x4b95ebe3 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x4baab09f eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4bd5c32f ll_rw_block +EXPORT_SYMBOL vmlinux 0x4be5561f km_state_notify +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bee38c0 ilookup +EXPORT_SYMBOL vmlinux 0x4bfbb127 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x4c04d565 of_match_device +EXPORT_SYMBOL vmlinux 0x4c0dd2e7 skb_unlink +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c2f188f blk_make_request +EXPORT_SYMBOL vmlinux 0x4c3039b3 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c4336e4 dev_close +EXPORT_SYMBOL vmlinux 0x4c5a2e52 genlmsg_put +EXPORT_SYMBOL vmlinux 0x4ca7f233 dcb_setapp +EXPORT_SYMBOL vmlinux 0x4cb41f4a inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cdf8c83 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x4ce15e9b simple_transaction_release +EXPORT_SYMBOL vmlinux 0x4cf0f295 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x4d154d8e __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x4d1f3b07 d_tmpfile +EXPORT_SYMBOL vmlinux 0x4d1f7960 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x4d2d28ef security_inode_permission +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d52164a is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x4d6de2fd __scsi_add_device +EXPORT_SYMBOL vmlinux 0x4d71004a __cpm2_setbrg +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d86fd90 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da43c9b skb_copy_expand +EXPORT_SYMBOL vmlinux 0x4dacdcf6 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x4dc22608 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x4dc8172c d_find_alias +EXPORT_SYMBOL vmlinux 0x4de00101 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dea98e3 vfs_statfs +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4df8a3fa agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x4e21492f xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e82c5d9 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x4e897c53 dm_register_target +EXPORT_SYMBOL vmlinux 0x4e8e745b ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eaf4271 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x4ebc01f2 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x4ec4d004 path_is_under +EXPORT_SYMBOL vmlinux 0x4ec8c62b kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x4ed73341 dev_deactivate +EXPORT_SYMBOL vmlinux 0x4ee1cbd5 revert_creds +EXPORT_SYMBOL vmlinux 0x4ee34809 machine_id +EXPORT_SYMBOL vmlinux 0x4ee9d182 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x4efc7e04 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f22d392 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x4f368372 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f3e26df md_unregister_thread +EXPORT_SYMBOL vmlinux 0x4f4acc93 netif_napi_add +EXPORT_SYMBOL vmlinux 0x4f56dbb9 key_validate +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f750298 bioset_create +EXPORT_SYMBOL vmlinux 0x4f7cd277 pipe_lock +EXPORT_SYMBOL vmlinux 0x4f8e2297 __napi_complete +EXPORT_SYMBOL vmlinux 0x4f9c6913 netdev_update_features +EXPORT_SYMBOL vmlinux 0x4fac1f39 napi_disable +EXPORT_SYMBOL vmlinux 0x4fb2879d netdev_warn +EXPORT_SYMBOL vmlinux 0x4fbe90c5 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x4fc2bb55 clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5024dc72 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x50503780 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5083d59a pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x5085edbe __mdiobus_register +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +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 0x50f193e2 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x50fa1920 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x50ffa874 sock_efree +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51219774 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x514efcb2 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x515941a5 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51bf6e9e dev_printk +EXPORT_SYMBOL vmlinux 0x51d29295 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x51ddb3e9 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x51ea81da init_special_inode +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x51fd886e unlock_new_inode +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52084c09 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52279bd6 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x52287b63 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x524cb03d console_start +EXPORT_SYMBOL vmlinux 0x5258a9a0 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x525bee18 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x527d91e0 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5298533a vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x52a8b1da blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52bdd429 pci_iounmap +EXPORT_SYMBOL vmlinux 0x52c8db49 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x530283cd twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x5327da71 bdevname +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x53703437 ip_defrag +EXPORT_SYMBOL vmlinux 0x53847377 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53aa329d address_space_init_once +EXPORT_SYMBOL vmlinux 0x53b09ba2 unregister_md_personality +EXPORT_SYMBOL vmlinux 0x53ba22d9 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x53be311b of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x53db04bf mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x54288a00 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x542bf40b of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x542ed7b1 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x5430265e pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54466105 mmc_erase +EXPORT_SYMBOL vmlinux 0x54675588 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x54732131 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x547d9b1b read_cache_pages +EXPORT_SYMBOL vmlinux 0x54826955 vfs_readv +EXPORT_SYMBOL vmlinux 0x54a74e72 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54aeb0f4 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c33f12 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54f41044 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x550cc784 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x5511425f page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x551a0778 bio_init +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5544b0e8 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x554e4f56 phy_disconnect +EXPORT_SYMBOL vmlinux 0x55510797 submit_bh +EXPORT_SYMBOL vmlinux 0x5557b6df pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x55678b77 md_register_thread +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x556968c6 follow_down_one +EXPORT_SYMBOL vmlinux 0x5569d06e phy_device_register +EXPORT_SYMBOL vmlinux 0x5576425f ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x55853b70 __frontswap_test +EXPORT_SYMBOL vmlinux 0x55952a54 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x559df112 dump_align +EXPORT_SYMBOL vmlinux 0x55ae3057 scsi_host_get +EXPORT_SYMBOL vmlinux 0x55cc943f sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0x55ced0ae generic_removexattr +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x5615445f lookup_one_len +EXPORT_SYMBOL vmlinux 0x5628ab08 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x5645c37e set_device_ro +EXPORT_SYMBOL vmlinux 0x564eb342 blk_complete_request +EXPORT_SYMBOL vmlinux 0x566e60c6 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x56840885 mount_pseudo +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x569f4254 mutex_trylock +EXPORT_SYMBOL vmlinux 0x56b4837a agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x57258e25 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57521671 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x575fd20c xfrm_state_add +EXPORT_SYMBOL vmlinux 0x57622bb2 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x578312cc agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x579017e0 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57ab26dd mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57d998d0 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x57d9e38d bioset_free +EXPORT_SYMBOL vmlinux 0x58068986 tty_port_close +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x582d5d97 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5854295c redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x585b4fc7 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x586b4a4f vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5878f939 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x5886b6cb blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x589356b7 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x58a64cbc generic_listxattr +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58b9535a mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x58bef5c9 dev_load +EXPORT_SYMBOL vmlinux 0x58c4d135 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58e423e2 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x58e554da pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x58f6ba02 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop +EXPORT_SYMBOL vmlinux 0x593bd7b2 __init_rwsem +EXPORT_SYMBOL vmlinux 0x5941b588 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x5971fabe neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x59724a95 init_task +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x599232cb bmap +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59b6d2b3 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x59b8c8d4 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x59c6b0d9 consume_skb +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a25cf27 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x5a2f4d3b sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x5a363d9f __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x5a41c840 inet_addr_type +EXPORT_SYMBOL vmlinux 0x5a4cfebb neigh_parms_release +EXPORT_SYMBOL vmlinux 0x5a52303b sync_inode +EXPORT_SYMBOL vmlinux 0x5a74d707 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x5aa017d2 fd_install +EXPORT_SYMBOL vmlinux 0x5abdb6fd pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x5ade775c phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x5adf2717 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b01e3f6 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b367392 padata_alloc +EXPORT_SYMBOL vmlinux 0x5b394291 led_update_brightness +EXPORT_SYMBOL vmlinux 0x5b3d3a3f input_set_keycode +EXPORT_SYMBOL vmlinux 0x5b3f4d97 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x5b4b99f3 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x5b6c30ea pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x5b76669d fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5bb292f4 input_close_device +EXPORT_SYMBOL vmlinux 0x5bdd0b0a neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x5be7e153 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x5bed14d4 param_get_short +EXPORT_SYMBOL vmlinux 0x5bfbbd15 locks_init_lock +EXPORT_SYMBOL vmlinux 0x5c066d2f dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x5c0eeeba i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c485178 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x5c59d5bf netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x5c5f4732 dma_pool_create +EXPORT_SYMBOL vmlinux 0x5c86bc49 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x5c8a2bcd jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x5cb2c34e pci_get_class +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cc4dadf copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cfda8d6 of_phy_find_device +EXPORT_SYMBOL vmlinux 0x5cff6848 eth_header +EXPORT_SYMBOL vmlinux 0x5d0853a8 __devm_request_region +EXPORT_SYMBOL vmlinux 0x5d3a9ac0 touch_buffer +EXPORT_SYMBOL vmlinux 0x5d3c5b4b __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x5d3e6abc rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address +EXPORT_SYMBOL vmlinux 0x5d6e7ec2 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x5d804d33 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x5d960aff single_open_size +EXPORT_SYMBOL vmlinux 0x5db36d56 dquot_drop +EXPORT_SYMBOL vmlinux 0x5dbbd11a find_lock_entry +EXPORT_SYMBOL vmlinux 0x5dce8d16 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x5dd71553 pci_select_bars +EXPORT_SYMBOL vmlinux 0x5de6c4a9 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x5e14ed20 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e88cfe2 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eabf7f9 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x5eae4158 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ec29460 tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x5eca597d phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5edf4642 abort_creds +EXPORT_SYMBOL vmlinux 0x5ef9c6f9 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f262451 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x5f4f0ec6 of_get_next_child +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f9fa649 dev_driver_string +EXPORT_SYMBOL vmlinux 0x5fa228e8 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x5fa4a2bf softnet_data +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fd47268 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5ffdc9a5 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x6000ceca dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x601ba0d2 kill_bdev +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x603438c8 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6053c861 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x605dfb39 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x6065aad6 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x6068b894 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x606ba953 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6073732c cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60b5b489 mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x60b86f61 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x60cad7f0 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x60ccdd3b security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x60cf2676 vc_cons +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60edca1f flow_cache_init +EXPORT_SYMBOL vmlinux 0x60ee0295 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x610a2420 register_md_personality +EXPORT_SYMBOL vmlinux 0x6118c8ec inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6157cd0c devm_clk_put +EXPORT_SYMBOL vmlinux 0x616c7772 input_set_capability +EXPORT_SYMBOL vmlinux 0x618bf089 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x618ebb3d twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c3007f generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x61ee447b nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x621465be pagecache_write_begin +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 0x623a82e5 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x627ac4ef mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x6281fe28 bio_reset +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629b563d blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x62b881f1 mdiobus_free +EXPORT_SYMBOL vmlinux 0x62c5cc6d tty_mutex +EXPORT_SYMBOL vmlinux 0x62c7fd30 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x62efdd34 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x630a8b17 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x6333e8e8 rt6_lookup +EXPORT_SYMBOL vmlinux 0x63452168 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x63508ee2 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x635a3b53 pci_save_state +EXPORT_SYMBOL vmlinux 0x636605ea generic_ro_fops +EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x63919c5c tcp_prequeue +EXPORT_SYMBOL vmlinux 0x6397d4e9 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63aff6b6 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x63b6d53e tty_unthrottle +EXPORT_SYMBOL vmlinux 0x63c316d0 blkdev_get +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63d2d07e xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x63dd1c69 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x63e9d966 pci_enable_msi_range +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 0x64565307 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x64590042 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x64804da4 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x6492e547 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64a70ed9 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x64af5298 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x64c7239d skb_split +EXPORT_SYMBOL vmlinux 0x64dc2f4f ns_capable +EXPORT_SYMBOL vmlinux 0x64e7811d netlink_capable +EXPORT_SYMBOL vmlinux 0x64e92826 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x64eb2bce ppp_input +EXPORT_SYMBOL vmlinux 0x64ef36c1 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x64fb2316 fb_show_logo +EXPORT_SYMBOL vmlinux 0x64fdbdcd phy_connect_direct +EXPORT_SYMBOL vmlinux 0x65110e2e kdb_current_task +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65301efc jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x65395728 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6540b1fd ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x6565d33f scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x656c0636 scsi_unregister +EXPORT_SYMBOL vmlinux 0x6581ff6a wake_up_process +EXPORT_SYMBOL vmlinux 0x6583aa4a inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x65842349 bio_endio +EXPORT_SYMBOL vmlinux 0x65885866 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x65a0ae48 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x65adb413 single_release +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65ced470 ilookup5 +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 0x66195e5d of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x661de21e sys_imageblit +EXPORT_SYMBOL vmlinux 0x6647f8d2 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x665273f1 genphy_suspend +EXPORT_SYMBOL vmlinux 0x6656366f pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x665f52f6 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x667418a8 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x66944144 down_write_trylock +EXPORT_SYMBOL vmlinux 0x6698e1cc neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x669cbded inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x669d5a4f fb_validate_mode +EXPORT_SYMBOL vmlinux 0x66c5b23a tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x66e7cdb9 put_page +EXPORT_SYMBOL vmlinux 0x66edd77d serio_reconnect +EXPORT_SYMBOL vmlinux 0x6709364c gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x670aa21d tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x67233593 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x672b5bd8 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x672dfb89 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x674ed21b dquot_file_open +EXPORT_SYMBOL vmlinux 0x6758a0b9 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x6770bce3 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677351a8 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x6778e44d register_console +EXPORT_SYMBOL vmlinux 0x677c62b1 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x677cd948 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x678f0f3b ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x67a0b8af blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x67a94915 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x67ad47bd of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67cfd449 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x67d144f4 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x6804660b mount_nodev +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x68110399 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x681919f7 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x684aace3 down_read_trylock +EXPORT_SYMBOL vmlinux 0x6852ee22 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6889cb03 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x688c26f4 have_submounts +EXPORT_SYMBOL vmlinux 0x688d2454 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x689e3861 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68e680ef kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0x691c452c generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x6925d2e3 d_lookup +EXPORT_SYMBOL vmlinux 0x69418ba2 devm_free_irq +EXPORT_SYMBOL vmlinux 0x6963fbab blk_sync_queue +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69779d5f blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x69946f9e __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x699bc8a8 __seq_open_private +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c798f9 lock_fb_info +EXPORT_SYMBOL vmlinux 0x69c84789 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x69dd9389 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x69e08333 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x69fe5c8d key_put +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0e6803 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x6a291520 vga_con +EXPORT_SYMBOL vmlinux 0x6a4b3199 netif_device_detach +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5f4ccc d_splice_alias +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a7e8833 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x6a80a3f5 cpm_muram_free +EXPORT_SYMBOL vmlinux 0x6a85b043 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x6a973779 page_put_link +EXPORT_SYMBOL vmlinux 0x6aa0ca9b insert_inode_locked +EXPORT_SYMBOL vmlinux 0x6ab8ec30 pci_find_capability +EXPORT_SYMBOL vmlinux 0x6abefad4 dcb_getapp +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6ad2a2ea generic_read_dir +EXPORT_SYMBOL vmlinux 0x6ade9718 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x6ae7ca30 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x6ae9979e genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6afe69ab tcf_em_register +EXPORT_SYMBOL vmlinux 0x6b0315b9 sk_dst_check +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b07a6ba eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x6b0a0fa6 __find_get_block +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b470d79 udplite_prot +EXPORT_SYMBOL vmlinux 0x6b4a1a02 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x6b4a3c7c twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x6b53c3f6 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b776259 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x6b87815e pcim_iounmap +EXPORT_SYMBOL vmlinux 0x6b8ff7bf skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x6b995218 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x6bb5001c memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x6bb600e4 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x6bb852eb mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x6bbec319 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bd3decc security_path_link +EXPORT_SYMBOL vmlinux 0x6bd4f8e3 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be08c5e pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x6c019088 netdev_notice +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c0ea5e2 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x6c1b6b3a bdput +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c22f899 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x6c33484d security_task_getsecid +EXPORT_SYMBOL vmlinux 0x6c352468 bio_add_page +EXPORT_SYMBOL vmlinux 0x6c492cc5 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c5e4d90 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6ca0fe7b call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read +EXPORT_SYMBOL vmlinux 0x6ca668f5 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cc6814e pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cf614ec generic_show_options +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d188da2 vga_put +EXPORT_SYMBOL vmlinux 0x6d2060ac pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x6d219062 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x6d27857c deactivate_super +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d33e5fc generic_file_fsync +EXPORT_SYMBOL vmlinux 0x6d393000 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x6d4de5ce generic_file_llseek +EXPORT_SYMBOL vmlinux 0x6d61cdca sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d793c7b file_ns_capable +EXPORT_SYMBOL vmlinux 0x6d839f3a nonseekable_open +EXPORT_SYMBOL vmlinux 0x6d9a0350 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6daf7b0a nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x6de8a0c0 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e010593 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x6e1cab1d xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x6e2b513b bio_copy_kern +EXPORT_SYMBOL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL vmlinux 0x6e43d65e unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x6e5748ab tty_port_open +EXPORT_SYMBOL vmlinux 0x6e5d4820 bdget +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e713afd pcim_pin_device +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7aea00 mount_bdev +EXPORT_SYMBOL vmlinux 0x6e8e7258 __skb_checksum +EXPORT_SYMBOL vmlinux 0x6e8ed231 param_get_string +EXPORT_SYMBOL vmlinux 0x6e9b067d padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6e9e2143 nlmsg_notify +EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6ec8c468 mpage_readpages +EXPORT_SYMBOL vmlinux 0x6ed4d03f skb_pad +EXPORT_SYMBOL vmlinux 0x6ed5bc0a vfs_unlink +EXPORT_SYMBOL vmlinux 0x6ed97328 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x6edf9858 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x6efe2016 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x6eff4525 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x6f1acb2a dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f3b04d7 param_set_ullong +EXPORT_SYMBOL vmlinux 0x6f52dc10 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x6f5af982 save_mount_options +EXPORT_SYMBOL vmlinux 0x6f62c5bf dquot_resume +EXPORT_SYMBOL vmlinux 0x6f651596 PDE_DATA +EXPORT_SYMBOL vmlinux 0x6f6843ca genl_notify +EXPORT_SYMBOL vmlinux 0x6f6e8243 kmap_to_page +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f92ebc4 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x6fb2be46 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc42789 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fcce395 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x6fe6cc15 simple_release_fs +EXPORT_SYMBOL vmlinux 0x6ff9bddb local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x7003d675 km_report +EXPORT_SYMBOL vmlinux 0x70079858 bh_submit_read +EXPORT_SYMBOL vmlinux 0x7008e48e xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x7011d9a6 input_grab_device +EXPORT_SYMBOL vmlinux 0x70191d47 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x702681c9 single_open +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x7062b4cd cmdline_parts_free +EXPORT_SYMBOL vmlinux 0x7068d3cb try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70848d9a passthru_features_check +EXPORT_SYMBOL vmlinux 0x708d996b param_get_invbool +EXPORT_SYMBOL vmlinux 0x708ef49f blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x70991b67 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x70adc837 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x70b67c6b vm_mmap +EXPORT_SYMBOL vmlinux 0x70b9a0c8 vc_resize +EXPORT_SYMBOL vmlinux 0x70c31370 sock_i_uid +EXPORT_SYMBOL vmlinux 0x70cb1e1c d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x70d485fc scsi_ioctl +EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7101f7f9 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x7143c3a5 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x7147b1d3 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x714ada0e sock_wfree +EXPORT_SYMBOL vmlinux 0x7158db3c phy_device_free +EXPORT_SYMBOL vmlinux 0x716a00dc i2c_clients_command +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71924ced set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x7198424e vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ba7c49 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x71ff3213 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x720ee52c sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x72370326 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x723c476d mmc_can_reset +EXPORT_SYMBOL vmlinux 0x72478ed5 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x726afd33 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x72793199 simple_empty +EXPORT_SYMBOL vmlinux 0x72823d54 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x72a5aaa1 con_is_bound +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72cc3e4c dquot_scan_active +EXPORT_SYMBOL vmlinux 0x72d11b95 __ip_select_ident +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 0x72f829a1 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x72fb49d0 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x73365bb4 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x734e493a skb_dequeue +EXPORT_SYMBOL vmlinux 0x7358136c pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x738a37ab fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or +EXPORT_SYMBOL vmlinux 0x739c447b ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x73a876c1 pci_fixup_device +EXPORT_SYMBOL vmlinux 0x73c38992 vmap +EXPORT_SYMBOL vmlinux 0x73c5e8cc devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x73ddc07b pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x743570a6 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x745c0a76 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x746be5c9 __devm_release_region +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x74724544 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x7488a820 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x74ad550b tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x74ad7aaf security_path_symlink +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d1180f phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x74d17e8b dev_change_carrier +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ed1875 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x74f44e87 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x74f739cc input_get_keycode +EXPORT_SYMBOL vmlinux 0x75009fd2 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x7502cdec blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x751c79c5 led_set_brightness +EXPORT_SYMBOL vmlinux 0x751cc92c dump_emit +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x754a9ed5 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x756dd160 start_thread +EXPORT_SYMBOL vmlinux 0x756fea52 mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x757f088f cpm_muram_offset +EXPORT_SYMBOL vmlinux 0x758c9257 __destroy_inode +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +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 0x75d72d1e netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x75ebe05e dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x75fccc2e __dst_free +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7622623d d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x7653fee9 elevator_exit +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x765f6012 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76acd7a0 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x76aef825 xfrm_init_state +EXPORT_SYMBOL vmlinux 0x76b34383 phy_device_remove +EXPORT_SYMBOL vmlinux 0x76b6d6da handle_edge_irq +EXPORT_SYMBOL vmlinux 0x76b76ae6 inode_init_owner +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76dee49b simple_dir_operations +EXPORT_SYMBOL vmlinux 0x76f100a5 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x77261ffd jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x772d0c35 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x772df8eb mmc_get_card +EXPORT_SYMBOL vmlinux 0x7752e734 d_delete +EXPORT_SYMBOL vmlinux 0x77685de3 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x7784a0c1 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x7786d29c page_readlink +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77cea0d0 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x78045ed5 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x7826404c blk_get_queue +EXPORT_SYMBOL vmlinux 0x782b9bfa sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x782ef137 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x783e0290 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x78799311 __frontswap_load +EXPORT_SYMBOL vmlinux 0x787bee7c tty_set_operations +EXPORT_SYMBOL vmlinux 0x787cecc3 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a169b8 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x78d6641e jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x79033018 misc_deregister +EXPORT_SYMBOL vmlinux 0x79378bc8 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x7945ada9 ping_prot +EXPORT_SYMBOL vmlinux 0x795ad7dc input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x799710f2 netdev_emerg +EXPORT_SYMBOL vmlinux 0x79a722f1 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c0fce6 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x79d59633 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x79dd34c2 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x79e1ab93 skb_append +EXPORT_SYMBOL vmlinux 0x79e624b1 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x7a2945e2 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a3cba28 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a49e7d1 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x7a709446 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x7a832686 eth_type_trans +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa55e3f netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x7aad4700 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ab8b2ec skb_make_writable +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ad5f53c truncate_pagecache +EXPORT_SYMBOL vmlinux 0x7ae330f5 inet_shutdown +EXPORT_SYMBOL vmlinux 0x7aec05d3 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b08db85 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x7b116c2e crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b18b69c nf_hook_slow +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b2feb73 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x7b580ae8 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b7a81b7 xattr_full_name +EXPORT_SYMBOL vmlinux 0x7b7d60fc __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x7bc1a3cb devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x7bdae1ec jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c307faa __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x7c332a84 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c986500 __scm_send +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7ccc4f14 inode_permission +EXPORT_SYMBOL vmlinux 0x7cd2ecd8 skb_checksum +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cea7101 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf9f158 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d285757 netdev_alert +EXPORT_SYMBOL vmlinux 0x7d2d3dc0 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x7d61f8d8 kill_litter_super +EXPORT_SYMBOL vmlinux 0x7d6441df nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d83b54b vme_irq_request +EXPORT_SYMBOL vmlinux 0x7d957c52 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x7d9aeaed __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x7daa66d5 neigh_lookup +EXPORT_SYMBOL vmlinux 0x7dd2168c abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df8cbac tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x7dff9121 i2c_use_client +EXPORT_SYMBOL vmlinux 0x7e0329fe pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x7e0eb889 __inet_hash +EXPORT_SYMBOL vmlinux 0x7e4a5956 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x7e4dceae fb_blank +EXPORT_SYMBOL vmlinux 0x7e5707ef up_write +EXPORT_SYMBOL vmlinux 0x7e60f510 dev_alert +EXPORT_SYMBOL vmlinux 0x7e6a4a61 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x7e7c2e2b netdev_change_features +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e88a901 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x7ea07003 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ecb2752 pci_get_device +EXPORT_SYMBOL vmlinux 0x7eddc3da blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x7eff57ce tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f1658d5 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f49a7b0 down_read +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f70dcdc tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x7f8af1ec cont_write_begin +EXPORT_SYMBOL vmlinux 0x7f8d38d5 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x7f8f627d __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x7f9bf1cc dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x7f9dda12 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x7fa2bf0a __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x7fbf1f05 try_to_release_page +EXPORT_SYMBOL vmlinux 0x7fd260f3 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x7fd39768 pneigh_lookup +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x7fe4bdf9 kill_anon_super +EXPORT_SYMBOL vmlinux 0x8010a137 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x8025c1e0 udp_seq_open +EXPORT_SYMBOL vmlinux 0x802eec5a cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x8039d902 generic_readlink +EXPORT_SYMBOL vmlinux 0x80401109 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x8089d70a sk_reset_timer +EXPORT_SYMBOL vmlinux 0x80a9620d skb_clone +EXPORT_SYMBOL vmlinux 0x80ab6e2c bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x80c9fe09 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x80ca1566 bd_set_size +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d8aa64 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x80e71810 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x80e71923 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x81057e03 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x810bc798 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x810db3f6 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x813711d8 sk_capable +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815447da seq_hex_dump +EXPORT_SYMBOL vmlinux 0x8157ef47 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x815c56d0 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x81678184 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x81790312 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x81984aa8 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x819bc382 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81ca7695 path_noexec +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81ec9c81 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x81ee8777 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x81ef4f0b mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x81ef6569 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x8245124b netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x8266fd0d jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82733bf0 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x8289ce3c devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x82926132 inet6_offloads +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82bea6a8 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and +EXPORT_SYMBOL vmlinux 0x82cd804e vme_master_request +EXPORT_SYMBOL vmlinux 0x82d051d9 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x82d99746 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x82e8d0ca skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x82eacb78 block_commit_write +EXPORT_SYMBOL vmlinux 0x82ed76a1 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x82f76da4 page_address +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x835190d7 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x838b40c9 alloc_file +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 0x83db0fa6 inet_bind +EXPORT_SYMBOL vmlinux 0x8405558d xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x84106c9c pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x84145699 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD +EXPORT_SYMBOL vmlinux 0x845bb138 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x84794144 md_check_recovery +EXPORT_SYMBOL vmlinux 0x847c00a9 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84bdbe5e current_fs_time +EXPORT_SYMBOL vmlinux 0x84c26f31 build_skb +EXPORT_SYMBOL vmlinux 0x84cdfa13 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x84d53518 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x850e1eb5 blk_run_queue +EXPORT_SYMBOL vmlinux 0x851f95ee vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x85332892 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x854089db sock_from_file +EXPORT_SYMBOL vmlinux 0x85426703 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x854d7def pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x856b654d devm_iounmap +EXPORT_SYMBOL vmlinux 0x85704dc8 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85ba685b sock_no_listen +EXPORT_SYMBOL vmlinux 0x85bdfa81 param_get_ulong +EXPORT_SYMBOL vmlinux 0x85c11282 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85eda3ec mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x85ee351b input_open_device +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f748a4 pci_clear_master +EXPORT_SYMBOL vmlinux 0x860e1067 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x8627a2cd nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x864166ff __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x864de2d8 param_get_ushort +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 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86bf5698 pci_get_slot +EXPORT_SYMBOL vmlinux 0x86c67be2 up_read +EXPORT_SYMBOL vmlinux 0x86d3e2bc xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x86dbbdf2 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x86dd75c2 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x86e6d014 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x86ec7de5 inet6_getname +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870e10bd nobh_writepage +EXPORT_SYMBOL vmlinux 0x870e39ce fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x875a7f2a sk_alloc +EXPORT_SYMBOL vmlinux 0x8760880d agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x876a5478 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x877c5bb3 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x8798a559 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x87a19015 simple_fill_super +EXPORT_SYMBOL vmlinux 0x87a4e4df led_blink_set +EXPORT_SYMBOL vmlinux 0x87b6a545 make_kgid +EXPORT_SYMBOL vmlinux 0x87c17e7f tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x87df2ed2 dquot_initialize +EXPORT_SYMBOL vmlinux 0x87e4c41a mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x88266fb0 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x88279f25 cpm_muram_alloc +EXPORT_SYMBOL vmlinux 0x886cb6c4 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x88987ce5 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x88a42440 icmpv6_send +EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x88c365bc blk_init_queue +EXPORT_SYMBOL vmlinux 0x88d4bdb8 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x88df2ab4 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x88e69161 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x88eb1179 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x88f77702 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x8905c046 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x890a7bf1 param_set_long +EXPORT_SYMBOL vmlinux 0x890aeb19 dev_uc_init +EXPORT_SYMBOL vmlinux 0x8912e121 param_set_byte +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x8928ab87 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x892f1d0f genphy_config_init +EXPORT_SYMBOL vmlinux 0x894c9e97 pci_set_master +EXPORT_SYMBOL vmlinux 0x897448c1 do_SAK +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x898bec2b skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b5758d dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x89cb4706 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e3a3ce sock_create_lite +EXPORT_SYMBOL vmlinux 0x8a11c3d0 agp_copy_info +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a22815f of_node_put +EXPORT_SYMBOL vmlinux 0x8a2d371a sk_free +EXPORT_SYMBOL vmlinux 0x8a43c409 netdev_state_change +EXPORT_SYMBOL vmlinux 0x8a44f7a7 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x8a468ecd skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x8a4700c5 check_disk_change +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a4dc28c flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x8a518b00 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5b885b phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x8a5bb976 loop_backing_file +EXPORT_SYMBOL vmlinux 0x8a5c4b57 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x8a602253 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa06b3b nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x8aac11f1 kobject_add +EXPORT_SYMBOL vmlinux 0x8aafcd69 set_nlink +EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add +EXPORT_SYMBOL vmlinux 0x8ab5b878 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x8adeaa1f get_acl +EXPORT_SYMBOL vmlinux 0x8ae9bf6d vfs_fsync +EXPORT_SYMBOL vmlinux 0x8aee7cbd get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x8b104ada tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4464a4 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x8b4ba2b6 inet_accept +EXPORT_SYMBOL vmlinux 0x8b5e9aa8 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7893ca dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b8aeccc nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x8b9aa718 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x8ba60417 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x8bae2e3d scsi_device_put +EXPORT_SYMBOL vmlinux 0x8bb1c515 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x8bd0c498 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c0aaf9b of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x8c0e73d0 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c317a73 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x8c5d9657 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c8d3554 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x8c9fa6c7 netdev_features_change +EXPORT_SYMBOL vmlinux 0x8ca483b0 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x8cb88de2 do_truncate +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cf1373b posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d355a6a qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x8d45b4ca inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d7028e4 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d877a84 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x8d94dd98 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x8d9740aa __block_write_begin +EXPORT_SYMBOL vmlinux 0x8db2c9b0 proto_unregister +EXPORT_SYMBOL vmlinux 0x8dcd71a1 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x8ddfc64a nobh_write_end +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8df1488a blk_fetch_request +EXPORT_SYMBOL vmlinux 0x8df27866 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x8e00b14e open_exec +EXPORT_SYMBOL vmlinux 0x8e0a0653 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x8e4033be release_firmware +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e7c41e4 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops +EXPORT_SYMBOL vmlinux 0x8e9f26fc km_policy_expired +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ed79aec security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x8ee4909b dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x8ee4e2f2 i2c_master_send +EXPORT_SYMBOL vmlinux 0x8ef98991 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x8f289296 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x8f4b8a33 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x8f5778a1 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x8f5af3a8 skb_push +EXPORT_SYMBOL vmlinux 0x8f6c3dd7 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x8f75a234 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f906c1c make_kuid +EXPORT_SYMBOL vmlinux 0x8f923eda generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x8fa04d2e of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x8fb05eff search_binary_handler +EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8ffd509f __put_cred +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x8ffed9a6 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x90062f8c fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x90068927 blk_get_request +EXPORT_SYMBOL vmlinux 0x900b0fab cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x90263605 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x90305d4b rfkill_alloc +EXPORT_SYMBOL vmlinux 0x90382db9 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x904cce1c bio_chain +EXPORT_SYMBOL vmlinux 0x905eda17 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x905f1503 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x90695906 vme_free_consistent +EXPORT_SYMBOL vmlinux 0x90877b08 account_page_redirty +EXPORT_SYMBOL vmlinux 0x909f2e62 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x90a028c2 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x90ac69bb invalidate_bdev +EXPORT_SYMBOL vmlinux 0x90b1fbe4 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90d08daa __kfree_skb +EXPORT_SYMBOL vmlinux 0x90e447f9 __frontswap_store +EXPORT_SYMBOL vmlinux 0x91068076 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x912e0d55 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x912e50aa may_umount_tree +EXPORT_SYMBOL vmlinux 0x9141cf1e phy_start_aneg +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9171c3ec input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x9191a9c6 generic_writepages +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a92ee0 vme_bus_num +EXPORT_SYMBOL vmlinux 0x91ad781b md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x91dc00bb pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9229f3c4 __vfs_read +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x923f6902 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x9241f600 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x927c0cf1 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x9284047c tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x92930317 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92c5f0d4 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x92eacb6b md_write_end +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fd1c3d pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x930582f6 of_get_min_tck +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9314af87 proc_remove +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932d98c1 cpm_muram_dma +EXPORT_SYMBOL vmlinux 0x933eec8b input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x934b7a22 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93a26d9b vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x93ad8570 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x93b0a211 tty_register_device +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93ebc165 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x93fb0261 finish_open +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 0x941d5961 vfs_readf +EXPORT_SYMBOL vmlinux 0x942218b9 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x942ce14a proc_set_user +EXPORT_SYMBOL vmlinux 0x948bb125 kill_block_super +EXPORT_SYMBOL vmlinux 0x948c6ab5 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x948cbbf4 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x948fb075 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x9499123a d_instantiate +EXPORT_SYMBOL vmlinux 0x94a46828 do_splice_to +EXPORT_SYMBOL vmlinux 0x94b4927a max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94b63abc dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x94c909bd d_path +EXPORT_SYMBOL vmlinux 0x94d42ac1 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x95060390 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x950b918d noop_llseek +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x95438b6b iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x955ca9a0 elv_rb_add +EXPORT_SYMBOL vmlinux 0x95863e0f dqput +EXPORT_SYMBOL vmlinux 0x959e686d iov_iter_advance +EXPORT_SYMBOL vmlinux 0x95ab749f mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x95bcf768 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x95c714cc inet6_bind +EXPORT_SYMBOL vmlinux 0x95caa95f kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x95f256b8 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x95ff6ac1 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x96101080 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x964eb75b serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968aa050 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x96c2e5f5 generic_write_checks +EXPORT_SYMBOL vmlinux 0x96ca9e3f ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d568a7 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x96f64dca max8998_update_reg +EXPORT_SYMBOL vmlinux 0x96f85b15 sk_wait_data +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97634dba mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97b1dba8 get_fs_type +EXPORT_SYMBOL vmlinux 0x97b6c451 key_unlink +EXPORT_SYMBOL vmlinux 0x97b83d92 rtnl_unicast +EXPORT_SYMBOL vmlinux 0x97c3ab7b pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x97fcf52f devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x982dc4be phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x9834ccdb __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x9866346c locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x98720cf4 __blk_end_request +EXPORT_SYMBOL vmlinux 0x9889ee83 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ +EXPORT_SYMBOL vmlinux 0x99048135 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x99177545 mach_ppa8548 +EXPORT_SYMBOL vmlinux 0x99338850 tty_throttle +EXPORT_SYMBOL vmlinux 0x9936dacd scm_detach_fds +EXPORT_SYMBOL vmlinux 0x9939000a iget5_locked +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x99906af0 sock_create_kern +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999a80c3 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b61a38 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x99baec98 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99bdafc6 prepare_binprm +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99f71309 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x99ff9eff skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x9a0f94d6 sock_no_getname +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2b3ab0 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x9a4447e8 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x9a45fe3c napi_complete_done +EXPORT_SYMBOL vmlinux 0x9a6384d0 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9a742c25 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x9a8b95b4 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x9a8e5aa7 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x9aa973e4 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x9aadfc94 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x9ad1c2b9 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x9ad44a53 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x9adb5cd5 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x9adee038 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9af8a62c tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b4a67d7 kthread_stop +EXPORT_SYMBOL vmlinux 0x9b516776 iget_failed +EXPORT_SYMBOL vmlinux 0x9b576759 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x9b6c5e74 nf_register_hook +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b763545 install_exec_creds +EXPORT_SYMBOL vmlinux 0x9b82bc75 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x9b855afa dup_iter +EXPORT_SYMBOL vmlinux 0x9b87c25b tcp_ioctl +EXPORT_SYMBOL vmlinux 0x9b95c475 kernel_listen +EXPORT_SYMBOL vmlinux 0x9b977894 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9ba7c0e6 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x9bc05c26 md_update_sb +EXPORT_SYMBOL vmlinux 0x9bc25a30 simple_pin_fs +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9bd8485c free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c031df8 elv_add_request +EXPORT_SYMBOL vmlinux 0x9c24bb60 freeze_bdev +EXPORT_SYMBOL vmlinux 0x9c3f6002 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5de84e dev_set_group +EXPORT_SYMBOL vmlinux 0x9c7c1c87 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x9caa2d16 devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cda75dc netlink_set_err +EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL vmlinux 0x9cfa0cc6 seq_lseek +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d116ee5 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x9d14388d blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d2d1a8e input_reset_device +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d3c09f6 wireless_send_event +EXPORT_SYMBOL vmlinux 0x9d5b674d sock_no_bind +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 0x9d90bdf7 sock_no_poll +EXPORT_SYMBOL vmlinux 0x9d952944 mac_find_mode +EXPORT_SYMBOL vmlinux 0x9da90127 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x9dd0034e free_netdev +EXPORT_SYMBOL vmlinux 0x9de649bf napi_gro_receive +EXPORT_SYMBOL vmlinux 0x9ded698f dma_direct_ops +EXPORT_SYMBOL vmlinux 0x9dee9a84 cpm2_immr +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e09d674 dst_init +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e21d7a7 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x9e2ac761 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x9e2ae7d0 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x9e36b47c mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x9e4eaf35 phy_attach +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6cf91b phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e763d60 proc_create_data +EXPORT_SYMBOL vmlinux 0x9e7a6ffc load_nls_default +EXPORT_SYMBOL vmlinux 0x9e9f3b90 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eb20be2 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x9eb406fe __check_sticky +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec2eec9 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x9ece1f2e kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x9ed8f10f vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9eda73ca pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x9eebed61 register_cdrom +EXPORT_SYMBOL vmlinux 0x9efbbebd take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f57960d __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x9f5e3554 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x9f64be2f jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x9f661b42 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x9f6b3087 nvm_register +EXPORT_SYMBOL vmlinux 0x9f8b2696 of_device_unregister +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f94c7df sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f991721 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x9fa6f637 elv_rb_find +EXPORT_SYMBOL vmlinux 0x9fbc4d33 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x9fc1776b bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x9fced396 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x9fd43e35 md_reload_sb +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe09c2d dev_addr_del +EXPORT_SYMBOL vmlinux 0x9fe9cb01 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x9ff3e0cf elevator_alloc +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa00c1d31 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xa00ce7d4 dcache_dir_open +EXPORT_SYMBOL vmlinux 0xa0102fc4 bh_uptodate_or_lock +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 0xa075318c devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0a1db37 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0ca464e register_key_type +EXPORT_SYMBOL vmlinux 0xa0d5e8b2 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0dc595c blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0f39d63 tty_register_driver +EXPORT_SYMBOL vmlinux 0xa0f70824 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa104191e put_disk +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11037f0 ab3100_event_register +EXPORT_SYMBOL vmlinux 0xa11a670a mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa157c38d unregister_shrinker +EXPORT_SYMBOL vmlinux 0xa1600f65 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xa168975b agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xa17f4377 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xa1b0b2c9 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1cd0e80 is_nd_btt +EXPORT_SYMBOL vmlinux 0xa1d7c959 tcp_req_err +EXPORT_SYMBOL vmlinux 0xa1d7ebed posix_unblock_lock +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 0xa21a0aee inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xa24186a3 sget +EXPORT_SYMBOL vmlinux 0xa24d5098 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xa25eb23b set_blocksize +EXPORT_SYMBOL vmlinux 0xa273da04 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xa27ac846 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xa28359a4 sg_miter_start +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa29ac4ab mach_bsc9132_qds +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2be96e6 get_disk +EXPORT_SYMBOL vmlinux 0xa2d91afa alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xa2dba9f2 __alloc_skb +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa337b71c km_new_mapping +EXPORT_SYMBOL vmlinux 0xa338c952 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xa33b262e phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa391ebfb nd_iostat_end +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a4be21 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3bc1eb7 param_get_byte +EXPORT_SYMBOL vmlinux 0xa3c14595 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa418e11c rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xa4311e5c inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0xa433dd68 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa4605a6b vga_get +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa472e95c of_phy_attach +EXPORT_SYMBOL vmlinux 0xa47898f7 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xa4924684 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xa496429d agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xa4a48171 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4bb684f pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xa4bedb96 do_splice_direct +EXPORT_SYMBOL vmlinux 0xa4cb9d70 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4feb18f dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xa51f78ea ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0xa53de50d blk_finish_request +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa553ca35 serio_bus +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa56d818a of_dev_put +EXPORT_SYMBOL vmlinux 0xa58b1482 vm_map_ram +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51190 security_file_permission +EXPORT_SYMBOL vmlinux 0xa5ac939d tty_hangup +EXPORT_SYMBOL vmlinux 0xa5bf6e3d uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xa5d2e6fa dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xa5f28b10 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xa5fc3a26 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xa6273d44 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xa656b159 vme_register_driver +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa65d281b dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa6672054 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67dd0ee eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68f9545 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xa6970398 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa69a8d3f mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0xa6d18e90 security_d_instantiate +EXPORT_SYMBOL vmlinux 0xa6fcd157 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa70501fb filp_close +EXPORT_SYMBOL vmlinux 0xa70a0e16 seq_open +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7452218 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xa74a2ffb tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa7685a03 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa79ca1c0 neigh_destroy +EXPORT_SYMBOL vmlinux 0xa7c6485a jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xa7c665bb set_binfmt +EXPORT_SYMBOL vmlinux 0xa7e1c877 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xa7e401bf kernel_sendpage +EXPORT_SYMBOL vmlinux 0xa7e94902 kmap_pte +EXPORT_SYMBOL vmlinux 0xa7e98230 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xa7e9c325 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xa7f040da d_set_d_op +EXPORT_SYMBOL vmlinux 0xa8022ac6 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xa8042fe8 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xa8164017 generic_perform_write +EXPORT_SYMBOL vmlinux 0xa82bf754 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa84837d0 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xa8689fbc register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 +EXPORT_SYMBOL vmlinux 0xa8adf028 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xa8b3b5b5 agp_find_bridge +EXPORT_SYMBOL vmlinux 0xa8c597a3 agp_enable +EXPORT_SYMBOL vmlinux 0xa8f1673a locks_remove_posix +EXPORT_SYMBOL vmlinux 0xa8f8cab9 unregister_nls +EXPORT_SYMBOL vmlinux 0xa8fb52e3 __module_get +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9089b2d dput +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa920b01d udp_poll +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa92af5e1 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xa9349b84 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0xa9453f15 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0xa9464cc1 serio_open +EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE +EXPORT_SYMBOL vmlinux 0xa95a5235 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97b823a dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xa9b0e296 qdisc_list_add +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d4e0de generic_setlease +EXPORT_SYMBOL vmlinux 0xa9e16dde scsi_host_set_state +EXPORT_SYMBOL vmlinux 0xa9f30033 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xa9f7d31b mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xa9ff0c59 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xaa2764e0 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xaa2e43a9 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa4809d1 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xaa4aa66b deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xaa6901ac __kfifo_out_r +EXPORT_SYMBOL vmlinux 0xaa6da38b find_get_pages_contig +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7bc591 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0xaa82b7b9 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xaa90d75e neigh_connected_output +EXPORT_SYMBOL vmlinux 0xaaa0468c dm_kobject_release +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaab6d623 kernel_param_lock +EXPORT_SYMBOL vmlinux 0xaac9055e nvdimm_bus_unlock +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 0xaae228ad pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafdcc7f bdi_register_owner +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab112254 make_bad_inode +EXPORT_SYMBOL vmlinux 0xab204a12 cdev_init +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab2b8546 clear_user_page +EXPORT_SYMBOL vmlinux 0xab342828 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xab49ffac unregister_binfmt +EXPORT_SYMBOL vmlinux 0xab4f16b6 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xab577988 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xab63fae8 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xab655958 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xab658253 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab7f07c4 mmc_start_req +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabc113d0 lro_flush_all +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabead5d4 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac266dc9 dev_open +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac3271e0 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xac5f5c43 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xac7b9ea2 path_put +EXPORT_SYMBOL vmlinux 0xac8de40a netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xacc7afbc pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd0bdf7 kobject_get +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacee6eca blkdev_put +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacfd63e3 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad0a0fe7 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xad0a11f9 d_obtain_root +EXPORT_SYMBOL vmlinux 0xad1adb9a fput +EXPORT_SYMBOL vmlinux 0xad305ff0 mapping_tagged +EXPORT_SYMBOL vmlinux 0xad329f1a textsearch_register +EXPORT_SYMBOL vmlinux 0xad4706b8 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xad517090 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad95aaa4 elevator_change +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xadb1cb39 netif_skb_features +EXPORT_SYMBOL vmlinux 0xadd02113 dquot_acquire +EXPORT_SYMBOL vmlinux 0xadd8d4d3 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xadf0811d get_baudrate +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae1fa34c cfb_imageblit +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae3e941c pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae5ee535 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xae77a595 radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0xae85a27e radix_tree_lookup +EXPORT_SYMBOL vmlinux 0xae8a88f3 generic_permission +EXPORT_SYMBOL vmlinux 0xae8dbee0 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xae9bc1c2 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xaea56a8f tcp_seq_open +EXPORT_SYMBOL vmlinux 0xaea8ccc5 bio_advance +EXPORT_SYMBOL vmlinux 0xaea9bee4 nvm_get_blk +EXPORT_SYMBOL vmlinux 0xaeab1009 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0xaeb75b75 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaedda372 dquot_commit +EXPORT_SYMBOL vmlinux 0xaee01c09 backlight_device_register +EXPORT_SYMBOL vmlinux 0xaee8587a iget_locked +EXPORT_SYMBOL vmlinux 0xaf01c6fe put_cmsg +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xaf0cb966 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xaf12a7cc get_agp_version +EXPORT_SYMBOL vmlinux 0xaf1d248d sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xaf20bfc5 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf531406 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xaf583170 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xaf5fa0ad flush_tlb_page +EXPORT_SYMBOL vmlinux 0xaf67755e xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xaf686497 scsi_register_driver +EXPORT_SYMBOL vmlinux 0xaf71722a mount_subtree +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf955cb4 scsi_print_sense +EXPORT_SYMBOL vmlinux 0xafabb668 seq_escape +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafb7167d posix_test_lock +EXPORT_SYMBOL vmlinux 0xafc69561 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0xafd64e5d udp_sendmsg +EXPORT_SYMBOL vmlinux 0xaffb7911 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb043b2c3 fb_find_mode +EXPORT_SYMBOL vmlinux 0xb05b86a4 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xb05c6fc5 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0686329 netpoll_setup +EXPORT_SYMBOL vmlinux 0xb074f623 set_page_dirty +EXPORT_SYMBOL vmlinux 0xb07e0aa8 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb08b8cba bitmap_unplug +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c347ca thaw_super +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ea395a __serio_register_port +EXPORT_SYMBOL vmlinux 0xb0ed1a63 dev_uc_del +EXPORT_SYMBOL vmlinux 0xb0f29264 clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +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 0xb16f80c3 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xb19b7ac4 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xb1a0feef simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xb1b923fc swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xb1bed518 pci_dev_get +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 0xb1ec6c8a __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xb20556ad serio_interrupt +EXPORT_SYMBOL vmlinux 0xb232085a skb_pull +EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set +EXPORT_SYMBOL vmlinux 0xb24b6e1c mmc_detect_change +EXPORT_SYMBOL vmlinux 0xb2582a4c skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2683d85 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xb2b16c9f mutex_lock +EXPORT_SYMBOL vmlinux 0xb2b8d1d1 nd_device_register +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2c558a8 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2e261f1 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xb2ff28e3 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xb31b89f8 acl_by_type +EXPORT_SYMBOL vmlinux 0xb3292501 of_match_node +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb331d8e6 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb3659ecc of_get_next_parent +EXPORT_SYMBOL vmlinux 0xb367fd57 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xb369987e tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xb36a3b7c devm_release_resource +EXPORT_SYMBOL vmlinux 0xb36fecc3 __lock_buffer +EXPORT_SYMBOL vmlinux 0xb38a91de start_tty +EXPORT_SYMBOL vmlinux 0xb39e7740 dquot_disable +EXPORT_SYMBOL vmlinux 0xb3a9f42c module_put +EXPORT_SYMBOL vmlinux 0xb3c0a523 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xb3c5f9a5 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb43712ae __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xb438fc86 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4a45cc7 update_region +EXPORT_SYMBOL vmlinux 0xb4c0bbe1 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xb4c32731 invalidate_partition +EXPORT_SYMBOL vmlinux 0xb4debdbb __nd_driver_register +EXPORT_SYMBOL vmlinux 0xb4f5bea1 truncate_setsize +EXPORT_SYMBOL vmlinux 0xb51cd5bb input_inject_event +EXPORT_SYMBOL vmlinux 0xb52c7841 get_tz_trend +EXPORT_SYMBOL vmlinux 0xb56ef7e2 sock_rfree +EXPORT_SYMBOL vmlinux 0xb57166bf __get_user_pages +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b2b7bd dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xb5b97d5a _dev_info +EXPORT_SYMBOL vmlinux 0xb5c0ef04 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xb5cb1f3c nf_log_packet +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5e58701 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xb6168738 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb61c4924 of_get_property +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb653be46 ip6_xmit +EXPORT_SYMBOL vmlinux 0xb655b003 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0xb660edeb ip_do_fragment +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb67b840c vme_dma_request +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69a2464 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xb69d885c vfs_setpos +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6b03adb dev_mc_add +EXPORT_SYMBOL vmlinux 0xb6ec48ae tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xb6fc389b tcp_sendpage +EXPORT_SYMBOL vmlinux 0xb6fc6222 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xb6fecfea seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xb7016ec2 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0xb7078e38 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xb713f5bc devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xb7209e97 fb_pan_display +EXPORT_SYMBOL vmlinux 0xb72c28b8 arp_create +EXPORT_SYMBOL vmlinux 0xb73d2200 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 +EXPORT_SYMBOL vmlinux 0xb758f263 phy_start +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb78d278d vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb79e7f5a kmem_cache_size +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d2bc9e dev_add_pack +EXPORT_SYMBOL vmlinux 0xb7d5d6a7 inet6_protos +EXPORT_SYMBOL vmlinux 0xb7e40439 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xb7f4a59f nvm_submit_io +EXPORT_SYMBOL vmlinux 0xb7f7abcd param_ops_bool +EXPORT_SYMBOL vmlinux 0xb7fe656d phy_stop +EXPORT_SYMBOL vmlinux 0xb80a0b9a inode_needs_sync +EXPORT_SYMBOL vmlinux 0xb8158ef8 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb8370414 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb867bbad inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87971a7 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xb8854ac8 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xb8854c17 twl6040_power +EXPORT_SYMBOL vmlinux 0xb8ba4a4d gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb8c92522 neigh_table_init +EXPORT_SYMBOL vmlinux 0xb8d38765 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xb8d467a6 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xb8e2b3b4 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8f42b44 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xb9171b86 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xb92f7823 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xb93a6736 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb93c388a msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0xb93c8f0c bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xb9539a5e nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xb961f5f2 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xb98d2460 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xb98dfbcd netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xb9b99d68 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xb9cfc533 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xb9d517c4 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f3763d get_unmapped_area +EXPORT_SYMBOL vmlinux 0xb9f4261f dma_find_channel +EXPORT_SYMBOL vmlinux 0xb9f9dc47 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xba08c35d of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0xba0f5092 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xba41914d kmem_cache_create +EXPORT_SYMBOL vmlinux 0xba425d6c irq_set_chip +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba4f8cb2 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0xba5201c5 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xba614648 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xbaaac365 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbae81610 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0xbaece9f2 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xbaf1565e set_security_override +EXPORT_SYMBOL vmlinux 0xbaf534de neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb5f7352 ps2_begin_command +EXPORT_SYMBOL vmlinux 0xbb8d28fc nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbb9bf963 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xbbbc7e58 tty_kref_put +EXPORT_SYMBOL vmlinux 0xbbc42495 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xbbced392 udp_del_offload +EXPORT_SYMBOL vmlinux 0xbbe5619e qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xbbe894de __free_pages +EXPORT_SYMBOL vmlinux 0xbbeffb2f vme_master_mmap +EXPORT_SYMBOL vmlinux 0xbbf55f98 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xbc0b9eeb scsi_execute +EXPORT_SYMBOL vmlinux 0xbc0f4c76 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xbc11da8b blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0xbc17f37e dev_uc_flush +EXPORT_SYMBOL vmlinux 0xbc1bae56 pci_choose_state +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc377cf3 inet6_release +EXPORT_SYMBOL vmlinux 0xbc415aa7 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xbc9333b5 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xbc9881db vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xbc9c50ae fb_set_var +EXPORT_SYMBOL vmlinux 0xbcac461e of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc349d4 seq_file_path +EXPORT_SYMBOL vmlinux 0xbd120405 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xbd28562a mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xbd37bd21 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xbd42e489 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xbd63c2df xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0xbd7fbd3d __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd8a6205 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xbd904c42 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbd9e5d49 __lshrdi3 +EXPORT_SYMBOL vmlinux 0xbdbd0388 generic_file_open +EXPORT_SYMBOL vmlinux 0xbdd3d117 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xbe01a068 scsi_print_result +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe1de561 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xbe275635 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xbe3488d7 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xbe40b8a8 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0xbe47b930 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0xbe4984fa sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xbe593506 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xbe596305 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xbe5c51b2 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xbe6010b9 init_buffer +EXPORT_SYMBOL vmlinux 0xbe65c1fe follow_down +EXPORT_SYMBOL vmlinux 0xbe689517 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xbe76ef21 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xbe7f03dd of_get_parent +EXPORT_SYMBOL vmlinux 0xbe9f4b90 ether_setup +EXPORT_SYMBOL vmlinux 0xbea69b1c scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xbead54c4 neigh_update +EXPORT_SYMBOL vmlinux 0xbecb9de7 param_ops_short +EXPORT_SYMBOL vmlinux 0xbecbc2df get_task_exe_file +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states +EXPORT_SYMBOL vmlinux 0xbf37bbd0 generic_file_mmap +EXPORT_SYMBOL vmlinux 0xbf5131c1 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xbf558f21 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0xbf6252ff setup_new_exec +EXPORT_SYMBOL vmlinux 0xbf69d083 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfae9182 tty_name +EXPORT_SYMBOL vmlinux 0xbfaf16ed dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd29040 i2c_release_client +EXPORT_SYMBOL vmlinux 0xbfdf6020 vfs_rmdir +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07a389e of_get_mac_address +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc086f55a wireless_spy_update +EXPORT_SYMBOL vmlinux 0xc094c0b3 inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0c3fb3e prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xc0c6c5ba fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xc0e10bb0 send_sig_info +EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc +EXPORT_SYMBOL vmlinux 0xc0fc4b83 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xc1004f29 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xc113a599 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc15704c9 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xc15739d1 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xc18a1762 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xc18d747e max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xc18e5c50 sys_copyarea +EXPORT_SYMBOL vmlinux 0xc1942458 param_set_ulong +EXPORT_SYMBOL vmlinux 0xc1c5f3ae padata_add_cpu +EXPORT_SYMBOL vmlinux 0xc1d7c1a5 cdrom_open +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e85d6b __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc28ecb97 netif_napi_del +EXPORT_SYMBOL vmlinux 0xc2a6fe33 bdi_set_max_ratio +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 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2e70461 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xc2fbd646 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xc30bcc8f __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0xc31d1807 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xc334f769 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xc335ad82 inet6_del_offload +EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync +EXPORT_SYMBOL vmlinux 0xc36d544f vfs_rename +EXPORT_SYMBOL vmlinux 0xc3735db5 noop_qdisc +EXPORT_SYMBOL vmlinux 0xc3744c10 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xc3845534 may_umount +EXPORT_SYMBOL vmlinux 0xc3853dd5 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xc3854ded param_ops_uint +EXPORT_SYMBOL vmlinux 0xc3861447 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3cf5576 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xc3d517c3 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xc3d88dad fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xc3ea1f40 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xc3f436c7 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xc41795eb pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc44a98d9 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xc4532ccb __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xc4566c30 request_key_async +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc469563c input_event +EXPORT_SYMBOL vmlinux 0xc46f6b10 elevator_init +EXPORT_SYMBOL vmlinux 0xc4708199 cpm_muram_addr +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49fb6e8 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xc4b5f7b7 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0xc4b76260 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xc4bfd947 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0xc4fd1345 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xc4fd233e netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc4fea05d netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xc502c03b write_one_page +EXPORT_SYMBOL vmlinux 0xc5231575 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xc5357ae8 ps2_end_command +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc58cde86 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc59c9843 agp_create_memory +EXPORT_SYMBOL vmlinux 0xc5ba3300 proc_mkdir +EXPORT_SYMBOL vmlinux 0xc5ca8637 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xc5cc426d i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5e5f3f4 audit_log +EXPORT_SYMBOL vmlinux 0xc5f220a8 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc5ffe5f6 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xc617aeff skb_trim +EXPORT_SYMBOL vmlinux 0xc61e9769 kobject_put +EXPORT_SYMBOL vmlinux 0xc621ad16 get_cached_acl +EXPORT_SYMBOL vmlinux 0xc631214e mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6362018 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xc64f1e7f __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc66cb483 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xc671e137 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xc68fac08 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0xc6a5fb9d xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6b3eeb8 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cd6759 user_revoke +EXPORT_SYMBOL vmlinux 0xc6d4de44 framebuffer_release +EXPORT_SYMBOL vmlinux 0xc6f1a93e neigh_event_ns +EXPORT_SYMBOL vmlinux 0xc704d2fe blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xc70509eb skb_queue_head +EXPORT_SYMBOL vmlinux 0xc7092207 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc72538eb seq_release +EXPORT_SYMBOL vmlinux 0xc73ee329 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc768de19 cpu_all_bits +EXPORT_SYMBOL vmlinux 0xc77d77a4 padata_free +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 0xc78ea1cc dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xc7960409 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xc796f841 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7af7384 iov_iter_zero +EXPORT_SYMBOL vmlinux 0xc7c19b10 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc7ced9b2 __neigh_create +EXPORT_SYMBOL vmlinux 0xc7e10a00 km_is_alive +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc8089ec9 poll_initwait +EXPORT_SYMBOL vmlinux 0xc8193a60 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc82f476f ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc837cc07 simple_open +EXPORT_SYMBOL vmlinux 0xc839462d clk_add_alias +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc840af98 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xc8417cdf udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc866a201 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc88987f3 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xc88dac05 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89bb68e tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b2cb15 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8c982a0 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xc8d65ead netlink_ack +EXPORT_SYMBOL vmlinux 0xc902a054 scsi_scan_host +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc918a5ce tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0xc926fb84 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xc933a8e0 seq_read +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc967d571 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xc9723008 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xc9730c8e dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a4c5c5 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xc9c048ca pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xc9c7561d iterate_supers_type +EXPORT_SYMBOL vmlinux 0xc9d36df8 __netif_schedule +EXPORT_SYMBOL vmlinux 0xc9f034fc of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xca01e76f netif_device_attach +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca136b0b posix_lock_file +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca3a4baf ata_port_printk +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca57ef48 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xca7ad4eb serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0xca8bc00b sg_miter_skip +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca978aa3 block_write_end +EXPORT_SYMBOL vmlinux 0xcaa0c83d vme_irq_generate +EXPORT_SYMBOL vmlinux 0xcab7a0ce ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xcabb9afc __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xcabf4c4b contig_page_data +EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad14d79 vfs_write +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0051bd lock_rename +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb2c85ca dev_warn +EXPORT_SYMBOL vmlinux 0xcb55dae8 pci_scan_bus +EXPORT_SYMBOL vmlinux 0xcb6f84ca elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xcb7101a5 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xcb73ae91 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xcb7f1ab8 tty_port_hangup +EXPORT_SYMBOL vmlinux 0xcb8f286b of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0xcb97363a starget_for_each_device +EXPORT_SYMBOL vmlinux 0xcbb91fba __pagevec_release +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbcb65c8 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xcbce29fb pcie_set_mps +EXPORT_SYMBOL vmlinux 0xcbd2bac1 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcc036830 setattr_copy +EXPORT_SYMBOL vmlinux 0xcc04d008 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc32616f kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xcc4fdeae pci_iomap +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5c8d29 dev_mc_init +EXPORT_SYMBOL vmlinux 0xcc61f557 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xcc671efb of_iomap +EXPORT_SYMBOL vmlinux 0xcc6eba4b delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xcc8aef89 set_anon_super +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xccffbab7 migrate_page_copy +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 0xcd2ec714 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0xcd5374be ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xcd7bd2fe kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c208 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd8a29bf lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0xcd98f86d skb_queue_purge +EXPORT_SYMBOL vmlinux 0xcdabb7dc tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcde253d6 tty_write_room +EXPORT_SYMBOL vmlinux 0xcde47e36 key_task_permission +EXPORT_SYMBOL vmlinux 0xcdf68895 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xcdf7bc9f scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xce0d9200 security_path_rmdir +EXPORT_SYMBOL vmlinux 0xce1f0afe tcp_conn_request +EXPORT_SYMBOL vmlinux 0xce22bb15 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce30cb6f inet_del_offload +EXPORT_SYMBOL vmlinux 0xce33b840 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xce494b41 blk_register_region +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce8170e3 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xce9a0cc6 param_set_charp +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xcec9b870 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0xcedf6718 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xcee47927 iov_iter_init +EXPORT_SYMBOL vmlinux 0xceed698e tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefa7432 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf111eb4 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0xcf172204 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xcf1b6542 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0xcf1d7646 isa_mem_base +EXPORT_SYMBOL vmlinux 0xcf36f80c nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xcf7c07c4 udp_ioctl +EXPORT_SYMBOL vmlinux 0xcf851e14 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xcfa31c59 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xcfd93ee0 phy_print_status +EXPORT_SYMBOL vmlinux 0xcfda4677 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xcfde2f30 backlight_force_update +EXPORT_SYMBOL vmlinux 0xd0057715 seq_release_private +EXPORT_SYMBOL vmlinux 0xd010d7a8 vm_insert_page +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd09212c5 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd09c382c param_get_bool +EXPORT_SYMBOL vmlinux 0xd09dc0f6 seq_vprintf +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b302d1 tcp_poll +EXPORT_SYMBOL vmlinux 0xd0dd40d5 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0f36f0d audit_log_format +EXPORT_SYMBOL vmlinux 0xd0f37e33 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xd0fb7cd4 __tasklet_hi_schedule_first +EXPORT_SYMBOL vmlinux 0xd0fed14a adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd12414d2 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xd1386ffc tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xd13a8b1b nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xd13effc3 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xd1746f60 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1c40a0a scsi_remove_device +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1de8c8c __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd1f51925 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xd1fcf86c skb_seq_read +EXPORT_SYMBOL vmlinux 0xd21a2b56 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xd224ddc8 neigh_ifdown +EXPORT_SYMBOL vmlinux 0xd2367ddb kill_pid +EXPORT_SYMBOL vmlinux 0xd24b45d7 pci_release_region +EXPORT_SYMBOL vmlinux 0xd24d7159 dev_uc_add +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 0xd27a10e8 unregister_console +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd281cb0b sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xd28fd3c2 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0xd28ff7b0 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xd29ee5af input_flush_device +EXPORT_SYMBOL vmlinux 0xd2ab318b fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2bc2f79 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0xd2be342a devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xd2c5d685 vme_slot_num +EXPORT_SYMBOL vmlinux 0xd2c67e15 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xd2c76b98 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0xd2c77e5f security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xd2d4ca19 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e0154f __elv_add_request +EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xd2ff3e69 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0xd307b7e3 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xd310d153 page_waitqueue +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd31ecdf2 __getblk_slow +EXPORT_SYMBOL vmlinux 0xd33d43b4 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xd343d7bc free_user_ns +EXPORT_SYMBOL vmlinux 0xd35480c4 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0xd3612223 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xd381e4aa phy_driver_register +EXPORT_SYMBOL vmlinux 0xd3852393 file_open_root +EXPORT_SYMBOL vmlinux 0xd3a703f5 mmc_request_done +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c71d32 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xd3cdd739 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xd4019bd4 f_setown +EXPORT_SYMBOL vmlinux 0xd41051e1 dev_mc_del +EXPORT_SYMBOL vmlinux 0xd412d6a8 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xd41c8724 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xd420ef4d scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xd441c258 write_cache_pages +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd47f4970 netdev_printk +EXPORT_SYMBOL vmlinux 0xd47ffeb5 kernel_connect +EXPORT_SYMBOL vmlinux 0xd499a2b5 dst_release +EXPORT_SYMBOL vmlinux 0xd4a58472 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xd4bafbf7 mach_corenet_generic +EXPORT_SYMBOL vmlinux 0xd4bc9715 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xd4c935d7 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xd4d37eba blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0xd4dd3f68 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xd52c5541 follow_up +EXPORT_SYMBOL vmlinux 0xd53c0482 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xd53c9625 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xd54201de dev_addr_init +EXPORT_SYMBOL vmlinux 0xd54d9923 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd560ed4f qdisc_reset +EXPORT_SYMBOL vmlinux 0xd57693bd copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xd5890469 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xd5890c4c mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xd58ea4b4 of_phy_connect +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd596dfd5 unlock_buffer +EXPORT_SYMBOL vmlinux 0xd5b53b5c mntget +EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 +EXPORT_SYMBOL vmlinux 0xd5ea1590 blk_post_runtime_resume +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 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd628ae79 ihold +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd651a5dc lock_sock_nested +EXPORT_SYMBOL vmlinux 0xd6808d79 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless +EXPORT_SYMBOL vmlinux 0xd69b783c mmc_can_erase +EXPORT_SYMBOL vmlinux 0xd6a00578 simple_unlink +EXPORT_SYMBOL vmlinux 0xd6c731c0 __sock_create +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6e3a51c find_get_entry +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f5e0ac abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xd708d3ad dquot_enable +EXPORT_SYMBOL vmlinux 0xd70ce758 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xd720348a nd_integrity_init +EXPORT_SYMBOL vmlinux 0xd727b872 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xd72a21e5 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0xd759d543 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd7620812 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xd769c7d3 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xd779199c __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xd784ab7f tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd79c897b of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xd7a25def bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xd7ac9ecf dquot_operations +EXPORT_SYMBOL vmlinux 0xd7b41933 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e70720 import_iovec +EXPORT_SYMBOL vmlinux 0xd7e77544 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7ea83fa neigh_direct_output +EXPORT_SYMBOL vmlinux 0xd80b9ac9 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xd8132e92 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0xd8202752 devm_gpio_free +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd84739b4 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return +EXPORT_SYMBOL vmlinux 0xd852ab55 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xd85833cb __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0xd85e5862 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0xd878fe4d __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xd87a2ecc bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xd87c1898 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xd89aab1f qdisc_destroy +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd89f8359 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8d965ba tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xd8deac7b iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e568bb vme_lm_request +EXPORT_SYMBOL vmlinux 0xd8e9a1ba sock_no_accept +EXPORT_SYMBOL vmlinux 0xd90bbdd3 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xd91577ac simple_follow_link +EXPORT_SYMBOL vmlinux 0xd92edc81 param_get_int +EXPORT_SYMBOL vmlinux 0xd932cadf request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd949f80b security_path_chmod +EXPORT_SYMBOL vmlinux 0xd95a72f4 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd9769704 redraw_screen +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98a17c6 uart_resume_port +EXPORT_SYMBOL vmlinux 0xd9b54492 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xd9b72ff4 __kernel_write +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e4768c __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xda18a86f kobject_del +EXPORT_SYMBOL vmlinux 0xda264388 dump_skip +EXPORT_SYMBOL vmlinux 0xda3718e1 get_super_thawed +EXPORT_SYMBOL vmlinux 0xda3a7f5d blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda42284b netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xda46904a kmalloc_caches +EXPORT_SYMBOL vmlinux 0xda4e2523 make_kprojid +EXPORT_SYMBOL vmlinux 0xda521eb0 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xda562a08 agp_free_memory +EXPORT_SYMBOL vmlinux 0xda72cbfe get_phy_device +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda975092 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdaac0f2a mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdace1260 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xdad8aaad dump_truncate +EXPORT_SYMBOL vmlinux 0xdae4036e mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xdaebba4e pci_alloc_dev +EXPORT_SYMBOL vmlinux 0xdaee50af tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb3df711 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb793ef4 blk_init_tags +EXPORT_SYMBOL vmlinux 0xdba09370 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0xdbba38da skb_tx_error +EXPORT_SYMBOL vmlinux 0xdbc23f5c phy_connect +EXPORT_SYMBOL vmlinux 0xdbd238f2 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xdbeb21fe phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xdbeb84f8 prepare_creds +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1c2047 release_sock +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc220df6 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xdc24c785 sock_register +EXPORT_SYMBOL vmlinux 0xdc373bc6 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5baa8d register_shrinker +EXPORT_SYMBOL vmlinux 0xdc68c171 of_clk_get +EXPORT_SYMBOL vmlinux 0xdc70e312 tty_unregister_device +EXPORT_SYMBOL vmlinux 0xdc7f8d71 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xdc899987 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcbef132 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xdcce0a5b pci_release_regions +EXPORT_SYMBOL vmlinux 0xdcdb9d9f flush_dcache_page +EXPORT_SYMBOL vmlinux 0xdcdee616 __mutex_init +EXPORT_SYMBOL vmlinux 0xdce0714b pci_bus_get +EXPORT_SYMBOL vmlinux 0xdcfdce31 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd13a84c read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd2eeb6c filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0xdd5842dc dentry_open +EXPORT_SYMBOL vmlinux 0xdd5e8b05 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xdd65b92a writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd9ca449 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xdd9ea307 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xdd9f1d4d vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xdda7180b pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xddc0411b mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xddda1cfd cdev_del +EXPORT_SYMBOL vmlinux 0xdde373fa send_sig +EXPORT_SYMBOL vmlinux 0xde004286 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xde13abe2 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xde25e29d inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xde2c1321 d_rehash +EXPORT_SYMBOL vmlinux 0xde3e3e41 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xde4049fa mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xde41138e gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xde41b318 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdea053e9 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xdebd3c32 genphy_update_link +EXPORT_SYMBOL vmlinux 0xdebea532 bio_clone_fast +EXPORT_SYMBOL vmlinux 0xded931f3 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xdef12db8 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xdf264748 inet_release +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a002c pci_domain_nr +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf437794 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xdf4aea42 simple_transaction_get +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf54c061 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf71be39 block_write_full_page +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdf9d6662 tcp_connect +EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger +EXPORT_SYMBOL vmlinux 0xdff68876 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xdff862c3 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00ed65b inetdev_by_index +EXPORT_SYMBOL vmlinux 0xe028d50e ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xe0391b0b i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xe03ad72c cdrom_check_events +EXPORT_SYMBOL vmlinux 0xe043fffc mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xe0480907 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xe04f6eba tcf_hash_check +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05f5a29 filemap_map_pages +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 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0da0cb3 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xe0e97f52 nd_btt_probe +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe176f9ac pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0xe1792071 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xe19ed0ec dquot_alloc +EXPORT_SYMBOL vmlinux 0xe1a13396 sock_no_connect +EXPORT_SYMBOL vmlinux 0xe1b75d08 kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xe1c3eaab find_inode_nowait +EXPORT_SYMBOL vmlinux 0xe1c7a6c0 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xe1d04bbe mmc_remove_host +EXPORT_SYMBOL vmlinux 0xe1ee0906 i2c_transfer +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe226e3e9 proc_set_size +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe235b288 kern_path_create +EXPORT_SYMBOL vmlinux 0xe23875e6 unlock_rename +EXPORT_SYMBOL vmlinux 0xe2393ba8 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe25918ce mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec +EXPORT_SYMBOL vmlinux 0xe29cd325 d_alloc +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2babf67 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2c65acf of_get_cpu_node +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2ead616 dev_get_flags +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f786f1 dentry_unhash +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe3094ee5 arp_send +EXPORT_SYMBOL vmlinux 0xe338c42c netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xe3470269 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xe34c5595 kset_unregister +EXPORT_SYMBOL vmlinux 0xe3622573 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xe36828b7 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xe378c0cd balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3db8c0b netlink_unicast +EXPORT_SYMBOL vmlinux 0xe3e8143e local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0xe3ee4161 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xe3f9c7ca __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xe43b2a21 unlock_page +EXPORT_SYMBOL vmlinux 0xe4602bf4 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe46abe8b current_in_userns +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe4940ce3 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xe4a3dab8 register_filesystem +EXPORT_SYMBOL vmlinux 0xe4b0c378 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4d2af3b generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4ebd07c of_node_get +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe50c1db7 uart_match_port +EXPORT_SYMBOL vmlinux 0xe50eb33a nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xe517bc1e xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe52ec387 I_BDEV +EXPORT_SYMBOL vmlinux 0xe53ade66 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xe55d80a7 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xe56f4cfd i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe57c431e inode_init_once +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5aa629d tcf_hash_search +EXPORT_SYMBOL vmlinux 0xe5c1df63 nf_log_register +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d4bf39 tcp_prot +EXPORT_SYMBOL vmlinux 0xe5ec3dd1 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f06c23 kill_fasync +EXPORT_SYMBOL vmlinux 0xe604fa2c skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xe605dd14 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xe610c86f skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xe612e67e blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xe661c46e pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe66cdfaa sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xe66ddcf7 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6980b28 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xe6a9fb3d in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xe6aed802 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xe6b16bf3 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xe6bad8ad dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xe6c13f6d blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages +EXPORT_SYMBOL vmlinux 0xe6dddb86 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xe6de07be pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6efd1e4 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe6fc5fff skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xe70317f6 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xe722294b eth_validate_addr +EXPORT_SYMBOL vmlinux 0xe73bd603 dst_alloc +EXPORT_SYMBOL vmlinux 0xe73dc8dc inet_frags_init +EXPORT_SYMBOL vmlinux 0xe7502aca phy_init_hw +EXPORT_SYMBOL vmlinux 0xe77f14a3 skb_put +EXPORT_SYMBOL vmlinux 0xe77f2f7f vfs_mknod +EXPORT_SYMBOL vmlinux 0xe786336a nf_log_set +EXPORT_SYMBOL vmlinux 0xe79c5f4c page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xe7a4b938 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7c2b11a i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xe7cb5cfd __quota_error +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7da80a5 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xe7f20375 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe8551fe5 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xe8665881 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xe86ac22f flush_signals +EXPORT_SYMBOL vmlinux 0xe87b2edd sg_copy_buffer +EXPORT_SYMBOL vmlinux 0xe884d028 udp_add_offload +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8aba5b6 padata_stop +EXPORT_SYMBOL vmlinux 0xe8ac9c45 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0xe8ae2d9a input_release_device +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8d2f104 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xe8eae855 proto_register +EXPORT_SYMBOL vmlinux 0xe8f3c91f nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xe8fbc6e2 skb_copy +EXPORT_SYMBOL vmlinux 0xe90ac9fc sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xe90dbd30 pcim_iomap +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe91d555d generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xe932af4c no_llseek +EXPORT_SYMBOL vmlinux 0xe932c78f should_remove_suid +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe9392aba generic_delete_inode +EXPORT_SYMBOL vmlinux 0xe93a803c kunmap_high +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe956c429 finish_no_open +EXPORT_SYMBOL vmlinux 0xe96b5629 param_set_ushort +EXPORT_SYMBOL vmlinux 0xe96b7375 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xe9708767 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xe9753de5 notify_change +EXPORT_SYMBOL vmlinux 0xe982180d ipv4_specific +EXPORT_SYMBOL vmlinux 0xe9893727 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xe99c5122 sys_fillrect +EXPORT_SYMBOL vmlinux 0xe99e8485 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xe9c1c3bc param_ops_ulong +EXPORT_SYMBOL vmlinux 0xe9c67cf3 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xe9cca537 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xe9e87238 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xe9eeb680 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fc24a5 new_inode +EXPORT_SYMBOL vmlinux 0xe9fc6df4 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea34a8c0 devm_clk_get +EXPORT_SYMBOL vmlinux 0xea3d6c3d tty_port_destroy +EXPORT_SYMBOL vmlinux 0xea53dd79 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea8da767 arp_xmit +EXPORT_SYMBOL vmlinux 0xea8e8e63 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeaa5aecd d_invalidate +EXPORT_SYMBOL vmlinux 0xeab8546a of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0xead79817 nf_log_trace +EXPORT_SYMBOL vmlinux 0xeadff2b5 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0xeaf1a650 param_ops_long +EXPORT_SYMBOL vmlinux 0xeaf1f383 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xeb1c4550 kill_pgrp +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb5e8f79 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xeb77c329 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xeb941906 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xeba0398e page_symlink +EXPORT_SYMBOL vmlinux 0xebb797a5 fget_raw +EXPORT_SYMBOL vmlinux 0xebedb8af security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xebf02248 eth_header_cache +EXPORT_SYMBOL vmlinux 0xec0038bf mmc_register_driver +EXPORT_SYMBOL vmlinux 0xec105aa7 dquot_destroy +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec215765 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec52b802 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xec537b86 ip6_frag_init +EXPORT_SYMBOL vmlinux 0xec5f38f7 mmc_free_host +EXPORT_SYMBOL vmlinux 0xec6cd24f pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xec8a6f36 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xec999ce0 seq_pad +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xeccd1e1e scsi_device_get +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecec56f2 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xed2a4e65 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xed4836f1 security_path_unlink +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed62f800 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xed76e559 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xed7a56cd dev_remove_offload +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda08a2c vfs_writev +EXPORT_SYMBOL vmlinux 0xeda67cab __bforget +EXPORT_SYMBOL vmlinux 0xedba51a6 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedd2c03f uart_update_timeout +EXPORT_SYMBOL vmlinux 0xedeb437b iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xedebed62 path_nosuid +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee08cd64 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3c16bc vfs_symlink +EXPORT_SYMBOL vmlinux 0xee4976cb input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xee4ce451 fget +EXPORT_SYMBOL vmlinux 0xee64bef7 iterate_mounts +EXPORT_SYMBOL vmlinux 0xee8f935e mdiobus_write +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9bf214 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xeea16200 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeecbdf7a seq_printf +EXPORT_SYMBOL vmlinux 0xeee14642 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xeeec6d46 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef1a35b9 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xef22453f tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xef4235db vfs_link +EXPORT_SYMBOL vmlinux 0xef58a953 simple_dname +EXPORT_SYMBOL vmlinux 0xef65713f pci_disable_device +EXPORT_SYMBOL vmlinux 0xef72700c kmap_high +EXPORT_SYMBOL vmlinux 0xef732500 keyring_search +EXPORT_SYMBOL vmlinux 0xef803ee9 inet_ioctl +EXPORT_SYMBOL vmlinux 0xef865a07 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0xefb08eea i2c_smbus_write_i2c_block_data +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 0xeff182a4 mpage_writepage +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf016d8ef bio_put +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf0203183 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xf0249a29 inet_listen +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf071e805 igrab +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08d38cc dev_get_stats +EXPORT_SYMBOL vmlinux 0xf094513d udp_proc_register +EXPORT_SYMBOL vmlinux 0xf096cd7c devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xf097bc5a dev_err +EXPORT_SYMBOL vmlinux 0xf09ae4ac tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf09f2c99 ip_options_compile +EXPORT_SYMBOL vmlinux 0xf0aa2ff4 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xf0d216c5 generic_update_time +EXPORT_SYMBOL vmlinux 0xf0d800fc i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xf0de3d57 get_gendisk +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f9ce3f __ps2_command +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf1130b41 __sb_end_write +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf12b1c36 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0xf133ebe7 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xf13c88c5 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1525a86 pci_enable_device +EXPORT_SYMBOL vmlinux 0xf181755d nd_device_unregister +EXPORT_SYMBOL vmlinux 0xf1862ad0 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xf195bfef seq_write +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1aafe72 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xf1b56960 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xf1be43b0 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xf1cdb20b elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf20d0a2f to_ndd +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf21a4289 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf23c9462 phy_suspend +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf28142e5 __register_binfmt +EXPORT_SYMBOL vmlinux 0xf288363e skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xf28f9e52 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a95e04 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xf2acb6a4 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2d88c11 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xf2ea632e ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0xf2f84c97 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xf2f8609f inet6_ioctl +EXPORT_SYMBOL vmlinux 0xf30a86a2 netlink_net_capable +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf3315cb4 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf366031a keyring_alloc +EXPORT_SYMBOL vmlinux 0xf368f623 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xf36c2603 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xf36daa87 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xf36f6abc tty_port_put +EXPORT_SYMBOL vmlinux 0xf382fc43 del_gendisk +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf392c88a tty_devnum +EXPORT_SYMBOL vmlinux 0xf39cac96 alloc_disk +EXPORT_SYMBOL vmlinux 0xf39e7f46 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xf3b7bf1d rtnl_notify +EXPORT_SYMBOL vmlinux 0xf3cf85ec of_device_register +EXPORT_SYMBOL vmlinux 0xf3debfa6 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ea8f43 submit_bio_wait +EXPORT_SYMBOL vmlinux 0xf3f370f7 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xf3f55f56 register_netdev +EXPORT_SYMBOL vmlinux 0xf3f9c5ae ppp_input_error +EXPORT_SYMBOL vmlinux 0xf407c7ab unregister_netdev +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf42b634e __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xf42cc8af devm_memremap +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt +EXPORT_SYMBOL vmlinux 0xf4504307 bio_split +EXPORT_SYMBOL vmlinux 0xf4732a3b inode_init_always +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf476b0d7 request_firmware +EXPORT_SYMBOL vmlinux 0xf493b5af udp_set_csum +EXPORT_SYMBOL vmlinux 0xf493f525 tcp_make_synack +EXPORT_SYMBOL vmlinux 0xf4b47437 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xf4bc10cb __pci_enable_wake +EXPORT_SYMBOL vmlinux 0xf4bc79ca fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4eef396 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf4f0963b d_drop +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50de326 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xf5112365 migrate_page +EXPORT_SYMBOL vmlinux 0xf517b0cf sock_recvmsg +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 0xf54aee79 clear_wb_congested +EXPORT_SYMBOL vmlinux 0xf551d8d9 __napi_schedule +EXPORT_SYMBOL vmlinux 0xf55313a0 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0xf5556bef tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xf56a62c0 dquot_release +EXPORT_SYMBOL vmlinux 0xf5767213 dma_set_mask +EXPORT_SYMBOL vmlinux 0xf5831afc pci_set_mwi +EXPORT_SYMBOL vmlinux 0xf5886951 pci_device_from_OF_node +EXPORT_SYMBOL vmlinux 0xf5914de2 sg_miter_next +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5a75f33 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xf5abf007 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xf5b81f2c simple_write_end +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5da07e9 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f9686d __f_setown +EXPORT_SYMBOL vmlinux 0xf603376c mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xf603b4f8 d_add_ci +EXPORT_SYMBOL vmlinux 0xf604d674 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf65a776c kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xf66e1df4 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xf67e4a65 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf689c11a __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xf68bfa8d dev_mc_sync +EXPORT_SYMBOL vmlinux 0xf68dc811 write_inode_now +EXPORT_SYMBOL vmlinux 0xf69b2380 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6bd3726 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xf6d5b3fe block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xf6e252d5 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f0bb36 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xf710c5f2 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xf7148c78 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return +EXPORT_SYMBOL vmlinux 0xf732ba36 noop_fsync +EXPORT_SYMBOL vmlinux 0xf7494762 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf76cbafa tso_start +EXPORT_SYMBOL vmlinux 0xf771d198 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xf789e69e inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xf7a1d03b ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xf7b85bfb param_set_copystring +EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add +EXPORT_SYMBOL vmlinux 0xf7ea2e5e kmem_cache_free +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 0xf83eb7dd tso_build_hdr +EXPORT_SYMBOL vmlinux 0xf84bbe2c pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xf84c33db scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0xf862e056 kernel_read +EXPORT_SYMBOL vmlinux 0xf86b430a __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xf8a38efe pci_assign_resource +EXPORT_SYMBOL vmlinux 0xf8a5134f iunique +EXPORT_SYMBOL vmlinux 0xf8db2e03 pci_remove_bus +EXPORT_SYMBOL vmlinux 0xf8dc7874 __bread_gfp +EXPORT_SYMBOL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f5511e iput +EXPORT_SYMBOL vmlinux 0xf8f8da3e napi_get_frags +EXPORT_SYMBOL vmlinux 0xf90f1f66 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf93601b1 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf943c28f pid_task +EXPORT_SYMBOL vmlinux 0xf96a250b __genl_register_family +EXPORT_SYMBOL vmlinux 0xf96bce9b blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xf971469a done_path_create +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9b968bd of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xf9c08149 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xf9e18417 rwsem_wake +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa1d863a pci_request_regions +EXPORT_SYMBOL vmlinux 0xfa4c218f inet_add_offload +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5cfae1 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xfa7f5173 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xfa975e8f mount_single +EXPORT_SYMBOL vmlinux 0xfa9e7888 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xfaaea5d7 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xfaaf9c9f kobject_init +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfae1634b vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xfae44d80 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaea6d35 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xfaf999c7 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xfb287521 simple_readpage +EXPORT_SYMBOL vmlinux 0xfb2bc19c posix_acl_valid +EXPORT_SYMBOL vmlinux 0xfb2e10da tcp_release_cb +EXPORT_SYMBOL vmlinux 0xfb3c574e swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xfb456349 d_alloc_name +EXPORT_SYMBOL vmlinux 0xfb58c03e force_sig +EXPORT_SYMBOL vmlinux 0xfb5fe6d4 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb89b08d inode_change_ok +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfba388ef dm_get_device +EXPORT_SYMBOL vmlinux 0xfba5c598 input_allocate_device +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbae9801 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcbb8eb down_write +EXPORT_SYMBOL vmlinux 0xfbe49f2d bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xfbfcd923 key_type_keyring +EXPORT_SYMBOL vmlinux 0xfc01a7df kfree_put_link +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc055ae6 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xfc194e9c abx500_register_ops +EXPORT_SYMBOL vmlinux 0xfc1ae516 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xfc2c0628 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc459b91 set_bh_page +EXPORT_SYMBOL vmlinux 0xfc468276 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xfc4b3b35 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_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 0xfcf84a93 atomic64_xor +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfa2b71 lwtunnel_input +EXPORT_SYMBOL vmlinux 0xfcfa8a63 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xfd03a9fb inet_sendpage +EXPORT_SYMBOL vmlinux 0xfd0a7888 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xfd0ce366 unload_nls +EXPORT_SYMBOL vmlinux 0xfd189048 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd61beac phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xfd71066d fb_set_cmap +EXPORT_SYMBOL vmlinux 0xfd858e2b dquot_quota_on +EXPORT_SYMBOL vmlinux 0xfd8e5e50 simple_setattr +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfd9d5c22 serio_rescan +EXPORT_SYMBOL vmlinux 0xfdad1319 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xfdb025a4 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdc7880e of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xfdc7c731 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xfdd96949 sched_autogroup_detach +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 0xfe08286a dget_parent +EXPORT_SYMBOL vmlinux 0xfe0ecafa sock_i_ino +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6df91a elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xfe6e7c19 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xfe716b94 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe822d55 get_brgfreq +EXPORT_SYMBOL vmlinux 0xfe8c37fe blk_start_request +EXPORT_SYMBOL vmlinux 0xfe9369f8 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0xfeaa1d91 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xfec41013 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfed364ca netif_receive_skb +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfef145ac sock_create +EXPORT_SYMBOL vmlinux 0xff0415c4 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xff058f6a input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff32b08f nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xff3652e2 sk_stream_error +EXPORT_SYMBOL vmlinux 0xff3f6348 netdev_err +EXPORT_SYMBOL vmlinux 0xff631db1 generic_block_fiemap +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 0xff91cdba scsi_device_resume +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xff9d7043 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xffa853e1 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xffce1c9e vme_bus_type +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffd8cc0d agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xffdba65a agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xffe1568e __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xffe2f133 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xffe37359 from_kuid +EXPORT_SYMBOL_GPL crypto/af_alg 0x11bd84e0 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x1431b307 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x14d7ed4e af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x64e45f02 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x8a47b2dc af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x916b85af af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x93c6b8d4 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xabd6d359 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xe51c3414 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xec6523a3 af_alg_accept +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x165e2858 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x4eece622 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x5ab0c2e8 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xe8bbd759 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xff3b6265 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x42e5a15a async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4a0a5f85 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa2342795 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe1436945 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x9d469a4a async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb1a432fd async_xor +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 0x09c17b77 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0b74cd1b ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0dae8735 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x19d8acc4 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1dc2a184 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1f00bfcb ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x279f3c1a ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2fc92b9a ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3c86ea8f ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3d2021e8 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x482c4055 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x566105ec ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x763c67a1 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x76c6a6a5 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8644c097 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x86ba6c9b ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x95052720 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x9a022e97 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb4be07a8 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbdb72d93 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc1ce2c31 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd3e7b1d3 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf8fd12e5 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0105e889 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x36ba45a6 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x4dd3daac ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5ae84ff9 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5ef3c3dd ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6f164d1a ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x88d26a7a ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8ee25769 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8f5d8903 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb1b22716 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xb6471921 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdde354cd ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfdfecd5e ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x9b763095 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xf2b2c31a 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 0x0be639a1 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x2d1c9833 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x601b71ce __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xf07a19b2 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x06c7a975 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0ed3a09c __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0f345be5 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1069089a bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x143fc979 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1c3584d4 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2303ae28 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2631d468 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2c2dab2f bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x62d3ba67 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f89c457 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x788e78a1 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x7f44819a bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x85bf9eeb bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb1c1f721 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbabdceb1 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbb32668b bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xca209ac5 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xce607b81 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xded7fc5f bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2db9efd bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf6d2dc34 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf7f757b2 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xff99b797 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x36d8d7a0 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4047f6b8 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4c4c1f17 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x4fe568b0 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x78184929 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd2d2f174 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1a99b781 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x21747ddd btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x26e9a3e2 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x65d69c25 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x70e2657c btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x82928531 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9ee4dbf8 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa23066d6 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa63d9cc8 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb51f9dce btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd1d3d40c btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xf56a6a1e btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x080cbeeb btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2f9cae11 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x440600c4 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4b64d455 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x54f7357a btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x94110ed4 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9bf76c4e btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xae068712 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb13e0a85 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbce8e9ad btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xdad60ece btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9facf9e7 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xd4f01bf8 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xcccc0d1f btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x2e7234f0 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0d2f983e dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x0ded4ea7 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x17ab607a dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x2b969762 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xa95aaba4 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/fsldma 0x2f58c9ca fsl_dma_external_start +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x3d3a6106 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x9cc32f16 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb9ad382b hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x009fa017 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x15cdbd2f vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x5251a42c vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xb2a57932 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x002ccf4d edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x06e15efc edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1dd5c14c edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3bb2452f edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x59d520d7 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x65f113d6 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x67495adc edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x735517e5 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7c3f3a7e edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x83a46f38 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8db8f6fd edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8dc7f3e4 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8f238965 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x96611aee edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9e3eaecc edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa049e6e3 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xaf4239f7 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb705add7 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbf18b8ad edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xd49c704f edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe001542e find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe31df05c edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xfe656dd0 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x72eb335f fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x7c49b872 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x83d213a5 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9dd903b9 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc27983b6 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf515fc80 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x77703d1f bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xe2a7ab5e bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x584f053d __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xd296fb2d __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x015c6ba8 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x539ecc5b drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5e0ebb59 drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x63cd2e0e drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xa89100e6 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xbc606b92 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x03058964 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x31ae2f1a 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 0xfcf82b2e ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x07c59108 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08b5ec09 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1badb25d hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x201634e2 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x249f0486 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2765d584 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2fef3d35 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3182e7e6 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d478882 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e2cfe6f hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f4573af hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3f95b7d7 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44e2c739 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5a9dd14f hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5e44d8a0 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5fffa07e hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x63625751 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e856b69 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f75f28d hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x808e3d76 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8a8a82e5 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x96a16813 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x977d7855 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa31d0d80 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa37e0b0b hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa400ee2a hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa6f0b1e4 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xab91e5f7 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe34628a hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbfdd5cda hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcbd7f186 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd11f47ce __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe247ac3f hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf985be39 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfcb79731 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfdf40a1d hid_add_device +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 0xd5cef965 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x148a9c00 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3b589d33 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x4367f1fa roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x833dc8b4 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc6edd53d roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xef402daa roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x12edb95e sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x145af543 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4625b0ff sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x617cf5f9 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa08b587c sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xada91b5c sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc80e3ed9 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xda6b1317 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf69d8982 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb7ba1ae9 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x09ee0a49 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x13524dac hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x33797a03 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x46e76b18 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4ad10979 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4dbfeab6 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x50527cd0 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x595084ce hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a1a42be hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6a9511e4 hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x704ef5ac hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x735740e1 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x999b77df hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9a3d9da3 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcd88781a hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd2aed080 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe5ceadb6 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe8f75bfc hsi_async +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x4966e2e5 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xaa143221 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xbfb90ad4 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x148275fd pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2661788d pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3de21e94 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x44ff66b2 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x574d71d3 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5ec5d9db pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x63e796f3 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6ce0bb04 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x720abe47 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x74321323 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8b7d7463 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x933a1ecf pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x977fee5a pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xaa9818fd pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfa7632e7 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x263fe559 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x450d553c intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x46f713a0 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4fd38d99 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x509950b6 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x8c55373c intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaeffe81c intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x17744619 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x41dd245e stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4d5cfd4a stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x5682e8d0 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x6130722c stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x309b32de i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x490f9080 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x553fd5d7 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x70b7dd32 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe5cac11b i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x8faae482 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd35df3bc i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x5889f0ef i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x71c488f2 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x178bcea2 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x226f53fc bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb64e9fe9 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0b5600ad ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x20206e9b ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2c4c4f92 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x42a44ce8 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xc286deac ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd11ef25e ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdec6eaa8 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe27de953 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xec74ec82 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 0x0168d9e9 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 0x3a620777 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 0x03875796 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xfc43fce6 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x81a0e94c bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xcb432b54 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xf23f677f bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0acc817b adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x442b3d4d adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5700e6f6 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x58ef5b14 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6bece9f7 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x872e8740 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9c59af7a adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa7caa9f0 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xcf6eced3 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xd1d3d76c adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfc99f094 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfecced94 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x07d3a54e iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0c8bb786 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0e4338e1 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x10c704b2 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x1d88685d iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x21e6aabb iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x23ded7d2 devm_iio_device_unregister +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 0x2b392706 iio_dealloc_pollfunc +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 0x5aa24d81 iio_enum_write +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 0x6f4ddc15 iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x80705783 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x88a90538 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x89eb4fd7 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8f91461b iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x92ccac99 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x95e9009c devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa00cb28e iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb309d8cb iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb7503bf8 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbeba73e3 iio_read_channel_processed +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 0xd2fcb66a devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe3519e46 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf3a5af8f iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf5f868cc iio_buffer_get +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xa84d60d8 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x9c70ea50 matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x1198c84e 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 0x6ff90aa5 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x9cf9d2b1 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc795c94d cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x06190d29 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x3bd6227b cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xa8d4748a cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xbaf18ff4 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xcbbd8e3f cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x089542b9 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x995f4ba4 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9d317aa4 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xbb5bbf12 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x022227a4 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x2b0a9963 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4a3f5b33 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5d28b7b3 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6656e38a wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x67ab43c1 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7a155e9b wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7a815f24 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x809f0aea wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xab01435f wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe677223a wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xf989c594 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x05c56ccc ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x46690c25 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x5940d02a ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x6502a558 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7615c868 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x87da02b1 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x94f9d7d0 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa079d9b9 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xde66db02 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 0x0de17397 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x50c1e8f5 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x63cce22e gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x78b8f03b gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8082514d gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x93bdf962 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9e8d5618 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb2189f0f gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb3c13333 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbc954504 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbec472ee gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc52ce89a gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xca5a8e70 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe3556d4a gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe48f8665 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xef7c29c2 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfa82d24c gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x1da77c74 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x2439cac3 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x44b79e91 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x69198f6f led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xc53ee87a led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcf048aef led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1d70a4bf lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x38d94536 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x391a48a3 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5b65c969 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x74ab5a9f lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9c9833cc lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa4fad745 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcb5f8f58 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xe10815d4 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf03eb5ec lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xf8b3ee56 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 0x0be7b235 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x21a15c49 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x31029f71 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x627f73f0 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x6da98a1d wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xb05a682e wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdd229ed1 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xf4646996 wf_register_control +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x001810e7 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0818c27d mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0f77b7da mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2f5f1a4b chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x302aeeb3 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x69750189 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7c986eee mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8a100f1f mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8b48ba46 mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8b7da91f mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe4a62798 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf47c055c mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfb15c070 mcb_alloc_bus +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 0x1469ff14 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17e10f6f dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2c2833a6 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2eb01e04 dm_deferred_set_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x302e03fa dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x3a10b570 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 0x8dd032ce dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb4afbb80 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb6ce8f86 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 0xb74ec135 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 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 0x9d018fe1 dm_bufio_client_create +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 0x062b0eb8 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x31881a43 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x37c7bd60 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x74a51708 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9bdaf3fd dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xb910ef8b dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf0b1d6ae dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x983c3cbc dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb10ad27f 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 0x0d1455c0 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 0x4d0e61ef dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x72929724 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 0x8444bb28 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 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe248ce95 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xe89d1ce2 dm_rh_dirty_log +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 0xeffa2d88 dm_block_manager_create +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 0x11e90a54 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x1d997b26 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2f43c214 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x375b9338 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4de6af10 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5d55f304 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8ced6991 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xd0956e07 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe67a5c76 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xeed1166c saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x06e0fd82 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x34a931dc saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x5a5c9654 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x90b8e934 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xaff3d3ff saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xbe95bd69 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xd155524e saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x06dff8d9 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3081f95b smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x382b28b7 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x3ed72c79 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x4fe7fa76 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x512133cd smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5fa075b7 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63a937f3 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x72029e20 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 0x8987f091 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaead95d7 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb9075583 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc2ef4a71 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc34a6360 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xca5d7ba1 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xea030fa2 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xecd0b512 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x52cf052f as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xb0a8b918 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x9c58a31b tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x0710ab5e media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x0e9c7757 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x1af2a32d media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x1b4cfd4f media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x3138439b media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x559219b9 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x63f9242d __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x6600f426 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x6640bbaf __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x8bc71f47 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x9e20df9c media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x9ebfb9d0 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xa370850f media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0xaf828d69 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb41b67fa media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xbd413435 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xd33d73f9 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0xd7723988 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x8b91821c cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x007f9d32 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x013e8492 mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15349550 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x347e5a6a mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x56bb0d0c mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6d23de92 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x75fbc1bb mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7afe1476 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7b0bc49e mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9248178d mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa08a051f mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xacf66864 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbc42e5da mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xbd03fc7a mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc66af66e mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd11ea67a mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd89d83fa mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xef4b40f2 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf4d2b508 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x103c6044 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x27574e5f saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2a470b4a saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x38601ea3 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3e086197 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x3eddf618 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4ef90707 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5ed228ee saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x642b5c23 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x70578deb saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7d03a428 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7d93d999 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7fbd5194 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x927de8d0 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa3ecbd03 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc2011b6 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xdaf77b0a saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xeb048377 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf61e4069 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x25cf902a ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x32ce7ff2 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x3d443ffe ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x79a99ba9 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x82247d85 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc357c1c4 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd3855696 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0b2585ce xvip_get_format_by_fourcc +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x2ba56c70 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 0x53d58c17 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x679c6c8e xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc96357ca xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd2e8a333 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xed605828 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xf53a2eaa 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 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xe0182ffc xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x1508d089 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xe2dfacfa radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f25c684 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2f8a92e9 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x33d08707 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x44b39e3c ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6bbd0112 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7aedf278 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x84c9c686 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x91f626eb rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xae3c6826 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc18995b3 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 0xd2c5dc22 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdc2f9cfe ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xed4cf6fa rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeebf3124 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xef1ce847 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf72e677a rc_register_device +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x551b1ab7 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xf3642859 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x71c6eef7 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xb93b6e74 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xe92f4bfb tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x4e7d1649 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x9bb516c8 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xf25abb24 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xf589bb0d tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x3b714d99 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6e91cfbe tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x6d88dca7 tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x871f65e0 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x42f8d0cb simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x01679273 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x12b8d7ca cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x227186b6 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x28e56f39 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3b97fc10 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4783f3a9 is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8734b292 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8fd09c68 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x908a065a cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9661129d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9f9c733e cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9fddbc31 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa120973a cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa3d821e2 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa8fdef83 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xae7a0cc8 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc4975782 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcbdd3bd2 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xcf039f57 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe2440ba5 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xafb595f0 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x24159044 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0300cecd em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x083452bb em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x210f3835 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2a1e0a0f em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2c18bba3 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3330ddcc em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3e256472 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3feafe7d em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5ee913e7 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5f9ea128 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x61c7b46c em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x73ef4f6b em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb8be6576 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc2ca12c4 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc99212ed em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd181f5b0 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf52b315e em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfd22b738 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x00340fa2 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6268acda tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xc4c9b321 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xfa1400b2 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 0x15f16b00 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x573263b5 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7a49e38f 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 0x8737ee82 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xa9dbde47 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xaaf88b29 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 0x00eca180 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf2019692 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 0x31636cce v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33f4c374 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x37b236fe v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a650bd5 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x54a6b966 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5cd2da0b v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6708e981 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7032e853 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7f268747 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x836d83dd v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8f698b6d v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9c1469b2 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabb68dd8 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb1421125 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc12cc888 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 0xc8d7a11a v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc925627e v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd1c0b889 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd238a73a v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd3240c41 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe200e3f8 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe932de19 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf00b0f45 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf5ce98b6 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf928027c v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc1888f8 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfee60744 v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0d3507e1 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10ce10bb videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1300ba28 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3c3f9b9d videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4ebb8479 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x653c6189 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x79208a15 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7b3a8e05 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9b48190e videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9e1728c5 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xae95dd6e videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb0fae86f videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbc660556 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc12aac0c __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcddb0332 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd0dfbb68 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd4e93956 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd85a2910 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdfa0dfb5 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe2f66348 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe881862d videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xee8c4bae videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf0b32bad videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf6fd4f7e videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x42d51655 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x9c463ffd 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 0xc9dece7d videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xe9e1dbfd videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3dfcc9ea videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xc168728e videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xfddec84e videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x03683ac6 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x15b4ab89 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1cb862b0 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2c3c29b4 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2cd5f2d5 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 0x34f5a1d0 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x59435062 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5ec20692 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x697cd1a5 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x755a2011 vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x77f8c0ed vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8024f253 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xadca316e vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xc6531d35 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd763a375 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd85b1539 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf24413ec vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf4e2e0ea vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x49bbc720 vb2_dma_contig_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x8716a972 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 0x64954a54 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 0xd75736f0 vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x105cc7c5 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x057a1adb vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x06f579b6 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0b0d1895 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0d609e58 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x13f8ba89 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1ae3c9f8 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1c67a261 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2acf462c vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x325d439d vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x35d08072 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3d261054 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4627ef8b vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4fa7d15f vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x53391867 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x577921c3 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x681a9a36 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6bf5865f vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7613a09b vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7da9edc5 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8199c1a9 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8b9366ce vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x97b11903 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa651ec28 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xab76c51d vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb31aeb34 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb6dcf2af vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcb00ad19 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcb2065d4 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd4e523ee vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd5fc9ce3 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe6207740 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe7f9f526 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x15bf7a9a 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 0x0f0ec8c3 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f7bcd19 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1b726bb2 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1f939c8c 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 0x29f0a561 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x304f96e1 v4l2_fh_open +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 0x3ae12e30 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3ff37d08 v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x47fb072a v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4d842c5e v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x51b8e23b v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x55bce9d5 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x599ae9c6 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6a19d165 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6b3e0bae v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x739a17e5 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8147b276 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x815c2dfd v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x81d21fd9 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x96e99913 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa69e5075 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa97afb00 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb726707a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xba2752f9 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcd4ffbaf v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd19dfe39 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdd2cb003 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xebde7c32 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5363e757 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x83ca0f22 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x88e0b617 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0dbce08b da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x19a9be56 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4d27a31a da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x79f734d6 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x97447f81 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xb006e45a da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xdc3cbaf0 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x23194107 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x384a36d6 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x88d8d42a kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8f7be414 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9463b149 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xa43e5249 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd55ebab3 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xffdf4d0c kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x1ca34870 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x5f6f7946 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x84a883f3 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x035b84b2 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1f0faffa lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e379c11 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x38f62a2d lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x44a28683 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x99b5d95d lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9f641657 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x21f5b215 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x7317d86b lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc5820523 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x9a7aa208 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa5cf1ab3 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb17197d7 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc459d67e mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe3c4299f mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf1cbdcf7 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0f5d4271 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x16f61172 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1e5bacf1 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x3a4c2b0b pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4c7c1fc7 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x72c90079 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x88db52eb pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb27bd242 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xb822f1a1 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd8ea4c41 pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xfae5a647 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1f5c0d06 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xa9d66dba pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x04a1572d pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x1749a71a pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x27f44bb8 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4f845f96 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x52308541 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 0x05271337 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2e42d512 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3036eb27 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3835c91f rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4148d8c4 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4a8a246a rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4d1de3ff rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4db4e87c rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x568cc6e0 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x62b3f175 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x841cd912 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x87f6ea9d rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x953049f1 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa30ca84f rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa9f55b95 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbaa5061d rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc06b54a2 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc9a87992 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcd74e801 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdac7eec4 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe470aa32 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xe77ab689 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf80ef050 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xfe1b3c8e rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x0716741b rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1640b033 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1edc6a5b rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4a1d3233 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4c6b59fd rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x710002df rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x768f0600 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7df2d2cd rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xaf2d4562 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbaf29ffa rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbff1cc9c rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd6f12a62 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xeec79b24 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0d3f1f3f si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0fd8974d si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x21f95255 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x25116440 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ac17b44 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3133b421 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a2c1951 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4e29cc17 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5ee5afcf si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x66f2648f si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b408796 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6ffc0ef7 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7c576e81 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7e163a95 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7eaa32de si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7f82a7d0 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x83ca573b si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x860f621c si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9990256a si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9cb1d327 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9eb23616 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa134170e si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb077e4b1 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb60897fa si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcb7f4ec5 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xce2a9b40 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd3e4c3e2 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xddd83ea8 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe31f5e92 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe461140e devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe4ef5914 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe7d9f561 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea440a18 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf38242ef si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x6077c64c sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7a7e7684 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf36df8aa sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf699553e sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xffa4f369 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x3d81621f am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xbc2f5ce3 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xeea7097d am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xfa1e6b35 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x06ac3362 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x20ff3fbb tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9b687c25 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xaacacc86 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0xa6c82102 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x28b7280b bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x56b1c1fc bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x5cb22879 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x930e512c bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x700fe602 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x987a4d05 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa404c851 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe16fe762 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 0x2219b74e enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x3a4aa669 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x872b76b6 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x90f833c8 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbdb3fe07 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd382cddf enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf2659064 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xf4ab91da enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0dffb0f3 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x44e65fe3 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x4524ace4 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x80a956a5 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xac121c48 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xafa7dac3 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xca0d55fa lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfd251e0c 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 0x24bab251 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3f8d4e23 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x62faf225 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7a29a568 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7ce84e93 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x842b1699 sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x95f58b46 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xa11e4c87 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb5e88f64 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb94cf529 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdb9f4a44 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd2bbd57 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe9742272 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xf1641201 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1e331536 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x38b94622 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x68765114 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x821cfcd7 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x91c70236 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x97320358 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x9ef70cd4 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd1df8d7c sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfa5d7f90 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x15f3e7d5 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd7c4e7ab cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xe8edc243 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x04809f31 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x892b1b67 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xf77950b7 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x66be3630 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7d34d8cf cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x9ce4590b cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xed7330c5 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x007b5917 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x02cb50a5 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x05a1cb1c mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0ceb733e mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e2281e8 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x13bae9a5 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x15ab5c68 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x195e9860 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1cc378c0 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ce28993 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x212276df mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23de2982 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x260650d9 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2678c71e mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x27d2c2f1 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2964b553 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2b53108c mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x314e07f8 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x33c42794 mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x429a7668 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4861be8e mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4c808b4c unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4e7041a5 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x52c5f08f mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x58c5c2ac mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6313b51b mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x656837f0 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x78944b77 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x825c50f9 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85f03262 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9032cc5a mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x95821a39 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x974e4a12 __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x97ea7b62 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa1f63c6e mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf408970 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xba2090b5 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd36ea488 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd7967fb0 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe4a1e73a mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb73e223 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb81fd92 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x3b6cf0ba deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x410b189f mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x6e34cacf del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x9328df00 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd21b0f25 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x5cb7c803 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xcaf24757 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xfee19953 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x952b549c onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xd0db09f0 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd216ff96 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0ef7649a ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x13945582 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2044b3a1 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2336fe03 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x25e8615e ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x26e9c379 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 0x43a25fa0 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4429f0a6 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x44780015 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x47bb27f5 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x93e6f341 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa2ad2bcf ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa3e923e7 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd9b4b370 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x7362b30c devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xf9135a9d arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x10c3bd69 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x919be25d unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc2d2de57 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdd33e660 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xf6aa282a c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xfc31da9d register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x041e9454 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0f413413 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2f085378 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x511c0065 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x53f489c1 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5ee9f85c alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5ff7ec6a can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6c4e662d close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7614be4c free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x85040d21 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8667d6eb can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa1ebe936 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaf2489bb can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xbd15161d alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc44ef858 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc852008e alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcf8a5a18 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdc4784ea unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x18c2e786 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x543f23bc register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5958a4f6 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa6c65c80 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1fa92f7a register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x66e39311 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x6850d398 alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa609bb57 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x1df1cea6 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x539e28f7 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00a66962 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00c2220a mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01ec32be mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x070dc2a9 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0be9c994 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c593121 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c794ff8 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1010a775 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10399e3a mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x13fa530f mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14a500e9 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15b49341 mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x162bfcca mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x165ae780 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1664eba4 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1ab24cd3 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1fb31ced mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2548e93d mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x271fe458 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2771b201 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c2dd8bb mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d223720 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fbfb3d0 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31026626 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x32706b2a mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34f2fb4b mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x361dcd9c mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x376fdd93 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b144a3a mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3bd26f58 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d10be64 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x402be348 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40834fa2 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41937226 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x429bc419 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x456f548e mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47a67f17 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4839a010 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b7456d3 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ce1b3ba mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50e0d774 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55320383 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b0176a7 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b3bd189 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c8afce3 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5da7e26f mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fcf6c55 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x620e92f6 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6249e210 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62944146 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67de4bac mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a560b3f mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a5654aa mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a82a2e6 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c644369 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6cb58dd8 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d25a5d1 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70289fe5 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7047fc82 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74aeb193 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a514fec mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c25b6a6 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c92cbe9 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e7fe88c mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83efc2ec mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x848d245c mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x853694bc mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x885a7ea4 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9339b02f mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9437a0d1 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x964e3953 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98c04ba0 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98fce9e0 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cf3b2a7 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d869065 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f2f58ae mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1a12366 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1d7cd60 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa38c4839 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa38f0359 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa697acc2 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa80dff03 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa81c4fd7 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac1de5b5 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb26a44a3 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb595df7d mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5a03355 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb9b620ff mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba7dc6f2 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbbeaf5c7 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcd3a64c mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe97bd22 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1b6ce48 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2331bdf mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3caf884 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc73aa5f7 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7501ffb mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc93180a2 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc94c8353 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca6b7530 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc4fbe36 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd2ce02a mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd834ff5 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf0f776c mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3f92668 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd575f71d mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8ee51ce mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8f9090d mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc03300e mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde925562 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe06dab1b mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2022b0b mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6e4d0d8 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7e5a2a9 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee3ef446 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf14335f8 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf181a3cb mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf357130b mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf4224f7c mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6a3db43 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf72c0248 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf880bca2 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf98ea03e mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa35efe8 mlx4_qp_remove +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 0x0ddeb0c7 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1011fa2d mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1081d9e1 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x161f423a mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x22709b79 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x267b82cf mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x28bd356c mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x370fb9ff mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38389bbc mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3fdf3e04 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42c9decc mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x43f2766f mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46306231 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49a58600 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4c44d45a mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x521bc07b mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5640de79 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a95f3ef mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x603ca2b3 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x706c2c24 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71c2b767 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x731db312 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x76ab0f09 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f1c0a72 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7feb8115 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8528fe3b mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x87a3a8c3 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a4d4afb mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8f1dc87f mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93dc65df mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3368c7d mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2da75e4 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb3c1143b mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc1b4019 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc8cbbf82 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcce2bddd mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd21656b1 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6a4c94e mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe335c35b mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe5773eec mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec6a9c7f mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedf4c7dc mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf03a2a77 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf042e117 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf76f202d mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x9c0e859d 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 0x4842ae41 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x49b73362 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x70770860 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xc86413b4 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3c650a3c stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x86a1854f stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x87874363 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe9bba7f8 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1c969dd9 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x44e3958b cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4d9ed3cf cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4edc297a cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x59e235c3 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6bd2151b cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x70395a8b cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x80cf5f21 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc5ea39c3 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc5ebedc5 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd0a62cf2 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd1a96bec cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdf358f14 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xe29f6557 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf120670f cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/geneve 0xb4cc574b geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0xddf9c8ff geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x0c24caa0 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x939eeb7d macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa4425f4c macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xa59e60aa macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xc0caca85 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x1373f231 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x31637c9f bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5cf524c0 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x610314ee bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8a894963 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9dc28571 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb23049d6 bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdc0570ed bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe7f3712d bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf5e61b2f bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xbf164f97 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x002d920b usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb7891e6f usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe607761d usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xf50853ed usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x1b8bfb0e cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4109835a cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x52ef53bd cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x764706a9 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x812da3d9 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xba1b7e0c cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc4114f3c cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xd257465d cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe7fd2617 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2464f93d rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3dff7442 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4275639e rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7a823a39 generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xdc3b1842 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf967aabf rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0babe544 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10fa82c5 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x110afe7a usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x120569b4 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1283622b usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1dce426f usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e3982af usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2957c277 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3858c936 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x38dec02c usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3e2e8b97 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x548e1cad usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5590f4d0 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6572f4cb usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6ab6d6e9 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x723474d3 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x84ceba74 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x964d2e18 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x98322627 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa3d4a2f0 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa536f2ce usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xacff9333 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xadf7ebe8 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd567148f usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd7ba3048 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdac7df17 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdd45e83e usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe0169de3 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe24f1ab4 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe337edd8 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef291de1 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf87e0d54 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x0947b948 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6c84b097 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x112d0830 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1aca693a i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x241f9545 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2bb27364 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2e450ddf i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x643a08a9 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x658e0b69 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x92ee98b7 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb0c191fa i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb44dd9c9 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc85d0943 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcc171a43 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xe2e0ce23 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xefbc263f i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf41a51da i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf999e22a i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x70c925fe cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x7eac5712 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x841c3283 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xa400fb93 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x5475ff76 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x37a0c5c0 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x53cce066 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x79f78e6d _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xc91110c3 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xcbd9a723 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x06d271a1 iwl_write8 +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 0x104055d2 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1234d7e0 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x158254d3 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1989f822 iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x21e4bdc9 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x373f162e iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x44f94ec5 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x53d3cee9 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x56c763b4 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x578484db iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6615b23b iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x757163af iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7d7c5f01 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x866d270d __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x89cc1de9 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9c04d0a8 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa1a8f499 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb73c27a3 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbba57e30 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc5128a06 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd4c17f82 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe777c284 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf267e710 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf97afe2d iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0cdb1394 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x20735f15 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2cf3760b lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x34509444 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x59d61edc lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5f141712 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7e791b92 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x95159ff7 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x95e552c9 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9bdb8424 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xae870f92 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xaec1fb75 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xca52884f lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xd9cbb821 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xeb165863 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xffd22eeb lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1539e036 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x189774cf lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x1d340a92 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x455dc38d lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x82af398d lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa5646822 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xae674bef 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 0xcf9ca23a __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x284ed997 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x31bd9748 mwifiex_alloc_dma_align_buf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3b117447 mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3e6fb9ff mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x40acd188 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x47f67ffb mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x58443e20 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x586e4082 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7ae2f87e mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7c5c352e mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7f6e7306 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x88b677ba mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9726e1d8 mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa433a1be mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa9e6a7be mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc9a0f589 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdd12fd60 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xeed8bbf5 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf52e1357 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfce347a1 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2da159b6 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x380d0f6c p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x4bfaa4d7 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xb136de29 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xbec94bcb p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xc302f430 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xccc596eb p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xe24d7d1d p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xfd88a54f p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x555d622b dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa3791a0e dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb17ee4df dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebefc839 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x066a6eb2 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0c5f64da rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x112b2710 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x15c97f60 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x17bb67f6 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1bf6efbc rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x52b7b576 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5491dbdc rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x672e27d4 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 0x74b840dc rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x7f870cc8 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8398ca3c rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8825733e rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x897915ef rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8fba402c 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 0xafec6967 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb0b2effd rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb6f22e4a rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb89a1e9f rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc8eb1dbe rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd3be2deb rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd4f2210c rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdb7bf8fc rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdfedf154 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf7405fda rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfab32c34 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfb0cc4dd rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0285b22e rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x049f7511 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x069c6195 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x149f6d6f rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x18b13adb 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 0x3a947cc4 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x509fb122 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x529b2289 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x66dd9888 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x73922d5a rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x963dd07e rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6b08d88 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xaaafca18 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xacf3b8b9 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb7fa71c6 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbf70313a rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc02dd563 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd6e87f37 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeacfd54d 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 0x1117ff33 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x79c7f1d9 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x81ead7f6 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 0xde0ddb68 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0418d08c rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0b48c64e rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x132768f1 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16a75742 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1ef9008b rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x20dbb305 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x39f9e37c rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4a5f36e0 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x55636e4a rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5d69321a rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x66b5d9fa rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6d192226 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x72d794e5 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x74ff3d88 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x79283284 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x811ac9d9 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x829b7c46 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x85f78544 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8ad0701f rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8c3521d9 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8e7719eb rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x92edd8aa rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x96852cd8 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9a80c26c rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9d3a1fa6 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa54294c1 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaa97e27d rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaba0cc88 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb20123eb rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb60fca32 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb6bcd6ef rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbe812976 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbedffdee rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc1237980 rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd42d668e rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe92fdd72 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xecaaee5e rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf8f11319 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x04961140 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x221ec121 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x3972f0b3 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x59f95aee rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5c4e7c25 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x63f92fba rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x80eff9d8 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x869d1ccb rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9244f718 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa18d26a8 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa5bc3190 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd57715e5 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xda86d215 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x00cf6642 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x011b3bc7 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0191cc71 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x01f8876c rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x02a58708 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0bcb1287 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x18f6a6b6 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1904e374 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1aad4ad2 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x216a0a72 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2242d5d3 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x32503b70 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x385002c0 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3af43a6d rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x485b9ce3 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4db8fb3c rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x50c890e2 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a74007a rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x60f21d3d rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x65ee40ff rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x679dc5ec rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6b63e294 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x86f37ab7 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9c4d8c95 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ddca6a4 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9e99f36a rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa0b689bc rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xae27f2cc rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb278217d rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb3a2e6c0 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbd6f540b rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbee463d3 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc59e8297 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd4d08218 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd689a148 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd81713ea rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdc78a207 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe4fdccdf rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe6ec8eca rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe9e879ba rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf071a86b rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0d4ab92 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf1182532 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf644b8cd rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfa4324ee rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfaef037e rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x1d596f82 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x6b895c5b rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xa39d446e rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc7adab04 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xd993dc50 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x3aca838f rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x4e8c09a1 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x7ff21da0 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xfb39f8d3 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x2525ac36 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x29206079 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x4946a929 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x5ceaedbd rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x679ff309 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7436c286 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x794f75fb rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7bd9fa77 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xa74dd045 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xba191bc7 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc2dca1eb rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc4e72646 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc5235044 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd65ce079 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xef727ec7 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfa71363a rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa1470d93 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc2322639 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xcf458b31 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x03c5d50a wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x06be03da wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0957e44a wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c1eb031 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0c67d581 wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14c9e0c9 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x15abbc14 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1d29d36e wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x208d8f1a wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2bdf3755 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2be87eff wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x391fe30e wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4bdd3705 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4be5656a wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4e23fde1 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53523a66 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 0x58f182b9 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x59309d13 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5bbad30d wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5e93f891 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x62397014 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x683edb3a wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6b2f640c wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x715ccb54 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 0x7c6b650e wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7d16af25 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7db2488d wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8399104c wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d9889da wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x946c985e wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c91aeb9 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa63f0b68 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa644b83c wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc1b63057 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc216d0fe wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8b5a8a9 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd34f4d31 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdad53915 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xde316635 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe036794a wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe82c7ef4 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xecaee134 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf7f8457f wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf9a04091 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x0db37a22 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3d8415c0 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd3fc9165 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xf3f4348d nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x17dc37ab st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x567b80bc st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x585e04aa st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x83c4f6a0 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xabf467fd st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xbdc941a8 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc9f6e1c5 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xcaac61f2 st_nci_discover_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 0x46c1412c ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x69b6d4df 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 0xe47ea171 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 0x011150d6 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0e3ae66e nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x36ec8a8a nvmem_device_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3789a8d5 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x3f5e418d of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x4276e243 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 0x52475cd6 devm_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 0xbe9f1dac nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe1330b24 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 0x8047b162 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xa0da95ae pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xd57a4294 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x190224e7 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x78ad2b38 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbfbeea32 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf7cf2504 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf8177841 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3212d0b8 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x52c71c7b wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x776d6b47 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe5b5b0d7 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf9fe4178 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xff038bbd wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xc8c8bacb wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x02383a25 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0e78a36f cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14e727df cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x24e620f0 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a513569 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2e1f68e4 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x37822e89 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 0x3f40b73a cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x406e7e2f cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x40d837b1 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x43550030 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4942fc00 cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x49a04f47 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4b3b80bd cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x505e22c8 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x545866e3 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x57544bc6 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5f43366f cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5fccf07d cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x62fd64b5 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63b8e791 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6f25d336 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x725eeb2b cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72c70089 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x79086607 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7f02d4b9 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x866acf69 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x92484851 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x99f8d1ee cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9ef22aa6 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa4465e83 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xad05279b cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb56f58e5 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb784bc82 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb94da6a3 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbb1ad941 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc03c4117 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc0676024 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd025ab19 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd62e55ce cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd0102a2 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdd7c9eb3 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe005c309 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2944090 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xed711f57 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfd678805 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0247d38e fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x20d9139c fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x22d8c46f fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x2e769b87 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ef2e91f fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x51944269 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x564fcbbc fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x60cfa8d7 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7bb431dc fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x86bec299 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad82c498 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd74481a0 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd91d9474 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe0fad8d4 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe2992e94 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfb33220c fcoe_fcf_device_delete +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 0x056512f3 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x084e28cf __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x13c277dd iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1564b38a iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15f880f7 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x179f5ce5 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18359dd4 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x19858de3 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x28f6238c iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2bf5e894 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c705481 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3191d43b iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x33455a23 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3673f034 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x39070345 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43d4f58e iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5a4de1d8 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5d75ec40 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5e7a379b iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x613a5f9a iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e82a0dd iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x776e7914 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x797f551a iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7c3c1eab iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7cc0b118 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x84276ea3 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x847de6b8 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8673e408 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8b5fdaf1 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c3bc407 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa18f1763 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb5c491e1 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb6bdaa66 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb95f5233 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbeba4ad5 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc128a29d iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc4f120ae iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xca1fce4b iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd5ba4658 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde5d6087 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe68ac991 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe97a8194 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1af7e29e iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x22c1f85a iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2d59c0fa iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x34274c2d iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x37dc2396 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4091d9df iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x611c4c96 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x79f7aff8 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x81e8b7bc iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9f5642fe iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb4590851 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbb320006 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd639f3c6 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd9bd6cf8 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe1af31aa iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe4e4c2ed iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf56ed130 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x087c2e67 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1686f841 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x17f3a7d0 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e0f6eb2 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45b87d0d sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x464d9e2d sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x494ab780 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x607eab70 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67b721cc sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x72403945 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x78ceb678 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f05b2c9 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x83461058 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x849a83cf sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x894d40b4 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xad9f59bc sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xae62b681 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc7d60349 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xda1b8d01 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe344f83c sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xee031a91 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfb5a42ea sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfc94e872 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xffbcc400 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x132966dd iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x18fea734 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1e7f7388 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2306a070 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26cb3a08 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x26d89bac iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2a5b6ad7 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2b1cfb19 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3711b6e2 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x441e43ba iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x47780e0c iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4cb4c117 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x500dffe9 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5910c180 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x603e8e5f iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60f15ce8 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6110e6c5 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 0x6a616dc0 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 0x8d7c5f0e iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x918364af iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x93430154 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94134b54 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9731067c iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9778ee63 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c04399d iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d48c79b iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa294fcaf iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xaab4fa3b iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb4d6dad5 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb59a01fd 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 0xd895a25e iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc5d34b5 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xde70d5a5 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe00681bc iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe108178b iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3f40008 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8f48a88 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xea70b890 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf97e8016 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffd2be66 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x1dd4b526 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x2532b868 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x3399626d sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe4a2feb6 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x3ed985d7 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 0x0ef78d8a srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x15ff4b4e srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x7fd3d67d srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xa3422381 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd10e17ab srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xe0210565 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x053fe578 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x25afeade ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2aad6039 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x354b029a ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x908772b2 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa6c317ca ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc735056d ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x05577f7c ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x33ae8151 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x4cf033af ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x77dde053 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x84cbd76d ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x9b68a261 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe303f15d ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x102c2216 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x234f6386 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x38b7115e spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xaffeb71a spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xedf288b3 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x039ac3a8 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x6cd6802c dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x8669f279 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xf92f812c dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0825a7cd spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x115fd1d0 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x571663b8 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x57675c25 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x708ecc11 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x96dcb60e spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9ac36fb4 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x9e433a59 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa89ce3f9 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb5ac9b86 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbfecc5bd spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd10a0f1b spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd124236f spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd9f1a3d5 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf52e079d __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf5b90751 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfaa09fd7 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfc09ade1 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x92a70b33 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x058abdc8 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cebe551 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0e93b32a comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x117fad6f comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x13b77abb comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x16ca51e2 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x22d93a65 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2561b005 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x31d1dfda comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3a2ac3c1 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x40bd4200 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x432dfebb __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x59abc303 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5d398b83 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5fc40bba comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6ec32bd5 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7616a4a8 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7fff2628 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x96cf29da comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x97cc9918 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa4cbbaf7 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xad6a58ed comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb0ca6d37 comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb691320e comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb6cc6353 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb8c96de4 comedi_timeout +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 0xc921f556 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcc1b7b1b comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd89b75b7 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd930095b comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe3a10f80 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe962a7e8 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xef0b3209 comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf43aa3e5 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfa5dc5a3 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x19093163 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1b2877a3 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x6a5d7477 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x89fdf537 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x8ac93a84 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x998020e8 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xaca1a17b comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xdff3d0c3 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x28c5e3f7 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x299e5b75 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x561c5c87 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x825083d8 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x964d68c6 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd546346a comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xfc7c24d6 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x21448b22 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x56f6d7b4 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6c851804 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x6d7aa790 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x7c07b0fd comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xb5151ad9 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/addi_watchdog 0x6298d353 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 0x402d40cc amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x6c84341a amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xc61476f7 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x11a6f0fa comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1e4c6516 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x26dae260 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x36fe5fca comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x501c9063 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x6ff9c552 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8c79e314 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8ebe1b51 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa59bc5eb comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd7888131 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd89c61d3 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe3c91554 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf09eb0b4 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x0874e31b subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x251b50e6 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xabd614fb 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 0xcd498f4c comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0xe08d41ad das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x07518dfc mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x096f448e mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x09f9a823 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0c478e91 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x12042a93 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1558da62 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x170c9eb0 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2818729f mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x32dc3537 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x45fc7cf3 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7439056b mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x789e1c5e mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7bb7a43f mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7bd9e5e1 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8934646e mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa1f92845 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa7a17e64 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaa821422 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaaec55fc mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe096722e mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xffd0aa5d mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xdafcc57b labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf5654340 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x079ef357 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x4fed4584 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6ca4133a labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6e4bde74 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdcbf70db labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x27da0cc6 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2862ea75 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3f17913d ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x4ce2bc78 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x509bf9ca ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x75b39eba ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xbfe5a735 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfae82501 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x04dfe862 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x197d196f ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x2b88c179 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x42bd9ca1 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x5fe9bf7d ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb3f35c7b ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0b1790ab comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x1d5f19fd comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x461cb9c7 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x465bbc19 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x47e6e20a comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x694c48f8 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6e0c5826 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x97be020b adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x0d3c6e14 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2be1cf4d most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x3643ef74 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x46c4c3b2 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x67f8d667 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x92c183df most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x96fc9845 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x98b4d877 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa234924c most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa26f5313 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa3a195b8 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xe289ddf1 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x02a16ba0 synth_add +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 0x136b6200 spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x14f06fe7 spk_serial_in_nowait +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3c2e9a8b 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 0x57b562f5 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x6793b4dd spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x77611553 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 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 0xc0fdd833 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc766ae09 synth_printf +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xce76e1ee spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd65f4571 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd6cdc25d 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/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x0d95124f uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc09f01d8 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xd483d9fd uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xa9f316d8 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xb9c9710b usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x39816bac ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xce9e0628 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x029f665d imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x6183e90c imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xfbb9c0b8 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4a990f9a ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x61c48d57 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa4085eb5 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xb30d77e8 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xd014e450 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xfc6a14e2 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1ebc685e gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1ffe0f98 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x265e28c2 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2b709a75 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x630bb019 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x78d8e61a gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x95097c5f gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xbc675b3d gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcc8fe675 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xcfe7630d gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd4f98614 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe75e403f gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed2b0a00 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xefe81235 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf77d80fa gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x106484ad 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 0xaa1a3850 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/usb_f_fs 0x38e8f8f3 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xa459b953 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe15e5441 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 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 0x2d68606a fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x2e026899 fsg_show_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 0x3ab0afc1 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 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 0x72e5be37 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x74a2a519 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 0x7ef06bb6 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x84a52a46 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 0x87cb320b fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x937b9845 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 0x9781800e fsg_show_nofua +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 0xa0f86096 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 0xba772507 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc227b904 fsg_show_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 0xe4c15e3d fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xf171cad8 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 0x003c1308 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0638f7b9 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x11f7e484 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3812dc96 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x39672a37 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x47a766d4 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4e113e15 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7af0bcbf rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x901141e8 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb3c4fd39 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xbbe5aa69 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe348022c rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe4cf827b rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xeeb01c6c rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfa7c0e2a rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0a7b6571 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f9a28c1 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1d707a9d usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x331eb7df usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3577b567 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x35e4706e usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x36b30f28 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ffab5b8 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x40711bee usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c51b2b7 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5ec95470 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5fa39f8a usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x728b192e usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7a2cd680 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x87bb95e1 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8a958a38 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x936b0d0f usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9e778486 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa94cd962 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaa758a6a usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xad5f9e01 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xafa6bff1 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb63b6491 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbab9f960 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe9fde36 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc4f6ef55 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe1313e2e usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe64da43f usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeadd2e97 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xecaafb26 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x04ad84b4 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x12b2d60d usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x379e73bd usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x49994c0b usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6b185822 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x75a9ab7a usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x80ef1133 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8b5534ad usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e4dc0d6 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 0xc46363a4 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcd585ecf usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xec9c91a1 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf8418f24 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x05ea5bfb ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x58b7649b ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x01635557 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0b290e2c usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x1595b9d7 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x37508e90 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x67e88b63 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7a155f32 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x939bf3d2 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa85a1ee7 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb36273e9 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x470795e6 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 0x8b487fbb isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x4ac14f75 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x09d165a4 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0aa9a90c usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x225ed3e3 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x35c013d3 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x35f6d6cd usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4fa77238 usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6219f209 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x66506995 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x68f516f6 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6c33579e usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x78942195 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7fd8986c usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa89c6490 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb0dd03a1 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb71e9066 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xcc22f887 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd2c4016a usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd4c79679 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xec776728 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf18f4120 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf85f5f69 usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x21e75607 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x28357ae5 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x33018ab0 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x390d3810 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3a674616 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4717bd55 usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4a511a94 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x58570f9f usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6723455b usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6f183c37 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x70cb6389 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8032a3fe fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x815aeff2 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x85583f80 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9be5434a usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9d306185 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb1c75946 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc552ac37 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xccc05147 usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcdad9f6c usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd35bbe23 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdbff8ea3 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe1a48cba usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf7c324df usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x36d1951b usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3a8c3e5b usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3b2a5977 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4cacdc6d usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5324661e dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x546edbdc usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7b15c186 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xa815a04f usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb053fe1b usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb5fcbd8e usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc95d8ea3 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcc088128 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 0x285ad8c3 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x41a2e17f rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5dc96a16 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x77f0c89b wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xaca6d227 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 0xe2c3914f wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xefd67f72 __wa_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 0x0ea7520d wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x271a7d1c wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2dc19605 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x47b7bdea wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x5a806ab9 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x621c422c wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x73e8d95c wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x842f7188 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9669b2c6 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb05675a9 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd76a1d1c wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe5dfc303 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe5f292cd wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe7c2d84d wusbhc_b_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 0x551d9b3e i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x7886b234 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xea625fe2 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x21a20096 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3288a69c umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x435aba50 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x499d6368 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x526baa83 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x6038a08b __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xac32b1c5 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xc765d97a umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0454bb13 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x08a8b068 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0f860486 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x159890cf uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1966b79b uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x28302a85 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2c0335d9 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2cf4f91e uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2d1f471a uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x34569330 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x452aa71f uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x463cbd76 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54b6c85c __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x56564370 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c6db737 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5c931c7c uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6198ace3 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x629a6e32 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x660dedd4 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b161ad5 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6b5232e4 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x703e4848 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x79c1c498 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7bf0ca0a uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x8bd88e6b uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb123c62d uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb75c4a6e uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb92d1c56 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc39c8e97 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdbb31ce4 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe08e845d uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe2085160 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xeca1dd5d uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf959a71e uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfc43ca5f uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfd1e38d2 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfd9a6d06 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x8806a717 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0384f59c vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x092fe34b vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0f4658bd vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x1de4c804 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x213ccedb vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x239b79f7 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f4ea8e3 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x453b186b vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x55166a68 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6487a6ef vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x66247d5e vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x74e87bec vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x86990241 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8aa01de4 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f0e9daf vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x99f1ad4c vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9e2623fd vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5ac7762 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc21f1e49 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcc2c377a vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd2437b23 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd82aa81e vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdc6dc001 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1626ce4 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe1dd28a2 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe3679fc9 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe4b7d579 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xeabfc772 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf0876407 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0da486e7 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x301be7ee ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x359030b8 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6336ce65 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x7a3ff9fe ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8d9b257d ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x9a33c6e5 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x231faf1c auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4964bd47 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x4bc0d4d0 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x703ac9ed auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x7c6bd440 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x8af7c450 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa1d5b17d auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb2dfd0f3 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xcd16af72 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xefc6f571 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x241324d7 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x0b95c5d0 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x7e89a577 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x08692267 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x53dce4a1 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7f983aa6 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8502c712 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9a541d98 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa894060b w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xea9cfc44 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf4cb2e88 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf934ca23 w1_reset_select_slave +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5f34471f dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xaa5e9a61 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xb79daabe 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 0x4b01edbd lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x553699bc lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x87047c1f nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa6fae5bd nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xae6f40a7 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb245fe24 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdf97db4d nlmclnt_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x00d870ef nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01eadf50 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0678a589 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07158317 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x084435ee nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0ada166c nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d0ff217 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10683d8e nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10e835ae nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11998d90 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1217d095 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12a8985a nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x155e613c nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15bd9314 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x177134ba nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x234d00de nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27d29947 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x280dd2e7 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29d873dd nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x30928638 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32385ca5 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32a5c16d nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x350a1e72 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3884b727 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39547762 nfs_show_devname +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 0x3cee6903 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e24ca9b nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ec2374b nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fadca0e nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x401d2a07 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4090fb6b nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4309ebaf nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x46361539 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4853591c nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a126fda nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4b318a05 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4bbcb6f3 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5179c2d8 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5770787c nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5af053be nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5b4b5bce nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ca424a7 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5ce74285 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e2133bc nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66775374 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a7f5504 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6c3ac8f3 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ce08eb0 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6dfc65c9 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ee7c3c5 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70cd378e nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7338ff82 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x739bba65 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74f28fff nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x75f894e4 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7740eea7 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77957273 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a7171ab nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ac7ebb1 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d001185 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f429098 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81e490d2 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88d35761 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a99b009 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ae2cd62 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c4b0d3f nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8dfc384a nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f88b98a alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91b91296 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x942873a3 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a613540 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ad93f7d nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b2e81cc nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0de7758 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa12dd341 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1bd436a unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3620ac2 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa9ce002b nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab4d4007 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf51a478 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1a6f6c5 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb33b12b7 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3f5016f nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb45e696d nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb86e2a85 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb89c57e6 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba437667 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd85a7ab nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0c9b05a nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc220dbf6 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc3b6ddbb nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc430b654 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 0xc8619794 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9138ea5 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca6c8f16 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcace7575 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb0bfc2d nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcbf6e767 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc4e70fc nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd01b1ba4 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0ce89a6 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd35054af nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd3f785ac nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd44b8cba nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd5cef7cc nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd68bf017 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8d052b6 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb0899c4 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe37a0888 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe4af1578 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5e0601c nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7f2ee6c nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec8e0938 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefa12ac7 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf113b207 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf751be91 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8be495a nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf925b666 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfa806fcd nfs_fill_super +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 0xfe54ffc4 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfe86a792 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfecd698b nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfff18f67 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x20c357c5 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x05a239d8 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d311c8c nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d39e152 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d62d644 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12c032dd pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12cc9e64 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x18401691 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x197c6c86 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x21772873 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x22f4b409 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27557102 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35361eaa nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x38d296a5 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x398ce5f4 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3fc647a6 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x472ee770 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fccafd2 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x50cb6915 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5f3f59b1 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x676de65e nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c081d8a pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6da10ee4 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6e996902 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7160cd06 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x73ad7f8f pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74635774 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x793eb4eb pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x81390e9a nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88ad5e06 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8a477950 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8c4cdbcb nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8cf237da nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x906f2a0b pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x922a1a20 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x95b5f121 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a0230ce pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e351cc8 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa1ba4e16 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa295c1f3 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa537a906 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaca5eee6 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb51b4e2b nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb90631ac nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe0564ba pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc149c4b9 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca267605 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xca3f9f75 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbc10242 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf60a6c3 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd60d581c nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdad7b9ee nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdbef095f nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe793a98c nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe886d3c7 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec8bd363 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec9a8ff7 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf302b716 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfaef9cd8 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x81322b79 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xad72a661 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xea9826cf locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xbd833d11 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xbe15263b nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0569672c o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0b1e607c 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 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 0x54cd923a o2nm_node_get +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 0xa747fa3b o2nm_get_node_by_ip +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 0xc21b01cc o2hb_unregister_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 0xd9e15a93 o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xf5ba79e8 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x0253b9fc dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x1faaeae5 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x65556e79 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 0xaa55c862 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xca7d89c2 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/dlm/ocfs2_dlm 0xfd581038 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x13bdeac8 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 0x337f31c7 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 0x9ccafa05 ocfs2_cluster_this_node +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xa06fbc10 ocfs2_cluster_connect_agnostic +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaa7c295d ocfs2_plock +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 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 0x44e8ccd3 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x67d12d58 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 0x56670341 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x80f2d6c7 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x355a87fa garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x89a3a0a7 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0xbca6d882 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xd40c46de garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xe4dbcd4a garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xeb44746e garp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x21872085 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7820f39f mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xa6feefd6 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xacb06222 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xbebb5c6c mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xefae7152 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/stp 0xcca84d11 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xfbb348fb stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x31126340 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x98129d23 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 0x177ead43 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 0x13840ba9 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x147ead8c l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2800ef2a l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3bcb1cda l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xb048ad75 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbc89ec39 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc84c813f l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xfce8965b l2cap_add_psm +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0d48186e br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x1487536c br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4ba178d8 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x531c7aa6 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x702c9f6e br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0x809f3ce3 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x903b3187 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xaf823d05 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x3e0163a5 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xe6264c9f nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x141974fe dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1448282a dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14532f48 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1afb4945 dccp_send_ack +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 0x2b63c4c5 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2bee9ce0 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x31a74f53 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3aa9cb47 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d86d226 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4c6714f4 dccp_recvmsg +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 0x54086e3f dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x60f2727e dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x61657fb6 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6c89f53e dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x71894ba1 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x800835f4 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8aaf16a7 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x90db1fcc dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x91bae9d2 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xad96b3c2 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaed8fdb9 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1b6a7f4 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbcd67f47 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbdebfc94 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7de21e1 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcd06553c dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf088333 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4909c48 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6c7d3cf dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xedfb9f4a dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf631f3e2 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfc17316b dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x002804a0 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1ef6082f dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x287f5ac2 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x67f4d67f dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x808c467e dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa5f00e7a dccp_v4_connect +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x56e0ac9d ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xab6a8566 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xba900cf6 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xe3d06b79 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ipv4/gre 0x3bab2eec gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xc0e10c49 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x064adf6a inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x629dfa27 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x88540017 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb6df18ae inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xbd7ddf47 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xced059df inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xf1a9a822 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0514612c __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x22a62f41 ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3a68b188 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3bce1ad8 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x3dd8071f ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4718c4b9 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5c0257fd ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x673910c9 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8f6e2276 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8fdc9846 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x9771606f ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbb08fc0b ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe0d2d4e6 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf1affc5e ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf4670e05 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x7968879a arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x481ed2c0 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 0x01b7fed5 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0dd9ce89 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x94cd1cf4 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc3d6284b nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xc5ed074c nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xfdb78962 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 0xe8a29c5e 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 0x188ef601 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x2cba0b9a nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x8eae00fa nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xa54f963b nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xcfa4d4dc nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x5b8bfa71 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x06ed5cff tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2d671845 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x33bf7d6d tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9df34499 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe5c56ca0 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x06714e3c setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x46175b47 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x8d497344 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9c9bbf12 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x00186ee9 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2bf54db3 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5987735f ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x6b22e3c4 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8f6cd729 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x913832db ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x9d870f71 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x2e28c97d udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xc2039e9d udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xda56ecb5 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 0x812ff874 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xa0044cfd nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x64ec5e6f nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x3704bd15 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x53e175f4 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7f998291 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd7dd2b0a nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf7081624 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 0xc2a736c1 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x78fb5a0c nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x841616e7 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbd4cf15e nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xef647aaa nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf9f4aae2 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x8c97a1ff nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x02fd00c4 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3398b7dd l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3d2f06cc l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4160de40 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x528b3e54 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x83f50f92 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x97960495 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa8e24249 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xab679d02 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb3773a20 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd7a31b38 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdbd0367a __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe3ed3e9e l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe89fa109 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xea81f30b l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf9017875 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xeb37bbf6 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x214d7386 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x29b2fb17 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2b15be6d ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x37757dd7 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x383f0da6 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3849fa10 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8349a5d4 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x835e83f2 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa032d0df ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa380ca67 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa6a9294e ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd15815bc ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdb01f882 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe371f276 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xfef9fc14 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4fbc4293 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa2e109e4 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xb85c1e17 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xbc0ba324 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x12c9a967 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x172a3cee ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2c9a9595 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3097a531 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3d697e73 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x40e789b3 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x55670317 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6abba043 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x766e0c8a 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 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x96ef7e82 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9c314af8 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 0xbfcf9ea2 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xc4c9d288 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 0xe86abd5f ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf1115a2c ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfb994c34 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x203b9bd9 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x820b5297 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8f7ad321 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa47d0a69 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02c49007 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a735001 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0bf328bb __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13d597ad nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15ff2d7e nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x160a79a3 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1d53fb1f nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e57886c nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2189cec0 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2215aeed nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2298f32b nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23965cc5 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x24d89544 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28709d4d nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b7f53b9 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3077d576 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x332240bd nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x392ab731 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3aa45510 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 0x41b73258 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x458d36f4 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x461d80df nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x467ae26f nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x46a79068 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4d94ecd4 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4db7f79e nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4f61f679 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x50196e5e nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a80dded nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5dbcae55 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5e03d936 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x601a8a8d nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6749974d seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6970112f nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6c13a9a6 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e9b691a nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x71e59cff __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x727e8f47 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78295b6d 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 0x793e0324 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8040616a __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x84170c85 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86627a7e nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x878f0152 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x87ebbd18 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x889517cd nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f70be05 nf_ct_l3proto_find_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 0x92740fe6 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9299546d nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97505071 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ea126b0 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5fb626f nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab6a6427 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0779ea7 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb41ba5b3 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb456d384 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb534e07f nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb58e1896 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb5b963d0 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb831843a nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb84aa28e nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf43a3fa nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc1ee877a nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc2900a9e nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40bbbb3 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd03c6616 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3075da0 nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd8150214 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xda5b65d6 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb2d3453 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd456a26 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe20a0494 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe3e2f7b3 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe5d863e9 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xeb6d337c nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xed4db8cc nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2a7ab6f nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfcc3f901 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x8f5920d6 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x5ad58c6a nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x51ed8ed1 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x13c5ea44 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3937df1d nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x3d4ee796 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4d7421e4 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6ae70ac8 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x727106de nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x94646312 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xc001127b set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdd885a1b set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xfd4c28d4 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x7df9c736 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x0d492edf nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x9a5cc021 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xabbb6e99 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xd99c14c3 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x6f3f0300 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x7e18c458 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0cdfa034 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1d970c05 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x76df35c2 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb13814ef ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xee193b8b ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf84156ba ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xfdbadf04 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x9cc331f6 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0x4205ef2f nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x30118e89 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x34ce1bd7 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x8e6532db nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xfcf1eaf5 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 0x1b497ef7 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3183de57 nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x321efbb7 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x448016af nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x57f72ba4 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5dcf580c nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xcb3a3494 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd4b3879b nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfab5e48e nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x2d126dbf nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x305d76c3 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 0x53662f4b synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x74cb39e2 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 0x09d66ba5 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x130bd556 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x35bbe8ef nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3a527158 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x67272bc1 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x695b9885 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d4a26ef nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7c37d927 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82e82d44 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x90079908 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa4d97e6a nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa9dbe6b5 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 0xc2808c77 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd2e260a4 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd4c6abf8 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc183a67 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 0xf252ad18 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x0f104f8c nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x202d06c4 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2c48aba5 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3bf1f847 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6d067067 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x735101df nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x86f25d2d nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x3acc917d nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x9b0abbcc nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xdd7e604c nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xb5a7b6af nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x13ac1c8b nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x6e8cce28 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xb5b1b78d nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x32087175 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4152dc8c nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5d84c376 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5e45813a nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7f31590f nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd515f83f nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x0e586a8e nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x1108fedb nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xc8cbf2fe nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x932d481f 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 0xf0ee821e nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x126fb53b xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1c61b67d xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c25ec51 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2cf23c45 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x36f20ad3 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3a7755ad xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x70b40c37 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7d7e33f3 xt_unregister_table +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 0x9ba7b614 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb3340978 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd7aba7a6 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xed171e43 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfa5784b7 xt_proto_init +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 0x7deb8235 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf3132e77 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xf78a3510 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x7d18031c nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x9480fc52 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xbf16abce nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1917e175 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5e2f5120 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x6ae8337f ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7772279f ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8346d286 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x959c87aa ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xefec7eab ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf05046ed ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xf3769626 ovs_vport_free +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x01247094 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x072875b4 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x0f270990 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x1016ad2f rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x193148fd rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x1a3d9e76 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x286213ef rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x2c5c5514 rds_message_add_rdma_dest_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x2f90643e rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x3101936e rds_message_add_extension +EXPORT_SYMBOL_GPL net/rds/rds 0x3665f585 rds_page_copy_user +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 0x578370ea rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x7387801d rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x75c091d2 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x7ae4891f rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x888b7ef2 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x8da531cb rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x8ee63285 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xa8329492 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xa9757179 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xb1d50698 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xb552c4d5 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb5bcbf4c rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xb8ec2e6a rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xb9e07ade rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x91944cc9 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x9b1948a3 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 0x3cec194f 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 0xc78b7609 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xeed1dcc0 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0151b407 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04eca3f1 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0506c0b8 rpc_force_rebind +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 0x06c5e8ff sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07d1b543 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0846ae22 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x09af20c6 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a5187df rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b51a257 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d259ccc read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0dd9e044 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fc3c2bb rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fdcd037 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x101d4393 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1047ac0d rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11442abe xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1427d250 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1509efe5 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15224f9f cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15ea8365 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x179bf3d7 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18aeaf14 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1911cd53 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e16d153 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f5b27e0 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21206552 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24bde4d9 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25cadfbf rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25efd71e rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26565461 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x274432d4 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27f83bdf rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28d26ed1 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a44fbcd rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b0762b2 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f2d960a svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8ebbe0 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30877686 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32d92f41 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33608895 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33f38d79 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x35107545 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3580020e xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cc37a2e svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f3704a9 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f6ef3e9 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fbcf592 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x478d6f2f xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48c60722 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d9447d rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x497cf015 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4be75797 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ca0a4aa rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d7c8b33 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e6db186 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e72898e xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x507ac75a rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x51ec37d8 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52088f08 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x539bb7f2 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54a47ce2 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54cc167e rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54d32db2 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x554bfe8d xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55518261 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56135b4c svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x581ae87b rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5924fc7e svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e4aa8d2 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62d983dd rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64d49138 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x657aee1a rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6694949b rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x670f2e6a rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6b035778 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6be8b098 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e0e552e rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f1ea8d4 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f5b5596 svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71979569 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7227fdca rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72ba32e6 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75dd97df xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x768b38d4 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78c60ab4 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79ab18b3 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79b7b822 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d92aedb svc_create +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 0x812063ac svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8175a1fe xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x827a8641 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x84e8065c cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x867a7ed2 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86b42058 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87e0565e svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a17248c rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ba6e744 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bb14492 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bb4cf43 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c48cbb9 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8cdb992e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f9c97c4 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8fed8312 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90d74b3a sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9195e48e rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9233cc7a svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x930eb92f rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9316037a svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93725716 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96313dcb csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97782bc5 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99329127 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a1a0190 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9abbad94 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bad927c xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9bf90ad9 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c39e6e6 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d36461d rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d704d18 rpc_d_lookup_sb +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 0xa2c57b1e rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2d66e83 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa39c66d4 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa39e947d rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa474df8a xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5808664 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5f72c0f rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7668ceb rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8cb884c put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8cbcbd3 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa94c7899 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab3c56c4 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0fcace9 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2ce26dd svc_rqst_alloc +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 0xb6333afa rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb86716fa sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb87e7be6 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9120f3d svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb3446ce rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb648d8c xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd89b687 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbed7d918 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0ac5c77 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2684488 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc273aae2 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc43f6111 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc459e9dd xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc821c8fb xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb253e19 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbc92078 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc192385 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd0ce092 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcdbdb012 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcef55b01 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd040c46c xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1df8420 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd35875e9 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd438db43 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4b5db74 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd72c3529 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8da14cd cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd92bb197 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda4c640f svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb92a21f svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc33ef2e cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf09e36f rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0207cd3 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1449d44 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe160f014 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3fd3ecb svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe790c35c rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97724d2 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9a06062 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb240821 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb34a5c0 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec83b1b0 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedc1973e 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 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef728f40 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef9d285e xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf075be49 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0b6b601 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1d41c06 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf2fe29a5 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf37f34e4 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf43fe10f svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf4cf341e xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf5722104 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6c5aa59 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf87a57b6 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf98e4c52 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb522891 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb9bb757 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe260bfa xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffc805b7 rpc_count_iostats +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 0x1dad3969 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3c4e6176 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3cec98ea vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x444ccb23 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x447adf7d vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4cdacd23 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x60b1bac6 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x6c7543bc __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 0x7e2ab41f vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8f6d7b88 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x934dd275 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb6c7c4c6 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd7d84908 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 0x04bdf48e wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x093aea07 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x16bea3d8 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x31ca17ee wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5d9858b9 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9b27867a wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9b78413f wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9c8918bd wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9db1a3c2 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbd38901e wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc2fc4737 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe3a0f2af wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfe9f6e67 wimax_msg_send +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x03cb86e9 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0a9d69f0 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2d7926e8 cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4086048a cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6594848f cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x66a184f7 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8db3d923 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x94f30f2e cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa8164ff5 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xaec1c1e6 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xc64b49ff cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd0a4d228 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe98fe298 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 0x174753d0 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6c863fc0 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7fce286a ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xc210c751 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/ac97_bus 0x3e83a7c0 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x442eda0c __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x92cce80f snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x0ef70761 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x66a8aa97 snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0x8ce76885 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x9c5d7e8b snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xa94a9484 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xd3f5cfdc snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xe335b338 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 0x175dc678 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x21960499 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x566b8347 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x67a87af6 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x69d22730 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8054a21b 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 0xd36db8b5 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xdf68ffc6 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xf8728226 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1a8c130d snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x259f6419 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5af7b043 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x605c2575 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7d75a16d snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x86685c88 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8e043e8d snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xaac8e73e snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd5db4552 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdc6b16fa snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe427ff0f snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x18fd2ce4 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x22017709 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2810afa3 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x30f7d466 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x32aefe27 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x938478b8 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xe9e2bc70 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x005f6b46 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x042b3c2e snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x042e91c6 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0a932b36 snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0d5e1949 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0fe06305 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x11b663fe snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x14bad15d snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x22206f1f snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x23dbb2b2 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x283491bc snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2bacf4b6 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2c61896b snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x30938254 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31c18905 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x324fe073 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3333e4fa snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3722a968 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38059c9b snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a4762f1 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d1a54af snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4250ea9b snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x434fd6e5 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x458afd80 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x478fec04 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x494d0381 snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49572c90 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49df705e snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4afae05c snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x50c1be2c snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x51d02e9f snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58f0d0aa snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x596334ba snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ea11969 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e1e4654 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f7ecba0 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73a89d58 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x73f12a37 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a118f14 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7c5c0d0f snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7e2dfff7 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x80b8909f snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8cb62843 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f159f5a snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x93bbb3e5 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9dffab60 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e38f35a snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9fab0cf2 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa30ec37b snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4708bd3 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa8dfdeef snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xacb0392d snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xada2d9c8 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaeaefba3 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xaf4accb3 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb151b8cc snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbc070bf6 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbca42724 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf13b069 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4c96f6f snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc663dcac snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcd378e67 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd12f1309 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xda203c09 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf280ddd snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe88cce1d snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xedeec8a7 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0168715 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf19b226f snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf5630986 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfd7ab546 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x52c86eb0 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x69abc930 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb5b17fd4 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb6138c5f snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xbc47ca39 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd7742c63 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x021454c1 snd_hda_bind_vol +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 0x06c61bee snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0814333c snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d43de1e snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e507a7c snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1046ac5a snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11d0382c snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x12a7c8f7 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14387373 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x151be0e0 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x156a4ccc snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19899312 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c14f84a snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fb7de73 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21851389 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22121fd8 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x240c6b6d snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27caf8d6 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28b304b9 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2970b71f snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ac500f3 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33a0a5aa snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x344f2a5b snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x34f13ac6 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x35ac0b64 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36fc3ea6 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x372207f1 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x375cacd5 snd_hda_input_mux_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3793f2d4 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3aa594fb snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c6c709b snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3de791f7 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40000679 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x406ca677 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x419268db snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41d4c4c9 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43d12e5f snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48b2ffda snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4ca87c00 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x50ff41e6 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x52ce9f42 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55b5eb1b snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x577900d2 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x585fc813 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59013cea snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c5b316b snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5db7c3e6 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e5b0f8f snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5f24d12e snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x610f43a9 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68de1d53 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6cffd386 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6daa0302 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7040b838 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7453be16 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74aa319f snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78a64ba4 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a04ac2a snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7a97c2a5 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b3c74ed azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7d058072 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e92601b snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80c8d9ea snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87ad50a5 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8910239e snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x891ffe7b is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b959f3f azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ccf40a1 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d17eccc snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d50b813 snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8db64b30 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8e8dee8c snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x937a6ede snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9648c98e snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cbf2004 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2da9df1 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa75312ca snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa79b7180 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa847835d snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8fb5f08 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa971865c snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xac26e769 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xad42d122 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaef5c362 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb18af2a0 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb381cbca snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb85cb0a4 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbca6fa2d snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbce73aaa __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf738a54 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbf77055c azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc2be0355 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3093779 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7e34862 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc0403c7 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcca3bd57 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcce400b1 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcd3557d4 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce9f8f5e azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcee04631 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd1ca4d24 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd278a272 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd32eb3c6 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd558d158 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9000da9 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda5709bd azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb545889 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdb672b24 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xde0fa6a9 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf702d05 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0c19f9e snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2541afe snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe36d8402 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6214751 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe69fb533 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6b10285 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6fbe4c5 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea919bce snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeba35561 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed459bf2 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeef1b5b6 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf60f39bc snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf73778e0 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfaa91c4d snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfc4e9602 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0a693f51 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0fb2605d snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1acfcf75 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2007501a snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3967007a snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3ecb6a32 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4071ae88 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x46e2c1c5 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5104da92 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 0x871a6e44 hda_extra_out_badness +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8dadb6f4 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x992801f4 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb499d787 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xbf2f99f2 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcd7f5348 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xdfefe336 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe0733e0f snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe0e05203 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe86c0f39 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf1031929 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf50ffdaa snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfea37126 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x56be4cb0 cs4271_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x5a8894fa cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x251d185d cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x73d7fce1 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x17fcd6e5 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xb16e0565 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xf72b609d cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x71a878cb es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x86cd0da2 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2c00835b pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x40277ffd pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x60a392ce pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x993adfab pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x54335afb sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x624176c9 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x93321f4a sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xb67dfc71 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xc85e338d sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x50b92339 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x36e14ad8 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x9f1b3eb4 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x8820b272 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa193af35 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x71935544 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x128e1207 wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3774e7e9 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x5e1ace10 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xcff76152 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x108e3673 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x7e1c1363 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x29432dfb fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x7f8cc144 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 0x02dd8f02 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x03a5600c snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x086fde70 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x08d95dd1 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0b09b0e0 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0eb34c4a snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0eb3863c snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x106416fb snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10ee09e2 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x110109a9 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13efb0e6 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17899ff3 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x184bb8ca snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1abb16eb snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1b69abea dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f398352 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x226befc0 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x229f58a5 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x297832e0 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2998a7ce snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x309cf7e6 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x315438c8 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32fd1ca6 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x33e539dc snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x34d57d82 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x35d940aa snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3781492c snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3829fcec snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39a70ac8 snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c56d382 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3db9d034 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f519d73 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f69dc59 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4098313a snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x416dc877 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x42238f95 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4249d5f4 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x428a043c snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x449f0da7 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x464a9624 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x47f742e8 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49a0c3cb snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bd6ab73 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cb23c61 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4eeff3d6 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5156874e snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5592e19e snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57ca31ac devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59745738 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e18c302 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64f9063e snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6708f00b snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x670cd1b1 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bb7cde2 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d717673 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ed253a7 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7249e43c snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x747083ce snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x74ed7e2d snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x757f23dd snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x768ad43a snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7826b7b3 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a2fd4e1 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a81a4c0 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7b2af52f snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c977c86 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e05c8eb snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8040063a snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x824a5374 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8641f0bd snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x880d3f0c snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8818e983 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c566ace snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e9b8b18 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x912514ac snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x943fe9be snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9685131a devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9703199a snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x983b769e snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x98a687d2 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99154031 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9bb278dc snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9e098395 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9ec4b8ce snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa0ca2eeb snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3a184e2 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa4cfacde dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8248bb8 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8cf3b2f snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaae7e975 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab2e1537 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac327ad1 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac5360bf snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadf8f6ee snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf94d705 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0bb434c snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb0e88b8c snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6054b68 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb66c5518 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6decbce snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb945cb5d snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9467054 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbac337f0 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe5fceec snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc178653b snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2a37484 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7ec5d5e snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8325b9d snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc87123dd snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9833f38 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9861db2 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc9bc2cf0 snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcae68f74 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb217f45 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc046966 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc334314 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcdd3b110 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0cdc64c snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd601428f snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6877679 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6cfb1fd snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6f902ca snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9e1c054 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda4912cc snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda8564ff snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf3322fe snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe136ecf8 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1748aa8 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe1be06f5 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe309c47f snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3966c89 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe532be55 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7c2256c snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe97ddd4c snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb4067fe snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed5c122e snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeddfc0b4 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xedf656d0 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0c40ebf snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1416780 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1f99e84 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3c021c7 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6dc993b snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb5786f1 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb6977dd snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfbc21d3d snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd3cd82b snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd9a9c8d snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x06124548 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0c08c957 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x18644243 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 0x6380db5c line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x68fc49d5 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x710c3782 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x711afd73 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x865b4366 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 0xa29b4ac3 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb4ab174b line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc98db9a7 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcd4c87ce line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xce68e4ef line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd7a9e39b line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xec86051f line6_init_pcm +EXPORT_SYMBOL_GPL vmlinux 0x0039f728 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x0048cb93 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x004fe890 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0x006147f6 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00760688 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x00849674 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009b704a device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x00b720e4 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x00cb1530 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x00cbc685 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01033451 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x010722e6 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x011edee7 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x01204e7d usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x0154148b PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x015a85c5 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0167dc8c regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x016b4931 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x01dc8c33 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x021d66ba ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x021edc29 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x0248a7cb sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x02760eb3 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x029c0625 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x02a34eba irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x02bfb5f8 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x02cca40d __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x02cd4947 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x02d4cd43 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x02d588a9 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x02f9a762 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x03158837 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x0319e422 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +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 0x03446d0d powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x0363ecd8 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x0364b391 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03812721 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x039bc74e regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03c641a2 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03fa754a nl_table +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x040c9758 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x043bac91 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x043bcf1e led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0444ff7e uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x048a6c33 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x0497b7cb kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x04a1fee5 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04a99801 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04b6b3ab clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x04f7b538 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x05061816 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x050654fc device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x050801e6 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x050f90d1 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x05195e2c pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x0525c7e5 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x053a89ba transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x0543d9af pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x054d04f8 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05743ee3 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x05744445 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05903215 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x05a22ae4 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x05e25833 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x05f8dd27 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x0602e1a0 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x06081610 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x060ff008 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x0612cbec __fat_fs_error +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 0x062ce347 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0640dd42 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0660e37f ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x0673ab30 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x0685a3ff devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x06a25328 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x06b454a6 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x06c07a71 rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x06c0ab72 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x06cce92e extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x06d476b2 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x06d664ac blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x06d6c799 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x06dda173 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x06f0f25e devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x06f21c55 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x06f67a8c blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x06fdbf27 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x07096b04 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x07170d83 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x073af938 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x073e7896 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x076a4703 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x07800a05 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x07ab61f6 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07be5a99 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x07c8d0b6 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0821c407 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x08296436 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0854848c wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x086c2206 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x087335b4 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x08a5af76 of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x08b63aca __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x08cce78d ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x08dfeb78 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x08e96a1e pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x090dccae bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x091c04ea spi_sync +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 0x09c85937 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a646cb3 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x0a793721 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a92150c powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x0a94e4c4 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x0a992ed7 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x0a9f4f9c net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x0aa8eb3e devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0aac696e uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x0ac269d7 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x0ae058fc gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x0afa6a8f pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0ee330 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x0b167eed __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x0b3a9f51 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x0b3ec9a3 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x0b6ca76c of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x0b70f6ae __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x0b70fb59 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x0b738755 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x0ba69e2b vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x0bc54e36 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x0bdcb1d6 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0a0fb9 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c11a425 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x0c146400 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x0c1b2a36 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c31859a dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x0c571d5f fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0c5dad3a ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x0c765583 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0c7b5f8d crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x0c849dd5 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x0c8b2f0b rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0x0c9ad5e9 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x0ca230ed crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x0cb5861f kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x0cb9985b ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cfcaa7a devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d1c504d cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x0d3189f6 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0d422f7b platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5354d1 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0d575753 tps65912_set_bits +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 0x0d7f51ae usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x0d864123 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x0d9668df tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x0da6f2af rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0e18ab56 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x0e2c29b8 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x0e2f7307 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x0e41e8b8 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0e4223ce of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x0e460941 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x0e61116b sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x0e6f563e subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x0e78be07 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x0e912559 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x0ec4a484 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x0ec7fb51 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f30d22d debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f47c6b7 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f92fcc6 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x0faf8f0e ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x0fd78715 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x0ffbc9e2 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x102f8a93 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x104f601f skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x1082093e rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x10a1935a shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x10b62fd8 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x10bc7004 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x10d31e30 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x10dce277 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x11080ca3 max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x112dabef sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x112f5e1f inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x117665d2 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x11a1e14d spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x11c0faf4 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x11cae3af securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x11d0495c __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x11e350a8 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x11ebd211 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x11f14803 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x120d9be1 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x1213ce29 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121e971b da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0x123d547a sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1247054d transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x124f531f ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x1253c338 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126d1486 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x127a3bf0 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x1283073b ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x129389e1 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x129c4ced wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12d13ef5 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x13072c5e adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x13094868 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x130b70df rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x131435b2 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132591cf rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x1326313e skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x133d8f29 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x1359d5dc xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x13680fbe tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x136a8df0 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x1398b776 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x139b9fd0 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13cf4f91 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13fe7067 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x141c0686 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x144093e4 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14413db1 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x144d0c7b dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x14bb700e power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x14dba965 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x14f96d7e devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x15014a47 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x15310696 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x157c7e19 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x15817eb6 kvmppc_handle_load +EXPORT_SYMBOL_GPL vmlinux 0x158560a0 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x1587c65e usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15975f85 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x15a21285 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x15b36b2d handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x15b573ae extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x15bc537e ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x15c0aeb3 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15dfe992 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x160a224c spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x160e7870 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x16127622 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x161909ed driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x161e1c22 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x1630941a get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x164c3bdb phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x164d50c7 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1659ea81 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x166caa39 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x16769218 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x167d5d74 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x16951c11 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x1696b62b crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x16aaa805 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x16b23c28 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16c01a85 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x16df0b8f devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x16e7a625 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x16e8fb52 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x16edbb3c debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x16f54ae7 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x170a0397 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x170bd74d system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x170f7dff pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0x1720736f ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x1740f7ac usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x175e7f7b md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x1769f5ea of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17a8f610 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x17ae5c25 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x17f5b49b tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x18028fc9 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x181b3f8e clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x183a35d7 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x1849a1f3 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x185db76f __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186edd5e kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1871328e kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x1875d6f2 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18b1df8c pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x18bdf3e8 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x18dbe5e7 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x18e65c7a device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x18f98192 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x1902dfa7 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x19067dfe find_module +EXPORT_SYMBOL_GPL vmlinux 0x1909afdc ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x1910ce14 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x1918a4d1 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x1922500c blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x1925e4c3 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x1932443e crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x19803085 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x198bf276 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x199264fb disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19a6cb1f rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x19b733a2 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x19bfa4c3 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x19cf1a84 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x19e09139 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a080083 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x1a09c632 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a357540 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x1a5b744d fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x1a655706 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a99e7fd cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x1ab71631 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x1acd710e irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad12a38 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x1ae63da0 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x1b28ca0a __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b68b85a regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x1b6e9622 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bc01880 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x1bc20c58 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1bc46a36 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x1bcdf2b6 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x1bf343b3 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x1c01526b swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x1c186f20 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x1c50a188 wakeup_source_drop +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 0x1c8e1e62 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x1c95e96c uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x1c98ac79 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x1cbb7364 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1cc552ca unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1ce1b1cb crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x1ceb8b1d fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d0dfcfa sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x1d0f0067 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d39120e adp5520_unregister_notifier +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 0x1dd83832 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x1df585c2 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e047ad1 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1e06beaa l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e7619f4 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e81a40a xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x1e8670b8 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ea42934 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebc4f07 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec3ee75 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1ec984d9 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x1eee289e rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x1f1b6fcf flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x1f32cab1 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x1f67138a md_run +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f9674e7 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x1fd7c743 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x1fdd7559 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x1ff6f52a ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x1ff98e7f regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x20203b82 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x2048c470 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x206e594d stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x206fd906 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x20753c69 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x209145db dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20b3b8e8 ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x20b7e357 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x20befb51 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x20c1c821 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x20ce0b30 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x20cf9391 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x20d21865 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x213c2588 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x2157e964 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x2169fac6 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x21808915 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x218fa11c led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21c48222 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21d780d1 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x21deaab7 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x21f5c6eb ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x22066e1d tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x222c6e8f crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x2253bf36 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x2257b080 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x228b8b89 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2299a7e6 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x22aadfac pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x22ddaade gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x22f1f05e bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x23116bab __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x231967a9 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x232bf0b2 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x233981ff irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x23431cf5 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x23431e16 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x23452699 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0x2347770b rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x236172ef crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2366e6ae component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x238ded45 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23b3a9ac ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x23cfa2a4 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x23ebfa9d dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23fcfdf9 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x24067736 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x241e6a30 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x243f4cb1 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x24436cf2 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x24593488 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0x24707d6f ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x2476556d usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x248b81a5 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x2498ae9d nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x249cbfb1 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24ab24d9 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x24db11e3 da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x24e1580f ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x24e7d3d6 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24eccbe6 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x24fdb66d scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x254b8534 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x25522769 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x25721b95 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x258c6e03 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x258e941e usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x25945081 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x25c0330a debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x260a55b3 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x261253d2 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26363614 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x263e1193 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x2642b492 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x264f2bb6 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2661b3d5 clk_register +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267257cb shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys +EXPORT_SYMBOL_GPL vmlinux 0x26998c8f pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x26a89592 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26bf9be4 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26e1051e tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x26ec5b8f inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x27004d9d dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x27153e91 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x272b3b7e wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0x272e468a virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x273d8e78 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x2742982a ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x274cbc61 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x275117c3 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x2768e203 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x276b495b pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x2775012b virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x27812d3c ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x278fb154 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x27931251 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x2797bfa0 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x27981f3f gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x27aad360 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x27ad0c68 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x27b49a8e pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27cc88ca ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x27d0769e ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa1234 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x281f529e regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x282b71ef xhci_init_driver +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 0x2877fc27 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x288b71be rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x28c40f35 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x28d8547a xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x28f464a1 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x28fe5154 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x29241ec8 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x293744de crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x2937502a sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x295aecc5 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x295fd83a nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x296b311b pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x297bde5f kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x297cc3c9 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x29806434 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x2981f046 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29a3cba2 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x29ac4ab5 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x29d5e291 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29fde261 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x2a54fffd pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a84439d of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x2a9831c1 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x2a9e4b44 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x2aaeb5ae led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x2b117904 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b394452 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x2b473523 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b604751 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2b6b1598 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x2b7a574f md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2baa1466 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x2bb47cd5 dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x2bceb662 led_classdev_register +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 0x2c319115 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x2c60fb77 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x2c71c7dc arizona_dev_init +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 0x2ca16a7c virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x2cbf6410 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x2cc8367b of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x2cd27b07 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x2ce0855d gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea35b3 put_device +EXPORT_SYMBOL_GPL vmlinux 0x2d1adf3b __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d2fe594 crypto_alg_mod_lookup +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 0x2d6dc1ec cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x2d6f1c3d __class_create +EXPORT_SYMBOL_GPL vmlinux 0x2d7fb421 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x2d86046e of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x2db79e44 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dd1070c disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2e0703f1 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x2e19f605 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e496e4f tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x2ea1a8e9 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2eda779b handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f178f2a n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f23496b gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x2f2d3e03 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0x2f344a99 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f879876 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x2fb301df kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0x2fc966f2 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2fce0625 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x300f67d7 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x3025e787 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x303ac24d irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3081a92c cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30b67326 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x30b73c9a task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30e8d53b dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x30ee4ebd arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x30fa774a wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x30fc7d3e __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x3116381c sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x311eee0a sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x31208c4b device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31331b7b kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x313ec3b8 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x313fb668 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x314013a3 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x314988eb __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x316a78c4 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x3175d75a ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x3182e224 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x318c2e12 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x319daf92 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x31b7256e devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31c0a6c8 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cd4a79 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x3203fa18 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x322c5b06 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x3230e4a6 devfreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3237577d tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x32499268 fsl_spi_cpm_bufs +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32924a4d scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c14438 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c6ccf0 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x32ef077e fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x32f1f89a gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x3323ca30 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x33493446 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33686ba8 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x336dd062 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x3383c51c platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x33926882 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33a59a57 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x33eb660f devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x33ee555b device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x33fd7e64 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x34006ec9 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x34179bcf find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x34331d5e nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x343c189d __class_register +EXPORT_SYMBOL_GPL vmlinux 0x34413f8f wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x345753ea rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x34641247 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347b3021 fuse_file_poll +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 0x34ca2a37 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x34e43daa hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x34f9791f usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x3513dd54 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x351a4945 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x3521372d platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x357860d7 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x35798169 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x357e35dd crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x359b0e1e ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x35b1944c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x35c849a8 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x35d4cdda pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x35dcf2dc pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x35ebe402 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x3606b09d devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x36081c4d driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36498a50 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x3681ac79 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x369b2f77 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a64e5c percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x36b83905 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36cfbdea kvmppc_pr_ops +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36dea2b7 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x36e4db8b kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x36f83b10 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x371d6f77 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x37310beb max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x37351098 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x37411109 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x3746e66d wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk +EXPORT_SYMBOL_GPL vmlinux 0x37d4650f ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x37e545d3 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x37f823ee extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x37fb1f49 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x381426f0 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x38364f79 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x3877d579 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x38971d91 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38da24fc wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38e54a16 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38e9d0dd pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x38f72be3 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x3904ead8 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x39366aa8 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL vmlinux 0x393fa16c __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x3947da52 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x39822268 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x398401f5 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x3988aae3 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x39bf8293 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d5a6d9 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a185eeb sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x3a19690e ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x3a1ab58c mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x3a23c11c fuse_get_req_for_background +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 0x3a6ecf33 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x3a7782f1 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x3a83585c trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aab56a9 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3aac9b30 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x3aadca6a pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3acaf6da inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3afe448a of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3affd84c ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3b3ab4b1 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x3b45d390 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x3b49fddb rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x3b7a7ac8 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x3b8d19ee fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x3bbc453f platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x3bdc0248 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3bee01e8 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x3c1b20ef max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x3c223242 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x3c2a988e nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3c3051c1 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c39134b dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0x3c630274 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0x3c74b39b da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd83473 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x3ce43e7f pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x3cf9b85c ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x3d07617c da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x3d208707 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d98acf2 scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x3da70dd9 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3dc214ff fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc54d65 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x3dc6044e queue_kthread_work +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 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e6835fd key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e757637 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x3e8de2c0 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x3e8e521b ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x3e91cc5a __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3ea31581 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f20b9f3 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x3f915c4a devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3fa408ac regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x40060923 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x40109c11 fsl_spi_cpm_init +EXPORT_SYMBOL_GPL vmlinux 0x4023265a tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4052be59 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x407b9ad5 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x409bf727 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40b28180 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x41275ba9 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x412b7d57 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x41462f20 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4183719d module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x418fbc13 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x419d41aa to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x41b2abb0 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x41b7f562 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e6902b pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x42285e1b kvmppc_handle_store +EXPORT_SYMBOL_GPL vmlinux 0x4231520c sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x423feabc sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x4268de24 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x427eef78 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42ac7c47 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x42ad7756 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42fc24e0 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x431110f5 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4313f6a0 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x4342fab1 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x437c5539 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x43914905 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x43963707 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x43969dbe rh_alloc_fixed +EXPORT_SYMBOL_GPL vmlinux 0x439db980 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x43a000a2 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43a99695 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x43b466b0 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL vmlinux 0x43b7d2f4 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43e5b8ad devres_release +EXPORT_SYMBOL_GPL vmlinux 0x43ec5af0 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x4405eb6e blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x441e5f82 of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0x4427b0f2 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x4471e1a7 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x447c6fec spi_async +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44de796f __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x44ef63e1 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x4504ec9c kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x450be43b ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457fd0fd cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x45852c65 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x4586a89a irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x458e5708 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4597ba81 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c6c72a usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46117128 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x46122c84 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x4621c635 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4628d108 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x4637a6fc of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x463c1939 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x46573d42 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x4685a02c devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46a74ffe pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x46ca8b9a device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46d6f17c key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0x46e3a910 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x46eb961c get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x46f3c759 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x46fdf1a4 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x4710667c cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x47263e8c regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x473b9a72 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4764c1ca usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x478311d5 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47a47b42 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47ce50ec devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x47f90eab pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x480417ee verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x480b40a1 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x48482a15 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0x484f4d39 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x48568d61 dev_pm_put_subsys_data +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 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x486b94e7 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48bec11c crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x48db9ddb kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x48dc8b87 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x48e369b6 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x494385c6 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x49561a95 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x495bfec5 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x4964c6d8 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x49795360 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x498ed103 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4990be32 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x49aa804b xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49fa4029 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x49fd3e7b dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x4a115a5e scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x4a2220c1 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4a360e58 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abae9fe thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4ac64859 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x4ad5a85e filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x4b1159e1 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x4b11b417 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x4b24c412 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x4b41a635 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x4b61f785 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b92b087 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x4b95c77c perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init +EXPORT_SYMBOL_GPL vmlinux 0x4ba55ee1 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x4bb0d68a gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x4bb3bed9 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4bde7154 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x4c0452e2 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x4c22e782 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x4c292810 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x4c33d6af trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x4c36a66c phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x4c3d306c devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4c4c0dcd seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6674ad fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c75ca2e invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x4c774260 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4c9124aa fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x4ca34ebd unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x4ce9db2f usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0e6970 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4d27ba28 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x4d29d2f8 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x4d2b0cfb hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4d3478cd pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4d45e006 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x4d56d2ee debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x4d63c26e trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x4d7b09c7 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4d82d061 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x4db43bfb fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x4db6a248 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x4dbd789d find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x4dcf2e79 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4df7ed10 ata_bmdma_status +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 0x4e2f923d usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x4e2fcdfd dev_pm_opp_of_add_table +EXPORT_SYMBOL_GPL vmlinux 0x4e55992d unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x4e83f289 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x4e87e167 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4e93659e dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f186107 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x4f197b64 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x4f2cdd66 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f578d2c fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f78a816 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x4f7da00d devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x4fcfafc1 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe3528e hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x4fe5236d disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4ff2c082 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x4ffd3bbc led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x5019d01a ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x50251e1b regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x5029056e subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x50329e03 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x503c0d15 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x503f61b2 leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x5050754e dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x506a679d pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x50791005 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x507f76e4 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x50821ad0 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50c89f23 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x50e4b3d9 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +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 0x51594e96 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x516cbaca blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x51704181 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x517ae17e __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x519fefa8 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x51b12506 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x51b649e8 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51c3261a wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x51d519ce crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x51e459a0 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x52070838 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x522066d5 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5234114e dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5235286b ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x523ff816 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x524853ff pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x524a389b class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x524f0bd0 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x5269d475 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52b9fa3a metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x52bf67bd usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x52c73a5b gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x52d6ab04 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5308dfb9 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x530bafca pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5315494e trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x5320e41c __bpf_prog_free +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 0x53623203 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5368cb13 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x5379a637 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x538c2b8c noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x53903f2a pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x53cf5007 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x53f4efcf perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x5410b9c2 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541ce2ef watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x543f0119 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x54401778 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x546fc95f swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x5471cf9b srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54b5e679 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x54cb283c tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54d81cd7 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x54eade3d gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x550a67fd rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x55470c2a pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x555c3671 usb_match_id +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 0x55812471 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x55a0af24 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x55a8d0df of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f05b26 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x55fec1a3 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x563cde38 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x5644abb9 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x567271f7 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x568e6b76 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x569801eb tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56c821ff ata_port_pbar_desc +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 0x56f1f040 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x574532c4 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x577c33ee blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x57848bd6 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a4277c iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57c977d1 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x57cb3097 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x57cb3ec2 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x57d8297e regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x57e37517 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x57e62460 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x57e70bd8 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x58062b71 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x58399d4a hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x584c2802 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x585cec45 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x585dbfe6 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x58623b87 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x587c4b92 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5893fd12 component_del +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58ada9a6 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x58b0440f sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x58cc5790 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x58d6974e devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x58f6366c devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x591d15f9 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x593b0a50 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x594a470a i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x596f79f7 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x59845b02 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x598d1171 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x59b574e0 dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x59e42e6a tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x59e8aba2 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f0c9dc rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x5a1fbe34 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x5a44664a ata_bmdma_port_start32 +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 0x5a8c8906 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x5aae4105 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x5ace83d8 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x5ae71d43 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x5aec0abb irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x5af934d4 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x5b18bed8 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x5b7a6610 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x5b9ddb78 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x5bab72d3 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x5bc0bbac pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5bcc154c usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd1b8ee blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c0bae57 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5e9ae3 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c79379d bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x5c862e6d fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5c8d5371 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x5c8dc3f6 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x5c9efd65 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5ceb307a eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x5cf36aa2 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x5d0e7f53 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d586eba tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x5d8dc286 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5d9b71f9 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbb9d5c ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x5dcd1e52 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x5de223fb usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x5dfe1a89 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e3a8e9a component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x5e3ec199 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x5e4430c9 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e6ba1c9 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x5e8f363b tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x5e9c607a napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x5eb14c8a pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x5eb2a5fc event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x5eb36aed usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x5ec070ca fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x5ec4f65c sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5ed1b705 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x5ee1b7e0 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x5ef8cdba of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x5f0214fd kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x5f058d13 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x5f30f443 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x5f5c54c3 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x5f645824 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x5f727022 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x5f82c7dd irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x5f88aa97 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x5fa0e42b perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x5fa759c8 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x5fb3457d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x5fc858d5 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x5fe54495 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x602af4f5 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x603d078d dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x603de1de ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x604127be pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6062e98c regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6072a8e5 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x607f8a46 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x608e5ebc stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60ab82ba trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x60ccd0de usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x6102ca3c regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x6104a3ee ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x61119576 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x6122b4fc bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x613085eb uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x61351d86 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x61626690 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x61751786 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x618baf9d bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x618d3bcd da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x618de7ea tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x61a584cb inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61b8d962 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x61d3201b ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x61fa2328 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x620040a3 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x620ddd66 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x62104fd0 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0x6213bbfe fsl_spi_cpm_irq +EXPORT_SYMBOL_GPL vmlinux 0x6217dd4d ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x624c4967 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x626fdd12 device_register +EXPORT_SYMBOL_GPL vmlinux 0x628ce81e irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x62a0f614 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x62b9026c kick_process +EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x62fdac48 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x62fe6145 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x632c42eb usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x633d6c4f raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x6351c5c3 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x63772259 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x6392154c sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x63923a8d ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x63948492 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x63ac6c58 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x63b9c549 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x63bf90de fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63e81326 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x640c7bbd ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x640d6b81 gpiod_get_optional +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 0x644db480 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x647cd339 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x6484649c kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x648cf9b6 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x64a4c66f ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x64a70cfc io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64bb026f clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x64bb3565 kvmppc_ld +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64e42886 split_page +EXPORT_SYMBOL_GPL vmlinux 0x64e5445b pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x64e5a535 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x64eb2f93 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x64f9d053 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x65306f3e usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x654a5886 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x654d33a7 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x657fcb5d ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x658cf1d5 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x658e86ac regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x6592e6e1 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65bc674c trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x65c9a010 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x662432e6 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x66266653 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6684f316 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x6686eb22 sock_diag_unregister +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 0x66db44de gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x66fac228 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x671446c3 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x67380a6f rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x675370ea sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x6764ad9c class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67880aff tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x6796e82e regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x679b1d14 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x67ca8e5e power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x67d3a276 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x67ebe664 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x68030475 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x6814d5be pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x682e6bb0 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x6849a3ab i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x6854ca77 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x6873a90d __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x687480e3 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL vmlinux 0x688cbdf7 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68af706a xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x68afe034 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x68c3caa6 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x68ef6c38 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x69054630 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x6907a974 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x69197e4b zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693a47c6 spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x693b75e4 attribute_container_find_class_device +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 0x6959a50c tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x696c54df aead_geniv_alloc +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 0x69a31d1d tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x69ab121d __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x69b12922 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x69b29f41 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x69cdcc64 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x69dafffb iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x69f68a50 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x69fd5053 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6de448 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6a82fe77 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6aa6eb11 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x6af34edd tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x6b263a9c user_update +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b42ea7c sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs +EXPORT_SYMBOL_GPL vmlinux 0x6b6df744 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6b6ea792 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b882846 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x6bbeef41 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6bf7428e cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c13cb9e __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c36b938 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x6c43723c device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c5a2d65 rio_mport_get_feature +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 0x6ccd5f6b pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd5b807 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x6cecc5c1 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6cf4a18f regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d396c9a of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x6d73abce mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d9329f8 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x6d9c11eb show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x6da51ebd ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x6dac0acb hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6de10215 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x6dfad694 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x6e01278c blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x6e034c0b ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e14c41c watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x6e1fc294 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x6e3391e7 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x6e3685c3 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x6e382d28 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x6e38a657 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e77c853 mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea5b056 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x6ece1c92 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6ee61a1a ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x6efe2708 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f57672e debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x6f651175 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f81facd pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x6f93aee0 device_move +EXPORT_SYMBOL_GPL vmlinux 0x6fa4210c crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6fbb5e1f uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x6fe11082 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x6fe2b355 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe4ff41 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x6febec00 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x7059da73 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x705e0fcd usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x7075774d sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70a297d0 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x70b5a87a disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x70b92d6a sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0x70bd86b1 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d4a695 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x71083532 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x71186be6 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x71302878 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x714dd06a regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71676b5f devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x7173f64b inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x717cd456 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x718ebd69 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a47118 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x71a770d8 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e1a89e platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x72151020 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x72244b3c ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x72271dc0 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0x7240ad28 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x724b93a3 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x725ab98f wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x725f0116 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x72bd0145 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x72d8b03d class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x72dd2b61 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x731b7ab9 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x733f2238 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x7341941e device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x7378eda0 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x7390b697 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a83630 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x73af24fc usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73d2850d blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x73d4d45e da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x7416a5a8 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x7425abff fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743fb822 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0x74409b2c phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7450b717 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x747e2721 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74968210 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x749868d9 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x74a60354 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74cc6565 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x74d007c2 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x74fe9bc9 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x75054d6c reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752a5aa2 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x752e89f0 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x7567c184 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x7572f2a3 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x7575d197 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x757e170d pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x758d0f39 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x7595b95e ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x75972bcb devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x75a599d6 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x75a6c4ae xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x75b378f8 devm_regulator_register_notifier +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 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x75fcad09 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7620143b usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x76517d60 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x7659ec45 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x766bd6e6 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x766e59fe devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x766f38ae gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76838233 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x76943322 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x769d4f75 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x76a1515b ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x76bde124 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x76c7c6c2 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x76d0c232 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x76d5f25f input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76e01c4e ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7731164c power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x77553c25 tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7766a7eb sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x77801eef smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7795ec61 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x77a98e15 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b98393 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x77c43396 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x77ce77da of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0x77d30012 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x77e028e7 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x77f2859b power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x781e3f51 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7822b1db class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x78459300 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7848e1fe __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785b1bb3 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x78743538 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x788f51d3 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x78a2f0ab led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x78ad67c7 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78e3ef04 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7950bcae ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79978162 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x799ba8f9 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x799c21dc scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x79aa0e65 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x79b9cb77 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x79bcbaa1 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump +EXPORT_SYMBOL_GPL vmlinux 0x79d79a9a dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79feeed5 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x7a090dcb blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a7b2cc7 register_kretprobe +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 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b17e4bf pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b2089d3 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x7b253947 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x7b6a6785 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x7b712d18 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x7b729998 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x7b8d0680 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x7ba01cae ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x7bb8d290 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7bde75e7 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7bf0c0c9 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x7c0b9fe1 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x7c1c23d4 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x7c1fa4cf skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x7c234ae8 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x7c2c0568 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x7c2e2286 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x7c53a56b dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7c7833f3 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x7c87a779 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x7c8f0400 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7cb1cdb3 rtc_update_irq +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 0x7d01a290 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x7d05d8cb platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x7d1d7b30 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x7d2762e7 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x7d2a2d32 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x7d4cd0a3 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x7d500901 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d7afda2 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x7d7e7a3b ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x7d943e86 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x7d948fc3 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x7d9808d8 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7ddb3d51 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x7e0690ed ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x7e0b0eaf ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e182b37 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x7e28ef58 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e732bcb __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x7e7cbaf6 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e962d36 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x7e9907d7 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x7ec2255e virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7eec3367 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f2e5243 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x7f339222 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x7f793c55 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7fa70811 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x80030322 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x800dc6fd blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x801eb44e regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x802adf24 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x8031abe4 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x803a2681 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80b0f0c3 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x80b50254 of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80df8100 crypto_alg_extsize +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 0x811f1aae crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x81277f84 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x813028dd nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8153b945 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x815588a6 clk_enable +EXPORT_SYMBOL_GPL vmlinux 0x81694ded ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x8186b92d sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x81924f37 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x81925179 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x819316fe mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x81a2be89 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x81eff63f of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x81f367d9 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x81fa2bd0 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x81fb6098 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x821743da gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x823228d9 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x823bcccc irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x824f9b57 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x82799d69 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x82a9b30a bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82f992ad unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x834011f2 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x8345e552 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x8354f8dc blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x83561cb0 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x836d74fa spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x8387a79c power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x838e72ca pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8396105b pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x83bcc985 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x83cd6ec6 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x83d105a1 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x83daca77 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x83eba8d4 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x83f1caf7 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x840b1afd debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x8411b823 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x841acd10 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x84244ca9 add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x8439c277 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x84420643 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x844a3dde ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x844f9424 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x845bbe79 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0x8488ae7b tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x84928644 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84d3675a crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x84f9c724 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x84fa18b3 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x84fb41a9 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x84fdac3a ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x8500ab38 usb_register_device_driver +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 0x8528bc7c __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x85407347 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x854f7a27 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x855c92c9 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x85649593 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x8564a816 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x857cd2a2 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x857dc34c adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8599c700 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x85c3ded9 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85c95927 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x85d0610c tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x85ec7104 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x85fbd815 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x860ec286 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x861250b0 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x861ca92f mmput +EXPORT_SYMBOL_GPL vmlinux 0x86242be4 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x862a0ad0 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x864a6d44 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x86656b8f dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x86754e1c rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x8687b17f devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x868fc846 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x86c7e176 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86c9c06b of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x86d18296 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x86e11f6c crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x86e2d4ed vfs_kern_mount +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 0x871c0953 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x87466341 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x8751bf3c rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x875a71c3 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x876f5301 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8775abd9 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x87856fff pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x87aa6de2 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x87b3515e sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x87be0907 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x87c2cae7 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x87d8b5dc tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x87e27b34 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x87eddc5f pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x87eff885 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x87fa0e68 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x8800d3a1 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x881b9767 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x881dc8b6 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8834d376 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8854f667 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x8856e35e ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x8859e39c ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x8864dcb4 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x886b0a39 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x8878d0a6 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88accf95 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88dd1b6b pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x88e79d68 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x88f08208 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x890e48ce kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x8918fa77 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892d731c wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x89363090 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x893e805c sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x894cb90b cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x8976567d crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89f3db2a dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x8a1d6dfc irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x8a23a1f2 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x8a2508d4 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x8a504ebf usb_set_configuration +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 0x8a7570fd pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x8a8c7a16 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x8a8c8893 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x8a8cb650 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ad3ed5d sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0x8adce9fa pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x8aedaf3a ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8b065dd9 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b29fa12 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x8b2bbc58 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x8b403368 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x8b63f93a inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8b9dfd94 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x8be0fab7 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8bf7a265 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0a2455 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x8c19775b ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x8c1fc32c user_read +EXPORT_SYMBOL_GPL vmlinux 0x8c5cc8f1 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c78d4de max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cfce326 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x8d087bec driver_register +EXPORT_SYMBOL_GPL vmlinux 0x8d09ce7a proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x8d0a5a55 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x8d0a9813 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x8d20f1c4 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x8d25f66b crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8d399c5a blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x8d410c5c xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x8d454926 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x8d527088 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x8d5685fb i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x8d6294d7 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x8d67cd91 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x8d6d7b61 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x8d7fb617 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x8d991ab0 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8da5031b devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x8daa1b89 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8db0e370 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x8ddd6452 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x8de1a166 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e13ed25 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x8e1c4174 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x8e1ed1f3 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x8e20e14a ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x8e2b25c2 videomode_from_timings +EXPORT_SYMBOL_GPL vmlinux 0x8e2db255 irq_domain_alloc_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x8e4a466c __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0x8e621ff2 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x8ea330d6 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x8eb40938 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x8ee84aa8 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f124b86 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x8f46201b tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x8f65cbda do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f776272 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x8f828617 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x8f86b96f disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x8f896842 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x8f90f078 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x8f99aa47 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x8fbf28cc tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fe12937 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x8fe6cb62 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x8fef3b6c sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x8ff25841 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x8ffa00f6 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x902eb644 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x903912f5 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90482d23 vfs_getxattr +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 0x909f4e80 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a60338 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x90a7d313 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x90b0127d regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x90b560f8 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x90bf8634 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x90e1526f devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x90e59c41 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x91103b9e mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x911caa31 kvmppc_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x911dd2df skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x91310982 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x915c8366 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x9161b2fa i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9162df90 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x91690406 devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x917e9b98 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91901bd3 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x91b25dbc ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c9230e pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x91e3b929 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x91e54d43 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x921dc2bd spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x92370956 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x924a3045 of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x9282c8d4 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x929714a8 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92c57044 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x92da4999 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e175d2 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x92ec59a2 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93335cc5 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x93530b33 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x935e5c36 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x9365d415 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x936eecc1 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x938b3993 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x93a2cb47 reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x93bf2fcd __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x93d8b172 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x93eca6d3 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0x93f11575 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x93f351ff regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x93f8e5a0 trace_call_bpf +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 0x943a14d8 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x9441b0cd sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x9463179a fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x9481360a __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x9482b08f of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f07d06 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9517e32e wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9540eb34 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9562c292 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x9563084f proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x956633d3 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9573bb29 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95a57a75 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0x95b3b31f usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95e60761 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x95f6aae6 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x9607985e fsl_spi_cpm_reinit_txrx +EXPORT_SYMBOL_GPL vmlinux 0x9609470f gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x9617f06b rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9625eb64 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x9641e173 ip6_append_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 0x96656212 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x96706bd6 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x969e5336 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x96a4def8 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x96b62385 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x96b69fd2 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x96cfc1e7 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x96d853f6 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x96daaa5a pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x96f6cdb3 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x96f81725 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x9717138b of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x9725f4aa ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x97326022 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x97526315 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9767b890 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x97698cdc extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x9774023e of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x977542b2 dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x9789940d blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x9791876b fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0x97a5ee8c get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x97c7d825 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x9807d85e pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9833851a pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x983a762a tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x983c7494 rh_detach_region +EXPORT_SYMBOL_GPL vmlinux 0x983db043 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x986e453e adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9879c36b firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x9898cabc usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x98997a58 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98a37265 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98ae1509 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x98de8064 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x98ee92ab kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL vmlinux 0x98f01c5c __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x98f91a67 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x98fa1e20 dm_get_reserved_rq_based_ios +EXPORT_SYMBOL_GPL vmlinux 0x98fcf128 irq_work_queue_on +EXPORT_SYMBOL_GPL vmlinux 0x99046311 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x990adafa rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x99139d01 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x991c26e9 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x995ac914 add_to_page_cache_lru +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 0x9987586f relay_close +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99bfdfa6 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x99ce0592 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x99d463f4 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x99df53c7 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a9194d3 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9abf1aa5 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x9ac67d1b pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b23535c dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x9b3589fa serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x9b59eb36 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x9b6349c2 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x9ba78806 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x9ba9ac05 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x9bd3ad30 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x9bd6383d fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c29672a gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x9c3932c7 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x9c40efbd ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9c54c6de ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9c70b29f pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x9cbdf3d8 nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cdec71c i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x9cecdab6 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x9d0479a1 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x9d225f03 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0x9d7401c1 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9d8cf6bc phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e14e0b2 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e47a681 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x9e4b1978 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x9e6fd8c7 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9e93d422 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9f07cbde fsl_rio_mcheck_exception +EXPORT_SYMBOL_GPL vmlinux 0x9f0f83fd clk_hw_get_name +EXPORT_SYMBOL_GPL vmlinux 0x9f16bbbe bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x9f18b0f9 input_class +EXPORT_SYMBOL_GPL vmlinux 0x9f4b9ff1 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x9f6ad411 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x9fbc4e4e ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9fbe4b84 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x9fc1094d netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fd3d3b3 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x9fe90948 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ffdaacb inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xa002a25c blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa04296d3 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa04a0ca4 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xa05b8449 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa05f62a3 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xa064461c ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa09acdad kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xa09c9dac usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0b2e396 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0xa100bc03 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa107a087 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xa10814a4 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xa12480c5 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xa129dabb ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xa138c8a4 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xa187c1a4 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1b527f7 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xa1c4992f pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xa1e47274 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xa225510c list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xa22f5f15 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xa230f94d shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xa25e8e4e pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xa269defa usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa27ea238 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xa28aaf29 rh_create +EXPORT_SYMBOL_GPL vmlinux 0xa28beae1 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xa2952e8e pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2d6840c pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xa2e1a422 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xa2e84075 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xa307fbbe udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa30ade2f rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xa30d5773 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xa33228f9 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0xa33a6f24 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xa33acf94 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xa362e1b4 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa37acc4c inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0xa38602cd drain_workqueue +EXPORT_SYMBOL_GPL vmlinux 0xa38862c6 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xa389a49a profile_event_register +EXPORT_SYMBOL_GPL vmlinux 0xa38e7514 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa39024e3 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa39ec4cf usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xa3a04602 btree_geo64 +EXPORT_SYMBOL_GPL vmlinux 0xa3a2d9af walk_system_ram_range +EXPORT_SYMBOL_GPL vmlinux 0xa3a7a6c4 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3bc61b0 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xa3bdddbc cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xa3e2c592 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa400d052 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xa40a98e1 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa40dcc59 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xa43ed925 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa451404f scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4b584b1 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa4c28c76 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xa4cc74c6 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xa4fc2991 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xa4fe221b gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xa55631d9 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xa575b7e5 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xa57c6a34 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xa5833897 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa59f9406 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5ef5b01 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa5f0cfee kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa60188a7 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xa610a0e9 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa6330f52 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xa633f40c da903x_write +EXPORT_SYMBOL_GPL vmlinux 0xa6998693 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b2493d perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xa6b59403 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xa6d87070 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6e09bf1 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6e8b3a0 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa6f58cb0 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xa7013cea pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0xa709301c led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xa71cf830 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xa72f872d free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa7542dbf i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa76704f1 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xa7ad85cb sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xa7d857ed sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0xa7d9645c fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xa7e1cc8f crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xa7f29d60 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xa814cbd7 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xa81a50fb clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0xa81f9016 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa87634d9 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa8ad00e9 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xa8b2961c ping_close +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8f5e24f dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0xa8f88515 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0xa90cf143 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xa91603b1 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa92b1e52 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94a10ed get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xa94e03a9 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xa962524d __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xa97a47d9 regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xa97e6f31 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xa999e3f1 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa9a92c94 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9b462ae rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa9b6b8f7 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xa9cd2677 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xa9d2de14 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xa9da0cb6 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0xa9db78ad device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align +EXPORT_SYMBOL_GPL vmlinux 0xaa247af4 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xaa26c756 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa599dd0 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xaa6d9cab ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xaa7bd375 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0xaa872fc9 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xaa9b3698 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xaa9b704c rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xaa9e8e80 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xaaa11f67 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaade97cf ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xaafceccc napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab237071 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2e1ffc spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xab4685cc driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xab4d40da regulator_map_voltage_linear_range +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 0xab7a8a76 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xab7c7a66 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xab9046f3 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xab9b414b ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xac01f8d2 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xac309904 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xac423945 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xac4d4a69 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0xac55fbfc irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xac65a6d0 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xacbfe2e7 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xacdf5ab5 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xace3d5d2 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xace452e2 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacf92203 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xacfe4d0e __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xad070fec mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xad07641e phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xad0f7ca7 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xad27623b spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0xad36cd82 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xad37124c gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xad52fa11 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xad62e780 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xad73b1b0 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xad956788 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xadb61090 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xadbf125c thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadda2772 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadf83561 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xadf969cc ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xae0795ff thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xae0c85d3 inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xae107aae inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xae364241 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xae3bd7b0 of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0xae413531 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xae529f0e ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xae5673da platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7fb328 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae88df91 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xae8f4d1a ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xae928d21 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xaea1fd18 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0xaebb2ffc exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xaebc7937 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0xaebcd4f6 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0xaec2d37d ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xaec407ca tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xaed0fd8c wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0xaf1ff9eb blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xaf599537 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xaf6df42c platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xaf743875 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xafb2f0d6 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xafbcdaf7 nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xafcc5fd8 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb0349785 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb0471e3b regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xb06251fa stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xb0678169 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xb07258ad edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb07e1371 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xb0b18567 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0bc083e blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0xb0ecc12a crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb0f78eab dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xb1203ee0 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xb1381505 bpf_prog_alloc +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 0xb1961b81 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb1a35112 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xb1a64079 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1a7d015 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b0d06e __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c06487 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1d34189 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1eb0258 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0xb1f4a0f0 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xb1f60208 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xb201394c nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb2019834 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xb216ef71 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2240e50 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb26ac6fa of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xb2736061 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xb2815e0c vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xb2af2538 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xb2bed9df spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xb2c1554b of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0xb319054e posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xb3297f21 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xb347e395 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xb37a4930 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xb3b45844 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xb3c25303 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb42fa059 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xb44d223a perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xb45f1978 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xb46088cd regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xb483d9df pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb491b6f8 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xb4984dde input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c421e7 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0xb4d5d002 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb50521f3 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52335b2 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xb535b2e8 devfreq_event_remove_edev +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 0xb562dece inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb577a68c pci_cfg_access_trylock +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 0xb5b2c427 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb5b6056a component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xb5c6d211 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xb5c7db9e serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5ebb1cd of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb5ee637e sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb5f0f370 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5ff1d41 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb60525c7 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb60d5fc2 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xb618240a rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xb6232933 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb632a515 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xb649cd46 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xb65494b6 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb6580ee7 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0xb6631256 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0xb6669a2f debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xb6826674 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0xb68ccbd7 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xb6ad7a1a input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6d07d43 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xb6d46c80 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb6e7abe6 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb70841d6 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xb708918a __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb712e971 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb74cb9ad crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xb769bf08 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb76cbb81 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xb773e902 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xb77790d6 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xb7788b94 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb78abe3d __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xb78cbd03 wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +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 0xb84b5f0d cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xb84c99ed pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xb85d00e1 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb891f45c dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xb8b70411 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0xb8b78b7b clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xb8c95ecf regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d12ff5 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xb8d96efa regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb8e3c121 clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb916bba4 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb9248aec spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xb95201a9 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xb96b3bc6 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xb96fc917 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0xb986e900 generic_fh_to_parent +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 0xb9d4cf3a blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xb9f4f95d power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xb9fd5598 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xba0d9503 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba2a2270 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba42f574 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xba64cb32 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xba72d855 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xbaa0fa33 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xbaa76eb4 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xbaaecb31 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbae11a48 of_mpc8xxx_spi_probe +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 0xbb18bbc3 of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0xbb1a4420 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbb81a071 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xbb83f990 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xbb884e42 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbeb5913 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xbbfce585 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0xbc3211ee __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xbc34064e fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc566925 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xbc61aa00 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc6c3b6e __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0xbc78ebc2 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xbc81d9cb rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbc8592ac ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xbc962b8a powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbfcad2 of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0xbcc70d0e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xbcda37b5 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xbd186228 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbd287dea kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xbd2ee9df regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd80072a regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbdab78fc stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xbdb82366 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0xbdb91828 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xbdbb2c45 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xbdbd1aa1 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xbdd26aae ata_dummy_port_ops +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 0xbdf4e301 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xbe0e044a mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe216863 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xbe25273b of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xbe2809bd crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xbe29e690 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xbe5dc529 ehci_adjust_port_wakeup_flags +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 0xbea62925 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xbec1c837 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbee28308 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbef46ea2 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xbefc333c evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf058d3e scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xbf09c154 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xbf1a6117 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf430a3c ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xbf6cd0db of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0xbf8520e4 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xbf906839 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xbf9407e9 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf9851a1 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xbf9abb54 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xbfa3e716 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xbfa4d4e1 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xbfac6641 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfdb36db rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfeeb334 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0xc00131cf visitor64 +EXPORT_SYMBOL_GPL vmlinux 0xc006b4e4 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc0092f37 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xc0224a2f of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc03fdfa7 fsl_spi_cpm_bufs_complete +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc07032a8 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xc0713ca2 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xc0794479 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08a70b0 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xc099936e usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xc09dfeb2 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc09f7b7e swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c085ee kvm_release_page_clean +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 0xc0f96fce posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xc1064ed9 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xc1270cb0 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0xc134c852 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xc148dc77 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xc159699e __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0xc1598d74 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc1b18274 component_add +EXPORT_SYMBOL_GPL vmlinux 0xc1bace4d devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xc1ccff15 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xc1d3c27e irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1e183d3 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xc1e55092 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xc1e9a9e7 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc2304c8e regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc2352d0f exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xc24dd393 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc28a2be4 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xc299b454 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0xc29a7f45 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xc2beeb56 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2ca8c29 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc2f56312 crypto_ahash_walk_first +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 0xc3966f4e dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc3972393 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3cf693d nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xc4220282 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc431fad9 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc4371236 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc473ac15 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xc48aa3cb user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4a20df5 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xc4b3fdde regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xc4c86441 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0xc4c94ad5 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d3018a wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xc4d4b202 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc4dffd12 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc4f68813 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc507f06a of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xc51baf7a __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xc525d5e7 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0xc5330107 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xc535c0dc wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xc537aeb6 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc55bf400 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xc5662bee splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xc569d8ce __clk_get_name +EXPORT_SYMBOL_GPL vmlinux 0xc569fde4 ehci_handshake +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 0xc5be5715 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xc5cb72f5 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xc5cdb4a9 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e0bd1f ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xc5ea9654 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc619cf53 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xc61d0475 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc633a823 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc6551817 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc65c668f crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc677a5f5 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xc689171f pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69d2438 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6be3d21 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xc6e32dde crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc6f90d6b virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xc70ab9ee gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc72f12da crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xc738d44e arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xc741cde3 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xc749b5d3 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xc74ec55a cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xc756dd20 ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xc757a085 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc770b463 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xc7850b75 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7a9e83c ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xc7aabb3a usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0xc7af0e90 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xc7b356cf blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc828ef4e tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc86ed6f1 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc88b5044 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xc8933b42 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8af3301 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xc8af40a3 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xc8b8e5df device_create +EXPORT_SYMBOL_GPL vmlinux 0xc8c15b64 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xc8d599c8 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xc8d91cfe task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e5fbbe rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xc8ee8b47 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xc91ffcb2 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xc92b6a82 to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xc946f754 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc96fac81 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xc98ccf0c pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xc98d9fa4 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc992e2bc kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xc9995f2f get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xc9c810cf relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xc9cc42b1 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca09be6e kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0xca15b250 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xca2b0076 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0xca3bb3b2 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xca3c55e0 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xca52d68a sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0xca5e99b8 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xca6543e2 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xca75b78a of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xca79ffa7 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcaba809c bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcaf14f46 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xcb158b16 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1c7575 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0xcb24381c lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb4a1708 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xcb576a4a pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb70aa42 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xcb77d046 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xcb7d187d regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xcba50d02 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0xcbaa5cb4 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xcbbcfb32 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0xcbdebeb4 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcc0942c2 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc291ac9 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xcc2b4a25 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcc35f2ea sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcc38fe15 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcc410a3e tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL vmlinux 0xcc46df0b task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xcc4a4835 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xcc6978a0 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc6ea5ed spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xcc800168 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8d2679 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xccc9fbca crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccf0dc70 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xcd0e7f07 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xcd17021c regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xcd588bc0 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xcd6492ab trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xcd6c0eef led_classdev_resume +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 0xcda02261 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xcda3e845 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xcda4fb05 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xcda850b9 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdb97ff2 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0xcdbfd8fb ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xcdc01f08 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdd01807 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xcdf42cb5 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xce04d50e devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xce44216d of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6b4a3f __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce6e3ebd __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xce793c3e crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xce89e342 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0xce95dd4b tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xcea7c9a7 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xceaabc4a ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xceff54ac tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xcf175674 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xcf2bb580 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xcf378e49 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf825d7b wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcf867ad2 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xcf91c811 device_del +EXPORT_SYMBOL_GPL vmlinux 0xcfaba83b dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfba3b5b securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfd3221a clkdev_create +EXPORT_SYMBOL_GPL vmlinux 0xcfd83072 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xcfe43f18 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcffbf7b1 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xd01b86ba crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xd022d1f6 pci_try_reset_slot +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 0xd06f9662 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0xd07a2135 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd086eaa0 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xd09ecb09 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd0bf78b2 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c16c2d shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xd0cf0ae3 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xd0df8ed5 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xd0f65083 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xd117403e kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0xd11d8c7a da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xd130d484 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd14b78b7 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xd157e79d flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1942fdd usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xd1ca106c ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1f92306 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xd1fc6b5f kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd20301ae regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd20f10f7 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xd211844d virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd23208cd rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd24236fa nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xd2443361 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xd25c308a cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2b48c72 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xd2d5b79d regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e80281 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd3002db8 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xd304f2ce phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xd30f6ccd of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xd3615e8e tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xd37c5710 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0xd382c64e cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3be50d2 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xd3cde847 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44e32d3 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xd45291f0 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0xd4639a39 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xd47580a3 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xd479a0cf regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd4817b63 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xd48d2bb0 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd4aba29a blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4b63771 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c3eb8d i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xd51d4915 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xd528a83c __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd5409ef1 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xd572be6c dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xd57620a6 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xd59fe323 smpboot_unregister_percpu_thread +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 0xd5d36841 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd6012448 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xd606f949 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd612f6dd blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xd6174f09 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xd619bb44 subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd62ac9ba lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xd62f7743 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd63aa5eb blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xd6416bb4 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd648561b tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xd64f0c6c blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xd657dc79 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0xd66b529d __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xd66c2ecb of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6773772 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xd6843ddf kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0xd68c4aa4 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd6c3bab5 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd70434fa regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd719922f kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xd7247da2 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd7378795 usb_unlocked_disable_lpm +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 0xd79b62f4 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xd7a58ff4 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0xd7d287a4 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0xd7d3b51b spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xd7d66529 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7ec547a bus_find_device +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 0xd8426b2c clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0xd854fb8f wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0xd86d3c14 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd880e9de wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xd8aa93f3 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xd8e570e2 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xd8eec5e5 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd8f33e3b usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd8fd5f5f security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xd922e996 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xd93791d6 wait_for_stable_page +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 0xd988891a dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd98f9abe usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xd9ab23a3 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xd9be388f led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xd9d8593a pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xd9dbb01e kvmppc_st +EXPORT_SYMBOL_GPL vmlinux 0xd9e53e0f ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xd9f01c19 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xd9f81993 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda2a312a __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0xda4fbec7 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0xdab7383d kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL vmlinux 0xdad73743 skb_splice_bits +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 0xdb07a009 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb169ece virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xdb17bf2b sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0xdb2e1eec gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xdb328d8c spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xdb36f61b crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb4946a2 kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xdb50cb7c swiotlb_unmap_page +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 0xdbb85270 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xdbbde13e pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xdbd794de usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdbdfe20f __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xdbf32951 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfe4002 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xdc1fa7b8 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xdc23c6e4 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xdc2a06f8 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xdc49f4aa tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xdc748827 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xdc796a5a pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc91916f kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcdbab08 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xdcde52d5 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xdd0d9785 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xdd0dfb54 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xdd0e8925 sysfs_create_files +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 0xdd57ad5d sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd7deb94 dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0xdd867912 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xddbe1911 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddd783a3 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0xddd91f74 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xde086fef nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xde195745 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde4b7c8e virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xde4d9d7b dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xde82191b regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xde8258da __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xde84fcf9 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdeaf4fed thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xdebd1991 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xded67725 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0xdedbeb28 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xdef0b72c __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1c74ab unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xdf1dea2b of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xdf344af2 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdf38220c rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xdf4796dd devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xdf6e6633 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xdf80e79e inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xdf9244b1 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xdfb1f3d3 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xdfe86541 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xdff82105 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00edc43 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe037603c clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe05a2777 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b70927 fsl_spi_cpm_free +EXPORT_SYMBOL_GPL vmlinux 0xe0d78c89 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0xe0def0ae regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe1289f11 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xe12e33c8 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xe1419a78 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xe15da232 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe186a7e7 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xe1938f35 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xe19c18b2 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe19eb1c4 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe1adb144 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xe1b23ae4 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xe1bd0468 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1db5a06 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe22d04a1 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xe232e664 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xe2332c12 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xe239924c pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe256995b blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xe26c0a2c rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe291533c yield_to +EXPORT_SYMBOL_GPL vmlinux 0xe2c00040 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xe2cdbe1b gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xe2e8c1f3 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xe2f5dcd4 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30bab7b ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xe326f05c rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe33a2aca gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xe359dc20 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe362b409 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe363180f pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0xe36ed0db user_describe +EXPORT_SYMBOL_GPL vmlinux 0xe37b5d40 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xe37daf17 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xe386cae2 dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xe38e7d50 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xe3a23252 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0xe411597b scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe437d3b6 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0xe43b90af ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xe466bbc4 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe48253a9 xhci_suspend +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 0xe4e639ae debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xe4ed5410 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0xe4f2558e usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0xe4f69d80 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xe5117b05 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe52a3eca kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xe55d9d78 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59cc56d cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xe5b7774e rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe5bfa785 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe5ccadd5 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xe5e649e7 clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0xe600183d bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xe6019d57 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xe607a84c dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xe60a50fc tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xe60afad5 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xe62cc027 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0xe62eca60 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe663bdff dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xe6649de5 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xe69c270f led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6c68470 regmap_can_raw_write +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 0xe6f92d7b nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xe74906e2 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe75f841a pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe7756b36 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7888a27 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe79780e7 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe7b23a6c usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xe7b42281 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xe7c9fe84 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0xe7cb970f tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0xe7cd9bc6 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80a2a3e sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe8305e07 of_get_nand_on_flash_bbt +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 0xe86a2b54 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xe86c46bf ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xe86c5864 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xe87b4ec5 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe88ae287 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xe8b1ed6c crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xe8b28fc7 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0xe8cd5eed ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe8d8f329 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94142d0 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe964084a virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xe972714d ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xe9c7848b netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d4d2dd tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xea110f6a ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea17f140 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xea2668c9 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xea38ff49 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea4418d3 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xea475ebe spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xea85366c sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaad31d0 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xead75d58 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xead8d34f devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0xeaf53e0f fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xeb0580a3 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xeb1de29b of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0xeb2c8f82 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xeb47b116 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0xeb4fe14f arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xeb5450c9 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xeb5cf85a io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xeb6056a1 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xeb6e678d regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb99562b skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xeb9abbee ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xebb3592b snmp_get_cpu_field64 +EXPORT_SYMBOL_GPL vmlinux 0xebd33c15 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xebd861a1 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xebe986e0 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xebe9c4bf cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf7a97b fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec247dc5 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2e104c irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0xec42bf00 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xec54661a fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xec7daf6b regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xecb7e729 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xece2273a mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed425506 sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xed448bd7 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xed4fc273 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xed501e55 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xed5973f6 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xed5b17ac skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xed6219dd wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xedc07bfc sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xedc249f1 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xedc48146 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xedcde756 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xedd15e5f security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xede901d0 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xedfb491b usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xee0ac1e2 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xee203f86 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xee26fb2e cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xee3c40d0 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xee45ab29 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xeea0a673 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xeea214de input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xeeddb31c __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xeeeee1a6 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef476992 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xef478d55 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xef552873 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xef60309a irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef703f12 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa304ae pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xefd8a7fa pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xeff537c3 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xeff7e8c8 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL vmlinux 0xefff2722 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xf022a74d regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf03540c5 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf084acd2 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xf09a6ee8 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xf0a06d7c __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf114fb5a ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf134bf1e regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xf14f4462 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xf15373d9 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xf156cec3 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf15fd19a virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xf17dce5a nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf186ee62 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xf189a4e7 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xf18daf8f reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xf197d17c arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xf1a523a8 put_pid_ns +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 0xf1b75e95 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xf1d3f0ea regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0xf1f9e6d9 ref_module +EXPORT_SYMBOL_GPL vmlinux 0xf1fa7c2c usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf205e57d usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0xf2107656 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xf215a2ea __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xf217bb20 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf221a632 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xf239553d __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xf26dc82a usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf278e3f5 of_css +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2a8c5c4 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2c594fb ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xf2ce07c6 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xf2cecce4 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0xf2cfa4c3 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xf2f0cc59 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xf2f798f0 power_supply_property_is_writeable +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 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 0xf326f50d crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xf330ab26 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf335e38a dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xf345fbb8 dev_pm_opp_of_cpumask_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xf34a661d ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xf36d6eab tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3870428 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0xf3a8823c regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0xf3aa27bc devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3cdf759 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xf3e3ee22 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf403c112 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xf413c9d1 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xf4182bad ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4b024b3 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf4b333d1 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xf4bc0159 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL vmlinux 0xf4e4aa26 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf4e68a5c device_add +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5163f8c pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0xf5319b59 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf553f670 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xf592bf9a usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5ba3046 crypto_lookup_skcipher +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 0xf5fde9bc ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf6035d82 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xf61ce922 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xf61e1ca8 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xf624f8d8 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf64293b1 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf667dad7 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xf66ac94d usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xf672ca97 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xf68c5416 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xf6909249 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xf6bbd7d5 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf71fa338 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf725ce1a pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xf72b1cae fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xf750b6df sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xf75a5d55 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xf773215c driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf776265f tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xf77cff44 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0xf77d91d8 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0xf77e9b40 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xf7825490 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xf783a714 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xf7900659 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xf7a849fe devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xf7bb97a7 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xf806e439 serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xf82545f9 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf834b509 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf84bd8f8 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xf84c6a8b pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xf87f3366 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf8a5db67 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xf8d23646 arizona_clk32k_disable +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 0xf9077d17 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xf9078815 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xf91eac65 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf94118ec device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf95dde91 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xf96f2d55 kvmppc_hv_ops +EXPORT_SYMBOL_GPL vmlinux 0xf9745ec0 regulator_unregister_notifier +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 0xf9c6c782 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9e4bea9 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xf9e812d0 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xfa161d03 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa3f091d tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xfa65f907 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfabb0d41 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xfac54af8 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xfac585f3 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xfacf56ca register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfaf6a598 get_device +EXPORT_SYMBOL_GPL vmlinux 0xfb11e8fa pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xfb2d2059 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xfb2f06d4 vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb4567a0 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb83db03 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfba24799 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc0b6f9 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xfbc92e14 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xfbd02813 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xfbd3689f ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xfbd9d3ae i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xfbe86944 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc16c4d6 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xfc1dd1cc scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xfc24e9db nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xfc2fcfa1 devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xfc3fd913 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xfc96cc91 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xfca37152 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfcc2f0a0 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xfcc3bca8 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xfcf146ed dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xfd0f5c1d usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xfd3510a6 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd364fe0 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xfd3f59e5 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xfd474fc2 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xfd5ac63f file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd8d8fae fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xfda0bff7 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xfdc568bf pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfdceddeb blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xfdd9e083 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfde4c843 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xfdfb2510 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xfdfc5a78 thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfe199be0 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0xfe3c2e81 cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xfe5c924a devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xfe6c5f02 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xfe92bedb driver_find +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfea4d414 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0xfeb23285 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0xfebfeddd __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfedef00b regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xfef3629f tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0xfef5243a set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xfef6a042 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff037a0d dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff1b4ec1 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xff288d41 pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff518df5 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff84bcbd mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xff8862d7 rh_get_stats +EXPORT_SYMBOL_GPL vmlinux 0xff9f3e54 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0xffad61f1 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xffaf6c5a usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xffb5b478 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xffb5f22c dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffba4dfb clk_fixed_rate_ops +EXPORT_SYMBOL_GPL vmlinux 0xffba644a srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xffbd2fcf shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0xffc174c3 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xffc21197 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xffc6a4ac devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xffdc8cb6 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xffde064f of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0xffe4d1c2 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xffe66730 wm831x_bulk_read only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc-e500mc.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/powerpc/powerpc-e500mc.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc-e500mc.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/powerpc/powerpc-e500mc.modules @@ -0,0 +1,4332 @@ +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 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc-smp +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/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 0x1981e99d suni_init +EXPORT_SYMBOL drivers/atm/uPD98402 0x88a4a736 uPD98402_init +EXPORT_SYMBOL drivers/bcma/bcma 0xd09c2386 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xd7cb0c8e 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 0x00cf00c0 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x051bb2da pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x0bf66ff4 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x43b8304a pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x5e36099a pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0xa6bf0d3b pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xabe00fbf pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xb9005ba8 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xc0a7c5ba paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xcbb9727f pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xda5a0509 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0xe0292292 pi_read_regr +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x85cfb9cd 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 0x5fbeec6c ipmi_smi_add_proc_entry +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 0x694afad3 ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7545c6c7 ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x78fd36e7 ipmi_request_supply_msgs +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x7df5e66b 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 0xa96eff37 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 0x0406f503 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x15394cc3 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x158fbd3e st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7657d7cb st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x90c8a1b5 xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x93531cc8 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb30864ed xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x089cf28a dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3275040a dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x35f3e79d dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x4f7db64d dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x812d421f dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x989aabb2 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/edac/edac_core 0x7c2648eb edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x01971704 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04dd92ce fw_core_add_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ba84b42 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x119bae3b fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16dc5a5a fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x17928747 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1bdf4206 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x23c020f3 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x305fb1e1 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x31a7012d fw_card_initialize +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 0x5afb86de fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5b3285ed fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x629080ee fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x65c9438b fw_csr_iterator_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x715404e7 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7b546bf7 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7d3eb1e2 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e431b14 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x810fabec fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8161876a fw_schedule_bus_reset +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 0x9113b036 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x95e21d2b fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xaf622326 fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb1c1b499 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbdd0c706 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbf04969d fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc9025e97 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe89146d7 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf1d9d200 fw_iso_resource_manage +EXPORT_SYMBOL drivers/fmc/fmc 0x110b637d fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x2b229088 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x2e3ba226 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x335a938f fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x357e659f fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x35a0b86f fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x44314e08 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x5539df71 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x614a9ff1 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x866cc00d fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xc410dcb6 fmc_device_unregister_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x000db4e3 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0081d023 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x00ccfcac drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x013ce555 drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01d13940 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x02e9b7ba drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x03db9e77 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x046937c9 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06e332c4 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x074680d1 drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0843a1c5 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08522d77 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09ef30ef drm_atomic_get_crtc_state +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 0x0b882f1b drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d5db08e drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dc88d8c drm_agp_alloc +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 0x100309a7 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x10bcf9ac drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x117b932d drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1180fec6 drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x118f8b79 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x121d8c5f drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x149848b5 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b17678 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15d2dfe1 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1677eb40 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1701b7de drm_gem_get_pages +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 0x1c09d5f1 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d462a8e drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d54a308 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da56639 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1db38a41 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e990a83 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1eaaf79f drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f308e08 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2200b224 drm_gem_mmap_obj +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 0x22eb1423 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x231a277d drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x234ba66e drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x252c1cd4 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25335d79 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2573e74b drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26bcadb9 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2708d7f7 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2832a2a4 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28e2603a drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c4ce01a drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2c7dc76d drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cc72ff2 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dab128c drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2df63f39 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e54d16e drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eb52bad drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ed7a7d9 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f638a7f drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x305cd7e2 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3068ecad drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x30d8f5c3 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x337e96f6 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346127a7 drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x368555e2 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37634a3e drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x383b50d0 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3895411d drm_mode_crtc_set_gamma_size +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 0x398affd0 drm_platform_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 0x3c06df63 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c153440 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cdad2da drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d8283c8 drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d96bb7e drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x423534f7 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42c55ffe drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x454b8fc3 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45c097df drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45ca06db drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4626baed drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46333c34 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47476291 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4944e841 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49f8f2bb drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b7c0443 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b959f33 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dbbe614 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dbcd327 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dfc5699 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f0b7c51 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f732857 drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5008d227 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5074a4c9 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x517137b1 drm_mode_prune_invalid +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 0x531f6ea2 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x548c120f drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55ff2fc7 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56438ce1 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5655d9d0 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c06a60 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5825d152 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5860c658 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x599c4554 drm_agp_enable +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 0x5bc4af0e drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cc5188d drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x614ad9bc drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61e8e87c drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61eacddb drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62990ee3 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x662e09ab drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66e13c6b drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66ed4f81 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6751ad92 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6883cec1 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6900d335 drm_rect_clip_scaled +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c85dc72 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ec3154f drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f88d67d drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70291e16 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70b1c2e3 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70e79368 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72f47951 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x748b5f5f drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x753de28b drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75e91f43 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76855cd5 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76cc3aa4 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x773ee2af drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x77eb10f5 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7852d13e drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cbc6967 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d260f04 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d2bba24 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d483bb3 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e0bbfaf drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e5e85ad drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7e70704b drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7fa4ceb1 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80a2c0cd drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80c5a3d5 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8123d7d9 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x814c0848 drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x81e29edd drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x832f2384 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85c9e3ce drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x864dd6af drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8654cff6 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x865ecb31 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86dba0c7 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x881743c5 drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x895798c5 drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8aed0ed7 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b2e31c6 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b8cb859 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8bdfba47 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d765d88 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8dedc4d4 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ef1c417 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8faafdbb drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x904b7e97 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90baa4e7 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x91210474 drm_bridge_mode_fixup +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 0x92bf4d47 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93340f20 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x936daaac drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x93d01f8f drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x941d021d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95b28dca drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x965bf6b1 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96a286fb drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x974b50b1 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9813217c drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9822aa3f drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a0f970e drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a3fa9e8 drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d975060 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9f2be77e drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fabae40 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9fdbe70f drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa02c2f38 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ddc5b4 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0e9dab7 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ec3961 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1544d91 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2389ea4 drm_modeset_backoff_interruptible +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 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa52f53ca drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5d984e1 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5dcdcfc drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5fb179b drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa86e349e drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa88bd992 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9395e8f drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa2ea4a7 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa50b6f5 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaae415e8 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xab48cb0a drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad374f99 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad87e1d3 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xade729a1 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xafcf7876 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb083eaa9 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2aee2f9 drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3144acb drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb31593a2 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3280583 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb45b83f4 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb56e2f83 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7e46d84 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7efb076 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb995f71b drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba2efa00 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbab25184 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbdf7779 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbed1bce drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc0a5fcc drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbc9fea59 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbcdb5ed9 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd12a428 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbd5d6163 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe16dc55 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe4cd2d7 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe501d68 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfc38c86 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbfe339f4 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbffe13e1 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc159f465 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc26559c5 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc315f734 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5f6d106 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc725b715 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8f41f86 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xca1dc54f drm_atomic_plane_set_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 0xcaa648e2 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcbed8da0 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdf78520 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce296171 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf48839c drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfefdd2f drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd04096ab drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd075c284 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd0b9a2c8 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2d04896 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd337ec1d drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4c2fb0f drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd4cde23d drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6aaded2 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d50220 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6f9a56c drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7762ca7 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8fa5e82 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9273def drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd952e09d drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd956df4d drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd962199b drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd96c3997 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda4fb632 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbde9e18 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc18e493 drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdc7ad9d5 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdda9a88a drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xddb1e06c drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde3c3d3c drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf055b87 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf4ec6d3 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe16bf36d drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe219cdf2 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe321fab9 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6724009 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7a52dd5 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe993e08e drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb87c5ef drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed0ccceb drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed7194d3 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf096fed1 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0cb7da0 drm_panel_attach +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 0xf471c906 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6a22885 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf7e70ee1 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8767d66 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf956ff2f drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf99d852c drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb3da6ad drm_crtc_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 0xfe160bc5 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff226d29 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x018f7500 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x02595a58 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x031c5490 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x03f33c90 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04c8e37b drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x05787611 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06d13d9a drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x08851c7b drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x094ad484 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0976f290 __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 0x0a4f5340 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cb5e693 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0cff2c2b drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10d7b035 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 0x16e91115 drm_dp_aux_dev_exit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x17539a37 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1881ccee drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x194e780c drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19fcd0ca drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b27f009 drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d8fd681 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x201dd4c2 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x23157881 __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x233c0b71 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2393d395 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2742ce4f drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d247418 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d8e1279 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31f78bba drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3305aa72 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x36e05eb0 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b580063 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3bc1a239 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3cc67c38 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d447463 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3d9534a0 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e68d936 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f22454a drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3f964b1b drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x420320ed drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47ad72b9 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x494ea035 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x49fb5ebc drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d57907a drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4d5a489e __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e12b0fe drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x522a28f3 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57a2c2b3 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c92e200 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d2a824a __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d5bf81b drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e77ecf6 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60c09b5b drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x616ed6d0 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67637b78 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x688bfb16 drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6b0d869b drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c58c2cb drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c8682e3 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6cb7f0fa drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6eed05eb drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fa75e92 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ff5be0c drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x708ecd80 drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x711a004a drm_dp_link_rate_to_bw_code +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x712a1f42 drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7167ebad drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7235aa8a drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x750a377c drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76b23c4f drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x76ce8e28 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7d9e2e4c drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7ea2f83a drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80458f9f drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x80a3d1e9 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8136943b drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8218301b drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x821b60f1 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x822ccad5 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 0x86dcee17 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x89322570 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e3393a8 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f634b1c drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9163dd04 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9172a333 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x959f5454 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x96aab502 drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ac3e763 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9d7f3790 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9ffec727 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3246529 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa3b6a84c drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4950229 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa547c8d9 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa74f07ee drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7de0e09 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa852b8d9 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8cdac19 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa949f5cd __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaece3ea9 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb1efed7d drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5d161e8 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb7139287 drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb8b37648 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xba8cc234 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbaf3bc7e drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc57070a drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc920dfd drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd81d4ad drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc0694e8a drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc26ba785 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc2f8e331 drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc73ce615 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc79b4f2a drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca513274 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb78ffe2 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xccba04c6 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xce431700 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 0xd051ffc5 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd295e9c8 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd36d293d __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd6546daa drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a5095a drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda177363 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdec4ae13 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0bea7e5 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4773724 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7725c96 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe867a517 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec3de0db drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xec718085 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xef70670d drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf400d274 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4a212fd drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf60d479f drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf6f3036e drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf755a599 drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf8f376cd drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfad51b96 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfbb470f9 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd2f352f drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd4e2508 drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfedcb8ba drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff6ea39e drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x001bce2c ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10032a78 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132b05be ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1c0b54d9 ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f35feab ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x202fda8c ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x21172ddf ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x267819b3 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x273041b8 ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2a633b95 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30006d4a ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x33d273ef ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36656837 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37a6ffa8 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bf67c2c ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x425f4903 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x44717edd ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x452d0401 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f1fc080 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fdc94cf ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x59964119 ttm_bo_wait +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 0x6343121a ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x664d7f62 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x67b1d568 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6ca702b2 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6e44da8b ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x74b442d3 ttm_dma_tt_init +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 0x8126a3c1 ttm_bo_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 0x89f43de2 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8a6e17d8 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x910b4a07 ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x938db532 ttm_bo_kunmap +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 0x9f388594 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9fc981dc ttm_tt_set_placement_caching +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 0xadcef337 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb089cd7b ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb19cf4e3 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb231b2da ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb56cb445 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb5e3e748 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb7770802 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc181a453 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc38f5d3b ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc42970ee ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc554a204 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc927c5ab ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xca51fb64 ttm_agp_tt_populate +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 0xe6356983 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xea0823d2 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb7fb853 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedbd3bac ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf05ceada ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf34d0d6a ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf425b248 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf4d85a52 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf51785e8 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf6163d74 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf848ca65 ttm_mem_global_free +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 0x15172544 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x351a5ce4 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x595a31c7 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x4db883ea i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xde0f1f79 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x5e315a84 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1410a539 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2a442c6b mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3466c0d0 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4b6631f2 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x73a927fe mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7b3e6862 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8628dbb0 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x930671b8 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x95dc3632 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xa58b9bdd mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb641b82f mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xcad7f6b8 mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd28e9537 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd8f92173 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe528412c mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xeda1ed19 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3c361cd5 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xe4a241d0 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc4237a2a iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xe4bfdadf iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x15a70727 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x46f8c822 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x79cc550d devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xc265cff5 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x21ba5c14 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2e09982c hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x30faa8a5 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x31a444c1 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x40938dca hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x50277537 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-trigger 0x39f1c889 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x46665c16 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x6508a56f hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xeb28358a 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 0x8142892e ms_sensors_convert_and_read +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa08a01af ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa4e9ed2d ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb3faf126 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbc38679a ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xc22e2f22 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 0xcb5efcbf ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd1993845 ms_sensors_read_serial +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xd63056bf ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xed1b10ad ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0219fedc ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x317f3f88 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6b986ccd ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6e5a6dea ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc249e97d ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x74313e9c ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x91e6e3f7 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x9b8eddcf 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 0x17473d8a st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x17a5d33f st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x199ab84d st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1e2ab49a st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x285c323f st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x28956edc st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5b4a36ca st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x602314b9 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x62a0acf6 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6a45df90 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6a636dea st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8f3b44c3 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x99e826b2 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9b4dead0 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd1a56a87 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe862e5ad st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf88cc645 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4e16d875 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xea4950f0 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xf0b32ff5 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x8f758005 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xf3518a49 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xc7548e7a hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x5844766c adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xf804fe17 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x31f0de65 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x469e82f0 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x4b83c015 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x4e0aac05 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x6d055d93 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x789e48e2 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x7af8f1aa iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x85cd97fa iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x9d639d82 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xb7887461 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xbc34dbd7 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xc7bbc880 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xdb018c97 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xdec14572 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe2b25bba iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xe8a67057 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0xe8fb8ccf iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x2d1ed63a iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xb542d75f iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xbf799543 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xce7ad424 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x6d5459c2 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x4f430767 st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xc1bee66b 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 0x0eda381c 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 0xa419fbd2 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xba6ff377 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xdcbf7acb rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x2919dd5d cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41457471 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4818897c ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5be72bd4 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7a7f3243 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8111d2ab ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x89b7b348 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9a266f58 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x9b5c30fd ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb17d1c74 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb6ed0953 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb7733d60 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb9287053 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc0f7f37f ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc9ada987 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcb19e9f2 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcf177b6b ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfa166e96 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04eb9147 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05b84bcb ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x071690f8 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0778d28f ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x09af2d11 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0f252aa7 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0fd62364 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x111eebcd ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13a691b9 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x149e0f09 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1979041c ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b35badb ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1cc0eeb6 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f42d309 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1f928da7 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26efc815 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x271046be ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2801c47e ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2af4b9f8 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2cb000d9 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2f782e95 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x307468aa ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x35983b9f ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cdb4941 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d32a72e ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4106a88d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x45105e30 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x48392bff ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4873e193 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x488ba7e3 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49e671c9 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5061796e ib_query_port +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 0x5360ea15 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x53b372c9 ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5611cdea rdma_node_get_transport +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x57b83a21 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x580148bb ib_modify_qp_is_ok +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5945b651 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a81cc98 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5cb6c882 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e5c4446 ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ff4ef18 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6b612758 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ea6d92 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a585541 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fab0169 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81ad8cb0 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85221427 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8813cc9b ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x898f6b80 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8af9763a ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b23b45e ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ee08c05 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ff4f0b4 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x927b8444 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93209815 ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93b6aafd ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x94e3ccea ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x974f88c0 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9e2ddbbd ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9ed54078 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa1ced60e ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa2c09f8a ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa49073fc ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa84bca52 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab59e0ff ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xac4bd80a ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb1a312e1 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2c69dfe ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb7d4675f ib_create_fmr_pool +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 0xc2a576ee ib_map_mr_sg +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 0xcacb104d ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb92cb7a ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcc7adb78 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd009af05 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd320459e ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd7f4d9e4 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd91eb81b ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbf3fe32 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecef7f0f ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed483fa4 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf00df78d ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf04b7888 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf553a433 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf730d87f ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb913cfe ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x043276c4 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x19d900a6 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x21823e79 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x3984b297 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x41801a39 ib_cancel_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 0x7e80793e ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9198afa4 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x92277047 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x93d2e707 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9f048fdc ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc9125ec3 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xda5fe52c ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xeb4f4310 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2f75883a ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x306cd373 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x3d13de2c ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x77229172 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x87a0b22d ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x96efeb6b ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9c958a12 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9ff81ad6 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 0xf1b0e6d6 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x0f4c6697 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 0xa62f84bf 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 0x0b4b7266 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0b9391e9 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x118fa452 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1ad9ec3f iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x22d8d772 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5cced198 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 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 0x9cb9e49d iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc052d793 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc163a0f8 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xca71baca iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcf169814 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd660c78b iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd823b7fb iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd993234f iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xddca2e2f iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x019d9605 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x07ed04f8 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0f41d355 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1c7014fa rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2c8a81a3 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x402170d2 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x53c000eb rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5496a925 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5bb59940 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x63af3c55 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6bae5bb7 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7064265d rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x78ff08e5 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7c240456 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x804081e8 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf71f8d5 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd44a066a rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe1c5da56 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9806059 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf113d6f8 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf52b0154 rdma_set_afonly +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1002c5b5 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1a33c117 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x24f2c394 gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x4858d96d gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8d12096a __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x99e82839 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0xa233a05f gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe30d7341 gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0xe83ca7e2 __gameport_register_port +EXPORT_SYMBOL drivers/input/input-polldev 0x26fe22f9 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x4adf594e input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x52a0faff input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xbfbf9749 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xc73207bb input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x8ab2efb8 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x0ab6f68f ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0xe2a1ea94 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xf5e97493 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 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xf1b24c46 cma3000_init +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0fc36c69 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x27163c6b sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x3e2e3d7c sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x7c307c81 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9f721256 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xf5c51de0 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x9375605a ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xe60c4508 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 0x4fe9c553 capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5f2dda49 attach_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 0x8071e206 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9ef667e3 capi_ctr_suspend_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 0xb4ea230b capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xb60e5e5f capi_cmsg_header +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xba83250a 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 0xc87f7947 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd0138103 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdab859b2 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 0xef9db831 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x150a6f04 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1f947373 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x222d99d9 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5c62c8b0 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5e554943 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x72f4f849 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x93dd38c2 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb437cd34 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb9f9f052 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xca87d596 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xd97c678b b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe55b6c81 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf272e1df avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfab4b878 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfc3fa7f9 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0ae61c4f b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x6294e5c8 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x73ebb072 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7c750550 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x8a1e0fad b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x9fb599ca b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xa2bb808d b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb7402f6c b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf568edae 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 0x03e7c8d0 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x65821be2 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xccda47cb mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xd3e82a20 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x7c13509a mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xf32236df 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 0xecfc64d2 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 0x16fc29f7 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x6e962416 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x95cacb07 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xac1e0d7d isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xb6e5c1be isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x90f59445 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xce1a6455 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdcf85be7 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 0x08eb770a dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1e0ba9d9 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1f42faf2 recv_Dchannel +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 0x313f0cce mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x33902470 mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x4575dcf4 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x47f4f443 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x488d56f4 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x58249051 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a13c3f1 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8f7a99f8 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa2be7223 create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xae11b3fc mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaeeb55a6 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb47c536d bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb5ab31a0 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2b6aa42 mISDN_register_device +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 0xd34fac35 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd8d0849b recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe85fe214 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xece15708 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1f1282c mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf8a00d15 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 0x0c4d0956 bch_btree_sort_lazy +EXPORT_SYMBOL drivers/md/bcache/bcache 0x10dc0d06 bch_bset_insert +EXPORT_SYMBOL drivers/md/bcache/bcache 0x236eb99c closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x38780c39 closure_put +EXPORT_SYMBOL drivers/md/bcache/bcache 0x52d940a0 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 0xc0b9ef00 bch_btree_sort_partial +EXPORT_SYMBOL drivers/md/bcache/bcache 0xca580595 bch_btree_keys_init +EXPORT_SYMBOL drivers/md/bcache/bcache 0xcc1ec9ae 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 0x2984a4b7 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0xc36de70a dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xe09fa989 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xf6d5c29e dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x08eb17c3 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5438cf3b dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6156ce47 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x69f4ed2c dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8e350b60 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x94a055e5 dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0x6a02782e raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x002529e0 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x0cc2818f flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1219e777 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x178b9727 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2c8fa2d0 flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2cb6b476 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x30c7c23c flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x537ea206 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x63f969ca flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6499538d flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6f8a7d36 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc6f076d6 flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xca9ad173 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 0x3db8be82 cx2341x_ctrl_query +EXPORT_SYMBOL drivers/media/common/cx2341x 0x618ba257 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x7d1f021e cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0xad72d7e5 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0xb5e48b5d 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 0x570a312c cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0xbc17d91d tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xdfcc9d08 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c297f09 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x119b9c64 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1252f0b3 dvb_frontend_detach +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 0x24ae66c1 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x28ee2ae8 dvb_ringbuffer_flush +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x312adf73 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x37b0cb08 dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x382ddd48 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3cb3074f dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f261f2c dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3f7224d5 dvb_ringbuffer_read_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4537b164 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4d3b9a9c dvb_ringbuffer_write +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x580e0aee dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x59fc7440 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5e0cf82c dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x65886421 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x68d3d989 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6c481190 dvb_ca_en50221_camready_irq +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 0x7a957f89 dvb_dmx_swfilter_raw +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 0x83ea6e9d dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x86d384ec dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8e47dce5 dvb_ringbuffer_empty +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9c9ed398 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa7049e41 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbdbbe484 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc66dc1f5 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce8be16e dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd164e0cc dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdb576668 dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe2ba9caf dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe57751d8 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xea691f8b dvb_ca_en50221_frda_irq +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 0xf82f326b dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x64923f0f af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x23d919c8 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xa373d64d atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x315473d8 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x47d94d65 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x73cd4d9b au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x88b03c8c au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb15ff960 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb78adbe6 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xba0d5d94 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbe83d576 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xc1ccad83 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0x1bca9360 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x9ceba9b8 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x3f5ae1b2 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0xe4427786 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xf0c32d6e cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x0335d1d9 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xd0161c98 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x6f5a2bde cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x09457140 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbb02f01e cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xbbb9a191 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0xd72dca33 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x4d97d41d cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5fc5e705 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb5868db1 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x18ccaf25 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3645ac67 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x561d2562 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xcde8bb20 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xecc963e5 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x071b0048 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x436356fb dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6765cba6 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6dac4829 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6dcb9e3a dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x761ca4dc dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x840fe435 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8c8c8964 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x95a25d62 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa781bddd dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xbc9ac97a dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe27d3233 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf1ae71ce dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf6bf3c4e dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfca6f9b6 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x244fb223 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0521e526 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x0f126e2d dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x19b3b7bb dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x476c74e7 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x5fecf71d dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x71820061 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x210fbb64 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x5539422e dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x64da0052 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xf454ae6a dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x1d9b611d dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x773ea911 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0cbb4347 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2cc78a74 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x5f690136 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6ba81414 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x9af40145 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x688238a5 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x8e590e14 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xec0e1627 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0xeadc4c3a ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x64857274 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x58ae02ce ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x1b4b30b1 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x80489150 isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0xaf555790 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0xef63cdaf isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x3c3fbdde itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xac7c2196 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0xe96908e2 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xb8c57849 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x50f3fb5a lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x849abc10 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x731ec921 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x13ccd76e lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x979dfd21 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x044c4114 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x5a699056 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x24498471 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x046195e4 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5159ca1a m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x9e3a43bd m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0xa6e2b9ee mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xa1727256 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xe9cb519a mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xe8914344 mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x60e18bf5 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x6ec63fe4 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xdb3f7bc0 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xb3e65650 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xdcfe711d s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x199a83b9 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xa04100b2 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xccfa376d s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x506dbb9a s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xb1976d59 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x5b151559 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xce948afb sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x9d21483a sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x37c0b4fc stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x37ca89ab stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x04d91796 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xcc4a0b69 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xea030ad2 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xb325330f stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xc508614c stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0xc6515956 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xe83894be stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xca4971e6 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x8032070f stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x4d92e4e6 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x5c97d4a8 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xb45a643a tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x15e8e02b tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xca6a4382 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xfe7febea tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x229c4b05 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xe148d215 tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x52e0e1ee tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x121c5ada tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0xe5344018 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0xeff54264 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xfc00146a tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x95c02734 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xa08bb2a1 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0xc16e3023 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x3923df46 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x944b5377 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1b48bd28 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x24597381 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x3667ed93 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5afd613f flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xaa1684ba flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd286b98b flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf78eb572 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa23f33e2 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa3b834f7 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xa7940a2a bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xe91d5245 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x403acc2e bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x73e496da bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xb0df97e5 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x11ae24bb dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x251c97e1 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3b89e25e write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x409cb4af dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4139673b dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x755f17d1 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8c2b8be3 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9590ab56 dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xa7900336 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xdf98bb4e dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x0bde8c0d cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x167720f2 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x3ecc3ea8 cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xb12e03ae cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xfc73bc9e cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x110d7b4c 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 0x712186a4 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7d80e65b cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9abb4ac6 cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb785909d cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc95eb6b1 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xdd69b228 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf9252128 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x38d7612a vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x87c87ce4 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x417de036 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x73480772 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x76c40f38 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x9eb59b0e cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x14cd1e89 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x17d7b40a cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x695f4d37 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x6e529f09 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x74c5821e cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb810c5a8 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xfddd2601 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x023e8818 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0827b946 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x096c7d98 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0f690e17 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x13d50cdd cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4cd0667a cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x62f7f403 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x660fdc4c cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7e50c1c5 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x83c167cc cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x8ae47aa0 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbaaff6c4 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc5cd6311 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcbba9a98 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd2b5c8f3 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xebfb1231 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee94c137 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xef1952ae cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf69073fd cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfee45aec cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x11f20f81 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1c53117f ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x23921ae5 ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x34af7206 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x35abaf2e ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4c666092 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x66aeb8e5 ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x731a71a6 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7523bed4 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x77e34289 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7c90912e ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x839364b4 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x97813f08 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc995c426 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd5717def ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd9658a42 ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf701195c 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 0x1ddeb7cd saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4da9d6d6 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x507b1b68 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x53b415bc saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6536f4d3 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x68acd9b8 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7b61f573 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8fcd16b2 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x9fd77de2 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb2e1b2d7 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc290f926 saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe3f37987 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x35a4b99b ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x6167db2d videocodec_attach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x8f5d6fbd videocodec_unregister +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0x9d6b78c0 videocodec_detach +EXPORT_SYMBOL drivers/media/pci/zoran/videocodec 0xd4bb8cc4 videocodec_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x01ed9e7f soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x49c8801f soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x85c5a6d2 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb8f73ef3 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe2f46473 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf73a2efe soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf997e564 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 0x50def673 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x62aa6c94 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x6794a563 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xb72cb5ec snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe071e359 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0xffe42666 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xfff26d45 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x0816e5a9 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x28de7197 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x44e9af22 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x6e0ad0c0 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x8f54f6d4 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xb552ec85 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xd3c6d501 lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xffd18632 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0xd43f0053 ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/rc/rc-core 0xe40883df ir_raw_handler_register +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x50ead19d fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x704a6c89 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x1b13752d fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x3bfd8cb7 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x96798663 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/max2165 0xdaa6a9f9 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xccb3c9de mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xdea4f948 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xe6ec4e6d mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x331fb73d mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xdff3af8f mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x4ab0b417 qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0x11171f96 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 0x59214cb1 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x2520dd97 xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x641cedb4 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x20cad7da cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xf4f39c08 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x292629a4 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x59aac138 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7c19c9d7 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x99d7465c dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc1efeaf0 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc3e63a40 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xccc79d64 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xe75ccda9 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xee4f1457 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x2bfa6951 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5271262a dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7dfbe6da dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9f39a83b dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb14d9a0d dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xf7c895ca usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xffa91092 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 0xaa486d88 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 0x1075be34 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x14ef17a9 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3f7a6f74 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x72425f4f dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa527cd80 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xae0f1ed8 dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xb2672278 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 0xc6d26084 dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd47829b2 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xdda28afd dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfa57ef51 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe3563f36 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xf4beb039 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x10ceb253 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4e761566 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x609d83f0 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x671787e8 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6ca792fd go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x79ed7393 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x9782053c go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbb3e717b go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbde2191e go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x01068354 gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x257d5949 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x3b6d776b gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x57f3f51d gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x73461927 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xbbd6b904 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd67f47b2 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe4863fe2 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x490276fc tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x814d6e47 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xef4ddbf8 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xd798ac37 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xfc5fadfd 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 0xb6fe4008 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xc1738013 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xfb9f5792 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x617ab4ba videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x6a92c27f videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x7236b473 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x73a9383a videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x80745faa videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc3f66b7b videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x43a268f5 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xc7ec04c9 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1c861dd6 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x2cc52bf7 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4d1dc160 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x624ab843 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xd551d23b vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xe9cf629c 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 0x192ca927 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x013bdcd1 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x031087d9 video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x033d0e1d v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0750cc8d v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0b223b57 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x101e9f7a v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x11f3e751 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x130e890e v4l2_ctrl_subscribe_event +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 0x169ba4b8 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c9478 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23dfb7a6 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x258cec9e v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2b8f2eae video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31bd7044 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33e4874e v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35340b2f v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x39952de6 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 0x3e0024de v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e6bb538 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x456536e1 __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 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e778b9a v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4fa5f1eb v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52fe4229 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c6d6712 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x603fcb6e v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x661dc966 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6b0da6d4 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6f990d58 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x704d9650 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x717664ca v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7443a18a v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77559f46 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7de05ddb video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x864473ba __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8a6e99eb v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8b834e9a v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8bc00ff0 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9b9e629c v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9da6a3b1 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9e6afe07 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa1117f60 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xab15865d v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xacd60ae3 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xae6b48d2 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1540082 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3fdd921 __v4l2_ctrl_s_ctrl_int64 +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 0xbe6b4e5d v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc407bf50 v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5cad292 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc68b6093 v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcd21708a v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcfa98b77 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2497900 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd4b6d88a v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7559c7a v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd7af7e26 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd91df0c2 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdb303f5d v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xdbc590a2 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xddd3317c v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2c9aff4 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe370e604 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5edc020 video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf096b983 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf1d184c2 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf40eaec0 v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf7be9433 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd162af4 v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd33678b v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfdd5d444 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfe007ac6 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x30b6c3e2 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4bd0f24d memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x53dc7d40 memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5b5c17c8 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x68e20207 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x6ac70629 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8c9b5da4 memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8d27e90f memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa90e0d02 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xb8ce96b5 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xccb6117b memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe364ef07 memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe59f65dd memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xfe51daee memstick_remove_host +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x0eed0db0 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x14bf56e1 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1bda9d50 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x28e2f474 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c00dd77 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2d2f484e mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x377e8211 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x39a4dffc mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3a24e918 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3f057c1a mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x3ff653e7 mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x46b4c262 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x53d52a94 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5b520dfc mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5e6e42c6 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6006ec72 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x720299a1 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7378bff7 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a51a9e0 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1050fa3 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb1923420 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb69552bb mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb9ac08df mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc05bd83 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbc74c576 mpt_put_msg_frame_hi_pri +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 0xc4f2194a mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcdb82d4b mpt_send_handshake_request +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 0xec22a598 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf70a39fe mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0ce630ee mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0dd96cde mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x10ae3be7 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x12ff634f mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x17e344d1 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x18bdb0ec mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3b36ed48 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3e8f505f mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c45fe67 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x57885a71 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x628e9756 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x74969837 mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x749cc14d mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x83640a2a mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8a16e741 mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8ccbe6df mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8fd0b2c5 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa4121704 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa6a69494 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb1d4609d mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb9633f72 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb9a369c9 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc5be681d mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc617889e mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd4d0fbfe mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe76796a6 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfb1c2a8e mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/mfd/dln2 0x04fcc47b dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x233f8c12 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xd69a7ce8 dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x3976f60a pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x468f0eae pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1b815c34 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4ea1b520 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x52fd362c mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6146f551 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x6d15d68d mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7879516c mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa40f3156 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa766da3a mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xc37a790d mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xe408d1c3 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf0cd7045 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 0x5d5fc67d wm8994_irq_exit +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0x7d68a15f wm8994_irq_init +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 0xa816fd9a ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xcbf99363 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x37cbc168 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0xa7e89fad c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xaca0a120 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x8891a304 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0x9bbe0119 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x06550c9c tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x26499d86 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x37080d3e tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x39f86aa1 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0x3aac0335 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x682c69cf tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7f3bc462 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x898cf0c9 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x94969199 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xabfd3f72 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xbc2e1108 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xe0269b5a tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xef5367fe tifm_unmap_sg +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x008a47e5 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x45c9df01 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x99769895 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x9990d843 cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc70ad265 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xca4ca3ec cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xd1aa0ab4 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe5ee1073 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x21ab90ba map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x2ec79609 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa9e604ff do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xc67d35ca register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x2c3d160e mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x81398275 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xf371e2b6 simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x09966fec mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xb8040b25 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x0d9eb6cc denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0x12e7b4ea denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x80e416b5 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa3ae38da nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xd8b6dbdd nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand 0xf2bd9989 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xf36c8ac5 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0xfb665398 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x1a8e16b6 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x8dea11b0 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xb44fda58 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x7dac7fa4 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x82868760 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 0x2a989eb1 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x315e953b onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xb2acbc80 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xe55f269b onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x136f9f9f arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x29a573bf arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2b94abc4 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x2ede0361 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x48a9eb98 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xad68939d arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xad7e98d4 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xc527a942 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xe476ce22 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xfe327e41 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x469b001c com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x5b8cb4c9 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x88cf6a52 com20020_found +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x184f41fb __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2a632ac2 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x3df3ab49 ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x6bcf5fd1 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb1029a1d ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbbb5a979 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xbcdac824 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd736a77a ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xf8be2128 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xfdcf3f27 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x8700c93b bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x68d2c883 cnic_register_driver +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x06b66a31 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1c4eee39 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2f08cd51 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3232de2c t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4a152e27 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5482f132 cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x5c48f7e3 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x61dce07e t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x7a64481d t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x874afc06 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8b4c16a0 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8dfbe1ae cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x99b8441e cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa1e376bb cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa9d0c9f5 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xaff18f56 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0d505ec6 cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24c71179 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x24f847cb cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x28fe9853 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3bde406e cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d5e2f0d cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5370e10f cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x539603af cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5ca5fd1f cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6290e244 cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6bd15b17 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6ce3ad3b cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x77cc5d38 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9270b8de cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x93ea4ea4 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x97600909 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x976973e0 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9874d089 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x990f31ad cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9d305c59 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaa486a73 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xaafbf9f7 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac1a2b25 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xac2a077d cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb30be541 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb60cacbf cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb832bea1 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbd3ec399 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc154d3c8 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc9124b4b cxgb4_clip_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 0xe2a0a0b8 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5346df5 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf8f5020a cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xff105e0c cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2be2833c vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x934e6dca enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa18873fa vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xc6c4d1f4 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xeff0fd4d vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf5c3cf7e vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x7135db7c 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 0xe6b2bc90 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08eb6e27 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d787954 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e7bd63e mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24de81e0 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b02a40a mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ff82d92 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38138a5c mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x39730588 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e50fedf mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40b12d41 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x447f1b47 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4fad77b5 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x531dce5f mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5858d5ae mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62fc84bd mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x68d2fe67 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bb326e2 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x768bded2 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a07b627 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c05dd0a mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ca7f5cc mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80845fa4 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83b7544c mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84a4f6e7 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x89b03da0 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9231d1bf mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb1a2280f mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb975afa1 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbe33d440 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5250a48 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd034faeb mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd76c1a63 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1a8095c set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3ac57bb mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5a3d826 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe74037f4 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb73b757 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe4159dd mlx4_is_eq_shared +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 0x086b9a2f mlx5_core_destroy_mkey +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 0x2637df22 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2da408f7 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x39d5ff24 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4319a8dd mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4caeda5f mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4ef01439 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x618243df mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x635e47ef mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x66302cef mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bc196ae mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6ffcff02 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70408604 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x712aa8bf mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x75a43d10 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81aada5b mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81f92f71 mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8399397d mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x85fb2f6d mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95fd1041 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9832450e mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9fded887 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa2f7df8a mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa7f1ea8 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaeca4d0e mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1ff4cce mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2558dab mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb2b591fd mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba27ff80 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbfe79f21 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc154708e mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcb0fc8f0 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf7418a2 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd1c3cd1e mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd485bcc mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6a49e58 mlx5_core_destroy_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 0xebc1c400 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf6f98624 mlx5_vector2eqn +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 0x21d52f21 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x332b713b mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x40dae761 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 0x9b9ceade mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xa57943ba 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 0xe327cc0c 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 0xee32e49e 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 0x8e7d3e50 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 0x0a4c2a56 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x40fcf012 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x5c19705c hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x79e02b03 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x87bb3778 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x01e679dc sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x426c0b28 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x44a77817 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9007bb4a sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x98eba5c0 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc002e915 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc49f31d5 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xcf990520 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe57ed5d4 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe966cf5b 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 0x2556b7bd mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x687955f3 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xaeccebc6 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xd04b9ecd mii_check_media +EXPORT_SYMBOL drivers/net/mii 0xd61e9097 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xdd6cf6e5 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0xe057f383 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xe803fa2a mii_check_link +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x0e11abf3 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xa8d0665e alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x272de569 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x5efa05fe xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xbb1f6de4 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/vitesse 0x29a61055 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x2ed7784f pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x61b17e12 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xfbb9c657 pppox_ioctl +EXPORT_SYMBOL drivers/net/sungem_phy 0x47fd5505 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x3abcbf54 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x4dc303f0 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x4fc4769f team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x7f0354cd team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x8590f990 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x962cc9cd team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xb1acf573 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xfb8347ce team_modeop_port_enter +EXPORT_SYMBOL drivers/net/usb/usbnet 0x1c54e8b1 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2458f4fd usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0x2edbb81b cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x6b3e1713 usbnet_manage_power +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0e5af50d hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x10a8c32f unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x165f8c4a hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x21cc11b2 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x627c383f attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x95703fae hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x99e9c860 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xaf25893c hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb1dfd340 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb430d0e0 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd5bd1067 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xe5b189eb i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x0599eb1f init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x5c14e151 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x71c4d050 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3336ea65 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x4b84439f ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x50aa0a01 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5e606379 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x884c709c ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8ab376cd ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x954bb560 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc195b64f ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc8e4cf17 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xdca4b6e2 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe3e266ad ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf17e8010 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 0x012d605f ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0834333a ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0af0f37e ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0f624a2c ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x151264cb ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x24c7a0fa ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4549b46d ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x51a5b59c ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x7641e453 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x88bf1a7b ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x959dc40b ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa9accdd9 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb48e9b6a ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcb80e433 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf8f28ebc ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2c881740 ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x2ee6da55 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x441c0625 ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x66a2b923 ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x67840e8b ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x793d8133 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 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 0xa751ae3f 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 0xdecfa082 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe8e536d6 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xef6232be ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xefe2d221 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x010edefd ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x032847c1 ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x03b9aa4d ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0487a5dc ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x10de18ae ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x167418e7 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2ac564b9 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 0x387879a1 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x39a5bc9c ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3fd7f995 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x52b6ae7a ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x5bc9a6e1 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x780fae9e ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x7fad783c ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8d7b06f4 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x92f8b3c0 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa0ebb50e ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb99a7ae7 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcaef8ea7 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 0xdc0e6929 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe793d80a ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf8cba845 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xfcf55b36 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0041dd9d ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0131f490 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0368a334 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x03b452f6 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x09ca8bdf ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bbe152e ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0c3434d5 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0cb4214e ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e886925 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f39639a ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x11c3310f ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13b03b49 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x13d279a1 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1405dd1e ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1646aff7 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19794be3 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1aefd430 ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22a727f5 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x24ad9182 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2690c8c3 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2937ea34 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f3169be ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33515b98 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34e8d43d ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34ece544 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3985a97e ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x40c9ab03 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4214fec5 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4353937a ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x47df3e1b ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x493f2c63 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f70d2ab ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x548216f0 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5738b9dc ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x57c14367 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5824b94c ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5bf260a9 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5d38af04 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e01cfc3 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x616faa00 ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61d90649 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x65285977 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x679fc11e ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x68400be9 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aedcaac ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b1a1255 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c868f89 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6cc75a24 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f02c32e ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6f80e868 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71502083 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x717403b5 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x71ec7915 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75b1c9ee ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x770dd9b5 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79e7fc34 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83effe9e ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8643eeb8 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89358439 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d23b884 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fea1148 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9010cf01 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9194fa00 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x91a652cd ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x944ca528 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d18a094 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa4c4829f ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa577376d ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa946a755 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad3ef822 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb000db7e ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb1e0f5b4 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3504cb3 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb64092d2 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb74643ab ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7c5b471 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbad99dc8 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0b83517 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc0fd60dd ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc25e6968 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc3d4b4b4 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc443e4f0 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc467eb1d ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc4903de9 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc5773f2f ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8f8e141 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc96e17eb ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb5db1a9 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcdf4a994 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0a8cd38 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd4d25e5a ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd560e0ee ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd59de34a ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd9851abd ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdbdb1f2a ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd27ce66 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe37bf2ef ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8d668e4 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefc498a0 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4722467 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf4fb870a ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7d4fccd ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7f1e658 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf8021646 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd5d3714 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x05e12668 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xdbcdc26b init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xfa8bd2fa stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1a856b71 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x317cacf1 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3bd74c83 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3d53c848 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 0x590e7bda brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x5c61be34 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x652f168c brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7238d4e5 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8747f43a brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x89dc2ed9 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbcd995ae brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcd82afc3 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xda81ab98 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x097f378c hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0ad69602 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1b238fb4 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1f267b92 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2114fc14 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x23d0d545 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3b6a7469 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x437ebf12 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x47bfc39c hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x53f6bf7e hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x58eac610 hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x623a696e prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6ce2c446 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8b2982b0 hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa7d0ed38 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xaa062a1e hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xafe669f7 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 0xc2aba755 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc4a6f172 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc5bc8f0a hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdb4f1957 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe61d2530 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeb78c30d hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xee50ce9e hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xefbf3cb8 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf06d8292 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x16acad0f libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2e46108b libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4783d9eb libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x50940f97 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5c64ddf7 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5e108f50 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x669a5729 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x729bded4 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7fd93e9a libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9040684b libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9adcad82 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa1c56cbc libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbad5440a libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc1de0792 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc53df851 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcdd6fc59 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xdfa332b2 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe218f82b libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf2dfd1fe libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfda365c5 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfe6b2f2e libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x014ba6ad il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x026f6ae0 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0402d8f5 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x05d94960 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08002675 il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b6c000e il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0bca9dd1 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1642b8f2 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a03c90a il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a901e86 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1c39a578 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x21f33cb1 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2653258d il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26ae341b il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x270aeaf3 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x285bc11d il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x28c6f013 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c7ff82f il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ceef33b il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x34713105 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x36bacf9e il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39111d66 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x393a2606 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39a7f9bb il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x39e48b8f il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3b62e180 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f5e5db9 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3f7ac310 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4405774e il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46cdfab2 il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4714cb76 il_hdl_spectrum_measurement +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 0x4d95e058 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4fea65bb il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56ded3ee il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x58f1e955 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x613ceebb il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63b30eec il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67507159 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6968e370 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6a53aa76 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x704f38f7 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x729e7dd8 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73ecc783 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x73fa23ef il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76abedb3 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x77b2b7db il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7ae27201 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b5eb06b il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c8fa3dd il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d4e2c4b il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7dc55a67 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7fbcf645 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x87aa089b il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8baace54 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8bfa5e92 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x91387088 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x92be8337 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x93cdf075 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x99de227a _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c830a9a il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d6a66aa il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d98800d il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa48531ae il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa88f735e il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa9d06209 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xaf76d98d il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0808030 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0fc9bd3 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb14b9b4e il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb2f704ea il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb4289e6f il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb5350c70 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb8a189ba il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb8cde345 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb9188ae5 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbae4c721 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbd197e46 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbedcf585 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4406565 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4eccb99 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc689e78e il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce66a3ad il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcefb4d29 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd2b6fc5b il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd60dd242 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd988d88f il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdc966fb4 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe41fe1b8 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe46fba0d il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7833d29 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb91d7e3 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xee801763 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf10e1245 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf45a1381 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf55cf9d9 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc122980 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc21f77a il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc7837d9 il_scan_cancel_timeout +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 0x07541575 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x320485bf __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x599fd043 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x61023a5b free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x685c1b2f orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x7533160f orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x80dd90b6 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x942f569e orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa738465d orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xccead6e3 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd4acbff5 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe0c77b6d orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe2e989bf orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe62269bd alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf5977402 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xfbee1088 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x095998d7 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x04f2fd69 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0590574e rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05da70dd _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0cb7917b rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0ef693e4 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10c04bcc _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1796fc92 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1bab996c rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a20f209 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x335c47cc rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3a46525f rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3e5fdde2 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3f7da78d rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4cfefa5d rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x563a1739 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x56b995d6 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5c543e0f rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6138ede9 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f519452 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x708d879b _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e3bd724 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x85cbbef7 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9420e4ed rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a392f29 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb0cf6fa7 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb1d35dbd rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb278a1c8 _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 0xb780bbb2 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc1beb42e rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc425d0f1 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc6938e6f rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcd336155 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf8e99ba rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd24bb130 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd2cde6ec rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd8b0e077 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xda19f954 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe06a4447 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xebf9f4d1 rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf6e06133 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf75a8c18 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x34dd34ef rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x55214bb7 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x5870ac2a rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8e76199d rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x23829302 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x90045633 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xd2c0a9ff rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xdcad4473 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x059ef55e rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x07a53276 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0b41bb66 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 0x2b617bee rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2d66e9fd efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x370a1238 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4a795aa1 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6022d003 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71fa217c rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x78e55947 rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7e8c5e09 rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8991d959 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5ec6035 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc15ba8f rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd0284331 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd39c472b rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd4d6d679 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd5245a08 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd8d47c17 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdf7289bc rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xdfec3802 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe96b1ec0 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeba7a0e0 rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee39d98b rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf5dae6cc rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf6fa8f47 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfe4bb22d rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xffc130bb rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x1771f43e wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4a617f56 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x4f9f475b wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x6fe1a833 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x0cf61359 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3d83a041 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xe642becc fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xe86b3511 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xf700d0fd microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x2ee9ed04 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xad14ccee nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xf94747b3 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x2e927137 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x93caaa61 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x5c26b0aa s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x85427525 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xbbf3da9a s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x042910de ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x28fc964b st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x49fd6b8d ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x7ef757f6 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x80340c7e ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x845ee517 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xa454adc7 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xc8af37ee ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xcf33da05 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe10eea78 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe1617fa6 ndlc_open +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x06e2dbe6 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1d803578 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x275a20fc st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3b629ade st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3f206599 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x47f1bf79 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x60775a04 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6b073f08 st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6dcafc04 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8f8cbe4e st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9c39a255 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9d7220ef st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa24d0774 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xaff2d6ef st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd301c8a4 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe366e782 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe6007efc st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf8f411d1 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/ntb/ntb 0x7727eb9a ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x7b0708cc __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x8674366e ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xa7b37b85 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xc58ddb78 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0xddd43df6 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xf56395f8 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xf7b35b86 ntb_unregister_device +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x478fdc51 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x154a5019 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x1614bdfb parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x1837b4c7 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x192e6346 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x2a4705a6 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x2b8dcb2d parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x30e9b5d8 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x365cd74e parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x3eacf817 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x44c63914 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4a8e10d7 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x4c09c41c parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x52920164 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5f47afe1 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x61d32f8a parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x6349c649 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x69f0ab8d parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x6c9ae962 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x6cb92b7a parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x74cb91f6 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x770bdbd0 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x7e6f50d9 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x90a49c67 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0xad18adbb parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xbfac56e1 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xc16fff47 parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xc3133793 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xc91bb918 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xce53ce10 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xe1bd3415 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xe332c45e parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0xe6d74280 parport_claim +EXPORT_SYMBOL drivers/parport/parport_pc 0x7c002d97 parport_pc_probe_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xde2fda68 parport_pc_unregister_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0365e5b0 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0a2552e3 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x18fc9957 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x21c1674e pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x348db38b pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x46dd8b89 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x499cd6bb pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4a5ebdcf pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4e04b336 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4fe0c38f __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x632d0ba4 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x63528c3b pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x72cea38c pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x80ad26bb pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x83e50bff pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9ad6961b pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb04c6198 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xf74cbbf3 pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfc7187c8 pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x1f07d0dc pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3addce0d pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x4451bf87 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5420ca44 pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x5834f0a8 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x632ac008 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7b182f16 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x7b539de0 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x85c8c7c1 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9838397c pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xb39cce0b pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x4716f130 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xe99377c6 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x584e58e8 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x76f43b59 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x9c227319 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0xad0e447f pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x13987c21 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x1621cb2f ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xcfed4106 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xd334a5d8 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0xf94028fc ptp_clock_unregister +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x160d8128 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x181ad494 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x1b7e79ac rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3334d4d8 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4c8c70e4 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x60761e4b rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6104e007 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6fe7c172 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x91d0ed59 rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xec0bcd95 rproc_alloc +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x88f6b6be ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x11bc49e2 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x1a1663a4 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa7dba98e scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xd4d39aba scsi_esp_register +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x16209737 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1d754f68 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3429c8c7 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3dc04836 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6df8c28f fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x843bc891 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa6eced8c fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb6f4d939 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc0054c66 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc7567c62 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe5daca48 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xeb33047a fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03f03053 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x041148d4 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x057ef3fc fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b080abf fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0c7b2336 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x136eaba5 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x148e4501 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x149fa221 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1a2e4f88 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1afbb16c fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1b084640 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21902cb8 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x21c02148 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2c6b83fb fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3218b34d fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x34dc1045 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x37689789 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47028703 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ba26176 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x542704f5 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5d684353 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69704037 fc_get_host_port_state +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 0x70e16a46 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7aabf7f1 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x85713a38 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8b7b5b71 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8e19261d fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x93506e25 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x97bc915a fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x994dc839 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d1e0592 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9e845bfa fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa0b22001 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa7657baa fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xad71fcdb fc_exch_mgr_reset +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 0xb64d14f7 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbb18f764 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5d268f1 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc825bbd fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd107a0a9 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd2217853 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3bc55c7 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe4a623e7 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec76c8f4 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2710a4d fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xffeceb3c fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x0825d049 sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x09801096 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x85f48bbe sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x95ccdfac 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 0xe16bc464 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x02be55a8 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x064d7be3 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b39e548 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0d2f6ffe osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0f6a3de5 osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0ff20985 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x19b74ebd osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1a4cf6bb osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1edc13b3 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x226ab535 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x22b7728e osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2454ac56 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x25cd593e osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x40296a16 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4a14ad5c osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x612e1f6e osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x72b84193 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x89a93adc osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9cc43b94 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa3e825ac osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa8939698 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xabfed64f osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb05fdac3 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb64217f1 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbbc4f087 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc3d2a361 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc971c882 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd248e5e6 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd5a3cd90 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd930a256 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe909dbb6 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xed748e29 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf2936359 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf8ccbe0a osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfaa6053d osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfd104030 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/osd 0x06134620 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x15416620 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3790e61f osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x39fb6bde osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8d437a7d osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xca55d1b3 osduld_put_device +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x10914ca3 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x17bd1a1a qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2fc41964 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x730b9b29 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x891c2fed qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x97e25b59 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb9d21e0a qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xd85b987d qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe318792a qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xee5805b8 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xf24d8e56 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xfed894e1 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x246b743b qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x56e6212a qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x586505c5 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x5e186969 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x8e7fc9a1 qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x933a152b 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 0x2c20f9a8 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0x4e9b19b4 raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0x8e8cb76f raid_component_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x16fb2c8f scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x45f08952 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4a8cbaea fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5436189c fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5c863603 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x75671010 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x89c60a1e fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9511578b fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa09d8f61 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xa149b396 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb70c3654 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc79b2901 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xec135282 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x119b1278 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x29ea875c sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2aabfb98 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2d9f53fd sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x38c8bfed sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3bc988b5 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x470c9aaf scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x48c5b123 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4b8f4cc5 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a3e734c sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x64e1496f sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6582f29b sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x68943589 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8d4f82ef sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x941c8e9f sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9673be1d sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9a6b2b6b sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc63c52d2 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd26af35d sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd3dbffd1 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7a0ebfc sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe5ddc74d scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe71186d7 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea384713 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xec11668a sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf509d49f sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf5cd98c7 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfd120a63 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x15e1f5f7 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x483c3c0b spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x8970f81b spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xcbd76796 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xe063aab5 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x28d06cea srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xcc8474eb srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xd8779bee srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf30993e8 srp_rport_put +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x240306dd ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x636a94d4 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x81480ae2 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xcc4033ee ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xda844390 ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xdc52b6f7 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe62be915 ufshcd_shutdown +EXPORT_SYMBOL drivers/ssb/ssb 0x0c0be216 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x258cb5ec ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x328a927f ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x3c367524 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x3c6204cc ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x3fac9bce ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x45093109 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x52b1f543 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x5841d468 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x8639e5a7 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x8b7873e1 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x90adad1a ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xa55fdae9 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc84efffe ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd778f2aa ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe6692600 __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xe913586b ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xeb7925c8 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xee3b0a70 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xf7805527 ssb_dma_translation +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x09d3440a fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1cf3b740 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2497c47a fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x28a27bde fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2ed9deaa fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x315ff57f fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3b9b0af3 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x419f8007 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5129efb4 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x534379bc fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x54244ec4 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5cd6da65 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x631fa0cf fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x667f48e5 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6eb9523f fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8144afac fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8f8ec58e fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9dae0538 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa72cdbf9 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb914e087 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd456b6b6 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdd8d9e2e fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe3bd6c33 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfa83be59 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x1ae8f0c4 fwtty_port_get +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xa2b15d2d fwtty_port_put +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x24a928a9 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x075ad525 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x5cd7f6f8 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x74715434 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xcdc80e6e hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xe4c7f6c5 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xedaf0888 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xc3a552df cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x3e8debdb most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x004db3c8 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03ad580d rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04abb408 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cf9731d rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0e47c3c9 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b58b6a4 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b72e5f2 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1c431bef rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x210875e3 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27b764c1 rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27fe8989 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x286f02f0 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x28be6777 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2caa5e94 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d868466 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3749cc67 rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x538bc479 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x561c2e88 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d0d911c rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d652ab7 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x694f086a rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x72477837 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x738d3d53 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73d04fa5 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d4dbf85 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa231ba82 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa6013a99 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xaddbf8e3 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb38ccd6d rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb5c4a102 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6cefd8f rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbb859304 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe08c38a rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc02f1c03 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc1a21e4c free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc213377a rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3c00ee4 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc4820b38 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc50e7314 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd0c78cf rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd0a00952 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd81013a rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdfcc462d rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe64994b4 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe69078cd rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe7e5791f rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe99a0922 rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeba60864 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xee731fd5 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf98880f0 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0297762b ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x041ee992 ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0bb346c9 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15fbd2c7 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x16366965 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1bb27267 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x26ccc468 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2920197e Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x29e80216 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3622ad4e ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x36622884 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x38ee78fd ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3967f659 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f07dd0c ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3fb21666 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x408192e8 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4320407a notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e7280ff ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50c774a4 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5216d3c1 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x53f2e7da ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x540fae34 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5820559e DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x58632e1f ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x592a5fd5 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6f5cfb28 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x70f175c4 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7275c74d ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x74b4c790 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77f24e4d ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x787bb26e ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x793e9bfe ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7cdc3ff8 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7ee9e4fa ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8aa74c4d DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ba45900 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9e1f130b ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ebefd2e ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa50037dd ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb1214f9d ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb416b9d4 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbd2d0659 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbe056411 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc09de973 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0afae1a ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb1c81a7 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcf4c2491 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd63f3064 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda13a3b5 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe17ea2e8 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe787e1a2 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xef70e63e ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf49cb9dc ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfd15181f ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfe3d792d ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x01cfc163 iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1536940e iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x16181ebf iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x243c485c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x31590ed8 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3ef47906 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3f729099 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x403f23e7 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x47ef2591 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4ad2e791 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4af1f578 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4e0f314d iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5c6e9ac9 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x79b3e6e0 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7cecfd17 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x892c5d61 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cd18889 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x986d6a01 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9dfae7b0 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa07b0f59 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac132373 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb0d80476 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1af0b78 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1dc1c01 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc2bad5c iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd69354bb iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf007730f iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfb45ec7a iscsit_register_transport +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x040eb9c0 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x04122122 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x045842fe sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x0495c8e4 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x0929beda target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x0e48ef6a transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x10a7cafc sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x11b6397f core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x21243fa7 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x25cebeb6 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a6346b8 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e1bd4af transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x314dca55 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x3ac20473 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x45283b3a target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x470db546 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x49b5f621 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4a1e7039 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ce7eccc core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x5798bc69 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f5b5d8b target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x5fbe2002 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x616e107f transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x63457940 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x63f178b2 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x6a531092 target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c044803 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7188ab0d target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a465859 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 0x7e56db97 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f08cce1 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8108c8f2 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x81c61745 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x826fac55 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x885f5c79 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x8881432e target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x89b34c5f core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x8adcae38 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x8cda1dc1 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e670449 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x948607fc target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x9de08237 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xa01fc0f9 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xa0a93f59 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9b5eac7 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xaa627963 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf2b9638 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf8393eb transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb164c1c4 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xb50a2be7 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9714355 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf1d6778 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xc164f15e transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xc19a6dae passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xc56c52b5 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xc689e5ce transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8b81fdf spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4e47a58 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xd8ef8c56 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xe375d26d transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xeae72fd3 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xed315a4c core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xee983986 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf12ea239 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xf5b3af93 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xfa77311a core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb509a18 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xfcd21d35 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd602031 transport_free_session +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0xf69053dc 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 0xa0b6da6f sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x29b256b5 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x55dad39f usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7171568a usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x7cce9c03 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x80f7e5e2 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8e4dd954 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xa19a2e4d usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb627fc23 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb722f494 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb7bad8d5 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xbc269fdc usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc052a0c1 usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x4415d33f usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x93df3389 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 0x3d7b14e5 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x6cfef9a6 lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xc3483ba8 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0xea1f0cc5 devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x16f6764c svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x17f3f471 svga_set_default_seq_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x19f91655 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x1be6dc30 svga_set_textmode_vga_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3058a69d svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x336533e0 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x3cc23e90 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 0x88591134 svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xa1123996 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 0xef774f5d svga_compute_pll +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xf2db5956 svga_match_format +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x4bc27b26 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0xeb373fdd sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x38afb574 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 0x59eeaf89 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x069a6f88 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2cb276f1 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x552ccd04 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x1ca71ba8 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x593e8195 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xabeff3e9 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xb03d0bc2 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xf8d46ead matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x39edfb37 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x010b46fc matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x407a0fc2 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xaa9e4968 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb3fb65fb matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xcafd7aee matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xd75e1824 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x34e87c3f matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x7c5d148e matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x90e99039 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc6362213 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc81cef86 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x63461ce3 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 0x4c017a2c w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x6a8fc2ca w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x848403ba w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xe064ecbf w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x77f17746 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x84f1c86f w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xc747e014 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xd3736333 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x91c10d14 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xb53faa6c w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xb6cbda9a w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0xbe4dc621 w1_remove_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x06d06f75 configfs_undepend_item +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 0x653f2951 configfs_unregister_group +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 0x74d0b402 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x838a89fb configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x8709440b config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x89a2ab34 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xbd625463 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xc9737144 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xdc7c4aa1 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xe20051a5 configfs_depend_item +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2f765207 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x3c712c33 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x43da185a ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x8c8e187f ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xafd3e035 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xb1e8be9c ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xb3dc2bd4 ore_write +EXPORT_SYMBOL fs/exofs/libore 0xdb39ebeb extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xe6b94567 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xf5be280a ore_check_io +EXPORT_SYMBOL fs/fscache/fscache 0x0c670b32 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x1261ff98 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x1c51975c __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x1e71e08c __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x215610fe fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x240291a1 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x2474d2fa fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x2d50a2c1 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x2ed9df39 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x4003d19f fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x447e63f6 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x467ba21c __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4ec98126 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x57a5a55e fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0x5c6e4ec5 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x73060fdb __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x750456d0 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x77b0f3b7 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x7fae7136 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x82f8fdfe __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x8aa59b5b fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x8c6768b7 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x8ceeda8d __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x908c9243 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x962f8f78 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x99892241 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xa0c79010 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0xa6582a5f __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xb143f299 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xb5da137f fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xc2a03ca8 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xc2b031e2 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0xc7063c3d __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0xcb87d6e5 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xd1f6e4f6 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xd3946ca6 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xdeeb5276 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xe5115f7c fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf7a1c823 fscache_obtained_object +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x03ee1937 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x3a2c3417 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x627dd1fe qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xd0fdb940 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xf8abcaba 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 0x2cfbd26e 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 0x686873d7 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/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 0x2756c676 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x5b1118b2 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0x91f86e78 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x3ba9a1e6 register_8022_client +EXPORT_SYMBOL net/802/p8022 0x4e77f470 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x449fe0f2 destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0xa2deeeef make_8023_client +EXPORT_SYMBOL net/802/psnap 0x76fcefe1 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x8eff6064 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x041aacb5 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x0f630f6f p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x1a37c7e9 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0x31f4228b p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x32739307 p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x385fbc58 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x38cd796e p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x3b3f389c p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3d73a797 p9_errstr2errno +EXPORT_SYMBOL net/9p/9pnet 0x3db063f6 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x3dc26c12 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x433750c4 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x44ad54a9 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x503b1e2c p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x5c7fde94 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x6c0b3d49 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x7007e6ec p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x788d9276 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x85a08f9c p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x9d33b757 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xaa4ee12c p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xaa62e7f1 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xab6c39e1 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xb7d0403f v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xba263481 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xbdb1a950 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xbe2104d9 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0xbf466fd5 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xbfaab76d p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xc007e6bd p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc76f2e29 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xc940515a p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xcbb3cad6 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcd469f36 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xce2df1e9 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0xd078adc5 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd11b3afe p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd8189e38 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xdb998cfb p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xde8ac71e p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xe134a71b v9fs_get_default_trans +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 0xfbe7aa34 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xfc29adac p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x13453e4e aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x1eb788ee alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x4d50e23b atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x73500bb0 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x00cb7c7a vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x1501f027 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x2898e830 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x45a8cad1 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x6a179804 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x78091469 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa1a24dc7 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xd6af9f09 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xdc16493b vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0xdce6b2be atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xede11b81 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf5d3f8c8 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf9fed003 atm_charge +EXPORT_SYMBOL net/ax25/ax25 0x1c39328a ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x2c1b7242 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x345133d1 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x48d791f5 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x4fb3045e ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x7d549248 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x851b0dee 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 0xaed43efd ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/bluetooth/bluetooth 0x078b1ad9 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x09b5e7ce bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0b2a370e hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1b41871b __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1c9f4f5c hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2a7fae0d hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x34bbe092 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3a9b14cc bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x45bad6fc hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4b3a55c0 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4f15baa5 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x506baffa bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x513c186a bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x5bcb93bc hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x612e2d5b hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6472bced hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6e828765 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f4f4050 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f8c8aa6 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7ba3f106 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0x848a0c26 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8a7635e4 l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8ed52949 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 0x9432c7d8 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x946a6940 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9723e694 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9c458a40 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9eb53cb8 bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb75754e3 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb802ad7c __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbaa2ba5a bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbb74b28e hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbc1ff8d6 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbfbffa59 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc0d55003 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc87c1ee4 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb9339a2 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd4b3f3dc bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe1290231 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea80eb31 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xef7b8d55 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bridge/bridge 0x47624a86 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5167a0cb ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x6c196201 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x846bbd25 ebt_register_table +EXPORT_SYMBOL net/caif/caif 0x0ca47dc4 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x1446b60a caif_client_register_refcnt +EXPORT_SYMBOL net/caif/caif 0x15fa8069 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x1f5584b5 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 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x7d6b1321 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0x839ddb7b cfcnfg_set_phy_state +EXPORT_SYMBOL net/caif/caif 0x8ffa5888 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 0x1b239284 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x1d5d8bfb can_send +EXPORT_SYMBOL net/can/can 0x2959da7c can_rx_unregister +EXPORT_SYMBOL net/can/can 0x771dd2d1 can_proto_register +EXPORT_SYMBOL net/can/can 0x9e418536 can_ioctl +EXPORT_SYMBOL net/can/can 0xf69c802c can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x047d8390 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x06041a43 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x08c6d979 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0b6bd3a1 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x0e62714e ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0x125ecd4c osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x12ee4e35 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x195dd65e osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x1c3bf36a ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x1d9b943c ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1e42e704 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21aac7ba ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x29432f4c ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0x2a2cb3d4 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x2e64df34 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x2eea04fb ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x317fa9f7 ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x35b344da ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x369d2338 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x38d676c6 osd_req_op_extent_osd_data_bio +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 0x44588436 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x44f2a273 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x46ec7f1b ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x47a9920e ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x4879dded ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x50b1d599 ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x5245ec6f osd_req_op_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 0x5bee52a6 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5dbe6953 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x60ce9c73 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x62aa517c ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x66daaa92 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x66dad024 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x6876b669 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6b8d2361 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x7308098d osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x74ab7402 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x759fab78 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x777ed4ce ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x7de73a0e ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x80063871 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x8130fa38 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x81a7e304 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x820d4352 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x851ae6a3 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x85a50df3 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x88e6df19 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x89144226 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x9032c794 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9142bbd1 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x91df4219 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x95caea41 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0x9f7e0e00 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0xa1ebde8f ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0xa218efe9 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xa4b5996f ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xa6f7e3e0 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xac2d2302 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xaf6d1b56 ceph_osdc_put_request +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 0xb5789230 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xb87cfca9 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xba6b3439 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xbab978d6 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc2b3a26a __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc539e590 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xc60d22eb ceph_oloc_oid_to_pg +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 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd4ab6926 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xd5383217 ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd813625e ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xd96bfdef ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xd9eabdd2 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0xdaadbe39 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0xddd63238 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xde0eb6ba ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0xdfc8c92b ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xe20e15e4 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xe3b658be ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0xe55d9bcd ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xe62fcd4a ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xea51c681 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xeb89b44d ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xecabcbfa ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xecc71dda osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xef833107 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xf5b2d6df ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xf89143d6 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xfa0515dd ceph_print_client_options +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2372a1ae dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8651044e dccp_syn_ack_timeout +EXPORT_SYMBOL net/ieee802154/ieee802154 0x52161b81 wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x566bc6ed wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x9aaf13ab wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb076f93b wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xb938a0e7 wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf0333eb1 wpan_phy_new +EXPORT_SYMBOL net/ipv4/fou 0x0c07b4a3 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x50b7139c gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x7ef7a2ee fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xed741d6f gue_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x0918337f ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x2bef4201 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x34fc9909 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3b4eff7c ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xab5d6d75 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xfe0fc962 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1b1b2503 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6a415d54 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x94ee1436 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x2879b589 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xb0d68ffc ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xbd894ea7 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x87c30b2f xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0xd1b66d50 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc10b6f8e udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x5cb14f74 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x9ae0b242 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xad6def21 ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xae58c4a1 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x21c6cf69 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x82e58f5c ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc0b2e22e ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xa6af95f0 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xf620bc83 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x1f65f1ab xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x48e6a701 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x0d934ac5 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x54ab20e0 ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x592e8ac5 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x5ef38456 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x68f12033 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x6c9abf55 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7d54e95f ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc891eb23 ircomm_close +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x046c0429 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x06a3ee58 irias_new_integer_value +EXPORT_SYMBOL net/irda/irda 0x07d3647c irlmp_register_service +EXPORT_SYMBOL net/irda/irda 0x0ffebc75 iriap_close +EXPORT_SYMBOL net/irda/irda 0x116e89d1 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x1a286c9c iriap_open +EXPORT_SYMBOL net/irda/irda 0x1aa71900 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x1c3fbfb2 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x1c78f7a1 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x20858cab irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x258df371 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x35904a72 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x3b6efeb0 irlmp_close_lsap +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 0x5cd07a3b irttp_flow_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 0x6cc93c87 irda_notify_init +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 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0x96665d0b irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xacf4762b irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xad0dc37e async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xb0bf8ca7 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xb2b157fc 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 0xbead8851 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xc5db3668 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xcadbc5e8 irlap_open +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +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 0xe5fd22bd irttp_dup +EXPORT_SYMBOL net/irda/irda 0xe9f7f820 irda_device_set_media_busy +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 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xf63dc227 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xfe218cd7 irlap_close +EXPORT_SYMBOL net/l2tp/l2tp_core 0x2b0f38c2 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0x332f3b30 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x501eb756 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x574a66a8 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x5f16ad84 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xaeb7c946 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xc6e35db9 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xd128619c lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xe1d71adc lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xef0b77a8 lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x0ec760c4 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 0x96302b6e llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x9a43d793 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xadf36ab3 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xbed7c4f3 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0xe2530f77 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xfe0b31a6 llc_set_station_handler +EXPORT_SYMBOL net/mac80211/mac80211 0x02166686 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x04e7e0fa ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x06d01e7c ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0bde451d ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x12b505cd ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0x179ef1b8 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x18d68e28 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x19eb5952 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1ce81e63 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x1d653a87 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x202ef529 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x23709b36 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x273a5419 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x274450f4 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x29943292 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0x2d3dbf0d ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x30799af9 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x3220ea45 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x337f1be8 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x35fb1419 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x374d63fd ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x38518c42 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x3acf6088 ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x3d4f4602 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3e321622 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4329f4cb ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x49d3e12b ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4d2d414b ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x4f004dbc ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4f568630 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5f05c144 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x6409c52c ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x6465ddd5 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x65c01625 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x683d4297 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x69de096c ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x74c747d4 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x76b9ef28 ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x7710e486 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x799456cb ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x7b99eebc rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x7eae5721 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x7ed3a576 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x7f0235c1 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x7fcb0346 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x80607b90 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8386148c ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x85e1a1f4 ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x8c8c6370 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x8fc39459 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x9164f447 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9542086c ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x9ef51646 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x9f6014a7 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xa90c360f ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xaf9282ea __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb1aaef91 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0xb3604a99 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb398bd26 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xbaa62eaa ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xbab79182 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xbd9b3017 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xbe8ddebb ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xbfd535db __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xc58b58d6 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc77e992e ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0xc9084686 ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xc95afebc ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xd35800b2 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xe1cf6eae ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xe2a4a2ad ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0xe740ab21 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xe78c36c0 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xe8bc0eff ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe90565d2 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xec70f0d9 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xeeab78d4 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xf2ff0a09 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf765ce8d ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xfa93b7ba ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0xfbb0ab34 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xfc365f46 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x0e8e1efc ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x24c036b5 ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x579689df ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8e7eca99 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xa2e48842 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xae336ea3 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xb6d23e90 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xf098fcc7 ieee802154_register_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x136e7d37 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2976e883 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2ddfde89 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x49c8c165 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x4c21a6f6 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7adf4ac4 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7c5915fe ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x82930d54 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb4941fc3 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc2808160 register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe48bdba2 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xedc3de8f unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf3df2aec ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf879991f ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x4a3e4e53 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x694c8017 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x6cdecf8b nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x063f6e5a nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x3406016f nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x34ee72ea nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x990d636c __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xa9e1e1c8 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0xfc5d101d nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x37e564a1 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x3f00d011 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x666fdfc9 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x66d1dc7f xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x9df28d45 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xcdbc444e xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe2e58459 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0xe682bac9 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xfca84162 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xffc3f439 xt_unregister_matches +EXPORT_SYMBOL net/nfc/hci/hci 0x0675d8b5 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x0ab12b24 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x18138f8f nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x1f6540bd nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x2f731966 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x440506e9 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x4da5dabf nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x54a47a38 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x60b37f27 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x618a8985 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x680ee744 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7e2bae10 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x80af7a7d nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x877ce790 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x8b842dc8 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x98650549 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0xa7813ee6 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xa7e92b5b nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbf9acf15 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xefdbc8cf nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xfa1fabb7 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/nci/nci 0x191c4e2c nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x1e1514c0 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1f57f5bc nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x24e06b20 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x2c473924 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x2ea75b41 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x30425251 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x4ef3395d nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x5010e609 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5154f3e7 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x528ef63b nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x57e860ee nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x687ed27f nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x70d283f2 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x802ae4d1 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x82ce1227 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x870c6794 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x886c5139 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x91895370 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x92c9e489 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x948fa067 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x9d7456fd nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xa2642ce3 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xaa20e1c3 nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xab665f6a nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xb977e460 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbe948c2a nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xceb5b7e4 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nfc 0x06a77112 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x0fffffde nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x18affd0f nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x2d31c28f nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x2e9d497c nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x3c5877e4 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x3f75d742 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x47e685a1 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x7fbf99ae nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x84a9359e nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x86addf3e nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x8e507c20 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x97fabdfb nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x9e0bd050 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xa73f7871 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0xb74e0c2d nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xb7619977 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xc4a52152 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xc9409c7f __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xc94a3015 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0xd210f8ff nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xf43254b9 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0xfa5fe722 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xfb930f79 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc_digital 0x0b40d186 nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x73e65173 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc083dbbc nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xfb500515 nfc_digital_allocate_device +EXPORT_SYMBOL net/phonet/phonet 0x34c28a52 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x730dc887 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x8a6e03c2 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0xa038b399 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xa6bfe7f9 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xb35af422 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xb9fe27cf phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xdc41784d pn_sock_get_port +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2317013f rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2b6451b6 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2cb826e7 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2f90769f rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x566feb4a rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8ab90e33 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x8b3b0ca8 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb089ba41 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb3bdd43a rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbd5e0247 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbe8af9a0 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc1d58f06 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xcb901daf rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf5a12d84 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf757db6b rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/sctp/sctp 0xdbcd7b25 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x1f6c64cf gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x7a339366 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x814b309b gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x126ec937 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0x1aba1f82 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0x6fb79ef0 xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x144a5ffa wimax_rfkill +EXPORT_SYMBOL net/wimax/wimax 0xe3a2e13e wimax_reset +EXPORT_SYMBOL net/wireless/cfg80211 0x029e914a ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x037b33f2 regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x03cc9c14 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x06ddaff1 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0e1c49e4 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x1252cb64 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x125b8ea4 wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x189a02a8 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x18bb517a cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x19187a0a cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1bd31cc0 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x1ed9eba0 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x270f0c05 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x2bd6920c cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x32d31737 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x38d63bd2 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x3addd730 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x415f1caa wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x42c6a379 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x491baaf8 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x49a54f14 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x4c15a824 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x53f59c69 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x578713fe cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x5c0783f1 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x5fd6e6bf __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x62267eef cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x622cb22c __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x62a20f30 ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x62c806d4 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x65fbe4bb cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x67932fe8 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6c1926ee cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6dd2e04a cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x72230db7 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x7700a44d cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x7bef8282 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7f7f0418 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x860c874c wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x864b0ff0 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x886cbe70 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0x8a0d1937 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b293c6b freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x8be8e9ed wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x8c0d1c9c cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x8e35fc35 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x921ab1e3 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x966ff54d ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x97df30bb cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x98783147 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x9b18b951 cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x9d0324ca cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x9d804545 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x9d9a8eb4 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x9fa4a533 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 0xa2128f52 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0xa58122e6 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xa840d387 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xaa175ec0 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xaaeadf82 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xaf5a15a1 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb5edf79e cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xb63b9430 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0xb9727edb cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xba0b2974 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xbbae367c cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc2b40cb0 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc49855ea cfg80211_check_station_change +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 0xce43d7e6 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xd08e1a9b cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0xd4d8b842 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xd58d847d cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xd9b958bb cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdf0a359d cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xe03ad4d0 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xe6276c44 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xeb6d7c6c ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf2694427 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xf4ed76f3 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xf54ee579 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xf7e38ab5 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xf8dcae8e cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xfaed2e76 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xfe62d934 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x008bac3e lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x0ee603c6 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x231f0169 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x7e6e82ab lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x8bea4ac1 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xbdce6fb2 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL sound/ac97_bus 0x8606a17a ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0xc27943c5 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 0x502ff651 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x5abaa8f0 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 0x8d7fe2c7 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x9952a28d 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 0xd0a4af8a 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 0xc8430b4e snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x0337afde snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x0b590e84 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x0f88f580 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x132d9c74 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x13b7cdf8 snd_ctl_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 0x19aeac51 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x29027539 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0x305746e9 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3a764872 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x3dac4520 snd_component_add +EXPORT_SYMBOL sound/core/snd 0x40a6bbfd snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x4323db2e _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4fcf2ea4 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x602c96f0 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x629a681b snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x70c5d11c snd_card_register +EXPORT_SYMBOL sound/core/snd 0x755c722b snd_power_wait +EXPORT_SYMBOL sound/core/snd 0x7df1c35e snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x80e254f5 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x8115f03c snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8867522d snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x930a0ecb snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x94c1d55a snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x992da15a snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x99c0a566 snd_card_new +EXPORT_SYMBOL sound/core/snd 0x9b103f74 snd_ctl_rename_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 0xa31d6a79 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xb4e47b07 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xb91f7487 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xb954fbdf snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0xbb1df0a7 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0xbf69f689 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xc0367612 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xc68983e5 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0xc99897e6 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xce3ca308 copy_from_user_toio +EXPORT_SYMBOL sound/core/snd 0xd0abdafd snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xd1157735 release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0xd139b288 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xd20df31b snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xd2576b6a snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xdcc747b7 snd_card_free +EXPORT_SYMBOL sound/core/snd 0xe5612478 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xe6f349f5 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0xe7cc2828 snd_cards +EXPORT_SYMBOL sound/core/snd 0xe8508cde snd_device_new +EXPORT_SYMBOL sound/core/snd 0xfc4ea43d snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xfe76f91d snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xff29c1ee snd_register_device +EXPORT_SYMBOL sound/core/snd-hwdep 0x19684dd3 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x00d87808 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x044f8290 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x05a66f3b snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x090569ef snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x0dfb799a snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x172d2ad6 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x194ff698 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x1bcbb0b3 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x22bae2fc snd_pcm_suspend +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 0x3fa84354 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x4714dd43 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x4c62b5c4 snd_pcm_hw_constraint_minmax +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 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 0x69789048 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7454df13 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x761e76d4 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x7957f084 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x9224ee2c snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x974c66fd snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x97fbbe67 snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x99245d57 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x994954b4 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x9f6ce02e snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xa152846b snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xa4cfe713 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa6f7ec31 snd_dma_free_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 0xaeba3cdd snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb13b9a24 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xb560bd9d snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xb7ed272a snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xba5113be snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xbc7139b7 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xbe8a1c8b snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xc0483e71 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xc787a793 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xcdebd83e snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xce8acf8d snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xd4a5c5db snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xd6c8acd3 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xd97157e1 snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xe33d0aa3 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xe36f917d snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xe47e3a4e snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xeed1afb8 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xf223d1fc snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xf74b36d6 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0xf9f01516 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xfc891f05 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2acf3822 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2ce3415e snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2fecf8f5 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3633f080 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x3bc89139 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5d401076 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6414b5fe snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x655765d2 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x96e0ae49 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9812a015 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa7a7208c snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0xaafc9d64 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xca1b918e snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xda22cf78 __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xddca5fe5 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe4abf38d snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf0a6480d snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf4be8929 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xf6175000 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-timer 0x34a73363 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x64ceb648 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x64d4197d snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0x70518e44 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x790b171c snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x838db808 snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x85b842d6 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x8fe291c9 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xd4504601 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xd50a228f snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xdc18e492 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xdcda9313 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xebb66d85 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 0x9510e55b 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 0x0f66a5fa snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3ed06f5e snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x40cf1074 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5537816b snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6fdd33c8 snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xa73de1c1 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xab29d7b8 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xbacf9559 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc0fc7dc2 snd_opl3_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x0411e4fe snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x453e9a97 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x46c83c41 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x516d2444 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7736a6b8 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9431544f snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x9458bdd1 snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa64dee31 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 0xf81d1b9b snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x117c5820 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1d2c62fd cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x217186b9 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x23130275 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x34dee824 snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a476fb2 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x48af2b61 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4faef56b cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x527622d3 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5749fd5b amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6edf7f4e amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76dca249 amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7d0662ba cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7ec2f23b iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x81ae95d3 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8d034818 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8f634fa1 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaa65b653 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb1433dd6 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb62376c8 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb7c6d17e amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbda6cb4c amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc2015d95 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcb9d1ce8 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd02f346c fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd2494c03 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb8d064b fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe0ccbcf4 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe95d36c9 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xed5ab9ef fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfc66ba1c fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd3ddbbe cmp_connection_check_used +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x15c5c994 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x42e2bfd5 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x0d7c861b snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2f58ce54 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x49074c89 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6316c7b7 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x88886e25 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaf4921d9 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcc7184e1 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xcd412e79 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x0aad11e3 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x5a25cb7f snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8efe45e0 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xaeb72a6f snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc1e91c66 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf71a84f8 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x75a42d33 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x87e36762 snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xa93e9e74 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xe61d45d9 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x1b744b2b snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x3e1a5574 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x2e9cd950 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7e902a49 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xac3d558b snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe6e9f4f0 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xe96750b6 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xec0882ec snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-i2c 0x1618a84c snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x3e4b662d snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x8cb95c3b snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xacd81edd snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd081b5e7 snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe0b77e46 snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x022867b9 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x10a465d1 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x508cb6ac snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x56403ff9 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x580644ad snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x58361ce5 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6f7bd543 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xdad89363 snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf18fa454 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfd66352e snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x004159f0 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x058fb77e snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x23f570da snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x31c31366 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x579e141f snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x79209ae0 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x91863ff8 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x951434bc snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x972938c5 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9b72f72b snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9cb8908a snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9ec9b1c3 snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa009f708 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa1985505 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa6ca8c84 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xad49290a snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe66ea1ea snd_ac97_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x5e732ab0 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7ea38fb5 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8072568a snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x830edef9 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8d975449 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x8e92728f snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x98927ed4 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9c0eb836 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xd8f2b3db snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x4d9bdec4 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x55022ac3 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xc796e120 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0985ba42 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x09b5ced5 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0dde222b oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1578f883 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1d4ddcd2 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x465c163a oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x69b67a98 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7d59c0e2 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8db8938b oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8e6db22a oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8f1ccde6 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x93d165be oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb3bcd5c2 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb623cc40 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb8ed3b86 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xbc9a5027 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc01f0473 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc4ca5ebd oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd5836642 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xde733bc8 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfe33b47f oxygen_write16 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1f1ecff7 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x274a08f3 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x4a11b7bc snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x9d10218f snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb95c0de9 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x2d0fd519 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x551f23fb tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/snd-soc-core 0xd59781a1 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x0ab7528e sound_class +EXPORT_SYMBOL sound/soundcore 0x4d04868c register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x60af7bd6 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x70332823 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xc8fa3cc5 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xe7579b67 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x196e25b8 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x4cab8571 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 0x90d952b1 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xcf5f374f snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xd4def06c snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xec51b6cf snd_emux_free +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 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 0xe22f1aef snd_usbmidi_create +EXPORT_SYMBOL vmlinux 0x001aa444 of_device_is_available +EXPORT_SYMBOL vmlinux 0x002141e8 i2c_transfer +EXPORT_SYMBOL vmlinux 0x002354df dev_load +EXPORT_SYMBOL vmlinux 0x003ed69a __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x0059e224 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x005a1638 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x00692612 down_write +EXPORT_SYMBOL vmlinux 0x006e1b74 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x008293c4 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x008686c4 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x00a73b94 dst_destroy +EXPORT_SYMBOL vmlinux 0x00aca388 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x00b9c724 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00e0a2e3 zpool_register_driver +EXPORT_SYMBOL vmlinux 0x00f4941e get_tz_trend +EXPORT_SYMBOL vmlinux 0x00ffd0e4 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011d5e18 lease_modify +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x012b3aef tcp_filter +EXPORT_SYMBOL vmlinux 0x013d29f7 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x015c16ac d_alloc_name +EXPORT_SYMBOL vmlinux 0x0169b9ec skb_copy_bits +EXPORT_SYMBOL vmlinux 0x016cd738 have_submounts +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x016e82bd xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x0170b6a3 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x01763365 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x01820374 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x0186e2de smp_call_function_many +EXPORT_SYMBOL vmlinux 0x01b9f247 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x01cba00c blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x01fa1982 dquot_enable +EXPORT_SYMBOL vmlinux 0x020f52e7 km_state_expired +EXPORT_SYMBOL vmlinux 0x020fd27e tcp_proc_register +EXPORT_SYMBOL vmlinux 0x02127f53 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x02226ce3 tty_check_change +EXPORT_SYMBOL vmlinux 0x024660c7 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x024c95f9 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x025697a9 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x02936a95 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x02986924 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x0298c88d xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ac0f7a dev_get_by_index +EXPORT_SYMBOL vmlinux 0x02b1e9bc pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x02b9bc87 scsi_host_get +EXPORT_SYMBOL vmlinux 0x02d35d0c scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02ee26c1 free_pages_exact +EXPORT_SYMBOL vmlinux 0x02f23192 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x02f386fa pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x02f8cf71 d_walk +EXPORT_SYMBOL vmlinux 0x030affd9 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x030eb3c7 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x031e040b end_page_writeback +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x034157a3 loop_backing_file +EXPORT_SYMBOL vmlinux 0x0358d354 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x03621235 eth_gro_complete +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x0379006f __free_pages +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037d2bf5 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x03810131 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x038dd942 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x0399905d vfs_llseek +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x041560e3 security_inode_init_security +EXPORT_SYMBOL vmlinux 0x041c8433 iunique +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x04304d9f truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x046fa788 down_read +EXPORT_SYMBOL vmlinux 0x04712715 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x048fc55e qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x04953833 vfs_mknod +EXPORT_SYMBOL vmlinux 0x04a1e0bd dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x04afd4fb release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x04d7c3b8 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x04e17e29 nf_getsockopt +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 0x052d3333 dev_notice +EXPORT_SYMBOL vmlinux 0x052e388d tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x0539d50b mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x05521f8d try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x05552320 __mutex_init +EXPORT_SYMBOL vmlinux 0x055a4e10 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x055ddd64 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x056ee2d9 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x057f4d5a kmap_high +EXPORT_SYMBOL vmlinux 0x059ed5be from_kuid_munged +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05be8577 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x05f387ad d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x0607613a __ip_select_ident +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06350beb path_get +EXPORT_SYMBOL vmlinux 0x06529f68 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x0659176d proc_set_user +EXPORT_SYMBOL vmlinux 0x065c7184 nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x0672fdfb param_set_uint +EXPORT_SYMBOL vmlinux 0x0675c7eb atomic64_cmpxchg +EXPORT_SYMBOL vmlinux 0x067621b7 tty_do_resize +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x069d9907 napi_get_frags +EXPORT_SYMBOL vmlinux 0x06a2446e proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x06ae5be2 __sb_start_write +EXPORT_SYMBOL vmlinux 0x06e285cc inet6_offloads +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f7f2a swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0740c489 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x07a4a06c tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07abcaad mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x07b028fb tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x07bb5072 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07dced60 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x07ee197b md_write_end +EXPORT_SYMBOL vmlinux 0x07f234c9 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x07f301ad bitmap_unplug +EXPORT_SYMBOL vmlinux 0x07fe55c2 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x08017128 blk_start_request +EXPORT_SYMBOL vmlinux 0x0828a892 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0873eb87 dst_discard_out +EXPORT_SYMBOL vmlinux 0x0875f83c inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x087e4e07 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x08943252 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x08951ff0 dquot_commit +EXPORT_SYMBOL vmlinux 0x08ba7bf9 del_gendisk +EXPORT_SYMBOL vmlinux 0x08bfc3b9 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0x08d36ed9 d_delete +EXPORT_SYMBOL vmlinux 0x08d76bd5 unregister_key_type +EXPORT_SYMBOL vmlinux 0x08df9457 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x091afbf3 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x09277f05 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x0937449f tc_classify +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x095c0772 netif_napi_del +EXPORT_SYMBOL vmlinux 0x0967f0bc devm_gpio_request +EXPORT_SYMBOL vmlinux 0x0979cfa3 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x0982f3a5 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x09834ef8 param_ops_bint +EXPORT_SYMBOL vmlinux 0x0984ac49 __module_get +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x09b8e6c9 tty_unlock +EXPORT_SYMBOL vmlinux 0x09bbbb91 trace_print_symbols_seq_u64 +EXPORT_SYMBOL vmlinux 0x09bd33f8 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09c67afb flex_array_get +EXPORT_SYMBOL vmlinux 0x09c8eb55 font_vga_8x16 +EXPORT_SYMBOL vmlinux 0x09c8fdc4 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d984de nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x09e2552e serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x09f23a58 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0x0a1a75f9 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a2c3d7d iterate_fd +EXPORT_SYMBOL vmlinux 0x0a3131f6 strnchr +EXPORT_SYMBOL vmlinux 0x0a373226 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x0a469d23 mfd_clone_cell +EXPORT_SYMBOL vmlinux 0x0a65d50e ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0x0a722a21 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0abeefd6 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad2965e generic_block_bmap +EXPORT_SYMBOL vmlinux 0x0ade8d78 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x0ae0399c xfrm_input +EXPORT_SYMBOL vmlinux 0x0ae8126e tcp_conn_request +EXPORT_SYMBOL vmlinux 0x0af71c88 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x0b010730 d_genocide +EXPORT_SYMBOL vmlinux 0x0b0970ca __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b117432 agp_put_bridge +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b36af76 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x0b48677a __kfifo_init +EXPORT_SYMBOL vmlinux 0x0b5be302 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b6151b0 iterate_dir +EXPORT_SYMBOL vmlinux 0x0b62652a get_task_exe_file +EXPORT_SYMBOL vmlinux 0x0b683f3c param_get_long +EXPORT_SYMBOL vmlinux 0x0b7135fb sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b816ae5 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x0b8b4370 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x0bab0769 filp_close +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0c072cf8 bdi_destroy +EXPORT_SYMBOL vmlinux 0x0c12e626 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x0c1632a0 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x0c29f846 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c47188b __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c6fe0fb bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x0c865895 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x0c965061 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x0c9b6089 nvram_get_size +EXPORT_SYMBOL vmlinux 0x0c9ccf7f follow_down +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0ca5d047 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb558b7 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x0cb5d978 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x0cbfae38 cdev_init +EXPORT_SYMBOL vmlinux 0x0cc49d83 generic_write_checks +EXPORT_SYMBOL vmlinux 0x0d3b68ff may_umount_tree +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d664ee3 bdput +EXPORT_SYMBOL vmlinux 0x0d697940 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x0d6f2989 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x0d8b969b blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x0d8f765e udp_proc_register +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da4b0ea devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x0dbf38b8 mol_trampoline +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dc1a78c bin2hex +EXPORT_SYMBOL vmlinux 0x0dc7c7ab dev_activate +EXPORT_SYMBOL vmlinux 0x0e0681fd scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x0e27d379 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x0e2ccbd2 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x0e5fe2b7 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e89dddd macio_unregister_driver +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e97ec33 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x0eaf451e hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x0eb552df swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x0ec09074 mmc_of_parse +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eca0614 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x0eea0399 strscpy +EXPORT_SYMBOL vmlinux 0x0eeed635 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x0ef20db1 kernstart_addr +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f144f9d inet_frags_fini +EXPORT_SYMBOL vmlinux 0x0f1530b6 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x0f23471a __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x0f28cb91 nvram_read_byte +EXPORT_SYMBOL vmlinux 0x0f2d8a18 __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f501d64 kthread_bind +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 0x0f8d2fc9 input_set_abs_params +EXPORT_SYMBOL vmlinux 0x0fa33257 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbc11e8 __register_chrdev +EXPORT_SYMBOL vmlinux 0x0fcbd160 path_is_under +EXPORT_SYMBOL vmlinux 0x0fdbd70c scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x0fe75e33 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x0ffd098a mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0x10119060 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x10133fac __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x104b79a0 sock_i_uid +EXPORT_SYMBOL vmlinux 0x10602a53 nf_setsockopt +EXPORT_SYMBOL vmlinux 0x1061dd33 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x106d5da4 follow_up +EXPORT_SYMBOL vmlinux 0x106f13ab crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x107b7a22 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1090169b prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x10981bf9 irq_set_chip +EXPORT_SYMBOL vmlinux 0x10991b35 fddi_type_trans +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x11051b30 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x110944a1 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x110d7423 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x11145431 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0x1126bd46 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x11290a8c inet_csk_accept +EXPORT_SYMBOL vmlinux 0x112d1cdd pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x114f0aa9 mach_powermac +EXPORT_SYMBOL vmlinux 0x115fcad6 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x11663cec adb_register +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11affa20 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x11b5f1d1 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x11b8a7d2 igrab +EXPORT_SYMBOL vmlinux 0x11b933d7 iterate_supers_type +EXPORT_SYMBOL vmlinux 0x11cd7e52 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x11cdef41 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0x11f58a80 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1275a408 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x1286ccdf led_blink_set +EXPORT_SYMBOL vmlinux 0x129eeb32 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12da5bb2 __kmalloc +EXPORT_SYMBOL vmlinux 0x12e139b6 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x12f90638 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x130e951e tcp_read_sock +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x1331330e reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x1339e98b netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x1393d9dd netdev_printk +EXPORT_SYMBOL vmlinux 0x1394fa5c netlink_unicast +EXPORT_SYMBOL vmlinux 0x13950e0e __neigh_create +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d79692 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x13df4e89 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f537df kern_unmount +EXPORT_SYMBOL vmlinux 0x1407c6e7 kmap_prot +EXPORT_SYMBOL vmlinux 0x14142706 dev_remove_pack +EXPORT_SYMBOL vmlinux 0x1419262e skb_free_datagram +EXPORT_SYMBOL vmlinux 0x1420b379 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x1421b820 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x14538eea kill_block_super +EXPORT_SYMBOL vmlinux 0x146a17a0 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x14998c3d key_unlink +EXPORT_SYMBOL vmlinux 0x149fa92f nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x14aaaa41 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14cf4aed tcp_poll +EXPORT_SYMBOL vmlinux 0x14df7988 inode_init_owner +EXPORT_SYMBOL vmlinux 0x14f22895 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x14f956bb blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x14ffa57f kfree_put_link +EXPORT_SYMBOL vmlinux 0x1501e7d0 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x15299fda security_path_rmdir +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1563b7bf page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0x1568abd5 seq_release +EXPORT_SYMBOL vmlinux 0x157fbe3e skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x158ddc79 key_task_permission +EXPORT_SYMBOL vmlinux 0x15ae047f scsi_device_resume +EXPORT_SYMBOL vmlinux 0x15b41a56 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15be8a8e param_get_short +EXPORT_SYMBOL vmlinux 0x15cc2249 phy_start +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15ddb675 blkdev_get +EXPORT_SYMBOL vmlinux 0x15f0a5c8 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x160cf9fd __splice_from_pipe +EXPORT_SYMBOL vmlinux 0x161d0033 proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0x16254775 vfs_writef +EXPORT_SYMBOL vmlinux 0x162d21c2 md_flush_request +EXPORT_SYMBOL vmlinux 0x163481a8 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x16540bbc __cmpdi2 +EXPORT_SYMBOL vmlinux 0x166e822a param_set_charp +EXPORT_SYMBOL vmlinux 0x1679c13e dentry_open +EXPORT_SYMBOL vmlinux 0x1683a50b radix_tree_delete +EXPORT_SYMBOL vmlinux 0x16892530 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x16994cfb param_set_invbool +EXPORT_SYMBOL vmlinux 0x16b77f2c mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x16bc4c5b blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x16bfc2ce skb_checksum_help +EXPORT_SYMBOL vmlinux 0x16c837e6 dma_common_mmap +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ea13b0 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x16f937b8 vfs_create +EXPORT_SYMBOL vmlinux 0x170e28fd i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x1712ff4d blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x17203082 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x17478a6a mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x174afb1a __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0x1751936c fb_set_var +EXPORT_SYMBOL vmlinux 0x17531566 dentry_unhash +EXPORT_SYMBOL vmlinux 0x17609b1a tty_port_init +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x17770062 __devm_release_region +EXPORT_SYMBOL vmlinux 0x178403c0 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x1785959d ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x17897359 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x179c7087 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x179d030d init_task +EXPORT_SYMBOL vmlinux 0x17a1ef31 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x17aa156a __ucmpdi2 +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b2c5e3 vme_irq_handler +EXPORT_SYMBOL vmlinux 0x17c82bdf dev_open +EXPORT_SYMBOL vmlinux 0x17de8a65 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f0e8da __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f49e39 key_reject_and_link +EXPORT_SYMBOL vmlinux 0x180a5626 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x181fe99c sock_no_poll +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183e1146 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x18547a5f nf_afinfo +EXPORT_SYMBOL vmlinux 0x185b53c6 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x1877b786 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x187a19eb tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x188ea314 jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18c2227f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x18d01857 drop_super +EXPORT_SYMBOL vmlinux 0x18dfb89d locks_free_lock +EXPORT_SYMBOL vmlinux 0x18e101cf sock_setsockopt +EXPORT_SYMBOL vmlinux 0x18e37a54 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18ff08e8 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x1928168f inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x19290768 inet_frag_find +EXPORT_SYMBOL vmlinux 0x1955ddab inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x19595c05 put_filp +EXPORT_SYMBOL vmlinux 0x196048e6 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x19610e1f cpu_all_bits +EXPORT_SYMBOL vmlinux 0x196a2d1d __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x1993bce8 icmpv6_send +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 0x19f2013b pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x19f4252f udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x19fb746d netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x1a19d9aa dma_find_channel +EXPORT_SYMBOL vmlinux 0x1a619b01 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x1a6bd71f blk_fetch_request +EXPORT_SYMBOL vmlinux 0x1aafc325 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x1abfa75c mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x1add71a2 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1afa4e16 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x1afdb01c pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b62ed25 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b7d7115 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1baa3e7c neigh_update +EXPORT_SYMBOL vmlinux 0x1bb1dc39 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb43e1a lock_sock_fast +EXPORT_SYMBOL vmlinux 0x1bbb8933 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x1bc3f471 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1bd6c15e __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x1bf21cd1 param_ops_byte +EXPORT_SYMBOL vmlinux 0x1bf3874b iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x1c023b3b devm_memunmap +EXPORT_SYMBOL vmlinux 0x1c10bed0 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x1c180d73 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x1c3091eb tty_port_close +EXPORT_SYMBOL vmlinux 0x1c451514 phy_init_hw +EXPORT_SYMBOL vmlinux 0x1c499c82 secpath_dup +EXPORT_SYMBOL vmlinux 0x1c537f56 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete +EXPORT_SYMBOL vmlinux 0x1c68ee55 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c85034e __secpath_destroy +EXPORT_SYMBOL vmlinux 0x1c86921d of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x1c886c83 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x1c8d9246 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x1cb64acb blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x1cc827a6 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x1ce0c1b3 of_get_property +EXPORT_SYMBOL vmlinux 0x1d15ca66 scsi_host_put +EXPORT_SYMBOL vmlinux 0x1d237fea blkdev_fsync +EXPORT_SYMBOL vmlinux 0x1d2e2f57 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x1d2ef47a bio_put +EXPORT_SYMBOL vmlinux 0x1d4ae56f pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x1d6336b9 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x1d6622eb iterate_mounts +EXPORT_SYMBOL vmlinux 0x1d675966 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x1dab73a2 blk_init_tags +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dbf9250 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dcdd299 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1de212de nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x1e0bac04 udp_seq_open +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e47c908 alloc_disk +EXPORT_SYMBOL vmlinux 0x1e4912cd pci_request_region +EXPORT_SYMBOL vmlinux 0x1e5a5efc jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x1e5cda09 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x1e5e9567 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e83370a __blk_run_queue +EXPORT_SYMBOL vmlinux 0x1e8c12c2 param_ops_string +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1efd7e21 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x1f3ee5f2 udp_ioctl +EXPORT_SYMBOL vmlinux 0x1f59b1a9 force_sig +EXPORT_SYMBOL vmlinux 0x1f7e807f kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x1fa8cf72 security_path_rename +EXPORT_SYMBOL vmlinux 0x1face567 d_splice_alias +EXPORT_SYMBOL vmlinux 0x1faf674a kill_bdev +EXPORT_SYMBOL vmlinux 0x1fba848e pcie_get_mps +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fd55d1b sk_stream_error +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x20030ecd ioremap +EXPORT_SYMBOL vmlinux 0x20089d4c d_add_ci +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201919e6 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x202a54f1 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x20366d3d netdev_err +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 0x20a0a7f5 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ae46f5 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x20ae58d0 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x20bf2756 param_set_short +EXPORT_SYMBOL vmlinux 0x20c2015d of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d6d0ef __getblk_slow +EXPORT_SYMBOL vmlinux 0x20e9dda4 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x21220cd4 blk_queue_split +EXPORT_SYMBOL vmlinux 0x2139cadb pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x214e9fc1 ps2_command +EXPORT_SYMBOL vmlinux 0x2157965d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x2167db87 nla_reserve +EXPORT_SYMBOL vmlinux 0x217a30a9 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x217a7b12 complete_request_key +EXPORT_SYMBOL vmlinux 0x2183de51 rwsem_wake +EXPORT_SYMBOL vmlinux 0x219299b8 cdev_del +EXPORT_SYMBOL vmlinux 0x219cb299 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x21ab2672 read_cache_pages +EXPORT_SYMBOL vmlinux 0x21b6ea8d phy_attach +EXPORT_SYMBOL vmlinux 0x21d0afeb of_match_device +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x220939e5 unregister_quota_format +EXPORT_SYMBOL vmlinux 0x220b9b7b netdev_notice +EXPORT_SYMBOL vmlinux 0x22282071 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x222f6207 __nla_reserve +EXPORT_SYMBOL vmlinux 0x22427d8c devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x22562a5c dev_warn +EXPORT_SYMBOL vmlinux 0x2256fafa div64_u64_rem +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x226c1343 try_module_get +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x22a6e48f mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22bf192b tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x22da599e tty_port_open +EXPORT_SYMBOL vmlinux 0x22dfdd06 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x22fa8c9c ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x23206b2a current_fs_time +EXPORT_SYMBOL vmlinux 0x2325742a netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x232b9884 block_read_full_page +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x23583903 vc_resize +EXPORT_SYMBOL vmlinux 0x23595609 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x235ff013 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x236712f4 vme_irq_free +EXPORT_SYMBOL vmlinux 0x2384f72a ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x238d6d02 lock_rename +EXPORT_SYMBOL vmlinux 0x2394a626 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x239c3757 dget_parent +EXPORT_SYMBOL vmlinux 0x23a142fe __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b07151 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23e6389f lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23f8e30d unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x243db8a9 free_buffer_head +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24492f87 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245d06ce twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x245fd824 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x2467d69d ping_prot +EXPORT_SYMBOL vmlinux 0x2471fcf2 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x24895b7c pci_request_regions +EXPORT_SYMBOL vmlinux 0x249d4aff __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x249f5643 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x24b55e64 pci_bus_put +EXPORT_SYMBOL vmlinux 0x24b64d4a vfs_write +EXPORT_SYMBOL vmlinux 0x24b77cab neigh_seq_next +EXPORT_SYMBOL vmlinux 0x24b95ffa nobh_write_end +EXPORT_SYMBOL vmlinux 0x24c507e3 scsi_ioctl +EXPORT_SYMBOL vmlinux 0x24c5268b input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0x24c82b4c tty_port_hangup +EXPORT_SYMBOL vmlinux 0x24e1e638 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x24e6ae65 bd_set_size +EXPORT_SYMBOL vmlinux 0x24e8cfc7 find_vma +EXPORT_SYMBOL vmlinux 0x24ea79d1 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x24ff76b6 wireless_send_event +EXPORT_SYMBOL vmlinux 0x250113b4 memory_read_from_buffer +EXPORT_SYMBOL vmlinux 0x250ce330 __bread_gfp +EXPORT_SYMBOL vmlinux 0x250f5b04 make_kuid +EXPORT_SYMBOL vmlinux 0x25169478 tty_hangup +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x2527a087 vme_slave_set +EXPORT_SYMBOL vmlinux 0x2537d7d0 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x253d1703 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x254147b3 kmap_atomic_prot +EXPORT_SYMBOL vmlinux 0x25583a53 kernel_getsockname +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25712a5c mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x2572a511 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x2573589e search_binary_handler +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258c56a4 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x25997bc1 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x259fed3d scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x25ad5bd2 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x25b14874 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x25ba649a mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x25dfd885 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f3bd2e atomic64_xchg +EXPORT_SYMBOL vmlinux 0x2607e8fd sync_blockdev +EXPORT_SYMBOL vmlinux 0x2611cc02 keyring_search +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x264a9e09 seq_vprintf +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x2656e1e3 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x2658c358 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x265a0ed8 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x26800c05 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x2687136d netlink_broadcast +EXPORT_SYMBOL vmlinux 0x268b4a7a vme_master_request +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26bb950b __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26ec4b43 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x26fb998a tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x2706dd1b vme_bus_type +EXPORT_SYMBOL vmlinux 0x272c9acd pmu_battery_count +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x2753448c dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x276391bd pci_map_rom +EXPORT_SYMBOL vmlinux 0x2771d7ff ida_get_new_above +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x279bc253 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27ea73d5 generic_make_request +EXPORT_SYMBOL vmlinux 0x27efbc73 page_follow_link_light +EXPORT_SYMBOL vmlinux 0x280ada1f bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281d18f3 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x2831bffb bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x28389934 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x284016bf skb_copy_expand +EXPORT_SYMBOL vmlinux 0x2845a7ca xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x2848f414 lro_flush_all +EXPORT_SYMBOL vmlinux 0x284e0fd3 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x2870cd52 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x28772718 dev_set_group +EXPORT_SYMBOL vmlinux 0x2889c570 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x289db3ee idr_remove +EXPORT_SYMBOL vmlinux 0x28a2452a of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a7beba __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x28b9e79e blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x28c4a5da pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x28d05c34 __break_lease +EXPORT_SYMBOL vmlinux 0x28db160a __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28f784f5 __debugger_break_match +EXPORT_SYMBOL vmlinux 0x28fe32b7 of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x2901c099 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x2913d1cd md_register_thread +EXPORT_SYMBOL vmlinux 0x2914cc91 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x29203182 read_code +EXPORT_SYMBOL vmlinux 0x292a4651 down_read_trylock +EXPORT_SYMBOL vmlinux 0x292eb078 dev_addr_flush +EXPORT_SYMBOL vmlinux 0x292f178c neigh_for_each +EXPORT_SYMBOL vmlinux 0x294a075b inet6_add_offload +EXPORT_SYMBOL vmlinux 0x294f4092 generic_readlink +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x29664f95 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x29692716 udp_del_offload +EXPORT_SYMBOL vmlinux 0x29a72e97 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x29b49810 __register_binfmt +EXPORT_SYMBOL vmlinux 0x29b602d2 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0x29b8f499 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x29c794a3 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x29c90576 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x29d027f6 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x29d05090 tcp_check_req +EXPORT_SYMBOL vmlinux 0x29d8c02b i2c_master_recv +EXPORT_SYMBOL vmlinux 0x29e532b2 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0x29e7726a mdiobus_write +EXPORT_SYMBOL vmlinux 0x29edb5a4 mem_map +EXPORT_SYMBOL vmlinux 0x29fdda53 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0x29ff8e67 km_report +EXPORT_SYMBOL vmlinux 0x2a04cc3b nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x2a132de6 netdev_crit +EXPORT_SYMBOL vmlinux 0x2a1424d8 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x2a1b61e2 __scm_destroy +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a513402 neigh_xmit +EXPORT_SYMBOL vmlinux 0x2a699103 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x2a7cac99 pci_add_resource +EXPORT_SYMBOL vmlinux 0x2a7eabc8 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x2a86b644 sg_miter_next +EXPORT_SYMBOL vmlinux 0x2a877fd2 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x2a8ad227 phy_find_first +EXPORT_SYMBOL vmlinux 0x2aa0e4fc strncasecmp +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ab6791d seq_dentry +EXPORT_SYMBOL vmlinux 0x2ab894b5 iov_iter_init +EXPORT_SYMBOL vmlinux 0x2aba4118 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ada791b dev_deactivate +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b12925d cpumask_next_and +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b2cfb13 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x2b3502e5 file_ns_capable +EXPORT_SYMBOL vmlinux 0x2b389ce3 __kernel_write +EXPORT_SYMBOL vmlinux 0x2b427aa0 dquot_get_state +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba2877e ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2baab268 __block_write_begin +EXPORT_SYMBOL vmlinux 0x2bbf2871 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x2bc8c5ee unregister_md_personality +EXPORT_SYMBOL vmlinux 0x2bd9993a block_truncate_page +EXPORT_SYMBOL vmlinux 0x2be481e5 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x2be960a7 may_umount +EXPORT_SYMBOL vmlinux 0x2bfddb93 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x2c14323a kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x2c153b0e skb_append +EXPORT_SYMBOL vmlinux 0x2c1d689b input_inject_event +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c591f80 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x2c644c84 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x2c6e0c76 dev_close +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2ca5d5ef skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x2ceacd04 tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x2d100b84 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2949a3 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d48db5e dma_async_device_register +EXPORT_SYMBOL vmlinux 0x2d6000be pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x2d6697af tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0x2da84383 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x2da96617 genphy_suspend +EXPORT_SYMBOL vmlinux 0x2db17b14 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x2db5ea91 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x2dd339a2 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x2df078a3 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x2dffbffc generic_setxattr +EXPORT_SYMBOL vmlinux 0x2e0383e1 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e2dc3aa __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0x2e4a072d of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x2e4f932a load_nls +EXPORT_SYMBOL vmlinux 0x2e536fcf noop_fsync +EXPORT_SYMBOL vmlinux 0x2e5b83d6 get_super_thawed +EXPORT_SYMBOL vmlinux 0x2e66241e pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x2e723e0d abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x2eb9de02 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x2ec524ad __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f138f38 fb_pan_display +EXPORT_SYMBOL vmlinux 0x2f14d28e fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f640375 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x2f7b3926 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x2f94e1bb tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x2fab7e47 flush_tlb_range +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fce9a93 set_groups +EXPORT_SYMBOL vmlinux 0x2fd85689 inet6_getname +EXPORT_SYMBOL vmlinux 0x2fe1b368 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x300f0ab2 kset_register +EXPORT_SYMBOL vmlinux 0x301a93b9 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x301ae10c splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3036c0ad blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x303f48ec devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x304bce80 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x306280f5 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x30642905 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x30734de5 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3082deba scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30ab926c of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30c5e2f9 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x30cb957e phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x30d02e60 phy_driver_register +EXPORT_SYMBOL vmlinux 0x30d2934f get_unmapped_area +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310917fe sort +EXPORT_SYMBOL vmlinux 0x31156d0b swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x31380354 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x314a301b scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x3178375b blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x3191db18 sock_no_listen +EXPORT_SYMBOL vmlinux 0x3191f109 __krealloc +EXPORT_SYMBOL vmlinux 0x3193b30c security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x3194bd6c xattr_full_name +EXPORT_SYMBOL vmlinux 0x31991cc3 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x319a1032 of_device_alloc +EXPORT_SYMBOL vmlinux 0x319c795d mapping_tagged +EXPORT_SYMBOL vmlinux 0x31c8dc1d of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0x31d168a9 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x31d225ba padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x31d34224 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x31f0bb78 __kmap_atomic_idx +EXPORT_SYMBOL vmlinux 0x320d2870 napi_disable +EXPORT_SYMBOL vmlinux 0x321fb051 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x3247752a migrate_page_copy +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x32520eec lock_fb_info +EXPORT_SYMBOL vmlinux 0x326ea5a8 vfs_fsync +EXPORT_SYMBOL vmlinux 0x32726553 generic_getxattr +EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb +EXPORT_SYMBOL vmlinux 0x328a05f1 strncpy +EXPORT_SYMBOL vmlinux 0x32bf8c75 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x32c99552 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x330ce99e proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x3332d5eb pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x3350d770 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x33543ba0 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x337bba39 ip6_xmit +EXPORT_SYMBOL vmlinux 0x33904d88 fifo_set_limit +EXPORT_SYMBOL vmlinux 0x33a53b43 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c35188 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x33c52b71 simple_readpage +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 0x33f4f7fd md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x33f8c924 blk_run_queue +EXPORT_SYMBOL vmlinux 0x34006dc6 init_net +EXPORT_SYMBOL vmlinux 0x340d5db8 param_ops_int +EXPORT_SYMBOL vmlinux 0x340e1fb7 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x341dbfa3 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x346a8291 __genl_register_family +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a23e3f done_path_create +EXPORT_SYMBOL vmlinux 0x34c00c68 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x34c3fa54 consume_skb +EXPORT_SYMBOL vmlinux 0x34d32a84 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fd825d dcb_setapp +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351ce11e mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x352ae234 km_is_alive +EXPORT_SYMBOL vmlinux 0x3530322e pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x353de98f cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35af05f3 write_cache_pages +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35eafa77 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x35f0f716 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x35f9af47 bioset_free +EXPORT_SYMBOL vmlinux 0x35fbd6a1 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x363206c1 sock_create_kern +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367ba856 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0x369517a3 account_page_redirty +EXPORT_SYMBOL vmlinux 0x369cf8fc set_disk_ro +EXPORT_SYMBOL vmlinux 0x36a1f761 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x36aca439 thaw_super +EXPORT_SYMBOL vmlinux 0x36ae5b05 simple_write_begin +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36c098d8 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x36f2edd7 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x36fdda67 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x37019df6 vfs_writev +EXPORT_SYMBOL vmlinux 0x37139a44 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x372d0f3f inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x372d2839 kmap_to_page +EXPORT_SYMBOL vmlinux 0x372d4fa8 skb_checksum +EXPORT_SYMBOL vmlinux 0x37371551 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37812eb6 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x37998ed1 param_array_ops +EXPORT_SYMBOL vmlinux 0x379a0e2c sock_no_getname +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37b21f6f xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x37b8b39e screen_info +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37d03838 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x37d20bbd jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x37da13ee ab3100_event_register +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x37e74642 get_jiffies_64 +EXPORT_SYMBOL vmlinux 0x37edc8d8 simple_rename +EXPORT_SYMBOL vmlinux 0x37f3c613 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x37f47c0d sock_alloc_file +EXPORT_SYMBOL vmlinux 0x37f614b7 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x37f6fee5 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0x3817f2d4 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x3818d50c mntput +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3852db8c eth_header +EXPORT_SYMBOL vmlinux 0x385647b7 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x387ef890 of_get_mac_address +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38ac874b cdev_add +EXPORT_SYMBOL vmlinux 0x38adb416 skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38b8c3fe pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x38dfb7de dquot_scan_active +EXPORT_SYMBOL vmlinux 0x38e5e8eb i2c_del_driver +EXPORT_SYMBOL vmlinux 0x38e66e43 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x390690ca __getblk_gfp +EXPORT_SYMBOL vmlinux 0x390cfd23 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x3910a0c1 simple_fill_super +EXPORT_SYMBOL vmlinux 0x391164fa xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x3952668d pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x3960a592 of_get_address +EXPORT_SYMBOL vmlinux 0x3971aa7f skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x39a76a84 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x39b028f8 contig_page_data +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39b6cba0 macio_dev_put +EXPORT_SYMBOL vmlinux 0x39ba4dfc tcf_hash_search +EXPORT_SYMBOL vmlinux 0x39c08721 kobject_set_name +EXPORT_SYMBOL vmlinux 0x39ca8c42 pci_device_from_OF_node +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39e10335 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x39fb8ac9 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x3a1ac054 set_normalized_timespec64 +EXPORT_SYMBOL vmlinux 0x3a28b682 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x3a3060e0 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x3a609081 input_unregister_device +EXPORT_SYMBOL vmlinux 0x3a8cc3a6 skb_make_writable +EXPORT_SYMBOL vmlinux 0x3a8f7947 update_region +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3af3e082 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x3af8dae7 lookup_bdev +EXPORT_SYMBOL vmlinux 0x3b146989 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x3b1bc486 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x3b315014 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x3b41621a blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x3b558f01 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x3b57029a generic_ro_fops +EXPORT_SYMBOL vmlinux 0x3b5f1ecc seq_pad +EXPORT_SYMBOL vmlinux 0x3b5fbd95 proc_symlink +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b6426f0 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6ee53e nf_log_trace +EXPORT_SYMBOL vmlinux 0x3b708c41 agp_bridge +EXPORT_SYMBOL vmlinux 0x3b71dd49 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x3ba442a2 start_tty +EXPORT_SYMBOL vmlinux 0x3ba932d3 netif_napi_add +EXPORT_SYMBOL vmlinux 0x3bd6166d i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x3bef3d73 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x3bfee636 __seq_open_private +EXPORT_SYMBOL vmlinux 0x3c261ca0 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x3c3d4afe skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x3c3d7327 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c42056e request_key_async +EXPORT_SYMBOL vmlinux 0x3c652b24 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0x3c7eb7ac xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c86a712 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x3c8cc489 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x3c98f047 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x3c9b0f89 icmp_send +EXPORT_SYMBOL vmlinux 0x3cacd361 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x3cc10cc3 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3cc5681b __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x3cd202e7 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x3ce20d65 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ce5b071 tty_name +EXPORT_SYMBOL vmlinux 0x3ce67b86 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x3cef0540 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x3d22c20f generic_read_dir +EXPORT_SYMBOL vmlinux 0x3d2918db input_unregister_handle +EXPORT_SYMBOL vmlinux 0x3d500d9e mach_chrp +EXPORT_SYMBOL vmlinux 0x3d50cebc sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x3d674845 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x3d7b3470 security_path_link +EXPORT_SYMBOL vmlinux 0x3d86f5c2 cont_write_begin +EXPORT_SYMBOL vmlinux 0x3da9b1cd sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3ddec56f of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3dfeabdd cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x3e0338e9 register_key_type +EXPORT_SYMBOL vmlinux 0x3e1152dc max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x3e1bccf9 fsync_bdev +EXPORT_SYMBOL vmlinux 0x3e26cd2c of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x3e3ad5b9 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0x3e3ddb2c macio_request_resources +EXPORT_SYMBOL vmlinux 0x3e42f603 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x3e5e1744 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x3e62b0ff of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x3e73cb31 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3ebaf62e agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x3ebdc71f trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x3ef14f2b bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f0bcbb5 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x3f220d88 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f40acd4 napi_complete_done +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f616ce2 queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x3f68747c input_set_keycode +EXPORT_SYMBOL vmlinux 0x3f6d1a39 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x3f92bf02 generic_setlease +EXPORT_SYMBOL vmlinux 0x3f9dfa0e tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x3fa336a3 param_get_int +EXPORT_SYMBOL vmlinux 0x3fb1cf71 proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x3fd56f44 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3febec6f pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40473654 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x4059792f print_hex_dump +EXPORT_SYMBOL vmlinux 0x405b1534 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4081e179 sock_register +EXPORT_SYMBOL vmlinux 0x408537da machine_id +EXPORT_SYMBOL vmlinux 0x4090ae97 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409938ef single_open +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 0x40ad4ebc fsnotify_put_group +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 0x40d26c54 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e9cd1d __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x40f1ad10 tb_ticks_per_jiffy +EXPORT_SYMBOL vmlinux 0x40f1b39e copy_from_iter +EXPORT_SYMBOL vmlinux 0x40fb2a46 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x40ffd803 padata_add_cpu +EXPORT_SYMBOL vmlinux 0x412123d4 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x4130cbcc genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x41350af9 d_set_d_op +EXPORT_SYMBOL vmlinux 0x4136742a param_get_charp +EXPORT_SYMBOL vmlinux 0x413f9d85 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x415a3e70 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x416c65d3 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x417141ae sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418a5367 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x418eee80 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x418fd630 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x419f0c62 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x41dfd717 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x41f091ea iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x41fcc604 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x4201284e bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421ff84d inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x42370691 follow_pfn +EXPORT_SYMBOL vmlinux 0x423e9d27 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424ad9d1 pci_domain_nr +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42585e32 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x425ab51b in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x4263cc34 serio_close +EXPORT_SYMBOL vmlinux 0x429b3c14 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x429be6d3 remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42d947d8 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x42ee7929 param_set_int +EXPORT_SYMBOL vmlinux 0x42fce228 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430cc470 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x4342040d udp_set_csum +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x436d55cb vfs_readf +EXPORT_SYMBOL vmlinux 0x43770bec generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x438171ac qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x4381e00f register_framebuffer +EXPORT_SYMBOL vmlinux 0x43847879 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438fe1c3 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43b18625 tcp_init_sock +EXPORT_SYMBOL vmlinux 0x43ccccd0 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x43cde1ef mount_bdev +EXPORT_SYMBOL vmlinux 0x43ce6dd7 vm_insert_page +EXPORT_SYMBOL vmlinux 0x43e87ddb mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f7f78d elv_register_queue +EXPORT_SYMBOL vmlinux 0x43f9236e xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44138067 pci_select_bars +EXPORT_SYMBOL vmlinux 0x4414c9aa note_scsi_host +EXPORT_SYMBOL vmlinux 0x44366cfc simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0x44438b96 hex2bin +EXPORT_SYMBOL vmlinux 0x4457640f mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x4460193a try_to_release_page +EXPORT_SYMBOL vmlinux 0x446c524c __dst_free +EXPORT_SYMBOL vmlinux 0x44a4ca55 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x4512c7aa blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x4535916f bio_endio +EXPORT_SYMBOL vmlinux 0x453a9ff2 __serio_register_driver +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453f2b82 elv_rb_add +EXPORT_SYMBOL vmlinux 0x454eddae block_commit_write +EXPORT_SYMBOL vmlinux 0x4559de34 dev_uc_init +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45a6211d iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x45b01433 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x45c2d166 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x45cf0346 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x45e607c4 block_write_end +EXPORT_SYMBOL vmlinux 0x45e77b8a twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x45e93d14 pci_bus_read_config_dword +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 0x4637ee35 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x46472a33 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x465757c3 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46634a9b inode_get_bytes +EXPORT_SYMBOL vmlinux 0x46645bb7 tty_write_room +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x4673bca9 udp_poll +EXPORT_SYMBOL vmlinux 0x46826f1f pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x4686fc65 fb_validate_mode +EXPORT_SYMBOL vmlinux 0x46b5cc39 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46f94509 get_acl +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4703bf64 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x470984e0 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x470e7d6a misc_deregister +EXPORT_SYMBOL vmlinux 0x47142871 param_get_invbool +EXPORT_SYMBOL vmlinux 0x47215768 skb_put +EXPORT_SYMBOL vmlinux 0x4737f872 register_gifconf +EXPORT_SYMBOL vmlinux 0x4738d117 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x4788fe89 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479a267d skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a6d8b4 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0x47ab5a9d neigh_event_ns +EXPORT_SYMBOL vmlinux 0x47c33f7e unlock_page +EXPORT_SYMBOL vmlinux 0x47db1a91 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x48098193 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x481ce6ce cpu_active_mask +EXPORT_SYMBOL vmlinux 0x482927f7 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x48587396 prepare_binprm +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x48702b18 dev_uc_sync +EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition +EXPORT_SYMBOL vmlinux 0x4885bd32 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x488de002 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x488ef8fb cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x489ad15d unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x48b03802 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48d089d8 serio_interrupt +EXPORT_SYMBOL vmlinux 0x48df26e2 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x48df4a90 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x48e4419f fasync_helper +EXPORT_SYMBOL vmlinux 0x48fb38e7 inode_init_once +EXPORT_SYMBOL vmlinux 0x48fe205b __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x48ffe736 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4909b841 padata_free +EXPORT_SYMBOL vmlinux 0x49429d1a xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x497038cb sock_sendmsg +EXPORT_SYMBOL vmlinux 0x49a259cd blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49d1997f ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x49e08c78 dev_printk +EXPORT_SYMBOL vmlinux 0x49ee9e0a __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a2151fc nvm_get_blk +EXPORT_SYMBOL vmlinux 0x4a364a76 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x4a3ed15c __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x4a4b9394 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x4a617a91 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x4a6afd80 param_ops_charp +EXPORT_SYMBOL vmlinux 0x4a75c0ff mdiobus_free +EXPORT_SYMBOL vmlinux 0x4a9cbf5f ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x4aa22c72 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x4aa26073 phy_resume +EXPORT_SYMBOL vmlinux 0x4aa63d99 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acdb62c skb_tx_error +EXPORT_SYMBOL vmlinux 0x4af1fbc8 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b01610c neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b1ec3e2 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x4b42d769 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x4b54b3dc skb_trim +EXPORT_SYMBOL vmlinux 0x4b56a154 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b9a72ff setup_new_exec +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bb0778e vm_stat +EXPORT_SYMBOL vmlinux 0x4bbf51a9 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x4bcf03a4 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x4bd10f17 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x4be85a03 memweight +EXPORT_SYMBOL vmlinux 0x4be8950d dma_set_mask +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bfa5f98 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x4c0a84d8 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c27ff24 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x4c29dcbf cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x4c2ae700 strnstr +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c4221a6 kill_pid +EXPORT_SYMBOL vmlinux 0x4c522422 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x4c60799e i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x4ca29268 bio_chain +EXPORT_SYMBOL vmlinux 0x4cb21057 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4ce3cc80 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x4ce5c89f tcf_em_register +EXPORT_SYMBOL vmlinux 0x4d03ed7e skb_store_bits +EXPORT_SYMBOL vmlinux 0x4d32b62b __vfs_read +EXPORT_SYMBOL vmlinux 0x4d3c153f sigprocmask +EXPORT_SYMBOL vmlinux 0x4d45d89e udp_memory_allocated +EXPORT_SYMBOL vmlinux 0x4d5af9f3 vga_tryget +EXPORT_SYMBOL vmlinux 0x4d608112 flush_hash_entry +EXPORT_SYMBOL vmlinux 0x4d694e1d sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x4d6bd746 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d83b295 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x4d95799f simple_transaction_set +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d975c18 serio_open +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db7bfdb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x4dd721e9 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x4dd88c9a __d_drop +EXPORT_SYMBOL vmlinux 0x4ddbc61e replace_mount_options +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dec6038 memscan +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4dfaa273 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x4e008221 sk_common_release +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e57be66 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x4e61ac61 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4ea510b9 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4ea6d865 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x4ebbad75 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x4ee6ced0 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x4ef38f6b blk_requeue_request +EXPORT_SYMBOL vmlinux 0x4ef6a5a2 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2f550f neigh_table_init +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f4a1ef7 elv_add_request +EXPORT_SYMBOL vmlinux 0x4f5cded0 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x4f6041ef dns_query +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f8ab7f9 f_setown +EXPORT_SYMBOL vmlinux 0x4fbc3433 tty_throttle +EXPORT_SYMBOL vmlinux 0x4fc173cd blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x4fd80ad8 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe99583 atomic64_dec_if_positive +EXPORT_SYMBOL vmlinux 0x4feb5922 __find_get_block +EXPORT_SYMBOL vmlinux 0x4ff1fd41 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x5005dead bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x500f3ff1 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x502910ba xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x5055bd58 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x505f738f agp_find_bridge +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x50696086 vme_slot_num +EXPORT_SYMBOL vmlinux 0x507f8df6 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x509336de inet_getname +EXPORT_SYMBOL vmlinux 0x509817cf vprintk_emit +EXPORT_SYMBOL vmlinux 0x50a294db devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x50b3359a nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x50b66bcb radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x50b7df98 dst_init +EXPORT_SYMBOL vmlinux 0x50b85423 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x50c24d11 kernel_connect +EXPORT_SYMBOL vmlinux 0x50c8244d of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x50ddc698 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50ed5d2b i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x50f4db8c blk_register_region +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511d1770 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x512334aa mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x512a595b blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x5140bdbd tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x51560aab bdi_init +EXPORT_SYMBOL vmlinux 0x515c0e73 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x515e24a7 flush_instruction_cache +EXPORT_SYMBOL vmlinux 0x51683c8f sock_edemux +EXPORT_SYMBOL vmlinux 0x516e3ba3 sock_update_memcg +EXPORT_SYMBOL vmlinux 0x516f276e inc_nlink +EXPORT_SYMBOL vmlinux 0x518ea1b1 udplite_prot +EXPORT_SYMBOL vmlinux 0x518f80fe dev_driver_string +EXPORT_SYMBOL vmlinux 0x51966f34 sget +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51a45ddc scsi_device_put +EXPORT_SYMBOL vmlinux 0x51aec8ee macio_release_resources +EXPORT_SYMBOL vmlinux 0x51dfcc11 ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x51e3e1d0 macio_request_resource +EXPORT_SYMBOL vmlinux 0x51ef33b8 kstrndup +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520fbefb fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x5217d4f8 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52318727 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x523223fd devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x5246a965 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x525e20c7 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x525f003d __inet_hash +EXPORT_SYMBOL vmlinux 0x5275eead security_path_symlink +EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read +EXPORT_SYMBOL vmlinux 0x527e9ab0 km_query +EXPORT_SYMBOL vmlinux 0x528c709d simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x529a580d __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x52af562a __crc32c_le +EXPORT_SYMBOL vmlinux 0x52c5f847 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x52d8a825 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x52eed19f elevator_init +EXPORT_SYMBOL vmlinux 0x52efc142 send_sig +EXPORT_SYMBOL vmlinux 0x53026463 alloc_file +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x53a4ccd3 pci_restore_state +EXPORT_SYMBOL vmlinux 0x53beed52 up_write +EXPORT_SYMBOL vmlinux 0x53deff40 security_path_mknod +EXPORT_SYMBOL vmlinux 0x53e13677 udp_add_offload +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540c06d0 __serio_register_port +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x541987d2 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x5422fe36 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x54260ce3 dev_trans_start +EXPORT_SYMBOL vmlinux 0x5429f623 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x543add26 devm_ioremap +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x545c7bbd inet_add_offload +EXPORT_SYMBOL vmlinux 0x546a5e42 setattr_copy +EXPORT_SYMBOL vmlinux 0x54703373 inet_del_offload +EXPORT_SYMBOL vmlinux 0x5488a5c4 vme_dma_request +EXPORT_SYMBOL vmlinux 0x549fe02d input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b2ac22 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ee1ce4 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55294727 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55467ede fsl_upm_find +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x55780b70 __get_user_pages +EXPORT_SYMBOL vmlinux 0x5586efd4 param_set_bint +EXPORT_SYMBOL vmlinux 0x558e1985 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x55960f61 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x55c8664f get_agp_version +EXPORT_SYMBOL vmlinux 0x55cc8257 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55ebb32f phy_device_create +EXPORT_SYMBOL vmlinux 0x561670b5 put_cmsg +EXPORT_SYMBOL vmlinux 0x561e4f1b softnet_data +EXPORT_SYMBOL vmlinux 0x56329953 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x563952a3 kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x563b58b7 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x56492127 filemap_flush +EXPORT_SYMBOL vmlinux 0x564b0ab3 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x564ce519 inet_frags_init +EXPORT_SYMBOL vmlinux 0x5662318e redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x566a0e7f kernel_param_lock +EXPORT_SYMBOL vmlinux 0x56753c06 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x56888e4f inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56b3df75 user_path_create +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56e6d7da nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x56e84e6e blk_get_request +EXPORT_SYMBOL vmlinux 0x56f2c500 ip_setsockopt +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x573aee7d scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57593705 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x57b18069 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x57c51a6b blk_stack_limits +EXPORT_SYMBOL vmlinux 0x57d7bb27 mmc_put_card +EXPORT_SYMBOL vmlinux 0x57f6633b tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58353560 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5845895c input_register_device +EXPORT_SYMBOL vmlinux 0x584d2534 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x585ab6c7 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x58623807 proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0x586f67ef make_kgid +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58820b29 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x58934bcc inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58c6395c phy_disconnect +EXPORT_SYMBOL vmlinux 0x58d49492 rt6_lookup +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f31b90 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x58f55441 console_stop +EXPORT_SYMBOL vmlinux 0x58fe56f0 kthread_stop +EXPORT_SYMBOL vmlinux 0x5906cca6 fput +EXPORT_SYMBOL vmlinux 0x5906d1b6 inet_addr_type +EXPORT_SYMBOL vmlinux 0x59112185 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x591241d0 register_sysctl_table +EXPORT_SYMBOL vmlinux 0x591577d5 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0x591cd4f9 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x59210eb6 i2c_release_client +EXPORT_SYMBOL vmlinux 0x593b382b scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x59604653 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59959ed6 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x599677fe d_obtain_alias +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59aedd6e of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59d8223a ioport_resource +EXPORT_SYMBOL vmlinux 0x5a0b73d0 zlib_deflateInit2 +EXPORT_SYMBOL vmlinux 0x5a2dcf17 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0x5a43624b pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x5a55260b scsi_scan_host +EXPORT_SYMBOL vmlinux 0x5a568efc bio_add_page +EXPORT_SYMBOL vmlinux 0x5a7374cf pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x5a8aa12f scsi_print_sense +EXPORT_SYMBOL vmlinux 0x5a9f2e29 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x5a9fc1f9 dput +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b180b99 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x5b19634d div_s64_rem +EXPORT_SYMBOL vmlinux 0x5b207cc3 of_platform_device_create +EXPORT_SYMBOL vmlinux 0x5b222d9d inet6_protos +EXPORT_SYMBOL vmlinux 0x5b31eb9f bdget_disk +EXPORT_SYMBOL vmlinux 0x5b3643fd bio_reset +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b44826b mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x5b473ab9 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x5b57eef3 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x5b5c19f6 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x5b727d3e ps2_init +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5bb9daec __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0x5bd721ee copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x5bdbc8dc dev_remove_offload +EXPORT_SYMBOL vmlinux 0x5be723d3 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x5bf38e19 phy_device_free +EXPORT_SYMBOL vmlinux 0x5bfc9fc6 validate_sp +EXPORT_SYMBOL vmlinux 0x5c049851 xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x5c09171c skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x5c1b4702 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x5c265cba sg_init_one +EXPORT_SYMBOL vmlinux 0x5c293290 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c3929de swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x5c4603a7 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x5c560e79 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x5c61c5f9 of_dev_get +EXPORT_SYMBOL vmlinux 0x5c674de7 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x5c820426 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x5cb38fa6 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x5cc23eee rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5ccd2201 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x5cdcf53a t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0x5ce44980 sock_release +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5cff093d tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x5d09e0d1 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x5d121890 tty_vhangup +EXPORT_SYMBOL vmlinux 0x5d307961 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x5d354144 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d56c30d devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x5d7ec29b finish_open +EXPORT_SYMBOL vmlinux 0x5d8e9d5a invalidate_bdev +EXPORT_SYMBOL vmlinux 0x5da889df netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x5dba84b5 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x5dbaa6d2 pci_get_device +EXPORT_SYMBOL vmlinux 0x5de9e1a9 dev_add_pack +EXPORT_SYMBOL vmlinux 0x5deaa810 submit_bh +EXPORT_SYMBOL vmlinux 0x5deeeb95 udp_prot +EXPORT_SYMBOL vmlinux 0x5e1798d8 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x5e27321b register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x5e2f3d4b revalidate_disk +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e3b4460 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x5e59f0f5 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x5e5f49b4 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x5e693784 unlock_rename +EXPORT_SYMBOL vmlinux 0x5e6dab84 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x5e7af178 twl6040_power +EXPORT_SYMBOL vmlinux 0x5e866d85 prandom_bytes +EXPORT_SYMBOL vmlinux 0x5e8bf2d8 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb0401e proc_dostring +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebcd949 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x5ec50fb1 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ef24e2d sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x5efe919b blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f031c89 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0d588e dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x5f106049 dev_change_flags +EXPORT_SYMBOL vmlinux 0x5f2e7c68 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x5f41949f cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x5f754e5a memset +EXPORT_SYMBOL vmlinux 0x5f819efe page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fcb13a7 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0x5fd268cb radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0x5fd6a75a do_splice_to +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 0x60287d06 i2c_master_send +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6037d77a up_read +EXPORT_SYMBOL vmlinux 0x604de728 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x605764bc rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x60619c78 eth_header_parse +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6073732c cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6097dbff sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x609bf5a4 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60a5145c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x60ace3e4 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x60c41b68 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e58952 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x60efd7b3 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x60f1bf3a dev_crit +EXPORT_SYMBOL vmlinux 0x611061a9 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x6125c4e3 mount_pseudo +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x613e24c2 free_user_ns +EXPORT_SYMBOL vmlinux 0x6153cfbc __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x61575e8c call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x6169d5de devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x616b825d dql_init +EXPORT_SYMBOL vmlinux 0x616d7119 __netif_schedule +EXPORT_SYMBOL vmlinux 0x617dce2e md_error +EXPORT_SYMBOL vmlinux 0x618360a5 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x619a5f86 lookup_one_len +EXPORT_SYMBOL vmlinux 0x61abe039 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x61adeb8c kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x61b26278 __invalidate_device +EXPORT_SYMBOL vmlinux 0x61b3560c cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x61b53ea0 of_get_next_child +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x6206ad4b mmc_start_req +EXPORT_SYMBOL vmlinux 0x6212e88c jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62160a7a elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x6220b4a2 crc32_le +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x623d7182 _chrp_type +EXPORT_SYMBOL vmlinux 0x623dac16 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x624c275c km_new_mapping +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x625ca208 pci_find_next_bus +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 0x62d0b9d3 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x62d61bfa agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x62dfa055 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x62e1b63f adb_client_list +EXPORT_SYMBOL vmlinux 0x62e9f991 noop_qdisc +EXPORT_SYMBOL vmlinux 0x630ccee2 follow_down_one +EXPORT_SYMBOL vmlinux 0x63154eff sk_reset_timer +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x633fc9a3 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x63441f76 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x6358c941 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0x6364f994 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x6381c383 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63a9067e kill_pgrp +EXPORT_SYMBOL vmlinux 0x63b2e435 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c5146c mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64068158 no_llseek +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x642e9f08 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x64565307 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x645fa519 param_get_string +EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll +EXPORT_SYMBOL vmlinux 0x646fa84d tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x647fe147 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x648c84d1 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x64997350 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64c2a6ae tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x64dcf76a scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x64eb88bc con_is_bound +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x65175025 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6536ca24 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x65400222 __irq_offset_value +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6598af1e abort_creds +EXPORT_SYMBOL vmlinux 0x659c0c68 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65cb9d62 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x65cc2cfb inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x65d9e877 cpufreq_register_notifier +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e77414 drop_nlink +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x66039664 __f_setown +EXPORT_SYMBOL vmlinux 0x66055d99 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x66227eae vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0x6644843c mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x667292c9 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x66838bbd sock_kfree_s +EXPORT_SYMBOL vmlinux 0x6691f127 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x66aafe96 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write +EXPORT_SYMBOL vmlinux 0x670441f3 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x672882b2 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x673efb66 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6741390a sock_from_file +EXPORT_SYMBOL vmlinux 0x67472388 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x674ed986 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x675074b6 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x676d5a1b scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x67730806 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677b0366 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x677f0270 param_get_ushort +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67baf588 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x67bbe648 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x67c27a4e inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x67f993e3 path_put +EXPORT_SYMBOL vmlinux 0x67ff1208 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x6819892c sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x683e204a blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x6862d131 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x687cc385 input_register_handle +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a6d13e mpage_readpage +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68d3a67e uart_register_driver +EXPORT_SYMBOL vmlinux 0x68d4b21c wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x68f466c6 simple_unlink +EXPORT_SYMBOL vmlinux 0x6902825e devm_free_irq +EXPORT_SYMBOL vmlinux 0x691ec25e dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x696ee2c5 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69870247 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x698a1d51 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a845e6 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b695e9 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x69bcc385 simple_release_fs +EXPORT_SYMBOL vmlinux 0x69d7e5b8 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x69dfa7a2 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0e6a11 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x6a211a84 notify_change +EXPORT_SYMBOL vmlinux 0x6a2a4b53 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x6a2bde23 migrate_page +EXPORT_SYMBOL vmlinux 0x6a3e34de mutex_unlock +EXPORT_SYMBOL vmlinux 0x6a3ea982 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x6a47ba2a simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x6a4f2d1f vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8d60c7 fd_install +EXPORT_SYMBOL vmlinux 0x6a99f94e blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x6a9c0023 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x6ab428cb __brelse +EXPORT_SYMBOL vmlinux 0x6ab7b968 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af60032 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x6afa9387 free_netdev +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b442e5c page_address +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b718382 input_reset_device +EXPORT_SYMBOL vmlinux 0x6b85682d inet_sendpage +EXPORT_SYMBOL vmlinux 0x6ba942cf pci_find_bus +EXPORT_SYMBOL vmlinux 0x6baef3e9 seq_putc +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc86947 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x6bcd60e7 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x6bd5729c blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x6bd6fe2f devm_gpiod_get +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bea7969 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c155359 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x6c1ce5ce strcspn +EXPORT_SYMBOL vmlinux 0x6c2dc9d2 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x6c3d5fe3 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x6c42dd98 elv_rb_del +EXPORT_SYMBOL vmlinux 0x6c4ba1a3 devm_iounmap +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c581471 of_phy_attach +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6ca1d1a4 atomic64_read +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cc9a6d6 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x6ccaec87 stop_tty +EXPORT_SYMBOL vmlinux 0x6cd5d9e0 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x6cdb2440 component_match_add +EXPORT_SYMBOL vmlinux 0x6cdc5c6b nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6cf1e674 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x6d026ca3 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x6d0957ba blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d0fb136 elevator_change +EXPORT_SYMBOL vmlinux 0x6d1b8793 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x6d20f71e capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x6d21a4e1 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x6d2878ae pci_dev_get +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d47e1c5 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x6d6b046d nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d85ed63 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x6d995227 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x6d9d84a7 mount_ns +EXPORT_SYMBOL vmlinux 0x6da54138 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dca2568 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x6dd56a76 module_layout +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0a1792 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x6e3b819f sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x6e4fc2e5 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x6e595d4d dup_iter +EXPORT_SYMBOL vmlinux 0x6e6514ed radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f90d0 cad_pid +EXPORT_SYMBOL vmlinux 0x6e8153c3 netdev_state_change +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb049a5 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x6eb74dff proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x6f16cc3d __napi_complete +EXPORT_SYMBOL vmlinux 0x6f1eba1e lwtunnel_input +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f34d158 fs_bio_set +EXPORT_SYMBOL vmlinux 0x6f47e877 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x6f4d76ec cdrom_check_events +EXPORT_SYMBOL vmlinux 0x6f550d5f skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x6f67f860 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x6f79ca24 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f89376a inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x6f9b2762 tty_kref_put +EXPORT_SYMBOL vmlinux 0x6f9dc131 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x6fa6d32a agp_backend_release +EXPORT_SYMBOL vmlinux 0x6faa4e4f giveup_altivec +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fdbcb50 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x6ff31d30 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x7015daec padata_do_parallel +EXPORT_SYMBOL vmlinux 0x703bdc06 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x703df727 nf_ip6_checksum +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 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x709e89e8 set_posix_acl +EXPORT_SYMBOL vmlinux 0x70a12bea d_drop +EXPORT_SYMBOL vmlinux 0x70cfadb9 security_path_unlink +EXPORT_SYMBOL vmlinux 0x70d888b7 __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x70fc3dfa migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x7107b1d1 wireless_spy_update +EXPORT_SYMBOL vmlinux 0x7114c24e mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x711577db xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712a447a scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x712ed37b radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x71478eed pmac_register_agp_pm +EXPORT_SYMBOL vmlinux 0x7150f160 update_devfreq +EXPORT_SYMBOL vmlinux 0x715df570 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x718c41d5 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x719f1cb6 ip_defrag +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71c90087 memcmp +EXPORT_SYMBOL vmlinux 0x71eb7e62 blk_peek_request +EXPORT_SYMBOL vmlinux 0x71f3aef8 clear_inode +EXPORT_SYMBOL vmlinux 0x71f65175 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0x71fa6a43 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x72093fc1 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x720b2d18 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x722e281a posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x7234db81 fb_show_logo +EXPORT_SYMBOL vmlinux 0x7241bc71 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x72664392 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x726d5a48 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x7273275c netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x72858409 seq_path +EXPORT_SYMBOL vmlinux 0x72871c87 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x728c3495 mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x72a0e6f2 __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x72a4ec03 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72ce6f70 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x72d46a67 open_exec +EXPORT_SYMBOL vmlinux 0x72d58de9 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x72d65c4c tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x72d7c303 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x72d87895 i2c_use_client +EXPORT_SYMBOL vmlinux 0x72da6ccc dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x7310784b ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7317cb98 kdb_current_task +EXPORT_SYMBOL vmlinux 0x731c2fed __mdiobus_register +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x733fac0f of_device_register +EXPORT_SYMBOL vmlinux 0x734ae142 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x7351cccc __elv_add_request +EXPORT_SYMBOL vmlinux 0x735847c5 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x7362a63f bdi_register +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x737c7592 pipe_unlock +EXPORT_SYMBOL vmlinux 0x738fc096 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x73979de6 atomic64_or +EXPORT_SYMBOL vmlinux 0x73a5d603 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x73bc769e bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x73e20c1c strlcpy +EXPORT_SYMBOL vmlinux 0x73e8678c unregister_qdisc +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74227b9e pci_clear_master +EXPORT_SYMBOL vmlinux 0x74441ddd pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x7456a20a del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74aff3b8 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x74b2a774 kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x74b4d2cd read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c57b98 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x74cd5ead generic_write_end +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74ed3eae kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x74fe54d7 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler +EXPORT_SYMBOL vmlinux 0x75050053 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x7505bdef memchr_inv +EXPORT_SYMBOL vmlinux 0x752db8c5 ppp_register_channel +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x756dd160 start_thread +EXPORT_SYMBOL vmlinux 0x758c3d21 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x7593d385 div64_s64 +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75ad1a9c vfs_statfs +EXPORT_SYMBOL vmlinux 0x75b35e75 uart_match_port +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d9e3d7 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x75ed0a5f save_mount_options +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76133648 pci_get_slot +EXPORT_SYMBOL vmlinux 0x76368ab5 devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x763b8e96 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x765aaad2 nla_append +EXPORT_SYMBOL vmlinux 0x7662a606 sg_miter_start +EXPORT_SYMBOL vmlinux 0x766d2b8c give_up_console +EXPORT_SYMBOL vmlinux 0x766d62bc blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x7673b62c blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x76766ca2 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x7676ab85 arp_tbl +EXPORT_SYMBOL vmlinux 0x7693e650 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x769f2349 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x76b13693 path_nosuid +EXPORT_SYMBOL vmlinux 0x76c4ed8d phy_device_register +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76d73cec __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x76d9bf11 crc32_be +EXPORT_SYMBOL vmlinux 0x76f6c5ef kmalloc_order +EXPORT_SYMBOL vmlinux 0x76f77dfa neigh_direct_output +EXPORT_SYMBOL vmlinux 0x77086c46 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x772d7615 simple_statfs +EXPORT_SYMBOL vmlinux 0x775a130e __sg_free_table +EXPORT_SYMBOL vmlinux 0x775f65b7 key_invalidate +EXPORT_SYMBOL vmlinux 0x77754f98 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x777e8ae0 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x7807af2c do_splice_from +EXPORT_SYMBOL vmlinux 0x780dd8a3 phy_detach +EXPORT_SYMBOL vmlinux 0x780f530d generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x781d72d2 locks_remove_posix +EXPORT_SYMBOL vmlinux 0x781d7aa9 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x782567ec memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x7836c7cc blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783b977a kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0x7840097d genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x784042df bio_phys_segments +EXPORT_SYMBOL vmlinux 0x785a4ed5 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x788b1cd8 get_task_io_context +EXPORT_SYMBOL vmlinux 0x788fe103 iomem_resource +EXPORT_SYMBOL vmlinux 0x789a9d1b netdev_features_change +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x789dc5cf pci_bus_get +EXPORT_SYMBOL vmlinux 0x78df434c tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e12d2e blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x78eecf47 km_state_notify +EXPORT_SYMBOL vmlinux 0x78efa197 mmc_get_card +EXPORT_SYMBOL vmlinux 0x7922196a proc_remove +EXPORT_SYMBOL vmlinux 0x7934aebd find_lock_entry +EXPORT_SYMBOL vmlinux 0x793a0c24 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x794a9c7a ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x795d5b9a blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x7964836e param_set_ushort +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x79a6e7ee posix_lock_file +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c07036 macio_register_driver +EXPORT_SYMBOL vmlinux 0x79c50532 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x79c78f4e neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x79d7bc8b padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x7a08e5af __put_cred +EXPORT_SYMBOL vmlinux 0x7a109109 do_SAK +EXPORT_SYMBOL vmlinux 0x7a10bd6f __kfree_skb +EXPORT_SYMBOL vmlinux 0x7a2499a6 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x7a264c3a get_user_pages +EXPORT_SYMBOL vmlinux 0x7a2add7d current_kernel_time64 +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a63a873 from_kgid +EXPORT_SYMBOL vmlinux 0x7a7331b3 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x7a806d74 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x7a8d7478 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x7a95e5ae do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa9364b load_nls_default +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7afa89fc vsnprintf +EXPORT_SYMBOL vmlinux 0x7b115ec3 sk_capable +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b1ade38 lz4_decompress +EXPORT_SYMBOL vmlinux 0x7b283ce3 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x7b4ead2f truncate_pagecache +EXPORT_SYMBOL vmlinux 0x7b5c8440 vm_munmap +EXPORT_SYMBOL vmlinux 0x7b7302fc poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x7bb98e0d tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x7bc454cf sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x7bd1dce7 freeze_bdev +EXPORT_SYMBOL vmlinux 0x7bdaeee4 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x7be4827c pci_dram_offset +EXPORT_SYMBOL vmlinux 0x7bfe72cd vme_register_driver +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c035b0f xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x7c0c266f d_set_fallthru +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c15cf65 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c6c3291 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c949a6b mark_info_dirty +EXPORT_SYMBOL vmlinux 0x7c97ea3b __frontswap_test +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cc83022 read_dev_sector +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d0d02b2 dev_get_stats +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d251532 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x7d51ddf0 tcf_register_action +EXPORT_SYMBOL vmlinux 0x7d675c5a iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d750a57 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x7d75ed4d touch_buffer +EXPORT_SYMBOL vmlinux 0x7d77df46 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x7d79bb24 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x7dbaf87b cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e03cb12 simple_open +EXPORT_SYMBOL vmlinux 0x7e0b8d96 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x7e159201 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x7e29f740 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x7e2f59e9 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x7e4d87bf mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x7e74bb46 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x7e76dc0d nf_log_unregister +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7ea171e0 blk_finish_request +EXPORT_SYMBOL vmlinux 0x7eaff56a mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x7ed2233c sock_wmalloc +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee73c0c memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x7ee9e15c send_sig_info +EXPORT_SYMBOL vmlinux 0x7ef5878f pci_disable_msix +EXPORT_SYMBOL vmlinux 0x7efccd59 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x7effb74e shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x7f005e57 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f270bda uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x7f43ff60 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x7f4fd455 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f64d3e4 vfs_read +EXPORT_SYMBOL vmlinux 0x7f789fe0 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x7fb4f769 sock_create_lite +EXPORT_SYMBOL vmlinux 0x7fcc1d48 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x7fd35e0d do_splice_direct +EXPORT_SYMBOL vmlinux 0x7fde2edb vme_master_read +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x8007f611 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x8009c2e4 param_set_long +EXPORT_SYMBOL vmlinux 0x800d1967 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x801803b2 key_put +EXPORT_SYMBOL vmlinux 0x80253470 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x80298b81 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x802f7880 get_phy_device +EXPORT_SYMBOL vmlinux 0x8035c885 vme_lm_request +EXPORT_SYMBOL vmlinux 0x803e677b user_revoke +EXPORT_SYMBOL vmlinux 0x806266da of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x807fecbb xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x8090ab7d xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x809bc434 skb_copy +EXPORT_SYMBOL vmlinux 0x80ca061a clear_nlink +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80cabcd3 vm_event_states +EXPORT_SYMBOL vmlinux 0x80d3773d cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e828bb inode_change_ok +EXPORT_SYMBOL vmlinux 0x8113d1d7 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81555888 dquot_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x817695a2 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x81819480 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x818bd1e3 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x819deacb pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81f5884a cap_mmap_file +EXPORT_SYMBOL vmlinux 0x82018fd3 of_device_unregister +EXPORT_SYMBOL vmlinux 0x8202a6ef filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x8208e98b __destroy_inode +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x823ce417 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x8256daf3 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x825d0287 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x826962e8 sk_free +EXPORT_SYMBOL vmlinux 0x826bbbfa msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x828ade22 seq_lseek +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82c88a1c scsi_init_io +EXPORT_SYMBOL vmlinux 0x82cd540a atomic64_and +EXPORT_SYMBOL vmlinux 0x82cd8f5c neigh_table_clear +EXPORT_SYMBOL vmlinux 0x82defadb filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x82f07e59 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x82fe3245 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x832fa791 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x8372cd2f __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8377707d block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x837a9197 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x8388337d override_creds +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83b479dd pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x83c5099c mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83dbdb72 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x83fa7eec swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x83ffa81a mount_nodev +EXPORT_SYMBOL vmlinux 0x8410c6da redraw_screen +EXPORT_SYMBOL vmlinux 0x8424e301 cdrom_open +EXPORT_SYMBOL vmlinux 0x84259722 put_io_context +EXPORT_SYMBOL vmlinux 0x84340e7c pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x844404cf ISA_DMA_THRESHOLD +EXPORT_SYMBOL vmlinux 0x846ef7d4 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x846fd357 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x847df40d inet_offloads +EXPORT_SYMBOL vmlinux 0x84863ead md_update_sb +EXPORT_SYMBOL vmlinux 0x84914ef9 sk_dst_check +EXPORT_SYMBOL vmlinux 0x84a69fdc vme_slave_get +EXPORT_SYMBOL vmlinux 0x84aacd77 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x84b183ae strncmp +EXPORT_SYMBOL vmlinux 0x84b98b05 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84d61aec kmem_cache_size +EXPORT_SYMBOL vmlinux 0x84e682cc blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x852683dc security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x8541bccc intercept_table +EXPORT_SYMBOL vmlinux 0x85446400 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x854e1c0b sg_nents +EXPORT_SYMBOL vmlinux 0x8555b02b __lock_buffer +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857df958 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x859f2ec8 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85c423b9 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x85cf859a bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x85d3f1d6 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x85d7d143 generic_fillattr +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x86057789 sync_inode +EXPORT_SYMBOL vmlinux 0x86123959 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x86182550 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x86189a4f agp_create_memory +EXPORT_SYMBOL vmlinux 0x861e4844 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x862a96f3 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x863d2d24 kernel_read +EXPORT_SYMBOL vmlinux 0x8643717b param_set_bool +EXPORT_SYMBOL vmlinux 0x864eda1c powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865d227c iov_iter_zero +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8668f0a0 ihold +EXPORT_SYMBOL vmlinux 0x86783faf input_release_device +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a4889a kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x86aae0f8 seq_write +EXPORT_SYMBOL vmlinux 0x86adafe4 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86f90e53 macio_dev_get +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8709d85d twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x870b2ffd module_refcount +EXPORT_SYMBOL vmlinux 0x8712fce3 pci_match_id +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x874934a3 revert_creds +EXPORT_SYMBOL vmlinux 0x8754e3ac register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x87878db4 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878b2c46 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x87970f80 mntget +EXPORT_SYMBOL vmlinux 0x87980e12 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x87bc582d dev_get_flags +EXPORT_SYMBOL vmlinux 0x87bd9e06 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x87e396e6 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x87e71cb6 scsi_execute +EXPORT_SYMBOL vmlinux 0x8817f093 jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x8818c826 serio_reconnect +EXPORT_SYMBOL vmlinux 0x88419e84 pcim_enable_device +EXPORT_SYMBOL vmlinux 0x886afe7c padata_start +EXPORT_SYMBOL vmlinux 0x886f9c0f netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x8879d8c2 simple_dname +EXPORT_SYMBOL vmlinux 0x88a7b8e8 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x88aa378f block_write_full_page +EXPORT_SYMBOL vmlinux 0x88c0ed29 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x88d1d136 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0x8902d9b9 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x89115364 tcp_close +EXPORT_SYMBOL vmlinux 0x89182afe write_inode_now +EXPORT_SYMBOL vmlinux 0x891f2bd2 bio_advance +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x89290327 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x894dc809 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x89528bd1 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x8961edce console_start +EXPORT_SYMBOL vmlinux 0x89726e5a uart_suspend_port +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x8991e982 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x89930b8a netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x89a7d565 sock_create +EXPORT_SYMBOL vmlinux 0x89a96858 __breadahead +EXPORT_SYMBOL vmlinux 0x89ab46a4 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x89b3107b isa_mem_base +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x8a0dfbe7 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a3abf66 tso_count_descs +EXPORT_SYMBOL vmlinux 0x8a45cf58 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a548ae4 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x8a73424f dquot_disable +EXPORT_SYMBOL vmlinux 0x8a737cba blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aa8a99f inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x8aac11f1 kobject_add +EXPORT_SYMBOL vmlinux 0x8ab3159a bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x8ab4079e atomic64_add +EXPORT_SYMBOL vmlinux 0x8ab5747a xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x8ac1013e seq_read +EXPORT_SYMBOL vmlinux 0x8ade2343 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x8af03240 netlink_set_err +EXPORT_SYMBOL vmlinux 0x8b1d5aa8 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x8b2cd361 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x8b2ce6e9 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x8b340c5e padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4c66ea tty_devnum +EXPORT_SYMBOL vmlinux 0x8b56ba82 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b80cff1 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x8bea591a napi_gro_receive +EXPORT_SYMBOL vmlinux 0x8c0ffdf5 do_truncate +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c3569f4 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x8c3b0688 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x8c40ae96 dquot_file_open +EXPORT_SYMBOL vmlinux 0x8c5f8393 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c8c8f7b scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x8c95d20f scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x8cadeb5e __blk_end_request +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cf2e884 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8cf68519 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d2f429b mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d5c6f86 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x8d61668a blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x8d643673 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x8d6b2ce1 radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8d72495b __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d9fc6aa dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x8dd8b994 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8df5da63 memstart_addr +EXPORT_SYMBOL vmlinux 0x8df6a120 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x8e283ded jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x8e41346c tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x8e4b546b skb_insert +EXPORT_SYMBOL vmlinux 0x8e5b4aa0 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e9b3aba sg_miter_stop +EXPORT_SYMBOL vmlinux 0x8eb0dba6 phy_device_remove +EXPORT_SYMBOL vmlinux 0x8eb89092 nvm_register_target +EXPORT_SYMBOL vmlinux 0x8eb90142 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ecfcdfb dump_skip +EXPORT_SYMBOL vmlinux 0x8ee9a903 generic_permission +EXPORT_SYMBOL vmlinux 0x8ef4bb21 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x8ef79745 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x8efa3291 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x8f049748 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x8f08de64 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x8f0a6402 nf_hook_slow +EXPORT_SYMBOL vmlinux 0x8f2b2f6b remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x8f3eea86 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x8f70de5f install_exec_creds +EXPORT_SYMBOL vmlinux 0x8f737132 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x8f7e359b iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x8f839c16 input_allocate_device +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f869894 dm_io +EXPORT_SYMBOL vmlinux 0x8f870c28 page_symlink +EXPORT_SYMBOL vmlinux 0x8f8ab6f1 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x8faad77a bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x8fbf37e0 profile_pc +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc9ed1e pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x8fd898bb bh_submit_read +EXPORT_SYMBOL vmlinux 0x8ffdb3b8 crc16 +EXPORT_SYMBOL vmlinux 0x9003f976 sock_i_ino +EXPORT_SYMBOL vmlinux 0x900a7146 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x903c36de pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x905c0811 d_find_alias +EXPORT_SYMBOL vmlinux 0x905d32f7 sock_no_accept +EXPORT_SYMBOL vmlinux 0x907c8734 finish_no_open +EXPORT_SYMBOL vmlinux 0x90a0622e __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x90abcc80 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x90c5e819 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x90cc85b3 mount_single +EXPORT_SYMBOL vmlinux 0x90cd7cb3 input_free_device +EXPORT_SYMBOL vmlinux 0x90e01e78 backlight_device_register +EXPORT_SYMBOL vmlinux 0x90f1b023 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x90f95c3f file_remove_privs +EXPORT_SYMBOL vmlinux 0x90fc466b phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x91013f5b tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0x912527d8 filemap_fault +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x912cd8fe __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x912e7a48 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x914477c8 blk_end_request +EXPORT_SYMBOL vmlinux 0x91462009 security_mmap_file +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x914f1c16 pci_disable_link_state +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 0x91935671 would_dump +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a36c39 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x91a7058d netif_rx_ni +EXPORT_SYMBOL vmlinux 0x91adf864 pci_find_capability +EXPORT_SYMBOL vmlinux 0x91c5c3bd unregister_console +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92592962 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x92697be8 nvm_end_io +EXPORT_SYMBOL vmlinux 0x929779cf i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x92a95126 get_cached_acl +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92aa8ad8 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x92bda1d8 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x92da8ce1 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x92e5581e bio_map_kern +EXPORT_SYMBOL vmlinux 0x92eb2a63 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x9309de94 cuda_request +EXPORT_SYMBOL vmlinux 0x932125e9 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x93215e1d __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x932ace48 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x9330cb9f sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9342d8b7 iget_locked +EXPORT_SYMBOL vmlinux 0x93439af1 dev_add_offload +EXPORT_SYMBOL vmlinux 0x93568bef rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x935731ea put_page +EXPORT_SYMBOL vmlinux 0x93669bf2 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938d4a4d phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x9393ba52 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x93a1424c sock_wake_async +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93e3704b tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x93fb7939 pipe_lock +EXPORT_SYMBOL vmlinux 0x93fbde5f blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x93ff3fb0 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x9403abe4 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x940f9cf6 kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x942d4598 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x94394fe5 md_check_recovery +EXPORT_SYMBOL vmlinux 0x944168cc arp_send +EXPORT_SYMBOL vmlinux 0x94473498 set_nlink +EXPORT_SYMBOL vmlinux 0x944bdb54 page_readlink +EXPORT_SYMBOL vmlinux 0x9462788c unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x946f20bc netdev_info +EXPORT_SYMBOL vmlinux 0x9495df3b current_in_userns +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 0x94de559c tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x94e2c0a3 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x94eea794 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x94f83b79 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x950b3aeb netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x95248dfc new_inode +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x952cbdf7 ns_capable +EXPORT_SYMBOL vmlinux 0x95433426 netdev_change_features +EXPORT_SYMBOL vmlinux 0x954510a7 inet_ioctl +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9546ff90 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x95474a6c security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x95554596 sock_efree +EXPORT_SYMBOL vmlinux 0x95655b13 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x956b7ef8 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x957589b5 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x95a25adb key_link +EXPORT_SYMBOL vmlinux 0x95a6c390 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x95ab46a9 ata_link_printk +EXPORT_SYMBOL vmlinux 0x95bdaac4 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x95efda3c inet_accept +EXPORT_SYMBOL vmlinux 0x960dfaf5 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0x962189a0 vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x963ac5c7 __inode_permission +EXPORT_SYMBOL vmlinux 0x963e1da2 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x963fb5d9 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x965025e7 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x96565699 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x96573b80 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x965cff4c nf_reinject +EXPORT_SYMBOL vmlinux 0x967334e0 generic_writepages +EXPORT_SYMBOL vmlinux 0x9682fb5a truncate_setsize +EXPORT_SYMBOL vmlinux 0x968888dc xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x96898769 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x968d39f0 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x96987bc1 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x969e51ec agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96cee9bb dmam_pool_create +EXPORT_SYMBOL vmlinux 0x96d13b12 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x96dbcca2 ioremap_prot +EXPORT_SYMBOL vmlinux 0x96dce98c resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x970c6623 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x97184f23 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x97255bdf strlen +EXPORT_SYMBOL vmlinux 0x972b62eb bio_unmap_user +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97729661 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x977875a3 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x977fdce3 dev_emerg +EXPORT_SYMBOL vmlinux 0x97932bd9 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x9793bbbc reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x97974fb2 __sk_dst_check +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a12769 pci_save_state +EXPORT_SYMBOL vmlinux 0x97c357f9 netdev_alert +EXPORT_SYMBOL vmlinux 0x97eb65ab of_get_min_tck +EXPORT_SYMBOL vmlinux 0x9814c7a5 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x983da18b __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x9840eed1 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x9841b14f genlmsg_put +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x9887072a of_match_node +EXPORT_SYMBOL vmlinux 0x98db40ce scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x98e68eca cancel_delayed_work +EXPORT_SYMBOL vmlinux 0x98f1a95b vme_bus_num +EXPORT_SYMBOL vmlinux 0x98f1ea21 giveup_fpu +EXPORT_SYMBOL vmlinux 0x98fe7882 DMA_MODE_READ +EXPORT_SYMBOL vmlinux 0x990cbf6f eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99455bb0 from_kprojid +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99546fdf dma_sync_wait +EXPORT_SYMBOL vmlinux 0x9957aeaf tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x999133cc dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a1c2d0 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b4f42f kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x99bb8806 memmove +EXPORT_SYMBOL vmlinux 0x99bbccd5 generic_removexattr +EXPORT_SYMBOL vmlinux 0x99c021a6 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d5e36f ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x99d7030b wait_iff_congested +EXPORT_SYMBOL vmlinux 0x99e5c6cb vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x9a034f1c pagevec_lookup +EXPORT_SYMBOL vmlinux 0x9a051377 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a4a5a6a seq_puts +EXPORT_SYMBOL vmlinux 0x9a6a0428 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0x9a789946 kern_path_create +EXPORT_SYMBOL vmlinux 0x9a852bcb genphy_update_link +EXPORT_SYMBOL vmlinux 0x9aa8ace4 ata_port_printk +EXPORT_SYMBOL vmlinux 0x9aacaa6c neigh_destroy +EXPORT_SYMBOL vmlinux 0x9aad0af0 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x9ab37459 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x9abd62df __scm_send +EXPORT_SYMBOL vmlinux 0x9ac85259 register_netdev +EXPORT_SYMBOL vmlinux 0x9aca9ce2 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x9ae858dc noop_llseek +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aec362d jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x9af3bfc8 filp_open +EXPORT_SYMBOL vmlinux 0x9b0c8dc4 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x9b1a5706 pci_reenable_device +EXPORT_SYMBOL vmlinux 0x9b219922 default_llseek +EXPORT_SYMBOL vmlinux 0x9b2c6cb2 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x9b2f9ec5 dump_truncate +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b3b7c8e pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0x9b595add vfs_link +EXPORT_SYMBOL vmlinux 0x9b61e836 dqput +EXPORT_SYMBOL vmlinux 0x9b6eb137 ksize +EXPORT_SYMBOL vmlinux 0x9b73d152 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x9b761b56 swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x9b80fe05 tty_register_driver +EXPORT_SYMBOL vmlinux 0x9b85df26 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x9b88c47f vfs_symlink +EXPORT_SYMBOL vmlinux 0x9b8dd553 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x9b8ef519 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x9b94ec8d get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x9b9a41c0 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x9b9aed5b inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba1a3f0 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x9ba217c1 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x9ba24df7 nf_register_hook +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9babe5ff __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x9bb2ae7c lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x9bce482f __release_region +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bf56e18 fb_get_mode +EXPORT_SYMBOL vmlinux 0x9c04a19b blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x9c19a02c xfrm_register_km +EXPORT_SYMBOL vmlinux 0x9c4e0909 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x9c5a35b1 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x9c777b9b tcp_parse_options +EXPORT_SYMBOL vmlinux 0x9c9b95c7 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x9ca40542 misc_register +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cccde68 seq_hex_dump +EXPORT_SYMBOL vmlinux 0x9ce3f83f nvram_write_byte +EXPORT_SYMBOL vmlinux 0x9ceed4a1 __frontswap_store +EXPORT_SYMBOL vmlinux 0x9cf5dfb7 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x9cfb633d blk_stop_queue +EXPORT_SYMBOL vmlinux 0x9cfbe9c1 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d1c8947 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d40b8ea jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x9d4d8547 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x9d669763 memcpy +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d9355f8 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x9db510ec pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x9dbb7afa tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x9dbe4e41 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x9dc87669 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x9dd3572b security_path_chown +EXPORT_SYMBOL vmlinux 0x9de629cc input_close_device +EXPORT_SYMBOL vmlinux 0x9dfe7307 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e052130 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e1cfc90 ioremap_wc +EXPORT_SYMBOL vmlinux 0x9e368e26 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e578207 simple_getattr +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e672ff6 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e86c82c generic_show_options +EXPORT_SYMBOL vmlinux 0x9e8b7abf dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eae0a4a __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x9ed10f09 __dax_fault +EXPORT_SYMBOL vmlinux 0x9eda4718 __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x9ee62abc build_skb +EXPORT_SYMBOL vmlinux 0x9ef842ea ppp_input +EXPORT_SYMBOL vmlinux 0x9f00bb1c balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x9f07467f register_cdrom +EXPORT_SYMBOL vmlinux 0x9f0a9d43 down_write_trylock +EXPORT_SYMBOL vmlinux 0x9f20b418 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x9f21f98f input_unregister_handler +EXPORT_SYMBOL vmlinux 0x9f3a3e4c simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x9f460f7e tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f4cd3a7 get_io_context +EXPORT_SYMBOL vmlinux 0x9f4d9696 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x9f79d771 unregister_nls +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fde5456 ether_setup +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe84d3a qdisc_list_del +EXPORT_SYMBOL vmlinux 0x9feca081 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x9ff54626 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0x9ffbf23b alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xa006666c inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xa00d4700 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xa00fa2e1 mac_find_mode +EXPORT_SYMBOL vmlinux 0xa015f7fc truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xa0294b89 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xa02c5e2f wake_up_process +EXPORT_SYMBOL vmlinux 0xa03b30ef dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa043ead1 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04cdc63 pcim_pin_device +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 0xa08190b4 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0a361ab vfs_readv +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d49fa9 simple_follow_link +EXPORT_SYMBOL vmlinux 0xa0d5df5a security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e6f5ec __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fc88ca neigh_seq_start +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa115a397 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12e868e skb_pad +EXPORT_SYMBOL vmlinux 0xa131fe7d call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa1571e74 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xa168c06b textsearch_register +EXPORT_SYMBOL vmlinux 0xa181bd4d gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0xa194c08e bdevname +EXPORT_SYMBOL vmlinux 0xa1b45ff2 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c21d49 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1d572a0 dcb_getapp +EXPORT_SYMBOL vmlinux 0xa1d578de invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa2056b61 key_validate +EXPORT_SYMBOL vmlinux 0xa2066228 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa20f0ca8 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xa22845ea dev_printk_emit +EXPORT_SYMBOL vmlinux 0xa22d0f24 phy_start_aneg +EXPORT_SYMBOL vmlinux 0xa24e6df8 scsi_add_device +EXPORT_SYMBOL vmlinux 0xa24f5b27 file_update_time +EXPORT_SYMBOL vmlinux 0xa27df83c xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa29b9540 put_tty_driver +EXPORT_SYMBOL vmlinux 0xa2b09a45 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xa2b48220 led_update_brightness +EXPORT_SYMBOL vmlinux 0xa2b7d7a3 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa31dd311 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xa3364fd2 sk_net_capable +EXPORT_SYMBOL vmlinux 0xa38341e8 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xa3896e51 of_get_parent +EXPORT_SYMBOL vmlinux 0xa38e691a ioremap_bot +EXPORT_SYMBOL vmlinux 0xa38e7e6c uart_update_timeout +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3c45a6c tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa3fd12b8 macio_enable_devres +EXPORT_SYMBOL vmlinux 0xa42e9067 tcp_child_process +EXPORT_SYMBOL vmlinux 0xa42f49f3 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xa43b1297 vscnprintf +EXPORT_SYMBOL vmlinux 0xa442ad65 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0xa45bdfc7 dump_page +EXPORT_SYMBOL vmlinux 0xa46408d0 mmc_fixup_device +EXPORT_SYMBOL vmlinux 0xa46dcf49 dentry_update_name_case +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa48f059f tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4cea719 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4e41c7d simple_lookup +EXPORT_SYMBOL vmlinux 0xa507a1fa rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0xa508a2f9 of_phy_find_device +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5562541 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xa55994ac phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa58942d0 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a633b9 sg_last +EXPORT_SYMBOL vmlinux 0xa5aa70a8 gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0xa5b9df7c mmc_register_driver +EXPORT_SYMBOL vmlinux 0xa5bfcc4a phy_get_eee_err +EXPORT_SYMBOL vmlinux 0xa5c686a1 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xa5cef8ad release_resource +EXPORT_SYMBOL vmlinux 0xa6377875 remove_arg_zero +EXPORT_SYMBOL vmlinux 0xa6451432 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0xa651cdc6 uart_resume_port +EXPORT_SYMBOL vmlinux 0xa652c4ef __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa666c938 sget_userns +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 0xa69eca35 sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xa6a975c9 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xa6ee15f0 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0xa6f5a5e2 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa7538c6f mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0xa757e5aa __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0xa770d1a7 ps2_handle_response +EXPORT_SYMBOL vmlinux 0xa78d4821 proc_mkdir +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7928cb9 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xa794cff2 d_instantiate +EXPORT_SYMBOL vmlinux 0xa7968884 dev_mc_init +EXPORT_SYMBOL vmlinux 0xa7a0b8ed kernel_listen +EXPORT_SYMBOL vmlinux 0xa7c0c492 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0xa7ec383b get_thermal_instance +EXPORT_SYMBOL vmlinux 0xa7fcc2fe agp_allocate_memory +EXPORT_SYMBOL vmlinux 0xa8053191 pci_iounmap +EXPORT_SYMBOL vmlinux 0xa80de50f skb_queue_tail +EXPORT_SYMBOL vmlinux 0xa818e477 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8547c34 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xa85573a9 nf_log_packet +EXPORT_SYMBOL vmlinux 0xa861ab6e __ioremap +EXPORT_SYMBOL vmlinux 0xa86b6b8a writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xa86f3ec3 iget5_locked +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa880c744 genl_notify +EXPORT_SYMBOL vmlinux 0xa880d4fa sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xa88a7692 tty_set_operations +EXPORT_SYMBOL vmlinux 0xa891f38c tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0xa89464b7 __ashldi3 +EXPORT_SYMBOL vmlinux 0xa8adf958 nvm_register +EXPORT_SYMBOL vmlinux 0xa8bf99e4 tso_build_data +EXPORT_SYMBOL vmlinux 0xa8e28493 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xa8f0400a fb_set_cmap +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa91ce8e7 blk_complete_request +EXPORT_SYMBOL vmlinux 0xa9247e1a dm_register_target +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa94352ec inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xa944d05b eth_header_cache +EXPORT_SYMBOL vmlinux 0xa953b7d1 pci_release_regions +EXPORT_SYMBOL vmlinux 0xa955b7e6 ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xa9571d6d DMA_MODE_WRITE +EXPORT_SYMBOL vmlinux 0xa965e822 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xa96bcc6e keyring_alloc +EXPORT_SYMBOL vmlinux 0xa971355a inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xa9736864 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa983316b __pagevec_release +EXPORT_SYMBOL vmlinux 0xa99041a2 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xa9bf8f9f input_open_device +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d6b0b7 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xa9de3057 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xa9e54dd3 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xa9eb390c devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xa9fc8900 scsi_register +EXPORT_SYMBOL vmlinux 0xaa05172a inet_shutdown +EXPORT_SYMBOL vmlinux 0xaa093f91 set_bh_page +EXPORT_SYMBOL vmlinux 0xaa18d75c input_register_handler +EXPORT_SYMBOL vmlinux 0xaa2f1fab blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa4df512 pmu_batteries +EXPORT_SYMBOL vmlinux 0xaa62d749 sock_get_timestampns +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 0xaa8835d8 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xaa88dc9e linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xaab948d8 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0xaabd159c ata_std_end_eh +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad2efad tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0xaad40f71 xfrm_policy_insert +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 0xaafffac7 devm_memremap +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab405ecb vfs_rename +EXPORT_SYMBOL vmlinux 0xab445341 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xab560596 cdev_alloc +EXPORT_SYMBOL vmlinux 0xab5f6225 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xab60faae bitmap_end_sync +EXPORT_SYMBOL vmlinux 0xab694444 bsearch +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8b6291 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xaba3ad0c radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xabab3680 __vfs_write +EXPORT_SYMBOL vmlinux 0xabb2dac6 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xabc21d90 audit_log_start +EXPORT_SYMBOL vmlinux 0xabc8351a iov_iter_bvec +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabe7d4e8 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xabf135a4 tcp_connect +EXPORT_SYMBOL vmlinux 0xabfcb4c3 flush_delayed_work +EXPORT_SYMBOL vmlinux 0xac063bbe module_put +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac0bb7e3 generic_update_time +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac4cc1bc lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xac598730 netlink_capable +EXPORT_SYMBOL vmlinux 0xac5bfc3b blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xac65030d dev_alloc_name +EXPORT_SYMBOL vmlinux 0xac6e1409 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xaca4d0ed get_fs_type +EXPORT_SYMBOL vmlinux 0xacaa2e5a security_file_permission +EXPORT_SYMBOL vmlinux 0xacaa36fe block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xacca3032 scsi_device_get +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd0bdf7 kobject_get +EXPORT_SYMBOL vmlinux 0xacd71107 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xacf830e0 acl_by_type +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad129990 dquot_transfer +EXPORT_SYMBOL vmlinux 0xad1d9e6b ps2_end_command +EXPORT_SYMBOL vmlinux 0xad228eac locks_init_lock +EXPORT_SYMBOL vmlinux 0xad25fe19 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xad31894f unlock_buffer +EXPORT_SYMBOL vmlinux 0xad385655 sock_no_bind +EXPORT_SYMBOL vmlinux 0xad386beb nf_log_register +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad547243 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xad5a4280 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xad728df2 of_find_property +EXPORT_SYMBOL vmlinux 0xad7ffbd2 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xad827719 set_cached_acl +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xaddd4770 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xadf42bd5 __request_region +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae075b9f forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xae07afbf filemap_map_pages +EXPORT_SYMBOL vmlinux 0xae0ee478 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xae1f63e8 eth_type_trans +EXPORT_SYMBOL vmlinux 0xae22bc65 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xae257a62 tty_port_put +EXPORT_SYMBOL vmlinux 0xae28f445 kfree_skb_list +EXPORT_SYMBOL vmlinux 0xae30ab7d poll_initwait +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae3cddb2 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0xae5248e1 dev_mc_del +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae5aa3e9 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xae5d0977 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xae65ff99 dst_release +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 0xae9fdce3 phy_connect +EXPORT_SYMBOL vmlinux 0xaea6dfd5 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xaebb9e17 PDE_DATA +EXPORT_SYMBOL vmlinux 0xaec655c7 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0xaed673c2 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf07b5b1 dm_get_device +EXPORT_SYMBOL vmlinux 0xaf0b81c2 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xaf115f25 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf31e34a param_ops_bool +EXPORT_SYMBOL vmlinux 0xaf31ffa4 sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf3e5492 of_node_put +EXPORT_SYMBOL vmlinux 0xaf511951 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xaf62591c gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xaf70e4ab dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xaf7622ee pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xafa283e5 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xafa42819 sock_rfree +EXPORT_SYMBOL vmlinux 0xafaed86f downgrade_write +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafba67d6 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xafe6a732 vfs_getattr +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb01b9097 vme_irq_request +EXPORT_SYMBOL vmlinux 0xb02126b9 __devm_request_region +EXPORT_SYMBOL vmlinux 0xb0225670 netif_skb_features +EXPORT_SYMBOL vmlinux 0xb03b3734 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb073a238 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xb081b9c3 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0xb08623b5 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c0b604 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xb0c45731 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xb0c775ef path_noexec +EXPORT_SYMBOL vmlinux 0xb0c9c15a xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0f758fd devfreq_add_device +EXPORT_SYMBOL vmlinux 0xb1235b79 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xb126b687 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb144c2fc max8925_set_bits +EXPORT_SYMBOL vmlinux 0xb15bd8fa tb_ticks_per_sec +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb194de1f scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xb195a2dd bio_init +EXPORT_SYMBOL vmlinux 0xb1a3f5bf pmac_suspend_agp_for_card +EXPORT_SYMBOL vmlinux 0xb1b9214c jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0xb1be2dc8 set_anon_super +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c53cdf dev_alert +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1cd438d open_check_o_direct +EXPORT_SYMBOL vmlinux 0xb1ce9a86 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb207dba2 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0xb22a897a bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xb2334d12 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xb233762c atomic64_set +EXPORT_SYMBOL vmlinux 0xb246937a tty_port_close_end +EXPORT_SYMBOL vmlinux 0xb25580b6 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb25df2c6 address_space_init_once +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb270e65e scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xb275a12c mutex_lock +EXPORT_SYMBOL vmlinux 0xb2936d7a blkdev_put +EXPORT_SYMBOL vmlinux 0xb2991298 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xb2b42306 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2ce4081 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xb2d48a2e queue_work_on +EXPORT_SYMBOL vmlinux 0xb2d7d48f proto_unregister +EXPORT_SYMBOL vmlinux 0xb2dd249b inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xb2fbef5e vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xb31326ff uart_get_divisor +EXPORT_SYMBOL vmlinux 0xb318e581 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xb31f5adb put_disk +EXPORT_SYMBOL vmlinux 0xb32a099f vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xb32d7b7e radix_tree_tagged +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb34044f5 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0xb35f4ecd simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb3655a92 dev_uc_del +EXPORT_SYMBOL vmlinux 0xb37f62a2 md_reload_sb +EXPORT_SYMBOL vmlinux 0xb3857f6c skb_clone_sk +EXPORT_SYMBOL vmlinux 0xb38d53cc seq_release_private +EXPORT_SYMBOL vmlinux 0xb3c23cce skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb3cec430 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb4373201 mmc_request_done +EXPORT_SYMBOL vmlinux 0xb449b22f pcie_port_service_register +EXPORT_SYMBOL vmlinux 0xb4519a8f string_escape_mem +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb47a8234 add_disk +EXPORT_SYMBOL vmlinux 0xb47e0e6f __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xb4ae0ffe input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xb4b63697 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xb4ba5a2c con_copy_unimap +EXPORT_SYMBOL vmlinux 0xb4d15876 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xb4d3620b default_file_splice_read +EXPORT_SYMBOL vmlinux 0xb4d5b8bd posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xb4d98cb7 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0xb4ef4b7b param_ops_invbool +EXPORT_SYMBOL vmlinux 0xb507e3c1 nonseekable_open +EXPORT_SYMBOL vmlinux 0xb52cc718 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb5351a5f xfrm_register_type +EXPORT_SYMBOL vmlinux 0xb53a4336 kmap_pte +EXPORT_SYMBOL vmlinux 0xb5451fd5 mmc_remove_host +EXPORT_SYMBOL vmlinux 0xb561be05 make_kprojid +EXPORT_SYMBOL vmlinux 0xb56b5666 elv_rb_find +EXPORT_SYMBOL vmlinux 0xb5721148 kill_anon_super +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5861f04 generic_perform_write +EXPORT_SYMBOL vmlinux 0xb5895d36 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xb5899cea tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5abdb1e poll_freewait +EXPORT_SYMBOL vmlinux 0xb5b27b31 clocksource_unregister +EXPORT_SYMBOL vmlinux 0xb5c270fe forget_cached_acl +EXPORT_SYMBOL vmlinux 0xb5cd2847 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xb5d9454c printk_emit +EXPORT_SYMBOL vmlinux 0xb5f8598d __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xb6092b99 pci_choose_state +EXPORT_SYMBOL vmlinux 0xb61f39f5 alloc_fddidev +EXPORT_SYMBOL vmlinux 0xb61f6226 device_get_mac_address +EXPORT_SYMBOL vmlinux 0xb6204585 nf_log_unset +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6789918 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0xb6867349 free_task +EXPORT_SYMBOL vmlinux 0xb687abe3 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xb6896671 crc_t10dif +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69af227 ps2_drain +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6ae32f4 inode_permission +EXPORT_SYMBOL vmlinux 0xb6b28718 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xb6b771cf xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xb6d08d5a __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xb6ffcd52 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xb712e2a1 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0xb71a504b scm_detach_fds +EXPORT_SYMBOL vmlinux 0xb71aa993 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb753bcc8 __ashrdi3 +EXPORT_SYMBOL vmlinux 0xb75879df __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb79ec15d mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0xb7a99781 __irq_regs +EXPORT_SYMBOL vmlinux 0xb7ad1ba0 serio_rescan +EXPORT_SYMBOL vmlinux 0xb7af61ea of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xb7c4c44d fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7d3a586 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xb7f56ea8 ___pskb_trim +EXPORT_SYMBOL vmlinux 0xb7f9f381 pmac_resume_agp_for_card +EXPORT_SYMBOL vmlinux 0xb8163eaf cfb_copyarea +EXPORT_SYMBOL vmlinux 0xb81960ca snprintf +EXPORT_SYMBOL vmlinux 0xb819e6df __sb_end_write +EXPORT_SYMBOL vmlinux 0xb81dff7d proto_register +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb83b456b cdrom_release +EXPORT_SYMBOL vmlinux 0xb83e95e7 keyring_clear +EXPORT_SYMBOL vmlinux 0xb851a888 of_node_get +EXPORT_SYMBOL vmlinux 0xb862ffdd scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xb870f1c3 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87582a3 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xb87d8a9a devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb89966f4 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xb8ba4a4d gen_new_estimator +EXPORT_SYMBOL vmlinux 0xb8db0f84 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xb8ddb44a blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0xb8e877e7 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xb8f31cc4 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xb951289a clear_user_page +EXPORT_SYMBOL vmlinux 0xb95db531 phy_suspend +EXPORT_SYMBOL vmlinux 0xb97c40fb simple_rmdir +EXPORT_SYMBOL vmlinux 0xb989a3c5 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xb98aa6a8 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0xb99e6a9d scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xb9b02c04 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xb9d26f89 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9fbb56e dquot_release +EXPORT_SYMBOL vmlinux 0xba0049d0 pci_dev_driver +EXPORT_SYMBOL vmlinux 0xba200a57 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xba47ee66 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5834d6 md_integrity_register +EXPORT_SYMBOL vmlinux 0xba604a77 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0xba70ccdf vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0xba7c8b21 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xba826ca2 inet_register_protosw +EXPORT_SYMBOL vmlinux 0xba863232 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xba883a84 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xba92a5b4 sk_wait_data +EXPORT_SYMBOL vmlinux 0xbabda674 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0xbac3cbf2 ns_to_timespec64 +EXPORT_SYMBOL vmlinux 0xbad3d6ce empty_aops +EXPORT_SYMBOL vmlinux 0xbaf7a346 vfs_unlink +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb31c181 file_open_root +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb52b4e0 __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xbb57b397 invalidate_partition +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb644f1c agp_enable +EXPORT_SYMBOL vmlinux 0xbb64ebfe nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xbb65667b writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xbb7992c3 pci_bus_type +EXPORT_SYMBOL vmlinux 0xbb7b6ad1 d_lookup +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba6decc gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0xbbc3eea7 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xbbc8054b iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0xbbd8b3b1 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xbbf79835 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xbc03decd skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xbc18180c agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc394b30 padata_do_serial +EXPORT_SYMBOL vmlinux 0xbc411183 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xbc41755e dev_set_mtu +EXPORT_SYMBOL vmlinux 0xbc83e362 ppc_md +EXPORT_SYMBOL vmlinux 0xbc8e5288 ll_rw_block +EXPORT_SYMBOL vmlinux 0xbc98e23d ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0xbc99401c fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcc90c08 __check_sticky +EXPORT_SYMBOL vmlinux 0xbcdae622 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xbce397cb init_buffer +EXPORT_SYMBOL vmlinux 0xbce3fbc3 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbd1990da key_revoke +EXPORT_SYMBOL vmlinux 0xbd1dd2ef km_policy_notify +EXPORT_SYMBOL vmlinux 0xbd2d3868 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0xbd356b64 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xbd4a2a38 get_empty_filp +EXPORT_SYMBOL vmlinux 0xbd58654f phy_drivers_register +EXPORT_SYMBOL vmlinux 0xbd5cb920 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xbd69e472 block_write_begin +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 0xbd9eb257 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xbdaf3400 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xbdce5136 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xbde24e8a seq_file_path +EXPORT_SYMBOL vmlinux 0xbe06a2f2 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xbe0e5118 nla_memcmp +EXPORT_SYMBOL vmlinux 0xbe0ffebf remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe213028 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xbe241275 dquot_operations +EXPORT_SYMBOL vmlinux 0xbe4e8eef scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xbe5b81ba inet_bind +EXPORT_SYMBOL vmlinux 0xbe63ee40 request_resource +EXPORT_SYMBOL vmlinux 0xbe7672d6 commit_creds +EXPORT_SYMBOL vmlinux 0xbe82bba2 datagram_poll +EXPORT_SYMBOL vmlinux 0xbeac9382 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0xbeb278ed init_special_inode +EXPORT_SYMBOL vmlinux 0xbec30116 dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xbede7681 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xbee90f2f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xbef29a60 inet6_bind +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefc6ac0 __page_symlink +EXPORT_SYMBOL vmlinux 0xbf021965 rtas +EXPORT_SYMBOL vmlinux 0xbf126dd9 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xbf15465e truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xbf2634e3 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf80909a tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf987397 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa61389 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xbfb6e172 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfbeb9e9 ilookup5 +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd29abc bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xbfe05a33 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xc0112bdb netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xc0219604 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xc05119fe sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xc05ad7ac __pci_register_driver +EXPORT_SYMBOL vmlinux 0xc05d6899 of_phy_connect +EXPORT_SYMBOL vmlinux 0xc068440e __kfifo_alloc +EXPORT_SYMBOL vmlinux 0xc07483c6 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07f1d1f d_prune_aliases +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0852643 pci_dev_put +EXPORT_SYMBOL vmlinux 0xc08a4e9d sync_filesystem +EXPORT_SYMBOL vmlinux 0xc09cb82c i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a7624a mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0xc0b3755e netdev_warn +EXPORT_SYMBOL vmlinux 0xc0c2bc38 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xc0c7d8d9 devm_request_resource +EXPORT_SYMBOL vmlinux 0xc0d84ced cuda_poll +EXPORT_SYMBOL vmlinux 0xc0dae19b jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xc0edb454 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xc1029d58 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xc102d542 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xc109222d mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0xc1092fb4 release_pages +EXPORT_SYMBOL vmlinux 0xc11d8093 iov_shorten +EXPORT_SYMBOL vmlinux 0xc1355f12 bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc13bf4b2 md_done_sync +EXPORT_SYMBOL vmlinux 0xc146b3bd xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xc15e224b __skb_checksum +EXPORT_SYMBOL vmlinux 0xc15e853c is_bad_inode +EXPORT_SYMBOL vmlinux 0xc1d62bce clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1dd4a7f adb_request +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e89310 dump_emit +EXPORT_SYMBOL vmlinux 0xc1f795ac mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xc2061d8d netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xc20bdcf0 seq_escape +EXPORT_SYMBOL vmlinux 0xc2352e63 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xc23e17e0 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xc24068eb find_inode_nowait +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc26dc37d mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xc2835121 param_get_bool +EXPORT_SYMBOL vmlinux 0xc28bbc2c sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xc28d9d09 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xc28f8b41 register_filesystem +EXPORT_SYMBOL vmlinux 0xc29e4e9d crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xc2a08853 vga_con +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2acc033 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xc2bb0d10 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0xc2c0b7c8 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0xc2d711e1 krealloc +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2f6c765 get_gendisk +EXPORT_SYMBOL vmlinux 0xc30e0a24 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xc31fb768 netlink_ack +EXPORT_SYMBOL vmlinux 0xc32e83e2 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xc33035f3 deactivate_super +EXPORT_SYMBOL vmlinux 0xc3576857 simple_write_end +EXPORT_SYMBOL vmlinux 0xc368849f nvram_sync +EXPORT_SYMBOL vmlinux 0xc375a890 check_disk_change +EXPORT_SYMBOL vmlinux 0xc385a68f dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0xc3b23a1a abx500_register_ops +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3e93d1d generic_listxattr +EXPORT_SYMBOL vmlinux 0xc3ef69ad sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xc3f5d9a4 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0xc3fb1db9 netdev_emerg +EXPORT_SYMBOL vmlinux 0xc41a3547 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xc41f0516 node_states +EXPORT_SYMBOL vmlinux 0xc4234165 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xc42d48f7 set_wb_congested +EXPORT_SYMBOL vmlinux 0xc42efb19 devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xc45542b4 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc4621b30 dquot_acquire +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a2f442 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xc4b15640 simple_nosetlease +EXPORT_SYMBOL vmlinux 0xc4ea2bfa elevator_exit +EXPORT_SYMBOL vmlinux 0xc4f12f90 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xc5123e99 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xc51c8f34 thaw_bdev +EXPORT_SYMBOL vmlinux 0xc5363de6 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5718627 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0xc582abd4 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5a73736 inet_put_port +EXPORT_SYMBOL vmlinux 0xc5bc25a7 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xc5c2a76c tso_start +EXPORT_SYMBOL vmlinux 0xc5d201d6 blk_start_queue +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc604378e set_page_dirty +EXPORT_SYMBOL vmlinux 0xc6188d7f __lock_page +EXPORT_SYMBOL vmlinux 0xc61e9769 kobject_put +EXPORT_SYMBOL vmlinux 0xc6235717 kill_fasync +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc653122a copy_page_from_iter +EXPORT_SYMBOL vmlinux 0xc65537d0 memremap +EXPORT_SYMBOL vmlinux 0xc6572edd netif_rx +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc68cbe09 posix_test_lock +EXPORT_SYMBOL vmlinux 0xc692fbb5 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc6a76e71 mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6b7717a generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xc6c65a02 simple_empty +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6f9a411 devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0xc7169960 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xc7201fec flow_cache_init +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7293759 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xc7405eee dm_kobject_release +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7684b15 simple_transaction_release +EXPORT_SYMBOL vmlinux 0xc76cd3de i8042_install_filter +EXPORT_SYMBOL vmlinux 0xc77b3929 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0xc780278f set_security_override +EXPORT_SYMBOL vmlinux 0xc781bd9f rfkill_resume_polling +EXPORT_SYMBOL vmlinux 0xc7856a3d inet6addr_notifier_call_chain +EXPORT_SYMBOL vmlinux 0xc788d2f3 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc795e23e cpu_core_map +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b5f476 release_firmware +EXPORT_SYMBOL vmlinux 0xc7ddb4bb dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xc7ec6c27 strspn +EXPORT_SYMBOL vmlinux 0xc8276a79 nf_hooks_needed +EXPORT_SYMBOL vmlinux 0xc83273b9 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xc8339e24 string_unescape +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc844bbe2 input_get_keycode +EXPORT_SYMBOL vmlinux 0xc84a0a7e seq_hlist_start_rcu +EXPORT_SYMBOL vmlinux 0xc8571bcb idr_for_each +EXPORT_SYMBOL vmlinux 0xc871764e mark_page_accessed +EXPORT_SYMBOL vmlinux 0xc8723c08 dev_mc_sync +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8855eb1 d_path +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc8a5ea9e udp_disconnect +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8c77885 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9133c2d nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xc919c574 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xc9237a3c of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xc9387152 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xc93c4383 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc96685fd vga_get +EXPORT_SYMBOL vmlinux 0xc96bba29 inode_set_flags +EXPORT_SYMBOL vmlinux 0xc98f3db6 register_console +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9a8e02d devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0xc9b8c308 __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0xc9c298bb touch_atime +EXPORT_SYMBOL vmlinux 0xc9c6a0cb nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xc9c8bd2c jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xc9e4920c decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca21d5b9 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xca2598ba skb_split +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca3083fe rtnl_create_link +EXPORT_SYMBOL vmlinux 0xca3462e0 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca41eaa3 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0xca42d287 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xca72f5ad ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend +EXPORT_SYMBOL vmlinux 0xca89b522 mmc_add_host +EXPORT_SYMBOL vmlinux 0xca8c6b63 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcabad70e vfs_fsync_range +EXPORT_SYMBOL vmlinux 0xcabd0886 tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xcac79ef7 tty_free_termios +EXPORT_SYMBOL vmlinux 0xcacd272d atomic64_sub_return +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad08e48 mmu_hash_lock +EXPORT_SYMBOL vmlinux 0xcae716e5 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf2ef5f fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xcaf828ee mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb049ab4 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xcb1b6043 skb_queue_head +EXPORT_SYMBOL vmlinux 0xcb37a5f4 vc_cons +EXPORT_SYMBOL vmlinux 0xcb388809 agp_free_memory +EXPORT_SYMBOL vmlinux 0xcb5d14b5 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xcb63d0eb soft_cursor +EXPORT_SYMBOL vmlinux 0xcb8cfdfe seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xcb9dc01e netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xcbb1c786 blk_make_request +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 0xcbcd9874 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0xcbddcac2 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0xcbeac4be hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcc001d9b xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc658be4 arp_create +EXPORT_SYMBOL vmlinux 0xccaf73a1 sock_no_connect +EXPORT_SYMBOL vmlinux 0xccbb4097 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccda50e6 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0xccf16c63 dquot_free_inode +EXPORT_SYMBOL vmlinux 0xccfef64f skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xccff4c04 __sock_create +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd0a5238 genphy_read_status +EXPORT_SYMBOL vmlinux 0xcd0f4d2c param_ops_short +EXPORT_SYMBOL vmlinux 0xcd13dc7c ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xcd17c7a3 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd2bcb02 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xcd74d4a7 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd8744fa param_get_ulong +EXPORT_SYMBOL vmlinux 0xcd91ce05 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xcdaddc71 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xcdb1c357 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdd3dd30 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xcdf4fd2f tcp_req_err +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce319727 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume +EXPORT_SYMBOL vmlinux 0xce50bec2 make_bad_inode +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce61fd0f nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xce745040 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xce7be4c4 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xce905b75 fget_raw +EXPORT_SYMBOL vmlinux 0xce984481 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0xcea6c8b3 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceb5d4c6 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xcedb38ae sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xcee14915 key_alloc +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf43ef03 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xcf689b06 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xcf70754a of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xcf921e35 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xcf939df8 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xcfa52fe4 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xcfe70f89 phy_print_status +EXPORT_SYMBOL vmlinux 0xcff11c71 inet_recvmsg +EXPORT_SYMBOL vmlinux 0xd0099cbd blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xd0319b7d __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a45fa5 pmu_enable_irled +EXPORT_SYMBOL vmlinux 0xd0a6f55d skb_pull +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0ac19bd netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xd0b44386 mmc_free_host +EXPORT_SYMBOL vmlinux 0xd0ca3b75 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xd0cea7c4 freeze_super +EXPORT_SYMBOL vmlinux 0xd0d66e9d pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0xd0dabc9e jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0efedf0 kmalloc_dma_caches +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 0xd1279b02 set_create_files_as +EXPORT_SYMBOL vmlinux 0xd15eb42d elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xd180e9f2 skb_unlink +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1826df7 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xd18a4c61 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xd196c9be kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xd1998d44 abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xd1b8736e generic_file_open +EXPORT_SYMBOL vmlinux 0xd1c84dfb hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xd1d66ccb blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1e3f3c4 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xd1edd09c flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xd1f162ca xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0xd1f35066 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xd21b95c6 dma_pool_create +EXPORT_SYMBOL vmlinux 0xd21e3ef8 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xd243d510 neigh_lookup +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd2581632 dst_alloc +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd26476e3 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0xd2654c00 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xd2675eac pci_claim_resource +EXPORT_SYMBOL vmlinux 0xd26da168 d_rehash +EXPORT_SYMBOL vmlinux 0xd26f678a I_BDEV +EXPORT_SYMBOL vmlinux 0xd27256c0 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0xd2739b84 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xd2782e98 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd28b4f54 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xd2a941d4 sg_init_table +EXPORT_SYMBOL vmlinux 0xd2af138b reservation_ww_class +EXPORT_SYMBOL vmlinux 0xd2b429a1 of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xd2d1e186 __napi_schedule +EXPORT_SYMBOL vmlinux 0xd2d3aaba scsi_print_result +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2e1dc08 register_qdisc +EXPORT_SYMBOL vmlinux 0xd2e2b002 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0xd2fc19bd proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0xd300d2e9 of_dev_put +EXPORT_SYMBOL vmlinux 0xd3117de4 md_write_start +EXPORT_SYMBOL vmlinux 0xd3173cc1 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xd3187da4 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd322012c netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xd3423da8 mpage_readpages +EXPORT_SYMBOL vmlinux 0xd35e69ba nf_log_set +EXPORT_SYMBOL vmlinux 0xd38bb212 ata_print_version +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c47eb1 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0xd3da50b1 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xd3e6f60d cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xd409383c pmu_request +EXPORT_SYMBOL vmlinux 0xd418e1c0 adjust_resource +EXPORT_SYMBOL vmlinux 0xd42db13a of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0xd43941de dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xd449f54c blk_execute_rq +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd472e3ef mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xd4755331 phy_stop +EXPORT_SYMBOL vmlinux 0xd47f7c97 vm_mmap +EXPORT_SYMBOL vmlinux 0xd48e1663 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xd4a66a8b of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0xd4ad88b4 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xd4b94e14 file_path +EXPORT_SYMBOL vmlinux 0xd4d0cab5 inet_listen +EXPORT_SYMBOL vmlinux 0xd4d89d5e cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0xd4da8a10 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xd4e09e42 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xd4ea3e26 dev_addr_init +EXPORT_SYMBOL vmlinux 0xd4f3f795 of_iomap +EXPORT_SYMBOL vmlinux 0xd50d44df __bforget +EXPORT_SYMBOL vmlinux 0xd527ccb6 dev_err +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd57626c7 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xd57f9d0f inode_init_always +EXPORT_SYMBOL vmlinux 0xd5947df6 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5bf0ab8 input_flush_device +EXPORT_SYMBOL vmlinux 0xd5bf2afc switch_mmu_context +EXPORT_SYMBOL vmlinux 0xd5c1acc7 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xd5c2b6de dquot_drop +EXPORT_SYMBOL vmlinux 0xd5cb5fe9 inet_release +EXPORT_SYMBOL vmlinux 0xd5e46034 iget_failed +EXPORT_SYMBOL vmlinux 0xd5e8444a __div64_32 +EXPORT_SYMBOL vmlinux 0xd5f4c45b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xd5f52d4f netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xd606503d register_sysctl +EXPORT_SYMBOL vmlinux 0xd607e392 simple_setattr +EXPORT_SYMBOL vmlinux 0xd60daa27 bdgrab +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd627416a napi_gro_frags +EXPORT_SYMBOL vmlinux 0xd627480b strncat +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd639fd9a netdev_update_features +EXPORT_SYMBOL vmlinux 0xd640c483 registered_fb +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd6500358 km_policy_expired +EXPORT_SYMBOL vmlinux 0xd65478c1 tcf_hash_create +EXPORT_SYMBOL vmlinux 0xd675f7ea param_set_copystring +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd691c77d dev_addr_del +EXPORT_SYMBOL vmlinux 0xd69b30e0 atomic64_add_unless +EXPORT_SYMBOL vmlinux 0xd69c90d6 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xd6bc16c8 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6d8f07e input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xd6dbe022 vga_client_register +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd7204b99 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xd7217947 ip_options_compile +EXPORT_SYMBOL vmlinux 0xd74e0cfe __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd75cbf55 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xd7714e12 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xd7766898 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xd797b9a5 vme_master_write +EXPORT_SYMBOL vmlinux 0xd7a85284 dump_align +EXPORT_SYMBOL vmlinux 0xd7b6b5a2 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0xd7bd4010 sk_receive_skb +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd81fa8c0 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xd83976b4 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xd845cf95 nla_put +EXPORT_SYMBOL vmlinux 0xd849b555 skb_clone +EXPORT_SYMBOL vmlinux 0xd84c43a6 lockref_put_return +EXPORT_SYMBOL vmlinux 0xd858d674 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xd85cad0e from_kgid_munged +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a92618 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b5adcc devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xd8c6a5fb mmc_release_host +EXPORT_SYMBOL vmlinux 0xd8d1494c d_tmpfile +EXPORT_SYMBOL vmlinux 0xd8dba5fa pci_release_region +EXPORT_SYMBOL vmlinux 0xd8debec2 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e3a0e3 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e506b1 __get_page_tail +EXPORT_SYMBOL vmlinux 0xd904d6dd jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0xd92514ca agp_special_page +EXPORT_SYMBOL vmlinux 0xd92fe844 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0xd937179c read_cache_page +EXPORT_SYMBOL vmlinux 0xd937843a csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xd945530c dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xd9498b22 proc_dointvec +EXPORT_SYMBOL vmlinux 0xd966ddc2 __do_once_done +EXPORT_SYMBOL vmlinux 0xd9842bde pci_pme_active +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9c2f920 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xd9c97649 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xd9ce8f0c strnlen +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9eed866 import_iovec +EXPORT_SYMBOL vmlinux 0xd9f3b570 bioset_create +EXPORT_SYMBOL vmlinux 0xda02afd1 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xda031f00 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xda165228 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xda18a86f kobject_del +EXPORT_SYMBOL vmlinux 0xda34da88 mpage_writepages +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda40ac24 dcache_readdir +EXPORT_SYMBOL vmlinux 0xda4ac2fa genphy_resume +EXPORT_SYMBOL vmlinux 0xda545c64 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xda546293 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xda63097b dquot_quota_off +EXPORT_SYMBOL vmlinux 0xda727aeb should_remove_suid +EXPORT_SYMBOL vmlinux 0xda7a02a0 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda91bdfa pci_get_class +EXPORT_SYMBOL vmlinux 0xda96c93a swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0xdaa57ec3 totalhigh_pages +EXPORT_SYMBOL vmlinux 0xdab88ba9 security_path_truncate +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacc3105 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xdaced129 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xdadd55ea of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xdb047358 kernel_getpeername +EXPORT_SYMBOL vmlinux 0xdb047771 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xdb155c3a seq_open_private +EXPORT_SYMBOL vmlinux 0xdb16a499 prepare_creds +EXPORT_SYMBOL vmlinux 0xdb43056a param_ops_uint +EXPORT_SYMBOL vmlinux 0xdb516f0b kernel_setsockopt +EXPORT_SYMBOL vmlinux 0xdb59f4a6 tcp_prot +EXPORT_SYMBOL vmlinux 0xdb66ca6c proc_set_size +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdbbed9e8 from_kuid +EXPORT_SYMBOL vmlinux 0xdbd65e1a mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xdbdadcad inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xdbf2bfa5 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xdc014299 param_get_uint +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc12d5f1 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc2ab4a6 elevator_alloc +EXPORT_SYMBOL vmlinux 0xdc38b4ec set_binfmt +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc46681f dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc51ee76 flush_old_exec +EXPORT_SYMBOL vmlinux 0xdc84b864 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xdc8eb34f dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xdc942659 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdc9d542b mdiobus_read +EXPORT_SYMBOL vmlinux 0xdcae9838 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xdcaf4fe0 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcbeb84b skb_find_text +EXPORT_SYMBOL vmlinux 0xdccecb55 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xdcdd26c8 proc_create_data +EXPORT_SYMBOL vmlinux 0xdcef0ab8 input_event +EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume +EXPORT_SYMBOL vmlinux 0xdd0602a0 pci_read_vpd +EXPORT_SYMBOL vmlinux 0xdd0a2ba2 strlcat +EXPORT_SYMBOL vmlinux 0xdd27fa87 memchr +EXPORT_SYMBOL vmlinux 0xdd4b3031 d_make_root +EXPORT_SYMBOL vmlinux 0xdd51bec2 security_path_chmod +EXPORT_SYMBOL vmlinux 0xdd6ba9c9 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd9355de tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xdd966874 flush_tlb_page +EXPORT_SYMBOL vmlinux 0xdd9bdd2d tso_build_hdr +EXPORT_SYMBOL vmlinux 0xdde65aa6 page_waitqueue +EXPORT_SYMBOL vmlinux 0xddfbd818 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xde100be0 param_get_byte +EXPORT_SYMBOL vmlinux 0xde12e02b netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xde14d604 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xde25bb6a abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xde2e4d5c inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0xde3bb1d3 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xde3bc6c7 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xde41138e gen_replace_estimator +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde61e68d ps2_begin_command +EXPORT_SYMBOL vmlinux 0xde8ed469 scsi_unregister +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdec4abc5 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xded5842d tty_register_device +EXPORT_SYMBOL vmlinux 0xdedeb7a8 vme_slave_request +EXPORT_SYMBOL vmlinux 0xdedf4f4e vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xdf02bdf5 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf3a693d crc_t10dif_update +EXPORT_SYMBOL vmlinux 0xdf4ccdc6 ipv4_specific +EXPORT_SYMBOL vmlinux 0xdf510c8d pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf80b20f pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf93b9d8 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0xdfb809cc mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xdfc40486 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0xdfd9eb0c blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xdff43ed4 __debugger +EXPORT_SYMBOL vmlinux 0xdff56e64 adb_poll +EXPORT_SYMBOL vmlinux 0xdff748c3 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe00b082a dev_addr_add +EXPORT_SYMBOL vmlinux 0xe030bafc inet6_ioctl +EXPORT_SYMBOL vmlinux 0xe03f1cc2 jbd2_journal_release_jbd_inode +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 0xe093aa8b devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0xe094ef39 sg_next +EXPORT_SYMBOL vmlinux 0xe095bf0e fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xe0a73c3e qdisc_reset +EXPORT_SYMBOL vmlinux 0xe0a95b68 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xe0b0004a blk_put_queue +EXPORT_SYMBOL vmlinux 0xe0b04dd7 seq_printf +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b33567 bio_copy_data +EXPORT_SYMBOL vmlinux 0xe0b9d4e0 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xe0bce9bf input_grab_device +EXPORT_SYMBOL vmlinux 0xe0c5b2b2 serio_bus +EXPORT_SYMBOL vmlinux 0xe0c66664 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xe0c67d0a unlock_new_inode +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11db196 phy_init_eee +EXPORT_SYMBOL vmlinux 0xe11f2214 dquot_initialize +EXPORT_SYMBOL vmlinux 0xe12c810e debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xe12e3619 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe17c6d61 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xe196ac4f fget +EXPORT_SYMBOL vmlinux 0xe1a602c6 d_find_any_alias +EXPORT_SYMBOL vmlinux 0xe1e87de8 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xe1f9bd72 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe1faab26 d_alloc +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe23d8f8b set_user_nice +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe26aca20 bmap +EXPORT_SYMBOL vmlinux 0xe2845cdf proc_douintvec +EXPORT_SYMBOL vmlinux 0xe28f5826 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2ad5ac5 led_set_brightness +EXPORT_SYMBOL vmlinux 0xe2ae6a3c pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xe2b1d0e8 request_firmware +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2c8c870 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e8065e memdup_user +EXPORT_SYMBOL vmlinux 0xe2e8b315 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fae716 kmemdup +EXPORT_SYMBOL vmlinux 0xe31fa125 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xe337d7e8 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0xe33ed5bb kfree_skb +EXPORT_SYMBOL vmlinux 0xe33f28d4 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xe34c5595 kset_unregister +EXPORT_SYMBOL vmlinux 0xe37afa72 unload_nls +EXPORT_SYMBOL vmlinux 0xe383deb4 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xe394cfc1 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3cd4bd2 vga_put +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe4003ed6 flush_signals +EXPORT_SYMBOL vmlinux 0xe42c3efa __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xe43d46d7 kunmap_high +EXPORT_SYMBOL vmlinux 0xe460d597 of_translate_address +EXPORT_SYMBOL vmlinux 0xe46cf044 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe485fb5f netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xe492fdb0 framebuffer_release +EXPORT_SYMBOL vmlinux 0xe4c17741 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4f31fed fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xe4f34399 __ps2_command +EXPORT_SYMBOL vmlinux 0xe4f3eac6 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe500ac40 __frontswap_load +EXPORT_SYMBOL vmlinux 0xe50abad5 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xe5191d97 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xe5196a45 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5527080 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xe55b8454 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe598c59a mdiobus_scan +EXPORT_SYMBOL vmlinux 0xe59a8158 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xe59c151a mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0xe5c5acc4 sk_alloc +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5fac44f blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xe629022a xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xe6472612 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xe669b818 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0xe6820ff1 get_disk +EXPORT_SYMBOL vmlinux 0xe6836283 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xe693a6ce vme_get_size +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6a5cc9d kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0xe6a953a2 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xe6c09d11 textsearch_destroy +EXPORT_SYMBOL vmlinux 0xe6d62873 max8998_update_reg +EXPORT_SYMBOL vmlinux 0xe6dd236d clear_pages +EXPORT_SYMBOL vmlinux 0xe6de2416 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xe6e858ae pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xe6ebc016 key_create_or_update +EXPORT_SYMBOL vmlinux 0xe6ee1267 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe720fbce inet_add_protocol +EXPORT_SYMBOL vmlinux 0xe73af825 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xe754719d pcie_get_readrq +EXPORT_SYMBOL vmlinux 0xe757349d i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xe75c547d tty_lock +EXPORT_SYMBOL vmlinux 0xe76934ce twl6040_reg_read +EXPORT_SYMBOL vmlinux 0xe76eb90c tty_unregister_device +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7aff545 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xe7b6315e kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xe7b67131 nobh_write_begin +EXPORT_SYMBOL vmlinux 0xe7bf317d fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0xe7cbce81 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7d5b657 single_open_size +EXPORT_SYMBOL vmlinux 0xe7d696d3 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xe7e9a457 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe83b45de tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xe83c09c8 netpoll_setup +EXPORT_SYMBOL vmlinux 0xe8531e17 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xe8582375 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xe86b48e4 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xe884e628 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xe88e1ed3 simple_link +EXPORT_SYMBOL vmlinux 0xe890ed98 param_set_ulong +EXPORT_SYMBOL vmlinux 0xe89b3af1 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8baca91 blk_integrity_register +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8cdca47 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xe8d72aa4 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xe8dbbd46 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9188a9b nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xe9247f17 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe93c6738 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe9545d89 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xe96141ba bio_integrity_endio +EXPORT_SYMBOL vmlinux 0xe975bfe2 bio_split +EXPORT_SYMBOL vmlinux 0xe978f3ec unregister_netdev +EXPORT_SYMBOL vmlinux 0xe99d1dca netif_device_attach +EXPORT_SYMBOL vmlinux 0xe99e839d backlight_force_update +EXPORT_SYMBOL vmlinux 0xe99f8f16 set_blocksize +EXPORT_SYMBOL vmlinux 0xe9aaa684 bdev_read_only +EXPORT_SYMBOL vmlinux 0xe9d57ac1 kernel_accept +EXPORT_SYMBOL vmlinux 0xe9db4372 macio_release_resource +EXPORT_SYMBOL vmlinux 0xe9db4f5d gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1b67f9 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xea28486e blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xea684a43 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xea7987f1 key_update +EXPORT_SYMBOL vmlinux 0xea8c4862 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeafb00cd dm_put_device +EXPORT_SYMBOL vmlinux 0xeafe31a1 param_get_ullong +EXPORT_SYMBOL vmlinux 0xeb03437d tty_mutex +EXPORT_SYMBOL vmlinux 0xeb0a1474 free_page_put_link +EXPORT_SYMBOL vmlinux 0xeb0a6d6b input_set_capability +EXPORT_SYMBOL vmlinux 0xeb17a25f mmc_erase +EXPORT_SYMBOL vmlinux 0xeb2f1802 blk_free_tags +EXPORT_SYMBOL vmlinux 0xeb340e67 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb55a931 __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xeb7c8f6e add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xeb8d93b5 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xeb94c10f __alloc_skb +EXPORT_SYMBOL vmlinux 0xeb9f2f46 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebbeb58b jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0xebd18deb sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xec1aa6ef memzero_explicit +EXPORT_SYMBOL vmlinux 0xec26aca5 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xec558e0a fb_class +EXPORT_SYMBOL vmlinux 0xec57a4d0 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xec7eb402 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xec8676ed mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xec9544dc get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xec99c911 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xec9bac6e key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecbcb8bb radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xecc65c25 mpage_writepage +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece55a1d tcf_hash_check +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecedf798 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0xecf439c2 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xed18fed4 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xed3fa4ef find_get_entry +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed627a1f blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xed9151c9 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xed93f29e __kunmap_atomic +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 0xede1bf48 dev_uc_add +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee0a05d4 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xee0bfe10 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xee1c8145 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xee20b8f3 __scsi_add_device +EXPORT_SYMBOL vmlinux 0xee22f1d1 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee3496c3 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0xee3f8acb mfd_add_devices +EXPORT_SYMBOL vmlinux 0xee4b8574 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xee560ef8 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xee59412f adb_try_handler_change +EXPORT_SYMBOL vmlinux 0xee75ac59 arp_xmit +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee96b2d0 dquot_resume +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeac4c12 kernel_write +EXPORT_SYMBOL vmlinux 0xeec9879f inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xeee5e607 audit_log_task_info +EXPORT_SYMBOL vmlinux 0xeeeaec9a of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef1f93d1 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xef2114ee mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0xef234ae8 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0xef67be28 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xefa5d1dc pci_enable_device +EXPORT_SYMBOL vmlinux 0xefa6379f bio_copy_kern +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd74534 devm_ioremap_nocache +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 0xf01b8307 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xf027b384 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xf03bd217 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0xf03fe024 vfs_setpos +EXPORT_SYMBOL vmlinux 0xf055ad49 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xf05cae6b __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf0731071 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xf078237f rtnl_notify +EXPORT_SYMBOL vmlinux 0xf07d13d8 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08fbd68 serio_unregister_port +EXPORT_SYMBOL vmlinux 0xf0993840 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0ad890b register_quota_format +EXPORT_SYMBOL vmlinux 0xf0b67d10 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xf0b86438 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xf0ced5b2 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xf0d6ad3b dev_mc_add +EXPORT_SYMBOL vmlinux 0xf0d91565 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xf0e35719 sock_no_shutdown +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 0xf11e2f53 submit_bio +EXPORT_SYMBOL vmlinux 0xf120872a dql_completed +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1580e97 pci_iomap +EXPORT_SYMBOL vmlinux 0xf176b5c2 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xf17ea81d sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf19d72d0 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xf19e9355 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xf1bfd01f nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xf1dad2be pci_disable_device +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1deabf2 div64_u64 +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f02159 dma_direct_ops +EXPORT_SYMBOL vmlinux 0xf1fb0352 ppp_dev_name +EXPORT_SYMBOL vmlinux 0xf1ffa00e dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf21876dc of_get_next_parent +EXPORT_SYMBOL vmlinux 0xf225f6ef ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf22f1c54 set_device_ro +EXPORT_SYMBOL vmlinux 0xf237eed7 param_ops_long +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf253647a kernel_bind +EXPORT_SYMBOL vmlinux 0xf2738c5f __quota_error +EXPORT_SYMBOL vmlinux 0xf27563cb irq_stat +EXPORT_SYMBOL vmlinux 0xf29c3b18 passthru_features_check +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a6649f vmap +EXPORT_SYMBOL vmlinux 0xf2a6b37d d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xf2ad9ef5 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2ca8ee3 netif_device_detach +EXPORT_SYMBOL vmlinux 0xf2cbb4bd agp_generic_enable +EXPORT_SYMBOL vmlinux 0xf2edb166 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xf2f8d26d _dev_info +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf3196689 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xf31ce143 kill_litter_super +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33b48d2 dqget +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf346af64 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf380aa00 key_type_keyring +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3949627 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xf395c3ca get_super +EXPORT_SYMBOL vmlinux 0xf3cdbf21 i2c_verify_client +EXPORT_SYMBOL vmlinux 0xf3d0db20 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xf3dd1738 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3fefb82 blk_get_queue +EXPORT_SYMBOL vmlinux 0xf40b2297 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4449388 timer_interrupt +EXPORT_SYMBOL vmlinux 0xf458a00c jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4a4d8e5 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xf4a570be vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4eef396 gen_pool_free +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4fcee39 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xf51eee94 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xf5222143 _raw_spin_lock_irqsave +EXPORT_SYMBOL vmlinux 0xf52321e0 atomic64_sub +EXPORT_SYMBOL vmlinux 0xf5264c3f inet_stream_connect +EXPORT_SYMBOL vmlinux 0xf52cbb8d try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf54c51a2 dma_pool_free +EXPORT_SYMBOL vmlinux 0xf5843ea7 inet_stream_ops +EXPORT_SYMBOL vmlinux 0xf5849623 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xf587aadf ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xf5a4c9d7 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5bd7fc2 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xf5bfc9f7 d_obtain_root +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c32367 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xf5ddd6d9 brioctl_set +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ef3d88 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xf6365d14 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64bb81a udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf6789a40 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xf6802cc9 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf69a6983 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c80060 of_root +EXPORT_SYMBOL vmlinux 0xf6dc7bf5 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xf6dd58a4 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xf6de7ba5 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xf6e01c58 fb_find_mode +EXPORT_SYMBOL vmlinux 0xf6e7ee4d pcim_iomap +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70384d7 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xf71521ba atomic64_add_return +EXPORT_SYMBOL vmlinux 0xf71fdd35 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xf7205d92 inode_set_bytes +EXPORT_SYMBOL vmlinux 0xf730a0fe blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0xf73f1d75 iput +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf75ff78d dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xf789306e sock_wfree +EXPORT_SYMBOL vmlinux 0xf796cfac fb_blank +EXPORT_SYMBOL vmlinux 0xf79cd26c skb_push +EXPORT_SYMBOL vmlinux 0xf7a0e79e audit_log +EXPORT_SYMBOL vmlinux 0xf7bcff9f truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xf7e2cff3 ppp_input_error +EXPORT_SYMBOL vmlinux 0xf80d1879 d_invalidate +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812a1f3 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf83042c0 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xf835e709 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xf84101bb pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xf848586e dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xf8629e8b udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xf8778ed7 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xf88a99ea neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xf88d5762 dev_get_iflink +EXPORT_SYMBOL vmlinux 0xf8ad8f31 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xf8b99b3c kern_path +EXPORT_SYMBOL vmlinux 0xf8baeb31 ilookup +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f1227c pagecache_get_page +EXPORT_SYMBOL vmlinux 0xf917231f agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xf9194a6a dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xf933664e phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xf9348cbc xz_dec_run +EXPORT_SYMBOL vmlinux 0xf962867b inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xf9745648 agp_copy_info +EXPORT_SYMBOL vmlinux 0xf976c848 lro_receive_skb +EXPORT_SYMBOL vmlinux 0xf97bf5f0 skb_seq_read +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a9c653 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xf9ab8aa7 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xf9bcccd5 da903x_query_status +EXPORT_SYMBOL vmlinux 0xf9c07819 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xf9c9777c pneigh_lookup +EXPORT_SYMBOL vmlinux 0xf9e73082 scnprintf +EXPORT_SYMBOL vmlinux 0xf9e83c39 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0xf9f31d34 single_release +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa1a2d3b generic_key_instantiate +EXPORT_SYMBOL vmlinux 0xfa2672d5 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xfa3b7d3b security_inode_permission +EXPORT_SYMBOL vmlinux 0xfa3d5a5a blk_init_queue +EXPORT_SYMBOL vmlinux 0xfa4a020f grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa668559 mmc_can_discard +EXPORT_SYMBOL vmlinux 0xfa8c0965 inet6_release +EXPORT_SYMBOL vmlinux 0xfa8fd73f param_set_ullong +EXPORT_SYMBOL vmlinux 0xfa9489a1 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xfa9b74da scsi_print_command +EXPORT_SYMBOL vmlinux 0xfa9ff20c page_put_link +EXPORT_SYMBOL vmlinux 0xfaaf9c9f kobject_init +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfad4c3b2 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xfad53a34 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xfad9a1c6 alloc_fcdev +EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfafc9f87 sock_init_data +EXPORT_SYMBOL vmlinux 0xfb024411 devm_release_resource +EXPORT_SYMBOL vmlinux 0xfb1b571a fb_set_suspend +EXPORT_SYMBOL vmlinux 0xfb59133e devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xfb66381e pci_disable_msi +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb7cb08d __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xfb89bacc write_one_page +EXPORT_SYMBOL vmlinux 0xfb8ef19d __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb95effa tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbc63aa4 nobh_writepage +EXPORT_SYMBOL vmlinux 0xfbc706b6 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0xfbd50007 skb_dequeue +EXPORT_SYMBOL vmlinux 0xfbe3ceb9 genphy_config_init +EXPORT_SYMBOL vmlinux 0xfbe9bc65 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xfbf63bb9 irq_to_desc +EXPORT_SYMBOL vmlinux 0xfbf8d558 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc600564 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0xfc65459a kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xfc762a11 blk_rq_init +EXPORT_SYMBOL vmlinux 0xfc8001d2 blk_put_request +EXPORT_SYMBOL vmlinux 0xfc92ce9f __init_rwsem +EXPORT_SYMBOL vmlinux 0xfc9b9816 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfccd5ae1 bio_alloc_bioset +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 0xfcfb491c devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xfcfe4ee0 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0xfd021fb6 genl_unregister_family +EXPORT_SYMBOL vmlinux 0xfd0abb5d mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xfd0c5038 adb_unregister +EXPORT_SYMBOL vmlinux 0xfd2307be inode_add_bytes +EXPORT_SYMBOL vmlinux 0xfd32065d padata_stop +EXPORT_SYMBOL vmlinux 0xfd33b5fa cmdline_parts_find +EXPORT_SYMBOL vmlinux 0xfd470d41 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0xfd4e3bb6 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xfd4ecf24 release_sock +EXPORT_SYMBOL vmlinux 0xfd6e9cdd blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xfd6fd725 pci_set_master +EXPORT_SYMBOL vmlinux 0xfd89ec82 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe621d mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xfdd1a8c1 seq_open +EXPORT_SYMBOL vmlinux 0xfdd7b739 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0xfde909b7 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdf582ac mount_subtree +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe0ba853 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xfe2b054e vm_map_ram +EXPORT_SYMBOL vmlinux 0xfe30e005 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xfe379bc4 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xfe519dfe eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xfe5c282b of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe73fa9d register_shrinker +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe7ffc63 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xfe83c8c8 pid_task +EXPORT_SYMBOL vmlinux 0xfeca7590 radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0xfed0b55f copy_to_iter +EXPORT_SYMBOL vmlinux 0xfedbd3b7 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee94988 pci_platform_rom +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1a81f8 scmd_printk +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff332371 register_netdevice +EXPORT_SYMBOL vmlinux 0xff3ac083 dquot_alloc +EXPORT_SYMBOL vmlinux 0xff3f74c8 bdget +EXPORT_SYMBOL vmlinux 0xff4384a8 md_cluster_mod +EXPORT_SYMBOL vmlinux 0xff456edd skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xff5ea908 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff6dea25 smp_hw_index +EXPORT_SYMBOL vmlinux 0xff78d6f5 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff95291a d_move +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffcb1bd9 inet_select_addr +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffdb17dd __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xffdb82bc sg_free_table +EXPORT_SYMBOL vmlinux 0xffec3334 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xfff1902c register_md_personality +EXPORT_SYMBOL_GPL crypto/af_alg 0x01c86f84 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x05729ef4 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x60453408 af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0x8254fa1e af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x8aaa6570 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x951458c9 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x9bec833d af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xbea82b52 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xdb14c82e af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xf3de7fbf af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xf3d9fa26 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1bc2de8b async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x6838083d async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x5bfe8c56 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x6253306c async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x200b7efa async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xadea9bf0 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xc131655c __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe294b5d1 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x8c688664 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xe88fce6e 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 0x032cb854 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x132c074f ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1f17e804 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x32371c4f ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x39a6542f ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3fef25e5 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6c9a7681 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x7446bec2 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8b749e04 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa5d43e7d ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa8d9987f ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xab83ba99 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xacbb69ad ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb446df4f ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb85c8dcd ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbe35ccbd ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc9cf93b4 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd5830e2d ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd67b11fa ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdd630baa ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xed43e7a2 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xedd8b5c1 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xeebea677 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x05ed5bdb ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2fa484bc ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x48dfe304 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x588cf0d9 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6872e237 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7c7ac7a3 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7cd8f1a2 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x8b48046c ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x987b1ae6 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xbb903afc ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc4913346 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc64cdb86 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfa0df9f7 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x1da6a572 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x9a9a903b 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 0x2fcfad58 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x33568382 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x56b3181c __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x935b638b __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x050fe1bb bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x05553fa2 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0a5f31ff bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0e484c0d bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x17e3c046 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1b59f758 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x238a343b bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x2f650926 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x38400ce7 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x39c15947 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b7636ae bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x416b2083 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x46c80523 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4c0104f7 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6241c380 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x64bbe600 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x660e4ed8 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b539761 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8e5dcfd5 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x909b3c5c bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc77c8c87 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xcb3a1ecd bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf8e226e9 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf8efba5c bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x013ce716 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1731de97 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x17909a07 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x34559a75 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8cdee43e btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xdb409370 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x1e1d4f84 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2e658c26 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6086082c btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7312fd1b btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x75f5075f btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x790deca4 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xa9d2401a btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaa326515 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xaa5587c1 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xb11547a9 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbe1a1761 btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xed7eaff2 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x12f4ecdb btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2056a860 btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x62f06adf btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x6ba6e73e btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9266065e btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xae29ea41 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xbddd3e18 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc3306fd5 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xce3cfc21 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xceb84885 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf8f38444 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xc77b5fa8 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0xfb7230f1 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x607082a0 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xcb34d4c8 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x1e2db0ac dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x7b5578a9 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x868aa562 dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb05d624e dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc77e8a7d dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x0fbb19a7 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x867d146f hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb0c97554 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x764cd993 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x83419ee1 vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xcf84aebb vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xddf5f41a vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x041231ed edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0e151d5b edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2856b8a2 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8c9472 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2db5aa70 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4171b128 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x44c6cc48 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x485118a0 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x60f9957d edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e96bc50 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x712b5f49 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x88c39e41 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x9cfe6f06 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa6930d09 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa72e1785 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa82f0c47 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb0557293 edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xb98d1480 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xbaa28619 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc08abc46 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe07464cc edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf22031db edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf57ed468 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x028a3855 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0bd7f13d fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x1d93a8a3 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x2fec23a3 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x79f8d38b fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x9751f7be of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xca4ec428 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xd2e396e0 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x5191f953 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xde3509bd __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x245cb516 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4c295216 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5aca7c6b drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x936a98c5 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xb60f5065 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xd162b8af drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x381472fa 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 0x6c717886 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x6e88152e 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 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x0685324d hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x124c6d88 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c9fd632 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x24c8f070 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x29e771b3 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x29ee2cbf hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x34ae17c0 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3812f559 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3a0a374f hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d150659 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3e6f071c __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x44e8c04a hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x48738a2c __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4cb6a769 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x55949cfe hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5dbf8991 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5f477a9d hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x60ea6fcf hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x699f02ad hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8f2281e1 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8fa7bd41 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x924a6509 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb7b5882f hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbf55308d hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3d05433 hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc3d11e5a hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcdecabba hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcecc6a0d hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd0f56c59 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd593c5a8 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe397c72b hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7404e2b hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe777910b hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe7d0c0df hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xee8130dd hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf39d915d hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x67b199f1 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x13ee1e6d roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2944b3d0 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x47976600 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5c270911 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x5e29817d roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xd96afbc4 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0ce68a35 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0d23a5b0 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1db72ccf sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x756d82b1 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x8654aba9 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x9840e70e sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa6cd6e3b sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd6ed5131 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xe5edbbe3 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xb3df0bd1 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x0203d973 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2edde1e0 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3f9bc7b4 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4cfdbeeb hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4ffb81c1 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x58c12129 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5e920d43 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x647fb332 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7a1e8de8 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8474a0d5 hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8e8d37ed hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9cb22cab hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb2523895 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xb645deae hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe3b56749 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf3af8d62 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfae2c893 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xff0dd230 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x09597f0b adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5c1f18ee adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x9afb98a4 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x07b649cb pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x08b9d6b4 pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x2036e40c pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x29d6f37d pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x33d311e1 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x34edd8e4 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3af2232f pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x3bac81d9 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4244ead9 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7b2702fa pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x854c9550 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xb4c456b0 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbee2eb51 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdb486bb5 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe243fda8 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0dd9af6d intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x15966636 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x3fe6b47d intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb8ae21be intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdb6d372c intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xe0e3d528 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfd95432c intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3711a5f5 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3d3f3f57 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x607c48ae stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xefbf1a22 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xf93d03f4 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x180ae048 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xae40b3fe i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xbf3b981e i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd8ab703e i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xe761eaba i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x2db004c9 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x665eedba i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8440a4a3 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xf46253e3 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x3092e513 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x8a6956a7 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xe542323e bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x0c579237 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x292e14f9 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x2b63431d ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x64989860 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x726efcaf ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8df56e27 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x94625fb8 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbeeaee8f ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xfda81e15 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 0x01dd3eab iio_channel_get_all_cb +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 0x7abcbece iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x1364f098 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x9ea7437f ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0de6c4c4 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x46e9cb22 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x537dbce9 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0b10715d adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x191fec42 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x236e5fd4 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x345d82fe adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x38bcd9cb adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4eafa9d7 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x687eba9d adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x73c80bef adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x760dc06e adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8215c2d4 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9428267f adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xac91afea adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0cbc2ed7 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x11268eb2 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x13da7e52 devm_iio_device_register +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 0x29a38d6c iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x32a139d8 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x436f75c2 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x52a24787 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5d68523e iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5ffd3e27 iio_update_demux +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 0x7e837fc8 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x828e2b65 iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x82f0d169 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x855e8af9 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8af0c213 iio_scan_mask_query +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 0xb2facf97 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb9a23899 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc2f15ade iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc3238b35 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc8defea2 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd8bf7a2a iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe088cf1b iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe92f7d07 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe9d63a77 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xed5386d4 devm_iio_device_alloc +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 0x04926fc3 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0xf24b4de3 matrix_keypad_parse_of_params +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0x3b418c7f 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 0x1f795c8e cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x8095b5cc cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xc8fa71ae cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x4276d08f cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7084cd5b cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xce2852fa cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb52afcbb cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe5fcd7e9 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x442b210e tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x6fb3bf75 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb13eb8ef tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xedb12c8f tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x10ea0520 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x142baf80 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x27251bd9 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7c59176b wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8a696769 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8c3d04c7 wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xad4d0aaf wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb0f317f5 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xb6d35d99 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbe18f974 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xbf956459 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcc8d7550 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1c79d79e ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1cf66056 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x41c953ca ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4dcf3ce1 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x94c279eb ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9b277bd1 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb02c60ef ipack_bus_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xd8b07182 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xeecfc6d6 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 0x0b4461f6 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x19e85132 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x25c2c290 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2a60df95 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x2f513169 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x37196d98 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8070f77c gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8ccad09e gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8eff32df gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x91e325a3 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa170b387 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb5eea128 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc250ca50 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xcbb222b7 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd1b865e8 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd9104bac gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf4278ecc gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf888bb35 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x14e49cc2 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x392c01a6 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x3a49e5a9 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x452aca3a led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x6f6d1a38 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xac0724e5 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x01376793 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x09c32442 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x382417f4 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x386ac678 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x5ada1993 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x624d1e24 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x65b015f3 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x7ef62226 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa0ccca97 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xd436ce7d lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xda70774f 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 0x0a1209b4 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x2d65bf96 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7e8c07e7 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x8cd7e131 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xd21c7d63 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xd9932c9f wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xf04a59a3 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xf9f5c25b wf_register_control +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x1c840e50 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2629e2c1 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x495dfea3 mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x537b91e8 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x78217d42 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7bbb6c3d mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x94b7df86 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xa38e02c2 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbbf44c04 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc3d344e8 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xca65a6fd mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd39ecbee mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xf8066efe mcb_bus_add_devices +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 0x0ac0005f dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x22f92a16 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x25fba290 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2e865cb4 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 0x5e59fd66 dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x69bc883b dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9eaa3939 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 0xe9839aa7 dm_cell_promote_or_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xf311e653 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 0xc9a3422d dm_bufio_write_dirty_buffers_async +EXPORT_SYMBOL_GPL drivers/md/dm-bufio 0xd2b60778 dm_bufio_client_create +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 0x174ac834 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x67d41524 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x775facfe dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xaf83ed17 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe069845a dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf04c218c dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfdc8ae70 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x083fcf94 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x9ade1784 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 0x33ef6e20 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 0x4b1e7cb8 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x5dfecbbb 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 0x9422038b 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 0xe5c1b25a 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 0xfaf297f6 dm_rh_delay +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 0x054d4e06 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 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/saa7146/saa7146 0x1b6a83a1 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x2c1cca4e saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5756b8fe saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x621bb8cf saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x66d6bd0d saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8805645b saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x968bea35 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x9ded20c7 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb80a7f30 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc5a4d694 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x09ce4631 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x65b493fc saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x74f66088 saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x79eb2f25 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x8d5bf786 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x9f42ad1a saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xf7dc1e37 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x10846ff0 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1e77fa2c smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2d5b1fb7 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x324c24b3 smscore_get_board_id +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 0x579e723c smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5adcfc17 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x63222b29 smsclient_sendrequest +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x64d23471 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6cf25982 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7a37a274 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7c576277 smsendian_handle_message_header +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x7ce1a84d smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8be8d27a sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x997c4337 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9c2225ed smscore_translate_msg +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xa98d508c smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xaca786ec sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd10531ef sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe8a2a269 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfe96df14 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x92abbed9 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x34880d50 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x180aaed8 tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x1470c5c5 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x17a08a29 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x1a81c0fb media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x1ed7540c __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x28e0f409 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x352e174c media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x4246f9cc media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x5f37bb94 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x5fb0dd67 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x7545c11d media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0x90408e7a media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x96e54209 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0xa07e77ec media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xa0956b3d media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xa781f238 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xc0304ce1 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xc6cfe889 media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xedef1d38 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x01dba5e7 cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x02dbf105 mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1e730013 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x5e529a21 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7995da3c mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7a7b439c mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8309d91c mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8fbd3689 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3fb451a mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xac5a5d3b mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xb054ad9b mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc92ad8c0 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc96ef5f4 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xcad45103 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd021a0c0 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe3d7b5e7 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe587d524 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xea26cd05 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf5d17282 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf8a226bd mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x00f6a682 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x0b387c29 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1c29296e saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x30db9bc4 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x35d43be2 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x50dac083 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x60fc303e saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6230d23d saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x658b18c3 saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6d51a009 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x869ff70d saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x95e31b97 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9961eacb saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1ce22e0 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa2a54da1 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc18b9073 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xccfbfc53 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf3784de5 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf8aa08ce saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x1995aa2c ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2119acab ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x30a0e232 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x34661acf ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x419d67cd ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb29e9947 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xd32db889 ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x051271a9 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 0x3c7eb685 xvip_set_format_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x454a2e6e 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 0x51355e40 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x647a2e77 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x91fdc93a xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xa80b745e xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe57c1d8b 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 0x470e5afe xvtc_of_get +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 0x028bde1f radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xb4424008 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x05dc1591 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1f8283aa rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2b70ff87 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2d674fb1 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x47c75f20 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x53038146 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x705c5e4b rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7aeb8149 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x83106480 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x86d02b0a rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb7490644 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc6aeca38 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xdfacaea5 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xea986519 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf045204e rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xfa086ee3 ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x76c126f6 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x732d6e65 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x3f18636c mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x41ecfe6f r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x93ca0666 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x3385b2e1 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x449ab290 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x76c8405a tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x26f204b6 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x431585a6 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x96f8d100 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2788737f tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x7f767b5e tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x9ab778f2 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x076532c5 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x13133104 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x32232e70 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3cf6ae08 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x421ee646 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x519e3cd6 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7f7d4a71 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x812bea08 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x87cabbbd is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8fcc095d cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x96646ff0 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa45dfabc cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac742228 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xaedc7cb2 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd3af6936 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd823d2a4 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xde1d64f4 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf0589f9a cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf9a33a93 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf9f9fb8b cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xb2ad0a4d mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0xbe32c342 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x226d071e em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2ec5f9b4 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3743e081 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x78e95448 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7a39f72b em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7c9ba360 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x903ceb3f em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9cd239e6 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xabeb4d2c em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbe9dde3b em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbf76422d em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc38daa97 em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdfd096a7 em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe66cc3bd em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf29a9edd em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf2c5269c em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf9eff669 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfd736210 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x03cb1805 tm6000_set_reg_mask +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x4d1de7d2 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6c3a021d tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xb4c40f18 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 0x2e1e3cba v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x430def95 v4l2_i2c_new_subdev_board +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7ca52611 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 0xb2dd4e3a v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xdae0e2b4 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe9e38644 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 0xbc33eeb2 v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf4a258c1 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x0c0bca0c v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x115dc0c4 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x20bed340 v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25918045 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x328fa06c v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x33c3338b v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x373708d5 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x38311607 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x3a325b1f v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x456529d8 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x60a0e336 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6ad781b8 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x74d2320a v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x856bfa0a v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8a3c9dcb v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaf9fb733 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb3f4fa7b v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb8b9e152 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc23437d4 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 0xc78df6e0 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcae58a20 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd7cc82fb v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdb21c00f v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe2b8eb18 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xef91490f v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf2c3a2e5 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfc50e084 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b6cea6d videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x10762417 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x14e61e11 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1f8500ca videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x20c89e17 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2b6b7fa8 videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3d6d6a30 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4c698bd6 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x56b2b45b videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5db0156e videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x63813ba4 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x709071d4 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x774d2858 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x892abc06 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x918a16e3 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9551cab0 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcf4a36f7 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdc15269a videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xebade70c videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xeec66385 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf31319dd videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf57e99a8 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf6ff34b8 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xff11dc73 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x235027ec 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 0xf37650c1 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf5c728c6 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf716435e videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x7fec95d4 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xab3a710f videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xaeb7fd3b videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x059e2d54 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0dddb58d vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0e488a43 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2c754541 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2ea72c5e vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x330c4ce6 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x38d63958 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x407bd6fb vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x477531ba vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x47e647dc vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7949a8e1 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8b753fe5 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8e3ebe4e vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa791e32f vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb9e9c381 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcd4f3c6d vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd81631b1 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe8c9d658 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xe0169743 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 0xedfc8a7d vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xd0e76f3d 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 0xd83c23cc vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-memops 0x9aadbea2 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x011fd731 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0b437bb4 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0e6f26f1 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x113a6c1f vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x14277ced vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x284278cf vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x29cac107 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x29ccdbca vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2ae2f612 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2af11d47 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2d1eb081 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2f95a68c vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x32fd621b vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3d3d7def vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x40a0498b vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4a4e581f vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4bb03965 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x56731f38 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x57cdd804 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x629e4558 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6ae3bc56 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7ae44992 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7d5dd515 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x889f2109 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb7e879d9 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbd7b69fe vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbf140665 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd8ee572f vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xda6161da vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xdf4e1a93 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfc5e1b13 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfddc8c45 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x2165d143 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 0x08695d31 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x09410b87 v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f65e17d v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1a1ceb9d v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1bdb9a53 v4l2_event_subdev_unsubscribe +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 0x328c3066 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x34e8af98 v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x36287d96 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3740e82b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3f8ad10e v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x514da27d v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x58cd966f v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6784e45c v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x67f744a7 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7a85f5d7 __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x88078cf8 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8f1de23a v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x8fa601e9 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9666445a v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x98545b10 __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa13ebbb4 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac2a5e1b v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb9ae6033 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc93e527d v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd713e652 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdf0d23fe v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe0602827 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe141f64f v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec33bceb v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xed5f4e78 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf4630d75 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf5956f8c __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf6bcf597 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3e2384ea pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x45062413 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xf6aac535 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x08638853 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x1884083c da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x19b997dc da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x7d3b5e08 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x97752543 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xadbb488f da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xbc6063be da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x14bc2eb3 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4b70313f kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9b9b5953 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xc56af6e6 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xcefeab22 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd02ef1e5 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd0bc506d kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xe569e262 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x30164d29 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb3c65fc8 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xb5436c78 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x46f38927 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x499c5be4 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5bbe2324 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9699dff4 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9d279ea9 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf0ee7cf2 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xfab81328 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x0f8c3143 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x393f8f63 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x4a34b9c2 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x57460638 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x88670a24 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xa6a684ad mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb55335f6 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc8dd4104 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xdad2b46c mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x01a36a67 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1320e23d pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4b373b80 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x560a124a pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x57ec5e16 pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5a6e0f77 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5b550446 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x5dca29ab pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa2aa1b3e pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xaaf5998d pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xcff163ba pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x8d25f9ca pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb745b06e pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4454d2f3 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x63b4b559 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x701b144f pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x9508a6af pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xa08410c5 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 0x01d2655e rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x105961d4 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x159ec478 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x1812caf3 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x20afb0cb rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3caae712 rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3d524cf4 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x51ece116 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x531f0b92 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5a53b69a rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7bc231e0 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8062de84 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8744e24c rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x88f490fc rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8a7646f7 rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x918c28f7 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x91df50f9 rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xba88d3b8 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc3805abf rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcd533a2e rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcdd52339 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd671aa70 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xec4793e2 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf21d9753 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3001fe25 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3bf7d754 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x3c9ce7f8 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x75ec9867 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x799d3c19 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7ec268e9 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7efe1078 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9e1d1190 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xa98990d8 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbe483262 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc29df045 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf27763fd rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xf4fbc8db rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00420830 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x064fedb2 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0eed1803 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14da08ed si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x23bb85a1 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2831b219 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x29df163b si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x29eab008 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30b2c2c6 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x311deb5a si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x47cd6664 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x587503eb si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5a99050f si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5bcd2793 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x65fe86c4 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6ccdcc45 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6d9c6768 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x700b77c7 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7673f552 si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x85f33651 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x884cf77d si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9df59a06 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa91cd43a si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb3a1f6b9 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc1cbcc4e si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcde1d8f0 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd2977d62 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd92de742 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xda2c3291 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe2c37791 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe5dd2a66 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xeda452e1 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xee1e48dd si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf7873fdb si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x74c8b095 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x8dfc6e81 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x900bfc90 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc0aaa833 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf9d65cca sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x2a1839df am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x7bb36770 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xabf0f3db am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xc9e5821a am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x4e71a36c tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x97ca45ff tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x99831dd8 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xfa0508ce tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x1c418c6f ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x547e9b3e bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x596d8059 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa8501280 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd3333fcb bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x3e5325a3 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x7f546e81 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb257a675 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xfc2937c9 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 0x030e9794 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x0954f57a enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x351f1455 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x534d4e82 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x694001c1 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x6af24b82 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb6151c08 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xeac253c6 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x10e60c47 lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x5197f3fa lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x567f638e lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x82b7569d lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x9ca2e0b2 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb876b7b8 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xd69160ac lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf6cf9037 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/sdhci 0x06470e23 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1a4040ca sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2c5466f8 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2c5f9208 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c03c942 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4e3868a6 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7098a9cb sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x8761397a sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x926faec7 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x97c85b48 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb0cafb63 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xc92ba159 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd0728faa sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xefac4f11 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x324d9806 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x55ec6fc7 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5e7edc54 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x614a722b sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x69363813 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x7098a9c1 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x893198b3 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xf5321f8b sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xfdf5aba4 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x4fb6ed03 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x8d81ed7d cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xb2a8c895 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x5ec595e7 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xad3c5a61 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xd36e11b1 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x3cfb3ce6 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1d677bbc cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x1f149617 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x720653fd cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x094abce4 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0af54f57 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x119fcf6d mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x147828cc mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x199f8b5b register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1b5bc06d mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c2fca3f mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1c9f2c5a mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x29621c46 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3792df82 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3e9e7018 mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41268e08 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x44a45231 mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4997060b mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4a46449b mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x56d9e327 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5a6c39a4 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x63d64224 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x81e7ba1a __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8869479c mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88cd7d0a mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92027536 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x987dd5ab mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99b28101 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x99db6c3c get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa54f7c05 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf7e32c8 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1fe6628 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb41a4511 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc1596199 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5e358cd mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc9b5f0bb mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcf789d24 kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd8f30b9a mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xdb78d85f mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe436efc2 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe736f323 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xeb445bba mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf1bc7d18 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf279928a __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5bb1a33 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf6c57ec1 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x26c7ab91 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8ace95ac register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x99fcc316 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xcdbd3be5 del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xeb054fe9 mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x150ca3be nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xe11b7646 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x7b2a7397 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x48d7b586 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x565f3481 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x424d921a spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x13cf5906 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1974b15c 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 0x44aee663 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x609592ae ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8f625a52 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x911a9591 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa00e3e90 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc3512c39 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xc9bda645 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd348fa41 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdd1749ef ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe7cf3fcf ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xee17da45 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf86c1835 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x4d2a16ab arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xfd63c07e devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x2231e3e8 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x5d05782a alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x70b7ca0f c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xbc77d60b free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xc1136c10 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd2fecc86 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x236ce5a4 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x41b536c6 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x51bf5933 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5a86286c alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x60c49499 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8b87bc37 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9a68bef7 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa6e63a56 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xaa4596f9 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb26195f5 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc61f13c6 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc94db664 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xca1db463 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe60f1280 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xeadecad7 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf6198d55 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xf9065279 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xfb9d4a06 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x039bb78a alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4673b5c7 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x8bf21404 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe0f4b44a unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x10024758 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x51049d2a register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa567a5bf alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xa82eed3d unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x0e87acd6 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xc7d8522b arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0318cf38 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04999a3f mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05974b81 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c20bb5b mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cc16fac mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10a98d7c mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x123c0c5b mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12c5a5ac mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14c07d8d mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x184c7153 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1894ef5b mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b475568 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b844307 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x20f637ee mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x214a247d mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x25664e20 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2625d945 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2646be5c mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x268bf9da mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28755ddc mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28855550 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a4c569d mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fc94aaa mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x30998488 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x314c9bc3 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31ef1e19 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3348bc30 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34f33f22 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x34fa3f63 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x386c2680 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b621e8c mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3d8722bc mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3debbe97 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x40fda182 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4263b9b0 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4280356e mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42843df3 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4342c8c8 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x475fa604 mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4931e4f2 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a7c11ae mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4bd959b9 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c46862a mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ee2a072 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x529a280b mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x532dbaf2 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x535b6777 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x543152ee mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x588f8a00 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5df62b10 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ee27034 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64c8dec2 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6615f294 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ab18db3 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f9fac8a mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70d7ed09 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72c9db48 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7361d91a mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bca7e8e mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c869efa __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x823672cb mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82bebe1a mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82e7b327 mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x843c0f02 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84427c16 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84b15c0d mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84b1805f mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84e72943 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x87cd166c mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88e68467 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8959214b mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8cdb77bb mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d27f7c5 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e5f0fce mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fa4cd60 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x90c15172 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bd1333d mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9bdfc24d mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9cf7dd70 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dd24a00 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e205706 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0c5c349 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa844d506 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8e72b73 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa8e9c659 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa985ff9 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaacde889 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb340b79d __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbacf2fce mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb71cc2a mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbded8db9 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6767e1f mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc701adf3 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8431343 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8e9513c mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8f95661 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce7faed4 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf3f4ba2 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd11df1af mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd589fc3e mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd811352e mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8e6d7a2 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd91bcf25 mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9e5dbd8 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda8ab6d0 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc006549 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdfde3761 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe022512a mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1a15004 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe20cd626 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe37ae5c3 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6178e98 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6966c19 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe71254f8 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe75d17cb mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe94e5bf7 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9986b46 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xee2c038d mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefa3359f mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf36e2fce mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf407bd51 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7fbb1fe mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc782c4a mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe609673 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0977e7bf mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0a1133dc mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0ddca603 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0e0a1aaf mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1552ddfd mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x16b9f247 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1ce4b5d8 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f1d7c5a mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f23304d mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x26eb985e mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ffbdec5 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42afc4aa mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4cd88419 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x506480ec mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x536ec9a5 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x55ff5785 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57f21fdc mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x59e67f25 mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5b0fbab9 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5d78aa2f mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6c22ad3d mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6dee7d50 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71f60808 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7b89e69c mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd5efae mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82dd998c mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x861cbc25 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e5baea0 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9812825e mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c65f9c0 mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9d14ee46 mlx5_buf_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 0xa6dc92b7 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb6f42525 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc3015ebd mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc4d6fdc mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcc7807ed mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcde769f2 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd2738a14 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4424718 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd573a44d mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd74d67c0 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdf8a59eb mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe0ca36c0 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe57b6d50 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xed3eb06b mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x368d3d71 regmap_encx24j600_spi_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0xc90ff6fd 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 0x0e00a7c4 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x29a0aa79 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x4d40c3ab stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x90936ec3 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0831bfa9 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x0f8f9c67 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x3a17cd3e stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x8c78a5af stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x377f2853 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4446e967 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5e00d108 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x60d04404 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x632d2056 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x651b8f9d cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x72c93825 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x77431ef5 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x8194f92c cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x82f73143 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x86e9e37b cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbd4fbf78 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc0eee021 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xc4dd4e7f cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd107f80e cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/geneve 0x6e220f77 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xb1231e88 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x10a95727 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x53bb043c macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x9887cd5a macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc4f20c5d macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x1bc15adb macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x40ae5f06 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x4fff6b7d bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x61135d7c bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x933b03d1 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9466d453 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb54d85ee bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd418309e bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xdf79e4bc bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xe0150bd1 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf77e70f3 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0xed58fc0a mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x25425ebb usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x51fa789e usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x707db222 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x973b336b usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x17a3525f cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x2d5318e7 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x302772b7 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x37854f7c cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x4781c594 cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5e3f3777 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb291a58a cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc76abd7d cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf8292cf6 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2952d297 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x40dd9851 rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x520ef541 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xccc71b61 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe8aec4f0 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xeb765a6e generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x05e7f873 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0d419e3a usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x112aa50a usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1e3035dd usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1fd3ede3 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x24ad5570 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x262422e5 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x46a3f669 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x479156ca usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4f455e98 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5968eec7 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5aa6e8f7 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x66aedaac usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x759890fc usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7cd1a9c6 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x852ceb77 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x89e77aac usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8ec2251f usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9623f8f6 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x986f457f usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa7355bf8 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaab78278 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xabee7ec5 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb1e84756 usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb6206a49 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc055f623 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc4182aa1 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd4f9c1e2 usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe5340bb6 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xee9e57e9 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf70511ed usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xfb867fe2 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x09f929db vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xf5c5add1 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0238dcbb i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x04d3d70a i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x05ceeb3d i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x10a3bef6 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2f15dbb9 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3d612924 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5aed7f83 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x6d256482 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x73e4961a i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x761858cc i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7735963c i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7fa6905c i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x857056c4 i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x85ce0988 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x934ed898 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcec7a085 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x036044de cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x990db334 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xb478064d cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc5fa0f14 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x8b63b33b libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x2fd5d97b il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x7cd5b511 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x92f0bad3 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x97a19e2d il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xc7b68777 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 0x07a6093c iwl_set_bits_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 0x1d1dba3a iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x20902299 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3132517a iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3a9fe776 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3e6ba73f iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x41b404ae iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x42ac3654 __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4b8fcc60 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4f160429 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x598b85d0 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5a6bf394 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6914df4a __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6c3d8e1d iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6c623ec2 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 0x7c6603ea iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x86be9b50 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x86eae10a __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x95691084 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9facc659 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 0xbc43a3b3 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 0xdf98069d iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xea73a498 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xeb8b4759 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf41299b5 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0be7fc51 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0fb1789a lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x16cdd94c lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x22b688f9 lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2368ea5b lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x320a79c3 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x37b8f098 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5921a776 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5a9876c6 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7fbaf795 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8422b427 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb3907b8b lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc3092429 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xda48677f lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe8798947 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf01d9d86 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x05885c14 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x32e1c28a __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x3c702892 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4809c67b lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7aa696c0 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9f7913f0 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa713cd13 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 0xe702a7c6 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x089b74e2 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2529ff8d mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2da01acb 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 0x38c82c0e mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x3be23098 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x51bee57d mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x5ba9873b mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x78bc2d55 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7b8b8022 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x87bb4513 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x991a923d mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xcf8eb772 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xd81ebfca mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdbbbd459 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdf834440 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe2966805 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf1ee9832 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf404efe6 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfe769cff mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x21010c7e p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2d515c7f p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5f932cc8 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7b65b67b p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x85b158f2 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x95587373 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa2ee91dc p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xedbfa6de p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf1cefe51 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52b314c8 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6228e5d7 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6f803b12 dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd87c9e42 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x02ca41a3 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0695cafe rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07c9cc7b rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x16c08b32 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1eab6c12 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x56a13a74 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66a323fe 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 0x7d1eb97d rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8497c1e3 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8da48e05 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x93efc7f7 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x94c86093 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x97ab306f rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99741203 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9c635173 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9e8f4df9 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa02718a6 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa2766530 rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa2c00f7e rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa37e456f rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xadae6c12 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 0xb85047c7 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbada8fba rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc046854f rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc569ef9a rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd4f6ce6a rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdfaedc9f 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 0x1096a3d2 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1b51f492 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 0x2687c319 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 0x2a7d8a32 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3091d238 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47187aed rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69538a16 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6ec66d72 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x859a4f30 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x861841e1 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8884aca4 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x984c22f3 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9fd580e3 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa7338b5d rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb674f28b rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc163be95 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc7263e6a rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcea4b050 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf8ff6add rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfaa57ce7 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x27cf5ea4 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x38ef9ae1 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xc2a900be 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 0xfa0c9817 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x06fb2365 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x07dbfa39 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0f53486f rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x10b0fcd5 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x12f66118 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16939ee3 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1858cf3a rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2a695547 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2a7a8c7a rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2c7d126b rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2ca3f781 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x34356548 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3a0d1610 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3cd59508 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3d81e2e2 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x49e09c4b rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x543fd96b rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x57294941 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5d956c4d rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6a7d69a0 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6d0d1541 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6df9dea7 rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x77b754d9 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7cb90952 rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7d1e202b rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x80df8c77 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x89f86c2b rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x90946ccf rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x90bd9ec3 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xaed40ce1 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbe78f9a7 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc76544fc rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcc569be7 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd77ebb8e rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe31f47fc rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe332c28d rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xec06005b rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xff885896 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x05e22e25 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0c019c31 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x13ddd3d7 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2a6c370c rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2a8afcaf rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7559b79a rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x82aa4ff3 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa1ec4131 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xa333e511 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb3e82c8b rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc7c8b5f3 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd38affb8 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe0e617f2 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x165babb6 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x17ef782a rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19ba2781 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1c3ee6a5 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1d16d488 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1d920914 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1e71dc8d rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x216289bb rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x23516dd3 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2c2193ca rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x44ef1f93 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x49c5d566 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x50af008e rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x57cf4451 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x59b71afc rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x60c10627 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6b903f98 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6d58cdec rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x73b2ff2b rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x76fe4873 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7e8f6b82 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8b440c91 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8b6dd1f6 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9330f8df rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9b849a16 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa0651d70 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xadad9b14 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xaeecb023 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb697174d rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb6f7bec9 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc11f27b3 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xccf9c6c5 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd1f0e487 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd63dfb15 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd64923f5 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd9dc94b9 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe1e40ce2 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe55dec3a rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea0839b3 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xebc20268 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf0ca1b8d rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf44d0a32 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf4aae0f0 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf5fae368 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf8ea23c1 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfa559667 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x8d6eec9b rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x93268cca rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc6e0fb01 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe0c76f82 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe394dc17 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x137caecb rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x54d939f4 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x75dd67bf rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xcc4528d7 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0141ceb9 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x049aeb00 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x061555f3 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x093e18cc rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0e52fbe8 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x199eb85e rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x377578c5 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x74b96cc2 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7a076482 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x97312100 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc82f3873 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd80f1e15 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xde10d9e7 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xded55041 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe3629a4c rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf50acad3 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5573bca9 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x92d1e7b2 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xb8d468ca wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0331bd15 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x035299bc wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x054fefa8 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x186c96d5 wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ce8dd2e wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1e5401ae wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x29904bc8 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x350234d6 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x39aaf7ad wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3eeeccca wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x417accd1 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x44d6190f wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4572a9ca wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4838c391 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4eaeaec3 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5163df9c 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 0x5ef55ba5 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x67a9ea73 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x73b5bd24 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x762eaf91 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x79d87468 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7aa69632 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7bdeae62 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8c12b3e7 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8edcf8c0 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9062a87d wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x91da5146 wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9253fcd2 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x926d20c9 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x953147b8 wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99d34b24 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c912463 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9e79550b wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xabc1b8ce wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb5c2203a wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbb452df0 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbf8bfadb wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc037d55d wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc4ab90f6 wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc7bc13ec wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcb768fbc wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xea3e42c0 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xefbc1fd7 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf25b182a wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf766952d wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x156d9c77 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x22adfd93 nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x3237ba12 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xcb192387 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1854ea6c st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x61536301 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x615959cc st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x7ea84a1e st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x88ff7923 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xa8a61eae st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xb7c46785 st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd485ab1f st_nci_discover_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 0x317f78cb 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 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 0xe481e747 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xe5329375 ntb_transport_register_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 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 0x68828b1b devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x72546203 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 0x9b2b2b7e nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xb3621efe of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc94d2b29 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc96fb674 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xcf28c981 of_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/nvmem/nvmem_core 0xece0d3d4 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfd1bc506 nvmem_register +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x017822f4 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x835cdd20 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xb8d28234 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x09d2d803 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x28658f21 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x785a00c4 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xadda595d mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xfacf0b97 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x06b96500 wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3bc66327 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x3d06bfbf wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x4b7e20fd wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xcfe43af9 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xf22c9510 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xcc448799 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x00cb523d cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x06619554 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x07c524c3 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x09c650fb cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x12189392 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a7e021a cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d45d461 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x21c4321b cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x305a2169 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x343910d9 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x41154a4d cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44df5b50 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44fdb3f9 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4c72d51f cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x53232597 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5581f8ce cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x577981c4 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x577f1a1d cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5cd0ab8e cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6723663a cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6770b55e cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x67811a1e cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x691f9a0f cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x71f74462 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ed36dec 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 0x81f7ad37 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c423cba cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa56dcf21 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa79bf347 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8230bf3 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9a4826f cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac25d962 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac621ac0 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb4305443 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6400fff cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6a998d8 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc92b4ad4 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xced14345 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd032da1a cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd1bfd50f cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd674b1d6 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdf3fa3ba cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf271deca cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf614a334 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfef25aa5 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xff5b8d2e cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0bb992b4 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x256be029 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x30cc68e2 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x577c4505 fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5846f0be fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x61635afe fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8070ae27 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x9de4374b fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa17e92c8 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xad812b1d fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb0e13d8e fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xca76036b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd521b4e5 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe3c79c4b fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf0ec87a8 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xfd215498 fcoe_validate_vport_create +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 0x01bd1517 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fd2534f iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x21cdb2d0 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x283cfd93 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2b850ce1 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2c2373c3 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2cd9d5c3 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2f5afa54 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x34ad7e88 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x37fdc70c iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x41360be8 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42885aa9 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5395b860 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6123680c iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6380b597 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x63990309 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x64c7ee9d iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6618f5e8 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x67499c92 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x76f8ede0 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7815ce6c iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8192c1f3 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x833616d3 iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x958c8ae6 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa85b80ac iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa9dbc6c2 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad483128 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xaee2cae1 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3707f01 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc38649b4 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc43a8f1f iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xccdbbf19 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd3f3156e iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xde5297d5 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe0af057f iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe4503074 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe63e106e iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe8ef73b4 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf467b6e1 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf98db10f iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfbef7269 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfc9d5683 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00c00532 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1515c2ee iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x239b9a7e iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2e899076 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x42acfe16 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x550b1799 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5d07022e iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6234df21 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x797bda66 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb1d0faf8 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb58a4712 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc0353297 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcce7ecf2 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd4887457 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdfcf617c iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe0543717 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf4c39723 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x0a265f16 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24d84512 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e865189 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3959185e sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4253714d sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x49e86c44 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5410584f sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5bb0e4bf sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5c5df56c sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x640f1543 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a0895b9 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7f5c1c1b sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8e2335b0 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9cf96744 sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f2ff523 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb3ece6d7 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc41b109e sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xce807538 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdf25fb58 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe32fe311 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf0a5056d sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf6ff722a sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf93aebfe sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfef1088f sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x072de1dd iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x08d75bd6 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19045c2f iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a97dc54 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2ab9a7d6 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bea88d6 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2d69fef1 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3254cd56 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3909134d iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x39314a73 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3e0abbf6 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x483248dd iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4d36b632 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4e57e752 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x517c908d iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x547754ca iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60632bf6 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x696ec6e4 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x71e62ff3 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 0x856f6eb3 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x932b8750 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x937c96dc iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x965c9fdb iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9e55de53 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa247f249 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb299fb0b 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 0xc8515cee iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca3b7ed8 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb6d9529 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd4cec004 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9f27037 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdaf9da35 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe07bdab8 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe4439690 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xef5ae1c8 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf298b298 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf50d06a2 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf69d6a4f iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf9c64d85 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffcb562b iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x735d3d8f sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x75e44a7c sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xac6188cf sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xbf2a22fd 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 0xdf068214 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x0f8e408a srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x1b56b443 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x2dfb0bb8 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x3abcdbc5 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4ab185c6 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x9f655efb srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1a0c381d ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x51f89052 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5802f73a ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x771acd22 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x87ca8848 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa6d48071 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb85626f2 ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x235ebac9 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x5fbe12b2 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x6114338c ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x63a5f8df ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x69ec2614 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb6760f84 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xb8f8d38b ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x04bfd88b spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x6d7d6214 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xb8707f90 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xc76b143f spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcd23b859 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x32e1f668 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x3335b6be dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xa467e2f2 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xff16709b dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3c788852 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d8af26b spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7423257d spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x748025df spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x76281119 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x8372ea3e spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa4241589 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb4e8abe3 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbad416da spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xbf806f09 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc6f821c4 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdda0fc88 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeacf9543 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xec3e623a spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xeef4c551 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf01ea286 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf471ebad spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf49cc986 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x74a018a4 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x040dc540 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x065c9a70 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x086bac70 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x08d0b23e comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0c71247b comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2204c415 comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x29f13b4e comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2c5b70d4 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2ffdf78f comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x345d242e comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3df7bc64 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x483a1ef2 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4b19076a comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5067f916 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x53930422 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5cad842c comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5fbd941c __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7fb61df0 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8204352f comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x865ed7d6 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9753fb68 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x998630fd comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa57ae216 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa993aa22 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xba751f76 comedi_set_spriv_auto_free +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 0xbfcb1430 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc2301f47 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd1728de0 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd4e255c1 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd4ea0c84 comedi_buf_read_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe3ab3abb comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xeb7a7e3f comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xec284471 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf20dee3c comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf5bd2585 comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x17cc1fb0 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x25696de4 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x364d5686 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x71bcfd03 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x993d7faf comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xa02b0ff0 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xb8199e24 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xde5bfd4d comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x20499922 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2d2ddb0d comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x5f13d4d9 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x9b8f9142 comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa9644eed comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xbfa76c76 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xf045c1cd comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x053dfda8 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x12bf4c90 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x359b80aa comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4291d6a6 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x4a338ee3 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x835719b2 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 0x7c0b32c1 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x4f8b315c amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x5c34978c amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xdf5ce6bb amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0e380d46 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x27c5bc0d comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x339ad9ab comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x5b6fca74 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x64165138 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x686122bb comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa227bad4 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xbdefa8ec comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc22f4f35 comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdaa83139 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe5e01b20 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe7045036 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xed245af8 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x64d19b94 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x6eabf121 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xd6d02fcc subdev_8255_mm_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 0xa228e27e comedi_isadma_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_isadma 0xcb2e0741 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x3086cdc0 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x1692ac28 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x28166316 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x37136cca mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x50cacdc5 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x599c202a mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5a7bab5b mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x60c99f4d mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x61c9492b mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7c9fb7d9 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8135ccd7 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x97017a60 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x98c7ab02 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x99a4fa9a mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9ad5dc36 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa2cde173 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xed65dfa7 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xefba8037 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf0867969 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf3ba417f mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf5c30416 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf67e0f10 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x78648e6f labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xf7e1fba8 labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x13b38188 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x63e07c2c labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xae995cdd labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbebc261d labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xcfabef6d labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x16c1c324 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9673f8da ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xb03567fa ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xcb17fbb3 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xdfed2a76 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xe5e4cf63 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xec1d7d1e ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xf80a8808 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x06ef0437 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x34c5200f ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x3ae8e8c5 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x4c22f7b4 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x52b9c1f7 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x7e0ef97d ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x17ec587e comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x2c6ca465 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x361f4528 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x5c91de79 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x94242cd0 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xb01de62f comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc728b2be comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7ced828b adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1f9eb466 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x28bcd90c most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2cddf65a most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x454cefa3 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x56adb49e channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8a188deb most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9980d8dd most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa26137bb most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc5367c3f most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc68677a1 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd007b10f most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdf436c42 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 0x22e1b325 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3d65939f synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x3fd85eca 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 0x475e158a synth_request_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x4856a18d spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x5cb8b06a synth_add +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x62dcf75f spk_do_catch_up +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 0xb7f6081c spk_var_show +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 0xccd9511e spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd1b551a2 spk_get_var +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xd96ca60d spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xddf41d8f 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 0x15fb0964 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x2161394d __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xaedce777 uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8937f360 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x959f68e7 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x9f70fef2 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb2fef229 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x4706442f imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x62aa7d03 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xbb6e23cc imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x04354eef ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0f68c7f1 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x77b7227b ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x956d3860 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa4031a01 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xbde2ccba ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x08919e69 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x15990413 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x20efec55 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x38621f4c gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4b931548 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5090c3ba gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x59fae989 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5b7aa7e6 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x90ad1e73 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x92763526 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9b6ff704 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xaa052d13 gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb60f5ca9 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xef019356 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xefcfe6d2 gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x23c65dcb gserial_connect +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 0xfb39f842 gs_free_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xff01c5da gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x73d7e7b6 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x8b97b6d7 ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xd65b8986 ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x05b7525f fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x0f359fbe 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 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 0x252dd06a fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x286e808f fsg_lun_close +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 0x299a33b4 fsg_show_removable +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 0x3da7845c fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3f18a18d fsg_show_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 0x444ca95b fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4982030d 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 0x626ed33a fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x63a0bcdc 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 0x7dbdd9e4 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 0x8aafa575 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 0x99ff7a8b fsg_store_cdrom +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 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe6d0b0f4 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 0x1b67a3e1 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x223f1717 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x22c4e336 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x24811c37 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26c2ff06 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3ff5f4a0 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x91bfb364 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x9aeb1561 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaf755fdd rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc0bf2182 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc629cbe4 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc63f7958 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe0390040 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xec5b2f36 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xfcfb84c8 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f6929da usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1679d05f usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1c52e47a usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2840963e usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x33676216 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x45440d03 usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4b77572c config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x52dbd566 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x558ef843 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x728957e3 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7c5ade37 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x82f9be0b usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x835ab40d usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8788ef10 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x880f6be9 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8afee11e unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c790993 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8f856728 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x907d34a1 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x91132a8a usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94b9f5d5 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x962bee67 usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x96ddf737 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9a7d6400 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9c8aece7 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xba77c36c usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd1e8f468 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ad41d8 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3d3e72d usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a52516 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xeb19422e usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf53a10a8 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x045cf37c usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x09cc4815 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0fd9a7dc usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x293cd8c3 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbc98c988 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbcd194d6 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbda37091 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xc00890d6 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcc228cd0 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xccba04de usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd2120eaf usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd3d80fb6 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdab2b4d4 gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe1ac8da3 usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x48c2c1d3 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf4c48431 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x472e0b5c usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4f220024 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x77afd269 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x816f941d usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb11ec5c7 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc61868fe usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd918c94b ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdc152d34 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xf9cd3e3e usb_ftdi_elan_edset_single +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 0xed2025ea musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x9627be20 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xcae3312f usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x04bfec4d usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x081801e5 usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1f037123 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x244aa53d usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2cc437bc usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2d09b4ab usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b57855e usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x44206697 usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x46e1671e usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c0254be usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x523d1ffd usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8df0eaee usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x93942c97 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa25c9c95 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa47b188c usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb2e5ead4 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb8bed737 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb8c52d52 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbd7b74ed usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1529b7f usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xeaa3589d usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0534a30f 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 0x1bd7a65b usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2be416cc usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x35a79d2b usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x51884bc2 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x54cd183a usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5a538212 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x63a7d01f usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6c4edd55 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x752160de usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x80220f06 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x807fa7f9 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x91b80def usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9673917f usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x998b347d usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbda4e15c usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xca8ecc34 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xcedd02ac usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd728de43 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe02f0972 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe0db6069 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfc15ad9a usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xfcba4307 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xff04f676 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x00ad2ad0 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x246789c0 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3664c32a usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x3f4af6ea dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4d54ff88 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5d22dd06 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x77b55270 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9b8fb05a usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xacd6a2ce usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xad2983c1 usbip_event_happened +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 0xf1c07f93 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf39d848f usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2999a20d rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x37ddbea3 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x3cf0f18b wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x83ec61bb wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xa178f145 wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb05e7077 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 0xc759e088 rpipe_clear_feature_stalled +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 0x00db50e7 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x07f4a42a wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0a4e6908 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2506584c wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x254dbfae wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x54805d9c wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x565afded wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x639d04b8 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8a8ec776 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9956ba36 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9a1fb10a wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa71f69d3 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe3d2b8f7 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf205ef03 wusbhc_mmcie_set +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 0x40c71732 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xba5a3e5e i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xe9390819 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0943a2d3 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x1e5b6a91 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x22613f0b umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x24638165 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x41ade613 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x77f64a98 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x80d16b74 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xbb2f83e1 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x09e182df uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0b8aad57 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0bf68ceb uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0f6b81c9 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x14c6d964 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1a87213c uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1ba6ec10 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2cf11252 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2d81826b uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2e9fc277 uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2f82532a uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3c0204ce uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3eabcb08 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x48b54612 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4efba11b uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x536e871a uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x565506e1 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e4bc088 __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x61aba0b0 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x782483ea uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7dcfcd23 uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7e863bbc uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7f27d355 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9684cb31 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9ee8ec52 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa07927f0 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa62480e4 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa6636574 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb546f8cf uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xca9ae9eb uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd2493d20 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf090f8e uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdfa444f3 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1716f06 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe43057ce uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe53b512c uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe833fbc5 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xed5eddd2 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf80b9589 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf8405144 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfa564ca9 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x81b74b80 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0033636c vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x020951e7 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0b7c51f2 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0ea26910 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x10c62848 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23a0d527 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x334daaee vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x40f8700f vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b2cbed3 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x53a10b06 vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a3341b1 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6427c128 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x82183268 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x857f8359 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x91499a9e vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x915900c3 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9dab39c2 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9efa6bb0 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xac7cf8c5 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb5d04993 vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbe4f5cbc vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbeae1cb4 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc115f3a1 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc2af1f5d vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc35a94a6 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc698c94c vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc8524a67 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd9ac3018 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdd07a1fc vhost_log_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1f94bbea ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x24f3bbc9 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x27e5d329 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x30a501fa ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x910babaa ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb9c84abc ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xd89fa269 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x005c283f auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x463c5d6a auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x75274392 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x77a1baaf auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x79b4d1f5 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9ca1ea7b auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa9216400 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc8867053 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd9295890 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf288d935 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xfccb266a fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x2bf9a2b5 fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xb5272532 fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x8ad2723c sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xfe86d308 sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x27e6d00d w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x2b1fb65c w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x330ff303 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5966f6ac w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x5bd88572 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7267a4d8 w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x8c7ae887 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa3a5d7e5 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xeef15611 w1_reset_resume_command +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3c4f47ec 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 0xd869ceb6 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xdc583c08 dlm_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xddbd7438 dlm_posix_get +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x02fd6849 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x0f8bf2a4 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x978ce96f nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xa39ad705 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xcc8d3e44 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdc492732 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf8d1d8be nlmclnt_done +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05e3bdf5 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ffb9e3 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06bb39a9 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07582aad nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07645fab nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07651422 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a9b573e nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0dc22515 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x10165cfb nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x107e45e0 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16709e2e nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16ae7183 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x17678de6 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x18d1a497 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a25952b nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cf77255 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d03e188 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e6ec193 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22630c1e nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23c031fd nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b79066c nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2bac17ce nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c372d1f nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2d11154b nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3490ad53 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35426011 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x371726cd nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x38ab3ad1 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3962d887 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3b3e4351 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c20032b nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca4fa5c nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3dd32303 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fbdc997 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41d0c902 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4513f124 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45321ae6 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x453d344a nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x464eb500 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x483e718e nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4883fbae nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ec159f1 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4fb3dfeb nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53c74eab nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x577a5898 nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x57aaf1e9 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x59e5814d nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5cfa987e nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x65a1d486 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x661ba2c9 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x665e0bf2 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68b9d50c nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6e0002ac nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ef290fe nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71824b34 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7624c178 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x762a0dbb nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77658ab7 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7821eefa nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7862af98 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x792c31f1 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b093e36 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b5a6846 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f25a2b6 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f3d07df nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ff7cfd0 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x804d88d7 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x82001a26 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86981241 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x89ea25e0 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ac24732 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e9e05cf nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8f215288 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 0x920f3144 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9456140c nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x950a0720 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98ff6e17 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9ba4b90b nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9c5738bc nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d259f26 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa0bd25d1 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa171c22e nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4ea36ec nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa56b8b3d nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa7ddac93 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa826c8cb nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8eb6de2 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaaa14361 nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab197bd1 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadd99dfb nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xadee3583 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf383111 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb044be3b nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3ff0dda nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb4306cec nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5825948 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb5f22124 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb640cd18 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb66183b2 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb91f8e34 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbe3fc247 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4ff1e9f nfs_auth_info_match +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5399ed3 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc5ef47d5 nfs_init_timeout_values +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc68709b5 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc6fdf5aa nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9b566ad unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9c10e07 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc4d7fee nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf2c8854 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd65230a4 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8c63451 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb2a60f1 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb935968 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe096a65e nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xea87ccad nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebb3e610 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebe0e582 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed4270fd nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeee89063 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf28dcb62 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2cb09ee nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7c0d55e nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf7f556e2 __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9ebb6d6 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf9ff1ce6 nfs_init_commit +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 0xfcbbca09 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff780f21 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x1602e1da nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x04104a88 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a9d26b1 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0dfe8df2 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1aba98da nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1bd4ddd1 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2016d836 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x20872c0a nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x208cca61 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x234b361c pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x25cec68b pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2a04f1c4 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x32ca27b1 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39918f1b pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3e7503f1 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42bc1b3c pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x480f50f4 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x48cddcb6 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4b5a4cba nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4c3c61f7 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d906065 nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4f38fd87 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x501871eb pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5492e6f8 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x58fcd566 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ccc68da pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5edd7f84 __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x67817a65 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x724ace54 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x79b4af0f pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8014989e nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8602e07e pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x86ce7089 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x878177cd nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b8448f4 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8f29f5c7 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9035d77f pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9063cf74 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91e9186d pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x989d2684 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa02df320 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa07f9ebe nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8518aff nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb21cc514 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb34045b7 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb60a98bb nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb950ecc1 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0487aad pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4044243 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf614ba0 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcff760e9 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0a843d2 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd4583756 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd576bffd __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xda20d3bf nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd1d7d45 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd5ee35f pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xddf395d9 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe385e32b pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec959fe8 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeee1bf25 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf713390f nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfdd22c66 pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x004823df locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa7395827 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xebfdb5ef locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x88db1f52 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd3db25cb nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0dc303db 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 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 0x59509a90 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x687f6251 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x759bc082 o2hb_register_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x7ce4540b o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x89496ae1 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 0xf1a5611d o2net_unregister_handler_list +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfd27308a o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xfdb24ccf o2nm_node_get +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5b6504f8 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x619fb60f dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x761b1e14 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 0xd7ba575e dlm_errmsg +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd8fa57a6 dlm_unregister_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf0ce2665 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf8493441 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xf9c4daaa 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 0x60f4bcef ocfs2_dlm_lvb_valid +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x80447c49 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 0xca115154 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 fs/ocfs2/ocfs2_stackglue 0xedb34024 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 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 0x0c011e4b notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xf18c8beb 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 0x756237e3 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0x8edb864e lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x00ab6682 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0x25166869 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x3ed3461c garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x5d09d83a garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x8827ffd9 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xa23c4193 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x08950478 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x0aaf057c mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x16f51ddc mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xa1b5afdc mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xd40fab7b mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xf3cbbef8 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x22eda155 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x247f81ce stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5193558d p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0x5bb40b0c 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 0xffec2ed7 ax25_register_pid +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x064d73c6 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x84a81c2f l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8897b4bf l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xccc57bb1 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xd53d3096 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xde0cdc80 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf87bee28 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xff641a54 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0c052efd br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3d35f2dc br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x41bddb3a br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5a1d10d9 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x6e44a821 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x93a0511d br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa631f37f nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd6fdea85 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x8b6c2f3d nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xbe9c79c8 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0455890e dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x081bc5d0 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14718166 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b7b5880 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b943124 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d1a65fc dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x206b1e4c dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a699e3b dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a18f35d dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3e39806d dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x430abe59 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48bf776e 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 0x516d81f1 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x63d9976b dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0x77fcc42a dccp_child_process +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 0x91fec4a7 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x96cdf874 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6bbb38a dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6c36888 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc07c8962 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4d7176f dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc7606e59 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcaea93ad inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd4209a0f dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd9a4cf59 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe64e9b6f dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe6d1a949 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf08b45e8 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0aef960 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf8114593 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe060467 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfe1991ba dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x64263f83 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6771c49e dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x9453901b dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xccef6941 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf24cf65f dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xfa178044 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x1f8074e9 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x7b82e761 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xc1457fa1 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd6685582 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ipv4/gre 0x6418e786 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xa8ee5f11 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x64ff13e1 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x83508e0d inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x84ded577 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xafb9dfcc inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd285c4c9 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xe001dcfb inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xa206d032 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0e254713 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2245eb54 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x24b6784f ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x34d641c2 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7cbaa77d ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8b6f0c1b ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa104adb4 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaf185f18 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc8fafb30 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd0c7fcc9 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd1843a66 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd65590b1 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xdc38541e ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe108c185 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf75272a2 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x878c41cb arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x427d2143 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 0xf94abe2f nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x2e856eb5 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x5da2d8f7 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x614e2bc1 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x93d70b37 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9d2651f5 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 0xbd6a6a6b 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 0x29ffae1e nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xda4bcb10 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xe3f1fd08 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf0ab0cee nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xfb727b74 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x8e0bd1ed nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x02185237 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x6018bf7c tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7696684c tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa349b457 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xed291d31 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x13df9c01 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x19cb77db udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x6302e68d setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa8168db4 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x09890fbb ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1074c8e3 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x2eb25da6 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x60c1ff24 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x68213bb0 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xca6ebfca ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xfcd55f0c ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x0f7c2d84 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xa42c51fa udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xafb170e4 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 0x70d1210a nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xc003a5ef nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0xbbbc6d2f nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x70d3d8e0 nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x97fdc8fa nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa578623f nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb92cd226 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xfdeb3eb1 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 0x98074a07 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x24f54e4a nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x750fc63c nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xab52d47d nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc9148e2a nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xd08e293b nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xa85e27ff nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x00863f42 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5172cd9b l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x59b40a95 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5a9924f2 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5e4b2ac9 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6674fa7a l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x714d8a8e l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8afcd72b l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x96bfe426 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa8ece1fe l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xae7e95ad l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xbe7ba736 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd9d5a77b l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe281f5f8 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe290219f l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xea11899d l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x394e273a l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x144bf89b ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2c3e107e ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2df57c49 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x301516f5 ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x3987a602 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x483d43e7 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6d8df13d ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x777b4da0 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7bb6a2b1 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8d8c905d ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa1baffe8 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xad0efcfd ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc28e9443 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc81c6461 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xcb7d97c0 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdc2ae31e ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe87b362d ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf9fa191d ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4dc62d3f mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x9632c241 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xe748a671 mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xec1469a2 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x14961bfe ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1bb3098f ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x47bf6739 ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x55ed3c5d ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x597d7c2a ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5fe3b93f ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6344eaf6 ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x750e4ceb ip_set_get_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 0x85180f0e ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x93aa1f58 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 0xa647976f ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa673d466 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xb0741114 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdd048c84 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xee26240a ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf236084d ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf9ea206f ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x33d01c77 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x56eed38d register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xde4b855e unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xfdc4c49c ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x018f4503 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x06902391 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07a67271 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07f07005 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x081b8237 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b679065 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0be0f086 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0d90c393 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x122e4e56 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x13c9accc nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x188c9ec1 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19752b55 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1f00788c nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1fda500c nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25b7fce8 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2bec12f5 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2fe64908 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3094bc89 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x347f9d1d nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34bfb6fe nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x36a28625 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3951f2e7 nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3bb4897f nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3ff5fd84 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x441f8c8b nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44c41fb0 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4524869c nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x518983aa nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57a09c64 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x61959be6 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67fce808 nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6846bcd2 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a2b0f9d nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76884ad6 __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 0x795b09ee nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7aa75b2e nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ecadb63 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x85265f0f nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x860c4e53 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8739bd8b nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x89dcc2a0 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ad60094 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c840427 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f427240 nf_ct_l4proto_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 0x92323000 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98a58c76 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x995cf458 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9adf4dd2 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9be62dc3 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9d31fafa nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f440350 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9f9edce2 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa4195005 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa44483b7 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa525e669 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa931f201 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9998e0b nf_ct_l3proto_unregister +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 0xb24e3002 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6573c96 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8d1ff06 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbeaa022 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbed65ed7 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc18ac88d nf_ct_expect_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc23e8c47 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc3bf146e nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc40f284c nf_ct_helper_hsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc5aa970d nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xca1b0349 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcafa1851 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd2ce2eb4 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd9e5b988 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdde1a44f nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf99cc01 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe12fee08 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4393871 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8bbfa90 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8ec03f5 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebc50f7b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf360006c nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfd5dbcd4 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xe6d304c0 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x7a946379 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x5c59edc6 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x050c09ed nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0c2a767a set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x115aeaf9 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x1a9f84e2 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x42b02b5a get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x43f4b9a8 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x64a275a1 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa010f9bc nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xcfd4638c set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf41daa58 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xdd5854ec nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x373d652a nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x4b558260 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xa5e10619 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xca75c617 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x20562ee1 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xa090d7fe nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x29c12336 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x32e7d44f ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x44a69eee ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x991ff51a ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb098b17d nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xcb707960 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd5fe445c ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xc4b3c9ff nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xa89487b0 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x727e733e nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x7c0b4e4e nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x92af631f nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xe69ae5cd 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 0x1195fc10 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x68ae31b4 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x792c21e9 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8a812378 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xc1294cdf nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xddc6cbee nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf18a7016 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf50d1de0 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xfa7e7da4 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x4f3ead01 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xeeeb939c 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 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x5f540b47 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 0xf86bcddf synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x29cf25d8 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x341ae88b nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x59f226f6 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5b0fb218 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5e9c5158 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6d06f477 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x817c5a41 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x845506d3 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa53bda4c nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc093cf81 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd813f52e nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdd519541 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe344615d nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xee280328 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf1ca5160 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xf4f700b4 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfc84702b nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x23879e47 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2eac83ab nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x39a21a7b nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa83ac6c6 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xd10490d5 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xed151aaa nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfc7edf85 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x546b8f8f nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8169667c nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbfaa09c2 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x0a157065 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x942706cb nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xa8b7c4d7 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe4678213 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x66de172c nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x98c937b8 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x9ccdd6e6 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe2bbf8c9 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf244233c nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfacaf0ba nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa188e290 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xc759abcb nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xdf1dcc69 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x50ef6543 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 0xed17c4c2 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x068ca30a xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x1d1158c8 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x245e273a xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24ab603b xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x28a10464 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6571f2ee xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x689ffdfd xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6c0be45a xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b7430f9 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8230d32a xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8ae62bb0 xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x994fbf19 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb17894ae xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcbed2ad0 xt_hook_unlink +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 0x3904383b nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x5804add9 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x822d6e03 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x5e477894 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xc4764e8e nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xe5108aa2 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x45664300 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4e7b6b20 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x50d6e262 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x758f250e ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x86315073 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9f70a596 __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xa6337307 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xabae51d7 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xabd37f15 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 0x165586d8 rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x21e836f9 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x254c7227 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x292e4663 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 0x31aac947 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x3b252cf8 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x435cc0ce rds_for_each_conn_info +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 0x50dab915 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x54bdef0f rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x62d375fe rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x66da0163 rds_atomic_send_complete +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 0x8c29477c rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x8c759360 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x8ec619c3 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0x92e53332 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x96c07ad8 rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x96fafe85 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xb82bfeb9 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xc0539b31 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc4e97a70 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xd68575f4 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xd7d337c1 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xf6d7aac0 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf80b11ee rds_conn_drop +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x129163ba rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xf3d1cb04 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 0x08077ecc gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x2bfda6e6 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x3b9384e2 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 0x010557ad xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x011f23d5 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02b4d6b7 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02e9f854 unix_domain_find +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 0x069a0221 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0738c83d rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x08cda904 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0aa33c92 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ac54b21 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0acbec04 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b26a34a rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c83d8cb rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d809eeb rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ee62ec5 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x115a1e72 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11820ac5 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x138c5fad rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14e8047b rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x161118d4 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x163777bc rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x19bd180e xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d85526f svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e009089 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2060d5e6 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20756b14 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x217eb039 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22ba65b5 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2409b4cf xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25ededfe xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26234cd8 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x278ad66c rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b4b5cb1 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bb110a4 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c0ba798 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed1c1b9 svc_create +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 0x310cb998 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31c3132b svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x320a60b4 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x325bdd92 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32d1e432 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3362b8df rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3596b682 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3894d9bc svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3aef44c2 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cc80c86 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d3ca796 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3facbec7 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3fe3072e xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41f4203b svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41fd809f rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x433d3a32 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46fc6bcb svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47c0ba0d sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4967757a svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49ca76a3 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a470754 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b50ad4d xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4cc73748 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ec65dbe rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f104e17 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4fb30a65 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x508cd8cd cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5225beb5 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5333cfad csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x534dd3d9 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54794d43 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550c0f20 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x550d701d rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5553dd94 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5608e093 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58708796 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cbb5cde xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5e744977 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x609ff2c1 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6713ffd6 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e4640e1 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6fcaef63 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70913ab2 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x70b3fd77 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x710c015c xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7182eac4 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x745516f9 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74a240a3 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7557de0c rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x767346d1 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78136e60 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x78295ae9 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7990244a xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7a2dfb2e rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7d935400 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dfa6535 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dfec440 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e41db24 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e825c9e rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8041a84a rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8079b24a xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80bf487c rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8116789a cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82963e1a rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8401a083 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87ea5702 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88787992 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88ffecb7 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a045c6d svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b479c80 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b788b6d rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8b7946c3 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d7fe3b6 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dcb2065 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f0d9053 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x902963bc rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x913be141 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x935b53fa xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x937d5be6 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93cba29f svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95ce2350 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x96b25850 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9726d1f5 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97f6c02e xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98f605bb cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99406d38 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c237518 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e5f57e1 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eb0af5f xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f5039c0 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f9eb6c8 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9fdf93c3 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa22f1293 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa29f4723 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5da6f98 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5ff2a3c svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6005197 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9a7b96d rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa529279 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafc3465f cache_register_net +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 0xb5d57d43 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5e08f68 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb704c31f rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb80a5301 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb886a01a auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb94fbd7f rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb8ce122 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc8eec2e xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe161378 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbefa1774 gssd_running +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 0xc3237873 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc37ebdaa xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3d5170d cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc93edef1 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcafdd0a3 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce3f1e77 rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd02588c8 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0513815 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0a828d3 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1ed8f23 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd79ffed6 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd893a927 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8a40810 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd94fc9c1 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a1ded8 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda0590f0 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdab4dd77 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc2454fc svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe07a8484 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1b77cd1 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3a6e076 xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3b5c455 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe456aaf2 svc_seq_show +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 0xea4af986 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebbe235f sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecb5fc13 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeceeb42d _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed5f447b xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed652ace cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed92d0bb rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedd4d5d4 svc_proc_unregister +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 0xf05a8f28 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3762d60 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3eebf2c svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7549de1 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f28484 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf862564f svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8f2c089 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf99ff3e8 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa4a7adf xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb09a81c rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb6b6423 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfba3a174 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbe3fa55 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdc2cc1a rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe7476c1 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffe5d6d4 xdr_enter_page +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x03809692 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x062da55f vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0af986ef vsock_find_bound_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 0x1fd8b325 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x22a2cf7e vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2af47fb6 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2d528fc0 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x40bc38fb vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5dbdebdd __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 0x81093041 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9e6d0643 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc49cb852 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf01972c1 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf593c40a vsock_pending_work +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1c6d177a wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x3f543b34 wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5801a72a wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0x672312a9 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x76d8285d wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9ad568d1 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9cb463be wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9f33863b wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb1f90dfe wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xca26b321 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xe5c3d71c wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xec5ef02b wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0xf02cf5c2 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x33f52eb4 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x3d26012f cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x48e65083 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x52814ff2 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x5c72ec27 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x75383648 cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x77e10fcc cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x79d4f5b4 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x84c8f0dd cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x923df9b1 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa6b8240f cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb68aaa03 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd6eddea5 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 0x2a070501 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x2beade94 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd424ebd3 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xf44d4531 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/ac97_bus 0xa48b29e5 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x352c4414 aoa_codec_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x59e254c9 aoa_snd_device_new +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x6a33ff01 aoa_snd_ctl_add +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xa1d6a906 aoa_get_card +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xa2430f05 aoa_fabric_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xa388c724 ftr_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xbdd36d51 aoa_fabric_unlink_codec +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xd9b435e6 aoa_codec_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xda92813d aoa_fabric_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xe6af233d pmf_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x4f215582 soundbus_dev_get +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x80ee1c8b soundbus_dev_put +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x86a471f8 soundbus_add_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x90e00f36 soundbus_unregister_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xa32bab34 soundbus_register_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xe72e4bd8 soundbus_remove_one +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x7654cb29 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xbffe3587 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x0647ab8f snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x2f4c2442 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x6507161a snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xabe88b84 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xbd25ea2c snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xf7bc2253 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xfbd0fb41 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 0x477e59aa snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x6d1582af snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x7de0de94 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x867ef562 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x97987c52 snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xaa291ee4 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb00c0b45 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd3eb783e _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xfd2813c7 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2c590c48 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x38c7a64f snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x457864ae snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x4f34ec8a snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8bb82e64 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa265518a snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc04b9572 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd7b12a57 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdabe62c4 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xdb65175d snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf73188fe snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x237cc0b0 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x53d493fe amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5a90c01a amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x8317e5bb amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9dfd2631 amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xda08ea03 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xfb5a1903 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0344b6f3 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x03676ac0 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x042ad144 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0482593e snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0617d07f snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0c27e42c snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1152a23b snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1579b4ab snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1a3fe102 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1c143968 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1fb982ef snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a469053 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2e14a0c5 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x31182850 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3432a981 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3829514c snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x38536461 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3995a4b8 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a8f4159 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x428695ba snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e004455 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5eb5cfad snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f412dcc snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x607b49c1 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x60dfb05c snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x610726a1 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6377b35d snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x661e0beb snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6e749dc2 snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71f00e36 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x722dc672 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x739b48ff snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x74e70e7d snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x767d5716 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x76f74405 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x774c49fe snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7774dd59 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fe038e1 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7fee672c snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8351205b _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8558fd6f snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8f2ddde5 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x92ba8948 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x97fc840a snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x98c1a49a snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9d2e1793 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa87500b7 snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xad327390 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb086e7a4 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb5d36cdc snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7bb3786 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbec781d8 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc1918531 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc42cce68 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc900d7f9 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9329bcc snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc974b6a2 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcac8485e snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcaef5acd hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2a9a28f snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd759be35 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc942c24 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2282e28 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe3e08c0c snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe62d6d24 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf46ad3ae snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf546f0de snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf6e56eb6 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf78ba0b2 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe668f2f snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfe9770ad snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x25de9312 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x593f2c31 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x59e98975 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x880d22ac snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb30ac0db snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xebb409c1 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01b846ae snd_hda_multi_out_analog_cleanup +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 0x096d2339 snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x09c80f48 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0a1e00fb snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0b428d2b hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0c86c9c8 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ff40830 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1192f9ef azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x11b645d3 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x13d39196 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b544057 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d2c200d snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d7a398b snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1f28d639 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2121f1e6 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23463abc snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2527eb33 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26eb86e0 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2770b9b9 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27eeec7d snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2d57d760 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e31b212 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e3a3ec0 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x305ee7fe snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3130e560 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x31df629d snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36ee631f snd_hda_codec_amp_init +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 0x3aa004e8 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d52f6f4 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f3371fb snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40866f64 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x436b94c8 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44d5d6a9 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x47b69364 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x48b25120 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4fd9560d snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x509c7285 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53287095 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5532a9ff snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55cb47a5 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59987bf7 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d37449d snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d906e53 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60e15111 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x62819c92 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x631f8829 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x64062460 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65b2cae0 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x65dcb2f0 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66b1340f snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ca31d1e _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d08d24d snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e600a1f snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6ffe9f65 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71cdc861 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71f6aa38 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78721285 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7b66570b query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bcbf2ce snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c410761 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e439084 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x84c36110 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x88ecbd65 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cc1ed2d snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8cebbab1 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d65b16a snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f1f520b snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8f5808ef snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91f4bf46 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x920c5d68 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x97a46e49 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9824ec9a snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99b22962 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cd0b894 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9dd061c0 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9f733f42 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2ce0da5 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2d6b5c6 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3ed41ee snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa410a415 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8375389 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa9495834 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xaf02b7f6 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb133b76d snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb178aa37 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2485806 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcdd66a7 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbe3587e7 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbed82edb snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbef8f942 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc1bc74bd snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3586fc5 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc358ae43 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd3d9ae19 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6f1deeb snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd865453c snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8acc95e snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8bc30c6 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd8f1ed8b snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdae981bd snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc30bada snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd48023f snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd6a5ada snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddee65ad __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfe333d9 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe09d861d snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe0e36f2b snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe305e8f2 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe38b21cb snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe3d8ca7f __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe61121cd snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6a1f9a1 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe9331f44 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe95ea8e1 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xea85aaa7 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb3b004a azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xed30fd72 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 0xeddac0d4 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef85899c snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf9394d7d snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf97d5215 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfce6e9e1 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfd28d97b snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfde75c59 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x141aa5f3 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1c0fe68f snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2501b7b5 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a411400 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2a4b14cc snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2cbfe526 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x39c9d07d snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4282b36d snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6302c14d snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x64222fdd snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x64279b0c snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x7016bd8e snd_hda_activate_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 0x850bd2c7 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x862ac5e0 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 0x98c25bf4 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa844d223 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab343959 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xab840a30 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xae654265 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xef60b3b9 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf0f95719 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x181cc9cd cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x6cd27e62 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 0x0a2e9ddf cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xc3d69ceb cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0853ef6d cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x8d07e952 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x9fccbf57 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xbca13f70 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe16a6c29 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x379d3118 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x3db05741 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x7a54c6ee pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xe0c3be95 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x3c6b954e sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x505827df sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5a5d6729 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5d895f37 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xf56e76c8 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x5b1f5d2f devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x1e6f4670 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xf7fce17e ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x6c2c1c6a tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xadfe8179 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x4683a336 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x264b47c2 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6476fcc2 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa5ff8776 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xc155c71a wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x6d4ae4c3 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x3846401e wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x037ed03f fsl_asrc_get_dma_channel +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x18c844fb 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 0x00057dd1 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x00d25b93 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x035a8aac snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0518a569 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0569b393 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x07bddebb snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0a0ba372 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e3c2cc1 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x10195ede snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11eca708 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13395b4a snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16dcc14a snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x171a1d36 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1819a7f4 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18628eaf snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18c684e6 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18cea97e snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1a7710bd snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1baaa0e5 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1bebbb8e snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1db1dce6 snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1ee96ac2 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fc2eddf snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fcff056 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x212fcd70 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x248caf4e snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x251b79b2 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2614e5c3 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x26817f5d snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2748c9a3 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27bc52ae snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2973a94c snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x29ad1121 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2c976103 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d17aca6 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2dc12c67 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2ef6d686 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31c7c933 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32547275 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a94e145 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dec8ed6 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3e05c0fe snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44382346 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46250816 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4735c4bf snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x483d4aaf snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49a75c4b snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cfe3d2d snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dd07ed6 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51601330 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x519f5496 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5405f955 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56b29950 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5707faf5 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x592f98f0 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5938a71c snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59682016 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c1d4d85 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c219d6f snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5d68d382 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f237d9d snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5fc828c9 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x61307b9a snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62487054 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62ecf741 snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63387630 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63f8c254 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x65adb78d snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x68358f19 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6981b2ca snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x69aa4022 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a2941de snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6b291288 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6cd22266 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e0dccb5 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f36b97a snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x71431a1d snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75d3c6ad snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7667c84f snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78f16b2e snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79b82153 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79ecd87e snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7c2ac70c snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cd83af4 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dcbf183 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 0x7f5603c5 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x80d99e29 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8310c712 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x851eaa00 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x85c1ac79 snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x888f5392 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8a06d596 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8b7e5569 snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91ba73fc snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9368582a snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93ad147f snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a4c8998 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9b896d4b snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c1b690b devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9da91c72 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fc6682d snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fd56137 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa00b5a80 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1328511 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa38ff075 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa5887fed snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7cb75c9 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa954016c snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9d05bcb snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xabd53ac9 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadc0d017 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xadc85ca0 snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae4d7caf snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae7b3624 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3b254eb snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb4624348 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6d3bd79 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7a23d69 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb7b85caf snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba97cfa6 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd1942a2 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbd8623e9 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf5862a1 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbfc3a83c snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc360e15b snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcbfdcb83 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf570e18 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd6f7bd01 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd80ed4dc snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xda034f23 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdefe273d snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe23706e6 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3408336 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe3465e17 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe438a7e2 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4412ffe snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe65252dd snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb31b60d snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed7dee4f snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee9585ee snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef708a19 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf3cb22ac snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf4a3f6e8 snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5c72f04 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6edf8b7 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7687555 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc4f0fac snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc4fe140 snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x00430258 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x126e51bc 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 0x35d598c7 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3f384f12 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x496d812f line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5943bdfd line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5cbb440b line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x65d06404 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x74d55735 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x85aab9ab line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x866d2788 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa661a2d2 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd54c6615 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xddb23d18 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe3be3c70 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL vmlinux 0x000465cc inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x00151d79 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x0029971d fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x00422872 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x004c389d transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x004d74d5 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x00632780 work_busy +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0071c306 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x00861905 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00bdfea2 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x00cf3077 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x00d4da22 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x00e2aeb9 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00f1a3f0 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010bd68b pmac_low_i2c_unlock +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0120ee21 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x01409331 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x016e780a of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0x017b08f6 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x0195fba9 btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0x01a07064 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x01c69b5b user_read +EXPORT_SYMBOL_GPL vmlinux 0x01df94d0 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x020baa40 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x02140c60 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x02266ded clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x022a5c57 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x024de8dc mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x0260b483 virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x026a52fd sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x026b037c device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x02862406 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x029bf259 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x02bc66b6 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x02ee6419 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x02f064e4 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x02f595b7 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0307ff30 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x03167f7e raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x032403de gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x032be57a __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x033098ae fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0359dc1b extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x036a7c9b crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x0388c664 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x039eba8b devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a6b57c request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x03a6eacf dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x03a851f5 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x03c39e46 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x04110335 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x04736bba phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x0478d77a pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x048db97e ref_module +EXPORT_SYMBOL_GPL vmlinux 0x04a4f491 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b33fb2 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04cebf1a __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x04dbb2ff inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x04e34b9c scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x04f4bd8d percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0x05120976 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x051f4282 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x05306bfe for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0x0549bedd pmac_i2c_get_adapter +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x0562dc36 unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x056df2f8 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x056e43d5 device_register +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x058f7593 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x0596a931 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x05a4cc14 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x05b02628 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x05c2115e device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x05cd0543 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x05e3f6b0 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x05ea8480 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x05f38730 pcibios_alloc_controller +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 0x063b80f0 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x063d77cb inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x065fc8d8 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x06647b40 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x06679c0b sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x06cff765 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x06e7728a tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x07104ce1 extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x072f73f7 serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x07481a88 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x074cc9ba ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x074d2094 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x076b759d pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x0778e2e5 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x07932d4b sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x079ea187 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x08076252 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x0809765f x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x08125dae __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0813011d platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x082ed5dd relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x08613d2a user_update +EXPORT_SYMBOL_GPL vmlinux 0x0870ffb6 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x087a18b3 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x088acf4f ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x08ab5f93 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x08bf12b8 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x08dd3dc3 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x08e5728b blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x08f3123f irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x08fb3254 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x09068baa tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091e6def crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092091f4 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x092ffa9e task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0947db27 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x098662c7 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x0988b49b lock_media_bay +EXPORT_SYMBOL_GPL vmlinux 0x0989c2fb devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x09b32446 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x09f90717 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x09fff5c5 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x0a0ba273 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x0a0f1a1e ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0x0a29ea5e subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x0a40355e usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a5ded43 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0a6d6bd8 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x0a714376 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x0afd4610 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0b17ed ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x0b0e55e7 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x0b4ffd0a virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x0b816c7c do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x0b84d14e blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x0b85a6c2 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x0bbb2ca1 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c101032 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x0c185926 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c397d3c of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x0c480868 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0c5746a0 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x0c5feb4d flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x0c76aade proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x0c7f666c subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0c8b2108 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cde76a0 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x0ceb30dd shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x0cfb7ffb ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x0d01385b inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x0d059e64 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x0d073e1f device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x0d36a39d gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x0d38b15d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5cedb3 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x0d73a952 GregorianDay +EXPORT_SYMBOL_GPL vmlinux 0x0d73f23a skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d818d69 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x0daa2d15 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x0daa9541 dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x0dbaa85f usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0decf774 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x0e08f664 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0e3486f6 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x0e3adf31 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x0e4c7893 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x0e52d70b input_class +EXPORT_SYMBOL_GPL vmlinux 0x0e988747 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x0e9d077d debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0e9eb264 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x0f289ac1 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f521fa3 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x0f5f4ea5 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f6aea3e dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f96cf24 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x0fa1e87a devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x0fa6ff5f cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x0fc01e9f static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1037db52 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x10409b8e rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x106b3f9a uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x10926696 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x10a0b312 of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x10a0f798 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x10c35af9 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x10ec4815 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10eddb69 regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x113db405 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x113ed501 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x1144c821 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x1162cf82 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11757c00 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x11aacb56 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x11af8f81 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x11d7589e add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0x1203ec42 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x1214e31a device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x121e565e mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x12270cb5 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x122c4e81 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x12322406 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x127491f4 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x127fcd86 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1285da6c tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1293ec09 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1295a1ba class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12bf8821 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x12c70617 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x12ca8e17 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x12e8a43f pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x1308412d __audit_inode_child +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 0x13603859 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x136ddef9 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x13863f20 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x13979b41 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x13a481af ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x13aee581 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13f0bc97 device_del +EXPORT_SYMBOL_GPL vmlinux 0x13fae2aa sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x1402d745 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x141c7c4b fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x142f240e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0x146b4993 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x146e1615 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x146ece41 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x1481ea3b adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x148a075c xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x148bcb87 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x149588af skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x14a97e6d ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x14ba890e platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x14c15f64 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x14c2532d blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x14cfd311 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x14f03764 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x15144645 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x1533c1ea blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x157a00e8 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15e138c8 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x15eb35b5 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x15ec9bbf pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16040ef2 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x161252fa usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x16193aa6 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x162be148 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x163774e4 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x163a5e09 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x1652f9ed shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x165856cb ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x1673314d bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x168f4dc7 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x16955a89 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x16a35656 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x16b29953 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x16ba247b l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x17072380 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x170a0397 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x172992ce extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x17405494 mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0x176c0109 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x178b1c0f mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x17a65000 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x17a80d54 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x17d08a7e raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x17d52d27 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x1821d08e bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x18318662 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x1850eecd exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x18570516 pmac_i2c_xfer +EXPORT_SYMBOL_GPL vmlinux 0x1857ed6b device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x185a9fe6 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x186b9238 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x18739134 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x18b34d45 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x1902dfa7 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x193324d2 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1938b88d tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x193db1b1 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x197758f7 irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x198611ab fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1990f8ff pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b61d9f fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x19bae7a7 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x19bd059d crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x19ca5a15 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f5d9e7 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x1a128961 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x1a1c4082 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x1a1dfb6f spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x1a28a9ec posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x1a591f8e component_master_del +EXPORT_SYMBOL_GPL vmlinux 0x1a5d7847 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x1a61f0b1 blkcg_root +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 0x1a9f8e9e map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad410d2 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x1af5b872 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x1b0dab03 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x1b1df597 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x1b52db1c probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x1b85292e watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1baebbb1 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x1bd0d07d cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x1be82cc9 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x1c0f0a17 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1c1916e9 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x1c2260ad of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0x1c25c237 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1c3bff33 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x1c53b3f3 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c556a4f ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c78abcc pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8f9a7b tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x1ca386a0 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x1caf91e2 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1cdd5440 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d0f31d9 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d6a902c tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x1d70984f percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x1d75200f pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x1d77b0f8 unix_socket_table +EXPORT_SYMBOL_GPL vmlinux 0x1d7c0168 __ftrace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0x1d864c8d hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1dce02c1 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x1deacfa1 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e2e16a9 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x1e2f324e subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e7c1b7a pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x1e8ef4b2 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1ea10257 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x1eab386d spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x1eb46fc4 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ed1d226 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x1ed67545 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x1edcb252 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x1ee1cb3c wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x1f1a8715 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x1f315557 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x1f41ec49 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x1f423fc8 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x1f54885d tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x1f7fcfb4 sysfs_unmerge_group +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 0x1fc06000 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x1ffa2090 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x1fffe391 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x200aa7de inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x202c6bbc virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x2045e018 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x2049bab8 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x20744722 phy_create +EXPORT_SYMBOL_GPL vmlinux 0x2075cbe8 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x208215ba devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x209030d9 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x2097ba63 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20dfbbf3 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x20e2417a pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x2104a473 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x212ff7a2 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x21309794 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x2132ad32 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x21388055 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x213d6a76 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x215462cb rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x215a2886 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x216567e7 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2188c4d1 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x218db3b1 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x219e0047 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x21a4e0b0 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x21ca74b0 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2205ba91 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x2209d418 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x2249040d aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x224a46fb usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x225dff0f call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x227b9a39 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22c33757 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x23026ddb of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x23047ab8 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x2310cad9 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2369ff40 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x236cf449 devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x23a9485f mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0x23ac0dcb regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x23cce71b handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x23cfa2a4 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x23e62c33 sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x23ec7945 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x2406dae3 pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0x2412fe58 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x244376e3 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2461e35d md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x246789ca ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x246ab97e extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x24746f6f crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c7adfe ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x24e925fe tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24ebd041 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x250532d0 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x251fd2cc crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x25376176 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x2554cd8e do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x25896caa rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x2591b0d9 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x259e6108 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x25a26232 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x25dbb069 yield_to +EXPORT_SYMBOL_GPL vmlinux 0x25e1ec55 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0x260438a9 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x26085a7e pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2633979e mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26698405 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x267465dc inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x268a41cd mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x268efd43 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x26903a98 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x2691412e boot_cpuid_phys +EXPORT_SYMBOL_GPL vmlinux 0x2693d2dc of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x26a7bb1e fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c27bf9 nl_table +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 0x26f57572 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2720e732 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x273bfce6 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x276a8015 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2787db00 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x279019d4 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x27928b06 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x27a9925b tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27caed93 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27f5d11c ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x280439fc securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x281a481e ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28627555 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x2881cbe5 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x28abbeec pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x28c57895 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28ce5337 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x28d8ea4a mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x28dc97e2 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x28f54792 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x29077ea3 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x2914968b tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x2964965b of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x298bd971 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x29901fb5 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29d70d63 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a19e349 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x2a3e6b28 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0x2a3f6736 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x2a43dafc pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a8c1eba subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2a92b981 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x2ab01ded shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x2ab070fe devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x2ab3c5b6 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x2ae9142b pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x2afb0b86 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2e6814 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x2b376492 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x2b4c636b pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2b4cf941 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b7a574f md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x2b7c09c9 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2b8dc5a4 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2b9158e2 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x2bb4eaf4 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x2c02f8e4 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x2c1140da vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3a855d component_del +EXPORT_SYMBOL_GPL vmlinux 0x2c4159fa pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x2c475d35 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8c179e fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x2c92b956 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2c97c085 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2cae5046 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x2caeb4bc regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x2cbc949d pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x2cc3e675 pmac_i2c_close +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cfb3880 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d23bd57 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d612517 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x2d88a398 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x2d8f1c7c pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x2d8fc67a pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x2d9f1647 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x2da27835 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x2dba9ddd cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dc6c148 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x2de681b6 system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x2e0fddd2 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x2e10114d ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2e1d26b5 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x2e2360b1 ftrace_set_global_notrace +EXPORT_SYMBOL_GPL vmlinux 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e540ef4 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x2e6d257b regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2e7b6e2f usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x2e944254 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2e9b58ca wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ebe658f skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x2ede6e0a dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x2ef4d512 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x2ef6b5bf smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x2efda7b2 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4e3767 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x2f52d72a wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x2f578764 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f7a4dbf pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x2f839aeb tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x2f9c3fd4 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x2fa4ed65 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fe78ef0 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x2fe81213 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x2fec1ffc gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x2ff68061 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x30020913 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x30420c86 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x3048beff seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x305d3034 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x30670fd0 cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x306c6ae7 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x30765da2 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x30a4f4ca bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0x30a8d89a cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x30b19603 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x3126f1ed pmf_do_functions +EXPORT_SYMBOL_GPL vmlinux 0x314013a3 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x3147bfc3 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x314f75d9 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0x3184390b bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x31af7b60 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31cfa673 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x321d1885 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x322c5b06 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x327d62c8 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x3297a194 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x3301f7f9 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x3342bb03 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x3365f24d ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x336feefc reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x33960de9 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x33f0736f unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x33f25ba7 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x33f6a62c skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x340d5346 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x341a02d3 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x344c33ba blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x3474ad45 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x347682ce snmp_fold_field64 +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34830a1e kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x348f7130 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0x34964ea7 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34ac50a4 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x34cbe034 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x355950f3 rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x356426ce ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35c836aa pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x35cf7b6f class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x35d14896 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x35ddef50 md_run +EXPORT_SYMBOL_GPL vmlinux 0x360fd7f7 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x3612930c pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x36616891 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x367776cf rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3696ce9d dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b7f0ad __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x36b8521e dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c2db06 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36f84ce2 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x3719cd13 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x3727afb7 lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x376ff4e4 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x3794e7a4 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x379c2c69 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x37a67265 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0x37cb2e57 of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x37d321be gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x37fc8a41 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x38364f79 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x385257ad io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x388ae771 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x388af5a5 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x389b3600 pmf_get_function +EXPORT_SYMBOL_GPL vmlinux 0x38a6393a tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x38a9c2c7 input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x38afd801 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x38b0cdf7 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x38b4ddd4 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x38b795b4 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x38e17630 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0x38ff06a8 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x391c678b ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x396097c8 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x3980a2e3 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x39865c89 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d37551 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ec871f ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x39fe7e2c cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x3a00b111 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x3a00c47e fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x3a1298ef ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x3a26957a crypto_blkcipher_type +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 0x3a6894c4 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x3a6eae7d skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x3a77c1cb pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ae1ec97 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x3af8fcae of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x3afdce28 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x3b18591c crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x3b262a88 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x3b348216 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x3b3e0251 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x3b3e0a34 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x3b40d549 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x3b4b6073 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x3b4b70c7 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x3b5f6414 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x3b5fea0a usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x3b9051cb thermal_zone_of_sensor_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3b92b9cc inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x3bab0ef7 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x3bc08266 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x3bdbec7a irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x3beee018 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3bf53bdf shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x3bf6b4d8 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x3c3279d6 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3c3bfeae rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x3c5b2264 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x3c76dd61 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x3c7746dc pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x3c7f08aa thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3cb48467 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd90218 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x3ce58384 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x3cfa6e22 ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x3d083806 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d7a3d4b device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3d82d595 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x3d8e8c92 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x3d96d263 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x3da01e5d of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x3daccfd7 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x3db66cca uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x3dc2e461 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc58a85 usb_driver_claim_interface +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 0x3de03205 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df9a05b rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x3dfa1d1c class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x3e41ccf8 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x3e488462 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x3e5b6c47 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e6ea95b scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7c8832 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x3e7e08df mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x3e9028a7 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x3ebeb938 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x3edecec4 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x3edfd81a crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x3ee47f8e ping_err +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f07bb9d percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f2387a6 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x3f287ccf device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x3f47affb firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3f5db1cf ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x3f93baa2 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x3f9a5d67 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x3fbff952 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x3fd32c27 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x3fdbb8e5 __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0x3fdf6c99 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x4027a7ca crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x403efb48 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40444666 driver_register +EXPORT_SYMBOL_GPL vmlinux 0x4045861f msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x405f986c __pm_relax +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 0x40c072e5 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d75d26 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40f21ff8 unlock_media_bay +EXPORT_SYMBOL_GPL vmlinux 0x40f6a9b5 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x40fed495 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0x41048568 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x411463b3 device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x411e166e fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x41477779 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x4165d618 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x416c9cb7 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41a7334e proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x41afd2c9 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41ed7601 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x41f2c918 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x41f55d38 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x420148fc bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x4205ad24 cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x4213b5e0 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x4219c69b blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x421e107d xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x4221e7dc apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x4228d39d of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x42367721 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x424e0337 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x42539bf1 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x42727348 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x427a066b trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429e4325 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x429ff465 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x42b364ef scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42d343e5 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x42e33a9a cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x42e38567 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x42f13b8c pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x42f23dcb power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x4313f6a0 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x432e7ef9 pmf_call_function +EXPORT_SYMBOL_GPL vmlinux 0x4342f16e inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x435e5331 pmf_unregister_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43bd5353 pmf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x43c472ef cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x44050ddf stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x443c97e3 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x444b5349 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x445b6088 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x445c1fcd of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449180b6 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x44a0a080 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x44a0aa0f rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x44a5f5e5 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c27b03 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x44e4597d power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x44ee72de devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x44eff47d percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x44fcf702 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x450901b8 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x45227e0a trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x454a37d2 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4550dca7 ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45b25cfe dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x45b2a56c pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c28f69 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460833fd ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4644117e fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x464453e8 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x464d513d relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x465f3dea spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x46661bda trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x466ff2cf sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x46805eda serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x469c1535 pmf_find_function +EXPORT_SYMBOL_GPL vmlinux 0x46bae55a devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x46c04add get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x46c3b1fb regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x46c50a59 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x46ec4675 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x474c5edb pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x475484f2 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x47597782 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4768420a cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x4773964b usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x479e49ff add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47cc8cc1 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x47cdc3b5 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x47d6afea pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x47dbf774 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x47ff05db page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x480dc2f2 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x480fedd4 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x48124cad pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x48252930 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x48389463 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x4862bd8c cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4866c58a pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x4866d032 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x488126e4 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x4890a05d dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x489f7a70 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x48a0407c gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x48a28770 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x48f1cef6 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x48fa33a5 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x491363d0 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x492063cd bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x492ce91c tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x4943a338 __init_new_context +EXPORT_SYMBOL_GPL vmlinux 0x4949b596 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x496a18fe blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x4982a57f probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x4993d6fc __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x49b4f064 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x49b73de0 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x49c5d10b dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49ef4790 event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x4a0aec71 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x4a2547c2 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x4a3a719a of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x4a41ef29 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x4a475279 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a700c01 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x4a8040f5 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4a81cd64 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x4a90233a class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x4aa15d63 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4aabc058 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4affe5ad __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x4b1a179c pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x4b35b2c3 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x4b3db3a8 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4b4e5e52 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x4b7bd2b6 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x4b8042df dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x4b9956e9 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x4bf213a9 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x4c1c99eb ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x4c3980e0 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x4c404087 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x4c4f467d pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x4c511e93 pmac_i2c_find_bus +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c6f00c4 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c76104d find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4c784f95 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0x4c8e252d regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x4c9caf57 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4ca0bc78 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x4ca474f6 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x4cac926d rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x4cc2cc67 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x4cca70b8 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x4ccbe614 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x4ce235cc i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0b9a04 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x4d0d745f ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x4d1413b8 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x4d17061a pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x4d2de59c powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x4d2edc3f pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x4d303728 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4d406065 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x4d51474c cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x4d6a084e ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x4d6a805f rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x4d7396d3 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x4db603bc regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x4dc1ac13 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de7fe81 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0x4e04f92f rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e2398fd debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e2c2dd2 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x4e312536 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4e3a4fd8 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x4e401f23 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x4e61f7ab of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4e6459aa crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x4e845672 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x4ebeccc1 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4ed6818e nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x4ed8d4aa pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x4ed9259e dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4eeb0b60 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x4ef04751 pmac_i2c_adapter_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef80db2 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x4f19023c tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x4f2880d4 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f46b505 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x4f4bf92c net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f8a51a0 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0x4f8ae13f ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x4f8f9e6a ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x4f9f8f9e single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x4fa052a9 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x4fadca4d devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0x4fcff385 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdec0cc devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ffc7616 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x5024d2a7 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x505f50a2 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x507172be sock_diag_check_cookie +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 0x50b20f5e kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x50b54508 devm_hwmon_device_register_with_groups +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 0x5105f12b power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x51471ee5 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x515308c5 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x517076fb spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x51719489 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5171d017 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x51966b51 __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x51b0fc31 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x51b37afa crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51b97402 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x51ce8a5e ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x51fc25e9 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x521c3cb4 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x5223fd4c gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x522830a5 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x523b2bf4 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x52c0d5d8 scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x52db8366 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x52fdca6d crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x532aebfc virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x534294bf crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x537ca088 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x537f44be sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x53a33805 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x53ba1ad6 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x53bd5f52 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x53dc97ef xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x53dd764c wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5433b1e7 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x544eeb94 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +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 0x54778498 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x547a69bf usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x548c9f33 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a4a654 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x54a9d822 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x54c89007 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x54ca977d pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54d468f1 pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x54d4d1e1 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x54ed4899 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x552dc448 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x552e0cd5 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x55393aa4 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x554511de usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x55469ae3 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x556fe8b7 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x55949101 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x55bfc6bd replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x55cb2ccd devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x55db4026 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x55e27dc3 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x55e73916 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x55ea004c early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f11260 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x5602e844 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5630be17 led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x564ace9d __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x5655304c of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56b63670 lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x56d4109f vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f86a1f aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x57045e05 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x573dd903 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x573df582 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x576dc2de blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x578917e1 ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x578af486 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x57979b8d usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57d418d4 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x57ec6068 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x57ef9350 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5832cefe cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x585694dd serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0x58621c29 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x5886418d gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x588e8b16 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589871bc fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58b70fda inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x58ba5f71 serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x58bccebd md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x58bd081b iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x58bd9fcc usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x58cbdbc9 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x58e4019d tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x58ea0f6d pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x58f07495 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x58f0c560 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x58f5e9b4 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x5900a3a9 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x590b22e5 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x590fcf22 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x5910489d pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x5912a624 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x591ba498 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x593b0a50 __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a12be31 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x5a1aeda6 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x5a41f2d9 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x5a5c16d3 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x5a5dd9d7 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0x5a65b3f2 free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x5a65c37b devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x5a66aa75 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x5a6dfe6d regulator_map_voltage_linear_range +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 0x5a8809a8 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x5a938173 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5a9815e7 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x5a9c647c wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x5af26626 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5b2f7d3a da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x5b364a38 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x5b3e0642 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x5b519b9d pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x5b5aa750 mmput +EXPORT_SYMBOL_GPL vmlinux 0x5b70b66c gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x5b79bc36 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x5b9eaed4 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x5bcddca3 of_css +EXPORT_SYMBOL_GPL vmlinux 0x5bce2c6a sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c0ed04e cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x5c24a4b3 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x5c3020cf devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5c3c6435 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x5c4f1b51 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c63772e phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5c87db83 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x5c9d163d cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cf3a139 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d4b668e usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x5d51bcf7 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0x5d54c175 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x5d574054 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x5d5a66f9 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x5d9425cb __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x5d96fd65 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x5da589a0 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da94387 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x5db31dfd rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x5dd013d5 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x5df03ef5 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x5dfb5793 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x5dff6fda x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x5e2c5695 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x5e49c59f ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x5e515be6 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e5ec2e6 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x5e63da13 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x5e840403 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x5e8d4949 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x5e9d49fe sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x5eba69f9 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x5ef235bb regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x5f161772 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x5f27cdc9 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x5f66feed attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x5f747564 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x5f7c6775 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x5f927a1c tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x5fb24372 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x5fc0b108 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x5fc67ce2 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x5fe403ac inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x60098a48 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x601faa4c ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x603403bb pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x6035b78e fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x6044eb7c ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x605e060a devres_find +EXPORT_SYMBOL_GPL vmlinux 0x606b5566 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x60886059 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x60968ff7 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60bc6629 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60eadae7 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x610b7be9 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x61168f51 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x611e2d2e ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x6121e37f irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6125b794 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x6127f4eb percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x61303e08 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x613b3ca3 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x614a6555 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x614dd625 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6151b642 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x61574367 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x61846379 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x61890cc2 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x61988768 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x61a6ba80 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61ab87ba device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x61c16845 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x61cb3846 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x61d37ddf pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x61dcdf03 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x61e7f9e9 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x61e8b558 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x6210299e scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x6216bd73 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6223df57 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62396343 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x62546224 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x625aa176 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x62841a8b regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x6284ebe7 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x6284eca1 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x62946cb0 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x629ab022 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x62bb3ff0 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x62c40b0f crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x62c45179 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62d59c9e trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x62e26828 device_add +EXPORT_SYMBOL_GPL vmlinux 0x62e303c9 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x6301d3b8 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6311266c sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x631676f0 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x634991d5 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x636cb01a gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x6379e3b4 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x638dbb57 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0x63ad6cda devres_release +EXPORT_SYMBOL_GPL vmlinux 0x63bc5134 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0x63c3c75a sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x63e4e889 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x63ef670e devres_add +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6414e6cf register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x64256424 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x6453f77c pmac_has_backlight_type +EXPORT_SYMBOL_GPL vmlinux 0x6459c059 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x647d5d74 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x649ae4a8 pwm_get +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 0x64b321ec usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x64cebe31 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x64d64f31 devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x64e24a5e memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x64e79097 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x6532a267 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x6561d06d dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x656547b4 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x65690cde __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x657f9399 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x65b4825b ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c8d977 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d575b5 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x65f9c2bc pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x66063d19 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x660822ef vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x6610789b usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x66112078 pmac_i2c_match_adapter +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x66271cac rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x662e5f0d uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x665c97b9 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x665e7143 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x6670f7cc shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x667d393e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6698e2f7 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66b4c264 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x66c0fb4b flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d49daa dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dc1788 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x66e0a2f3 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x670ee53a inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x67234b81 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x67407563 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x676f32f8 da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x677eeaed blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x67843914 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679e500a tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x67d2f612 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x67df8345 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x67ebc20c regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x67f7ff2c ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x6802873b tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x68312041 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x683207c5 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x684dfe5a pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x686d53c4 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x68848afb pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x68956406 static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x68c585d7 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x68de7ff2 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x68f537c0 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x68f697f7 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x691c2701 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x69208141 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x6921d266 regmap_parse_val +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 0x6948fb72 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x694d9e49 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x69779e56 da9052_disable_irq +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 0x69b2dab4 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x69b44ac7 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x69c7c017 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x69dfa7dd __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x69ffab4b pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x6a10af88 of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x6a146e56 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6a1b6965 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5c981a perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6af146 ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x6a7ced9e crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a862160 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a9f8d7e usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6ab3781f trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x6adbcd65 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x6ae0f60d trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x6ae753e1 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x6af5753b debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6afd4639 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x6b035196 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b3f6953 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x6b4e38c8 of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x6b539f55 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b8ba452 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x6bcacd3b usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c16c924 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x6c209eab __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x6c271803 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x6c39ceaa fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c74e551 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6ca3239a usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cc46e7b put_device +EXPORT_SYMBOL_GPL vmlinux 0x6cc97100 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd8f8a7 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x6ced54f4 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x6cf397b0 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x6d114447 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x6d265869 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d36e994 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6d4b8683 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6d58b2fd usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6d5d79f9 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6d64066c cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x6d650b98 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6dba9b9e pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x6dbdb10a task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x6dc28483 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x6dc5a45a __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x6dd4d286 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e17ce9e stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x6e46a6bb rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x6e4d8f71 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x6e51afc8 percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x6e5b3a5b __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x6e6d5333 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x6e70b0e9 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x6e7a86b2 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x6e87e063 relay_open +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e89b5bb blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x6edfd455 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x6eef0194 macio_find +EXPORT_SYMBOL_GPL vmlinux 0x6eef3fbf n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x6f065e2d key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x6f19bf1a cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f22cbd1 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x6f2f2f0f thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6f6e5f72 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f8a3882 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x6f99ea66 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fa7c885 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6fb38e8b inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6fb47b1b ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6fc00e7a ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x6fdac97d ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff1dc2a regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff68ced device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x6ff7faa9 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x6ffa48bf usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x7042fcdc gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x7050f45d ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x705bce02 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70829b96 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x70b5105f pci_ats_queue_depth +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 0x70d696bc ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x70d7cdc0 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x710442fd reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x710553bc usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71839705 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x718f648c pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x71b4d6c3 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x71c1fbbb raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71e47234 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x71ea91b1 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x722a0e4d __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x722bb9ad tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x722f2eb2 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x72368856 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x724371b2 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x724b5748 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x72515d5a snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x72764d73 device_move +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x728ab0ea pmf_call_one +EXPORT_SYMBOL_GPL vmlinux 0x72ab99d6 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x72acbd9c tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x72aedab3 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x72be3c43 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x72bf4c78 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x72c389be sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x72e05dc5 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x72ec241e dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x73075e65 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x7308c1a2 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x732623f0 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x733282c5 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x733d5411 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x734d1920 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x73624460 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x7393c136 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode +EXPORT_SYMBOL_GPL vmlinux 0x73a3edfe usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73b98231 asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x73bac681 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x73c41ef9 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73ce6276 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x740cd3a1 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x7423bca4 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x743803c8 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743be060 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7441a455 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x745f309e swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7468b74e __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0x747246e1 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x747f3825 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x74814c18 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74a860ef stmpe_disable +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 0x74e53878 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x74f81e34 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x7513bbd6 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x753b9ebd regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x7540e1aa xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x755dde56 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x75620a10 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x7568adf9 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x757e4907 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75aa9d2e devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x75bb7791 pm_runtime_force_resume +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 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76b16cbb usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x76b346a4 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x76c429f6 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x76e8678c task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0x76fe77cd rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x7700cbb9 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x770cf981 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x770db4b5 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x772262e5 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x776b51a2 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x77743f8e virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x777a710a sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x777b89b9 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x7795afef __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x7798e6d0 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c3d640 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x77cdbe92 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x77d192bd devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x780e9510 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x7814b1ae of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x78151326 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x78151e10 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x784b68a9 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x784f192c scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x78518b90 dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785cf1c3 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x786e6551 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x787ace9d __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x788f7aad class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x78ad6ee5 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b943f1 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x78d8c70b device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x78e74ab4 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x78f35167 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x78f8d3f9 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x78fc8ddb ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x79072a44 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x793b3ce6 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x793c598c of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x7967bfac component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x797daad1 thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x799549de elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0x799e7817 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x79a09443 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x79d96914 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x79dc2b5b devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x7a141246 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x7a29e5f0 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a527e98 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x7a72501c blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x7a77a868 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x7a79cc2c fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x7a8c7ce5 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7ab3ca18 eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x7ae2fe03 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b327cd4 pmac_i2c_get_dev_addr +EXPORT_SYMBOL_GPL vmlinux 0x7b3fd620 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7b423a52 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7b6e374b usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x7b70fcba ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7b7a55fc rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7b96e660 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x7babfc65 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7baceae6 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x7bbe8e72 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x7bc1f587 arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x7bc1fdea __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x7bd5875d unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x7bdabb16 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x7be567cc crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x7c204508 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x7c225455 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x7c53ff94 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x7c5450a0 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7c911aa8 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x7ca7735e crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x7cbfcc8b power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdc3448 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cef8b5d rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x7cf10825 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x7cf7700a devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7d02716c of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0x7d4a53b5 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d6de53e skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x7d72c563 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x7d7b8ec5 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x7d96a18e rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x7da66012 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +EXPORT_SYMBOL_GPL vmlinux 0x7dae08fd bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x7db5f052 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x7dc1e388 alarm_forward_now +EXPORT_SYMBOL_GPL vmlinux 0x7dd12fac register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x7dd87ef8 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7df695aa regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x7dfa6066 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x7e05727a ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x7e0e0f30 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e1a17b4 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7e1ac7b7 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x7e2ce55f i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x7e440181 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x7e54fb5b dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e73dbe2 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x7e8a7b45 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e9646e3 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x7e975549 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x7ebf25c6 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f211f26 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f2bcf50 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x7f59e5ad regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x7f72657d mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7bf5ea regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8c409d percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x7fb71ac3 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7fbd41ae __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc33cc2 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x7fd51689 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x7fd59cb3 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x7fd6f0e9 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x7fdd4ceb irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x7ffb4212 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x8007762a ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x800bb218 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x801d43eb bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80728fe5 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x80881b8f ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80baf02c tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0x80c04b1d powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e58ba0 usb_deregister_device_driver +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 0x813eafe5 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8143644c __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x81837f2f extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x819e9e9a pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x81a410a6 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x81b596f1 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x81e82b6b trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x81f8a544 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x822ad4c7 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0x822fdead regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x823d74f6 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x8254e57e regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x82588caa tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x825f30d2 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x826cffca gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x8277d3bb gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82dd8371 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x82fb2ffd transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x8312abe0 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8313cf56 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x83260c61 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x834f2d0c rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x83537af6 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x837c4821 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x8387566b usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x83898dcc usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x8392af0b ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8396cef0 sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x83c93787 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x83cb6f4e sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x84162454 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x841da239 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x8428750f pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x845d928a pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x8470bf74 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84cfe6ef kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x84d7947c locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8509de04 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8574ca6c gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x858737ec fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8588558f regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x85a7a50b __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x85bcdfc3 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x85c2d144 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85e8defe cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x8605d4e1 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x86207944 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x862364f2 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x863464c6 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x863b01c4 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x8652110e pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867c8d57 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86d6511a thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x86f0d974 get_cached_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x86f2108f platform_device_add_data +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 0x87232684 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x872fefe4 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x87447e1e trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0x874eb2ed pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x87540352 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x8766302e irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8773adec devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8776c6ec cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x87935c1e sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x87a833f8 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x87c6dd64 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x87f0c46c filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8807bfbc pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x8809121f regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x88092025 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x883dcdad blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x884f2a5b __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x88575138 wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x886c286e dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x88728695 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x887df39d wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x88824429 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x888603c4 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88ec3f55 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x88f1a686 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x8909c899 led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x8952b035 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x89610a89 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0x89653da3 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x89653e20 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x896a43cb pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x89702d8f simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x8990f971 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x89969481 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x89ade65c gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89ee2298 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x89f48907 sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x8a1ccfa6 of_device_uevent_modalias +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 0x8a7341ad ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8a760baa regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x8a879373 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x8aa58f87 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac7f95d virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x8ae5b993 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x8af4363c device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x8b16e533 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x8b362808 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x8b44014c usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0x8b4909b2 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b7794fb usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x8b7e04c0 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b829f8b sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x8b91f7a7 nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x8bad2392 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x8bb5eed5 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c1419ca __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x8c141fbd ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x8c23b3d2 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x8c3e420f vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x8c4c584c blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x8c5d37d2 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c741822 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8cc26c13 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x8cd41226 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cf82527 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8cfb51f1 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8d06934b rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d1f45f5 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x8d30443a fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x8d40781c pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x8d43ac48 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8d4c4c50 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x8d593095 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x8d80228d tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x8d839224 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x8da17b42 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dcf31ea crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x8defce1f ping_recvmsg +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 0x8e31a370 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x8e3b925c usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x8e8fd34c crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x8ec88b95 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ecc7ad8 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x8ece68fd percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x8ed115c2 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x8edfb6d1 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x8ee65219 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ee84aa8 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x8ef64dfe mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f201b2b shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x8f217a72 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x8f2f6b36 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8f34c0e3 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x8f40c49b irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x8f663a33 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8f66a240 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8fac7718 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fc7794a usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd4ed48 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x8fec449c __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x9011be21 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x901eb2f4 ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x9022d5bc memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x90317f41 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x903af43f sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9049acec swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x904b19e9 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0x90544b1c ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9059e877 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x905f2d0c simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x90683579 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x906c24b4 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a2329d stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x90c15071 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x90e6be97 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x90f98b8a dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x9109be1e relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x91497ad4 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x9158822a blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91d6b1ef blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x91e47675 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x91e5af2a dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x91e71bb1 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x9228beb7 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x922b0dde sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x928a9a2b ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x92ab821c ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x92b25917 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x92b57248 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x92cfd9a1 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e1cca2 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x92e600b6 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x92f6e4b6 __ktime_divns +EXPORT_SYMBOL_GPL vmlinux 0x931bbb34 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x937238ab sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x93725a9b vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x938ee049 uprobe_register +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 0x940352c1 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x940faa44 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x941d0ca0 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9432b036 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x9456acd5 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x9456bd14 pmf_do_irq +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x94a1e1fa key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x94ab667d devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x94abb745 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x94d8a1b7 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x94ea7cab gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94fae79c regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95303b22 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x956f281a pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x95738387 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x957c58f3 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c905ce phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x95ec7894 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x960f1ae5 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x96176d5b serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x9617db0c rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96276a4d single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x9643687f of_platform_default_populate +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 0x966d598d posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x96843e6a unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x96a72a90 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x96c6a80a usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x96c80aa7 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x96e03977 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x96f6d43b scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x96ff8f1e extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x97135fb3 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9756b9fc devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x977aaaf9 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x977b30d8 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x97892c09 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x97a7285e blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x97d0e71e ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x97d35529 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97fa0abd usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x97fd2bfc invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x9819a664 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x981e235d crypto_init_spawn +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 0x9834550d pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x983ea0da rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98755f37 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9899e452 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x989eb047 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x98badfa3 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x98c3d0db device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x98d727e7 wakeup_source_create +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 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x993bcc09 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x993f14d4 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995e4897 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x9961c55d netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x997428ee tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x9994d55d pcie_port_bus_type +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 0x99d34cf3 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x99e43c10 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a243fee xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9a4975fe scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a76b318 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x9a7b9187 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aa5877a skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ab1fa82 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9adc8b9d ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x9ae7e21c attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b152129 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x9b1c6711 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x9b21adba inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b21fd0b regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x9b2300e2 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x9b4fea5e alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x9bb420b6 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x9bbd001f devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x9bd5436b sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x9be233d5 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bed0173 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x9bf052b7 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x9bfe94e5 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x9c03fc94 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x9c116086 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x9c9c7a55 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x9caedd38 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9cbacb03 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9d129c99 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x9d2dbe6d relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x9d387ccc ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x9d5a66ba extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x9d8331c0 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9db26d13 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x9df46c71 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0x9dfdf722 gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0x9e0643e9 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x9e1003f1 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4a886f ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x9e7ce785 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9e7db457 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x9ea96de9 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x9eac2430 __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed55d09 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9ef1e99f regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x9f01b66c crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x9f133fa1 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x9f32da3e crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x9f55a875 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9f5a5f5a syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9f5cec91 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x9fc4ffb5 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x9fc66345 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ffd7505 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xa00947b1 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xa0162e41 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa0786864 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xa085da2a power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0xa0993180 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xa0bc01a0 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa0e4c2c1 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xa0fe539a rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xa1028365 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xa1471d98 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xa14e0597 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa183bd6b pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xa18bba86 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1947f14 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xa1978a1f pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xa1bd3853 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xa1ebb29f class_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa1f60a83 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xa1fc9c6f __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa203c43d blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0xa21dd87d tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0xa23eee63 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xa261142d adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa28a3c80 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xa297b452 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa2a3a82a rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xa2b19131 pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2e0bf91 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa2ee16a2 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0xa324c73c __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xa34e95fa pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0xa3518b05 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xa36d9d14 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xa36fe972 devm_get_free_pages +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 0xa3b27efa irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0xa3b5bb70 bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xa3b958ce reset_hung_task_detector +EXPORT_SYMBOL_GPL vmlinux 0xa3cd3492 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xa3dda356 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa41983bb usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xa438584e ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xa43ff2cf led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa454bddc i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xa47d1e83 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xa47d3018 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4b058d7 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa4c46177 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa5054fab skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xa505f9ba ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa533c835 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xa53c8b81 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xa544db15 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xa5559991 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa5809d95 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xa580e99d devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xa59e034c bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xa5a7f1a6 of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5c2a8dd ata_pci_device_resume +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 0xa6001a88 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xa60343e7 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xa60fdc05 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa63243ab ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xa6465381 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xa65ee298 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xa66aaa31 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0xa66f00ad pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa6717b2b edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa67798bc usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0xa6a8f347 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c2432c class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xa6d6854f da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xa6d8bd67 component_add +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ea722c transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xa6f91367 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa6fad2e8 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xa76860b0 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa771c756 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xa7790278 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xa7b18483 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa7c6348c __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xa7dc5706 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xa7fab37d usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xa80b660b tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xa80e8bfd debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa81b35c6 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0xa830539c fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0xa841ed28 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xa84a813c input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xa84c9397 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8530d65 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0xa8571f85 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xa87f817c mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa888bd00 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8b7d891 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xa8cb56b2 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xa8cdbe45 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0xa8ee18cb regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa90a4b87 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xa91603b1 init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xa91bdb93 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa940c8f1 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xa974c6c0 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa9bf3c09 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa9c80bce swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa0f20a6 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xaa1a2c67 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0xaa2a72bf __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0xaa362116 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xaa47a04f usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xaa4d91f3 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xaa5b3baa split_page +EXPORT_SYMBOL_GPL vmlinux 0xaa649c0b crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xaa7db545 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xaa8d5a40 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xaa96b97f component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xaa9bd1b3 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaab3054 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xaac408fa leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xaae8301d __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xaafe8ad1 pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xab0de2dc pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0xab293a34 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab4a7590 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xab589361 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xab5a5de4 fixed_phy_del +EXPORT_SYMBOL_GPL vmlinux 0xab67f686 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab742c27 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0xab796ebb each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xab7e851c blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xab86fc20 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xab945a16 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xabbf7d4f xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xabc4c3e6 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd1a805 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xac2a3f3a irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xac2bd78c tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0xac56ba19 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xac8517e6 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xac907da4 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xac97a6db regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xacbaeff5 regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xacc34bc0 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xacddacd3 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xace9f732 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xacf35223 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xad093b8b pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xad27d480 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xad73b1b0 of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xad9cd686 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xadbcf2a9 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae026cec is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0xae036105 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xae03869c tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xae038bfc __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xae0ae372 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xae2e60ae evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xae53886b sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0xae60c182 register_kretprobes +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 0xae84f864 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xae8ec211 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0xaeaaf6c6 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xaede5ba9 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xaf0cba0c device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xaf20fdff crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xaf4ad751 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0xaf5486c0 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xaf558ef9 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xaf63f6ab arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0xaf6efbf5 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xaf729eb1 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xaf75c20c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0xafae04b3 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xafc881bb udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xafe63213 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xb02d1a33 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb0443590 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xb04fc27c ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xb0636315 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb076cbbc init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb08688c4 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xb0913148 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0xb092ab02 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0c2a276 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xb0e199ee rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb160be7f blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xb17037c0 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb194e180 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b4569d usb_sg_cancel +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 0xb1eb22a7 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xb1ec074c led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0xb1f5e538 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb2256567 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xb2272079 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb24c5740 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xb2611a1c regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xb26740b1 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xb26b6a35 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xb280ae78 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xb2a411a4 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xb2cbd6cb unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xb2d33dfc sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2fd5401 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xb30332ca devres_get +EXPORT_SYMBOL_GPL vmlinux 0xb3036211 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb32cf7d1 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xb32e5064 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xb32ffa41 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0xb34071c6 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xb3a8fdbc led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xb3c89db8 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xb40d8d8f __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xb40e7ea6 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4548c24 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xb45d7df2 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0xb4784c17 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xb478b6ea devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb484279a of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4acd449 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4d76d71 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xb4e6150b ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb5137c0e clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0xb5186ccc sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52c25a7 pmac_backlight +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb53ad15e fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0xb54d40db cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xb564c5ee pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a56246 driver_find +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5aaa9f5 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb5c60e70 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5cb751c fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xb5e896fb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5f6739d device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xb5ff2add get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb601fdfa usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb64db3b3 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb691037f trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xb6ad1c12 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6b8e1aa ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xb6cfa3d3 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0xb6eb2ed3 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xb6ec4630 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0xb6fb5f49 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xb711d130 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xb74c0cd6 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb752ef62 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xb785072e tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xb79fb656 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xb7a85ff4 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb7be77b5 usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xb7d57049 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0xb7e09414 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb7f8f7f2 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb809b9ee md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xb80f02e5 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xb82d5d61 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xb8732868 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xb87b22af __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xb882c701 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xb883206b hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb88a19ec pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8b000a6 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8e4e7f3 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb9094e20 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0xb909601b driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xb9176155 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xb92427b4 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0xb957e8af pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xb969e9cf fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xb96b3bc6 of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0xb98a9d0c fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xb98d332d rt_mutex_unlock +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 0xb9d77ecc pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb9e6486d usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0xba132584 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba1fe36f arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2e834b perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba6b6159 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xba85f72c __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xba8929ea percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xba895208 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0xbab702ac usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbac3aeb7 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xbad6e27c scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xbad92428 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb3007f5 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xbb59ed90 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xbb7cf9cb jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xbb7eb376 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xbb8d1e2c ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xbbb6e581 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xbbb9dd44 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xbbc65594 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xbbd9ad33 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xbbea1224 cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbbed7b41 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xbbf2336d usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xbbf7977f xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc866228 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xbc9a28e7 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcd7e159 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xbcebaf31 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xbceee8eb rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xbd1908f5 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0xbd19f763 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0xbd361a7a dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd4308fb fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xbd58aa92 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd6a5bd5 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xbd72b6c1 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0xbdbf1a7d regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xbdc0e9aa gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbddb652a devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xbde8a5d9 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbdef9fe9 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0xbdf878fe dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe2712bc percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xbe3930e1 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0xbe594805 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xbe5a31c7 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0xbe616f51 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe729fb7 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0xbe751980 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbe903a4e cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbea69705 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xbea9b492 i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0xbeac305c device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0xbeac6844 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbee3dda2 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0a6607 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf3a1098 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xbf50b4e4 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbf7fd935 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xbf81355c inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xbf94b7a7 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbf9ce5c7 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xbfb628d6 pmac_i2c_get_bus_node +EXPORT_SYMBOL_GPL vmlinux 0xbfb75745 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc3d6ad blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xbfd6a06e rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xbfd7965e bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xbfdbe815 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0xbfde7a6f xfrm_audit_state_replay +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 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc0850694 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0a47ae7 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0c0dbfe ping_seq_next +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 0xc1118103 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc11b3117 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xc13a0c38 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xc1694605 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18578ed process_srcu +EXPORT_SYMBOL_GPL vmlinux 0xc18d6bd9 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xc18fd974 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xc1c08c6e usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xc1c4dd39 raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xc1c9f8bb usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0xc1dd3787 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc1f7defd __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xc1fd46ab of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0xc2221867 pmac_i2c_get_controller +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2918a0f vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xc2ba0549 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2c5dcd8 sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc2cb5de7 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xc2dcd9a7 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc2e728dc ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0xc30b3a36 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34b7a6a inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xc353e57c cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xc365a63e rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc38d8cc4 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xc3c7744f fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xc3caf390 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xc3d01c58 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc3e28a31 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xc3e7e760 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xc403ea7a aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0xc40c2cb2 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xc4214cae rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc461aac9 blkdev_read_iter +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 0xc49d6a5d bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc4a20df5 of_display_timings_exist +EXPORT_SYMBOL_GPL vmlinux 0xc4ab7499 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xc4b641de usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc50d2746 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xc50f52b5 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc51f9097 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc527a26e register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc55d10a2 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc58fc7b5 rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5ad63b3 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0xc5b868be ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xc5be5715 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xc5df567e crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xc5e10fe8 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc5ef2aa7 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc608234f sock_diag_register_inet_compat +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 0xc6457f82 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc67893b6 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc695cd4e ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0xc69b2ce1 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a1716b sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc6c4e81b __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc74853a3 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0xc7770e45 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0xc778534c mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xc785d570 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xc7899cf9 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b391a3 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc7bc769b check_media_bay +EXPORT_SYMBOL_GPL vmlinux 0xc7c22285 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7c97b6c regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xc7caeb8d ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc7d9d955 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7f27993 usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xc82f8763 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xc83d7db0 wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xc8443c48 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc87d12aa agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xc87e2d7a sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xc8ab0e28 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b82a4b ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xc8b91bf9 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xc8c15b64 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xc8c818de inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8f06422 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0xc9057d1a phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xc90a87fa ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc96422a6 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc97e9bff register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xc9af4dfe gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xc9b8279d regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xc9bb2667 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0xc9ddc5f8 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xc9e283ac wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca06f41f __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0xca0d927f page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xca250cf7 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xca25876b of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0xca62e97e dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xca62f232 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xca658f52 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xca68a90b blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca881540 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac173dd perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0xcac18a96 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xcae7a1d1 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0xcaee1de1 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xcaee51b0 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0xcaf0d0d0 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xcaf72e33 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xcb0f7768 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb512146 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xcb57cb39 of_console_check +EXPORT_SYMBOL_GPL vmlinux 0xcb5c100e dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb8a1f04 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xcbdb8066 find_module +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 0xcc321c9e crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xcc35ec1a pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xcc510da7 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xcc5919f0 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xccacfcdb crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xcd0db25c __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xcd0fd089 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcd103717 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xcd1645c2 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0xcd3947a7 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcd39e736 input_ff_destroy +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 0xcdb6adcc ras_userspace_consumers +EXPORT_SYMBOL_GPL vmlinux 0xcdbddd5b dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xce114c85 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xce407f5d inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xce58b3bf fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xce63e110 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xced6d3b5 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcefc4801 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xcf051882 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xcf0f01f7 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xcf16c658 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xcf1ff21e power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0xcf442123 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xcf493227 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf636927 ata_bmdma_port_intr +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 0xcf7de5c5 extcon_update_state +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 0xcfd3e79c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0xd004576f __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0459f00 uprobe_unregister +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 0xd07e8456 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd084799f devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd0b19b2f __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d5dc8e phy_init +EXPORT_SYMBOL_GPL vmlinux 0xd108ffca watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xd133efbb pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xd1499627 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xd14afbd4 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0xd158ffcb put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xd15a958e setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd17c63b7 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xd17d81bc __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xd1822f0b cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd1875ab7 crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xd1960fe1 tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xd1aac8a2 handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xd1bc7f8a pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0xd1c7533f pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xd1cff14a debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xd1f0086c _gpiochip_irqchip_add +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 0xd222bb23 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xd239eebe led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0xd23c80e9 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd23f55bf usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd29aea22 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xd2a9b56b rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd2aaeb4e kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e27996 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0xd2e61d03 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd2ff8764 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0xd32754f6 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xd32db6d1 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xd357d61a vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xd364583e rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xd381a76b key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd38db082 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0xd3a91b6b napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b20427 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xd3b7b638 regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd3d64de0 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xd3d7e025 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd3e32237 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd418130b fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4283f92 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xd4381a15 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4600176 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xd463a387 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xd466118e device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xd485349f led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xd48553d3 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xd4a4f2ab crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xd4b30939 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4ee2fac pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd55f7197 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xd56f17e6 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xd570f0be eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xd5886050 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xd589d259 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xd5a231c6 nf_queue_entry_get_refs +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 0xd5c33dfd of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0xd5e98c98 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xd6056da6 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd629bf12 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xd635534d user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xd63648f3 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xd65efcca platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd660e32c tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0xd66a2c96 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6909ab9 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xd6aeef90 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7107932 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xd71b384a fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0xd744391f serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xd7624621 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd76eb0d1 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd788214e subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xd7b12834 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd7d5a6f7 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd805e398 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd82613ad crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xd83a7d7c subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd8423531 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xd8720a2e rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87a8074 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd89a4824 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xd8a35bbe use_mm +EXPORT_SYMBOL_GPL vmlinux 0xd9140fe7 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd95e873a rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96d3cf2 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0xd96fe0f7 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xd994fefc sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xd99ef66d __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xd9b91878 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0xd9c3cf72 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xd9c9af66 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xd9cc90c3 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xd9de7160 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda00e5d3 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda60bda2 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xdaa6c809 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xdae00297 rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf08132 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xdaf10a24 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf62690 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xdaf9af8e list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xdb088cb1 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb82fcd2 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xdb844181 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb95e52d of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xdbc5c276 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc1365fb irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xdc2a4f18 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xdc32ccc7 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdc461430 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xdc53424e ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc9460b8 regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9d11ff usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcb07914 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xdcbab08e led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xdccd5104 get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0xdd0afcf5 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd18211f pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd79c7c2 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdd90fef8 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xddbc1f38 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd1e71e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xddf23c76 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xde0385fe regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xde44b141 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xde547947 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xde6c6235 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xde9463a6 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xdebed082 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdef5cabd of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf23a6bf usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf4a7a09 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xdf6eaefc palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xdf781993 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xdfb71448 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xdfe89c60 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0xdfeca54f regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdff6c2ba scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xdff9a911 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe011e085 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe0564f88 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe0794c93 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xe07ca631 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe0b4eaa2 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xe0b74d0c tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xe0c13884 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xe0c745b7 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe0e0945b nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0xe0e25a19 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe0fce52f perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xe1083ae3 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0xe115640c adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe1196f1c ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xe121cbb6 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0xe12d9ef9 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xe12e8e9f devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe155c043 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe1628817 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xe1734925 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe18d8dec of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xe1a5534a security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1d1e02e kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0xe1d74e5c phy_exit +EXPORT_SYMBOL_GPL vmlinux 0xe1e6b15c metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xe23519f3 blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xe2398dce vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe25550cf of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xe2697bbe ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0xe26a7d28 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2ae44ab rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xe2c551c4 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0xe2d23bd2 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0xe2f06759 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe345304b usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xe3633eb2 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xe37248cd spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xe3819100 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xe38e45a9 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xe3acc401 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xe3b2f12d usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xe3c6a73e usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xe3fe8936 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xe4082160 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe44eb53b key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe48205db ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0xe49023ec irq_create_mapping +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 0xe4c19253 mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4d7cb34 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xe4e30d0f ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xe5015a7f __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xe50e964f ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xe52ca34f rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xe5400624 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xe565f738 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5d03553 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xe5d5dba7 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xe5e36f8b dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe601e3aa skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0xe612ad43 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xe63e234d usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe652b6f5 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel +EXPORT_SYMBOL_GPL vmlinux 0xe68b2ba7 put_pid +EXPORT_SYMBOL_GPL vmlinux 0xe690db4e fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xe6954746 xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xe6b95a72 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xe6bc8b12 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6caa0c0 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0xe6d067bf napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xe6d98304 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f976e4 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xe6fbf900 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xe70bc08b pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xe7145917 usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xe720d820 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe72f0789 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe73872fe phy_put +EXPORT_SYMBOL_GPL vmlinux 0xe748c4a8 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe752be46 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0xe7688839 i2c_generic_scl_recovery +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 0xe78b34a8 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xe79f86db netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xe7a3e2c2 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xe7d73653 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe7d8f6f8 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe7e25b00 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7fcdf23 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe82c076d platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xe82fe157 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0xe84d84b5 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe853a6f1 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe862c4b7 dpm_suspend_start +EXPORT_SYMBOL_GPL vmlinux 0xe873fbdd wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xe884de32 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xe89f3b0d rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe8a44fdd dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xe8b83f7c blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xe8befaa9 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe9026d5d device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xe9038e0a __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xe9115287 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0xe914f885 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xe9222168 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xe92386b9 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0xe926a6ea pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xe92dc657 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xe92e4392 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe938e624 thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe93ffbfc of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0xe9468a67 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xe948f4b7 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xe95c5dbb __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe95d6db2 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xe967f169 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0xe9a5b806 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xe9b2f68e __module_address +EXPORT_SYMBOL_GPL vmlinux 0xe9cf27aa regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9eb007e blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xea0f3ae8 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0xea119332 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea275a59 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xea2876ef pmf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xea309a28 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0xea34c8bc blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea7024b4 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xea732c73 usb_string +EXPORT_SYMBOL_GPL vmlinux 0xea7832c6 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xea8205fb dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xea841e18 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xea8549f7 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9f5ee6 pmac_low_i2c_lock +EXPORT_SYMBOL_GPL vmlinux 0xeaa8d1a2 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xeb03bb30 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xeb1c052a pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xeb277ef3 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xeb46b378 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0xeb715a6d securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xeb718024 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xeb75ea61 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0xeb81082c netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xeb861079 debugfs_create_atomic_t +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 0xebc4e6af pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0xebc845ff wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0xebd2c124 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xebd74403 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xebdb31d4 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebedec65 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xec0c3b86 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec5b29f3 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xec662e17 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xec724272 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xec866d48 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xecb21923 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xecb28ca7 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0xeccc762e device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xeceb242e crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xecebf24c spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xecfb0bdc srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xecfdeab5 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xed06c5cb pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xed0984c9 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xed172eea pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xed1ffaec platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xed739918 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0xed7d2941 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xed8cc143 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xedab0259 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xedab8d4c component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xedc5548b devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xedd2018f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xedeaba1e regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xee13a049 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xee3f97a5 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xee4c673a shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xee69cf49 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee8d35ca ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0xee8fdfe8 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xee9080c5 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0xeeae999a dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xeece95dc spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xeeebe4bc devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0xeef5714b dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xeef8f894 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xeef92d63 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xef104ccf crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xef24f33c dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xef2f8a24 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xef409b74 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0xef464c28 getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0xef50248f desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xef5d110a bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xef6a2a71 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef906dc3 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xef9762de sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa90471 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xefbf3e8b device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xefbf6674 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xefc2b492 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xefc7f686 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xf03036e8 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04a6077 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xf057b91c power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xf05b83a0 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0a358f1 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0e66c60 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf0efbf55 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf128dcec netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf15dee4d bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xf17139b9 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xf172aade regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xf1776c73 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1a43090 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf1a62b6f of_i8042_kbd_irq +EXPORT_SYMBOL_GPL vmlinux 0xf1a6bc74 bd_link_disk_holder +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 0xf1b95611 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xf1badf90 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xf1c400e3 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0xf1f4aa99 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xf201ad88 cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xf20bc10c mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xf2196393 tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf23881ee device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xf265351c usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf2a61bbc sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0xf2a61d55 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2ae51ef hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xf2c300dc regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf2c3022e ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xf2d971bd register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf2fca922 uart_parse_options +EXPORT_SYMBOL_GPL vmlinux 0xf2fe3030 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0xf2fe941e crypto_alloc_akcipher +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 0xf345b264 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0xf35ba259 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37c7bd3 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3878df5 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf3aab1d7 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xf3b26954 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3d40598 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xf3da5a4d evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3fff02e serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xf4093b48 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf4598fa4 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0xf4649e1f skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xf4711787 pmf_put_function +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf49be81b __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xf49f1c73 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0xf4b333d1 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0xf4e0d5d5 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xf4e27785 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xf4f9ca5d sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf5232a6a remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xf53f94b9 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5646339 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf5a621d6 pmac_backlight_mutex +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5af9b01 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xf5b94197 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0xf5bb5b89 get_device +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5d5b770 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xf5e00b17 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0xf5e2fee9 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0xf5f49b50 device_attach +EXPORT_SYMBOL_GPL vmlinux 0xf613e82f ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0xf617cfe0 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0xf63dce9e regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf6627d7a blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6875f43 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xf6a80c21 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf6adf7c4 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0xf6b832da fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6e2604e scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf703a7d6 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf71565dd thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0xf72c9d02 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xf751881e key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf76ede39 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xf799c091 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xf79a5317 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xf7c6d4c3 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0xf7feedaa tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xf80baef5 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xf82c79d0 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0xf82f16b3 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf83cf532 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xf83d6951 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xf846506f irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88b6885 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf896a5a5 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xf8bc5c07 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xf8c70f45 elv_register +EXPORT_SYMBOL_GPL vmlinux 0xf8d23f07 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xf8d924cd xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8e7d33d pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf90c0498 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xf91769b7 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xf91eac65 gen_pool_avail +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 0xf955e099 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xf95f824d disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xf96b90b1 perf_tp_event +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 0xf9dcb89b pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xfa18dbcd register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa2a12dc rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xfa4640f9 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xfa5a12ee ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xfa5fded7 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xfa76a6e7 irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xfa7be897 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xfa7e73de i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xfa8e2c6f bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xfaa535a1 sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfacc6512 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xfaf88595 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xfb016424 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfb0747c9 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xfb1814b6 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xfb1929dc ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xfb2b0d7f __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb35ca8e spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xfb367c2d mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0xfb3d623b ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0xfb3ec938 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb4cadb2 device_create +EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb585090 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb5d1852 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0xfb5eeab3 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xfb652cb0 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfba0cdcb gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xfbb4eeb9 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd346b0 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc443cb9 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0xfc78bb4a ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xfc8124af rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0xfc95e622 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xfc9bdfc4 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xfcab3bce mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xfcb4af8d fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0xfcbd1e5d platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xfcd99258 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd0739cc fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xfd4aa8ff inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7e32c2 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xfd7e7356 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xfd8c78e5 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xfda849a4 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xfdb35e2f rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xfdd9e083 gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0xfde753f5 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xfdf98823 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xfe01dddf pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfe391ecc pmf_register_irq_client +EXPORT_SYMBOL_GPL vmlinux 0xfe3d105f dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xfe3e7c8b kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb0ab51 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfed170e8 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfed49ebd simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0xfef7b7b8 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0bef1f xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0xff25cfc3 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xffb038f2 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffc630f7 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xffcd0c66 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xffd670ae ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xffdb5606 page_endio only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc-smp.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/powerpc/powerpc-smp.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc-smp.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/powerpc/powerpc-smp.modules @@ -0,0 +1,4317 @@ +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 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc64-emb +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/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 0x820f63b7 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x2551adf9 bcma_core_irq +EXPORT_SYMBOL drivers/bcma/bcma 0xc0b9829e 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 0x0188bd04 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x1c607817 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x20b8a380 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x2263f708 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x4d21a717 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0x5c69584a paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x6fe59a0e pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x701f2468 pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x9aefb3cb pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xcf9aaada paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0xd2e80b3e pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xea50537f pi_disconnect +EXPORT_SYMBOL drivers/bluetooth/btbcm 0x413c2869 btbcm_patchram +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x1348760d ipmi_request_settime +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0x139ae7f7 ipmi_get_smi_info +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 0x6cd4b97c 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 0xacfc396f ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xd69f8567 ipmi_set_gets_events +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe0d5f5de ipmi_smi_watcher_unregister +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 0xea593277 ipmi_register_smi +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 0x8eb20850 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xc63ec362 st33zp24_probe +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x33a929c1 xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x6a1d312a xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xb24e823f xillybus_init_endpoint +EXPORT_SYMBOL drivers/crypto/caam/caam 0x1c758e97 caam_get_era +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x2e0dad01 caam_jr_free +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x366a78a9 caam_jr_strstatus +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x4a770397 split_key_done +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0x98ce036c caam_jr_alloc +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xc29098e5 caam_jr_enqueue +EXPORT_SYMBOL drivers/crypto/caam/caam_jr 0xcb03442c gen_split_key +EXPORT_SYMBOL drivers/crypto/talitos 0x0732297e talitos_submit +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x3f1f409b dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x53477dc0 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x906a5342 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xcc10c092 dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd30fb1b8 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xda0ab4ac dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/edac/edac_core 0xdd7b8a86 edac_mc_find +EXPORT_SYMBOL drivers/edac/mpc85xx_edac 0xb1873814 mpc85xx_pci_err_probe +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x05dcb9b6 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0x07d31af2 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0x08b74c53 fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0f7d6af8 fw_csr_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x154281ee fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0x16e91e21 fw_csr_iterator_next +EXPORT_SYMBOL drivers/firewire/firewire-core 0x198b6b84 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1d40be1c fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x1f8db01c fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x22e2a9f0 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x25ae49cb fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4bbf6545 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5ae0f1d6 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0x616cf0bf fw_core_remove_card +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 0x69f42a68 fw_iso_resource_manage +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 0x91b05f8f fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x96a1d1d5 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x97bf9a5b fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9b2987bf fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x9bafcc3d fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa1c964b6 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb44a280e fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb9915873 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc065bec4 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcb3a718b fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd1c01c76 fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec7264ed fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xede6012e fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/fmc/fmc 0x0bd1806c fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0x23a610b0 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x29a33af0 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x564c6230 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x6770b56d fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x7a2f8c21 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x82baeb9d fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x8df37ff1 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xab558209 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xe88c09d8 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xf031fa6d fmc_driver_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0057dd18 drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x012a6461 drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0x067ab619 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08a9672c drm_dev_register +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 0x0ce4718d drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d0ddb98 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9158ee drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dd9b0f5 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e18e678 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e25ba43 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e4c2dc0 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f32cb64 of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f8d7251 drm_mode_find_dmt +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 0x10fbdca3 drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x110a63f7 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x111aa581 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x114c39a4 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x119cb994 drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12a50889 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x137c3f51 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14747422 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x147fc845 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14e1568d drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1576497a drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15ac0316 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x163ba62b drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16c1097d drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16e56ebe drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x16e5c21c drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x18213e54 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x188b45f2 drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19aa1f86 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a44b872 drm_ioctl +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 0x1b599dec drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b63997c drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c5c2176 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c76fffa drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ca433bf drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1e58ef32 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ea97190 drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ecae8e4 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1fb029d3 drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x202be400 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x21325452 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2347bba4 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2359ed3e drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23825268 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24609778 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2471a275 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x247dca29 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x27c0fdd9 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29085647 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x291247c8 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29b93561 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a04c451 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bb9bc58 drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2bca325b drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cf08410 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d56d844 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d695081 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dbfbf1c drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eaa532b drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31c70b1f drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31e80338 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x322fda22 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33740884 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33bfa41e drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33e2e6fe drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3427ce99 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3796f733 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3868552c drm_property_create_bitmask +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 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3bef9184 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c1d0ac9 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cea99e9 drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d41c37c drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d6dc16d drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e244691 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e507da7 drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4179275f drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41a089af drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x42c911d5 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43af0e35 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f828d3 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44b657ca drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x45014608 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4634b6f2 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46d7f540 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x470956b0 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x48006593 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x480d5dd5 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a3f3530 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4aceb9aa drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ae2375b drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b4f539c drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4cd3cc94 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e47a1c9 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e5648d7 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4edd30f9 drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4f7e7daa drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x501e37ae drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50a99b5d drm_crtc_init_with_planes +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 0x5264b4c8 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x526f6f71 drm_rect_calc_hscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5337c264 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x534649cc drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5382e19a drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x539b0a85 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x53eb3c8e drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x541b324a drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5436ae20 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57159c78 drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x582d05a1 drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x598fa16d drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59af37fe drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a38c4cb drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5a40f6e7 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b69fddc drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ddfb281 drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e18fdea drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e91d54d drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ed839b6 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6266d63a drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x62e8032a drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x637100e8 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64cae210 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65ccab9f drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6651c400 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +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 0x6b194842 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6556c1 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b6fbd69 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c36bbc2 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6d8e98ab drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ea1fbd5 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6ec1fe4c drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6f190114 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7067a534 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71bad24b drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x725f890d drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x741fc51b drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74bda142 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x750af061 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x751a26ef drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76205246 drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x765fcc20 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x76f1e765 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7937f82b drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7945569b drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7ed76098 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f1558b3 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7f875660 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x805dfd69 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8122eea0 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82438949 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x828f27ff drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82dee5b7 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84b5d2e5 drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x85a2785e drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8739086c drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c55f899 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c94e32b drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d11685c drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eabb524 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8fdb323b drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x900cc186 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x902a6e8b drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9037393f drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90814e45 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90f12f38 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9198f4cb drm_crtc_index +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 0x9328bd9a drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x936944d3 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x94322eb7 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95694db9 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95fd6cc5 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x96412295 drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98a142c7 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99697f5c drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a0f26ba drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9f4f90 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9dc35656 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0ed466e drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa19a6e34 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa1c9c5da drm_display_info_set_bus_formats +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa21a676e drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa28078b2 drm_edid_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa2cc7a95 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa40ab936 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4ce09ba drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5e23b40 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa61b8e92 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa685ca58 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa84676ca drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8580f6a drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa8e7deb1 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa929724d drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa939e7c7 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaa48f768 drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaacd7de0 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac057e9a drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad48ec85 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae3cdc8f drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae5f52a6 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae8ab239 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1883e7 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf1a3e7d drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2da359b drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb383c88c drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3b77710 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb496aaea drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8e5e978 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb6932dd drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb99caca drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdc24001 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0f3e431 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc141a7e8 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc151c415 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc24ce814 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3d8c04d drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc43c8b51 drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc5a897dd drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6597958 drm_atomic_set_crtc_for_connector +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 0xcb004515 drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb12254d drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc966efb drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd2f9ed8 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd46a88c drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceadafc4 drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0xceffdf7e drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf45b518 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcfd4e534 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1a241be drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1c8267c drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd32753a2 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd43d311c drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5826790 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd5c18ce7 drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6e738bd drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd97ade4a drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda2654dc drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbb5a9f5 drm_ht_remove_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdbc61c27 drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd150721 drm_mm_takedown +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd47da7a drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd5de270 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdff9c297 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe19defdc drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2a3aa6f drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2abaeaa drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2b7c738 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe33c2d2a drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5dcdc46 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8e2faa5 drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe944325f drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb88140b drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed7e13b4 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeda0cda9 drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xedf55885 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xee90bb3a drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeec81d4b drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0eea613 drm_property_create_enum +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 0xf1d5afa5 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf211b9cc drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2d03267 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf44894ad drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4c5b633 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf4f5c128 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf665ad54 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf76d62ca drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf839c572 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8a8fe38 drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf9b739c2 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb0a5c11 drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb93cc4e drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbc84eda drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbd0fa62 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc264b94 drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc36a634 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfcc00b0b drm_gem_dmabuf_release +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 0xfd9a69ec drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdc6baf1 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfde41224 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffbc027c drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00a427ef drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x00b4f45c drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x04a80954 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x051b8e03 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 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x14dccf8c drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x152a3374 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15b996c1 drm_plane_helper_update +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 0x1a67a27a drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b3f08d5 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c16b52c drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1c883365 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d620de4 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1e1bf3dc drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x201b6c13 drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21df041f drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22b89dbd drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2469e127 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x26ca876b drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x298152f2 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b6f9499 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2de83449 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2e735672 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2eba9d96 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x30359246 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x325e292d drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35418b21 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35606553 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x374aaff9 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38ffdd5d drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x39381af6 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43c1384b drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x48af0503 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4969a28a __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4aa23c50 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4afb7b2b drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4dec5a94 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4eba2733 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x510962dd drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x512955d9 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55599e82 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x557c0d43 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a019f82 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b35c8fb drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b3acdd1 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b8e1266 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c8bdcd6 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f11b6cd drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x636728b4 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x654fc81e drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67877a57 drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67d726c3 drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aab4b38 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d5cf7fa drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6fa3afa8 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x701c8e81 drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70227935 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 0x72cf6af3 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7392f3d2 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73ae48dd drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x73e62295 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7562ad2b drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77a4df08 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x78670b3b drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79f36ec5 drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7a1c2103 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x802fcc8c drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81cddd6f drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x82c92d09 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84322747 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84a5ca07 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84bc9a5c 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 0x85c2ecf6 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x86d51824 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x87e68134 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x886ac22d __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8885f9ea drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88988f8d drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8c7f2b2c drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8ccc47bb drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8dd0d782 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e0fb28e drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8e2aa714 drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x970746f3 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x98f4d84c drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9f69bfc9 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9fffd4bc drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0e36a99 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0f011fb drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa0f4a44d drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa180244a drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5010a24 drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6f65850 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 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 0xab7c21c8 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac41fd39 drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xad9e9d91 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadb01a13 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae0e816a drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3a3a535 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb4bbc926 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5e14eb2 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb79ac8df drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb9eaadac drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbacc6fb0 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc04d222d drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc10f54fb drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc31f1bc7 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc3675d36 __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc6650971 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc740ffb7 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7631e4d drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc89e6034 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc8e146f2 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcaec8329 drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc47a1c0 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd9c6106 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcf5b335f drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1655a45 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd1e8259f drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd48ac78a drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7069aea drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd712aa01 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd8a41f76 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4491abb drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4ca7c21 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe6dd71c8 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe7efd086 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe836d604 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe85d0b50 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe9e34a71 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb7cb19f drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeef94d94 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeefcd830 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf0a14601 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf1908531 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf295111b drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf365df89 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4af0b11 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf4ded550 drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf95842fe drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfd0c4619 drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfe8d6c5c drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfff193b2 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0e09a4af ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13dc35b3 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13f12a9c ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x16142cd8 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1a1ee730 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1b3c83a3 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1f8d3511 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27638754 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x30644d5d ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x36727bb9 ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x39696c2a ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3b6174cc ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3e0b9c59 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a07da30 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4b627315 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c380eba ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4c6ae5a0 ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4f7f0aec ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5014bab3 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x50cabe4b ttm_agp_tt_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x51456eaf ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5825cdbe ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5b29886f ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x60b76a4f ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66d520ac ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6b3daefa ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6fc94ec5 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x70b7eab8 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x75200e3e ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7a2a8f42 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80b9e7a6 ttm_mem_global_alloc +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 0x86d2ce44 ttm_tt_bind +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 0x8ec02ac8 ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x91231233 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x93f5a098 ttm_page_alloc_debugfs +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 0x9dd263c1 ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa4977b72 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xaec14805 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1191d28 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbcec95cb ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf65c57f ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc59a0c72 ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc6226aeb ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xce6e43a8 ttm_base_object_lookup_for_ref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcec69916 ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcfe43bd1 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd2d98c14 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd63c704b 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 0xda1c1762 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdbee8385 ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdc0f8dd3 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe62ef8dc ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe77fa1f9 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3c0cb06 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf556537c ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf7addbca ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff09f163 ttm_bo_mmap +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 0x3260fdf0 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf4f583b1 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf81fabaf i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x1bda82da i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xfe1b0235 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x7e5404d7 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x02f8d604 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1a74c7fe mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1c623bd6 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x1ed30457 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x3dce5b0b mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x424ecce8 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x591e8247 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x746604b5 mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x7b1ca91b mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x87ae937f mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x87e6be1c mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8c9a956b mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe1ab28c5 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe833fb39 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfa5b304c mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xfdeb8c8d mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x70bcba8e st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x8c119094 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x0ab94afc iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc39e4f5d iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x357d55dc devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x46f85490 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbd75f513 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xce11ec8e iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x07386a76 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x10b8a067 hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x172651c7 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x2581fbf7 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x33c3de1c hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x892d78a4 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 0x094d75d2 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x160662fc hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xddb27db4 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xe7a16252 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x07f7a882 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 0x2498b5c1 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x29d7b3b7 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x4f0365b7 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7817f9d1 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 0x8323e0d7 ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb571b328 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 0xf6d53b5f ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xfcebf7d4 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x02e73865 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x4aea46de ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x7021035a ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xa8f86a40 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xc6282637 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x17958ebb ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x5591583b ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xd713cace ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x05112899 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x074d7047 st_sensors_trigger_handler +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1175ba73 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1cae30e9 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1d5fc4db st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x42b1b102 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x434fc35c st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5904feab st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x597acada st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x59fd825a st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a5c13f1 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x932901a9 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x9e144940 st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa5664fe6 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc9e29699 st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd84d244b st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xe1a4efba st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeb58fb62 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x0655e9b1 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x22e09f69 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0xe5630ac0 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x133a5fbd st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x8e579404 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0xb319ed2d hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x45232c06 adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x6afb9199 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x11312053 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x2a985363 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x31279498 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x37bcad22 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x4e67046b iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0x68550c80 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0x68f2a09c iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x6d13f328 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x7961ad21 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x88c38dff iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0x9b69d9e3 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0xad35e2ea iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0xbbd4e336 iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0xd8ca8755 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xdd4af12b iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe58e9b7c iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xe652d053 iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x5315974a iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0xd26641bc iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x74c7e850 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x7fc65a2c st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x5e3db9a8 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x25acf39e st_press_common_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x90c0eef3 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 0x40a51c15 rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4b9de09c rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x9ce41f2b rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xaf75606e rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1ca01419 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3845b25c ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x43f2e908 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x44d5a422 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6eb656a3 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7662cd06 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8bc0f27b ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa04356a7 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xac0ca4d5 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc97f0e48 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc9af75e7 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcbd589b0 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xda4a5276 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe1c31c15 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe47c07fc ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xea4430a0 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xff154348 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfffdc3ed ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01c4a68b ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02776f50 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06e79bb4 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a9e387d ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b221755 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b8e068d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e2cfeba ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1115de22 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x13406418 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1471a03a ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x156f1f1c ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17d68099 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1acdaabe ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c19789f ib_umem_copy_from +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 0x2367edb3 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x259489aa ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x36af276d ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bb56ce7 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c9804eb ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3cc7c4cd ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d5b1707 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4592ccac ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4969530c ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a0a00ed ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a93ddba ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50510894 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5333d4ed ib_check_mr_status +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 0x5b171835 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5d36068b ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e10c5ef ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5e198f21 ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64cf2e9e ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x69a4a85e rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6eaf2f5e ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70a4523b ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7165df88 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x743baea9 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x77aabcf1 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fc88866 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8393817f ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x84dd75c4 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x85991d25 ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86e9aa6a ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a71cd6c ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x920698bb ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92980272 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93fc79fb ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a21f4d9 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b460bfd ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d98ba11 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa432baf6 ib_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa4c3c8d1 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa578f213 ib_map_mr_sg +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 0xadb22404 ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf263d16 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaf7d18bd ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0dcb14d ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb2895d74 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb38101f4 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb5d99588 ib_dealloc_xrcd +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 0xc1457b63 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc244d1ff ib_destroy_srq +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 0xc880af00 ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd701d1a5 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdbbbc108 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd70df1b ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe234129f ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe25a372a ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe27a76fd ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7c8f52c ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9455a78 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea2c1a59 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeb354e17 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xebd6cc59 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xecec7379 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xefb246bc ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf13afff8 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf1537c40 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf3074290 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf581b60a ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf9051f4b ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf987e152 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfb6352c1 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd6eb06c ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x035334c7 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1bbccae7 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2d46addc ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x45083a5f ib_cancel_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 0x800e767c ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x86d608be ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8ab723b1 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9056df20 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa0ca5fd4 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc5118bd2 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xd7e4858d ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xede097ec ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xfc2599ee ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1c4c225f ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2fb518da ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x33a6e6bd ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x477f0720 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x64c75506 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb23ff9cd ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb86e740c ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe3b8673f ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xef0f2947 ib_sa_get_mcmember_rec +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 0x65b3eed2 ib_copy_path_rec_from_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x91b980d5 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 0x05c0f246 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0f6b2cf6 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x10dd9af7 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x22ef5896 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3017eaae iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x422b5a05 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5f69bd87 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x63133bdc iw_cm_connect +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 0x8442fcae iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x84451b21 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8ef49266 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 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb3c6c427 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb57b3862 iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xcbf9b2aa iw_create_cm_id +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 0xf487222e iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x05fe537f rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3e23bfc6 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3f210b38 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x434e5021 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x43d0d5f5 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5fc9271a rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x66c9c89d rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x76749a7d rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x799012eb rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8d3981d4 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9574c17f rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x97cc6143 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa664eb79 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xadbdda00 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xaf8ddd02 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb1be5059 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb39c80b3 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbcbbfdc1 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xce3abf64 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0db2289 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe9b59708 rdma_accept +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1bbc75be gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x1c83f309 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x202ab981 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2651086e gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x46df342c gameport_start_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7e5351e6 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9c49a7bf gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcced4a6a gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf5d7e894 gameport_unregister_port +EXPORT_SYMBOL drivers/input/input-polldev 0x370660df input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x812115c2 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xe4b40ca6 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xf1bf83b9 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xfb23ce1f devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x1e503217 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x1c5ba7a1 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x55e44319 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x76b4d338 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 0xa00980a3 cma3000_init +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0xca3f100a cma3000_suspend +EXPORT_SYMBOL drivers/input/sparse-keymap 0x0efe4642 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x24efbf3f sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x2b9910a8 sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x434f1d01 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0xbfdbcab9 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc3f9a3e7 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x9876d5cd ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf455c8b4 ad7879_probe +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x04403fcf unregister_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x05e5f270 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x0a256325 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x13a2325d 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 0x50b33ca4 capi_cmsg2message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x5dc9e6ab 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 0x8f7e4c74 capi_ctr_down +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 0xc816eeb4 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd65056ac capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe094ccc4 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe741b30b detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf0bdea3a capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0af745e4 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x20e14b11 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3c2d98d3 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x43240001 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6313c75c b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6bfb84f9 b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x75cceb3f b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x7e48f465 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8076bfee avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x840ed22a b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9529d931 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbdca1427 b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xdfd28376 b1_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe96068b0 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xe9dc754e b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xf3c4e0bb b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xfa10fee4 b1_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x04cc85c8 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x3a4647ef b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4eee4590 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x7b430a0f b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x99f2181b b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xec837808 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xedde35c4 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf4f06b73 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xfdd6efa4 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 0x86c3cd6e mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xa8577cb7 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xcc89b816 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xec5118c5 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x97937b1f mISDNisar_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xaa580701 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 0xd84fea40 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 0x17553fae isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x39355e23 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x534d35e5 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xa6d0ce58 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xd45192ef isacsx_irq +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2d82cc91 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x87ae7bfe isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xe16f7404 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 0x0154aaec mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x06fcebef mISDN_FsmDelTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x074ae92b mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x0abc3062 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1207fa0f mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x145e12cd get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x14962bc8 queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x188ae852 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1cf196fb mISDN_FsmAddTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x1ea5ca58 mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x23e6cb58 mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x319473ea create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x35bd660d bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ada510 mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3e1aadbd dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x497cb459 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x563462d1 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x826f471a mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9777e6db mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa4b3f827 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa6be2048 recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb2b9c6db bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc93127a recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcdf57da2 mISDNDevName4ch +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 0xe46abf2c mISDN_unregister_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_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 0x24bad650 closure_sub +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 0x5d02a41a closure_wait +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 0xcaf1735e closure_put +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 0xe2ca7fe4 closure_sync +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 0x19d66524 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x62e15efb dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x832289fc dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xa2a85185 dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x189dc0e0 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2c52a597 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x6e65fc4a dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x77e209ab dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xca3c3f78 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0xef7431c0 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0xe43271dd raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x001de12a flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x07e3c184 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x08e3dffe flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2c103988 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3f68ba8d flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x53fde899 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5be1ad37 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x647189a3 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x7932488a flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x9251a26e flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc7346f9e flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcde241c5 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd06d94eb 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 0x436cfb9d cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6aa2c74b cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0xbcd457e2 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 0xea934a5c cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0xd74147d9 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x27b5b827 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xc3222a80 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x04fbcb35 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x06373e25 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x08321132 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0a7dbdfc dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0b3cffcb dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x11bc2786 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x16d685eb dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x1f8582b1 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2089e19b dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x300ecce2 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x33f00c4c dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x3bc329f7 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x526b7079 dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c7739bd dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6af5f0f3 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 0x778cea18 dvb_net_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 0x85c42d0c dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x89ac488b dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8f02dc66 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8f3cad29 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa47af643 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac8227f5 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb0df6c30 dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbb46347f dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc25ee353 dvb_net_release +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 0xe0ff8e2e dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe19fdd24 dvb_dmx_swfilter_packets +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-core/dvb-core 0xfc764dfe dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x4f980e14 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x8d2c33c3 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0xc74a1bb6 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x129c2922 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x340f138c au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x44722a43 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x5204d246 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x7289a255 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x804aa648 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x9b9b4a58 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb3c93949 au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xbdc7e1b5 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xc15ee855 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x10a015f6 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xed9a3e44 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x466aecab cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x2203f298 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x784e7a44 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xe43fd429 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x2e23204e cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xb68c1849 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x307d45fc cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x73bdab04 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x7854d437 cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x5f2f4586 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xa73e1c2a cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xb56c2f32 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x35227d14 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x3f81b510 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x50e62f71 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x77634b8f dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x873bb973 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x151b3bde dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x22ffa1e4 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2cccb9d1 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x35ed855c dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5d7ba1c1 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x6a286626 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x87ce2d50 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8df39ca4 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb22f06d3 dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc49b9647 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xc723f415 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xca0849eb dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xe1259870 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf612245d dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfb5e8da6 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x2e25cf71 dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x39ee9ba9 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x59d2e45a dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x81a887be dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc6d89668 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xca566579 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xe57e0024 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x3d8b1352 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x9963732b dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xadbb6ce0 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xbf6d504a dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x262287a2 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x0d4c928f dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x139e0271 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x1cfab339 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x76071ddc dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7b371311 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xbcc559a4 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x1ddc0376 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0x194cbb6d drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0x06a68abb drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x53e0524e ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xaf104146 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xe0f90e09 ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xb5be1aba horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x565d64fd isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x67499323 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x6fa0c32f isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x73d5e2fd itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x511226ef ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x6464bd17 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0xa1cd677a lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0xe949eab5 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x78601608 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0xdc51247f lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xb6f6dc2a lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x341febcf lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x09a88f32 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x993fd5f6 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x3927d101 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x8b4d8e1b m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xefec4a92 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x66962ae3 m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x0f9dd7c9 mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xd99fcbb1 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x4a494774 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x68c3ddfa mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xcb061105 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x00622108 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x70d8e130 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x9f8133f9 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xf7f44006 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x38d4e652 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x68fe5ba8 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0xc1870b02 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x2ce2b51e s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0x8205dcf1 si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xf93d8e74 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0xdc0968b9 sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x8fbcaa78 sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x4d8bc0c4 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x039086aa stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x16317e43 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x028d3cb4 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0xdca4a3fd stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xebeb4626 stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x6c770f6b stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x6f2e3771 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x344f1ad7 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0xb495ff64 stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x24d1dea5 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x3b4a9a85 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x1b6066a3 tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x4cf60d64 tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x31a510fa tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x42c21440 tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x76d7bc28 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xdff24c7c tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x7730ee4e tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x80203e18 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x219483db tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x2beaa6e6 tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x055ddef8 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xc85a1b6b tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x25240b77 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xd8660b46 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x1bd6b64a zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x0df5222f zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xaf9f0d60 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1589d30e flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x36a4cd11 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x4bbeedd9 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x51ee9e3a flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x609600b9 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x6f57efab flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xf91ebc81 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x0322e427 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x34048c44 bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5353f2e1 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xb392a287 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 0x819b3f64 bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x8ecf4acc bttv_write_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x91e2fcc5 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbcf2d2fb bttv_read_gpio +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0xbd891dee bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x0043f7f3 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1d75d907 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x25882094 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x36e3781c dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x381bb5c9 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3e2da58f write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x8ff68b42 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x9c4ee32b dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xab95f961 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x9bd8864d dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x244ce01c cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x65b11698 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xa5880dec cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd5e9312f cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xe1cc589e cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x2c646fff 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 0x0aaaa87a cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x103c32bd cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x423188d4 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x742fecd2 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xa247de7f cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf55fc8be cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xf6f0b200 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xde44f7d1 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xfee75c74 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x5992ea11 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x846f014e cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa6fb6b65 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xb64bcf92 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3883903c cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x44444ca6 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5e9f40e1 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x76488d06 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x80c4803f cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb0a24a21 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb6e84619 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x04ccac63 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0af88ba3 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1dbdb486 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x3de11f99 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x49a73155 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4a5eddef cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5c8ff0d2 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5f4c02a4 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a4174c2 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a94543e cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x746b0a5e cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x85abb072 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x90a541b4 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x962ac2c5 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x97ecf286 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd3223aa1 cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd88f43ac cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd98f91a0 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xdcc734f7 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe22ef227 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0d7c9693 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x15a8fa30 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3000a772 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x49c2b99c ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4dd7488f ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4eeccb2f ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x4f22fa6e ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6e405649 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x781adafc ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7f24ec02 ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7faea266 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x8568a050 ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x93c8affc ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc263645a ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd77e0b21 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xecdf40b8 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xfbf7afb8 ivtv_stop_v4l2_encode_stream +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 0x3199de02 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4eb2999d saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x94f9a0d3 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa91c7bbb saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb4e71c94 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xb87edadb saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xbd871170 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd0288ba9 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe62efefc saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe8a7069d saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xfb428af4 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xff011e28 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x417631d1 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 0x288e3179 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x7fae02e0 soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x90995a1c soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa75dafba soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xc4b7bf33 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xe7405eec soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xf41d0b8b 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 0x11cb7269 snd_tea575x_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x308652e8 snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0x587348f8 snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0x5ab7291b snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0x8f094f71 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xd9ef2662 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe59b4e92 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x30d80202 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x736f0418 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x7b878f2a lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc42e1097 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xc708c0e4 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xdbe2575e lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe0c1716b lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xee4951b2 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/rc-core 0x26c4b61c ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0x803a6aee ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xc77fffa7 fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0xe1a24ba2 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x79397f6a fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x921fb663 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb30f05cc fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x30d6ecb1 max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xf2a553bc mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0x62f6539a mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x5abee4bf mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x2bc6ee15 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x355b3313 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x5269ed3f qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xb5f4c63c 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 0xdb83dc40 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x046eb87c xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x6961d1db xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x183d2851 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x4d9926d3 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x033c30cd dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x15d567c5 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x208871af dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x26fecb7a dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x68530b82 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x7d87ec1d dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x9143b65f dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb00d8233 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd9385f23 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x08bb940c dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x20894730 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x58ae1e44 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x7d99b677 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x90182cdb dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa3e553b2 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xa8c04e3b 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 0x83b15eee 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 0x05e0f48b dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x26a66456 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3158199d dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x58d93725 dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x7f3d381e dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xa2b6b36d 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 0xcd4b4c06 dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xd27d7886 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xda645627 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xeb9903c8 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xf325284a dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x0d32b23a em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x8d9eb59e em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x006ec604 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x0be146d1 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa4bf7540 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xa6ca9196 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc3706d47 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xcab740ac go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xce533c87 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd7daf2ee go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xf64dbfea go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x5035f315 gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x53bfe352 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x75e6017c gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7c44aaec gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x893fbe77 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x96eac501 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xcd50d91e gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xe46bf813 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x149cfe94 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4414f7ee tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xc259c96f tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x0012c1c1 ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x2bd5c00b ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x22544595 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 0x534156de v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x9b0adc1d v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x297f50cc videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x3cea2e4e videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xa3fc6808 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xcb000dc5 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xedf38a94 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xfda42df3 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x2aa4b256 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x45369983 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x059d3678 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x15a1cc15 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x1c00e100 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x578c0c48 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x63f650a3 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x8bc2c849 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 0x9ac4aa6d vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x06a80dea v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c931c33 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f1bbc93 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x123959a1 v4l2_type_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1564443e v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x16244fe5 v4l2_prio_check +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b1edd7e v4l2_ctrl_find +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 0x20526507 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x214de52b video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x23e15827 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2480a6f9 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26789309 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x26a3ec9d v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27ff7f57 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e669cec v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f34060f v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x30e0b458 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31170e74 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3908eeff v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x394937c3 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x394d9bd9 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3adbd595 v4l2_field_names +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bc71bf2 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3e253664 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3f638a6d v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x409efe53 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4174b18d v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x446f173c video_device_alloc +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 0x53b19ad3 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58ebdaa1 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5a999966 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5df79e23 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5f8f4b0d v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5feaff32 __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6052522a video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6130a6fd v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x644ea07f v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6523364a v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66ac2134 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77cecd4d v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7af0152d __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7c86b189 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7e19ff41 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x838e6d1b v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x85a3e699 v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8766ded7 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f3505a5 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8f6e711e v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa249909a v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa42296c3 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa527cba3 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xac14a8af v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xad36e5db v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xaf40bac1 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb293c553 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb38b55ed v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb65e448b v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb6a9be86 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb7909762 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbbe585f1 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc15b0906 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc19bf4b8 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6b19eed v4l2_ctrl_radio_filter +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc7bb34cb v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcbd73c5a video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce4ac5d3 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd0b1b730 v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd92d0afe __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe53e4b44 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe5966d28 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe8abdcc8 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xead9b30a v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf809d62c v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbe4380d v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xffa683f5 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/memstick/core/memstick 0x175b5b35 memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x19bfc6b4 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1ecbee32 memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x247c7c3a memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x25c292ac memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x2f1d0f58 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3b846534 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x3d20805d memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x58631aae memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8791c22a memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0x97608fcd memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xaad2496c memstick_alloc_host +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 0x1075fa3b mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x168d4ed0 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1a85fe77 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x223d7724 mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x22ce6a17 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2a76f910 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2ec4f8ab mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x34e6545c mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x428ad407 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4a039afe mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x57839f67 mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7a4ef80d mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d172034 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x80abc252 mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84d5d1ed mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x916666bd mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9bcdcf1c mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa11b98ee mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaa56caf6 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xabd2f864 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaeca0dfb mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xafb439eb 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 0xc5bd3558 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xcb611e3f mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd1a9bd21 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd1c148ad mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd4d2014f mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd55c642a mpt_raid_phys_disk_get_num_paths +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 0xf8ab2a6c mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0c602a72 mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0cb8b205 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x19c1f916 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x20ab25e3 mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2a2b9c1a mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2ca54437 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2de6f303 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x395e4323 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4f72300e mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50138bef mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x505dd4f2 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x50ea570a mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x54f607ca mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x56c55f87 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6367fa8e mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x72512bd1 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7ec79fbd mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8429e9be mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8634b9b2 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x89fd64a8 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb1611fbb mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb6fa106a mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbcf08042 mptscsih_shutdown +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd90d414c mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe0086436 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf89bd832 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfdfc6721 mptscsih_suspend +EXPORT_SYMBOL drivers/mfd/dln2 0x67cbbfd2 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0x8b222847 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xa2d7737a dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x24878a15 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xc4c05119 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x031ec146 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0aec3630 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1e8a99e8 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1f69bb0d mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x220a5e65 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2cef5a6d mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x2d8a6a1b mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5a710279 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x7e7facac mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8648b2a0 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xcaf37662 mc13xxx_irq_request +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 0x3c73272e wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xa46a7205 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 0x3d17b146 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0x526a540a ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x3c3c87d2 c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x4261d4b4 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x311507d8 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xfadc2ce9 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x11f02373 tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0x2854dc85 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x433ef953 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x4ccbe85d tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0x4e83cb32 tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x5eac70aa tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x83f04b8a tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x892334ec tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x89802153 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x8b3be549 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x9563af50 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xf280a6b7 tifm_free_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x598a8deb mmc_cleanup_queue +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x04294d0f mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xe80a63aa mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x24be4817 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x312550f9 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x3264675e cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6d76e517 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb4d05c74 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xed7920ac cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xf69b7477 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0187db64 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x1df11077 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5fcd9f3f unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xa9b18ae6 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x3dc70f24 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0xd30462c2 lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xad65d19e simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x2bd066a6 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/mtd 0x418d3cdd mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/nand/denali 0x2411c6a7 denali_init +EXPORT_SYMBOL drivers/mtd/nand/denali 0x9ad01905 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/nand 0x24455ba3 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x24c14145 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5a4ca2e2 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xa1dc7333 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xca7b2442 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xda7ced20 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x1660987d nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x4b83cdbb nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0xbcdfd1b8 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x25fb3e17 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 0xd9edccf5 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 0x0bd05fff flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x612d7e26 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x98652eb3 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xccaa3946 onenand_addr +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x01580222 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x680ba489 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8d900daa arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x94dfa110 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb1cb504b arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb5cf3305 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb85db7dd arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeb8cc8cd arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xeec20cca arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xf6cd9d34 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x674b4163 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa18ec86f com20020_netdev_ops +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xbe588e66 com20020_check +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x1098d878 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x414869bc ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x50ea6998 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x54f26b11 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5f8f4f8f ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x909de223 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x9d20109c ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb460d837 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xc56a2bf3 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xccc6e0cd ei_open +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xc14330ee bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0xb82d119c 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 0x03d11314 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x1d85f44f cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2daf6fe4 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2fb31410 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x58e67769 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x724365d2 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x78cdea95 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8c1ab44a cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa0df19fe cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa22c317a t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb25c3df7 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xba6bca59 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xc63fb935 cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xcda62347 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xde0e5978 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xf578c0b0 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0c43a498 cxgb4_alloc_sftid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1b1aebf2 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x278e1204 t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x39aebfd0 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3a08cd6a cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b880136 cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3bb75518 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4b3340d1 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4d69605e cxgb4_pktgl_to_skb +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 0x5439453a cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x573909f9 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x64a44c5c cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x66f06625 cxgb4_tp_smt_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x6c5a50d7 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x70565eb3 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ccb9cad cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x807f9a2e cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x85993964 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8d57d59f cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9cf762a9 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa0be7bef cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa3dc6c2f cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa46621db cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa60d14a2 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xad91a441 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc61398b8 cxgb4_port_chan +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 0xe65ce58d cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe90a6ce5 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf4b4487e cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf70cde95 cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf936c8f1 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfdcd1d5f cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xffcb6876 cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x2507f3a0 vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5bdc019d enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x5fb390b8 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x7e4f1489 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x861395ea vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf88618e9 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x0edd8be1 be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xb1c341fe be_roce_unregister_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 0x03ed450c mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0ad2d920 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dab58e8 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10279406 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12a853e9 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12cb547d mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x19fe6c93 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b5f44d5 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b41b921 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ba67fc5 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x38012bca mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43cafe60 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45d896c0 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f28f4ee mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x503a5c26 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55384add mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a042487 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ce68993 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6041d7e6 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x63d4d67a set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67567f6e get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x688b95b6 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71b7201d mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f36f4c4 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a41c14c mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9b483bc5 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaefca9a2 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7ef9347 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9cdb612 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc190c8 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccd1a39f mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcfe8272f mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5b322dd mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9921efe mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xed49d259 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xedf7ebeb mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd4db96f mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfee25b88 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x04d9f59f mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x05f8dca9 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x08174b2e 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 0x0ef74938 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1886a0e8 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f8cebad mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a599096 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2dc69a39 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2ee61858 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3515c2ef mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4361b20e mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x44a4ca07 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x485601c6 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x538430de mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x58b97726 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a4132fb mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62635ddb mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x647fd86e mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68ff6f1a mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x717da3f3 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7cb8507a mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81eb2a30 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x824da03f mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88d52e21 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9016ab84 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x961546fe mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x984a54e6 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98d5d542 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b309f45 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa3369189 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae4006cf mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb51c8ad4 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf63d124 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 0xe7a59132 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7f55835 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee657b84 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf491b00d mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5313d7f 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 0x068f5ee7 mlxsw_core_rx_listener_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x0f901f3e 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 0x4156cd9f mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4c371064 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 0xad97b076 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xbe365ec7 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xd9799e03 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 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 0xee15f5d4 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x6bcfeb0c hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x8b770f05 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe22253d9 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xe75f1d73 hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xefb4a424 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0305d46a irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0a8eae29 sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x26ec153f sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x3c4d8c65 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x463f1bce irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x47675af6 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7b7e0898 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa3eb604c sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xb50ede7f sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd34868d8 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 0x215b11a3 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x42204418 mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x4c9dfca0 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x4fae7be0 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x656fb4dd mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x6bc465f2 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0x8e7a0687 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xe6ee2416 mii_check_link +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xd5919ecf alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xdc4aaa9e free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xa4575c6a cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xc46bec83 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x1af8e7a0 xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x69d921cf xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xf98e47c7 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/vitesse 0x6eb283fb vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x31e318dc pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x3f57c138 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0x6f4322af register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x4115ac31 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x4b01dfbc team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x4ff71bd9 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x7c7887bc team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x9fe86f16 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xbca563e9 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xd5442d57 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xde803ea8 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xdfd8af7e team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/usb/usbnet 0x4590ddcd usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xa2b873ea usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xb038c8a1 usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xf34d2ce6 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0dc950f0 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1e745e86 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3286d294 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x404c00e5 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x67a44fed hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xa81fb8f7 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0xca82778a hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0xcdd6d3ff detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd0ae04e0 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf4b55e55 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xff4da47d unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x7a1b7225 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x0b69bea1 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x8c721db3 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xed5a8c3d init_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x038ff9bd ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0c145398 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x45b3152e ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x5e600f58 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7b729f25 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x875543db ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8a888d00 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9f518285 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcc61e165 ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcf80b97c ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xcfcafa92 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf85440af ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x0c714e8f ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x181aba23 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x25c51965 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x49bc62a9 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x74d6ce72 ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x850a3fe4 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x92a0f592 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x96a91a59 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x9ae4298d ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa70b223d ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa78c4321 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5b5b997 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc4ca00a1 ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd0cc9c15 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xda463d60 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x089e6dd1 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x0cd5ac08 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x125e89fe ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x30f6022d ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x6f7f6aac ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7b317424 ath6kl_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x7f4b6c0f ath6kl_stop_txrx +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 0x95f3e183 ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x9c3ee4c1 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 0xa714830a ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb2c09cba 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 0xde877d82 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0031ed7b ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x02050049 ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x0940122d ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x180b8b6d ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x18341714 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x20718d33 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 0x3731294d ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x3eece50f ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x43388f6e ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4af3d144 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x53e94f3c ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x864d1974 ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x95e10fa1 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa1965cf6 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa517ed0f ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xad5d5c88 ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xcc74789d 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 0xd5541bb6 ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde42daae ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xde6b178a ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe67ce85a ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe82cbff3 ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf06da549 ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0164a633 ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x081b9334 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ad13f4b ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0e4738cc ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f0c68cb ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10a5c014 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x10d03226 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x15255ac6 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x17f2c9f1 ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x19e945c1 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x22b38291 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2780e4cf ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x296a3759 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a02d1ff ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2ca4e85d ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2db8aec0 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f993e07 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x322b9577 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33c160e7 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34d826b6 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x34f97bf2 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x398003ff ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a1154b4 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c08db29 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c50f641 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3e5698b9 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x424c972a ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4952bd29 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4b705ab2 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cafd710 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f89a243 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x511c2bb1 ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x528291ef ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x56f138aa ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5fc56bac ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x616db190 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x61de6c83 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x662db326 ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x689d9d6e ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x690f1c24 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6b18a6cb ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6be270a7 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6c5bb578 ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6eadc3fd ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x70390630 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7439977e ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x760c34dd ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x782c2bce ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78b988b6 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7b811749 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bc021d2 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8027bd09 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8208914c ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x85c465e9 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8660f67a ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89dd4d44 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8c45e54f ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8d1bc731 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8fc73f5c ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x929abe67 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93b73b6f ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x941a9706 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9545e213 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9724fd9a ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa5d6c651 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6481b75 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaad79705 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xac0c4cfd ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad867bbe ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb086eeda ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb08f34ab ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb20b2e9c ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb33b4cda ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb37dd6de ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb3a7ca47 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb57145f4 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb6584763 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc25c4d17 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc53748be ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc8c1ef67 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcd29771b ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcf69698f ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd03d781a ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd20c4e4b ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2904641 ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd2941711 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd35372b1 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd3c48ef ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd5e9d41 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xde13f445 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdf3da898 ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfe4918b ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe04feb72 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe11ac5be ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4198423 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe491b0c5 ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe4952f2b ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe97ba9e1 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeb8973cb ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec5d4e67 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf22854d6 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf6d6988f ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf77d2287 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf7c1e6f9 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfe2e4add ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xffd02408 ath9k_hw_get_tsf_offset +EXPORT_SYMBOL drivers/net/wireless/atmel 0x8e1eba97 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0xa9e80789 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xd326c54a stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x039bbf39 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0bd568cc brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x26a741f6 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x26c37145 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x31743151 brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x52a17abc brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x65e5f6ea brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7bdbba16 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x826d5f33 brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa121a7ec brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xa84291c4 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xef2a7f5c brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xfa5ebd3b brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x05718b83 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x092e58c9 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0a9a2edc hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x391a5c21 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x43ec567b hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4af52bc8 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4b6c0347 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x541db96a hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5f1ef318 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6a7814c8 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7e2011ef hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7f552006 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8d1a5c7f hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8ea2698c hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x997beb02 hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9c6dd932 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa6a7a547 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xb04ad8d3 hostap_set_string +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 0xb7716c97 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xbc0d3c4e prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe881a5bb hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe8986306 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xeb95bb33 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf1f02e70 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfc7fcd51 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x088ad20f libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x13c97bac libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x14e1c9a8 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x30b02d7a free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3167f764 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x3768c58d libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4d7376d7 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4e9baf31 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x597d98ad libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x5d06b215 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x66d11bea libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6b2b9e65 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x74045d59 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x7b5e070b libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x88365555 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8a82ea42 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb26738bd libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb7decfee libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc3ca31e1 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe56f1e72 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe603c9e7 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x031daab8 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x037aff77 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x050668b5 il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x06d6cb0d il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x08617f0c il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a4a4fc3 il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x14e8f175 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x15df50b3 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x164a4eef _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x172f76c3 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17d755b3 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x19901969 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1f8d589b il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2c4db6d5 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x320e5f46 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x32cd1c9f il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x344c1185 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x34cbe3b6 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d5bf75b il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3d6d562e il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43271016 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x43ccba96 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x457158ef il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4707139d il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e169582 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e6ecea2 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4eee23de il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4f7db268 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5046e33e il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54ee87b7 il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x554c6a71 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d58b5bd il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5f3ff71c il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x60417ba8 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6256d158 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63adecfe il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x64f7ee8b il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6520906a il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x67a6168d il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6deeb199 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x70409140 il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x715b1739 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x721356fb il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x727a9f75 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x756b44d0 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x785819d5 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x79c00943 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7a77be9b il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8089c191 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x81350f36 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x83e49a83 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x84ec75c5 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ccc3ab2 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8f53bf6c il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x96ba42a0 il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9706ef28 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x986a53ea il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9a83cb5c il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d15e22d il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d3598a0 il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa17d93d9 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa21e5b2f il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa558d6b9 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa55c97e4 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa98b7bdd il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0e3da99 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb74e848d il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbb7c672a il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc03e7570 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc34ec41d il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc3afb62f il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc42a9fbb il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc68a41fc il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc956dab7 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcb0e7140 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd0081cf3 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd0f719ff il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd1b2dbb5 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd2422d08 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd9d7fc40 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd9ef1ba9 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdadccadc il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdfde5239 il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe006207e il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe09bc531 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe26733e0 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe2cb49ff il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe31f596c _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe3679e92 il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe530c5fd il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe657f2f5 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe8b03040 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeab37f6e il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf57b01d9 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5c2ebf9 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc5fa09b il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfdf976ca il_poll_bit +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 0x021cc29e orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0a65edaa free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2874093f orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2ab6a36e orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2ad52ccc __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x37e04002 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3ff5e4f8 orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x4cf837db __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5223d129 orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5a304853 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x92022fb1 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9879f48a orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa129a5c2 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xa66139d2 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xadf6f41f orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xea80bb92 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0xaead0d2a rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0407b21c rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x068fcb07 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0756a249 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1647aab5 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x19d27182 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1b0bd205 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1dea4eea _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x29b4edbf rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x35559371 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x425205c4 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x42bb48e4 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x449c4a9a _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x542de954 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x554f49e3 rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5dc040ee rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6987dccc rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x78bde0f1 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79eb408a _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7bc71345 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7f3aaab1 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x806ba2c6 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x885594f2 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x88c3bea5 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8947773c rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9bdf0a2f rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9c59e43c rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb03a4eb8 rtl92c_phy_set_bw_mode +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 0xb8ed7b5d _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbeed2ab3 rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc31ae7cf rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc74c497e rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8727912 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd38900d9 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd3fab5d5 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6cc4e13 rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xde20a135 rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2bf2f2f rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe8cae9ea rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf0db7b1a _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1b90203 rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1e6933b rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x09ea9550 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xf1844152 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x93b3640f rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x98312d38 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xabde796c rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xce0dfe9b rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0390a41c rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0daccf41 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1453d6b2 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x159a08a0 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1779cd51 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1abaa17f rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1bd4266f rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x207fbb70 rtl_evm_db_to_percentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28cac08b rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2a770215 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x2cdf39ec rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x328ee197 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x342db744 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x35e698a9 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x36171584 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x47b2d9b9 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4aa0b4ed rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x59639c88 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x700b4fd6 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 0x8b66181e rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c655865 rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb15275a9 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbc8fbd8 rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc16c5dfc efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc89075ce rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xceea7044 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xefdb7e26 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfee07161 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xff0338cb rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x53e334b7 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xe5c82e5d wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xf071acfb wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xffe5b55d wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x3d16bff6 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xa375e143 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xbf02ec34 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x27373a48 microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xc9117e3f microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x16164c50 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xdd123d7d nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xe436d00d nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x6ec2ecc6 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xdf491db3 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x303c1e1e s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x7299de5e s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x8d8ac1c0 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x29262bae ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x2da34499 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x41f69c09 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x5505d2d2 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x6143abe7 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8b28417b st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x929cd4bb ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe3fb8cb5 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe5d06270 st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xe9f48bbb st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xeb554954 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x14578a01 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x24eef326 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x27ea0e39 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3629c88f st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x386911d4 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x3aff5124 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x40fe091b st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5ea7d463 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6264c00a st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x7f23e6d0 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8793fef2 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xae775ccc st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xbe4c040a st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc8917ec1 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc9aca389 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd0845a06 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe3c1ad1f st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe6bbb6a5 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/ntb/ntb 0x04615843 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x0ae9eb27 ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x16cee3ea __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x55354204 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0x6a318c66 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x8010bc3f ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xa8c4e94e ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xac8363fd ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x9c204d28 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0xe7fa35af nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x23f23505 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x04b7112c parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x0a0848f9 parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x17568ad3 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x21685168 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x24fa9795 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x2936b490 parport_release +EXPORT_SYMBOL drivers/parport/parport 0x2a9f23e6 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0x2ed88659 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x43392b10 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x4513199e parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x4996cd57 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5988c7b3 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x5d961efe parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x5ef2263d parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x60db5fb8 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x64d9bce0 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x718dcdc3 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x73f09f4f parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x73fd8854 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x78378b67 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x91b48123 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x9d7d99df parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x9df73b8c parport_read +EXPORT_SYMBOL drivers/parport/parport 0xb8053a37 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xb95f66aa __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xba000efd parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xbc40f3c8 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xcd10a436 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0xd5610f49 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xe6b3ed94 parport_write +EXPORT_SYMBOL drivers/parport/parport 0xfda4148c parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xfe27aad7 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport_pc 0x25ff6878 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x779df6ca parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x1b21dc8e pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x40f94f28 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x41d739b7 pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4f758956 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x5043fed7 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x77d08707 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x782ce79c pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x95719730 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x995ad0cc pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa4687f8c pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xaa9c67ea pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb16348ed pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xb678a0bd pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbae7b47a pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xbc3cf90a pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc44c053b pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xc4fa0085 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd8f48ff7 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfed848e5 pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x12498312 pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x489a95c0 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x6658ac4f pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x665bbc96 pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x768acd0e pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8eb75ce0 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9093c10c pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xa10e79c2 pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xecd0c155 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf5b231d2 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xfc190331 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x1d13ef73 pccard_static_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x3f648f55 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x26dff351 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x276e3414 pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x3c92200d pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xbb0c30a5 pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x343a6ec1 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x3bc4a96f ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x821bad40 ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xf3e7d9d3 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xf53cd5c4 ptp_clock_unregister +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x0779ef0c rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x274f6ab8 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x3af452ce rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x6ecabeda rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x96538473 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xab66b1dd rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc17c1a1f rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc62d3526 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd3f99df7 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xda09b86e rproc_vq_interrupt +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0x4652038d ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x5f627859 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x65727b2d scsi_esp_template +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x7b067d6a scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8edb7f27 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x16203878 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2ff2a47f fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x39b7e4ff fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x58d0cff5 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x785e93e1 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x78dc99d1 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8143d948 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x93c457f6 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xa0c128d6 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xad03fbf4 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc926156d fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xe32f97aa fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x03cfc463 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14d199ea fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x17c737bd fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1be2fdc1 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1c4aea55 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x257f9891 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x31014536 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x311fa88d fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x322f64c0 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x323419bf fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x388a688e fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3b44855a fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47a00fc3 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x491a3145 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5af2f52e fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5c9528c3 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5e5f74de fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6587d468 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x701e2858 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7f67ffcc fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8637a27d fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8883a134 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9bca246a fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f46fa4d fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f4b31c0 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9f7cccd3 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa1e20261 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xaa7d6fd4 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xae3b3486 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb0892a8b fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc586040c fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcadcbc7d fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd24130f0 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd3927640 fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd53a2ecd fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe22793db fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe3e685a3 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9e67109 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xed575c10 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf282ecd6 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf352c1fa fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf88976da fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfcb54466 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x1fac8865 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x25c73d5b sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3ee5d0bc sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x9c9eb6c7 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 0xc0fde3e6 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x01c53c6d osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x141d4d68 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1a63c23f osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1c1659ab osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x252be7c8 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x32179b16 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x353e6e41 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x47131480 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5193bfb5 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5c1ba63d osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x6418ae2e osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x68aeac95 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7dc3a708 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x82f7b6c4 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8598c995 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x893af27f osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8cda1e9b osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x964b33db osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa043c2b8 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa73499b1 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb5a37024 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb611d23f osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbbc50993 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc0e196ed osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcd191cab osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcf7dcdd6 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd2dd09d6 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd31a9e87 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd9a1c0b9 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xde5eb88a osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdfc9a286 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe41c93d6 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe88182d5 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xef14b783 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf6b3cdeb osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfbdc682e osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x6ebd74ef osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x9fec9f6e osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa3a663c7 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xae724410 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc49f8afd osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xc9597875 osduld_device_info +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x03c83a8c qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2285cc06 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x2fc86a0f qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x5f5c6641 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x666d6078 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6d9b8375 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x712b532a qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x95796e89 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x97e6b844 qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb134a0eb qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb21e8579 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc851dc74 qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x20b03f5c qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa8d9f102 qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc3f30e3e qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xdecdbe2a qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xee921191 qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf73b8439 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/raid_class 0x4b01b82d raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x724acb5e raid_class_attach +EXPORT_SYMBOL drivers/scsi/raid_class 0xb7f615ce raid_class_release +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x08e36d7e fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x09193581 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x194ef6ba fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x1df9997b scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x48dd7f1d fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x66006aef scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x719d6b72 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8bf114fa fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9624f91f fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9b009e44 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcc61c6f0 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe1917c66 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe474dd00 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x019b405c sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x056f77be scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x07eb11ff sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x13153df1 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x13c5ef4f sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3b42a314 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3e1ee2cd sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4147ae9e scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x48cf5197 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x60d015c0 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x675a8b1d sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x75f32320 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x81f43f01 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x86b517ca sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9442377e sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9d1fd1d4 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xaaa0db26 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xab5c40f4 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xad355937 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbccd5ac7 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc15c14be sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd1c6c13a sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd4bd1815 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdb75dd23 sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdeea523c sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe2f040c6 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xed140897 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf82f0979 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x2638899f spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x51521a95 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x722fdcac spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x955764ff spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xaf89a9c5 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x369ae9d3 srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x47550664 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x9754b47d srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xa8bc7fa3 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x3994bc98 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x61b3d8a9 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x7a7f202f ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa5c1bb02 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xd50c692f ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xe3c605c1 ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xf9acdc67 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/ssb/ssb 0x044c8995 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x1c3d0447 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0x3c23a187 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x40bbc0a4 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x4a9ac152 ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0x55d94c21 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x66520fea ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x7152fb8d ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7275f48e ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7674ad1f ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x77915820 ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7fd457ab ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8214a22c ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0xa891fdbf __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0xbec5fac4 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xcbc2cb9b ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xd807d518 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xee1b5db5 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xf2204122 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xfb49dbba ssb_clockspeed +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x054d08ac fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0d2ef90b fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x14097041 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1bc6a718 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2d66a84d fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x326a977b fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x347c6110 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x39616144 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x3f32f5d1 fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5023d5d5 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5a142341 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e7b7bef fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x75aec9ba fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x75b5ba47 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7df40830 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8525d859 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x900e55ff fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9d71ec79 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9f69894d fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xa8047d4b fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb35c1a45 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbf4add4b fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd087de94 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xeecbfef5 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x4772ce1b fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xa21c67cb fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x1ba02884 adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x21b6547d hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x275dec2c hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x7a7720f9 hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xa7c6381c hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x774c7b49 ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xb3f19cbe ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x5721aae9 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0xf000efdd most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x09c990ee rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c18db04 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1182451e rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1392e48e rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x18b04217 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1b2ecc5e rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1bae0839 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e423253 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ef708e0 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2195c499 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x27a4f34a rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f3a4079 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x36a78238 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4abf59cb rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4add9ea3 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4f7150a9 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5281ad5a Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x54153ad0 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5477fdb8 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x570c02f4 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5d9e834d rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x66062fd7 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6beed66d rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x70a7ac68 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x71558c8e rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x73452d1e rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x82bfb311 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8506e74a rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x863d0c8a rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8e08e52e rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x95ce20a9 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x964bb29f rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9969b737 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9be62b61 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9d2a35a2 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa3daabb5 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb252956a rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc3ca60b3 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc71fbc4d rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcd11daef rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd1370559 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe2d92a8e rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe4afe69b rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xeb357b5d rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xebdb3da5 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf78f3b09 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7edfc61 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe30c404 rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfe52036c rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xff121c51 rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0108177a ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x01efb550 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x028b6ff4 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x071be363 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0a03d417 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0dc9bafa ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0e265790 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x15a67289 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1899d8a0 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19d1c056 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x20ae5d30 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x21de1c02 DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2287d9ec ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x274db49d ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x30f24d09 ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x372d5d7d ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x43c4c6e8 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x444821c2 IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4d1e52b1 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x50be5e1b ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x562035b3 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c667aa8 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61440468 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x636d3301 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x722d2a80 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x887df7a3 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8fb15516 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x92d884cc ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x96711a47 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x989d45e9 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9b008c82 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa0c7ca8c ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa600f2b7 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa67ba833 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb44635a6 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9160738 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbb0e63e2 ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbeedfb1b SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbfdc55d9 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc4375065 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc88e91bd ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xcb4750ac Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd06f1b68 ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd7d6b1da ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd9cbbec2 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xddabb6f3 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe5f07cc7 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe74f5174 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe7f80e27 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb7bb78d ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf7146242 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf77d1d76 ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf96a12f9 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x027082a5 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1688455d iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x18f21645 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x1e9a76fb iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2c381357 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x44a765dd iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x67b49d9d iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6a24857f iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6aeadc57 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c586ee3 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8392816b iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8c217e57 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8d7bc92b iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9404014d iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x96f0c8d7 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac71015f iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb87495e8 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8812fc1 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb8d0741c iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc2ec10a iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc4b7c4dc iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc8c7fa56 iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2dcbcb2 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd428f80e iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe34356ec iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf5318173 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf7448fa3 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf75fdbb4 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x034e44e7 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x04d6214a transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x05e28b6e target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x12a9344e transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x1caeb54e spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x23d72457 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x26178ff4 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x268ffeeb target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x26b2a0bc sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x28a9f9cb target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x2a26bb3a target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x2c857ee7 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x2d5535c6 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2e90c168 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x34919dfb spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x395b598b transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x3aa1e254 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x3bc73fe4 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x3c929c4e core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x4584682b sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x46df87e0 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x49db2efb target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x520a311d transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x544cc50e target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x55130c73 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x55e39d45 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x5792a07c transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x5f911fd1 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x6673b750 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x74eb39a0 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a02dd84 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7ade38a9 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x7cac83aa target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e4ae1d5 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x7f85870e transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x8036f631 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x816e1f1b target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8d677c85 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x92ab4ef2 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x94bc8491 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x97d818ed core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3c06892 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xa3e04b4c target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xad6c2418 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xb11fe4ab target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xb1887272 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb23d07d5 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xbddd47e7 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe7292e7 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xc0bba7f6 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6622a65 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0xca787152 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xcc1fdd60 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xce38ce22 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xd07bdf6b target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6c7832c transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0xd793a577 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xd9ef4d02 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0xde234248 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xdfc53d51 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xe425a250 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe48c6556 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xe8ed947c target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf12e39ac transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1bf9f1b core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf2eaf5d4 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6ab8e6b transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xf791c15a target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xff0e1871 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x8ba0bcdc 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 0xfaedbcbc sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2018a803 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4165043e usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x464b4fe7 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4882e2e2 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4ea5e607 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6211928e usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8fcb1fe5 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x92681b62 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xb25fc427 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xc4a1379e usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xca09fe9c usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xcb98aa74 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x8a5d9e50 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x8eff8a4b 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 0x180f21e2 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x1929216f lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x938b933e devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xd452722e 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 0x2b7ec807 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x47cc6317 svga_tilecopy +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x54321bbf svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x609624f7 svga_tileblit +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6b36a3ed 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 0xd1429fca svga_wseq_multi +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xd22ca511 svga_set_default_atc_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xe1d4f9cd svga_settile +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 0xf25abfee svga_tilecursor +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 0xdbfc49dc cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x1621f180 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x45c63ae7 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xaf596db0 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6126a914 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd4d368fd matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd68eac44 matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xf55fd9dd DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0xb1a78c08 matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0xac5517bc matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x55192ae2 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x7a791893 matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xefd02049 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf4b5c3b2 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x276e41ad matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0xec4e6740 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x35c7227e matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x95ab95f3 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xc935f7ca matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf2b1a6b2 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xf7e9a453 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x0c5dd123 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 0x17b4b4b8 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5a845844 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xa2ca229e w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xda965584 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa839ab26 w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xbe7ea497 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x7e64baeb w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x887401b0 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x276381de w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0x2b0397f0 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x53b5f6f5 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xc43b634a w1_register_family +EXPORT_SYMBOL fs/configfs/configfs 0x037a936a configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x3cd20fe0 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x44ba9c4c configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x682e570e config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x6943e6d9 config_item_set_name +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 0xa60fa82d configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xc32a8e9c configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xe13c5ac8 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0xe48ab989 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xe5999535 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xeafa8672 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xef2fdecb configfs_unregister_default_group +EXPORT_SYMBOL fs/exofs/libore 0x03159ad0 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x24d5d774 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 0x592c7dfb ore_create +EXPORT_SYMBOL fs/exofs/libore 0x743f9a5d ore_write +EXPORT_SYMBOL fs/exofs/libore 0x77b03b05 ore_read +EXPORT_SYMBOL fs/exofs/libore 0x81478a78 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x8e4b910f ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xce701745 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xddd43c8b ore_remove +EXPORT_SYMBOL fs/exofs/libore 0xe5504434 ore_get_io_state +EXPORT_SYMBOL fs/fscache/fscache 0x03b08782 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0x0fca2170 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x19f19e7c __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x1bc41c8b __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1c5e45fa fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x1d447278 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x20c30576 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x21e16cf9 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x337ac8c5 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x33bb64ff fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x3f62524a __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x535e04fd __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x53735563 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x53d448ea __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x5a19c87f __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x5a75ce79 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5d0e1752 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x622de530 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x6419a14a fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x6c1f6250 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x6f0aa1a2 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x73992bae fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7659e8d0 fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x7d7bf0a9 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x8d062cac __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x9d079815 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0xa700aec8 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb2f31b02 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xb721d1d8 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xb85b0048 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xbbe6ed6e fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xc1feb41d __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcca8f09f __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0xdacd91be __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe22fe18f fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xe3fefac3 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe4bced62 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xf2fa98c6 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xf70c61b8 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x122b57a4 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x53fb77ce qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x6829c6e4 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xac08b1d5 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xf55d1029 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 0x3a7bf3d0 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 0x7af77255 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 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 0x583e1e58 lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0xc2a199c6 lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0xd8e891cb lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x3d2eabbc register_8022_client +EXPORT_SYMBOL net/802/p8022 0x7e39f316 unregister_8022_client +EXPORT_SYMBOL net/802/p8023 0x2b56e47d destroy_8023_client +EXPORT_SYMBOL net/802/p8023 0x93455859 make_8023_client +EXPORT_SYMBOL net/802/psnap 0x3a1e488e unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x629c01e4 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x0ec4d8ce p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x22c98ded v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x2482fdd4 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x2e8d0c2f v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x3551b911 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x36fe81d3 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x3a00b844 p9_client_lock_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 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x594cb2a9 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x680acb6e p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x6d864197 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0x6e478ab3 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x71bbb318 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0x73f9116b p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x7ae53111 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x7d50a89f p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x8abeca63 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x8b66b552 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x8bdc05e1 p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0x972a8fdd p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x9738bf3e p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0x9bac27ea p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x9c68c9e3 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa0803289 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xa13dabbd p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xabb31089 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xae9dafc4 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0xbc75c772 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xbfcf0d05 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc6635dc1 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xd93d5ca0 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xdae9b6c5 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0xdf1f16bd v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe65756f9 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0xe9c7ace0 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xeba96804 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xeed58034 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xf23ad78a p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf41c66f6 p9_client_clunk +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 0x0f47b898 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x6bc3fb7d alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x85271936 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xdb6a3215 atalk_find_dev_addr +EXPORT_SYMBOL net/atm/atm 0x07919ed9 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x1014f69e register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x1a22135a atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x1b6a0783 vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x273bf3b6 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x2cc2d52d vcc_hash +EXPORT_SYMBOL net/atm/atm 0x41446536 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x4443d399 atm_proc_root +EXPORT_SYMBOL net/atm/atm 0x6ccba75a atm_charge +EXPORT_SYMBOL net/atm/atm 0x6e4991e3 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x7fbeca59 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x8b707900 atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa0b91cc8 deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xa3e7cda8 vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xc546d353 atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/ax25/ax25 0x1ab0f8b9 ax25_listen_release +EXPORT_SYMBOL net/ax25/ax25 0x2284ea09 ax25_listen_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 0x565d1bbb ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x686b81b4 ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x7091c0b3 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x78ba9b4a ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0x9729fab0 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xafb7d3b4 ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/bluetooth/bluetooth 0x03218e59 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x062e3b49 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x07104f36 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x08f155ed l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x096e46c9 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x117a0af3 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x123915b5 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1cd5b9b2 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1f64284a l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1fa6db6f bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x21016798 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22c2803b bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x283c333c bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2b768f13 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x37213f5c hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3eb16e3f hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x463a1a92 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x587a7d77 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x59f193dc hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6017509b hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6967f98d bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x713ca02c bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x79a97745 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8123a5bc bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x85edea3c __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x946a941d l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0x99d78b9a hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa573f0d8 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7f0ac85 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xadd63139 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0df38e3 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb66bb44f bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbbe7928e bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb144101 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xccc4906a bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcdbaf94e hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdd86e39e hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe1c9e344 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe929482b hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5b9f0cb hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf64376dc hci_resume_dev +EXPORT_SYMBOL net/bridge/bridge 0xa8f0808e br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x483c6abb ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x8323263e ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xfe955751 ebt_unregister_table +EXPORT_SYMBOL net/caif/caif 0x03cbab24 caif_connect_client +EXPORT_SYMBOL net/caif/caif 0x07625b09 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 0x3ac2baff get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0x4a237e57 cfpkt_tonative +EXPORT_SYMBOL net/caif/caif 0x66affd53 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/caif/caif 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x6e5fc1ce 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/can/can 0x12079cdd can_proto_register +EXPORT_SYMBOL net/can/can 0x2027c00d can_send +EXPORT_SYMBOL net/can/can 0x587da555 can_proto_unregister +EXPORT_SYMBOL net/can/can 0xc7fa1ef0 can_rx_unregister +EXPORT_SYMBOL net/can/can 0xd2880edb can_ioctl +EXPORT_SYMBOL net/can/can 0xeb21ee91 can_rx_register +EXPORT_SYMBOL net/ceph/libceph 0x074e8e98 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x08047eec ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x08c833dd ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0f0be226 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x13d72f02 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x16d166ab ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x1ace9dd7 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x1b4e5c6a ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1c72efc0 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x20aa1291 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x21c60751 ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x22083ccc ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x24d897df ceph_pagelist_release +EXPORT_SYMBOL net/ceph/libceph 0x24e9aeb2 osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0x24ec799f ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x2aed31c4 ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x2cd56db7 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x36f664d2 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x37461980 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c61c03a ceph_osdc_get_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 0x40f74d12 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x419cb09b ceph_pagelist_truncate +EXPORT_SYMBOL net/ceph/libceph 0x41fac92a ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x4203e077 ceph_copy_from_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 0x50fc0672 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x51b85352 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x52609ccd ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x545a93e4 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x58d92012 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x5ad8fc9c ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5f217315 ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x60238c6b ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x60d79fa5 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x644349a6 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x65f16a3e ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x69b601ce ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6eee9bb2 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x73a0839b ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x7850da0f ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0x79084d30 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x7962000c ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x84bec1e3 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x887c892c ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x8938626e ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x8c15417b ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x9774164a ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a129dcc osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9ee11167 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa0c41bfc ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0xa2465665 ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xa26f47da ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa77cdafe osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xab7c299d ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae6770ce ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xaf4e8e77 osd_req_op_alloc_hint_init +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 0xb6d49c79 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xb7a20637 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xb882b449 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xbaf17930 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc4ba935c ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc77592fb osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xc8dcc3ff osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xc9617a66 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xce1d032c ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xce5a9ae5 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd6ee6a74 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd8796496 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xda7f43e0 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xdcd9c989 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xdd4ceabb ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdff5b89b ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xe2d0c97d ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe91df4f8 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xeb14be2c ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xeb2ebf7e ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xefbdf309 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xf0b9cf51 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xf28e02b5 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf444ee04 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xf54ea353 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xf81bca62 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xfb69546b ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xff37cfbd ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xffcf367f ceph_get_direct_page_vector +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x022fd500 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xcc7bf6f3 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x089e07fc wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0x305cc192 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x40cfd604 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8ecb137e wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x99174808 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf89d0c0e wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x5f6536d5 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x885afffb fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3082259f ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x406e7ddb ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xa96b623f ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb5e64733 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc051de2c ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xd357353e ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x644a7353 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xb77fc469 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xd708c149 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x28cc7d27 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x63d903a8 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6b485b01 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x720fbc48 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0x91a3ce5a xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x4368dc23 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x0514db35 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x06116f2c ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6d827d2a ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xe67c5f5b ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x09e14138 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xae42adac ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc970b611 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xc06baa84 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xeb5983a2 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xc382a9ae xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xe1d02cfc xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x10b6a784 ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x179d9cfb ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x385af162 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x54c625ac ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x673869a5 ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x735a0cfd ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x7be5c8ad ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xd0fe40b0 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 0x14f55074 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x245ad574 iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x28f1b570 irlap_close +EXPORT_SYMBOL net/irda/irda 0x31e40e58 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0x33cbe2c6 proc_irda +EXPORT_SYMBOL net/irda/irda 0x3e56064f hashbin_new +EXPORT_SYMBOL net/irda/irda 0x40baf2a1 irlmp_connect_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 0x5110c5be iriap_close +EXPORT_SYMBOL net/irda/irda 0x52cd2a3e irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x5699e4a8 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x5c77a91c irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x635899a5 async_unwrap_char +EXPORT_SYMBOL net/irda/irda 0x64a82ef4 irttp_close_tsap +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 0x7f9c8046 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x86ac3313 irttp_connect_request +EXPORT_SYMBOL net/irda/irda 0x897831ef irlap_open +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x926178b8 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x92e90fe6 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xa167aace irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xa2ab28a7 irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xa302b196 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0xa6658ad0 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +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 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xcecc6069 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xd2108314 hashbin_insert +EXPORT_SYMBOL net/irda/irda 0xd6deeaae irda_setup_dma +EXPORT_SYMBOL net/irda/irda 0xdcc291ac alloc_irdadev +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 0xeb83ef49 irda_notify_init +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 0xfc6de38b iriap_open +EXPORT_SYMBOL net/irda/irda 0xfe2d1d76 irlmp_connect_response +EXPORT_SYMBOL net/l2tp/l2tp_core 0x26675b16 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xea29b0bc l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x24078ec6 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x2427dbc4 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x57a842e7 lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0x69211516 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x82ead2ff lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xaaef2cb1 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xe0226358 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xec475de1 lapb_unregister +EXPORT_SYMBOL net/llc/llc 0x1d17c7e5 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x346f4d35 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3ec8036d llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x88f0501b llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xbb7b940a llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xc3d7f7ee llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xfadeaa2e llc_sap_close +EXPORT_SYMBOL net/mac80211/mac80211 0x0658301c ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0c9e3ec6 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x0ea23bda ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1187388c ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x1406b90f ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x145cac72 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x19d4b0a7 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x21a88beb ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x21e581e6 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x22b3736d ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x252738cd ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x284fd185 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x2d06e429 ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3c6d02f7 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x4852cf12 ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x4a630df0 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4e3dbe39 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4e5d6be9 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x4fc516c3 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x518fd10c ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x51aaa49c __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x5ba169dc ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x5e16eab6 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x60c9d1f7 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x62b6ada2 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x630ba920 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x6714b219 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x67e6bc80 ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x6bab1e46 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x6c19c826 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x6d392cf1 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x6fbf103a ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x711ec0dc ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x719e8905 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x72ff5184 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0x73e76173 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x7443eac2 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x762842eb ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x76680196 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x78c4205b ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x7a47e662 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x7cb0c192 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x7cc17c23 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x7f16d167 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8274bba9 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x8bea6bb3 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x8d172885 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x8f617358 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x9248ca87 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x949d897a ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x95a7a895 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x963c220e ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x9c3d854b ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0xa0a5687a ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xa1d2648c ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xa3be40f4 ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xa4c51962 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xa71ee41c ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xa7901b0e __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa8f67815 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa9e9b03c ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xace60b09 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xadab7256 __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xb382668c ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb79400fc ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0xc6340c44 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xc6d3d9ce ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0xcc035555 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xcc653fcc ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0xcfdfe7a9 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xd5aad6c1 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xd896b042 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xdf705932 ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe024559b ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xe90a6b43 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xef650607 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xf913c587 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xf9b7e241 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac802154/mac802154 0x11d6e3db ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x2c698a48 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x62b4c043 ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x9d9d6dd0 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xa9722444 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xbcf9fbe1 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xd0d0c4f9 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd4b2f48d ieee802154_unregister_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x15d0a046 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x20e6b5b5 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x21ea6b03 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x257887f2 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x52fa4f73 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x688427eb ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x74e779e7 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7a0ffcda register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x840fc5c4 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb37103d1 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb9bc0972 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbf0cf8cf ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd0aedc94 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf613f13c ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x83e0c4a6 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x94593d60 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xe7e17f58 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x2ff038dd nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x42164c87 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x5a45b3ef nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x62dfd602 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x79cc9208 nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x8617be50 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/x_tables 0x0202e907 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x0c65c0bd xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x220c0a4a xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x4ba2cf3f xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4f8c65c6 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x56f949e7 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x732f6341 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7ab26ea1 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0xa25fc115 xt_compat_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xa31693df xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0xa48b3a97 xt_free_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0xb0b5c7f4 xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/nfc/hci/hci 0x0a7e0029 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x10d13df4 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x1fcd3b38 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x319cc164 nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x3822bc75 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x46288378 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x4651d36a nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x537dc85a nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x59f0a2b7 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x68d46083 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x847051a6 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0x858f0a45 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x8c219b78 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x98b0e31f nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x99c8c706 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x99f6bc87 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x9f14727b nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xcad9396d nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xd9b77f3b nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xf34f9ab0 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xfa54a69d nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x1eeaf5f0 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x2bca9160 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x2ede64d0 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x2fef6dce nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x3c9dd695 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x3d189782 nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x4dc2b66f nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x52b31bef nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x54d37476 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x6c6c55b1 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7600c547 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x7cf2050e nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x7fc2edaf nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x87eb7d84 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0x8f9c374c nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xa561d8d0 nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0xb4f9961a nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbdd58b87 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0xc587a335 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0xc7485c02 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xd2ef74f5 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xd8e2991d nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe3d32123 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xe68ae393 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0xe85fe677 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xea3f81cc nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xf5bdf8db nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0xfda0407d nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nfc 0x0071fb1f nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x07adda6f nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x14f27c20 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x18a17551 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x4a2fd5ab nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x51afb312 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x524e105d nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0x55b9b163 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x59074ae0 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x5ae3744b nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x65b94875 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x76d0d629 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x894eb4d7 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x8c1a9428 nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0xa47b8bfc nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xa4931734 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0xa8b76965 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0xbb27d2c6 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xc5d9d506 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0xc65f4d2a nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xcb7e3f5d nfc_class +EXPORT_SYMBOL net/nfc/nfc 0xd108cf8d nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0xd5359cc0 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xd808f663 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc_digital 0x2298402c nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x31a43a57 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x724c39cd nfc_digital_free_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xc5a456eb nfc_digital_unregister_device +EXPORT_SYMBOL net/phonet/phonet 0x0207a4d2 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x158a4bc9 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x166f70cf pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x316486ed phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x3d67f7cc phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x5e346f12 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0x8bf56284 phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xb47133c6 pn_sock_hash +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x1ab9b49a rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x2acab3ec key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x336e064f rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4f604268 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x5d338144 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x60b2cdde rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x62c0a12d rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x72d2e831 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x7d3b3572 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xad1c0d3a rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xadbc7eba rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaf6cdd8d rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbe82442c rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc0597011 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc58941c0 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/sctp/sctp 0xd501cc9f sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x18790f6f gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x39ce96cf gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x56d66957 gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa54a6dce xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa91f9480 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc34c6d48 xdr_truncate_encode +EXPORT_SYMBOL net/wimax/wimax 0x5ab9c12f wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x7ee2b486 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x0535081d regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x065c68c9 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x07934df7 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x08aa8b59 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0b0ac712 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x0c89a5e6 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x0d082b72 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x0ea7dc53 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x15597645 __cfg80211_alloc_reply_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 0x1af15ebf cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0x1d6dc5cd cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1e5b49c9 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x1f20f424 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0x204778e6 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0x24485b0d cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x25a9d47b cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x2633ae58 __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x2a490e2b cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x2e36c29c __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x2f65cfc5 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x3023c4de cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x30cccc7f cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x34b992c4 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x356ae9f2 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0x37f48eb3 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x3b37b31c cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x3c0bfe63 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x3f8ba557 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x40e5905f wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x43ade38b ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4e24c796 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x4ec52e27 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x51bec467 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x57e5e1b9 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x61a6263f cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x62dfe228 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x75d642ec regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x7684ebc1 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x784e5958 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x79e537aa wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x7eda41e4 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x826e7495 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x853e12c7 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x8831a64c cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x8842ddf7 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x88c9f8d6 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8bdc5f3f ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8c4835cc cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x8f0271d1 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0x910b6ebd cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x9216b03d cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0xa02719e6 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 0xa29c2c94 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xa513f7da cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0xa979040b cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xaaf902f4 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xab7d3643 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0xad79acad cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xadae4743 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0xaefc9596 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0xb079c081 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xb4a9c1d1 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0xb904c603 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xc59d0a2d wiphy_rfkill_start_polling +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 0xcb7d4e15 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0xcbf3239c cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xccbad3fb wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd5be028b cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xe279ba59 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0xe27cc5f5 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xe64fe8c8 cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xe732841a cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xe9abe84b cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0xea6efea6 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xede8dcb2 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf3406bd6 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xf60e5ff1 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xf79ef2b6 ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xf8eb57cd cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xfc2b7f42 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0xfc4df246 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xfef04362 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/lib80211 0x02fefe03 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x5660fc05 lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x570c2373 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x73194074 lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xe2aaa92a lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xe51ea55d lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x9af7b368 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x6014ebcc 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 0x1bc97c35 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 0x5b9b86c7 snd_seq_kernel_client_enqueue_blocking +EXPORT_SYMBOL sound/core/seq/snd-seq 0x6a4264b6 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 0xc247776d 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 0x331fccbc 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 0xc53fbfaa snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x054efd88 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x07ae0804 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x0f01b380 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0x189b7543 snd_card_file_remove +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 0x19b5eb57 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x2942f29d snd_info_register +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x2ea86511 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x2ef5dc02 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x390097ac snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x397677cd snd_card_new +EXPORT_SYMBOL sound/core/snd 0x41af9270 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x53d17a9d snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x56618d5d snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x56788dc5 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0x590375c2 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x5a77116c snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x60e14dbf snd_device_free +EXPORT_SYMBOL sound/core/snd 0x63ce879f snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x6656271e snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7191937a snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x73e9f017 snd_cards +EXPORT_SYMBOL sound/core/snd 0x78f6f394 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x79a15882 snd_device_register +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 0x926befc8 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x93b108da snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x976191e4 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x9e685d2a snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9edb9b97 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xa58124b8 snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0xa8099df0 snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xa97e7b43 snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xadcce5a1 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xb113af66 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbf4116f6 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xc0546d2d snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0xc5214a8c snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xcad745d6 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xd8ce2961 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xd9beae5e snd_device_new +EXPORT_SYMBOL sound/core/snd 0xd9cfd234 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xdaab5d44 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xdc256252 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xe164d7dd snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xe3da3ad2 snd_component_add +EXPORT_SYMBOL sound/core/snd 0xeb7bcede snd_card_register +EXPORT_SYMBOL sound/core/snd 0xf3b26114 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0xf3de274d snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xf5f49557 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0xc44f1bbe snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02a28bc4 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x04cda566 snd_interval_refine +EXPORT_SYMBOL sound/core/snd-pcm 0x050c2292 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x06b310c9 snd_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x0838bd7f snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x0d908177 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x0dfbd3d0 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1d9a6c6d snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x250dd778 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x2c816937 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x316aa387 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x31832991 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x31ef1e79 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x348f7d23 snd_pcm_lib_get_vmalloc_page +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 0x3fe493dd snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x41eb4a01 snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0x44378d62 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0x45f8b40e snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x470b9ce4 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x493a734c 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 0x58005642 snd_pcm_lib_free_pages +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 0x5e9af3e3 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x5f6237b6 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x630f34a8 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x650f8603 snd_pcm_format_silence_64 +EXPORT_SYMBOL sound/core/snd-pcm 0x686e156c snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x68a24153 snd_pcm_format_physical_width +EXPORT_SYMBOL sound/core/snd-pcm 0x6bed8fc6 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x90d575a6 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x94d5b6aa snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0x974cb0d6 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x9a131ee7 snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xab130cef snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xac88efa5 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xba10a802 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xc54afce4 snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0xc7e25bd6 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0xc9e459a7 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xd0420258 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xd05951ff snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xdca9c9a2 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xdd9bbe62 snd_dma_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xddcfb4f5 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe545d83f snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe6065c84 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe6d01b63 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0xeb809522 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0xf28dea26 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xf61b6b5c snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0xf8e24b1d snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0109b53a snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0x091d1a8a snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0e389b3a snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x19d59ded __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2dbf54ed __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x363644f4 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4b8ef5fa snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5818af56 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x5e7a3403 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6fa1140e snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x72bf975d snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7a314422 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7d8de68a snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa4bc5bc1 snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xa70a7e1b snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc0f4e9d1 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe52ed2f9 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xeb572c07 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xec1650d2 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-timer 0x2113c4c4 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0x23ae8afc snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x3618b7dd snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x58e0e115 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x709be58d snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x72989b8f snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0x7725d1d1 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x8a31ddd8 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0x91cdac21 snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0xb7e47e11 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xbe211e56 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0xe09d1dd3 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xf9d400d6 snd_timer_global_free +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 0xe4ad29c2 snd_mpu401_uart_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x038773ec snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0964d92e snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x171dd737 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3102e395 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x500fd162 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x6d74ea96 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xaa0f87e5 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb0917cae snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc902f786 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x215c1629 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 0x27118f14 snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3d5b9fac snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x530f476d snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x6fe9db83 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x75214805 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xa24480aa snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdea15c67 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xfe2dd167 snd_vx_dsp_load +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x002e1c1d fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x069b3f5a iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0fba1e06 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2291c72b fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x24169936 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x2c928546 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3098f89d avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3a60039d amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3c6df5d5 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3e562dba fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x404f3b20 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x535eab0e amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x54fc4730 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x68789f97 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6906ae61 cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6bcf894e avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6bfbdb66 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x76cf77b3 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x850f2dd2 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9510fe0c cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x98d1abc0 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa48c5d49 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xaca1b90d amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb1ef3498 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5e45a9b amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc7f6f8ce snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf522fcb amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd3be232d cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe47ba511 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe5a7a0ed snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf636b734 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfa67bc7f amdtp_stream_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x5577e96f snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0xb0984340 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2b3ea035 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x4918f768 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x5822b1ab snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x64f23e14 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x6e3cc012 snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7697ed58 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x7dd4827d snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xbafcd7f1 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x2360222d snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x35ccf144 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x684e2c45 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x802c8199 snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xc1386edc snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xf0aa2bb1 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x230731fe snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x26fb7bac snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x6e6a4d9a snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x81b82691 snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x7fe7c04b snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xdb1520c2 snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x0bd5e5d0 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x72f5f147 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x82d834da snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x8955da2d snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf29b44a7 snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf348682e snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x09a62f6c snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x12d625d0 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2ffbc1d9 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7fce3b78 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xaa93fe19 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xe7f9b749 snd_i2c_readbytes +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3659a874 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x566ee395 snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x5d33ad51 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6047d32e snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x6e477307 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x84266bc0 snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x99a3a380 snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9d3ce5d2 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xb0eea8ba snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfb2559ce snd_sbdsp_get_byte +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x04d411a7 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1197293a snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1c96bdd4 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x24563575 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x6b62b0fe snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8970ceb6 snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8c26d74f snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x96c3536f snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xa30beefa snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb05fc747 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xb9238a02 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcab42e06 snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xdf94ee5f snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe2357d26 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe39662ad snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xe86b0375 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xec135fc0 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x03c473c5 snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3c15145a snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x3e528b1b snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x6ca4f0a4 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7303ee7d snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x732116bd snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xae722c68 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xc0ae91ee snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xe5187676 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x3276d4e5 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xaf3f98c6 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xb92852d4 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x055d18f4 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0d6d85bf oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3172bd22 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x351f2445 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x35f260d6 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3bb283a8 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x52875b88 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x601c2b8a oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6378c1ae oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7bd3a4f0 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x80efbdf7 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x82593288 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8b7a0ec5 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa767ad87 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xad296931 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb94365b9 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xc6852253 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd12c9f79 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xdfd88d2b oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfa25daa4 oxygen_write16 +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1093eac4 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1bf31680 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x58c890c5 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xcedeee3b snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf7a5e068 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x632e3f9f tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x78ac0510 tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0x7afe2e0f snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x03879903 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x41b16d3c register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x6d8f99cb register_sound_special +EXPORT_SYMBOL sound/soundcore 0x72d52ebd sound_class +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8ae15581 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xf84ee6d4 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x1e421866 snd_emux_register +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x380c9c32 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x41262ab4 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 0x8d425b6d snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x98e6228e snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc5531f19 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 0x63dad405 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 0x004c2c98 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x00563895 clk_add_alias +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0080ea32 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00a82a46 netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x00ae3ebd kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x00d7bf47 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00db06ca pci_domain_nr +EXPORT_SYMBOL vmlinux 0x00e4d197 __frontswap_store +EXPORT_SYMBOL vmlinux 0x00f34eb3 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x0106f996 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x010b8634 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x01139ffc max_mapnr +EXPORT_SYMBOL vmlinux 0x011a5ae0 scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x0144d59d dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x014e4b33 read_code +EXPORT_SYMBOL vmlinux 0x0158dc39 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01726a93 phy_detach +EXPORT_SYMBOL vmlinux 0x019839f0 udp_add_offload +EXPORT_SYMBOL vmlinux 0x019ba6c9 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x01a83dc9 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x01a9154c devm_gpio_free +EXPORT_SYMBOL vmlinux 0x01c00c32 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x01c74e0b __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x01d919e6 simple_unlink +EXPORT_SYMBOL vmlinux 0x01ebc5eb netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x02489696 bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x024b4f1b genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x02507b82 d_rehash +EXPORT_SYMBOL vmlinux 0x025e1559 proc_mkdir +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x027207e5 xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0293e8bc __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02f56a57 km_policy_notify +EXPORT_SYMBOL vmlinux 0x02f6d0d8 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x032df960 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x0333d5d5 serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x033a1c5e compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x0358527e user_revoke +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036b2ef5 dev_change_carrier +EXPORT_SYMBOL vmlinux 0x036f9adb nvm_end_io +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x039377bb __kernel_write +EXPORT_SYMBOL vmlinux 0x03be4e39 noop_qdisc +EXPORT_SYMBOL vmlinux 0x03ce58b4 __blk_run_queue +EXPORT_SYMBOL vmlinux 0x03daaaf6 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x03de5ef7 dquot_get_state +EXPORT_SYMBOL vmlinux 0x03f01754 kill_bdev +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x040365de get_user_pages +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x04180f40 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x041a7f66 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0426ff54 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x0439039b scsi_host_put +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04524cf4 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x04580c67 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x04605de1 may_umount +EXPORT_SYMBOL vmlinux 0x04630c31 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x047c6936 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x049200e0 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x04c1a7de agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x04c34bad padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x04c78a80 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x04cbac0c kmem_cache_size +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x05096c56 __pagevec_release +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x05409959 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x0564c0c8 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x05853280 get_fs_type +EXPORT_SYMBOL vmlinux 0x058f2ba8 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05c05dc7 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x05ce18af import_iovec +EXPORT_SYMBOL vmlinux 0x05d38ebc param_get_int +EXPORT_SYMBOL vmlinux 0x05e2202e give_up_console +EXPORT_SYMBOL vmlinux 0x060456bd inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x06120016 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064a2366 inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x064a9828 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x068c500d __netif_schedule +EXPORT_SYMBOL vmlinux 0x069fb88b kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x06bc9949 proc_create_data +EXPORT_SYMBOL vmlinux 0x06fba8b6 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072efe9e __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0747fdac get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x07576e8a serio_open +EXPORT_SYMBOL vmlinux 0x07655660 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0x0768a2ed textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0777e781 generic_make_request +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 0x081251f5 ata_link_printk +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x082d7a07 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x086d8cdd irq_stat +EXPORT_SYMBOL vmlinux 0x0877da46 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x0883666e may_umount_tree +EXPORT_SYMBOL vmlinux 0x08928736 vga_con +EXPORT_SYMBOL vmlinux 0x08b5ac5e blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x08c655a1 rt6_lookup +EXPORT_SYMBOL vmlinux 0x08c82cec twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x08f488d0 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x08fa9c73 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x09069fa4 inet6_protos +EXPORT_SYMBOL vmlinux 0x09173669 __lock_buffer +EXPORT_SYMBOL vmlinux 0x091ad14e tcp_prequeue +EXPORT_SYMBOL vmlinux 0x091eb37e pci_scan_single_device +EXPORT_SYMBOL vmlinux 0x09334b75 seq_dentry +EXPORT_SYMBOL vmlinux 0x09381526 truncate_setsize +EXPORT_SYMBOL vmlinux 0x094acd9b input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x09595388 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x096a0f3b nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0x09835e6f xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x09889960 get_empty_filp +EXPORT_SYMBOL vmlinux 0x098a6331 tcp_prot +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 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09d65e76 mmc_add_host +EXPORT_SYMBOL vmlinux 0x0a264135 request_firmware +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a4913b0 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a6e0890 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x0a75b1c9 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x0a86fe81 kernel_write +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0acd09f7 giveup_fpu +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad98595 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b1cd385 inode_change_ok +EXPORT_SYMBOL vmlinux 0x0b3ad177 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x0b43ea7f irq_to_desc +EXPORT_SYMBOL vmlinux 0x0b44c13f textsearch_destroy +EXPORT_SYMBOL vmlinux 0x0b512dcf sk_reset_timer +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b86c190 drop_super +EXPORT_SYMBOL vmlinux 0x0ba07ca4 mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x0ba78e1b filemap_map_pages +EXPORT_SYMBOL vmlinux 0x0baa7b63 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd26445 skb_store_bits +EXPORT_SYMBOL vmlinux 0x0bd41811 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0x0bfbcdcd xfrm_input +EXPORT_SYMBOL vmlinux 0x0c0ed7dd inet_release +EXPORT_SYMBOL vmlinux 0x0c213c0a dev_change_flags +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c8ca8b3 cfb_imageblit +EXPORT_SYMBOL vmlinux 0x0c9b4de5 acl_by_type +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cb007a6 dev_printk_emit +EXPORT_SYMBOL vmlinux 0x0cbbdd65 ilookup +EXPORT_SYMBOL vmlinux 0x0cc04714 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x0cee616f __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x0cfd9051 iterate_fd +EXPORT_SYMBOL vmlinux 0x0d1284f4 phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x0d138176 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x0d15c629 ns_capable +EXPORT_SYMBOL vmlinux 0x0d26469c mmc_can_discard +EXPORT_SYMBOL vmlinux 0x0d3258e9 phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x0d362b77 block_read_full_page +EXPORT_SYMBOL vmlinux 0x0d3be36f devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x0d4414a4 proto_unregister +EXPORT_SYMBOL vmlinux 0x0d4f53c4 ppp_input +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d60e64f nf_hook_slow +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dabc63d alloc_buffer_head +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0ddb6a54 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x0dddcc19 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x0de519cc filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x0def0bbd of_phy_find_device +EXPORT_SYMBOL vmlinux 0x0df19e91 dev_addr_add +EXPORT_SYMBOL vmlinux 0x0df39b81 tcp_close +EXPORT_SYMBOL vmlinux 0x0dfcaced do_splice_to +EXPORT_SYMBOL vmlinux 0x0e1b57b2 skb_dequeue +EXPORT_SYMBOL vmlinux 0x0e310cd6 skb_insert +EXPORT_SYMBOL vmlinux 0x0e341a8b blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e6f3c64 __skb_checksum +EXPORT_SYMBOL vmlinux 0x0e759806 eth_validate_addr +EXPORT_SYMBOL vmlinux 0x0e79ebc1 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0ea0ac07 mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x0ea2c9f4 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ef710bb scsi_block_requests +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f0bcd99 input_register_handle +EXPORT_SYMBOL vmlinux 0x0f27b46e compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x0f49ba70 of_mdio_parse_addr +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 0x0f742110 of_get_property +EXPORT_SYMBOL vmlinux 0x0f798595 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f7c3d17 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0x0f81278c zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x0f921759 rwsem_wake +EXPORT_SYMBOL vmlinux 0x0f94934b inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x0f9c3f8f write_cache_pages +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb0a329 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fba93f8 md_integrity_register +EXPORT_SYMBOL vmlinux 0x0fd7bc84 udp_set_csum +EXPORT_SYMBOL vmlinux 0x0fea413c kobject_del +EXPORT_SYMBOL vmlinux 0x0ff3afa9 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x103e7ac7 dev_close +EXPORT_SYMBOL vmlinux 0x104287af dev_uc_sync +EXPORT_SYMBOL vmlinux 0x10736791 bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1086057d bdget +EXPORT_SYMBOL vmlinux 0x108ee893 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x10906f86 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x1093fa0b blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x109f512d bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x10c6429e d_alloc_name +EXPORT_SYMBOL vmlinux 0x10de2776 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10ee5efb init_buffer +EXPORT_SYMBOL vmlinux 0x10fcb1a8 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x11260cd1 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x112dffe8 con_is_bound +EXPORT_SYMBOL vmlinux 0x11603ad7 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116e3940 phy_driver_register +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x118d9796 neigh_for_each +EXPORT_SYMBOL vmlinux 0x11905dd2 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11a0b1e6 seq_lseek +EXPORT_SYMBOL vmlinux 0x11d6105e phy_device_free +EXPORT_SYMBOL vmlinux 0x11e0990c sync_filesystem +EXPORT_SYMBOL vmlinux 0x11edcff3 mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x11f7ed4c hex_to_bin +EXPORT_SYMBOL vmlinux 0x120b336a __rb_insert_augmented +EXPORT_SYMBOL vmlinux 0x120fc6b1 kstrdup_const +EXPORT_SYMBOL vmlinux 0x1216f337 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x12516781 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x1272429a kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x1276b3da generic_update_time +EXPORT_SYMBOL vmlinux 0x129668ca get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b0fcf6 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x12ba167f input_inject_event +EXPORT_SYMBOL vmlinux 0x12cbf4cf pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x12cc7889 __inet_hash +EXPORT_SYMBOL vmlinux 0x12ce7b61 dev_get_flags +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e89a34 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x12fb3916 tcf_em_tree_validate +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 0x133ea497 block_write_end +EXPORT_SYMBOL vmlinux 0x1344f7bf make_kgid +EXPORT_SYMBOL vmlinux 0x13562cbd pci_pme_active +EXPORT_SYMBOL vmlinux 0x135a90fb unlink_framebuffer +EXPORT_SYMBOL vmlinux 0x1375d0c1 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x13a49be3 paca +EXPORT_SYMBOL vmlinux 0x13b8e0fb scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x13b900ca skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x13b9a143 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x13cf734b bdi_init +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13ebcd59 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x13f0c30b of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x13ffdf45 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x13fff85d inet_listen +EXPORT_SYMBOL vmlinux 0x14068e23 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x145129c9 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0x1472952d pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x148a90fb pipe_lock +EXPORT_SYMBOL vmlinux 0x148b8542 max8998_read_reg +EXPORT_SYMBOL vmlinux 0x14994e7d posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x14a2a56f sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x14bb66eb phy_attach +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14d51279 get_disk +EXPORT_SYMBOL vmlinux 0x14e02b23 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x14f43e2b nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x14f96041 uart_register_driver +EXPORT_SYMBOL vmlinux 0x14fa0c45 mount_pseudo +EXPORT_SYMBOL vmlinux 0x150b9e1d genphy_resume +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1557b5d9 tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x155b95d0 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x15700649 kernel_connect +EXPORT_SYMBOL vmlinux 0x1573af7c shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x158a960a blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x158b572d ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15bbf613 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15e11933 dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x15f19da4 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x16016ec6 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x16177728 devfreq_add_device +EXPORT_SYMBOL vmlinux 0x1629ad35 get_io_context +EXPORT_SYMBOL vmlinux 0x1633acb0 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x165fb458 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x16662640 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x167084ca mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x167fcfc7 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x16982c27 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x16a369d6 __break_lease +EXPORT_SYMBOL vmlinux 0x16b871f9 iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x16e0d8e0 key_revoke +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16ef1f70 inet6_del_offload +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x174d8d3e skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x174f1acb blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x178c1192 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0x1790ffd3 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17a44ffb mount_subtree +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b2bb44 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x17d7eaa9 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f5c7ed security_inode_init_security +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182ee63c lock_sock_nested +EXPORT_SYMBOL vmlinux 0x1835bc99 inet_frag_find +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x185e78bc mmc_register_driver +EXPORT_SYMBOL vmlinux 0x18610756 skb_put +EXPORT_SYMBOL vmlinux 0x1862c5be tcp_read_sock +EXPORT_SYMBOL vmlinux 0x186b3ed7 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x18711d5b pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x188730e9 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18cb5ee8 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x18d6d835 dma_find_channel +EXPORT_SYMBOL vmlinux 0x18e41f61 filp_open +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e8b3ab xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x18f47168 dev_addr_init +EXPORT_SYMBOL vmlinux 0x18f8663e scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x19428e41 kernel_listen +EXPORT_SYMBOL vmlinux 0x19787b9c tcp_rcv_state_process +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 0x19be2bfa to_ndd +EXPORT_SYMBOL vmlinux 0x19d3b97b phy_suspend +EXPORT_SYMBOL vmlinux 0x19ecf724 inet_shutdown +EXPORT_SYMBOL vmlinux 0x19f11cb2 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x1a36bb28 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x1a3b84a5 unregister_nls +EXPORT_SYMBOL vmlinux 0x1a3dc9f7 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x1a43f8a0 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x1a5b6ada blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x1a5bc83c netdev_emerg +EXPORT_SYMBOL vmlinux 0x1a5cd5fc lwtunnel_output +EXPORT_SYMBOL vmlinux 0x1a5cf13e elv_rb_del +EXPORT_SYMBOL vmlinux 0x1a7c6262 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x1a9a42c1 unlock_buffer +EXPORT_SYMBOL vmlinux 0x1aa0f726 kern_path_create +EXPORT_SYMBOL vmlinux 0x1ac43d7a neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1afa466a __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x1b011217 try_module_get +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b25ad56 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x1b3721c9 __bread_gfp +EXPORT_SYMBOL vmlinux 0x1b51af23 param_set_bool +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b6a38f2 security_inode_permission +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1ba5f648 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x1baee2ed genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc1c63c md_error +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bca2b59 load_fp_state +EXPORT_SYMBOL vmlinux 0x1bcf7620 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x1beea411 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1bffef07 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x1c07372c security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x1c1b35df pci_bus_get +EXPORT_SYMBOL vmlinux 0x1c2db228 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x1c35fc22 netdev_notice +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c40deb5 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x1c5e9621 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x1c6a349c xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1cb4a903 set_cached_acl +EXPORT_SYMBOL vmlinux 0x1cc8ebe8 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x1d085eeb __get_user_pages +EXPORT_SYMBOL vmlinux 0x1d0ff875 blkdev_put +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d18f4cb kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x1d24e047 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x1d2dbb25 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x1d4fca69 set_blocksize +EXPORT_SYMBOL vmlinux 0x1d5539ff fddi_type_trans +EXPORT_SYMBOL vmlinux 0x1d5b44ac devfreq_interval_update +EXPORT_SYMBOL vmlinux 0x1d5f50f3 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x1dafeadb tcp_splice_read +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e1d4509 seq_write +EXPORT_SYMBOL vmlinux 0x1e25d4b6 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3d8812 kobject_get +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7d36ce inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1edbf125 iget_failed +EXPORT_SYMBOL vmlinux 0x1f00259f padata_add_cpu +EXPORT_SYMBOL vmlinux 0x1f1f5fed dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x1f541f49 prepare_creds +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f7075fb unload_nls +EXPORT_SYMBOL vmlinux 0x1f8368d0 bdget_disk +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe49372 tcp_release_cb +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 0x201e9e67 seq_release_private +EXPORT_SYMBOL vmlinux 0x202397dd netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x203480b6 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x204c5a1d sk_common_release +EXPORT_SYMBOL vmlinux 0x205410fa __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207755f4 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x20923c0c generic_perform_write +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20d4bf08 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x20dc116b vme_irq_request +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20e9c651 filemap_fault +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x2118d9bb put_tty_driver +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x212078a3 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x2137f12c netlink_capable +EXPORT_SYMBOL vmlinux 0x213b0663 tty_port_open +EXPORT_SYMBOL vmlinux 0x21471b2f tcp_sendpage +EXPORT_SYMBOL vmlinux 0x21478eb3 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x2171e584 free_buffer_head +EXPORT_SYMBOL vmlinux 0x21766334 param_array_ops +EXPORT_SYMBOL vmlinux 0x21768e28 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x21845533 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x21c0ca03 thaw_bdev +EXPORT_SYMBOL vmlinux 0x21c2b5dc ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x21cd36f1 agp_free_memory +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e2a781 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x21ed00ad dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x221d504e eth_header_cache +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2232da06 __free_pages +EXPORT_SYMBOL vmlinux 0x22444f47 genphy_read_status +EXPORT_SYMBOL vmlinux 0x2258df88 nf_register_hooks +EXPORT_SYMBOL vmlinux 0x2259cb37 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x225d05c5 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x226287d4 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x2278e94b slhc_remember +EXPORT_SYMBOL vmlinux 0x228acf13 pci_get_device +EXPORT_SYMBOL vmlinux 0x2295221a rtnl_create_link +EXPORT_SYMBOL vmlinux 0x229fd7b6 sock_edemux +EXPORT_SYMBOL vmlinux 0x22a498e2 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b56db4 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x22c4305a of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x22f2a1af dma_pool_create +EXPORT_SYMBOL vmlinux 0x23005832 twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x2317b96b dquot_initialize +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x234a4d1e of_root +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x236fbf84 clk_get +EXPORT_SYMBOL vmlinux 0x237938ac netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x23a1a1a0 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b976af swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c598b5 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23f00a48 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23f2966f pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x23f64113 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x241f5d6a tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242568b8 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x24513806 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x2460b51f pci_scan_slot +EXPORT_SYMBOL vmlinux 0x2469cf12 genlmsg_put +EXPORT_SYMBOL vmlinux 0x2476c5c7 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x248af854 d_genocide +EXPORT_SYMBOL vmlinux 0x24be141c mach_corenet_generic +EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x24e873d1 i2c_transfer +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fc9f92 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x25029455 dquot_disable +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25385db6 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2579dcec rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x25807cb3 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x259c4e9c dev_remove_pack +EXPORT_SYMBOL vmlinux 0x25c07736 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x25ca50b0 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0x25e1eed6 igrab +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f84b02 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x260517a1 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x260b6ec2 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x260e79c9 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0x2633bcce eth_gro_receive +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 0x267582e5 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x267ed450 sock_rfree +EXPORT_SYMBOL vmlinux 0x2686488b tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x2698b7b5 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x26a2e915 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26c021fb __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x26e52954 deactivate_super +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26f4508b pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x270b4cb4 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x27106248 netlink_unicast +EXPORT_SYMBOL vmlinux 0x2729db41 fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x2732751b nlmsg_notify +EXPORT_SYMBOL vmlinux 0x27341da8 always_delete_dentry +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 0x278cbc9d of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x278e96ea iterate_supers_type +EXPORT_SYMBOL vmlinux 0x2790bf53 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27c4b609 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x27d305b6 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27f2c6ea seq_escape +EXPORT_SYMBOL vmlinux 0x27fea548 module_layout +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x2820796d try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x2823992f mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x28298f39 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x284dc734 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x287f60bd blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x2880c84b nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x288db8e8 set_anon_super +EXPORT_SYMBOL vmlinux 0x28900e1f bio_put +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 0x28af8b21 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x28d0ea03 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x28e3e420 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28f1bf4c write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x28fdc826 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x28ff35eb unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x292ec610 file_open_root +EXPORT_SYMBOL vmlinux 0x29362c56 ip_defrag +EXPORT_SYMBOL vmlinux 0x294e1184 of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x294fa56d devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x297f5be5 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x29b1f795 lease_modify +EXPORT_SYMBOL vmlinux 0x29ea1663 d_drop +EXPORT_SYMBOL vmlinux 0x2a06699e take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x2a0a8c6e dev_addr_flush +EXPORT_SYMBOL vmlinux 0x2a2a178f nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a32c870 touch_buffer +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3b9ab2 netdev_update_features +EXPORT_SYMBOL vmlinux 0x2a3eac30 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x2a50cb6b tty_lock +EXPORT_SYMBOL vmlinux 0x2a59f249 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x2a8c64e1 udp_ioctl +EXPORT_SYMBOL vmlinux 0x2a9561b3 vfs_fsync +EXPORT_SYMBOL vmlinux 0x2a9aab3e kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2ac40395 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad63c67 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x2ad8a4ec __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x2af06ca5 km_query +EXPORT_SYMBOL vmlinux 0x2af8cdba swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3f784b fb_class +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b4c3074 inet_offloads +EXPORT_SYMBOL vmlinux 0x2b5d77c6 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x2b9601dd __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2bc3dd5f key_payload_reserve +EXPORT_SYMBOL vmlinux 0x2bdd6e28 node_states +EXPORT_SYMBOL vmlinux 0x2be0f12d dql_completed +EXPORT_SYMBOL vmlinux 0x2bfb2ee8 mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0x2c048ba8 tcp_check_req +EXPORT_SYMBOL vmlinux 0x2c134395 param_ops_bool +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2fc948 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x2c364fab uart_add_one_port +EXPORT_SYMBOL vmlinux 0x2c3e6f04 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x2c57de5c xfrm_state_insert +EXPORT_SYMBOL vmlinux 0x2c5a6aba fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c8eabef dquot_enable +EXPORT_SYMBOL vmlinux 0x2c956eaa agp_generic_enable +EXPORT_SYMBOL vmlinux 0x2cb352aa inet_stream_connect +EXPORT_SYMBOL vmlinux 0x2cc07a2b dentry_path_raw +EXPORT_SYMBOL vmlinux 0x2cce586c sk_free +EXPORT_SYMBOL vmlinux 0x2cd6685d dump_emit +EXPORT_SYMBOL vmlinux 0x2ce00ae9 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x2ce9124a blk_sync_queue +EXPORT_SYMBOL vmlinux 0x2cf51291 __neigh_create +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2cf7f689 phy_init_eee +EXPORT_SYMBOL vmlinux 0x2d0fca13 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x2d13d84b eth_platform_get_mac_address +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 0x2d3ab908 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x2d50dfc4 vme_bus_num +EXPORT_SYMBOL vmlinux 0x2d5f71ce param_get_ulong +EXPORT_SYMBOL vmlinux 0x2d62f297 alloc_disk +EXPORT_SYMBOL vmlinux 0x2d6fe0f4 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x2d776b21 ether_setup +EXPORT_SYMBOL vmlinux 0x2d8eda26 from_kprojid +EXPORT_SYMBOL vmlinux 0x2daee7ff msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x2ddd2ece ip6_frag_init +EXPORT_SYMBOL vmlinux 0x2dee3542 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x2df012fe inet_del_offload +EXPORT_SYMBOL vmlinux 0x2e0a9652 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e1ca751 clk_put +EXPORT_SYMBOL vmlinux 0x2e1d214e secpath_dup +EXPORT_SYMBOL vmlinux 0x2e1e2ea9 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x2e293515 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e5349dc dev_get_stats +EXPORT_SYMBOL vmlinux 0x2e55654a mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e70aa03 finish_open +EXPORT_SYMBOL vmlinux 0x2ef1dfbf bio_integrity_trim +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 0x2f21a0f9 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f33b6c7 inode_set_flags +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4c25ce gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x2f4d175d __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x2f5f2a57 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0x2f83df39 datagram_poll +EXPORT_SYMBOL vmlinux 0x2f86116c swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x2f9146b2 vfs_unlink +EXPORT_SYMBOL vmlinux 0x2f947d90 inet6_offloads +EXPORT_SYMBOL vmlinux 0x2f9ca8d9 file_ns_capable +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fd0a781 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x2fdcc241 generic_show_options +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x300a7965 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x3015d5b7 phy_start +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3042a3d3 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x304b91b6 block_truncate_page +EXPORT_SYMBOL vmlinux 0x3070f9ae unregister_key_type +EXPORT_SYMBOL vmlinux 0x3072d0a3 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x307dcc23 remove_proc_entry +EXPORT_SYMBOL vmlinux 0x3084052b bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309abd90 poll_initwait +EXPORT_SYMBOL vmlinux 0x30a1b75a abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x30a3a955 __vfs_write +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30ba861e dquot_release +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x3112c8fc dev_activate +EXPORT_SYMBOL vmlinux 0x3112f8e3 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x3126e3f8 netif_napi_del +EXPORT_SYMBOL vmlinux 0x3132a3fa __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x3140a293 backlight_force_update +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3147c916 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x3147e434 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x314c0cac qdisc_list_add +EXPORT_SYMBOL vmlinux 0x31517d4c sock_efree +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31b64817 __skb_get_hash +EXPORT_SYMBOL vmlinux 0x31f0be9c locks_free_lock +EXPORT_SYMBOL vmlinux 0x3203c5e2 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x320f6faf phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x321f2289 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x3249e935 seq_read +EXPORT_SYMBOL vmlinux 0x324a2073 mem_map +EXPORT_SYMBOL vmlinux 0x324feaf9 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3289b45d jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x3291e37d deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x32aae886 input_set_keycode +EXPORT_SYMBOL vmlinux 0x32d8bb22 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x33007e1e pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x333e8785 to_nd_btt +EXPORT_SYMBOL vmlinux 0x33484b5a flush_tlb_page +EXPORT_SYMBOL vmlinux 0x339b0e78 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x33a50a32 sock_register +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33ed5c98 tty_mutex +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340411ba tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3472c0e8 scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x347c7c3f xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x348130b1 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x34861990 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349f06c7 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x34a5e29f blk_register_region +EXPORT_SYMBOL vmlinux 0x34cd79a1 simple_write_end +EXPORT_SYMBOL vmlinux 0x34ceb5b8 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x34df1c45 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x34eed746 sock_no_bind +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3502162a request_key_async +EXPORT_SYMBOL vmlinux 0x3504576f __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x350644a2 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x350b8e51 elv_register_queue +EXPORT_SYMBOL vmlinux 0x35156c3e skb_seq_read +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x3558a213 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x355d3301 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x3591951e pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35bc37bb tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35cbea0e input_close_device +EXPORT_SYMBOL vmlinux 0x35d0903b keyring_alloc +EXPORT_SYMBOL vmlinux 0x35d5b071 simple_getattr +EXPORT_SYMBOL vmlinux 0x35f49d4b mdiobus_write +EXPORT_SYMBOL vmlinux 0x3604720a softnet_data +EXPORT_SYMBOL vmlinux 0x3606ec65 send_sig_info +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x361e8290 dump_skip +EXPORT_SYMBOL vmlinux 0x36222e39 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x362b8347 tty_register_device +EXPORT_SYMBOL vmlinux 0x3657d747 tcf_hash_search +EXPORT_SYMBOL vmlinux 0x36632ef1 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x367c9541 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x36814c6b update_devfreq +EXPORT_SYMBOL vmlinux 0x368435d4 flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x3694134d __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36a4d170 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x36a4fa7f wake_up_process +EXPORT_SYMBOL vmlinux 0x36accfb9 pci_save_state +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36cf2235 tso_start +EXPORT_SYMBOL vmlinux 0x36d0647c pci_match_id +EXPORT_SYMBOL vmlinux 0x36e20620 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x36e74fba __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x36f49749 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x36fbebf6 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x37001a80 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x371068a1 da903x_query_status +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x3739bffd of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x376003c8 page_put_link +EXPORT_SYMBOL vmlinux 0x378399a4 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x3792026a bdi_register +EXPORT_SYMBOL vmlinux 0x37a0a50e scsi_device_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 0x37d8c150 sock_setsockopt +EXPORT_SYMBOL vmlinux 0x37e0153d flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x3807b0a3 mpage_readpage +EXPORT_SYMBOL vmlinux 0x380933a2 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0x381062ea neigh_connected_output +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x381ae1dc sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x3839ed20 inet_select_addr +EXPORT_SYMBOL vmlinux 0x387f1ffa netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38dcd558 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x391a1496 inc_nlink +EXPORT_SYMBOL vmlinux 0x39203304 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x392e5e06 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39490a13 seq_printf +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x395c855c seq_path +EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x397bcea8 of_dev_get +EXPORT_SYMBOL vmlinux 0x3983299f simple_transaction_get +EXPORT_SYMBOL vmlinux 0x3983cffd pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x39851933 dev_emerg +EXPORT_SYMBOL vmlinux 0x3990a443 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399ad043 __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x399cc7bf netdev_alert +EXPORT_SYMBOL vmlinux 0x39a2fa91 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39ebce90 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x39ff3d5f elevator_init +EXPORT_SYMBOL vmlinux 0x3a04a8a0 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x3a1d02fc md_write_end +EXPORT_SYMBOL vmlinux 0x3a71722d dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9bb584 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x3ae5d9e6 dqget +EXPORT_SYMBOL vmlinux 0x3af19ab4 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x3b1f0271 generic_file_llseek +EXPORT_SYMBOL vmlinux 0x3b443e20 pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x3b506112 release_pages +EXPORT_SYMBOL vmlinux 0x3b5b50fe unregister_md_personality +EXPORT_SYMBOL vmlinux 0x3b5cc945 page_waitqueue +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b69f7c5 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x3b6b142a f_setown +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b8ee09a simple_nosetlease +EXPORT_SYMBOL vmlinux 0x3b8fb5f3 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x3baad9bd blk_integrity_register +EXPORT_SYMBOL vmlinux 0x3baf8cae i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x3bf65655 local_flush_tlb_page +EXPORT_SYMBOL vmlinux 0x3c20a722 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x3c222e79 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x3c33eb2b key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c46a74c qdisc_reset +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c6e532d __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c857e0e dcb_getapp +EXPORT_SYMBOL vmlinux 0x3c8a6bdd dst_discard_out +EXPORT_SYMBOL vmlinux 0x3c939d76 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x3cade6f6 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x3cb6e042 set_groups +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3cd304a4 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cf092a8 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x3cf9360f agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x3d1af190 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x3d4021bd scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x3d41d538 vme_slave_request +EXPORT_SYMBOL vmlinux 0x3d511d64 mount_single +EXPORT_SYMBOL vmlinux 0x3d81a41a blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x3d876fd8 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x3d8d9a7a ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x3d8e95af __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x3db186de generic_setxattr +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dc02a4e flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x3dc4c146 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3de1f2e2 pci_release_regions +EXPORT_SYMBOL vmlinux 0x3dedd4ad brioctl_set +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0b64d2 register_netdev +EXPORT_SYMBOL vmlinux 0x3e40b1b8 fput +EXPORT_SYMBOL vmlinux 0x3e623791 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0x3e661376 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x3e7545f3 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9a749e of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x3ea90a05 load_nls_default +EXPORT_SYMBOL vmlinux 0x3ebb0c50 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x3ee53aaa parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x3f034d8b nobh_write_begin +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f112b3d skb_checksum +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f40a2c8 netdev_state_change +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4eec1a clear_wb_congested +EXPORT_SYMBOL vmlinux 0x3f53de1b mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x3f6b685d mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0x3f9b9f62 km_report +EXPORT_SYMBOL vmlinux 0x3f9d2e29 dev_printk +EXPORT_SYMBOL vmlinux 0x3f9d8e8f csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x3fad830b __nd_iostat_start +EXPORT_SYMBOL vmlinux 0x3fb8b5a3 dev_mc_add +EXPORT_SYMBOL vmlinux 0x3fd72a8c framebuffer_release +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe5fe4a __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4039918a clk_register_clkdev +EXPORT_SYMBOL vmlinux 0x4041069f mdiobus_free +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x407faa9c dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x4083b924 sock_no_connect +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x4099bdfc tcp_disconnect +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 0x410ec056 make_kprojid +EXPORT_SYMBOL vmlinux 0x411aea89 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x412a3f9f lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x413c2b60 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x414726a7 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4151a08d send_sig +EXPORT_SYMBOL vmlinux 0x41574411 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x416a62a4 skb_trim +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41b9012a inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41c07918 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x41d1afef nf_log_trace +EXPORT_SYMBOL vmlinux 0x41dc56dd bio_add_page +EXPORT_SYMBOL vmlinux 0x41e68501 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x41f3f3b0 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0x41f45bf8 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x42004046 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x4200dcb4 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4265cc9d __dst_free +EXPORT_SYMBOL vmlinux 0x42679d93 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x427cf8d2 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x42843bb8 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x429c90fb inode_dio_wait +EXPORT_SYMBOL vmlinux 0x42a1442b clocksource_unregister +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a5f6f3 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x42cadefa path_nosuid +EXPORT_SYMBOL vmlinux 0x42e94e3e d_delete +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430b9024 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x430d4ea5 dquot_alloc +EXPORT_SYMBOL vmlinux 0x4335da84 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x435441c8 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0x43625119 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x4371c480 current_fs_time +EXPORT_SYMBOL vmlinux 0x437c82c6 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x43812ea2 devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x438902ad jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0x438bc2b9 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x4398f82c abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x4399196f vm_insert_page +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x43b96c29 simple_link +EXPORT_SYMBOL vmlinux 0x43d09b1a try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x43de6d0d scsi_remove_host +EXPORT_SYMBOL vmlinux 0x43ea4cf8 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x44222404 security_path_chown +EXPORT_SYMBOL vmlinux 0x4437f161 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x443fee9a pci_request_region +EXPORT_SYMBOL vmlinux 0x4443aa1a bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x446612fd phy_start_aneg +EXPORT_SYMBOL vmlinux 0x4472ba76 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x447b16f4 pci_bus_type +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x44965f42 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x44a6d352 kobject_put +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44c2799e of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x44c8d8de scsi_remove_target +EXPORT_SYMBOL vmlinux 0x44ccbc91 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x44e544e9 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44fe9d7e __neigh_event_send +EXPORT_SYMBOL vmlinux 0x45097d82 tty_register_driver +EXPORT_SYMBOL vmlinux 0x4511f6c3 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x452398a2 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0x4532cddb devm_ioport_map +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x454b7eb2 of_clk_get +EXPORT_SYMBOL vmlinux 0x455bdc0b md_update_sb +EXPORT_SYMBOL vmlinux 0x455c6048 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0x456d2e9f set_wb_congested +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x457fb23c blk_get_request +EXPORT_SYMBOL vmlinux 0x45a4b6f1 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x4609751c inode_init_once +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 0x463da568 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x464e9520 tty_vhangup +EXPORT_SYMBOL vmlinux 0x4655e0f6 md_reload_sb +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x465e0c97 ps2_begin_command +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46730996 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46914c12 dev_get_by_name +EXPORT_SYMBOL vmlinux 0x46a2c7e9 cdev_init +EXPORT_SYMBOL vmlinux 0x46b33a54 dev_trans_start +EXPORT_SYMBOL vmlinux 0x46cae38f notify_change +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46dc1caf mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x46e67631 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0x46f07ba2 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4731f9e0 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x474af44b dev_set_group +EXPORT_SYMBOL vmlinux 0x4756be65 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x475dec6c sock_update_memcg +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x478b76b0 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a8daec md_finish_reshape +EXPORT_SYMBOL vmlinux 0x47c11103 register_qdisc +EXPORT_SYMBOL vmlinux 0x47fc1252 prepare_binprm +EXPORT_SYMBOL vmlinux 0x47fe89b4 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x480640b0 generic_file_open +EXPORT_SYMBOL vmlinux 0x481d8ca9 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x48312339 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x4856b7c6 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4863e3b7 dquot_operations +EXPORT_SYMBOL vmlinux 0x4865dc3d nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x4889d04c netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x48a0b703 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x48a771c5 cpu_core_map +EXPORT_SYMBOL vmlinux 0x48b3bb96 install_exec_creds +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48becc0a find_vma +EXPORT_SYMBOL vmlinux 0x48e72d35 of_get_pci_address +EXPORT_SYMBOL vmlinux 0x48f64b33 seq_open_private +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4917d235 register_key_type +EXPORT_SYMBOL vmlinux 0x493456f9 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x494a87be ping_prot +EXPORT_SYMBOL vmlinux 0x49541327 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x4959ccfa irq_set_chip +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x495dc4f8 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x495ee500 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x498b2b96 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x49adf251 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49c5bca1 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x49cf808d mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0x49ea5744 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x49fda75b devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x4a1284ad grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x4a1331c4 d_add_ci +EXPORT_SYMBOL vmlinux 0x4a349202 kmem_cache_create +EXPORT_SYMBOL vmlinux 0x4a43fa98 free_page_put_link +EXPORT_SYMBOL vmlinux 0x4a5cb1f2 sk_capable +EXPORT_SYMBOL vmlinux 0x4a6cffac agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a95a6e7 nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x4a985db9 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x4aad6849 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x4ab56e63 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac73b1c neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad1a2bf pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x4ad6a322 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x4ae10cc0 register_framebuffer +EXPORT_SYMBOL vmlinux 0x4aef1aa4 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x4aef983c from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b275236 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x4b2c9218 complete_request_key +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b7ed806 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4b84043f key_link +EXPORT_SYMBOL vmlinux 0x4b8e0020 arp_create +EXPORT_SYMBOL vmlinux 0x4ba4e2ae km_state_expired +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bbf3a49 tcp_req_err +EXPORT_SYMBOL vmlinux 0x4be04c73 tc_classify +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c2894af security_path_symlink +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3f76e5 save_mount_options +EXPORT_SYMBOL vmlinux 0x4c4d6416 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x4c8323a1 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x4c8a7531 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x4c96e770 generic_permission +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cb164b2 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x4cb3f660 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x4cc5d5e6 touch_atime +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cdd1930 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x4ce19fab eth_header +EXPORT_SYMBOL vmlinux 0x4cf49f4b tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x4cfc18e4 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x4d0854ec compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x4d0907da mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x4d2ae2dd devm_ioremap +EXPORT_SYMBOL vmlinux 0x4d3adca2 pci_map_rom +EXPORT_SYMBOL vmlinux 0x4d40058b kill_litter_super +EXPORT_SYMBOL vmlinux 0x4d50a6b8 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x4d6fa638 param_get_ullong +EXPORT_SYMBOL vmlinux 0x4d732944 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4db80725 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x4dba5ba5 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x4dcf0196 copy_from_iter +EXPORT_SYMBOL vmlinux 0x4dd85bc1 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de6501a devm_memremap +EXPORT_SYMBOL vmlinux 0x4df0f0d0 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e026829 unlock_page +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3c615b fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x4e42a17c kern_path +EXPORT_SYMBOL vmlinux 0x4e5835c7 blk_get_queue +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e70d135 sock_no_accept +EXPORT_SYMBOL vmlinux 0x4e7439c5 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x4e785db9 of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x4e89c1f1 netdev_info +EXPORT_SYMBOL vmlinux 0x4e90a1b8 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x4e9cd393 reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4ea14e58 arp_tbl +EXPORT_SYMBOL vmlinux 0x4eea5714 dm_io +EXPORT_SYMBOL vmlinux 0x4f0bc966 find_lock_entry +EXPORT_SYMBOL vmlinux 0x4f1831eb pci_fixup_device +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f2c6837 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f4b863d seq_putc +EXPORT_SYMBOL vmlinux 0x4f4c18c9 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve +EXPORT_SYMBOL vmlinux 0x4f7bf00b simple_empty +EXPORT_SYMBOL vmlinux 0x4f978824 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x4fbc9606 dev_alert +EXPORT_SYMBOL vmlinux 0x4fc9d15d skb_checksum_help +EXPORT_SYMBOL vmlinux 0x4fcabc98 gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x4fd05bf0 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x4fd44a57 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x4fd6b805 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe58af5 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x4ff0bfb1 kill_anon_super +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x500cfabb xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x5033a6ea fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x5050e783 path_noexec +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x5090894c mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x509dcb71 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50adb8fa mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x50afa970 kernel_read +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50bc0f62 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50f063fe __serio_register_port +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511960a9 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x51395aea devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x513c8e0f kobject_set_name +EXPORT_SYMBOL vmlinux 0x5147c3dc jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x515d521d alloc_disk_node +EXPORT_SYMBOL vmlinux 0x51605955 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x516523a9 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x518d05da generic_removexattr +EXPORT_SYMBOL vmlinux 0x5199a487 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51bd7e4a try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x51f3866c twl6040_power +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x520f12d8 generic_writepages +EXPORT_SYMBOL vmlinux 0x5217ced4 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52512097 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x52722f4c vme_register_error_handler +EXPORT_SYMBOL vmlinux 0x5273be0a devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x52a334f3 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x52a3fb21 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x52b3edbd pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x52b6870d scm_fp_dup +EXPORT_SYMBOL vmlinux 0x52bf94ba dquot_acquire +EXPORT_SYMBOL vmlinux 0x52c86d33 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x52d7a5e8 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x52f23044 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5355a487 simple_write_begin +EXPORT_SYMBOL vmlinux 0x53577c4e posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x5357c7dc migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x537d63ac nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x537e37dd cancel_dirty_page +EXPORT_SYMBOL vmlinux 0x53861bf0 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x539b7cc3 ata_print_version +EXPORT_SYMBOL vmlinux 0x53a37f64 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x53caa086 audit_log_start +EXPORT_SYMBOL vmlinux 0x53ce723e scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0x53d6490b ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x53dec40d param_get_short +EXPORT_SYMBOL vmlinux 0x53eb22d0 sg_miter_next +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5400de24 iget_locked +EXPORT_SYMBOL vmlinux 0x54038b00 generic_fillattr +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540b49c4 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x540bc969 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x540c95b3 alloc_file +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x542b4ad5 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x54310458 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x546ae494 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x548a5a99 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54b6f2cf iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x54bbc34c fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x54bcc412 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x54bfe831 md_done_sync +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d4f64e input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54ec78de page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x550bb80a agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0x550d194e truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x55137919 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5546c205 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x554959b0 agp_find_bridge +EXPORT_SYMBOL vmlinux 0x55625f09 poll_freewait +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x5582d666 jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x55a280d3 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x55b305da km_new_mapping +EXPORT_SYMBOL vmlinux 0x55bb6c7d pcim_enable_device +EXPORT_SYMBOL vmlinux 0x55c27da7 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55d4ed04 vga_put +EXPORT_SYMBOL vmlinux 0x560f08cd dm_put_device +EXPORT_SYMBOL vmlinux 0x561957c2 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x5632ca7d xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5638c3e7 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x5658c53a __mutex_init +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56a158d4 key_unlink +EXPORT_SYMBOL vmlinux 0x56a2ca8d block_write_begin +EXPORT_SYMBOL vmlinux 0x56a7429d generic_write_checks +EXPORT_SYMBOL vmlinux 0x56ac9d5c scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x56b39a5a blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x56b61389 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x56befdc4 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d51865 inode_init_owner +EXPORT_SYMBOL vmlinux 0x56e885a0 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x56f60825 dentry_unhash +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x56fef034 vfs_llseek +EXPORT_SYMBOL vmlinux 0x57019772 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x5702fca9 simple_rename +EXPORT_SYMBOL vmlinux 0x571e38a4 napi_get_frags +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x57303a1a genl_notify +EXPORT_SYMBOL vmlinux 0x57304db7 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x5734369f sock_wmalloc +EXPORT_SYMBOL vmlinux 0x57364236 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x57419025 kobject_init +EXPORT_SYMBOL vmlinux 0x5742cb95 pci_find_capability +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x575024e0 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575af70c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x5778d48c kernel_accept +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579fbcd2 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x57a571f2 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x57ae095f decrementer_clockevent +EXPORT_SYMBOL vmlinux 0x57b7d4b7 lock_rename +EXPORT_SYMBOL vmlinux 0x57caa68c devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x57cf7dbf scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x57e5f494 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x57f27fc4 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x580e92a0 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0x581da47d dquot_commit_info +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58209f34 dquot_drop +EXPORT_SYMBOL vmlinux 0x582d3745 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x5838c85f kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x5848a3d1 pci_find_bus +EXPORT_SYMBOL vmlinux 0x5856ff98 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x5861a5b5 param_ops_uint +EXPORT_SYMBOL vmlinux 0x5870bca6 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x58ad4792 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bc88c1 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x58c50d68 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x58da2689 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58f4eaac xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x590e4c0b __alloc_skb +EXPORT_SYMBOL vmlinux 0x592e654f scsi_ioctl +EXPORT_SYMBOL vmlinux 0x5932b12d clkdev_drop +EXPORT_SYMBOL vmlinux 0x5936be84 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x593ae07c xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x595e0de9 module_put +EXPORT_SYMBOL vmlinux 0x5963702f ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x596621c4 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x596afa53 lro_receive_skb +EXPORT_SYMBOL vmlinux 0x597ca884 start_tty +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59989240 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x5998a2cb misc_register +EXPORT_SYMBOL vmlinux 0x599e78c2 unregister_netdev +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59ad1fec tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59b4094f param_get_byte +EXPORT_SYMBOL vmlinux 0x59c51caf security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x59d69d57 blk_start_request +EXPORT_SYMBOL vmlinux 0x59e70603 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x59f47148 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x59f7ddf8 sync_inode +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 0x5a1ec0f9 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5a5304e2 tcp_child_process +EXPORT_SYMBOL vmlinux 0x5a6a695a fb_get_mode +EXPORT_SYMBOL vmlinux 0x5a76b0f5 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x5a78ad57 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x5a806e5b inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9ee5da pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5a9f95e6 d_find_alias +EXPORT_SYMBOL vmlinux 0x5aaa375f writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x5abb3dac devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x5ac04f7e security_d_instantiate +EXPORT_SYMBOL vmlinux 0x5ac325dd bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x5ae202b1 inet_accept +EXPORT_SYMBOL vmlinux 0x5ae8024e tcp_init_sock +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b04f6f3 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5b055835 cad_pid +EXPORT_SYMBOL vmlinux 0x5b15c189 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x5b1aa217 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x5b2884e5 blk_peek_request +EXPORT_SYMBOL vmlinux 0x5b2b3e21 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x5b3aee75 migrate_page +EXPORT_SYMBOL vmlinux 0x5b3dcc6b dma_common_mmap +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b71a3cf done_path_create +EXPORT_SYMBOL vmlinux 0x5b765c0c con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5b9b8940 genphy_config_init +EXPORT_SYMBOL vmlinux 0x5bbc8be7 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc2f0d4 dquot_resume +EXPORT_SYMBOL vmlinux 0x5c11bd0f dev_addr_del +EXPORT_SYMBOL vmlinux 0x5c2efe2e padata_alloc +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c3966bf input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x5c51fbf3 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x5c6a6f54 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0x5c6b29e4 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0x5c755e18 kthread_stop +EXPORT_SYMBOL vmlinux 0x5c7e7381 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x5c851065 param_ops_charp +EXPORT_SYMBOL vmlinux 0x5c95bda2 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x5caa87ac clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0x5cbb8a5e sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x5cbf6776 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x5cc19bb6 blk_requeue_request +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cca9e07 ppp_dev_name +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d223b52 __brelse +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d57daf6 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x5d58efa0 convert_ifc_address +EXPORT_SYMBOL vmlinux 0x5d5e2ee4 simple_setattr +EXPORT_SYMBOL vmlinux 0x5d991a24 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x5da56749 param_get_string +EXPORT_SYMBOL vmlinux 0x5db86177 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x5dcddaf4 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x5ded8084 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x5defda48 neigh_destroy +EXPORT_SYMBOL vmlinux 0x5df555ef md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x5dfafbb2 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x5e0607ea d_set_d_op +EXPORT_SYMBOL vmlinux 0x5e15425b tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x5e2c3dfa audit_log_task_info +EXPORT_SYMBOL vmlinux 0x5e399e77 sync_blockdev +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e467acb __breadahead +EXPORT_SYMBOL vmlinux 0x5e5f56c8 revert_creds +EXPORT_SYMBOL vmlinux 0x5e758043 vfs_writef +EXPORT_SYMBOL vmlinux 0x5e760799 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x5e7645db swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x5e8b9c64 pci_get_class +EXPORT_SYMBOL vmlinux 0x5e9095c4 sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x5e926433 of_match_device +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ee04d8a generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x5ef1adb2 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x5ef9b5c8 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x5effde09 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f019267 ip_options_compile +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f102b8c dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x5f11334e neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x5f22621c __scsi_add_device +EXPORT_SYMBOL vmlinux 0x5f2db78a max8925_reg_read +EXPORT_SYMBOL vmlinux 0x5f54a0d9 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x5f54f91e sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x5f5dacc2 set_device_ro +EXPORT_SYMBOL vmlinux 0x5f61a491 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x5f6b791b lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f8df49c ppc_md +EXPORT_SYMBOL vmlinux 0x5fc6984d tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x5fd58bb0 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x5fd6c2be mmc_can_erase +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x60001f3b current_in_userns +EXPORT_SYMBOL vmlinux 0x6005c351 zpool_has_pool +EXPORT_SYMBOL vmlinux 0x600683d3 do_unblank_screen +EXPORT_SYMBOL vmlinux 0x600c3cdc posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x600da63b vfs_whiteout +EXPORT_SYMBOL vmlinux 0x601939ec i8042_install_filter +EXPORT_SYMBOL vmlinux 0x601f665f dm_io_client_create +EXPORT_SYMBOL vmlinux 0x6028d05b bio_copy_kern +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x60360f81 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x607b677a truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x608c7b20 d_alloc +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60be2e48 md_flush_request +EXPORT_SYMBOL vmlinux 0x60c5c377 ppp_unit_number +EXPORT_SYMBOL vmlinux 0x60dace93 unlock_rename +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e3f41a dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x60ebd0d2 devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x60f28db2 bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x60f43647 kfree_skb +EXPORT_SYMBOL vmlinux 0x60fb553a gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x6113518d mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x61157708 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6139eb13 I_BDEV +EXPORT_SYMBOL vmlinux 0x61445bb5 phy_device_register +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61662acc locks_copy_lock +EXPORT_SYMBOL vmlinux 0x617c5cf1 phy_connect +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bf0d6b fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x61dcf24a trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61f1cdb4 end_page_writeback +EXPORT_SYMBOL vmlinux 0x61f88f3d __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x620f9a70 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x62168679 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x622fa54c icmpv6_send +EXPORT_SYMBOL vmlinux 0x624ca287 kset_register +EXPORT_SYMBOL vmlinux 0x62529f17 make_kuid +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 0x628a2320 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x62dba93f starget_for_each_device +EXPORT_SYMBOL vmlinux 0x6300d73f blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x63105fdf should_remove_suid +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631a4014 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x63297c3c __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x6337c8aa tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x633cf710 tty_kref_put +EXPORT_SYMBOL vmlinux 0x633f31e2 proc_symlink +EXPORT_SYMBOL vmlinux 0x6351f79f dma_direct_ops +EXPORT_SYMBOL vmlinux 0x635a64e2 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x63712907 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x6378eb48 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x637a1c32 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x637c363e pneigh_lookup +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63b73c01 skb_clone +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63fc232f strlen_user +EXPORT_SYMBOL vmlinux 0x63fc4752 dm_put_table_device +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x6408f724 proc_remove +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x64129e2c jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x642a4536 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x6442406a dev_get_by_index +EXPORT_SYMBOL vmlinux 0x6456adcc param_set_ullong +EXPORT_SYMBOL vmlinux 0x64687b98 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x646ee35d cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x647c0b35 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x6486df1e clk_register_clkdevs +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x6499ffdb phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x64a4b84d cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64caa209 tty_hangup +EXPORT_SYMBOL vmlinux 0x64ce4cd0 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x64d49ef2 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x64d72ae7 mark_info_dirty +EXPORT_SYMBOL vmlinux 0x64fbde28 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x6505963a xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65327d27 skb_copy +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6542af27 sg_miter_stop +EXPORT_SYMBOL vmlinux 0x65457922 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x655adc2e fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65872285 free_netdev +EXPORT_SYMBOL vmlinux 0x658b1e4f tso_build_data +EXPORT_SYMBOL vmlinux 0x65ab540a ps2_init +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65d1338c dev_uc_del +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 0x6608adae nf_reinject +EXPORT_SYMBOL vmlinux 0x66361f12 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x6639ddd8 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x66420ed9 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x665126c0 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x666810cf __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x666d8c1b jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x667a7787 kthread_bind +EXPORT_SYMBOL vmlinux 0x66845efe nvm_submit_io +EXPORT_SYMBOL vmlinux 0x669f5d8f dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0x66a359c0 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x66b759a9 no_llseek +EXPORT_SYMBOL vmlinux 0x66be0abe rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x66c3cca5 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x66c86e7f fb_validate_mode +EXPORT_SYMBOL vmlinux 0x67046f9f blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x6705ed15 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0x67390a9b init_task +EXPORT_SYMBOL vmlinux 0x673a03fe buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x675d1b6e loop_register_transfer +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67793913 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x6785d529 iput +EXPORT_SYMBOL vmlinux 0x678803bc ihold +EXPORT_SYMBOL vmlinux 0x67a8aae7 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67d65acc cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x67f9ef03 inode_permission +EXPORT_SYMBOL vmlinux 0x67fc9a63 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x6804e720 mpage_writepage +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680d8511 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x68118228 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x6814809e udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x683a229f sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x684c5e99 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x685eb1c8 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x6870b552 default_llseek +EXPORT_SYMBOL vmlinux 0x68758f00 cdrom_release +EXPORT_SYMBOL vmlinux 0x68792966 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x689dafef tcp_parse_options +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68b56470 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c1d7cc jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x68d94255 blk_free_tags +EXPORT_SYMBOL vmlinux 0x68db89e3 blk_start_queue +EXPORT_SYMBOL vmlinux 0x68e010bb __invalidate_device +EXPORT_SYMBOL vmlinux 0x68feaf8a generic_read_dir +EXPORT_SYMBOL vmlinux 0x6905778e iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x691b3945 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x69225525 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x694d3418 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x6955b355 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x69591cfc phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x695f474d compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x697602e5 km_is_alive +EXPORT_SYMBOL vmlinux 0x697e9b59 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x6984a208 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x6985b679 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x6998bcc0 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0x699d0266 blk_fetch_request +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a790d1 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69c0bd39 PDE_DATA +EXPORT_SYMBOL vmlinux 0x69cf6384 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x69d865dd register_quota_format +EXPORT_SYMBOL vmlinux 0x69d89a9a free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x69ef2347 bio_advance +EXPORT_SYMBOL vmlinux 0x69f9a614 nf_log_packet +EXPORT_SYMBOL vmlinux 0x69fff3be netlink_net_capable +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a0a25cd netpoll_print_options +EXPORT_SYMBOL vmlinux 0x6a115a43 cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0x6a11c50f dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x6a3c3349 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x6a3e6ccb devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x6a400c2a tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x6a5c378b down_write_trylock +EXPORT_SYMBOL vmlinux 0x6a5cc679 skb_queue_tail +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a87cb02 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x6a8c971c jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x6a8e20b8 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x6a921a04 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x6a9d14b7 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x6ac707b8 vfs_readf +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af4282a tty_port_init +EXPORT_SYMBOL vmlinux 0x6b02d2db dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b0a786f pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x6b12a98e eth_mac_addr +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b3757cd key_invalidate +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6b6baf10 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x6b6ccb8d agp_backend_release +EXPORT_SYMBOL vmlinux 0x6b8142c5 invalidate_partition +EXPORT_SYMBOL vmlinux 0x6b888a43 tso_count_descs +EXPORT_SYMBOL vmlinux 0x6b8cc083 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x6b985f69 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x6b9a6ed1 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x6bc139de pci_read_vpd +EXPORT_SYMBOL vmlinux 0x6bc2425c textsearch_prepare +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6be63c8d phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0x6bfc2358 jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x6bfd29cc check_disk_change +EXPORT_SYMBOL vmlinux 0x6c045660 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c0c339c blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x6c19d682 build_skb +EXPORT_SYMBOL vmlinux 0x6c19dfa8 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x6c287077 netdev_printk +EXPORT_SYMBOL vmlinux 0x6c393970 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x6c3bcb47 ___pskb_trim +EXPORT_SYMBOL vmlinux 0x6c49512d pci_clear_master +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c59425f set_binfmt +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c8a9f0b do_truncate +EXPORT_SYMBOL vmlinux 0x6c93583f ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x6ca84469 block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d201bc8 fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x6d2592a8 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d30df3d do_SAK +EXPORT_SYMBOL vmlinux 0x6d4323e3 submit_bio_wait +EXPORT_SYMBOL vmlinux 0x6d4bc341 sys_copyarea +EXPORT_SYMBOL vmlinux 0x6d5eba6a posix_test_lock +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dc8ff6a elv_rb_find +EXPORT_SYMBOL vmlinux 0x6dd885bb inode_needs_sync +EXPORT_SYMBOL vmlinux 0x6de9e1f1 serio_reconnect +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6dfca4c7 of_device_register +EXPORT_SYMBOL vmlinux 0x6e08a15d inet_stream_ops +EXPORT_SYMBOL vmlinux 0x6e0d4686 locks_init_lock +EXPORT_SYMBOL vmlinux 0x6e1637a1 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x6e469332 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e8440ab jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x6e8c980c soft_cursor +EXPORT_SYMBOL vmlinux 0x6e9805ac of_parse_phandle +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ed2a4c5 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x6eeeb287 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x6efe0fb3 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x6f1d6eca downgrade_write +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f2d9126 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0x6f302a15 i2c_master_send +EXPORT_SYMBOL vmlinux 0x6f388399 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x6f41229b blk_rq_init +EXPORT_SYMBOL vmlinux 0x6f65b2c6 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x6f791f54 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x6f7b8cb5 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8bfa5c alloc_fcdev +EXPORT_SYMBOL vmlinux 0x6fab1d80 mpage_writepages +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd4c7cd task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x6ffca342 skb_unlink +EXPORT_SYMBOL vmlinux 0x700d90b8 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x70104ac2 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x702801be seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x7045bb99 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x70577ee0 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x708ea4cf __check_sticky +EXPORT_SYMBOL vmlinux 0x70a5ba3b find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x70b10800 put_cmsg +EXPORT_SYMBOL vmlinux 0x70b4bb06 security_mmap_file +EXPORT_SYMBOL vmlinux 0x70bc8f33 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0x70c7cf23 kfree_skb_list +EXPORT_SYMBOL vmlinux 0x70e7e3fe dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x71154e08 param_ops_long +EXPORT_SYMBOL vmlinux 0x7124274c skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x712e8c2f dev_notice +EXPORT_SYMBOL vmlinux 0x7152d103 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0x71589b64 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x7167fb56 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717146fa vlan_vid_del +EXPORT_SYMBOL vmlinux 0x717a49ed fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x7195ca4d devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x71a47d04 kern_unmount +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ae5687 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x720a626e of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x72162098 tcp_shutdown +EXPORT_SYMBOL vmlinux 0x724cef47 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x7250a05a bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x72a8c818 phy_write_mmd_indirect +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 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72fd6049 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x73143a9b nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x7315f1b7 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x73291f2a pci_write_vpd +EXPORT_SYMBOL vmlinux 0x733b2383 next_tlbcam_idx +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x7342e375 single_release +EXPORT_SYMBOL vmlinux 0x734bbc21 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x736612a3 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x736905b0 msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x736fa052 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x73ca7fd3 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x73ced860 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x73ec6139 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x73f03c47 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x740068df xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x74045619 finish_no_open +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74181af4 dev_crit +EXPORT_SYMBOL vmlinux 0x741f8bb2 find_inode_nowait +EXPORT_SYMBOL vmlinux 0x74397555 seq_vprintf +EXPORT_SYMBOL vmlinux 0x744a99a0 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x744c2ede neigh_update +EXPORT_SYMBOL vmlinux 0x745301c5 dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x745eaf28 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x745f34f5 agp_enable +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x74770617 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x7478d29e of_get_address +EXPORT_SYMBOL vmlinux 0x74833f17 dst_release +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74b38d3e sock_wfree +EXPORT_SYMBOL vmlinux 0x74bbafe7 simple_open +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74d4be89 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x750eed9c of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x75113d2b param_set_long +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x753a3a7a pcim_iomap +EXPORT_SYMBOL vmlinux 0x755d8955 set_bh_page +EXPORT_SYMBOL vmlinux 0x75663491 of_get_parent +EXPORT_SYMBOL vmlinux 0x756eb24d blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x7572e11f mmc_erase +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x759a2cc5 d_tmpfile +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x75c1b17a bdi_destroy +EXPORT_SYMBOL vmlinux 0x75e19ac6 blk_make_request +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x762f7cf7 follow_down_one +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x765fb00a mac_find_mode +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x767f4e72 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x76855dbd of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x76909b7d netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x7695d855 phy_connect_direct +EXPORT_SYMBOL vmlinux 0x76960bc2 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x769e06d7 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x76aa0d6f cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x76b21c75 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x76c533d3 input_register_handler +EXPORT_SYMBOL vmlinux 0x76d1e181 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x7708a741 read_cache_page +EXPORT_SYMBOL vmlinux 0x770c8ca0 netlink_set_err +EXPORT_SYMBOL vmlinux 0x77196cfb input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772b55f9 scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x773a00f8 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x778ada6c security_path_link +EXPORT_SYMBOL vmlinux 0x77978a7c max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77b50988 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77beb3e9 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x77da228c md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0x77ddb1a2 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x77f096a2 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0x7808822f netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x7820c204 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x7825486e fsync_bdev +EXPORT_SYMBOL vmlinux 0x78314a88 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x7832af8f mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783c0072 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x785a6fd3 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x786cb896 skb_find_text +EXPORT_SYMBOL vmlinux 0x787efafc peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7882aecd scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a867cc agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x78aa8aa0 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78ed2341 dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x78fa5ef3 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x790de680 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x7937d614 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x7944d408 kernel_param_unlock +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 0x799686c1 generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x79974add tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79aa1265 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x79cab40a dev_mc_init +EXPORT_SYMBOL vmlinux 0x79d9f61a __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x79ef3970 mount_nodev +EXPORT_SYMBOL vmlinux 0x7a024f14 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x7a21793a skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x7a2ed9fb mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a737c5f pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa4c821 misc_deregister +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7abbe0a0 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b2c6970 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x7b496220 max8998_update_reg +EXPORT_SYMBOL vmlinux 0x7b613ac0 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x7b861d82 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x7b866f67 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x7b8a9f22 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x7b8db32d mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x7bace273 sk_mc_loop +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bc0bca1 scsi_execute +EXPORT_SYMBOL vmlinux 0x7bc2c2a9 d_walk +EXPORT_SYMBOL vmlinux 0x7be9f16e neigh_table_init +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c14ec4d nf_log_unset +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 0x7c6d7fed register_sysctl +EXPORT_SYMBOL vmlinux 0x7c823b42 blk_init_tags +EXPORT_SYMBOL vmlinux 0x7c854c24 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x7c8e5c38 of_find_backlight_by_node +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 0x7caabd0f ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x7cb3a95c dev_load +EXPORT_SYMBOL vmlinux 0x7cb48e92 bio_copy_data +EXPORT_SYMBOL vmlinux 0x7cb7295c vga_get +EXPORT_SYMBOL vmlinux 0x7cb7c9d3 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x7cbe8bd7 devm_iounmap +EXPORT_SYMBOL vmlinux 0x7cd861cc pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf16316 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d028962 empty_aops +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d1b1040 netif_device_detach +EXPORT_SYMBOL vmlinux 0x7d42b396 sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x7d441b18 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x7d4b55fc bprm_change_interp +EXPORT_SYMBOL vmlinux 0x7d5b5cfb dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0x7d66fb64 set_disk_ro +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d71b34b xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x7d7a3e95 nobh_write_end +EXPORT_SYMBOL vmlinux 0x7d80e60a pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x7d9999ce tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x7dbb9674 bdgrab +EXPORT_SYMBOL vmlinux 0x7dbc60f4 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x7de5d383 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x7dea7f05 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e2ba88a jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0x7e3ca28e single_open_size +EXPORT_SYMBOL vmlinux 0x7e477228 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x7e489423 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e9749e7 register_cdrom +EXPORT_SYMBOL vmlinux 0x7e9ce74f dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x7eba06f7 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x7ecb001b __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x7ed175d5 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x7edbefab blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x7ee683d5 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ef3404d skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f08957d of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x7f08e7b6 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2b9615 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x7f4c8678 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x7f5a2a54 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f7caea0 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x7fb1244b phy_set_max_speed +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 0x7ff12eeb passthru_features_check +EXPORT_SYMBOL vmlinux 0x8019654d filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x801c7a60 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x802a30fe max8925_reg_write +EXPORT_SYMBOL vmlinux 0x802bca6c blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x80408776 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x804272d8 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x8069b12e i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x80c939dd inet_frags_fini +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d6cbcd ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x80ef6f67 fb_pan_display +EXPORT_SYMBOL vmlinux 0x80f563ba pcie_get_mps +EXPORT_SYMBOL vmlinux 0x811ac012 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x814d859d netdev_warn +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 0x815dc57e agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x817aa18a tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x8191319d blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x8192d592 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81ad572a mutex_trylock +EXPORT_SYMBOL vmlinux 0x81af13d1 udp_disconnect +EXPORT_SYMBOL vmlinux 0x81c0258c i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x81c5ed9d skb_queue_purge +EXPORT_SYMBOL vmlinux 0x81c6ae8b netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x82235368 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x82292057 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x822c2290 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x823d6241 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x824bf6ac up_write +EXPORT_SYMBOL vmlinux 0x8266ce7c local_flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x8282151c pskb_expand_head +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82aa9ab7 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82c43def __block_write_begin +EXPORT_SYMBOL vmlinux 0x82d732a7 phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x82e53175 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x83131a99 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x8326be7d skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0x832d7a9b sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x83365c2d blkdev_get +EXPORT_SYMBOL vmlinux 0x8345b0a7 dst_alloc +EXPORT_SYMBOL vmlinux 0x83561796 vm_mmap +EXPORT_SYMBOL vmlinux 0x836a5042 serio_close +EXPORT_SYMBOL vmlinux 0x836efbd6 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x83725b8d noop_llseek +EXPORT_SYMBOL vmlinux 0x837c8637 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x8383309f splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x83877d71 free_task +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 0x83fb4848 of_device_alloc +EXPORT_SYMBOL vmlinux 0x84010341 lookup_bdev +EXPORT_SYMBOL vmlinux 0x840d8873 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x841b9b49 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x842d9daa key_validate +EXPORT_SYMBOL vmlinux 0x843a7e79 sock_init_data +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x84521727 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x8476e3b3 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x849191a0 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x84922aa2 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84bfc462 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x84bfcd1f nf_log_register +EXPORT_SYMBOL vmlinux 0x84c9ea99 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x84cf87a9 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0x84ea8e44 phy_disconnect +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x850a7c6f pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x85470c80 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x85558c1a fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x8563a7b0 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x857fc193 make_bad_inode +EXPORT_SYMBOL vmlinux 0x85972a73 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85c8fcf8 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x85ca9578 drop_nlink +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e37372 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x85e913ee cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85f5ead5 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x8603cd44 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x861c5c67 path_is_under +EXPORT_SYMBOL vmlinux 0x86389532 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x8652b4d8 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0x8656871c vme_lm_request +EXPORT_SYMBOL vmlinux 0x865a5cd6 phy_print_status +EXPORT_SYMBOL vmlinux 0x865b16db jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x8691626c udp_poll +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86abd04f forget_cached_acl +EXPORT_SYMBOL vmlinux 0x86b0e339 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x86c06c4b input_unregister_device +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870738ec search_binary_handler +EXPORT_SYMBOL vmlinux 0x87101f25 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x8717d1f5 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x871b782a pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x871fb6f0 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x872017dc vmap +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x8744742e i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x874818d5 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x874d0b0e __page_symlink +EXPORT_SYMBOL vmlinux 0x87678d69 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x87699e50 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x87ada458 eth_header_parse +EXPORT_SYMBOL vmlinux 0x87b2d036 __bforget +EXPORT_SYMBOL vmlinux 0x87bb1f24 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x8801ea3c devm_free_irq +EXPORT_SYMBOL vmlinux 0x88049436 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x88145c0a serio_rescan +EXPORT_SYMBOL vmlinux 0x881a7d0e bdevname +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x883f1eac ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x886b5803 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8881efb3 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0x8886015f devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x88896eb0 fsl_ifc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x88b114b2 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x88b48a5f sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x890087d4 param_set_copystring +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +EXPORT_SYMBOL vmlinux 0x8962c165 component_match_add +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x89932061 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x89976b9c pci_enable_msix +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89b011c2 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x89c684a0 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x89c87a79 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x89d25135 param_get_charp +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e8c31f __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x89fd1aea iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x8a042a45 scsi_change_queue_depth +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 0x8a635306 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a85d5d8 of_find_property +EXPORT_SYMBOL vmlinux 0x8a85e84e thaw_super +EXPORT_SYMBOL vmlinux 0x8a86c11a netif_rx +EXPORT_SYMBOL vmlinux 0x8a889928 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9ff258 netdev_change_features +EXPORT_SYMBOL vmlinux 0x8aa1ee27 param_ops_bint +EXPORT_SYMBOL vmlinux 0x8addf0d2 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x8ae2ec5c mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x8ae4dec9 dentry_open +EXPORT_SYMBOL vmlinux 0x8aefb611 generic_readlink +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8b06defe rtnl_notify +EXPORT_SYMBOL vmlinux 0x8b17a714 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x8b33351f from_kuid +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b384a47 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b617001 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b66b4f4 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x8b6fbc9c console_start +EXPORT_SYMBOL vmlinux 0x8b7c6adc xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b99adef phy_init_hw +EXPORT_SYMBOL vmlinux 0x8badf514 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0x8baeb784 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x8baf3116 percpu_counter_set +EXPORT_SYMBOL vmlinux 0x8bb7103c netif_napi_add +EXPORT_SYMBOL vmlinux 0x8bc11efe force_sig +EXPORT_SYMBOL vmlinux 0x8be2d399 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8bfa44b5 bdput +EXPORT_SYMBOL vmlinux 0x8c149edf arp_xmit +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c3c5fac dquot_file_open +EXPORT_SYMBOL vmlinux 0x8c5e9e70 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c7e36c2 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x8cb1ed1a neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x8cb9dcd3 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x8cc4bfc9 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cd525be d_obtain_alias +EXPORT_SYMBOL vmlinux 0x8ceafe92 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x8cf23a01 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x8cfa9630 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d272769 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x8d3924d2 sock_no_listen +EXPORT_SYMBOL vmlinux 0x8d3bac29 dst_destroy +EXPORT_SYMBOL vmlinux 0x8d3bf7ea udp_seq_open +EXPORT_SYMBOL vmlinux 0x8d428545 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x8d476b2e dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d6dd3c5 __inode_permission +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d83a1eb mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8d96313a remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x8d990249 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8dbdb261 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x8dc29cd9 padata_free +EXPORT_SYMBOL vmlinux 0x8dc662ef do_splice_direct +EXPORT_SYMBOL vmlinux 0x8dcb74bb simple_rmdir +EXPORT_SYMBOL vmlinux 0x8dd0843a tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8dfa6905 udplite_prot +EXPORT_SYMBOL vmlinux 0x8dfddfef xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x8e02c684 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x8e04c00a xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x8e35ba9d pci_set_master +EXPORT_SYMBOL vmlinux 0x8e5e6f9b lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x8e69c071 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e753595 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x8e8026a3 write_one_page +EXPORT_SYMBOL vmlinux 0x8e888ec3 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x8e8d58da diu_ops +EXPORT_SYMBOL vmlinux 0x8e901d47 udp_prot +EXPORT_SYMBOL vmlinux 0x8e912b59 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x8e99a6c3 nobh_writepage +EXPORT_SYMBOL vmlinux 0x8ea79de9 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ee36cbc skb_free_datagram +EXPORT_SYMBOL vmlinux 0x8eecad81 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x8ef6835f elevator_change +EXPORT_SYMBOL vmlinux 0x8f1b2d43 follow_up +EXPORT_SYMBOL vmlinux 0x8f20b8aa pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x8f507461 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x8f558c8f wireless_spy_update +EXPORT_SYMBOL vmlinux 0x8f73f5e5 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x8f79444b kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f8e4210 dqput +EXPORT_SYMBOL vmlinux 0x8f962ccf jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x8f9d3db2 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x8fafc321 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x8fba4d6f generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc87654 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x8fdd2333 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x8ff50561 noop_fsync +EXPORT_SYMBOL vmlinux 0x8ffddf08 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x901cc6e4 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x902d929e of_phy_attach +EXPORT_SYMBOL vmlinux 0x9040903e call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x905d6d9e input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0x906e3811 console_stop +EXPORT_SYMBOL vmlinux 0x9072949b cont_write_begin +EXPORT_SYMBOL vmlinux 0x9076cf4e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x9080152a genl_unregister_family +EXPORT_SYMBOL vmlinux 0x908701ca of_device_is_available +EXPORT_SYMBOL vmlinux 0x908c8417 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x90c217bc __getblk_slow +EXPORT_SYMBOL vmlinux 0x90fe2a11 elv_rb_add +EXPORT_SYMBOL vmlinux 0x911ac058 block_commit_write +EXPORT_SYMBOL vmlinux 0x912943f8 icmp_send +EXPORT_SYMBOL vmlinux 0x912b5d75 audit_log +EXPORT_SYMBOL vmlinux 0x912d0643 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9152ccd3 __sb_start_write +EXPORT_SYMBOL vmlinux 0x915b47be skb_orphan_partial +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x9167a437 uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9173073c disk_stack_limits +EXPORT_SYMBOL vmlinux 0x91854031 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91bf3604 nd_device_register +EXPORT_SYMBOL vmlinux 0x91f006b0 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x9235338e abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x92845235 vme_dma_request +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x9292b074 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x929d26eb pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0x92a45256 register_console +EXPORT_SYMBOL vmlinux 0x92a4bff3 vfs_create +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x932fba56 register_shrinker +EXPORT_SYMBOL vmlinux 0x93424cad abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x934dae5d pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x9359b869 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x93645c0b do_splice_from +EXPORT_SYMBOL vmlinux 0x9367d6c1 register_netdevice +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93884897 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x938a366d of_get_next_child +EXPORT_SYMBOL vmlinux 0x9394440d pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x9395113d iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x93a11a88 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x93a38261 bio_unmap_user +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b9ab15 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x93c69037 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x93e3a7a2 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x941e964b pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x94284315 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x94450fb6 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x94452ce1 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x9471382b dev_add_offload +EXPORT_SYMBOL vmlinux 0x947a01a2 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x94841b30 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0x94891036 genphy_update_link +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94b541b5 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x94baa858 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x94bbd72e blk_complete_request +EXPORT_SYMBOL vmlinux 0x94f9e90d elv_add_request +EXPORT_SYMBOL vmlinux 0x950c3a38 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9510164c tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x951d99eb of_get_mac_address +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x9552e891 neigh_xmit +EXPORT_SYMBOL vmlinux 0x95546053 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x95552f2b tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x956bfcfa mmc_release_host +EXPORT_SYMBOL vmlinux 0x95815972 vme_master_request +EXPORT_SYMBOL vmlinux 0x95906e48 dm_register_target +EXPORT_SYMBOL vmlinux 0x95a3b318 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x95ab832e tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x95c7f90c of_iomap +EXPORT_SYMBOL vmlinux 0x95ebfce6 uart_match_port +EXPORT_SYMBOL vmlinux 0x95f313ce dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x95fcf028 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x961561c5 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x961f2b33 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x96376f7b input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x964be419 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x966ca69e dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96c89d33 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0x96cc0633 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d7b06f __pci_register_driver +EXPORT_SYMBOL vmlinux 0x96ebbd6c pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x96ed1a15 vme_bus_type +EXPORT_SYMBOL vmlinux 0x971b9e2d copy_to_iter +EXPORT_SYMBOL vmlinux 0x972faae3 __frontswap_load +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9750cc59 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x975e7d9b skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x97637633 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x97771728 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x9787fc86 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x9789a43a lease_get_mtime +EXPORT_SYMBOL vmlinux 0x978a123e vfs_mknod +EXPORT_SYMBOL vmlinux 0x978e383d blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec +EXPORT_SYMBOL vmlinux 0x97c1f12a blk_put_request +EXPORT_SYMBOL vmlinux 0x97ca928b scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x97cba5c4 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x97d00b96 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x97e6ceba scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x97e73676 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x97ed1487 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0x97f53686 __ps2_command +EXPORT_SYMBOL vmlinux 0x981c1bca vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98410b6b __put_cred +EXPORT_SYMBOL vmlinux 0x9849c030 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x98636195 sock_i_uid +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9898c799 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x98acc1a5 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x98b826f6 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x98b968fc adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x98c481a9 freeze_bdev +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98d0bc0e param_ops_byte +EXPORT_SYMBOL vmlinux 0x98ff9786 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x990eb939 __quota_error +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x991d6a49 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x993df8cd __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x997cf74b pci_enable_msi_range +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 0x99f4e692 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x9a08dcdd bmap +EXPORT_SYMBOL vmlinux 0x9a0d25ea d_prune_aliases +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a35d541 is_nd_btt +EXPORT_SYMBOL vmlinux 0x9a65328a vfs_getattr +EXPORT_SYMBOL vmlinux 0x9a65db1d fifo_set_limit +EXPORT_SYMBOL vmlinux 0x9a66d138 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x9a7b8d8e mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x9a8f7ff3 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0x9a9677bb sock_kmalloc +EXPORT_SYMBOL vmlinux 0x9a98ad30 inet_sendpage +EXPORT_SYMBOL vmlinux 0x9ab3bb27 twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x9acd9aa3 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x9ad2c99e i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x9ae66e2c nf_log_set +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aff9286 input_reset_device +EXPORT_SYMBOL vmlinux 0x9b2a57fa dm_kobject_release +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b359f14 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b565b85 d_invalidate +EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x9b7e9607 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x9b896f78 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x9b9a96af copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba2f270 flush_tlb_mm +EXPORT_SYMBOL vmlinux 0x9ba32038 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbbcc58 __find_get_block +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9be4bd3c netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x9be60399 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9c00fb7e mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x9c2ea56e iunique +EXPORT_SYMBOL vmlinux 0x9c352f0e tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c68d3be pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x9c81be79 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x9c867f2e i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cb8ead5 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x9ceb464c bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x9cedc698 qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d3a35b7 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d560259 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x9d58b170 param_set_bint +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x9d71e43e qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x9d72229b fsl_ifc_find +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d8283e9 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x9d8762ce commit_creds +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9db5b3db scsi_print_sense +EXPORT_SYMBOL vmlinux 0x9ddb2363 kobject_add +EXPORT_SYMBOL vmlinux 0x9ddd866c netif_carrier_on +EXPORT_SYMBOL vmlinux 0x9ddd9516 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x9dfcca55 down_write +EXPORT_SYMBOL vmlinux 0x9e0689a0 release_sock +EXPORT_SYMBOL vmlinux 0x9e0a4722 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e28a410 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e57f9d3 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e6c57ad jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7ff4e0 vme_register_driver +EXPORT_SYMBOL vmlinux 0x9e9e132a ipv4_specific +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9e9ffcb5 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x9eb6793c simple_transaction_release +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ef6e05e vme_register_bridge +EXPORT_SYMBOL vmlinux 0x9f0ac261 get_task_io_context +EXPORT_SYMBOL vmlinux 0x9f1fc38f d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x9f2eaa4f compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x9f3d5e06 devm_release_resource +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f67ef96 pci_disable_msi +EXPORT_SYMBOL vmlinux 0x9f6ba7dc padata_start +EXPORT_SYMBOL vmlinux 0x9f718dc2 param_set_byte +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9fb040a1 fb_set_cmap +EXPORT_SYMBOL vmlinux 0x9fb5db90 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe6ae22 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa0005074 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xa029e556 agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa0570f3b __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xa059e944 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa0649f22 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xa069c924 zero_fill_bio +EXPORT_SYMBOL vmlinux 0xa06de7e0 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xa0706835 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xa07a37f0 memchr +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0bdb056 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xa0c0a943 pci_restore_state +EXPORT_SYMBOL vmlinux 0xa0cab309 blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0efd483 tty_name +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa10d9665 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa12484d0 module_refcount +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa141cc33 of_match_node +EXPORT_SYMBOL vmlinux 0xa15e9348 scsi_print_command +EXPORT_SYMBOL vmlinux 0xa160c84f keyring_clear +EXPORT_SYMBOL vmlinux 0xa17df20c tty_write_room +EXPORT_SYMBOL vmlinux 0xa1a677bd __f_setown +EXPORT_SYMBOL vmlinux 0xa1b6b939 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bedd5c mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1d1d813 scsi_verify_blk_ioctl +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 0xa21ddadb dquot_free_inode +EXPORT_SYMBOL vmlinux 0xa2224078 security_path_chmod +EXPORT_SYMBOL vmlinux 0xa23bc26f bio_chain +EXPORT_SYMBOL vmlinux 0xa25efe8b inet_register_protosw +EXPORT_SYMBOL vmlinux 0xa2623213 mmc_put_card +EXPORT_SYMBOL vmlinux 0xa268c1db default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xa272ad70 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xa2825e45 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa292e975 tty_port_close_start +EXPORT_SYMBOL vmlinux 0xa29a3672 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2bc66b7 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xa2e27bd0 free_user_ns +EXPORT_SYMBOL vmlinux 0xa2e53155 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0xa2e85073 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa328a8fd inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xa32926f2 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xa3530027 del_gendisk +EXPORT_SYMBOL vmlinux 0xa35f928a dcache_readdir +EXPORT_SYMBOL vmlinux 0xa36fcc14 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xa381944f dql_reset +EXPORT_SYMBOL vmlinux 0xa399b1e2 replace_mount_options +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa39df3e1 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3c47b24 __napi_schedule +EXPORT_SYMBOL vmlinux 0xa3cd6296 nd_iostat_end +EXPORT_SYMBOL vmlinux 0xa3d582d5 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0xa3e75545 flush_tlb_kernel_range +EXPORT_SYMBOL vmlinux 0xa4144dc0 d_make_root +EXPORT_SYMBOL vmlinux 0xa416da02 mmc_get_card +EXPORT_SYMBOL vmlinux 0xa4344e03 scsi_unregister +EXPORT_SYMBOL vmlinux 0xa43e6879 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa493d95f file_path +EXPORT_SYMBOL vmlinux 0xa4a4bd91 param_set_ulong +EXPORT_SYMBOL vmlinux 0xa4a7349c zpool_register_driver +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4af57df ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xa4b40b12 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4dca379 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xa52506f7 pci_release_region +EXPORT_SYMBOL vmlinux 0xa53cc64c dst_init +EXPORT_SYMBOL vmlinux 0xa5485c52 iterate_mounts +EXPORT_SYMBOL vmlinux 0xa548e207 __lock_page +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa560ccfd ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa584ddc9 register_filesystem +EXPORT_SYMBOL vmlinux 0xa58b6092 neigh_lookup +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5affd91 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0xa5c03d6f kernel_param_lock +EXPORT_SYMBOL vmlinux 0xa5cbb155 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xa5f34a71 vme_slot_num +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63571bd inet_put_port +EXPORT_SYMBOL vmlinux 0xa63c2e13 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xa6544a49 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa66c4c87 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68cb81b param_get_invbool +EXPORT_SYMBOL vmlinux 0xa6a7e3f9 pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xa6af76cf of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xa6cc4dba blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xa6d48e53 dma_set_mask +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7002bc9 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0xa7110ca3 genphy_suspend +EXPORT_SYMBOL vmlinux 0xa7182d51 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa7209f68 sock_i_ino +EXPORT_SYMBOL vmlinux 0xa72c655b pci_iomap +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa7625b2e udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0xa787b93d get_acl +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7a116f1 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xa7b23f17 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xa7c4d501 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xa7d02d02 __nlmsg_put +EXPORT_SYMBOL vmlinux 0xa7d47b5a alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xa7df7394 inet_getname +EXPORT_SYMBOL vmlinux 0xa7e9e6ab param_get_ushort +EXPORT_SYMBOL vmlinux 0xa805c782 dm_get_device +EXPORT_SYMBOL vmlinux 0xa807d9a2 led_update_brightness +EXPORT_SYMBOL vmlinux 0xa8138c3c page_readlink +EXPORT_SYMBOL vmlinux 0xa81803e2 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xa824b10c security_path_mkdir +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa845820d tty_unlock +EXPORT_SYMBOL vmlinux 0xa8505d80 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xa86b679f down_read +EXPORT_SYMBOL vmlinux 0xa86fbb47 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa89abfe6 get_super +EXPORT_SYMBOL vmlinux 0xa8b10fb6 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xa8c2fcd8 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xa8cc0b7d skb_pad +EXPORT_SYMBOL vmlinux 0xa8cd8f85 __init_rwsem +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa917857b neigh_event_ns +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 0xa9732e1a phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa97ca8bd blk_queue_split +EXPORT_SYMBOL vmlinux 0xa989e170 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xa98ffeb2 netif_device_attach +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9a0260b tcp_conn_request +EXPORT_SYMBOL vmlinux 0xa9a32942 submit_bh +EXPORT_SYMBOL vmlinux 0xa9ab1f74 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xaa0fec5e nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xaa31ee19 set_user_nice +EXPORT_SYMBOL vmlinux 0xaa38cafd seq_open +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa48dde0 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xaa595a3d alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0xaa5ad080 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xaa64ae10 udp_del_offload +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa819cfc put_io_context +EXPORT_SYMBOL vmlinux 0xaa9f0021 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xaaab8067 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xaaacd52e sock_diag_put_filterinfo +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 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab47b1d9 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xab5c8d36 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xab68aaaf sk_stream_error +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab7005c4 vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xabbb0eac xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xabbd834d kfree_put_link +EXPORT_SYMBOL vmlinux 0xabc61ace remove_arg_zero +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabdd3f95 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xabded3b1 mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0xabec9c2b netdev_err +EXPORT_SYMBOL vmlinux 0xabf4e156 netpoll_setup +EXPORT_SYMBOL vmlinux 0xabfc7eb7 agp_put_bridge +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac161e72 simple_readpage +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac4f9dad km_policy_expired +EXPORT_SYMBOL vmlinux 0xac620e8d neigh_ifdown +EXPORT_SYMBOL vmlinux 0xac6c7cc7 security_path_mknod +EXPORT_SYMBOL vmlinux 0xac70b0fa vm_stat +EXPORT_SYMBOL vmlinux 0xac898c8e tcf_hash_create +EXPORT_SYMBOL vmlinux 0xaca08bd4 __devm_release_region +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacc41358 seq_release +EXPORT_SYMBOL vmlinux 0xacc457dc of_get_min_tck +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xacc897ae __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacda8226 dev_uc_add +EXPORT_SYMBOL vmlinux 0xace377e7 registered_fb +EXPORT_SYMBOL vmlinux 0xacf328c9 scm_detach_fds +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 0xad2213fc elevator_exit +EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free +EXPORT_SYMBOL vmlinux 0xad818fd1 key_task_permission +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad91d810 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xadc2446b iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xade586e4 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae20f119 __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae65f027 input_event +EXPORT_SYMBOL vmlinux 0xae6ab8c9 ps2_drain +EXPORT_SYMBOL vmlinux 0xae72e36c simple_release_fs +EXPORT_SYMBOL vmlinux 0xae7fa0db locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xae964d68 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0xae9676b6 flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xaea3c628 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0xaebd3f63 kernel_bind +EXPORT_SYMBOL vmlinux 0xaec0af8f scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0xaecce8fe path_put +EXPORT_SYMBOL vmlinux 0xaef2b447 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xaef9d030 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf10cb19 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf48eff9 proto_register +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf7a945d nonseekable_open +EXPORT_SYMBOL vmlinux 0xaf7b969a __skb_tx_hash +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf9e076e inetdev_by_index +EXPORT_SYMBOL vmlinux 0xafac0251 i2c_master_recv +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafb642dc md_register_thread +EXPORT_SYMBOL vmlinux 0xafbee930 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xafc2c45f scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xafd77195 generic_getxattr +EXPORT_SYMBOL vmlinux 0xafda2b0b generic_listxattr +EXPORT_SYMBOL vmlinux 0xafdc7628 sock_from_file +EXPORT_SYMBOL vmlinux 0xafdf95cf skb_queue_head +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb0081027 mntput +EXPORT_SYMBOL vmlinux 0xb00f2b68 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0xb0259828 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xb027bc6c sk_stream_write_space +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb05d4a7a i2c_clients_command +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0992304 update_region +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0a2a5b8 vfs_readv +EXPORT_SYMBOL vmlinux 0xb0ad2d25 sys_fillrect +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0cc06a6 set_posix_acl +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0ec5b18 pci_get_subsys +EXPORT_SYMBOL vmlinux 0xb0ff54a6 invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xb11459ae wireless_send_event +EXPORT_SYMBOL vmlinux 0xb118eaf7 __destroy_inode +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb132f9c5 try_to_release_page +EXPORT_SYMBOL vmlinux 0xb13d9bc9 vga_tryget +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 0xb177886e mmc_start_req +EXPORT_SYMBOL vmlinux 0xb17caf9b __secpath_destroy +EXPORT_SYMBOL vmlinux 0xb18ee41b simple_transaction_set +EXPORT_SYMBOL vmlinux 0xb1996707 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xb1b1378a blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0xb1bf0406 __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xb1bf3b2f scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1c6e787 wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xb1c84f3a pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xb1cf44df fb_find_best_mode +EXPORT_SYMBOL vmlinux 0xb1ea1950 agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xb1f9f85e km_state_notify +EXPORT_SYMBOL vmlinux 0xb22adc6e mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xb22d5cde elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xb22fa0e8 sock_create_kern +EXPORT_SYMBOL vmlinux 0xb24b32db scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xb2624c20 file_update_time +EXPORT_SYMBOL vmlinux 0xb26319bb pagecache_get_page +EXPORT_SYMBOL vmlinux 0xb2656cfa bio_init +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb2774846 sock_create_lite +EXPORT_SYMBOL vmlinux 0xb2b2bb8e mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2bfdc8c mach_qemu_e500 +EXPORT_SYMBOL vmlinux 0xb2d2ac70 vfs_write +EXPORT_SYMBOL vmlinux 0xb2e24cac filemap_flush +EXPORT_SYMBOL vmlinux 0xb2f52af4 netlink_ack +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb30b31da mapping_tagged +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb346a352 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xb3613a64 tcp_poll +EXPORT_SYMBOL vmlinux 0xb3725d75 __get_page_tail +EXPORT_SYMBOL vmlinux 0xb3a83c01 mount_bdev +EXPORT_SYMBOL vmlinux 0xb3ac14f5 sk_net_capable +EXPORT_SYMBOL vmlinux 0xb3b48932 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0xb3c0f95b kernel_sendpage +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3f66645 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xb3f732e6 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb4070d33 put_filp +EXPORT_SYMBOL vmlinux 0xb40b6cae __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xb4117fd9 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42d0dd2 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xb43db0f3 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xb4571252 generic_key_instantiate +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 0xb4857cb7 ps2_command +EXPORT_SYMBOL vmlinux 0xb49c8c0c blk_end_request +EXPORT_SYMBOL vmlinux 0xb4af8f1b netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xb4cbf8b2 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xb4db2ebf blk_init_queue +EXPORT_SYMBOL vmlinux 0xb4df78aa input_allocate_device +EXPORT_SYMBOL vmlinux 0xb4e76a9b ip_setsockopt +EXPORT_SYMBOL vmlinux 0xb4ec5d07 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xb4ecb393 cdrom_open +EXPORT_SYMBOL vmlinux 0xb4f6d3c2 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0xb4fae2d9 __ip_dev_find +EXPORT_SYMBOL vmlinux 0xb5041b7b generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xb511ed3a max8925_bulk_write +EXPORT_SYMBOL vmlinux 0xb52e8298 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xb549b0d5 scsi_remove_device +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5784922 stop_tty +EXPORT_SYMBOL vmlinux 0xb5891d10 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xb59d2e3c inet6_release +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a9b263 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5ad584f generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xb5f87cb8 of_n_size_cells +EXPORT_SYMBOL vmlinux 0xb5f8d0ff param_set_uint +EXPORT_SYMBOL vmlinux 0xb609df58 security_path_unlink +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb64023df frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xb643464d backlight_device_register +EXPORT_SYMBOL vmlinux 0xb65faf14 abort_creds +EXPORT_SYMBOL vmlinux 0xb661a2e0 md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xb66f4f4b d_move +EXPORT_SYMBOL vmlinux 0xb672675f input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6845b85 follow_down +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69c0af3 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0xb6a61540 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6cc9d1a clear_user_page +EXPORT_SYMBOL vmlinux 0xb6cf7b14 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb768b4a6 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xb76c4d39 d_set_fallthru +EXPORT_SYMBOL vmlinux 0xb770be3e __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb77de253 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xb78bedd6 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xb79a4e1a store_fp_state +EXPORT_SYMBOL vmlinux 0xb7a2cc94 __dquot_free_space +EXPORT_SYMBOL vmlinux 0xb7aa22d0 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xb7ab1513 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xb7adcd3a __d_drop +EXPORT_SYMBOL vmlinux 0xb7b29d57 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7eea5ac devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0xb8006657 reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0xb814282b param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb8237be0 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb8318e0e dev_driver_string +EXPORT_SYMBOL vmlinux 0xb849b0c1 dquot_quota_on +EXPORT_SYMBOL vmlinux 0xb85ea99e generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8d837c6 register_gifconf +EXPORT_SYMBOL vmlinux 0xb9077dc1 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xb90a3b2a scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xb914baea pci_disable_device +EXPORT_SYMBOL vmlinux 0xb925fd0b scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xb946a83a eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0xb94c909b freeze_super +EXPORT_SYMBOL vmlinux 0xb951def4 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xb9587aeb devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xb975774a framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xb99eb457 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xb9b8f64b d_path +EXPORT_SYMBOL vmlinux 0xb9bf2875 phy_device_remove +EXPORT_SYMBOL vmlinux 0xb9ca2a6d nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f56811 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xb9f8b372 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xb9f9faaa setup_new_exec +EXPORT_SYMBOL vmlinux 0xba0d5149 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xba220fe1 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xba3a285f tcf_action_exec +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba6363b3 __dax_fault +EXPORT_SYMBOL vmlinux 0xba8808bc fget_raw +EXPORT_SYMBOL vmlinux 0xbabff032 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0xbad32e39 blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xbadc7d6b jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xbae2d6c8 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xbae39e30 phy_device_create +EXPORT_SYMBOL vmlinux 0xbafdd5e2 insert_inode_locked +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb0d0876 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0xbb1f9b5b param_set_int +EXPORT_SYMBOL vmlinux 0xbb2b28c4 bio_map_kern +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb450978 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb5eeeaf flush_signals +EXPORT_SYMBOL vmlinux 0xbb6ce0df blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xbb8f643f rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0xbb91274e swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xbb9612e4 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbae8b2b elevator_alloc +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbc694e3 max8925_set_bits +EXPORT_SYMBOL vmlinux 0xbc08379f __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xbc27fac4 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xbc2953ec sock_no_poll +EXPORT_SYMBOL vmlinux 0xbc2e466c inet_addr_type +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc52136a mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0xbc586b11 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xbc9d4fb9 sock_create +EXPORT_SYMBOL vmlinux 0xbca7cb48 security_path_rename +EXPORT_SYMBOL vmlinux 0xbcb912a6 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xbcbe474a fs_bio_set +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcccd25b vfs_iter_write +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbd02fdbe ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0xbd0d3a7f lock_fb_info +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd38be1a mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xbd3f0711 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xbd42773b nobh_truncate_page +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd49a80b pci_request_regions +EXPORT_SYMBOL vmlinux 0xbd66f03f inode_init_always +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 0xbd99fe11 __module_get +EXPORT_SYMBOL vmlinux 0xbd9e1537 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xbdbe4806 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xbdda0fe9 __register_nls +EXPORT_SYMBOL vmlinux 0xbded8759 keyring_search +EXPORT_SYMBOL vmlinux 0xbdf3d8e4 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0xbdf7f344 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2248bc led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0xbe5187a2 fb_set_var +EXPORT_SYMBOL vmlinux 0xbe5a3cef bio_endio +EXPORT_SYMBOL vmlinux 0xbebfb05c udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0xbed14a6a nf_getsockopt +EXPORT_SYMBOL vmlinux 0xbee4a25e __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbf0fae6f dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0xbf146162 vm_event_states +EXPORT_SYMBOL vmlinux 0xbf3c17db dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xbf439e81 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xbf786232 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa0cf2c uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xbfa3ad43 dump_truncate +EXPORT_SYMBOL vmlinux 0xbfa7ee62 pci_assign_resource +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfafc72f blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfc9b3b1 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xbfecaa76 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff610cb vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xbfff1df0 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xc0532e92 vme_irq_handler +EXPORT_SYMBOL vmlinux 0xc05b975e of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xc06e56e1 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0902948 input_release_device +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0b3cbdf tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xc0d387a0 __scm_destroy +EXPORT_SYMBOL vmlinux 0xc0d92d57 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xc0e61f0a clkdev_alloc +EXPORT_SYMBOL vmlinux 0xc10d698d input_grab_device +EXPORT_SYMBOL vmlinux 0xc10e31d6 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc188c449 vme_irq_free +EXPORT_SYMBOL vmlinux 0xc18fa08e mdiobus_scan +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e02039 dev_open +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1e9cd29 put_disk +EXPORT_SYMBOL vmlinux 0xc1f7f224 dev_warn +EXPORT_SYMBOL vmlinux 0xc206045e napi_consume_skb +EXPORT_SYMBOL vmlinux 0xc2177c41 simple_transaction_read +EXPORT_SYMBOL vmlinux 0xc21ed45e ps2_end_command +EXPORT_SYMBOL vmlinux 0xc229f999 i2c_register_driver +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc248b3ff of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xc26075d2 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xc26cd0b2 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0xc2776a64 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0xc297a977 inet_add_offload +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc29c493d pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xc2a51251 path_get +EXPORT_SYMBOL vmlinux 0xc2a5ff57 scsi_add_device +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2d980c9 filp_close +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc3462d46 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0xc383fe3e seq_file_path +EXPORT_SYMBOL vmlinux 0xc388c941 __kfree_skb +EXPORT_SYMBOL vmlinux 0xc39a89e0 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xc3b5347e gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3e6b489 down_read_trylock +EXPORT_SYMBOL vmlinux 0xc4021806 proc_set_size +EXPORT_SYMBOL vmlinux 0xc402e3e3 netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xc403477c crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xc410c535 udp_proc_register +EXPORT_SYMBOL vmlinux 0xc41e13b9 __register_chrdev +EXPORT_SYMBOL vmlinux 0xc41e8087 generic_delete_inode +EXPORT_SYMBOL vmlinux 0xc4278514 tcp_connect +EXPORT_SYMBOL vmlinux 0xc4355b8d add_disk +EXPORT_SYMBOL vmlinux 0xc43c37b6 blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc45f5dca blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc499189c fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc49c7543 iov_iter_init +EXPORT_SYMBOL vmlinux 0xc4a191bf lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0xc4b33572 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xc4b5e6c0 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xc4fa02f6 get_super_thawed +EXPORT_SYMBOL vmlinux 0xc50e95db pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xc51a442e udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xc52845af param_ops_int +EXPORT_SYMBOL vmlinux 0xc52d962c rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc56cb418 sock_wake_async +EXPORT_SYMBOL vmlinux 0xc574f562 ilookup5 +EXPORT_SYMBOL vmlinux 0xc58d0706 blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0xc59527e3 flow_cache_init +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5bcde5a sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xc5bfbabf sock_sendmsg +EXPORT_SYMBOL vmlinux 0xc5c7a821 mmc_free_host +EXPORT_SYMBOL vmlinux 0xc5d4f04c up_read +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5daa232 arp_send +EXPORT_SYMBOL vmlinux 0xc5f08e94 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xc5f83af1 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc603245b bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xc6253768 __napi_complete +EXPORT_SYMBOL vmlinux 0xc62bbe22 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xc62d78c7 __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc63a6eaf sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xc653d860 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc66044af generic_setlease +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc679535e vfs_setpos +EXPORT_SYMBOL vmlinux 0xc685e14f __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xc69c837a lwtunnel_input +EXPORT_SYMBOL vmlinux 0xc6bed41a fd_install +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6cbc7c5 tty_set_operations +EXPORT_SYMBOL vmlinux 0xc71506c1 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xc719e13e ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0xc71ba00e netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7250057 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xc72d694f vfs_writev +EXPORT_SYMBOL vmlinux 0xc747efdc ip_getsockopt +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7571a03 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +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 0xc7898275 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xc791779b tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7aac190 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xc7e149d7 lro_flush_all +EXPORT_SYMBOL vmlinux 0xc7e6431c vc_cons +EXPORT_SYMBOL vmlinux 0xc7e99347 vfs_read +EXPORT_SYMBOL vmlinux 0xc7fa746a dev_add_pack +EXPORT_SYMBOL vmlinux 0xc809a60c dev_mc_flush +EXPORT_SYMBOL vmlinux 0xc8261864 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xc8382327 pci_select_bars +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 0xc8616014 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8787b78 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xc879943a pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89c9b82 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0xc89de2a7 dmam_pool_create +EXPORT_SYMBOL vmlinux 0xc8a5bbc3 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8be8e89 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0xc8c80f45 of_node_get +EXPORT_SYMBOL vmlinux 0xc8e04db9 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xc90ccbab blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc91ca8c7 blk_put_queue +EXPORT_SYMBOL vmlinux 0xc92545fd xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9782a51 security_file_permission +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc97d30c3 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0xc9822e0d freezing_slow_path +EXPORT_SYMBOL vmlinux 0xc99ba9dc bdev_stack_limits +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9b1f5ca fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0xc9c4be6a posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xc9e013e7 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xc9f0dc59 dquot_destroy +EXPORT_SYMBOL vmlinux 0xca0aa325 led_blink_set +EXPORT_SYMBOL vmlinux 0xca0e9e49 simple_lookup +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca16e37d blk_finish_request +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca32e701 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca450ee6 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0xca47d22b nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca682f96 skb_append +EXPORT_SYMBOL vmlinux 0xca7a5f74 set_page_dirty +EXPORT_SYMBOL vmlinux 0xca82f094 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca98d6fc blk_run_queue +EXPORT_SYMBOL vmlinux 0xcaa1f445 of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0xcacb04b1 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcad34a36 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf41cff pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb102df9 param_set_ushort +EXPORT_SYMBOL vmlinux 0xcb6a1755 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xcb6d3f24 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xcb764750 flush_old_exec +EXPORT_SYMBOL vmlinux 0xcb7f69fd fget +EXPORT_SYMBOL vmlinux 0xcb841288 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xcb85338a kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcba059b2 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc72523 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbe15e7c of_get_next_parent +EXPORT_SYMBOL vmlinux 0xcbe7b15c kill_pid +EXPORT_SYMBOL vmlinux 0xcbe99fde unregister_filesystem +EXPORT_SYMBOL vmlinux 0xcc0b7ca1 giveup_altivec +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc21cbaa xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2585d2 flush_tlb_range +EXPORT_SYMBOL vmlinux 0xcc46303e __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xcc469b2e vfs_iter_read +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc608992 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0xcc70f76a override_creds +EXPORT_SYMBOL vmlinux 0xcc79325c posix_lock_file +EXPORT_SYMBOL vmlinux 0xcc95e362 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xccbd8bac page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccd0ba34 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xcce3ae4d tty_port_close +EXPORT_SYMBOL vmlinux 0xccf1fc3a dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd62d082 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xcd7ecf0f phy_stop +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcdada80c pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc9d696 set_security_override +EXPORT_SYMBOL vmlinux 0xcdcd0b31 vme_master_mmap +EXPORT_SYMBOL vmlinux 0xcdd8a344 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xcde94efa inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xce11881f blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xce257a69 skb_make_writable +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce35eea1 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xce38bf7a setattr_copy +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce3d48fe scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce702cc1 i2c_use_client +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xcea01a86 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xcea68570 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceb12759 end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xceb51802 mdiobus_read +EXPORT_SYMBOL vmlinux 0xcec20a2c i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0xcec56486 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xcec766ee tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xcec886d8 param_get_long +EXPORT_SYMBOL vmlinux 0xced31e2c put_page +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xceeba403 dm_unregister_target +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefaebd8 param_ops_string +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf14291f netdev_features_change +EXPORT_SYMBOL vmlinux 0xcf1d32fd jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0xcf221ddf skb_pull +EXPORT_SYMBOL vmlinux 0xcf251143 d_splice_alias +EXPORT_SYMBOL vmlinux 0xcf2c4443 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xcf4936b3 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xcf786ba9 scsi_device_put +EXPORT_SYMBOL vmlinux 0xcf875958 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xcf8a76e4 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xcf8c06a1 follow_pfn +EXPORT_SYMBOL vmlinux 0xcf9356d6 fasync_helper +EXPORT_SYMBOL vmlinux 0xcf976c87 kset_unregister +EXPORT_SYMBOL vmlinux 0xcfa5909f ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xcfc260ad input_unregister_handler +EXPORT_SYMBOL vmlinux 0xcfc44a56 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xcfc5f393 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xcff4f7fc revalidate_disk +EXPORT_SYMBOL vmlinux 0xd0390777 key_put +EXPORT_SYMBOL vmlinux 0xd058b626 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xd05bcf6c contig_page_data +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd0745155 input_free_device +EXPORT_SYMBOL vmlinux 0xd088dc3e file_remove_privs +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 0xd0b1ca65 input_flush_device +EXPORT_SYMBOL vmlinux 0xd0b7aa24 get_tz_trend +EXPORT_SYMBOL vmlinux 0xd0c673c6 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xd0cb101d proc_set_user +EXPORT_SYMBOL vmlinux 0xd0e4d7f3 mdiobus_alloc_size +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 0xd107248f ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xd1128945 find_get_entry +EXPORT_SYMBOL vmlinux 0xd1184e95 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xd127d641 nvm_register_target +EXPORT_SYMBOL vmlinux 0xd13127ca get_cached_acl +EXPORT_SYMBOL vmlinux 0xd1469f21 dump_align +EXPORT_SYMBOL vmlinux 0xd155aebe compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xd164fa87 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1823a2c redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xd1863a30 pci_dev_get +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1d89e0d mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0xd1ee4462 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xd223fec8 scsi_host_get +EXPORT_SYMBOL vmlinux 0xd238bab7 netif_skb_features +EXPORT_SYMBOL vmlinux 0xd23ad630 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xd240ff84 cdev_alloc +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 0xd273765b pci_get_slot +EXPORT_SYMBOL vmlinux 0xd275fb74 read_cache_pages +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27ed93d mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xd296bbae tcp_proc_register +EXPORT_SYMBOL vmlinux 0xd29c5623 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0xd2ad3e8b scsi_print_result +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2b38724 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0xd2d87b98 nvm_register +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2da96db read_dev_sector +EXPORT_SYMBOL vmlinux 0xd2eaa240 inet_frags_init +EXPORT_SYMBOL vmlinux 0xd2fed806 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xd3033840 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xd30c63ae cdev_del +EXPORT_SYMBOL vmlinux 0xd315c68e cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd3207aa1 open_exec +EXPORT_SYMBOL vmlinux 0xd321c088 md_cluster_ops +EXPORT_SYMBOL vmlinux 0xd32f9427 key_type_keyring +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd383fb3d i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xd38d0881 vga_client_register +EXPORT_SYMBOL vmlinux 0xd390064b scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xd3906be2 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c517c5 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xd3d66169 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xd3e709c3 pci_choose_state +EXPORT_SYMBOL vmlinux 0xd41f180d eth_type_trans +EXPORT_SYMBOL vmlinux 0xd42518a9 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xd427670a inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd46df7b4 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xd4aab006 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xd4bdc14f xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd4c72eae inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0xd4f6560a mount_ns +EXPORT_SYMBOL vmlinux 0xd5044940 of_device_unregister +EXPORT_SYMBOL vmlinux 0xd504fea4 qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xd505b838 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xd50e422e cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xd51d5713 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xd51fd2aa pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xd532a4f5 iterate_dir +EXPORT_SYMBOL vmlinux 0xd54e7d70 get_unmapped_area +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55228cd pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0xd56640d1 nf_log_unregister +EXPORT_SYMBOL vmlinux 0xd566c66c init_special_inode +EXPORT_SYMBOL vmlinux 0xd56a651c ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xd5754802 jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xd58848cf netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5950abc request_key +EXPORT_SYMBOL vmlinux 0xd5a6b8ba agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0xd5b35687 write_inode_now +EXPORT_SYMBOL vmlinux 0xd5c26f2e dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xd5cb0927 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0xd5ce873e generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xd5fc24ce dup_iter +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd625fa6a tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd62db53f account_page_redirty +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd649a7f9 sget +EXPORT_SYMBOL vmlinux 0xd657ff13 of_phy_connect +EXPORT_SYMBOL vmlinux 0xd65d3eba sget_userns +EXPORT_SYMBOL vmlinux 0xd66bb115 user_path_create +EXPORT_SYMBOL vmlinux 0xd680c910 pci_claim_resource +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd693a60c tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xd6ac6dd5 d_obtain_root +EXPORT_SYMBOL vmlinux 0xd6c33830 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xd6d06f14 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6edbcb1 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6f03e5d loop_backing_file +EXPORT_SYMBOL vmlinux 0xd6f1ddfb __seq_open_private +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd7062af7 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd70b8661 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xd72e90c0 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xd7497b59 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0xd74c2042 get_phy_device +EXPORT_SYMBOL vmlinux 0xd757457a blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd76c6ead mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xd78dd483 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xd7a9d5b4 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xd7aecb36 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xd7b14b56 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xd7c49366 dquot_commit +EXPORT_SYMBOL vmlinux 0xd7e1497a md_write_start +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e58b1f unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7fea3fe bio_reset +EXPORT_SYMBOL vmlinux 0xd807ccdc remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xd82c1380 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xd834f8d7 bioset_free +EXPORT_SYMBOL vmlinux 0xd83fecfd buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xd8421186 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xd849b276 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0xd8505d85 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xd85832be from_kgid +EXPORT_SYMBOL vmlinux 0xd86a7450 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xd8991b0b blk_end_request_all +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8b317a7 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8dfb2ed of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xd8e0c34f netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8f8cb8e __blk_end_request +EXPORT_SYMBOL vmlinux 0xd90f80c7 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0xd915b446 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xd949acbd dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xd951a4d4 netlink_broadcast +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd9a1ea71 __scm_send +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9d42855 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e8b457 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xd9f1f022 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xda12cffa scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0xda25e81c tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda41ae8e skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xda72eabb copy_from_iter_nocache +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 0xdabc1ea8 fsl_lbc_find +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdac545b9 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0xdacaeac9 napi_complete_done +EXPORT_SYMBOL vmlinux 0xdad7adff dqstats +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaf70194 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xdafdac16 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xdafebf3c __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb2726be __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xdb2e284a get_gendisk +EXPORT_SYMBOL vmlinux 0xdb346285 sys_imageblit +EXPORT_SYMBOL vmlinux 0xdb3b9502 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb4ac327 input_set_capability +EXPORT_SYMBOL vmlinux 0xdb67c717 __frontswap_test +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb72e015 param_set_charp +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb81d72e iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xdb8baaff nf_register_hook +EXPORT_SYMBOL vmlinux 0xdb94cc5e vfs_link +EXPORT_SYMBOL vmlinux 0xdb95cfde qdisc_destroy +EXPORT_SYMBOL vmlinux 0xdb991b1f mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xdbd8142a kill_block_super +EXPORT_SYMBOL vmlinux 0xdbe0a0c9 param_ops_short +EXPORT_SYMBOL vmlinux 0xdbe5761f sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xdbec96b1 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xdc028f2a kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc1bb7fc tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xdc1c627e netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc32c7fa tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xdc399d8a agp_generic_remove_memory +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 0xdc5eda57 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xdc64e0d9 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xdc724cda agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdc9e129c inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xdca6a5d8 ppp_input_error +EXPORT_SYMBOL vmlinux 0xdcae566f phy_resume +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcddc540 dump_page +EXPORT_SYMBOL vmlinux 0xdd1d1c23 bdev_read_only +EXPORT_SYMBOL vmlinux 0xdd4362c2 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0xdd49637c inet6_bind +EXPORT_SYMBOL vmlinux 0xdd608b2c phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd65618d __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xdd9ddece lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddd678e7 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0xdde1f964 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xdde3a117 sg_miter_start +EXPORT_SYMBOL vmlinux 0xddf77b78 vfs_symlink +EXPORT_SYMBOL vmlinux 0xde05a5af i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xde076665 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xde09eff0 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xde166048 dev_deactivate +EXPORT_SYMBOL vmlinux 0xde1bddff blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xde2db8fb neigh_app_ns +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde4adefa skb_vlan_push +EXPORT_SYMBOL vmlinux 0xde4f6f57 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xde550ca5 __sock_create +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde69f445 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xde91448c load_vr_state +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde99a233 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xde9b17ed agp3_generic_fetch_size +EXPORT_SYMBOL vmlinux 0xdeb0d1cc kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0xdec51155 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xdecbe999 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xded143ac scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xdef84ff0 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xdf06fc4b nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xdf2718cf sock_release +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf414978 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf61cb1b eth_gro_complete +EXPORT_SYMBOL vmlinux 0xdf67ee93 skb_split +EXPORT_SYMBOL vmlinux 0xdf8ff8f1 neigh_seq_next +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf94b8c8 set_nlink +EXPORT_SYMBOL vmlinux 0xdf94ed5a of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xdfb3551c textsearch_register +EXPORT_SYMBOL vmlinux 0xdfeb95e0 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xdfec8f71 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe019f754 tty_free_termios +EXPORT_SYMBOL vmlinux 0xe03c01a3 devm_request_resource +EXPORT_SYMBOL vmlinux 0xe0479e1c of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xe049806a dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe05968c9 of_find_node_with_property +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe0750030 nf_afinfo +EXPORT_SYMBOL vmlinux 0xe075c2eb param_set_short +EXPORT_SYMBOL vmlinux 0xe075d6eb iter_div_u64_rem +EXPORT_SYMBOL vmlinux 0xe07ddd6e kdb_current_task +EXPORT_SYMBOL vmlinux 0xe083e246 gen_pool_first_fit_order_align +EXPORT_SYMBOL vmlinux 0xe0875eb1 kstrtobool +EXPORT_SYMBOL vmlinux 0xe08a7c39 skb_tx_error +EXPORT_SYMBOL vmlinux 0xe0949497 of_node_put +EXPORT_SYMBOL vmlinux 0xe0adba80 tcf_register_action +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0b6e07c xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0xe0bdeb03 page_symlink +EXPORT_SYMBOL vmlinux 0xe0e7195c tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe11af20a ilookup5_nowait +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe14da213 pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xe1535f9a sk_dst_check +EXPORT_SYMBOL vmlinux 0xe1647c42 key_reject_and_link +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe1886d6b crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xe18ba0a0 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xe191e51b sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0xe19a24f7 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xe19a38a0 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0xe1d98305 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xe1f45d5a generic_write_end +EXPORT_SYMBOL vmlinux 0xe1f972ea pci_add_new_bus +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe20b6a24 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xe21f00b7 skb_copy_bits +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23230f4 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xe237121d netif_rx_ni +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe249247b seq_pad +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe26721b8 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xe271dec4 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xe27347fc netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2a5622e dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2c89bd3 i2c_release_client +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e14a36 tcp_filter +EXPORT_SYMBOL vmlinux 0xe2f39970 napi_disable +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2f87962 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe34ae590 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0xe3836847 input_unregister_handle +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3ad8414 agp_create_memory +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c2aa38 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xe3d126d8 handle_edge_irq +EXPORT_SYMBOL vmlinux 0xe3d6a5fb address_space_init_once +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3eaaad8 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0xe3f64259 dev_uc_init +EXPORT_SYMBOL vmlinux 0xe4006fb3 simple_dir_operations +EXPORT_SYMBOL vmlinux 0xe400e1a7 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0xe401408d pci_set_power_state +EXPORT_SYMBOL vmlinux 0xe408d653 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xe432dcce sk_alloc +EXPORT_SYMBOL vmlinux 0xe4497469 skb_push +EXPORT_SYMBOL vmlinux 0xe47b6565 init_net +EXPORT_SYMBOL vmlinux 0xe47d6651 md_check_recovery +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe488b054 dput +EXPORT_SYMBOL vmlinux 0xe4942da2 consume_skb +EXPORT_SYMBOL vmlinux 0xe49ce386 unlock_new_inode +EXPORT_SYMBOL vmlinux 0xe4a05c1a unregister_quota_format +EXPORT_SYMBOL vmlinux 0xe4a6a079 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xe4c58224 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xe4cbdc05 ppp_register_channel +EXPORT_SYMBOL vmlinux 0xe4d04059 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xe4e5bdd4 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4e8265c serio_bus +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe529377a mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xe53f0966 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xe550be7a vfs_statfs +EXPORT_SYMBOL vmlinux 0xe5578c16 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0xe55a7181 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xe5694ee0 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5bcb891 pci_enable_device +EXPORT_SYMBOL vmlinux 0xe5c59a9a pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5d3059d bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xe5d6d2bb scsi_register +EXPORT_SYMBOL vmlinux 0xe5e8ff8b md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f0eb88 capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0xe60b3534 mntget +EXPORT_SYMBOL vmlinux 0xe63fc11e fb_show_logo +EXPORT_SYMBOL vmlinux 0xe644d479 inet6_getname +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe66452ab dql_init +EXPORT_SYMBOL vmlinux 0xe68827c2 register_md_personality +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6eb2b2d pid_task +EXPORT_SYMBOL vmlinux 0xe6ec6446 __devm_request_region +EXPORT_SYMBOL vmlinux 0xe6f46831 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0xe6f5bc10 ll_rw_block +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7030026 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xe70b0aea mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe7436345 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xe76f6cf6 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7eb30c0 simple_dname +EXPORT_SYMBOL vmlinux 0xe7f49868 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xe7f51a1f kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xe805b2a3 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82981ab blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0xe8398059 bd_set_size +EXPORT_SYMBOL vmlinux 0xe83be4f4 bioset_create +EXPORT_SYMBOL vmlinux 0xe857f99b tty_port_put +EXPORT_SYMBOL vmlinux 0xe864588a devm_clk_put +EXPORT_SYMBOL vmlinux 0xe88b1bfc add_random_ready_callback +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 0xe8c5076c agp_copy_info +EXPORT_SYMBOL vmlinux 0xe8e7918b mmc_of_parse +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe8fe47f7 of_dev_put +EXPORT_SYMBOL vmlinux 0xe902e78d mfd_cell_disable +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9154cc1 param_get_bool +EXPORT_SYMBOL vmlinux 0xe91e687e __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe950f566 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95faaa0 dget_parent +EXPORT_SYMBOL vmlinux 0xe96e3118 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xe97899a9 pipe_unlock +EXPORT_SYMBOL vmlinux 0xe98ebb4b wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xe9cb4e79 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xe9e287f5 d_lookup +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea1ffa2a phy_drivers_register +EXPORT_SYMBOL vmlinux 0xea4f6824 __serio_register_driver +EXPORT_SYMBOL vmlinux 0xea5a374c udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xea70aa39 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea8c7984 locks_remove_posix +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xea971d45 led_set_brightness +EXPORT_SYMBOL vmlinux 0xead0d086 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0xeaf7b7d9 padata_do_serial +EXPORT_SYMBOL vmlinux 0xeafc752f mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xeafcdb68 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0xeb0417eb i2c_get_adapter +EXPORT_SYMBOL vmlinux 0xeb220052 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xeb29fa73 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xeb2b38dc mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb3e14d3 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb668f30 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xeb6bce8d blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0xeb7cf6c9 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xeb82dfb4 vc_resize +EXPORT_SYMBOL vmlinux 0xeb894d0b neigh_parms_release +EXPORT_SYMBOL vmlinux 0xeb8d06a9 d_instantiate +EXPORT_SYMBOL vmlinux 0xeba262ca sock_no_getname +EXPORT_SYMBOL vmlinux 0xebafbe5f of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0xebd6a75a would_dump +EXPORT_SYMBOL vmlinux 0xebdcee80 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xec0ef0dc sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xec199aa6 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xec234a26 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xec2ac0f8 mmc_request_done +EXPORT_SYMBOL vmlinux 0xec34cc52 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xec41c7ef tty_check_change +EXPORT_SYMBOL vmlinux 0xec4265dc devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0xec4362c2 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xec4d9e3a clk_get_sys +EXPORT_SYMBOL vmlinux 0xec6f5a58 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xec782bc8 tcf_em_register +EXPORT_SYMBOL vmlinux 0xec9ac2bc blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0xeca66294 sock_kfree_s +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecca971f input_open_device +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xecdb06f3 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecfb3990 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xed0a62af inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xed13a7d1 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xed1fdc11 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xed543def jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xed5564ac padata_stop +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xeda7488d dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0xedb71c60 dev_err +EXPORT_SYMBOL vmlinux 0xedb72895 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc0c832 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xede360eb blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee04e690 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0xee086c61 mutex_unlock +EXPORT_SYMBOL vmlinux 0xee0d7b87 padata_do_parallel +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee319a19 cdev_add +EXPORT_SYMBOL vmlinux 0xee37c65a simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xee600516 load_nls +EXPORT_SYMBOL vmlinux 0xee602f61 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xee7f0677 bh_submit_read +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea2e921 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xeea5aacc sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeeafa860 uart_update_timeout +EXPORT_SYMBOL vmlinux 0xeeb5d652 simple_fill_super +EXPORT_SYMBOL vmlinux 0xeee115ee netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef01bec5 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xef0ffc27 of_translate_address +EXPORT_SYMBOL vmlinux 0xef4068e7 dev_alloc_name +EXPORT_SYMBOL vmlinux 0xef45ef36 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xef935e3c tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0xef9e6de5 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xefb86bb3 blk_mq_map_queue +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 0xefe299d1 tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0041f0f skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf02c9d84 security_path_rmdir +EXPORT_SYMBOL vmlinux 0xf02cb376 tty_do_resize +EXPORT_SYMBOL vmlinux 0xf0326241 pci_reenable_device +EXPORT_SYMBOL vmlinux 0xf04ff21e __elv_add_request +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf06f86f6 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf0855569 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a77aa1 kill_pgrp +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0d37142 ip6_xmit +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf1079c05 scsi_init_io +EXPORT_SYMBOL vmlinux 0xf1081e11 validate_sp +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf116e024 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf12f8a34 param_get_uint +EXPORT_SYMBOL vmlinux 0xf1363fc3 scsi_target_resume +EXPORT_SYMBOL vmlinux 0xf137f9fb qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf16c9bef ip_ct_attach +EXPORT_SYMBOL vmlinux 0xf1776c03 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xf17a79a0 blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf18bb716 unregister_console +EXPORT_SYMBOL vmlinux 0xf19575b1 have_submounts +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1970fcc devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xf1a1038f __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xf1be9536 tty_devnum +EXPORT_SYMBOL vmlinux 0xf1c3329f flush_dcache_page +EXPORT_SYMBOL vmlinux 0xf1c7f452 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xf1ce05ea _dev_info +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e44c85 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +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 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf25802ee xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xf25a7338 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0xf2714d22 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xf275a0cf pci_scan_bus +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 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c6ec09 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xf2d82872 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xf305a14b rtnl_unicast +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf322d457 mpage_readpages +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf33943a0 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34bfc5a dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf379ef87 is_bad_inode +EXPORT_SYMBOL vmlinux 0xf37a6326 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3ae2232 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xf3aeb4b8 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xf3bc1192 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xf3cd3ea7 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xf3d39c19 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xf3df463d ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ee23fe inet_bind +EXPORT_SYMBOL vmlinux 0xf3fba2ad swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0xf3fe2203 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xf42dd43d xfrm_state_add +EXPORT_SYMBOL vmlinux 0xf42faf8f tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xf432e6a0 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf44bd2ad writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xf4578139 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xf472fa89 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf48d1b94 serio_interrupt +EXPORT_SYMBOL vmlinux 0xf49b5c20 sk_wait_data +EXPORT_SYMBOL vmlinux 0xf4a0727d xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4c6fed4 tty_unthrottle +EXPORT_SYMBOL vmlinux 0xf4e0a7f0 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xf4e4e803 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xf4ea1acf tty_throttle +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf50399a3 uart_resume_port +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 0xf52e3a61 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xf53a35a8 vm_map_ram +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf543dc46 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xf54d871d rfkill_alloc +EXPORT_SYMBOL vmlinux 0xf54f28be __i2c_transfer +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf55ea5be jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5a9d4cc sk_receive_skb +EXPORT_SYMBOL vmlinux 0xf5ae91fc generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5d1812c bio_split +EXPORT_SYMBOL vmlinux 0xf5debdf1 nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5e458c0 dcb_setapp +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf60dd689 dquot_transfer +EXPORT_SYMBOL vmlinux 0xf616b87e xattr_full_name +EXPORT_SYMBOL vmlinux 0xf624b869 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64b737b __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xf65f3f49 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf67e1f99 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf6a61deb machine_id +EXPORT_SYMBOL vmlinux 0xf6acd33c rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0xf6b30409 dev_mc_del +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6df3afc __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0xf6e05604 seq_puts +EXPORT_SYMBOL vmlinux 0xf6e7fe60 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ed6dbe __genl_register_family +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf74c403d pci_pme_capable +EXPORT_SYMBOL vmlinux 0xf750d097 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf77eaeb5 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xf7cdc736 clkdev_add +EXPORT_SYMBOL vmlinux 0xf7d07aaa compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xf7d85091 clear_nlink +EXPORT_SYMBOL vmlinux 0xf7eba073 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xf7ec4ace simple_statfs +EXPORT_SYMBOL vmlinux 0xf80cad1c blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf815c484 udp6_csum_init +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82a5f15 input_get_keycode +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf86cb4b7 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xf88ac115 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xf8a19f6c scsi_dma_map +EXPORT_SYMBOL vmlinux 0xf8ab8f6f pci_dev_put +EXPORT_SYMBOL vmlinux 0xf8b36a2f pci_bus_put +EXPORT_SYMBOL vmlinux 0xf8bbf176 new_inode +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf91859b9 block_write_full_page +EXPORT_SYMBOL vmlinux 0xf920b17c scmd_printk +EXPORT_SYMBOL vmlinux 0xf9228003 get_immrbase +EXPORT_SYMBOL vmlinux 0xf92350da fb_blank +EXPORT_SYMBOL vmlinux 0xf93601b1 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xf941cccf kill_fasync +EXPORT_SYMBOL vmlinux 0xf94a6a90 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0xf95e516f dma_async_device_register +EXPORT_SYMBOL vmlinux 0xf97351ac bio_integrity_free +EXPORT_SYMBOL vmlinux 0xf97f282b mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xf988a4f9 inet6_add_offload +EXPORT_SYMBOL vmlinux 0xf9970207 release_firmware +EXPORT_SYMBOL vmlinux 0xf9a18920 iget5_locked +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9aacba6 single_open +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9cba7d5 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xf9e35f7f simple_follow_link +EXPORT_SYMBOL vmlinux 0xf9ed0732 key_alloc +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa1e418a ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0xfa204b02 netdev_crit +EXPORT_SYMBOL vmlinux 0xfa246f6c lookup_one_len +EXPORT_SYMBOL vmlinux 0xfa2f1502 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xfa350d12 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa596236 copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa61d3ac submit_bio +EXPORT_SYMBOL vmlinux 0xfa6b838f phy_find_first +EXPORT_SYMBOL vmlinux 0xfa70cf20 security_path_truncate +EXPORT_SYMBOL vmlinux 0xfa794830 __vfs_read +EXPORT_SYMBOL vmlinux 0xfa7bfc42 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xfa81c4b4 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0xfa8271ba end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xfa92d25f pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xfa9ec4ee xfrm_init_state +EXPORT_SYMBOL vmlinux 0xfaaaf58d tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0xfac3e7f8 clear_inode +EXPORT_SYMBOL vmlinux 0xfac76cb8 mipi_dsi_dcs_set_tear_on +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 0xfaf0332a set_create_files_as +EXPORT_SYMBOL vmlinux 0xfb03be37 input_register_device +EXPORT_SYMBOL vmlinux 0xfb03ee67 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xfb0bf232 tcf_hash_check +EXPORT_SYMBOL vmlinux 0xfb1fc58d skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xfb34be54 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xfb478e31 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xfb4aae06 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb4b9f9 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0xfbc3064b vfs_rename +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd1ab31 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xfbea40d1 __percpu_counter_init +EXPORT_SYMBOL vmlinux 0xfbf08187 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xfc004da9 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc92fd4b scsi_scan_target +EXPORT_SYMBOL vmlinux 0xfca9afd2 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0xfcae174f __dev_get_by_index +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 0xfcf9e0e0 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfb488f devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xfd24bc05 mutex_lock +EXPORT_SYMBOL vmlinux 0xfd266920 get_agp_version +EXPORT_SYMBOL vmlinux 0xfd28e5c3 devm_clk_get +EXPORT_SYMBOL vmlinux 0xfd3132d8 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xfd59e1b0 __getblk_gfp +EXPORT_SYMBOL vmlinux 0xfd60675f __register_binfmt +EXPORT_SYMBOL vmlinux 0xfd79c0c1 redraw_screen +EXPORT_SYMBOL vmlinux 0xfd86c251 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xfd89557b shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xfd9785cb inet6_ioctl +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfda60839 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xfda7674d agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb8554a tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfe018aa6 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe172fa5 mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xfe1b3ee7 ip_do_fragment +EXPORT_SYMBOL vmlinux 0xfe266e16 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xfe35aa4a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0xfe447030 ata_port_printk +EXPORT_SYMBOL vmlinux 0xfe510e03 hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xfe52604c dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0xfe5ae223 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5ef22e nd_btt_probe +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe98f9ba pci_iounmap +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee2cd65 eth_change_mtu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfefaa9e4 vlan_vid_add +EXPORT_SYMBOL vmlinux 0xff0898b7 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff4014f8 agp_bridge +EXPORT_SYMBOL vmlinux 0xff403c97 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xff49a5e0 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xff540b07 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff70ad93 fb_find_mode +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff802085 unregister_binfmt +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xff9fb182 inet_ioctl +EXPORT_SYMBOL vmlinux 0xffaa2a41 __sb_end_write +EXPORT_SYMBOL vmlinux 0xffacc0e6 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffeaab4f lwtunnel_encap_add_ops +EXPORT_SYMBOL_GPL crypto/af_alg 0x15cdd261 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x1e152aa3 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x3427b69f af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0x43acb71e af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x6a5d1783 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0xb95abf58 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xbc510989 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xc53fbd0a af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xcd267aab af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xd8fde80b af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0x62e9fdac async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x096c10f8 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x714b9fca async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x57c55882 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x833d71aa async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0cd2ac06 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x281e8a5d async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x7af851b1 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xa6e961ce __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x3be54cd5 async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x737f8eb5 async_xor_val +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 0x0208354b ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x02a94820 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x15778f7f ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1da5d064 ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x2d663311 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x37db70d4 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x415a5edd ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4b5ca84e ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x51ef2856 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5bb11955 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5d0279b2 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6a53bb34 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6cdf64ec ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6e1bbdec ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbba14e04 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbd9e201d ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xc48bd7ba ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd83208c7 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xdfb4b321 ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe1efe59d ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef899add ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf2fe3931 ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf72dc827 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0f08ecb0 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x10c8a64d ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x59cb9b55 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5ecb9308 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9c685082 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc712fa57 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe62afabc ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf14e4d9d ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xfc927b2f ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0x09b9f9e5 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xeeef84d3 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 0x3125d7d9 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x634c1a4b __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe89cd163 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xe9b375d0 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x087d0a89 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x1932edab bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x395f622b bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3c812101 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x44107af8 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4a9ce6b6 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x50af392b bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x56cffa45 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x69a846d5 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x6f446e7b bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8bd4ffa8 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9f73bde7 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa140085f bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa18aa73f bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa71a5e38 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb1a2a251 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7d6d69f bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb935c588 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc38aed57 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc6beb4f8 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe06efa3d bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe2f10c24 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe43f14f1 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe9c883c9 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x1ef80d1a btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2297d93e btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x37405cd4 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3775a2c6 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x91551c43 btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xbc631328 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x014ff865 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x04b25363 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x23adc5df btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3f0c8a69 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x49880d92 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x6542c79d btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x65fd88be btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x791395b6 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9600912f btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc685690f btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd614d824 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xfa61730a btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1d12be50 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x2e0c8025 btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4bdac19a btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x4f918d87 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7739a1b2 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x960e8c8b btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xa6dd3756 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xac7e7c60 btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xcd3ee4a5 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd6445962 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xe16fb7c8 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2c23e4ac qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x82410dd4 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xc2cfd4cf btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x22c7d128 h4_recv_buf +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x232b6b43 dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x808e6f48 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xb2e582fa dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd4423fd4 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd55c3edd dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/fsldma 0x1eb9441f fsl_dma_external_start +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x241da618 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xd7b815f6 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xe15822d7 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x14d761af vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xb3cf5b09 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xefb0ad87 vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xf2f4a65f vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x05598ec7 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x05860261 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0db49a11 edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0f8d99e5 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x23f61d48 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2b9ab143 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2d3a4ece edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4192b698 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4b012bab edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x4fef5912 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x51f8fda3 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 0x7388e3d0 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x77430f7a edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x78305c89 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x79a5b9dc edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x85f2da52 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8ec1e52e edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x907d0ca7 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcea000da edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xcf3e2bed edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe8157438 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xee5a4f52 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf309333d edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x08f3d6d4 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x0ac74334 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4392ef0d fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x4ce7e9ee fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd3d0bb44 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe07ddb3d fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x4fdfc461 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x9a3fffab bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x5ff0bf93 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xa2ea670e __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x3cf8db2c drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x4ff72431 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x5eef2b40 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x67ccd263 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x71120628 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xc007c437 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x4b9616f6 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 0x881c4e66 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0xafa9d884 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 0x0797f54e hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08512797 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08b8791b hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x19e01e90 hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2d3340e5 hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2f5cdc2c hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x357a1656 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0x37171f14 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3c6a4fa3 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x52938285 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x55731bd4 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x598b23a4 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5c57496e __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x73ddb246 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x74c20992 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x754c95c5 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x77b72b64 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7d1ce4fe hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x815d7675 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x82be44c0 hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8839d411 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8fc389a6 hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa2e5cdbf hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa4588b6f hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaf1256fe hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb45ea900 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb5e3c02e hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc60ce377 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc62e3e29 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe3e4352d hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xedfa7c28 hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf5224b02 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfa0babd2 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfad3bf98 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfb7b2111 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xff484a39 hidraw_report_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 0xb186c1f4 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x0bef7e40 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x42e0cebb roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x46613b2e roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x64861e7e roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc61ee552 roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xebdaf9ee roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x1e5e340b sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x2c670caa sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x4644e18c hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x48d9c4fa sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x866a4184 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xc05211d9 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xed552de6 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf267ed2a sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xfb39b110 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0xda73b974 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x05a76536 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x062b06a3 hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2627b29a hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x29d217cc hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x2b1ad3ec hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x591f7e3e hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x61a5a276 hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x78074950 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x82b18a3c hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x952e53ac hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x9705450f hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa0c9ae4a hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xae7ef426 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xbdb6628b hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xcaedbc1f hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe2482832 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe47ab7e4 hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf1f91b13 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x3c71f504 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5bfa2edc adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0d5d280b pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0e9e2eb2 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x22c458db pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x247b4e0f pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5a270429 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5a90db40 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x5eeec4bf pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x722ee24b pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x85c39ab5 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8e7c2ceb pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xc388806b pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xca73eb58 pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xcc40b516 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xe3cd456a pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xfe52d4c7 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x510b0302 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x615042a1 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaa8db404 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb25a0cca intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc2a1e94a intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xc4d46511 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xcee4112a intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x23a910df stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x2e5d8f67 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa44fe1fa stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa57915ce stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb0695237 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x003e2877 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x0084fa76 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x3613c859 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb97ec793 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xccba4ee1 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd8c80507 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xfe1c385a i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8ca17a74 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xaaaea4a0 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x7936b732 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xb1771caa bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xfc3fda6d bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x1d049ab3 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x47871a05 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8db49fb2 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x8f1fa5c4 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb8718e43 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd0147dc9 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xd09f4ea8 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe11c85cc ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xe50289d3 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 0x3c0bbd57 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 0xa0358afc iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x2ff709d3 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x46312ad1 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x0147ad66 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x376c7999 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x84c68e65 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0592ec89 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0e238688 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x1fe8685e adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x43c99578 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x6555a6b3 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x67b98e32 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7066713a adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x7d23cf28 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa31a36f2 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbf8310e8 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xeda00b16 adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf40cbec4 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x0dd71c6f iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2390e75b iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x28438e8e iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2f0a3796 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3071814b iio_map_array_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x3e12248c iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x42bc99a8 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x430289bc iio_channel_release_all +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 0x6a8aba35 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73660735 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x79d746b9 devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8569f439 devm_iio_trigger_alloc +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 0x99d87a97 iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9e2e8795 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa87921f2 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb371c95e iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba0c58ef iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbb1e21bd iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc4927bb iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd02ee289 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xd7a3a653 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe7dacbc6 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xede7a0a2 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xf57e8157 devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xfe906e97 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xffc63772 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0x8b61724e input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x657dc047 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 0x67765012 adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x56a7acb0 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xae02fe27 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbab23224 cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x1afdc9f8 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x83746cf8 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xf5c1a369 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xb3d968b3 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xcb664ed5 cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x26b46610 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x7b12fc74 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa46fdcb1 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xa567aa65 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x28d5b924 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x32ebd407 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x39545973 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3e94f573 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x445def2c wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4dc3d428 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5ab44073 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x5fbd546b wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7077423e wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x8ea949af wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x931754f5 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xaeb0cdec wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x17430bae ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x1a6257e6 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x2cc10224 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4269e610 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4f1623ee ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa383a5e9 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc1eff414 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc56d9f7b ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xcb6b65b5 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 0x24713142 gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x24fd89a1 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x26293e42 gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3f11b1c7 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x75a30e19 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x87976cb6 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa93f6431 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb89f1966 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xbd0281f3 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc463b875 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xca2346e3 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd3a50db4 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd4f61f9e gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe577d528 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe579bd56 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfb1f10a6 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfe0906be gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0ddbd6a2 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x12d78f6f led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x31259283 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x7b7bda27 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xbb061779 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xd1c8cec2 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x03cccaa6 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x24102d23 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4cb04658 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6d0bfd1d lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x8cbf8df4 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9c975607 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa3b0c5ea lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xa7d33130 lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xbb89b9f0 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc8168e79 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xedc48900 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 0x3aea4c32 wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x856e86db wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x9ab589b9 wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xa3cfd6c7 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xaa0a623b wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbe3b931c wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xe59d4ebb wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xebfeb53c wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x38701d73 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4cf1a7fc mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x556f6299 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x58c2de7c mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x7306c8c9 mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x856e7d5d mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8c422afa mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x961adf20 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x99356839 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbd253b6c mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xcdcf72f1 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe2884f76 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe5f26998 __mcb_register_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 0x0600a844 dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1c5a07bb 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 0x301423cd dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x62fdef5d dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6791a44e dm_deferred_entry_dec +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6a234572 dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6cf31dc9 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x7c7bdd86 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x8b75c5a7 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 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xfcc4e8e3 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 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 0xb752c9ce 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 0x0a2dceea dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa474a8fc dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xc0d76b87 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xcb06e6d5 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xce3f3383 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xdcba7050 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xdd9d4aa0 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x4ae278c3 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xa69192b4 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 0x1a61e6dd 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 0x3bd49bb3 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 0x70349ef6 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 0xd4f1bc45 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 0xe32fbf69 dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xf3322a6c 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 0x42fb294a dm_block_manager_create +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 0x197b2168 saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x29f56954 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x431757ce saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x4876b3ac saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xc05c3aa7 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xef617506 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf1af5dc4 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf2890437 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfb0dea8a saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xfe534beb saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x03a18bca saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x17d0bf45 saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x2c5c556f saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x55ae46fe saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6b43f9d2 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x6d5154eb saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xe2068abb saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x04030936 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x150ffe5a sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x163abc47 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1eba2d9f smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x31087cba 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 0x50fdc245 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5ff8287d smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x61eb762e smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x621806a3 sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6a93ff17 smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x6c8121b1 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 0x897f5fa2 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x8aefdfbc smscore_putbuffer +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 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xc02ffc84 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdebf7719 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xdf3b77e8 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xff7b1c40 sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x47d51bd5 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xe648d2a6 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xca0acfeb tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x1daab1c5 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x2c27f062 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x33a220cb media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x565917c2 media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x621ed29a media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x65731f3e media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x7ac81972 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x8429c481 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x85654064 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x8bc862b6 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x9654edb9 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x98325e3c media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xa668e902 __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xb78b3e55 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0xc38e517e media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xe2ee8001 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xe5fff1cf media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0xfa4dbfb3 media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0xaa2b20ee cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x03b48285 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x05eb2a0b mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x15a13d4e mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1c739671 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3b5a678d mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3da30afb mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x498d377e mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7989ef47 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8e4aa30f mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x8e50046a mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9205f3c8 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa1344e2a mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd30bbf58 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeb439fa8 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xedbaf2de mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf20972f8 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf5870b21 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf63fa852 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xff96ced8 mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x14664708 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x470aa8f4 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x4b6b5224 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5714ce42 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5aa5bc70 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5d794245 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6346d1fa saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x745ce1ff saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8ee100b8 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x9175fbc0 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa1bec5b6 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb31eaf5d saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb3b91f92 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcc8eb389 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xccd65460 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xce4de59f saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xcf358029 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xec004ffd saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf95d06ff saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x64c5c1bd 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 0x8a02c332 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8f01a6cb ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x9db7518b ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb53cdf24 ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xcdecab5b ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xf2c2b698 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 0x0b3257c7 xvip_init_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 0x5058a73e xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x8a602cda xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xac1c4027 xvip_clr_and_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xc7f68b41 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xdfe1350a xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xe62f61b0 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 0x58b2eee7 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x36df320b radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x7c209dfc radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x016ab598 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x0692be90 rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x09b019d2 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x154f369e ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x19a49a12 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3db8ee2f rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x410b771a 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 0x5e071ae4 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x6e6d92b8 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7739c823 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x77e78be8 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x7d7aaf40 ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x8ea0a1c7 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb41f064a ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc0572dcb rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xff05c537 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x48d7bc94 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x041e04fc microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0x706db9c1 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0x5465b279 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x72b76680 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x3a36366c tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x0cb49102 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xdfc00651 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x4772e760 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x635f79fb tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xa22e2c69 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4ba08637 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x4f8a507b tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xa8b81031 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x04e0fa9e cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1172a811 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1426fb78 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1d4ac667 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x37e30728 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b0fab0e cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4b440042 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x74db716c is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x76d81be3 cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7e579e10 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8330cdc9 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9a455126 cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa482b6d1 cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa5f54b8a cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc05cfd29 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd00f80b6 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd4c17aaf cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xd9b14ad1 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xec871df9 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xec895027 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0x4e9b383b mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x0fb312eb mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x0d1d3b41 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1286d836 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x158cc722 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x241ad46a em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x249dde42 em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3fa19345 em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x4c513b15 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x57294979 em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6c2d370a em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6c8afbac em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7864a3b1 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9b5dd5f5 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb77628ad em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc8bcbdc5 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdcb5a722 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe705686d em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf21e6dfa em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf642bef6 em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x25298f06 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x5d9303ee tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd8cb0c07 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xf9fc0f05 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 0x06050513 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x4a8dada9 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7c417a53 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 0x90f7fa17 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xe1219b9a v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xee4b2065 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 0x082001af v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xc8ec6da8 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x063b357f v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x17eb0eee v4l2_m2m_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x195c44e2 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x195f81a9 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x28628c39 v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x371f915d v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x37a34aeb v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4ab84168 v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x4b2c0268 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5087f0b9 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5dbc2213 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x738d8de9 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x73bff012 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b108523 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9014be08 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x98f396dd v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabd4b97b v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xb7d2235f v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xbe68259b 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 0xce1476f8 v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xcec4e1df v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd963cd9b v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xdc9aaac9 v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe05d269f v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe26d3439 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe9804258 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xea00dba6 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfe0f7e58 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x194ee392 videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2e13e573 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x31725eea videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3f022dcf videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3f0a7450 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3f380c53 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4b888890 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x52d1a82d videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5349ccc8 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5c639e1d videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6b2a9dc6 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7c790ec9 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8307df2b videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8fc360d9 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa0032ce1 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa60ae772 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xaa068f8e videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb00c23ec videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb69ee9a6 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xccae9fc4 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xddab5f1f videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe49a29c1 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe8ed5182 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf219a7b1 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x000bd8d7 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 0x559716a6 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xa7d8248b videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xaa6648d4 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x75e922cb videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x9372a917 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb9e31697 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x067d2473 vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1b19ed93 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1b28b59b vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3bdb6448 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x41880d8e vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x46af2c0f vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x488b21fa vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4ac25ab1 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x58b2ceba vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x67b1d77b vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7cb05f2f vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x8a91cccb vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xa7c9ce0e vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xabf0b9b8 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb511f1cf vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xce514aa8 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcec70b9e vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf43131c1 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x22533922 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x2bd5bcd3 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 0x71589cda vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xa5a96961 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 0x72e126f7 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0ca6a099 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0da651e4 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1909b219 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1d5a32c2 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x23a72f05 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3b3a7062 vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3c3561f0 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3f1f6ff2 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4f83069c _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x58caf529 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5c37e1d3 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5c9ee703 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5dabd2da vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x5f1fce1b vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x61042d47 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6ae838a7 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6d4c360f vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x72c946b6 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7bfa3a2b vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7c479aa9 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7de5df45 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8a3e27f4 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8dc33461 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8e779fb8 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x95294f53 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x987ff259 vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x99fdae22 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa430059a vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa859516f vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd82cb239 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf530baff vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xf755de41 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x43cd829a vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0b01b1e0 v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x110431be v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x121b21e2 v4l2_compat_ioctl32 +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 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x310ff24b v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x33cbf37e v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x42dbc476 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x73012dfb v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x75671877 v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x78d8de20 v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x89eb0b69 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x914ad98c v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x9f434c48 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa6da0e09 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac502b82 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xac7f7404 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xb29de481 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc742052 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc479f245 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc943708f v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc98bc73a v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3021b40 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3f10ab7 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd66fe3a7 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd891b89c v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe4f12ddf v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe5a88860 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec51a05c v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xec533e2f v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfa8e1bfd v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x35dcc9d7 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x5d582c2a pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xc15d42c4 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x00e57bb6 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6425aac7 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6bdd2e20 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x8ae0d653 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xa9ea1c00 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xcdcdb067 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0xf95a8542 da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x09a89f29 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3bf61ea1 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x46bb7d39 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x517257c8 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x74d4b8f1 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x835345b6 kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd3a200e2 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xf059d1d0 kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x02ef0f06 lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x25c5a297 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa3d7a552 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x1aed4c30 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x2e01413e lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5ce88f7a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x605ca142 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xbdd6d7aa lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xd8cc44e7 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xeb764260 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x2a36605f lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe30dcaa8 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xe9f29533 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x2e274f1a mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x3c28ba72 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x4291edb9 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x7c92f152 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc09e773b mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xe75e703f mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x315a91b9 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x40308933 pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4aa6fb43 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x501e03d3 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x742a9db0 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x79c04d0d pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7c07eb0f pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7e97dfbd pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa85ee013 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdbc505dc pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xdfba4d62 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0x1ab053d6 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xb136a515 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x09837586 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x32ca7461 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x4532eeb6 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x584852b6 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xd91a1714 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 0x0eed0c52 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2616536d rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x28f71aa8 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x35f0d4df rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x36c65164 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4359b506 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x540ad5df rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x620e2386 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x69c6fc9a rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x707dcd1f rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x75caf9b6 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7ceaa32d rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7ef8ae35 rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7f488b03 rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7f61ad19 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x865b7e0b rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x99ebeeda rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x9f44f47d rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbdee3f3c rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xbef1ee2a rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xcaa26dbc rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd8d306a7 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xda3508fd rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdd5145d0 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x10efe898 rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x20a2767e rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x45eecaae rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4d76b9d0 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4f3ff557 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4fb92cc9 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x52648596 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x62524227 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8611bb5b rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x8e314480 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb089d5e6 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xcfe5aa70 rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd71770ac rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f0f310c si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x13845d97 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x24a1ec9a si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x26b0aea7 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2c7dcbeb si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x35c83094 si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3a746b68 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4774cc74 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4a8e0d74 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4f692aaf si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x54fcce3f si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x579638c7 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x68cf0300 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6b5487bf si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x714ee49d si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x72bc9cce si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x739b1409 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x80613ff3 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x84143ce2 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c3f8ada si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9e6f8aae si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa3e35cb1 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xa66830a2 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xad4e4a29 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xaf5608be si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbc3eb4f6 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbd30608f si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc8e8aba6 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcfe46f6a si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd591e520 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd826501b si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xea40774d si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xed667b94 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf9a9a857 si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x068d8873 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x741ed56f sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xbbbe64b3 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xc5aed124 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xf6aeb07e sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0f4302d8 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x309154c5 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xb4d3b665 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xea084da3 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x2dcac745 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x3754839d tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x447a8a76 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x676861b1 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x7fc5bd78 ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x6fd3bd5f bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x8df5f7e2 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xa6728680 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xb6f1ee9a bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x5db6f713 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa383e464 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xc45073b1 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xd0937230 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 0x3246a220 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8e09e7e4 enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8f1767c5 enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x90dc07c3 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xae8457bd enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xb860fadf enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd6ea03ea enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xde97c2ec enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x583b4ca5 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8402ecae lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x8f81cdd0 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x980cee1e lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xa1fd8c15 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc2a1c00b lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc5992232 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xfc561005 lis3lv02d_remove_fs +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 0x0aed2869 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x24bdba92 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x40a0e6f2 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x44a225d5 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x464147ff sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x46d83ebf sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4b5f4aef sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x4c86a4ed sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5449423a sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x62327b30 sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xcff2cf3b sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdc9ce82c sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xe226d3fa sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xeabb87ff sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x018ee71d sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x16f3b617 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x2b1d29aa sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x31760b5d sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x43955a13 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x50015214 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x8431276f sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xa4d13e5b sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd0dc0033 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x1b4c273c cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x246502d4 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd97b2742 cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3bf19020 cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x45a3dbf0 cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc8085fa6 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xaa36f6a7 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7ed4a44b cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xb0cdbaeb cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe5ee48fc cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x02a766c5 deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07ea9d1e register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x179e13bb __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1a3797b0 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2412580a mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x280d5eba mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2846eca2 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x33adb519 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3ff3e5b2 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x42ab0de9 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4624c72c put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4cc050dc mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x568decfd mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5aad3b9a kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5be3c40d mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6022a362 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x69611a6e mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6ab43df8 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6fbb1c78 mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x742bf420 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7559baeb mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x77802cdb mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7f1d64ef mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x82812be4 mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85449456 mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x85d8bb73 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88e992ff register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8b8268ec mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x92d82d76 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9b4b4a09 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xac560c7c mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaf07f534 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb1f671ba get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb28f2b78 mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb8123f8b mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb928b821 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc5994c57 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd02d533 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xce224708 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe7f6c8e8 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe88e2f29 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf5e70e82 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x1ae2a522 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5fa8376f del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x74591a28 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8830580d mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf964dc70 register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xc4f266b4 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0xe2c97d56 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xd7c3190f sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x0764ae9b onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x49a4456c onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xcfc4cf75 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00012430 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x00c2de33 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0e919d35 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0f096568 ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x228a0469 ubi_leb_map +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 0x4861f4ba ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x4981e4d5 ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5365870a ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x592b42bc ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa62dab73 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xdd7ed2f7 ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xe6b1a4d7 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf45e3654 ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf59e433d ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xbc67faf5 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xc763d8db arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x038fc32f free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0d99e3fb register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x6e382c2f c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xa3c59473 c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xce65f401 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xdcf4487d unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x384d6dbd alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x41637741 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x53be6640 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x694539ab open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x77c75895 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x8491cb22 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x876978a7 can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x963fb85c alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa7ed6e53 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa84a446a alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb0c423bf devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb5906d5b can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc4b5f4f6 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc54b3e0c unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xce1d9b97 close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xd0883d43 register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdcec3709 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdf94283e free_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x1590b734 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x4e1e911a register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa5c00ecc alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xa819cf21 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x1dca5ec0 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x74a1fc53 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xadab2b0c register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xb1f9e04f alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x8652a774 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0xced7987e arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00b08d61 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x017c8756 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0289e7e5 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x059f4a53 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05acd877 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0c0d67a9 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d1b8b4c mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f492111 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11a9be2e mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1530d3d6 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15d332bf mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15e78240 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x161258f8 mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x192bf518 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2462015b mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x248b491f mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2926cc18 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29409c0a mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ad2d439 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e2f244d mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2fd50a31 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37264748 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x37644c1d mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a11908f mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3a629faa mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e824b1f __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3efb1c10 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x418379e0 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41d63aa6 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4367eb17 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45740cba mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x471d4144 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x479ff725 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4825ffc2 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x490209f3 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a5514da mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50c57e39 mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5547e9cc mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bc122d4 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5cef8f4f mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e60f56c mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ff7d017 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60cc8b3e mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6189f7f5 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61f44fbb mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x634c3745 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x67991900 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69d64113 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a662347 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6dbc75ab mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6e83c005 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x70f745d1 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x718f49db mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x720688e5 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x720c6be1 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72b2cf4c mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x72c04f2e mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x732aa78c mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7527f700 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x77046b9a mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7870dd77 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x798d7314 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cb51ce0 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7deabeca mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7f97f248 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fb4d7ad mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x82efee5f mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x83f5886b mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8995bb5a mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8b8bf747 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x932558c1 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93391a9f mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x93665a3e mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94393e6d mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95bb0e05 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9696bbf5 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9a027541 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d4cd418 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f186462 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4f9bf28 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5c4dc6a mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa5e1012d mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa862fadc mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa8a465a mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5b356b7 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb922c35e mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbaccadc2 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbdb1246e mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbefb4ace mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbff64f87 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2f6d4ae mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4d162d2 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5361eaa mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5f18e23 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8e3cab2 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb293493 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd06120b mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd7b4d2f mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce126187 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1be3add mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd526cf41 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd6196945 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd87a5792 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd893b6ff mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd89a349a mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde6d5784 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0c93384 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe13eabf5 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1ec834f mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe30634e0 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5f92dc0 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe665fb0e __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea5e514b mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef2522f8 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf0334df7 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf243012f mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf34a8804 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf6cc698e mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7a064c1 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa036cb9 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb3ac314 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb5a114f mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc075d7c mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfc89398b __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03729191 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 0x0f603e81 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10573c9b mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x10eafaaf mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a0073f3 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1a835c72 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1f0c5f06 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23ced557 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x249ae567 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3296bf23 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x32d3fac8 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x381e0ddd mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4a0b5728 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e00123c mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5fc441a4 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6389aa11 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70f70585 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7eb18c34 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81f39920 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82d7e13e mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x873cd3df mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x889dee95 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x92e24b65 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x930574f7 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x94f41780 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x965af833 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x981ce36e mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a040720 mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9ae91e45 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab52c37d mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xabd5250c mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xafcf320b mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb94bc49d mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc413cbc mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc92c5aa4 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf6aeb4e mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd16ac273 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd33e6825 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd67f23c5 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8486a93 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe2c81156 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe6b31a04 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7f006db mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe981aa73 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf1d58d53 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/microchip/encx24j600-regmap 0x1320fc1d 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 0x389fab91 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x9214a0e0 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x939decab stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x97fc091a stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4a8595ad stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4deda133 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xa54cd7c8 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xd22e31ed stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x06d84278 cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x246a7bfa cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x261e3ac9 cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x466464bf cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x5f60ecfb cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7c17ac21 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x852c9a11 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x864e0bfd cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xacecb8c9 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd5754e69 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xd5dcf566 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdd920036 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdef6f43d cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfbddd4cd cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xfe700be3 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/geneve 0x05cbe6c1 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0xeb3a7e94 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x02d46caf macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x35d67fd6 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x692d06c0 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x751483e3 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x27fc8bb9 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0d4fb16d bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0dafa25b bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2c065e18 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x33426491 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x5bb160ed bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7d0b2938 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9464a463 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbb40ab72 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xbd509280 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xf456dfb2 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x2393d913 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x29457cd3 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x5fb3fbcf usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6b35dc2d usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xc985ea3c usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x15b71ca3 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6d2bcaaa cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x6d819ac4 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x72d912b1 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x9f31d305 cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb593f052 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xbdc6ce71 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xc07c49fd cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xdbc959a4 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8098df47 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x8cd49092 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xa7a2b9dc generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xaef71750 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xc3e342e1 rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xe0051eec rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x08682e70 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x093ad7b4 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1815a8c2 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20180609 usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x230792a1 usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2f7fbcec usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x32092139 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x33e6d007 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x411bcdb0 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x45883c29 usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x55d49769 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x59d575d3 usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5c7b2e4b usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x606427a9 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x61a93956 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x83d29411 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x844cca55 usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x88d01bba usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8d729374 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9f01f021 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa1929b07 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb5fc46b3 usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbf63d994 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc12c339c usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc60e1cc9 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce70eaf3 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xce967cb5 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd3c0e73a usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd72257ec usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdc2cc687 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe2f7088b usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf0c249f7 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xa219af6b vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0xaec58622 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1680c1f3 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x17931db7 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x20c437c6 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x28669e14 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2e96ad33 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x361e6f41 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x36cad7d1 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3749a0cb i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x394bbce2 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3e7efa6b i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x4756e5cc i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5a918d73 i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x7102c341 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x86cf435c i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x9579b85f i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x97b7317d i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x14698035 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x3652cd17 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xc6eaf143 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xd2b3c80a cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x5f341e23 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x386ec228 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x8f468653 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x910f47b4 il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa5478940 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xf451d292 _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 0x0459c9c0 iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0db2513b iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x135b12d3 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x23cd0eb4 iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2402804e iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x38182f0a iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x46eadc89 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4c47bcc6 __iwl_warn +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 0x61414dbd __iwl_err +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6b361a44 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x6bae2b44 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x70208f4c iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x79d21f25 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8a3c171b iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x98219b27 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xaf5adbf7 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xba2d4137 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xbe80f987 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd0e9b81d iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd7a1c090 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe0d3442b iwl_remove_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe47d1898 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xe84f9e8b iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xed5c73fc __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf20c7b84 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf4e538f1 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x0fe64d45 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x21a7d9ef lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x26409d55 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4b271cbd lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x64ed26c1 lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x65dcf801 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7d87e8eb lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8e139b37 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xaa5ead8d lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb19d3633 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb545b42e lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc2922c1a lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xcd3f79bb __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xdf2850fb lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xed402a4f lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf969782c lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x0f6d89f3 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x15590e7a lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x2146408b lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x33535964 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x4e6a21b9 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x89c3a2d4 __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 0xed525657 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xeee05311 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x00eb4c69 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1577a714 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2428156e mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x26efbbb9 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 0x466364a7 mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4aaca7dc mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x4edf3b78 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x75ec8601 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7a5297b7 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7d0b84ce mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x875086a8 mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x93db3a78 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x9e7c400b mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xa96ce587 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc610e3f6 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe15d4e75 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf643436e mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf78a651a mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xf8297f75 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x134752d1 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5a8da7d4 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x7d318919 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x94b24402 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa0e8c071 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcd6cd0b8 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd39c571c p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xda779258 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xf7678c15 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5e61f6b0 rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2072f66 dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe41a401a dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfa4cef94 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x037eb30f rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x09828c7a rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0bc166b4 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d1f8a22 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0e448422 rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1214e9b2 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1e2c1ec0 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2679d373 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2d2d8de1 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3c7399e6 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x44e14328 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4f014c8d rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x542661a6 rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x58358b18 rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6e582e06 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 0x7939abc1 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5f742f2 rtl8723_download_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 0xb085a309 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xb9811846 rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbc48502c rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbfa68e64 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc3e1cb8e rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc92ba9bd rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xdaa30a01 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xebcfbc5e rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf39457b7 rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfebf24bd rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05ad4e1c rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0602c611 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x08ff50cc rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d72c118 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x217d9a0a 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 0x2b79b5b1 rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4494451f rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b4de810 rtl_lps_change_work_callback +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x71c2b0c7 rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x933eaf2b rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9549ac35 rtl_swlps_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0456558 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa3a694c0 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xae58a2a1 rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb072d690 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc594045 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd67880a8 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe29908d2 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe5ff5929 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9898ec0 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x33c32d1f rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x69cc863d rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd7100a80 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 0xf811783d rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x07c36ef4 rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0c0d3e82 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d6752a5 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x15d50822 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x16b73866 rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x19302256 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1a269aad rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1f146d93 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x320769ce rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x395c0344 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4084ce36 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x42c0be03 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4bc6a36f rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4c527883 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x51f8cf51 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x563b2d7c rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x608ec71b rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x61a6073a rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x61f35f78 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x86e74104 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x903709d2 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x95859ec4 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa1a89fc1 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xacc7d2c0 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xadd97f46 rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xc90f2967 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xca08a406 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdaec1ab5 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe220e11a rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe4cd8eab rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe5e7337b rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe7450d80 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xedb715db rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf11d0e53 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf89f8b33 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf96217b2 rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfeb1840e rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xffe9856b rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1329f5cc rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x1411e06f rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x49cd5443 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x545752b6 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x76472254 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb7ecfe53 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc976ec81 rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd1ac713e rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd6abb88f rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xd7902599 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe0f86725 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xec0efa02 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf1583afb rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0434be19 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x088b9368 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0a39b8df rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x164aac6f rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x19614e50 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1fa4f603 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x208f4b12 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2763537a rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x283b233a rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2a3818b9 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2d99f623 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2fda882a rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x30976f01 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x32c4a219 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3305a682 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x338962eb rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x39a5d0a9 rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3a0c481d rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x43e76204 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4adb6e50 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ddc0c68 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x503598da rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5bd517e0 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5f59a1e2 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x60300b46 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6247060a rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x63bdb192 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x64167112 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ac0ed8a rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x70d1a634 rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x89dede94 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x940610f6 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x962ec13c rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9d3a7480 rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa6585d6f rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa8ead3f1 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd0b43a38 rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd206572f rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd80ca018 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xda6e7b57 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdb1484a8 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe3da70c6 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea2ff6a5 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xece29395 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xee83e537 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf7f2f689 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x0e116687 rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x0e8ace1d rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x861073bb rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x8970bce5 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xc16715e8 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x46526971 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x471e2093 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x55ea2d0d rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x65e9dd7f rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x0e3a1592 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x15b99009 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x1cf790cb rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x20d30833 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x310a0056 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x35a2ccc9 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3bbc7f77 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x557a1d5a rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x69fb4fae rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x76bf0fc0 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7b3a63e5 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb1b8cc27 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb509c5e4 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdf109732 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf2c6de3c rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xfdd6202c rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x1b5bc071 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x7f86c973 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xd2478465 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04027a09 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0474190e wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0634a65a wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x073dca26 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0a750376 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0ce36f9b wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x14921b1f wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1786444b wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1ae8af2f wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x1f6e6460 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2248e5be wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x22e6c603 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28111845 wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2aacdeda wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2daee4ed wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3470976c wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x35922ff1 wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3aff0907 wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4477d2c4 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x46fdf20d wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4b21b477 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x50d5a049 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x521f339f wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x53dff67d wl12xx_debug_level +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x54760097 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ccb2185 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5f99c6ed wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6d58f8b7 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x6f443e1b wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x754378fe 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 0x79546c4a wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x875405ba wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x934732e2 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9c10a78b wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9caf66a3 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1fb031d wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaa76de5e wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb4f7bf6f wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb805a0fa wl1271_format_buffer +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc6661ee0 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd8579da6 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xda7ae38b wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xecafc1c7 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf6f3ca24 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf72b8d13 wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfb1e71b6 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x5a6b4a6d nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8d1720ec nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8e6f181e nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xc472b737 nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x112e7a15 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x33eeb4ee st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x4b6194c4 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6605c7d2 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6c048b0d st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc9cd9066 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd0a507d3 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xd691a8dc 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 0x37fac77b 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 0x7db963af 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 0xf6972402 ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0xf9eb813f ntb_transport_unregister_client_dev +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x0ff557fd nvmem_register +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 0x24879c2b devm_nvmem_device_put +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 0x544d389d devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x61c803d0 devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x762a27f8 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 0xa57fe59f of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xad2fcc3d nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc760f084 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x2540d64e pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x3cff8fc3 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x950f0b15 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x581d8297 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x5f6ba533 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x84002a9f mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xcacbf444 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xd4d2e6b3 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x00a6a4cc wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x195cbb83 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x1cc31ae8 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x44709f98 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x57b08107 wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xaccbc16c wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0x13297386 wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x03c50cc5 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x040503ed cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x04d78d6b cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0a089fda cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0dc96924 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14dc8a34 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1d443408 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x213783e3 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x241f59c0 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2a6b2fc7 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3191f8d9 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x44c6e5e1 cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x464ffaa1 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x49bd9bf5 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5bc77c43 cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x600047fa cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6209317a cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x631d2c17 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x63a2c788 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x78e59d84 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7d068cbf cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x816ca843 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8d7b9f85 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9348c968 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9bc7759a cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9c36da93 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa6f43784 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8312470 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaaaeb3bc cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xab144dee cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xac086238 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xaf04aad5 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb120b0b0 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3888a16 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbd48cd86 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbfc9f2a2 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc111b49e cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc2ef1874 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc664a0eb cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc889eafc cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc8c1ea9f cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd5362be0 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd536fa12 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb97ba80 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2938335 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4af1200 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0522bab4 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3278e76e __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4ff21d2b fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5e50ad58 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x75a3fbee fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x892ec689 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa16cbf7b fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xa828e102 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb1b28aa8 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb899429d fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc59ec720 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdfd92a6b fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe0f7254f fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe85f7e25 fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xedddd370 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf1cc8d54 fcoe_libfc_config +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 0x0dc2d7cd iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12a2fa46 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x16102284 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1fcf6471 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x20738c92 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x259231b2 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x27962c21 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a83095a __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x30192f88 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3b80d8db iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x40c4acec iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x48715f47 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fd7fc68 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5461d0c8 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5dad04a7 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6d223d87 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6da9a08b iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8107f472 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x88680969 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9266fbc8 __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9376f009 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x97035f07 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1b14e4d iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa1c48726 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa4ed5335 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa6977f15 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xae868d1d iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb0b77c89 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb2388112 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb28e651a iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3d3c39a iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb3f7fb2a iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc9b53e2 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe8d9492 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc5b74f8d iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcd0fec8d iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xcdd3092d iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd70c974c iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdcd520d0 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe2c3361f iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6c9fbf1 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xff5bf4a8 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x0b78fc07 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2fe84312 iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x32446898 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x58c0a50f iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6f694b5e iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x82f8ccf2 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8b93bb0f iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8ffc6336 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9e3823ec iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa1136f5b iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbe82420c iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd172bd92 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdb2a0370 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe4d6da84 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xed897e01 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf5bf6166 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf68ca002 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x006c5c4d sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x10afac62 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x1a9d094c sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2bcac493 sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x423b4307 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x553b01a3 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56ef2ad7 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6859bd8c sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6ca1bd03 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x813217d1 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x87b74cb6 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaecb8639 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb4251926 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb7cbdefd sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc303c980 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xc788f419 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2c6cdd9 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe0f5f91b sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe6e56d13 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe8e99364 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xeb14bfb0 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xed599a22 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xefeca0d7 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf731a204 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0085eb23 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x092643c0 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1eb929b8 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x359b7fc6 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x360805c4 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x38563f78 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3868ee6a iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3991026d iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5ccc09ad iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64772d90 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 0x6d4b1a09 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6fffde88 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x809d1a6d iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84f1111c iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87327edf iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x94e1a305 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa3f5c7f4 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb2d22c3e iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb345962e iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3ee003e iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb62157cb iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb73554c6 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb7709c1c iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb813938d iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb8c3d626 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb942bff1 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xba3bb265 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 0xbe5feeff iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc121e828 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3f00d6a iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc513b1ed iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcb89d1d9 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd0a64f2c iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe6833d15 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8bb48b4 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe9d3f15c iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf09a7be9 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf7ae6128 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf90bfe9c iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xffc5d428 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x03885124 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x22ba41af sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xadf97803 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xca6fe061 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x5e4a3244 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 0x00586791 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x6222f7b1 srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x83ab4f8b srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xafbce0fd srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc1a2c66d srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xd9eef73c srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x101aebce ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x11123ecb ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1561fd0f ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x1f128641 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xacc13667 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc260d573 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xc5fe96d1 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x281d9815 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x52d6e07e ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x718fb023 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x77518559 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xd8673337 ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xdb2ae055 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xf8739a97 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x00c69281 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x3ba0161f spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x54253c94 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xbedd9b14 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcda3f964 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x0b83c8d7 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xba422148 dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xc4133b91 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe0f874af dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x03eaf60a spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x04a8b16f spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x228632e7 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3cb53bdf spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3cef8dd8 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4fe02164 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x592f2b93 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5d7916bb spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x61149fdb spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x69d83930 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71a4a225 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x71e167a8 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa06b7f43 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb185e30d spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc47a1086 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd73c24a9 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xdfe8af45 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xedfd9b8b spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0xb6258ec4 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0766fdb2 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0955782d comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0bba5024 comedi_dev_put +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 0x0d25ecb3 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21ed0936 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x222603a4 comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2dca97bd comedi_nsamples_left +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 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4566ad0e comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4cacd5dd comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x51cce211 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x60b6e95b comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x64a289e6 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x80d1e151 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x92a9ede0 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x937bd66a comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x967947b0 comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa36cb69e comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa371fc95 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa7bd0aed comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb08a3422 comedi_buf_read_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 0xbe1969d6 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbf90a691 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc0cf406b comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc0f715dc comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc96b252e __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcd548de5 comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd269fa2b comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd7958058 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xda9b1679 comedi_handle_events +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 0xe19bba39 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe32a1cc8 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf198ff64 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x130f33f9 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1797ab65 comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x455f00f1 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x744ef8cc comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x97b04386 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xf1f3e6c3 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfc6218f4 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xfd843368 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x046e9f89 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x34c488ee comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x54f31770 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x8bcaa121 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xa2a0d915 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xc1f21299 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xdee7f2bf comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x1c527462 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x232b88cf comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x23f619de comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x92beedd4 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xcdca55cf comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xf879426a 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 0x80d68428 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x2ce4ece8 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x304a07da amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x868686f8 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x19853f99 comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2f648d1c comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x3f4ad29c comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x497ecae0 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x54622b47 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x766c421b comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcacbcc04 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xcc8cc9f6 comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdb3706cf comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xdbd5d5b0 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf48b224f comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf6368ca4 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xf7a5de8c comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x3b9cd829 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x5146ac3f subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xfff3d6e0 subdev_8255_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 0x37ac5df5 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 0x6007bba1 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x05701008 mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0dd7bfd5 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x24c31497 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2ad6eb5a mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3a1364da mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x46606234 mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x523b20e3 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6a94f176 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7eaf2cb9 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7f9528a2 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8277a7b4 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x88a5c1a9 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x92d41e9f mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9a752508 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa1ef9e0b mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa4addc92 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb4040f68 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe4eae3aa mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xeafa3973 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf3e6d793 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf581822a mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x9cda1381 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xcb130a5b labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x67f51f76 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x7d69fdb9 labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x860fba17 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xbb2da9e7 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xf5fcbf11 labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x08ff7617 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2af1446d ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2b557949 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x587236c2 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x93137a6a ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9e14222d ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd9d8363b ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xfe017a1c ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x1c830705 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x228e77d6 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x467c4953 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6a4bd503 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x99c58cc4 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xfb2b413e ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x0f5daccc comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x4d53e766 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6a0e7efd comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc3bf32cb comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xc95b231a comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd2478d23 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xdfa6b56e comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x28f71de5 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2b9134d3 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x2ea7e1d2 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x396493a8 most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x44daba3f most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x460cdb45 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4a4868da most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4c5282ef most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x5d041f40 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8ce3a18d most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x9f28c153 most_submit_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf0e3495e most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x0296f68f spk_var_store +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 0x161b0b6e spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x33a97319 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 0x7a6749b1 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x827d3718 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a2ab8b2 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x9a888082 synth_buffer_getc +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xa1a525b0 spk_synth_flush +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 0xd73fdebe 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 0xe95bdde2 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xfa80ae58 synth_add +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x091fd1a6 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x1888f21c __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0x67db721e uio_event_notify +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x8518be87 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xf15aeb9d usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x69ff4178 ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xdb67d2d7 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x724aeb74 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x7539ec4a imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xdcb19141 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x459abb50 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8f969553 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x94ca911b ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x9d694a10 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xa896a036 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xdd7fbdf9 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x0a52955d gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x271d6e24 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x36b317e9 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5c9b869a gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6682b0da gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x67f10349 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x9bf08def gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xa331347b gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb9e3ff3e gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xd3f98a77 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe58fa3b8 gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xed79ab82 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf28f17ce gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf356bca9 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf984bf22 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 0x7816d4da 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 0xbaf9dace 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 0xb1526f3a ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xbc9b11d7 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xe3e32921 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 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 0x4a7d933a fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x4ed3340f fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x52d3a8c3 fsg_show_cdrom +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 0x56a24c58 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5afbe310 fsg_store_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x672c0184 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 0x6bec2797 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x76896183 fsg_store_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x780e91ef 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 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 0xd468f882 fsg_common_set_ops +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xd65dbefe fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe00e44a8 fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe25864e0 fsg_show_ro +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe3df6d72 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe7a1c4e9 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 0xf6f9ba39 fsg_store_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x0236887b rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x134dcac7 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x27223ffe rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x28449778 rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x48da54e3 rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x52d1c1a6 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x53b54a27 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6e1c820e rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7963e7f5 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x7f27c543 rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x83d1b3d5 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8c357aa4 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa633c55e rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc4969b07 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xe2ddbfdc rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0bba2192 usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1249eb2a usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1299df58 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x19b0900d usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x23e25e9d usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x30d85be4 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x46343de5 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47d2fc17 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47e40b14 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4c98bb6c usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x4cdd4240 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5361213a usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d1d0df6 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7af49dd8 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x83369817 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8ed8e048 usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8fb28f2c usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x946c5340 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xa704d1c0 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb784aa5d usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb86558fc usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xba6258d5 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc509f5c4 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc6a3d4ad usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd25931b9 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd3ede01f usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xdc225609 usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe50b15ba usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xea8a036c usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xfcab7cae usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x08f5725b usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x08fd0f8f usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x26e6c97c usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x4688392b usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x5a7902fb usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x79a1052b gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8e1db8c4 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9972ce19 usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa4744dba usb_gadget_giveback_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xaa12e09e usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xbdbf24c2 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xe35632c9 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf1e7b8d4 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf3a1cc86 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x3114d275 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xf6d8b611 ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x315d4cb9 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x4899b17a usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5049a0a6 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x55eb03d0 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5d123ef9 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7929ca8e usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x8e15ba34 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa7b181ff ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xfdb64123 usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x158ca6e5 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 0x6e4f8fa6 isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x1d175a7b usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x108e2330 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1ec61333 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x2d8b3c20 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x4c0613f5 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5db13323 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x61758378 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6e3864ec usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8d671873 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8ddb88d1 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9807c9ef usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa6b838d7 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc0d2266d usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xca76ab1b usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd412123b usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xd7df77fa usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe1882eca usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe9eb33f0 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf4e7cc2b usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf7a26c6a usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfb970cce usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfd478f99 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x09ae2bc5 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1278ac98 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 0x2734bb19 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2ef986d1 usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x33f6dd83 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x419c1b8e usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x450f1cc6 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x58c54621 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5a3e6922 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5d59f1fe usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6e5f2953 usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x79b1a40b usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8506f548 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8ca72387 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x93cc5e9c usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x94a42249 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9d1a5633 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xae3ca297 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xaf6c0469 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xb1493449 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xba482377 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd93dc97b usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf150ef2a usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf7275c7f usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0ec97f8e usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x1389f558 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4e0f3efe usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x538a0c2f usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x57de4df0 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x5a8827b9 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xacc1284a usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb4f117dc usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb54e2c92 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd02753dc usbip_header_correct_endian +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xd1cf6732 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe1ea0586 usbip_dump_header +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xe5d82627 dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf8c8629e 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 0x152745ed wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1a4446c9 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x281e2e45 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2a8015f2 rpipe_ep_disable +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6239ea41 __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x703ffa6b wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xb9655cb3 wa_create +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 0x178f1e88 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x24a8e866 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x265cd6b4 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x39600e5a wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x47f7f1ca wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x80e44018 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x89291bd1 wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x8c265490 wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbb971596 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc88fbd44 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd2a6e917 wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd905cc40 wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xeb40531e __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/usb/wusbcore/wusbcore 0xfebaf717 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x483423f3 i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x782f35a7 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xf6f0f931 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x04f4abd4 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x3db51f84 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x4bb4418b __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x86742b4f umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x8eff8755 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x9cecab8d umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa2680419 umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xa78168b5 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x03dd5d4f uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x09a2003e uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0d78016e __uwb_addr_print +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0e3f3a9c uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0f992d4f uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0fc02440 uwb_est_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x109e2808 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x12888074 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x38470b6c uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x441728bf uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x446287c2 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x45c573eb __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x51a9ffee uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x540d1b28 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x54d0db2b uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5dafaab4 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5f52842c uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6e3c1484 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7fa975d6 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9527a43e uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x965dc57c uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9788a57e uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9f841387 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa3bf1bbc uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa43d1a28 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa8ede970 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xabe8e39d uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb12e1623 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb2482760 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbec636a3 uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc385e4f3 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc84f7a47 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcd5b0977 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xdf0f2ffd uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe1b7b8be uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf5c85715 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfb4bb469 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfbb02149 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xff77799c uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/whci 0xd53c27d6 whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09274734 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0d528380 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x123c843c vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x23da83b8 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x262a2f1f vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x267ed74d vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x280de596 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4162c4a1 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x44782e31 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4cb01ff5 vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4fd44753 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x67b64548 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6988a0f3 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6f40c0cc vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x703e8a76 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x8f8a41b5 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x902bc0ab vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9eab5224 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa04e3bd7 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa56293cf vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb7de928c vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc386179c vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc58e8adb vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc7d3ad5c vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd3a97d56 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd4a1bcdc vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde931b49 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xef746061 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf7a886f3 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0f7a7031 ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x2e3cb24e ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x30b767a4 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x59f1941d ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe52a7524 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x080b985b auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x150254e4 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1731838d auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x1ae5adda auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x47a78bf9 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa947b609 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd4701360 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd9f6bc7e auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xf7177d47 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xfaf90a78 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x9f4210a5 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x4cc4e8c7 sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0xdef49181 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0523f362 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x1161de92 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x448edf28 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x66d4b752 w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x726157c7 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x80ad295c w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcabfb78c w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf704f487 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xf813be4d w1_write_8 +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x1e6ef98c dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x657a1c5e dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xae281a7b 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 0x064f15b2 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x27bd7878 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x321af744 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x6aa8e89e nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xabd73670 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xdb8e163e nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xe2bdbc91 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x02fb0c56 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x04638fce nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09e8d777 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c5e669f nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d67c651 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0e6c225c nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x125d7b00 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12645791 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x12671304 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13174073 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1462272d nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14d8629b nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1508f378 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x15470e18 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1b240fa3 nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1bc19135 unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1d36375c nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1dd871d0 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x207a755e nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x250dabb4 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x267db06b nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27e4ac30 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2832029b nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2b9e9e02 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x304e7493 nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x34d46a63 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x36147606 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x373ef5ce nfs_close_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 0x3ca4c115 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cb5fbe0 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4062852a nfs_clear_inode +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 0x43350701 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43d4b406 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x43fc98c4 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4563cba9 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45f3aa3c nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x484bd709 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a97fb9f nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c414df8 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c7debbf nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4eb29351 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x52efedbb nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x566fcd2a nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x590bcdbf nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5fb979dd get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x66f90431 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x67022254 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x681e6f3e nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68b46838 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69472d3a nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7094517d alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74155f0d nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x769f6c48 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76cb0ab5 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77be483a nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c19997a nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7cd83feb nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f1ddf21 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f9e951f nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81682f42 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x81cd54bd nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x84444798 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x85faa85b nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x86a2e948 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8bc13e2f nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ef9b952 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ffca99c 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 0x930f93f3 nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x93e49680 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x962e76fd nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x98293a73 nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a346f7d nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a61f2da nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bc5863e nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9bd32fe8 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa2b5c887 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa5dcd491 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa74453dd nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xac23890e nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb006b0c1 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb0931ccf nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3e83521 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb400f983 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb69b787e nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc0aaba09 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc16eac01 nfs_request_add_commit_list +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 0xc671f373 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc833042d nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc8761ca8 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc9b9d243 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca2e3f94 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcc2068dd nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf7c63be nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd27deb47 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd50c9224 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd713d01e nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd81bfdd2 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8523fe3 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8d3a96d nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd318cc1 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd5ca7e6 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd9ffa16 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfa4d758 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdfd446f3 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1a8897d nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe53034e5 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7bff6f2 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe9cb41af nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeaeff062 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeafaf093 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xeb8d7f7e nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec292197 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefa60a7d nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2f512c2 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf30bc14c nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf84413c8 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8dceb9d nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf97bf04a nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbeb8c8f nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdb5998a nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfdfc84a3 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfea238c8 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfecaeddd nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x17794c2b nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02a180e3 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0c6720c5 nfs41_setup_sequence +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 0x1adb970b pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1c96e84a pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e028bf9 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1e8936d1 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2109612b pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2119526b pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x29703441 nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30732f31 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x39173d56 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x423a4876 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42f432f0 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43771aff pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cc01fbb pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4d63eada nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4eac6b95 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5ccaf035 nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x61c9769e nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6c404f05 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6f78c3da nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7111e9e6 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75102e60 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x78d50058 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ba06e3e pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x846aeeb1 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x88dc266a nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x89386e6f pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8fbcd170 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91ea444d nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x96d82ff0 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9a6c5915 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b5f4eba pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9f5b819d pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa885acfb pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaa81c074 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac3e925b nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb08b6ab1 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb246a3e5 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5c738e4 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb5cfcc39 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb79d907b pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb800d4ba pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc3c6ae5 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4b4a4b1 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc667baaf pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc7792f87 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcf038a9c _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdad8cadc nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdd7b13a0 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe029564b pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe1080c59 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe22062b7 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe26fb8d3 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe8fa0cde pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec2a0c3f pnfs_layoutcommit_inode +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 0xfd492547 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd6b1eaa pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2acc911d locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x81c78bce opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xa595c7a0 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x1550291e nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x3fc75112 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0b4ccc51 o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x17f3c578 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1a4c83a6 o2nm_node_put +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 0xa0c828df 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 0xa338b8a8 o2hb_setup_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 0xafbd5ed7 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 0xc0a4eb98 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 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 0x0cce8863 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x2e826c99 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x8dae4e38 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x95474769 dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xccfb6a7e 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 0xdb6d2ea5 dlm_register_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 0x46eca811 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 0xbf78a510 ocfs2_plock +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 0xea771dfb 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 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 0x0ad2902f notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x4fa667dc 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 0x0ea90377 lowpan_header_compress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xa022e8ec lowpan_header_decompress +EXPORT_SYMBOL_GPL net/802/garp 0x08c12f31 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x2b417c18 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x3d50bfd8 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x97355264 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xac17e168 garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0xf2967718 garp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x130bbfcd mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x13ca4a68 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x2dd66af4 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0x7c434c21 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xc6528cd2 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd6f4773a mrp_request_leave +EXPORT_SYMBOL_GPL net/802/stp 0x11180431 stp_proto_unregister +EXPORT_SYMBOL_GPL net/802/stp 0x975e5e19 stp_proto_register +EXPORT_SYMBOL_GPL net/9p/9pnet 0x20058bb6 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xbf5722f7 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 0x939966b1 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 0x3e21c1b9 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8c3b4da3 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa3726f0e l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xbe9774f7 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe42bce48 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe7fc56b0 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf504d88c bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf92783ef l2cap_chan_send +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7e1cbdd9 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x95a69219 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa24765ea br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc1900677 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc341c358 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcdf3ba19 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd75bdc39 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe33a75fc br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x3b9b5c2d nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xc72f9525 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0abadca1 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1651f32c dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x167baff4 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x18f20254 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1ccaa51f dccp_feat_signal_nn_change +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 0x2267009a dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x234ddea4 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2a8f4476 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34775d8c dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x35e6f9a6 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x36920e38 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3b11e716 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4601deea inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0x472fabac dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x4b368998 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 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b5c7058 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6916257f dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7898f75b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x835e58ba dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x882529b2 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x91bd6a34 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x97d88603 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x989b0089 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x99c6b1e7 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa534329a dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa8773964 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1ccbebf dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbac4b981 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc40104ba dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc4deba2c dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd760aeed dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe4909c48 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea2fb3d5 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xeb2a8581 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf42e60c8 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x03a4996e dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x09f63c44 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2fc1e5f0 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x404f29f1 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xae5bb5d5 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xd3a850df dccp_v4_send_check +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x055582c8 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x6bfd78bc ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x893b417a ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x9b065334 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ipv4/gre 0x4c6f35f8 gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x7f3e87b6 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x0fba5a6c inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x570b0c9b inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x7b867a92 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x96520504 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb2684735 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xf17b7779 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x60daae65 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0a13ff35 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a43b2dc ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2b8e1089 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2b9a0998 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6eaf36c5 ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7506a9db ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x758cde10 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8b46b298 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa6b4d88 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaecf4f1d ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc0866cfb ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd08817ee ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xd87ccafc ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe4944b03 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe63c2864 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0xb983aa7a arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x9d628a93 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 0x273bac58 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x06b71439 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x1c034639 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x6cac8d6a nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xbb61e269 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xf7279631 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 0x7038f953 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 0x06d90917 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x18c75917 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x197f3ded nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x5ffc0540 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6a49db48 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x7167273d nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x158acea8 tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x2093daeb tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x4de30a1d tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9508c715 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9e5659df tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x59083875 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x896e7a40 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xa7d0b6d0 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xaca5542c setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0492f58e ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x31401868 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x34a32435 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x3edd36e4 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7c706e45 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x7db89eba ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa4362306 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x4a571b5e udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x8f94996e udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xd6b53500 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x3a3df06f nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x4b2fe58d 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 0x0233f5c5 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x040b89eb nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0cfd6fe6 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x7029035e nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xddcba26e nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xe2b1cc94 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 0x5ffd291e nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x22685e27 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x3adc235b nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe02e5734 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xe5fd3372 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xf813a352 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x985dcfb1 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0133503c l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x03ca0eee l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x10078150 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x162062ce l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1a81a635 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x25514ff4 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x338b3a05 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3cded573 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x44b3d477 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x50f21710 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8b42cd41 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9a51087c l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x9ee99c8b __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc909ce88 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd3a31a4f l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd73bd819 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xc5495930 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x004f757f ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0c8f2a81 ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11d691d1 ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x14fc90c0 ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x227b38d0 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2c479396 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5706d551 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x7421f5da wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8cb1d448 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x9aa12cde ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xa7a13a83 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb15f14eb ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xb23a9b35 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xc4dc8e79 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf33a7b49 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0177b983 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x2482aa4e mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x4c1d0bde mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5bdc0443 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x00bc8fe0 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x04e80449 ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x06397df5 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1646b54b ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x16cabff3 ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x343741a0 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x53459dc9 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5ad6a202 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5fcd53aa 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 0x7aa544e0 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x88a6dc0f ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x9d54974e ip_set_nfnl_get_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 0xe5359973 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xeb6eb69a ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf1b42f38 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfde74f09 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x04f22c38 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x8cd6694b register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xe796c830 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xecaaa1b8 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0076781b nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x01b586b2 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0245839c nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x07387915 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x08e161aa nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b341de8 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0f551dbd nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1007241b nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x129d693c nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15270d8a nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x182d2ae6 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19cfbee6 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x19f0e7cd __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1c0f58f9 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1e1c57df nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x21ebffdf nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23889d54 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25b4cabf nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2669c1b2 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x27116f08 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2953521f nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2ef1d45e nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x32425e85 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x34dbeb77 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37621ee9 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38d57179 nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a5a028e nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c22e681 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 0x40605299 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x432e2a0a nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45b99b62 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x467b040b nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4787b168 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4dd17d4d nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x572b0a04 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57f4612c 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 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693d9db0 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6a2225fe __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x724c89cc nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a2ece34 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7b58bd94 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7e747d37 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x837d4479 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8514b381 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c14b937 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 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9abdea61 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b759302 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9c891d21 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9cc4db9d nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9ed90ace __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa45bb21f nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5c1961e seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa70b9a61 nf_ct_timeout_put_hook +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 0xad62ad72 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb07f1b70 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0ae5524 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb6941974 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb7bd5d4e nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb8513f87 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9656f52 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbaae6e5a nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd05ea98 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd0f409e nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf2998e9 nf_connlabels_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 0xc8437ca0 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb3dfdab __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd432fe3a nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd59bf304 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7284859 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd7638950 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd944424f nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf2256ba nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdf515026 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7ad9186 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe8212064 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0db123b nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf11829b4 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfe35d71c nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x7e6a883b nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xf6169a52 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xa67ff3ae nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x133c0f66 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x62768163 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x661b1b79 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6adcf33c nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x996ba11c set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9a4bfaca get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xa1c781b8 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xb9cc1c50 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd47301f6 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xd5b8872a nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x31cb375f nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1576aada nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1eabe76c nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2d05451e nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3109148d nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xddc9a63f nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xebc980b7 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x5e0165be ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x77dc46b6 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8bf5785e ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8c3161a0 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x8ddff561 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x974e3a64 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc54341a1 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0xcfe17ef7 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xdb635b1d nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x255e6407 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x2b5bc088 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x47205619 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xd87e8cee 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 0x4a1e61fb __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x5176ce66 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x55a443da nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6ac601d4 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa57766bc nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa779cfab nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xa8a7a847 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbd1ad624 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xff322c1d nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x3d3b94b6 nf_nat_redirect_ipv4 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x9a6552a4 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 0x5f339439 synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x61b9de30 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 0xfa826497 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x011dc0e9 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x02cc1b00 nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0495e50b nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x098b57cf nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1808ea57 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20bf9b2e nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x23ffa503 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2e14aa07 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x321e6d9c nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x656fa9c7 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68a1fbd5 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x7895e479 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x80f05ffe nft_register_chain_type +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 0xcfde28a4 nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd300c0f6 nft_set_gc_batch_alloc +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 0xf25dc1dd nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xff71d2a7 nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x00760298 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x385951d5 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x4b100759 nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6f4a17a2 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xa97a0d07 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xace3a8fa nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xcfe22b21 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x4888d0e0 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x64c7c4ef nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x7e112940 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x2f3e8ba1 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x2b79ccb7 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x2d85d70d nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xf9504ed9 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x457e4860 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x482d1fc7 nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x53a5303e nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa81206bb nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb5be52ac nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfbf20b4f nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x0220b651 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x15523932 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x34151123 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x4915ef29 nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x7f97f1d4 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 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x29646a7f xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2c0995c6 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x331e718a xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3a3c39b7 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x467ddf58 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5281f3cd xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x585676cf xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x66911334 xt_compat_target_offset +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 0x84e29553 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9aabf4d2 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xab600031 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb64f0f71 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc1b9797e xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd91a3e1b xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdac08a5d xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe64e8917 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xebc7d79d xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf22acfe3 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf2bf038b xt_proto_init +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 0x1c26118d nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x1f392a3e nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xeca90343 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x35aa86cf nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x91d48a4c nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xfd7b9ccc nci_uart_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x0f00474a ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x1c06c07c ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5a53b036 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7ac55d22 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8aa9de87 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb4ff56d5 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xbccd3fdf __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xda83411d ovs_net_id +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xdf83d3be ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xee7fbeff ovs_vport_free +EXPORT_SYMBOL_GPL net/rds/rds 0x00a467af rds_wq +EXPORT_SYMBOL_GPL net/rds/rds 0x0106648d rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x12b5f621 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x14074ada rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x1c5e5c55 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x25b88b0e rds_send_xmit +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 0x3fa66f6d rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x42b2ea0a rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x532c2a73 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x5768094e rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x6913372b rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x691d1da3 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x6d1a9ada rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x73bb0ba4 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x8d1a68cc rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x98b01132 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xaf71f226 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xbb676ff1 rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xbda631dd rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0xc1ad6d63 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xc5b9f301 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xe5a17b92 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0xee763ff2 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xfe3622ac rds_recv_incoming +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xd851f079 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xe84f4991 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 0x7d886d48 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 0x9bc039d7 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 0xb8e2c5c5 gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x000e49f4 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01063dce svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0380f478 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0594d273 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x059d5cb2 xprt_reserve_xprt +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 0x06aca314 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06af3f9d rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x06b3a4a8 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0878b462 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0911e94a rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a2cb8b7 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0bd9e47a rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ce70752 auth_domain_find +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 0x108e2d46 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11b31a50 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1480bce0 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14980afe rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15114f90 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x158df569 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15976c39 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16ad9dfe sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176631f6 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x176de83c svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x17bb6e60 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x189e432a svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1af55f3f rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b5bfa7b rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b7cb054 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ca6aaf7 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d7f1354 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d869518 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x21789703 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27b225ac xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d2adc06 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d400fef rpc_clone_client +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 0x32590925 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32d9f037 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3497be3f xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x357f4480 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x37f91e9b xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b016296 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c845a5f rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x401711ae rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x41549ea5 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44825702 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x44ffeeef unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49511571 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a50edbb xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4a9ab5ac rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ab1867f svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c15e1bc rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ced7ffe svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d72386c rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ec356be svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f7b87d8 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50b2c693 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x513c16f4 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53d94901 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53df6761 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55959e7a xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x559cdb16 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c2a07d svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5a96e856 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bddf983 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d1fe237 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f5ffa5d xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x603e79aa rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61c6e00e xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64472d5a rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64a57a9e xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65099ac9 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6691e9e4 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x672de1ce csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6aa6c8e6 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ac91779 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d138d72 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e13df05 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f9e6789 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7355d9ec rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x74b67f28 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x79d3cdfb rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7aa56574 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7cc4c096 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7da41a52 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fdb5108 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x801aaef8 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x801e0f89 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8341ce8f rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x857e5ef8 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85eaf644 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8805a1af rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d3f5132 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8dd8dcea rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f48d986 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ff86cc3 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91e067dd sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91e678c5 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94354f9d rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x947a19e9 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x95115ab0 svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x957ae49e rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9753a2c9 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x977b5125 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x980f8f13 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a06ed70 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a58d940 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9aa66948 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9cf00a53 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9de1bd59 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f3741f4 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa05fa01f rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2222e81 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa240d3dd rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa248a2bf xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa27bf3b1 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2d890b3 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa318e293 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa35a6875 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5b95e96 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e3d9c0 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5e6af54 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa6f0aaf9 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa76bba0c xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabdf153c rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad6e6f00 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf0cb2e2 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb2e68ab1 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb46b5968 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb46cb02c cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb4b54017 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5dfd7fd put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5fbce27 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6f1bccd rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb835eedb rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba94cef3 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbedfdd98 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf86da08 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc032e222 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc14e178c rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc1f28089 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc43b093d xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc61ba3eb xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc751d0b1 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc799adcd rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc994f1d1 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb8c3c4f rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcca7c908 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcde44fc5 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce8a4e7d xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf1ea9ed xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd036f35e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1330e26 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2749eae cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3712e72 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd416d624 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd49746bb svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd51f01c0 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd576c605 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6e0fc6b xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd822d6cd svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8364b3f rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd83e4f3b rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd881091e svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d22e36 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda907047 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbfa63f8 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc124512 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc698df7 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdca9d2e1 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde10021a xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xde1eef34 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf74dd7a rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdf9cdf5d rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe012e292 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe345c464 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3b35f5b xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe7937278 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9472bf9 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe9b5081f cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea45c644 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb9431a1 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xebe4074d xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecb97825 xdr_reserve_space +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 0xf36fd02e xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6b69ca0 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8a88499 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9810b2f rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfb1f2c95 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc4cd22d rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe575896 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8927a3 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffe5a573 xprt_complete_rqst +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 0x202b46fa vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x2663cb64 vsock_addr_equals_addr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3facda67 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x443b6237 vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x661a1a81 __vsock_create +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 0xa47e645a vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc3c7b036 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xc70ec833 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd267ce79 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd294ca63 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd5c2c1fa vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xed025f3a vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeee4153e vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xf24a8af6 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0ddc671e wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x1201c1c0 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x6e0bdd01 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x7cc71278 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x850ee6da wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8588a6f5 wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x90ccc151 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x9869cfa6 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x99f82e0a wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xb4f35448 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc6365c7b wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd8673bc4 wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0xfdbda4e9 wimax_msg_data +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1ad4ca86 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x34341cac cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6b877de5 cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x790a57c1 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x7ed46c9d cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8fa4cec7 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x936a147c cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9cb6786a cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x9ce3198a cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xafdd7cb9 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb6ae6d3c cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xd9fbf325 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe186b4af 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 0x52f2858f ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x6b6bd1ba ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8a949855 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x90f39601 ipcomp_output +EXPORT_SYMBOL_GPL sound/ac97_bus 0x56594051 snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xad9a51f4 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xc1ea3c96 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/snd 0x2720234b snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x460e38a0 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xa8480fdb snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0xab1d0c0a snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0xc114e916 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xcd3605d0 snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0xf3d69c5d 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 0x0a32b911 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x14632173 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x1759e3da snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x26f4cbce snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x2c073b87 snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x42b3280b snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x436219a0 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa17386f1 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 0xb731347d snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x1a326975 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x31ff3e21 snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3c4e3707 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x75a51818 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x7fdcc96c snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8ac6b4ec snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x8acba087 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x9a818236 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xc37eb9f6 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xee367e96 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfff1659d snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x03b87781 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1024afc4 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x134ae4c2 amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x4a9c11fd amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x585cf0f7 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa88ade4e amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xae3645ea amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0621e823 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x095e97d6 snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0efea823 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10988ac5 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x10a144e8 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x127b0b49 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1308e88e snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x19262b97 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d15bcc8 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d1b1683 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1f0fc569 snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24c27564 snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x25d27078 snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a876686 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2db35687 snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x340b0079 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b9126ef snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3d235373 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x446ce71f snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x44d4af3f snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4537ea95 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x46561518 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4b6b7b7c snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x52d228dd snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x53679a06 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x556a7995 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x556f77e5 snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x55dc3106 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x58d6c498 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5a08453a snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x61525291 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6f89fd07 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x738f0dfe snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7965f14e snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79ae6699 snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87c4ec12 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8e2b118e snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x905b6086 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x951246ab snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9e48e409 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9f8cfb72 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa4c22598 snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9e89a48 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xac7a6b84 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xafaf1556 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb01f9a7d snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb111c294 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb2ef7464 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb4024bc8 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6c35d00 snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe7dd7dc snd_array_new +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbf6221d7 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc2237bf1 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc4b340b1 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc82ced4b snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca85f32b snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcdf54df3 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xcf093ec2 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd30429f3 snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd4259607 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd678d266 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb0ce5cc snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdb15be32 snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdd9a804a snd_hdac_calc_stream_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdf70d056 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe536f23a snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe76ed4c9 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe77d49d5 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe77db77d snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xed3103c6 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4f938b9 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf666ebe8 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf99e8507 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x5b2490e2 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x8dde6929 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x925f6286 snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x9e36412a snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xa80989a9 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xb57bd212 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x01387bc2 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x02b4621c snd_hda_get_default_vref +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 0x068ee28a snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x076f14f8 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x093b039b snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0ba0be2d snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0e9782df snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0fb6d0a1 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x171cfbb0 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19e27623 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1a82acd3 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e7be0c4 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1fbc2dd9 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1febb6b5 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x218c3f12 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x21f7dc11 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x22504310 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x23ba0172 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24f494ff snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2ab88cc9 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e220d22 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3014c447 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3215cffa snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x32a9d086 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36147a68 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 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b67afb8 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b998e22 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d6bbbdd snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3f678d82 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x40209c6a snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4a778aa5 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4c6f8a00 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x544a10e0 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x54e694eb snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x55cf14b7 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x566f9aa6 snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57af175e snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x59f9f566 snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b7e1056 snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c5ba866 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5cd970d8 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d0b8c42 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63c09b38 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x641a64ab snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6575f486 __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x662274e2 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6941b0ec snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d1a4ed6 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x71deea0a snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72a1c638 snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72adca52 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x74a5d18d snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75789c9a snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77b5e1d8 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x799a5716 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x79c2a2c0 is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7af52072 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e9c1bd8 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7f1ffa79 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x80c13db6 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x82071e81 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x824252c4 snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83d28fcf snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x83dc5ca2 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x847b3e6a snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x850358b1 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x866ab8e3 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a4a9043 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8ba052a6 azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90416934 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9311a9e4 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x952c4022 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95925299 snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95e05b84 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96212a9a snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x98ecc0a6 snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x995b5588 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9b588e3f snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ccd56d3 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d20296a snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa01ccfcb snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa2d138de snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa3a4f13c snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xacf5ead5 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0b8452e snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb26412d2 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb4642d28 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb5233a22 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb69226f2 hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb6fd5a32 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb7e0708a snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba4245f7 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbd5fc8bb snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdf4fbef snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbfca88d0 snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6ce1df6 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6f63721 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc9afb73a snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4076920 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd6f487af azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd73b1666 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd765044b snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd5e4913 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddfd74fb azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdedf41b9 snd_hda_mixer_bind_ctls_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 0xe2c53c1c snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe44937ae azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5934f81 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe672be20 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe68bcc25 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe697f435 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6b79e99 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xebaefd91 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec9db72d snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xef38af92 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf04dae52 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf594e71c snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf6ba786b snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf729f3dd snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa58bcb1 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa68e94f snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfbc2a75a snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfedd1f9d azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xff547dab snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x181bb980 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2abe5ae9 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x49f7b623 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5b22d05c snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5cb7dbc6 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x70ccfadc 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 0x786cd5ce snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x83e56960 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 0x886d6263 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9782c4dd snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x9c0d04cf snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa546a5b3 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa763b825 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb4ee9133 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba0bb4e3 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xba1d516a snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc644a42d snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd04cf1b7 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd070e9a1 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd4245eb0 snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xe92e9556 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x04e7ed32 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7942babf 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 0x73f06635 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xcb31d28d cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x67bb81fa cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7ce31604 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xd3c3affd cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x4beb2384 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xa931fbad es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x991d457f pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xb77f818c pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xda02561f pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xea299e42 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2177ea2b sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x2bed726d sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x74a52990 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe0ef22d5 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xe9b1f589 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x2b53eb1a devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0b9bee26 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x0f8bdfd3 ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x49cc5a77 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x771a610e tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x2b60ee30 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x040bdcd0 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x71e6381f wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x95e293a7 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa147b04c wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x5bab8165 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xc13c4e6a wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x3b27d3ee fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x572a21c2 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 0x007cb60d snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x04e4d42c snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x068e4aa9 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e8b8fdb snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0e9f80c1 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x136494fe snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x183d6473 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18fa2a6b snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19530454 snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x204ef17c snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x209a7c1f snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x21200f10 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x224d3538 snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x22e1def1 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2484a917 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x249d4bdb snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2534bf93 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2673c438 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x27ad6dcf snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x28fecf04 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2946d3cb snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2982f34c snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2cd00713 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d126648 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x37f3f713 snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x393320b0 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x39a82741 snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a653455 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a762efc snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c24ede4 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3c6aad5e snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3daa1d86 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4097869e snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x443e9510 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x46833bad snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4689c0bc snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x469b8abe snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4719eccd snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4af2981a snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bdb70c1 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4dfcf1f2 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4f219210 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fb268f4 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5181119f snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51e7ff36 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x532a4b21 snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b539172 snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5c5f24df snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5cab7d97 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e50f5ca snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5e9668a4 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6248debe snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x626e012f snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x632341d9 snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x64347693 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x663307b0 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x675eee66 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6812f018 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a65fb9e snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6a9909d9 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e061fe7 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e8261ed snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6f19ab30 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fc9355f snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7357d987 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75ff688a dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x76ceb944 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x78f33d81 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7a65c865 soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ac1259a snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7daa62a2 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7dfb86ad snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x814eaa83 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x838c9496 snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83ea6ae0 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83eaf2c4 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8524eae7 snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x86462e11 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8abc233a snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c1c1140 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dc007c8 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8dffeaec snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8ed9d8f0 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8f80dfe3 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x911b73af snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x926387b3 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93495771 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9450ada0 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9922ec3f snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a7585b5 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c59aad7 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9f86a10e snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9fbff716 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3dd6116 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa3fa3d1d snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa66399d4 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa84f3aa0 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa8c2fc66 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9cfe6e6 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaa76afd4 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xad3454f7 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb52075d1 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb52b4df4 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb5cd5e61 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb9805cc1 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba9981ec snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbaa15596 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc02e68c2 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc10683e8 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc7589612 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 0xca3d46d8 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcd5c54a2 snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcee49526 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd353816b snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd75277ba snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdabc5d01 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdb0b4c4a snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdba480a3 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde1c4598 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde66dcb5 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe4c8d855 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe74f0116 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe78a9bae snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8924513 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 0xebe38c16 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec32b4ac snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee97c9bb snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeed098dc snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef32c806 dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef90a922 snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf2453026 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf26b5171 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf29bf703 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6174d0c snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf79706ce snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8fca0bb snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf905aff7 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf94bf27c snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfaa0d2c1 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfad7a673 snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb11cd52 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc998ee9 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd25f982 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfded519f snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xff6cebaa snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfff3a97b snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x16ab368d line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2b2bc328 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x49982725 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x540f4fea line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5cac70f2 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x5d7f613e line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x6a77d7a0 line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x75f8854e line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x831ac801 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 0x91bace7e line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb18416ed line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xbec1bb49 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd2b4d810 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd3519aea line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xf62dd649 line6_send_sysex_message +EXPORT_SYMBOL_GPL vmlinux 0x001dd9d0 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x00344e43 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x008056d1 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x0082124e tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x008e71c8 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009ee1f4 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x00bef36b ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0x00caa8b1 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x00eb91f2 tps6586x_set_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 0x0128ec45 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x01327feb rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x01350930 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x014f46c1 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0161ad06 sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x01c1bf07 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0x01ca6d77 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x01d53fb1 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e3097d pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x01e79745 of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0x01ebd494 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x01ecadc0 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x01fe0fa2 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x0200fc8c ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x020d0565 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x020feaee pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x023a86cb platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x026059be sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0x0262ec6d usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x02716ec9 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0x027b50ab swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x02ae9302 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x02d0ac95 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x02e54785 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x02e80d77 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0328ed96 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x03626f4b fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0x03645dba get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x03720839 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03ab2d0c i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0x03b36388 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x03c5a033 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x03e62e7a powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x03fc37a1 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0408d691 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x043113d4 ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x04363e5a ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x043999d5 securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x0446cbac fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x0451459c crypto_init_shash_spawn +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 0x04b43ebd usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x04b5549c __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c58af3 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0x04c696c0 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x04cd8e3d of_clk_parent_fill +EXPORT_SYMBOL_GPL vmlinux 0x04d7d23d regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x04ed1545 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0x0502a711 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05545804 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x0566c48e scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x05752070 of_clk_src_simple_get +EXPORT_SYMBOL_GPL vmlinux 0x057883f3 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x05791e8b nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x05829370 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05ad5d52 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x05ad80bf sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x05b59681 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x05bb74e5 of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x05cb1c80 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x05f593e4 wm8400_reset_codec_reg_cache +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 0x0627ab69 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x062c6d85 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x066beeff reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x067dea35 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x069051f2 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x06a09e28 ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x06ac3408 rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x06cbf212 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x06dc8df7 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0723789a tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x072d7da7 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x0732fe8f init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x075cef7d devres_add +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x076af6a1 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x0780f549 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x0799ce42 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c388fd ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x07f300c3 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0816f99e crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x08195bed srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0834897c fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x083f1e01 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x084ed0b7 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x08520442 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x088507c6 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x08860746 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x0891f76e ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x08b685c9 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08c3363e iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x08d2415d of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x08edf203 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0x0906e59b crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x091b4f92 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09342189 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x093e2f0b vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x09429f35 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x094daf9f of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0979cdd7 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x097be692 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x097ed5e2 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x09962644 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x09aa966d max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x09ab9c47 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x09b095eb blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x09b2933b uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x09b2e540 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x09c2b688 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x09c41413 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x09d5643f irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x09e687b9 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a614c4d register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x0a87e176 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x0aa77349 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x0aadc99d da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0ac208d8 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x0ac37156 of_clk_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x0adaf4e1 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x0ae70117 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x0aea7f22 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0c496a skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x0b0e9b42 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x0b121b46 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x0b12f8e1 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x0b2dcc7f ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x0b5f9898 dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0x0b646d08 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x0b664e5d tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x0b77e97d blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x0b814977 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x0ba122a6 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x0bea1d18 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x0bf88172 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c20a3e8 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x0c2809cb posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c40a403 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x0c653bcb __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x0ca27c4c da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc9ee32 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x0cde31d5 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x0d10b3c6 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x0d176a9d fsl_spi_cpm_irq +EXPORT_SYMBOL_GPL vmlinux 0x0d1d8941 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d5bc920 kvm_vcpu_read_guest +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 0x0dc74630 clk_register_divider +EXPORT_SYMBOL_GPL vmlinux 0x0dd3d99e kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x0dd88242 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0dfeda74 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x0e0a26d1 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x0e0eeca8 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x0e23b159 fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x0e54e06f rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x0e9848f4 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ebe9f5f virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ed18c0b regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0ee86a0a trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x0eeea668 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x0ef2856f __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0efccf6d ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0x0f0f1764 ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x0f16728a of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x0f270b91 sata_std_hardreset +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 0x0f87643a alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x0fb49d11 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x0fc9991a tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x103a9caf usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x103c4f32 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x104b7e3b rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x10672bcd nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x1081a4b8 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x1087f0b7 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0x108a2d52 regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1096774c __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x10a763c3 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x10d639a8 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x10d8f116 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x10d92311 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x110e1af1 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x11533522 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x11827640 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1192cf59 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x11b09fd2 usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x11b15ec6 usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x11b7f7cf n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x11e5bc16 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x11f89c21 wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x12185625 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x121aa643 pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1225e79c devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x122ca330 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x123f9ba6 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1250816d spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x12517541 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x12729f37 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0x12850740 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x12b0b3c2 devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x12f47995 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x1303d3cf dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x13218399 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x1346704a fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x135965b1 dev_pm_opp_disable +EXPORT_SYMBOL_GPL vmlinux 0x1360eca4 ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x136a8be5 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x136df208 kvmppc_sanity_check +EXPORT_SYMBOL_GPL vmlinux 0x139d86dc kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13d27f2b wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0x13db1056 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x13e43832 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x1400de7a of_clk_get_parent_count +EXPORT_SYMBOL_GPL vmlinux 0x142bfdae ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x14410334 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x1441f631 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x1447a69c reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1467ef12 tps65912_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x1471605b debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x148087a7 sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0x149918b5 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x14c945dc subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x14e65dc8 dev_pm_opp_remove +EXPORT_SYMBOL_GPL vmlinux 0x14ecd466 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x150086ca usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x150eb388 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x15157116 dev_pm_opp_get_opp_count +EXPORT_SYMBOL_GPL vmlinux 0x152f2dfe locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x1550c3d4 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x1553da40 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x1577e201 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x1582d9a6 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158f6cff arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x159b3142 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x15a64419 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x15b0d8bc ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15ecc268 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15fd6754 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x161743a7 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x1623d97e fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x164adb97 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x166df71a __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1695fcc1 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x169600e8 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x16acb977 ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x16d3c466 devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x170f86ca dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x171abc6e irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x17244948 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x172644ab inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1744f76e dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x1759f94d debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x175fa715 ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x17681d74 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17ba4919 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x17c1c30a relay_open +EXPORT_SYMBOL_GPL vmlinux 0x17d27e3f usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x17d44576 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x17ea1de3 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x17ee1f7a gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x17f7139e nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x18079a06 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x1836790c kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x1850a9db blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1871c0ee tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x1871fd88 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x1874d77d rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x187addfb attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x187ca549 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x1880aa8b tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x189c28d4 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x1909abd7 clk_register_mux +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19127697 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x1923d84c class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1931a903 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x194ceb2f md_stop +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x1954c804 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x1967ae40 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1984aa7e i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x199dca4d rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x19a034b1 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b3c0b7 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19f923a2 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a0b5849 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x1a0c6825 kvmppc_pr_ops +EXPORT_SYMBOL_GPL vmlinux 0x1a51ec6a md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a5705c0 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x1a689aa3 kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1a68a87a sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x1a789156 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x1a79f362 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x1a7c06e6 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x1a7d3f4b irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aac707d splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x1abe8b18 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x1abf8dab bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x1ac22738 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x1acbb881 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ae59005 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1ae66c6e __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x1afb2396 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x1b0af9f9 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x1b0d7c30 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x1b0ff8e6 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1b1d5d86 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0x1b35311c split_page +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1c114d6d invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x1c48eea4 dev_pm_opp_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1c50b43f usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5b2d60 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x1c5ff742 clk_get_phase +EXPORT_SYMBOL_GPL vmlinux 0x1c6762d2 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x1c80d27d btree_geo128 +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c9d2307 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x1cc130f9 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x1cc762c9 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x1ccce8e6 dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d304f3e inet_csk_listen_start +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 0x1d863b38 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x1da8685a __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x1db1e992 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x1db8a782 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x1dc5dd23 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1dfcbbf5 usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x1e08606f spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x1e143a67 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e2fedbc regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x1e434bd6 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e6abff4 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x1e707906 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +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 0x1ed44210 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1eef2880 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x1ef993c2 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x1f0bc9b0 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x1f1843f8 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x1f1998e3 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x1f20ff15 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x1f2f33b8 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x1f2ff2b8 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0x1f3fd987 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x1f460e2c phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x1f4a8f0c debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x1f58fd94 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fd2b212 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x1fd5a8bb usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x1fe9cafa thermal_zone_of_sensor_register +EXPORT_SYMBOL_GPL vmlinux 0x2016aff0 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x2063b741 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x2090b291 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x2097855c usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20b866ad pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x20c69d3b rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x20cbae36 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x20dab362 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20efdb1c devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x20fce003 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x20febc68 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x21196f92 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x211e7107 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x2124918b pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x21369426 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x213a4446 fsl_spi_cpm_reinit_txrx +EXPORT_SYMBOL_GPL vmlinux 0x2157c058 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x215b43c8 clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x217cf5f0 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x21828817 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x21889274 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x21988011 ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x21a563da clk_get_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x21b184b9 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x21caac26 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21ebbfc2 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x21f134de i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x22098a8f use_mm +EXPORT_SYMBOL_GPL vmlinux 0x2235e851 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x224f10b3 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x227ac713 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22cba9ad rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x22d58238 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x22f96a53 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2315a82c clk_mux_ro_ops +EXPORT_SYMBOL_GPL vmlinux 0x2315cac9 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x237da7d2 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x2384f268 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2396c7f0 clk_set_parent +EXPORT_SYMBOL_GPL vmlinux 0x23a74a09 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0x23bfd74a of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x23cbecd3 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0x23cc8725 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x241e8cbc crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x242077a4 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x2438b818 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x244e0883 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x2457f28c dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x247e71a2 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24a3cae8 get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x24a3ede7 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24aca8ec sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x24c02018 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x2511516c md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25379e73 clk_set_min_rate +EXPORT_SYMBOL_GPL vmlinux 0x253b3b79 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x25915aa7 ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x259626fb fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x25bcf55e fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x25be8b76 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x2627858b __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x2642b0de gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x26584745 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x268ae8f8 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x2690a9f5 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x26925619 ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x26b6031b task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26bb6349 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x2702b8c3 of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2733dc20 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x274cf5e1 __clk_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x274ed169 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x2750574c device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x2758bb73 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x276505d3 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x276bd832 clk_hw_get_rate +EXPORT_SYMBOL_GPL vmlinux 0x2777804d cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x27792ac4 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x27b3a282 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27cdb39e blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x27d9f93e put_device +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28014b7f pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x280f7b6b input_class +EXPORT_SYMBOL_GPL vmlinux 0x2813543b regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x28223790 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x2832d6f4 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x28374f4c rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x28520ebd sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x285a5f9d percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x28629cc3 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x28aec55f devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x28ce6d8e wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x28d28faf irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x290d1387 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0x29262603 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x292ca101 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x2944428e gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x2958512e led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2959ff05 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x2979dd9b __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x297ffe40 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x299c4de7 ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x29c7ad2f crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x29cd9143 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x29e7f826 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f55ec8 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x2a0d22e9 da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x2a12d3a3 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x2a2983b4 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x2a51d94c dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x2a7caf64 fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x2a833e66 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x2a862de3 tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2a8bd042 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x2a8dd09e mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x2a9e1fc3 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x2aabb5b0 blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x2ab4c736 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2abee4f1 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x2ac1e22c of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0x2ae0d594 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x2af852bd sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x2afdd5d7 max_gen_clk_probe +EXPORT_SYMBOL_GPL vmlinux 0x2b17ebfc udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b37ee75 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x2b3c0336 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x2b4d34fb __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b888cc6 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x2b8bb9d2 gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x2b94acaf leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x2b952517 clk_has_parent +EXPORT_SYMBOL_GPL vmlinux 0x2b9e6608 clk_register_mux_table +EXPORT_SYMBOL_GPL vmlinux 0x2bb105d2 tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x2bbd771f usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x2bc2959c ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x2bf3c2a0 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2bfda389 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x2c100b24 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c3f9738 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x2c5bfaa3 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x2c5e4fe2 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x2c655b87 __ata_change_queue_depth +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 0x2cb69fb9 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x2ccd69fb xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2cd4bb00 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cfb6d10 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x2d01bb0f fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x2d18b156 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d29aaa4 crypto_register_shash +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 0x2d5e04b7 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2d60de30 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x2d9318cf usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x2d9fec72 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x2dad6e62 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dc65289 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2dcdfacb sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x2dd813ba perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x2dddb3d0 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x2e02ff4e lp8788_read_byte +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 0x2e485659 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x2e4d0339 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x2e6d2440 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x2e7ac13c unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2e82023f file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x2e95c022 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x2e9cc3b7 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x2eaaa247 kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x2eaeb76f ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0x2eb7e332 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec53d99 clk_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0x2ec82cf5 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x2eca3ab8 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0x2ee0a2cb devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x2efe21e0 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x2f03c976 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x2f08c38b ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f2f2a15 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f794f67 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2f8c8196 dev_pm_opp_get_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2f938182 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x2f9fafb2 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x2faf70fb rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0x2fca1404 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x2fce1f06 rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x2fe52b3d sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x2febc0ed regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2febd672 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x3014fa9a device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x303665a4 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x30573437 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x306fc07c ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x308a0912 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x308ce8be gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x308dd6a7 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x309406e9 of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0x30c13bf3 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30d7a1cb devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x30f39bbc perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310e363e i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312cd8de blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x31351f0b cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x315b64b2 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x31837469 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x31ad20ce rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0x31bac358 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31d6a07b i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x31e448f2 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x32207a2b kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x322096af adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3220e17e ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x323b70b9 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x324d5525 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x326c08d6 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3285c1a6 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32a1c2d2 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x32a6757f pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x32b0fd48 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32da9fbe devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x32dcc04c clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0x33223ae5 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x333546eb usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x336325f0 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x337f028b aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x3387997c crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x339c5805 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0x33c5a7d3 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x33d3fbe8 clk_hw_get_parent_by_index +EXPORT_SYMBOL_GPL vmlinux 0x33d547df tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x33dee5b0 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x33e6c954 device_move +EXPORT_SYMBOL_GPL vmlinux 0x33e9e3a4 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x33f2ea18 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x34326f2a device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x343e5a73 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x345a259d __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x345b2cd3 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x3473404d thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x34778c30 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34987879 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34a8da5f __tracepoint_xhci_dbg_quirks +EXPORT_SYMBOL_GPL vmlinux 0x34f0c31c debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x35179e9d tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x35190b7f pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x3565317f nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x35755c68 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x3582be1d dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35af6689 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35e81f29 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0x36143698 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3630fb0c __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x363cb231 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x36479940 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x36935092 platform_device_add_properties +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 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36fc47da tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x37079ff8 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x37436d7c device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x3761f9c7 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x376e0a1b cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x378ab84e devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x37adf8ef xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x37d2c2c5 rh_dump_blk +EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3833bb41 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x383ef184 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x384ded8c swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x385f7951 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x386c99a3 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x387d0428 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0x389dda32 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x38e5bc5a clk_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x38ea0ca1 fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x39018d14 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x392add00 dev_pm_opp_of_get_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x3945afe0 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x39583f36 device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x395f05f3 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x3967fdf9 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x3976bb99 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x397a54a4 user_update +EXPORT_SYMBOL_GPL vmlinux 0x399efe0c usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x39b68ad0 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x39b75515 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39cc3f1c locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x39d331b7 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a16f2fe shmem_add_seals +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 0x3a5882ad alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x3a5b84dd of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x3a5fc8d3 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x3a6ba75b fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x3a8d3b25 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3aa1d2e0 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x3ab59aa2 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x3abbd18d rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3ae973b3 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x3aefbbfc fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x3af1fa88 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x3b09a078 percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x3b0a9538 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3b0eabdb arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x3b11bed4 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x3b1a6eba phy_init +EXPORT_SYMBOL_GPL vmlinux 0x3b23f871 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0x3b9129b2 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b9525a2 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x3badd850 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x3bb1913d ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x3bd149d1 led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x3bd33ff1 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x3c0ab98b rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x3c164147 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x3c215f62 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x3c220768 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0x3c26719f platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x3c295b6d rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x3c4ec5ab sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3cab5857 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3caca250 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x3cc8e2b2 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd990ec relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x3d19a6b3 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0x3d1cb1ac of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x3d56c169 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x3d5a4f5b of_clk_del_provider +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d765c21 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x3d79f9d0 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x3d8736a8 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x3da60b8b pci_assign_unassigned_bus_resources +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 0x3de1ffe7 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e0f713f __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e2d6df3 clk_divider_ops +EXPORT_SYMBOL_GPL vmlinux 0x3e588387 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e681f34 fsl_spi_cpm_bufs +EXPORT_SYMBOL_GPL vmlinux 0x3e6d532d ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x3e6ff35e scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e7b73a4 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x3e8a7af6 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x3e94bc36 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x3ec84f23 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x3eda5676 pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x3effdbc8 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0x3f07a345 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f2965e4 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x3f4194f8 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x3f7120f8 component_add +EXPORT_SYMBOL_GPL vmlinux 0x3f7c32e7 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f980a49 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x3f9edd26 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x3fa3320e regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fae2577 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3fb0770b regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3fcc8ba8 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x3fcee49d vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x3fd96aa5 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3ff49741 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x400dcf41 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x402b31c3 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c1b846 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x40cdcb9c security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d8d56b usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x40e3ba62 find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x41277a17 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x41287b66 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x41309287 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x414b3940 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x414e619d phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4158a40a crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0x415a57f7 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x41802da4 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418fd6c7 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x41a748a7 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x41b0b5ad driver_register +EXPORT_SYMBOL_GPL vmlinux 0x41b45054 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x41bd849d bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x41c962da mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41e49011 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x4219b50f of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x421e85ee tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x42295b4c sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x42368179 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4245f26f wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42888b21 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x4296a3ce blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x429a851b wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x42a3dc0e aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x42cd1778 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x42f39987 phy_put +EXPORT_SYMBOL_GPL vmlinux 0x431d3192 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x4320f3d5 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4345da82 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x437af313 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x4380d23b scsi_eh_ready_devs +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 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43e55d02 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x43f81957 clk_round_rate +EXPORT_SYMBOL_GPL vmlinux 0x44010244 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x4428b9f4 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x4438d8d3 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x444c4963 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x445fc6c1 fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449add42 transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0x44a810ab wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c6e196 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x45321125 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x454032ab ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x4545bedf to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x454f6f5c virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x45a74f71 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45cf773e subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x45ef8390 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x45f3c7e5 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x46193328 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x4625c45b ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x464c8d35 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x46577b0b tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x46655c1d device_attach +EXPORT_SYMBOL_GPL vmlinux 0x4669a82d of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0x466faa4c unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x467e9623 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x467f0fdb sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46c0a4ac driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x46c4720c rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x46e5e606 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x46fdd97f serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4735a3c2 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4748584b usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47769664 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x47823ae8 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47906608 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0x47a3a089 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47ccae85 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x47d387ac crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x47de0dc7 clk_unregister_mux +EXPORT_SYMBOL_GPL vmlinux 0x4826ba5b regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x486b25a4 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0x486e65d7 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0x48702b73 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x4884a38b virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x48a884de spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x48ee5bf2 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x497931b4 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0x49835efa skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49a13623 pcibios_add_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0x49dcde42 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x49e17f35 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f54770 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x4a1b7dc5 dev_pm_opp_get_max_clock_latency +EXPORT_SYMBOL_GPL vmlinux 0x4a21db4c of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x4a2f2886 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a4ff6a8 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x4a814880 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4add7744 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x4ae5de11 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4af75610 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x4af8ff88 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x4af90dd4 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x4b052f0d scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x4b63f5b7 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4b89bb5c clk_gpio_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0x4b8d29fd debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x4b8db2bc crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x4b9141f4 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x4b93b7e3 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x4b98827c rh_init +EXPORT_SYMBOL_GPL vmlinux 0x4ba35d08 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4bbfb18d dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x4bd85a22 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x4be01202 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x4bee07a7 tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0x4c0105f9 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x4c2617e9 phy_get +EXPORT_SYMBOL_GPL vmlinux 0x4c483cf9 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x4c5ad8ca __rio_local_read_config_32 +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 0x4c8229fa uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x4caed0e0 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x4cfc3049 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x4d0deddc pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4d4962e5 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4d7a0675 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x4da8fdcb ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x4dc73dde aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x4ddd9052 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df07d89 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e162885 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e434c5f __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x4e4c109a tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e92e1cd usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x4eb13907 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0x4eca0f66 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x4ed885df gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x4ee69564 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x4eeddefe smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x4ef30756 perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f2de97d virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f4b41fa usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x4f4d5115 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x4f60d164 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x4f69c25d devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f7ab44c dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x4faef8cf pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4fe5921a dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x4ff97076 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x500bb0d1 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x50227b8f usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x50714d91 rio_set_port_lockout +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 0x50a747de virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x50cebe5b pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x50d028f5 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x50e0f072 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f360d8 clk_debugfs_add_file +EXPORT_SYMBOL_GPL vmlinux 0x50f718ec class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51000f5b inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x513b9dd0 clk_hw_get_name +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 0x5165439a cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x5169016a rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x518fb695 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x519bbcb3 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x519e35f0 desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0x51a18b38 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51ea6e86 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5209d260 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x52148c24 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x52256475 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x52420e0b ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x5259d6d8 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x526f7a88 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x52924f20 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0x52b05692 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x52c8855b register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x52fdaaf3 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x5303edde of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x53125c2e handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x5338f2d8 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x536333b7 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x538ed432 ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x53a6be83 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x53a7ec2b kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x53ac3d36 ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x53caf717 inet6_lookup +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 0x5428db90 regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x542be86e serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x5440e919 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x5445f47c pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x545a4d7f skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x54637b76 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x546c5565 ppc_tb_freq +EXPORT_SYMBOL_GPL vmlinux 0x5471f20e of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x5471f956 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x54740eb7 get_cpu_idle_time +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54a65cd0 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x54ab3990 blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x54b918a2 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54f65545 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x54fa4749 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x54ff0d98 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x5503a572 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5507c801 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x551a17cd __put_net +EXPORT_SYMBOL_GPL vmlinux 0x55307fce pci_check_and_mask_intx +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 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5584b7da attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x55b4f9ac pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x55c4ab8d ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0x55d44e9e tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x55d70a6c __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f037cd dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x561ba427 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x562287b2 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x563f2466 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x56521c5c mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x5652dcf2 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x565cdb02 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x56cfa26f cgroup_path_ns +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 0x56dd7647 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x571e2f6e devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x573c5fc7 devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x5741fb4a bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x575839f5 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x577ffdc1 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x5784e8da ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a81c51 ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x57ad8b76 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x57b8d54a blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57cc5d03 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x57ebf0fe simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x5807feb5 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5839ebd1 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x585d9c6e usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x58616dba rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x5884dfb7 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58a32c44 spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0x58d4a8ec ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x58ee1cf4 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0x58fd096b crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x59494f88 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x594afcf8 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x5958683c pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59de806c pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x59e06f8f virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x59e9aa81 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a19cd0c subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x5a3b820d cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a49af6d pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x5a4cbd52 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x5a67cf48 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x5a723d9e vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a7ff2e3 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5a82c3a2 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0x5a8a10c3 kvm_vcpu_kick +EXPORT_SYMBOL_GPL vmlinux 0x5abe5d3c key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x5abfbd39 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x5adb684d cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0x5afebafd noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x5b1bc093 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5b34bbfd vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0x5b3ea458 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x5b665d22 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5b73a9ef stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x5b84446c thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0x5b9a11c0 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5b9ba87a fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x5ba4052a kvmppc_st +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5beb7ac1 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x5c0e5947 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x5c15d53a arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x5c20b69f nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5c25d3d1 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x5c2778c2 clk_register_fractional_divider +EXPORT_SYMBOL_GPL vmlinux 0x5c2b51a9 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c5dbb2f debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x5c895e00 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x5ca492f1 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cb57f2d of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x5cb9ed65 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d20a66b devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5d2eae47 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x5d45df92 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x5d4a286b rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x5d66f943 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x5d9a0352 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x5d9fe933 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5db923cb wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x5dc700ed tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x5dcbff7f irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0x5ddfb120 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x5dee6174 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x5e170fae device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x5e1b3dcc sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x5e44c18b bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e748fbd devres_get +EXPORT_SYMBOL_GPL vmlinux 0x5e9bde28 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x5eaa7d14 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x5eadb487 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0x5ec055b0 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x5eca8892 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5ef400a4 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x5f0359e5 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x5f120cb0 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f156bb4 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f385f1a wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5f77627f wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x5febd739 __clk_get_hw +EXPORT_SYMBOL_GPL vmlinux 0x5fee3251 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x5ff8b359 netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x60091316 clk_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x6013d204 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x60159041 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x60253d4a ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x607616f8 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x60777f17 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0x609a3957 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x609fee33 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60a73529 __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x60c088b7 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x6126c1ea cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x6171283a virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x61867177 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61ae4a04 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x61e3e360 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x6201bd3c usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x622c5596 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62331b38 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x62578603 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x6268fc9c phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x626d4440 digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x62795925 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x627f45eb ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x62a9c738 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x62bb88c3 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62c64883 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x62c9639d device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x62ea8dab __module_address +EXPORT_SYMBOL_GPL vmlinux 0x63150e06 clk_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x633f1c9f kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x63501fe8 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x635e8cfb pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x6378e010 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0x638af9b1 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x639975f5 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x63ab9015 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x63ba5186 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x63bd9550 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x63e17b86 divider_recalc_rate +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x6428da4f rh_attach_region +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644acac3 component_del +EXPORT_SYMBOL_GPL vmlinux 0x6471f9f0 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x6474607a regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x647a0f04 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x64b30f54 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x64b4eccd trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x64b7c26d dev_pm_opp_init_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0x64dcca41 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x64e12fd1 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64eae574 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x64ed70fb debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x6506a030 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x6506e65b regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x6517ce1a inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x651a1917 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x651ef607 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x6524d580 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x6534fb74 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x653a5660 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x6555ec15 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x657edd5f virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x65a13d7f dev_pm_opp_find_freq_floor +EXPORT_SYMBOL_GPL vmlinux 0x65acbbc0 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x65afbf09 mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x65b403b8 clk_register_fixed_rate_with_accuracy +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65bd3656 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x65c62a55 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d10c2a pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x65d7826b blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x65e265da usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x65f23035 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x65f328e1 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x660c4737 pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x660eba1f crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661aa733 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x6627d499 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6638b631 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x664071f8 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x6669e0d8 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x666cc35c da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6684823b evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x668ef104 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL vmlinux 0x66a7297c of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66b4f787 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d77d86 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x67120432 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x671e84d2 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x672addd0 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x673d9e51 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67646598 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x67673c48 pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x676e019a fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67b1a4d3 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67b3abf1 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x67c644da gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0x67e4e240 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x67f1ca09 kvmppc_handle_store +EXPORT_SYMBOL_GPL vmlinux 0x67f96112 devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x6830e150 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x6851b0d9 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x68a9c0a3 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x68dcc07a serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x690cdea0 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x69167a7c usb_hcd_pci_shutdown +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 0x694e9cb6 of_css +EXPORT_SYMBOL_GPL vmlinux 0x697a0ca3 user_destroy +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 0x699bd07f platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0x69a2d303 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x69be0d67 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x69efe7ca stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x69f6a9ee set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x6a30da46 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0x6a4ae1ba ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5cc524 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a72597c cpu_remove_dev_attr +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 0x6acbf944 __clk_mux_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0x6ace46fa fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x6b18a61f cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b48a910 switch_booke_debug_regs +EXPORT_SYMBOL_GPL vmlinux 0x6b59742b sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x6b77cd9c fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b89446f i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x6bc247c3 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x6bc7c2cf __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x6bd7941c crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x6beb9897 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x6bff314d blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x6c01ab0c anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c155f2f netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x6c16abe5 md_run +EXPORT_SYMBOL_GPL vmlinux 0x6c1dad7d blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x6c230983 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x6c353b4c device_store_bool +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 0x6cb03879 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x6cb39ade pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x6cbb11ba subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6cc454c9 fsl_spi_cpm_bufs_complete +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6cd4e63e rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x6cde1675 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x6ce4cb52 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x6cf7fcb3 devm_clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6d1a4850 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d30354a device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x6d507e43 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x6d6f739a rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d899f55 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x6da53181 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x6dbb105e uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x6dd4574b devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x6dd55f86 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x6df96287 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e0e1974 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e388949 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x6e46bb2a tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x6e6794bf ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e935e3d led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ec7cfe9 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x6ed12114 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x6efe93c5 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6eff2c32 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f1f9301 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x6f2ad198 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x6f491d99 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x6f518d06 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f8d56bb ping_err +EXPORT_SYMBOL_GPL vmlinux 0x6fa1e508 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x6fb18968 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x6fd7c759 find_module +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x706d0dbc xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x706e081e __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x7072ee9a cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708622e9 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x708eb7ea ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70ac0d14 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x70b982aa pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70ef5769 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x70f56094 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7132159b gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x71621fe0 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x71798132 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x717a2d4a da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x7183cfbe crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x7184cd0d sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x719e17ff clk_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x71a770d8 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x71b91a0a i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x71d90d09 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71f57ad9 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x71f6d283 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x71fe3ec1 dev_pm_opp_find_freq_ceil +EXPORT_SYMBOL_GPL vmlinux 0x721e80a3 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x723b1213 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x7273b50d cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x727918bc dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x72c891f7 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x72d99992 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x72e05342 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x72ff7fbe pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x730b2619 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x730dd806 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x7333b45a cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x733ab560 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x73465b92 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x7361864a mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x736746ad tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x738cbde7 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0x73995f53 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73cdb806 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73dffdd5 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x73e0665a pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x73e208a6 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x73f9a41b dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x73fc9a21 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x74039808 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x741009c8 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x7424be17 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743dd202 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x743ec802 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7482a1b3 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x74887168 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x748b25e8 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x7494832b debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x7494ccc4 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x74a37dcd kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c3f8a7 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x74c696a3 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x750a7319 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x75124988 blk_queue_lld_busy +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 0x754d3454 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x756c39ee usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x756d431d __pm_runtime_resume +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 0x7599eddb ata_sff_dev_classify +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 0x760dde0a raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x76191f0d kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x762b4015 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x764b9c44 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x76763e83 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x767af0a6 spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x768632d1 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7689221e scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0x76a1c6ec rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x76a2eaa9 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x76ac1c2d event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x76bf1633 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x76c31c48 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x76d815a4 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0x76d9b876 clk_set_rate +EXPORT_SYMBOL_GPL vmlinux 0x76f59c7f kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x76f7b89f unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x770f4dcd get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x771031c0 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x771d8e02 pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x771f3955 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x773f12f2 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x77403f38 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7757b51a clk_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7769df8f __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x77976a09 tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x779d86f4 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x77a518f1 usb_string +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77c679a2 rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x78092c14 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x780ecb10 inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x7819d54c regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x781e7939 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x782c63ec dev_pm_opp_enable +EXPORT_SYMBOL_GPL vmlinux 0x7831ae39 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x784f06c6 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x7855100b sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x78589b88 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x7872d1ea pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78905db3 clk_register_gpio_gate +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78dc5fec pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0x7904b421 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x790b7323 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x791f020f gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x7921d530 clk_hw_get_num_parents +EXPORT_SYMBOL_GPL vmlinux 0x792d543d gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x7934b510 pwm_set_polarity +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 0x797115c6 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x799ce1d9 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x79a881a9 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x79a9a635 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x79ad5d9c shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x79c480da rh_dump +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x7a0ef7ad thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a117c4b pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x7a1c42d1 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a4d7d11 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x7a516285 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7af0d691 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x7b00851e __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b2b9e66 device_add +EXPORT_SYMBOL_GPL vmlinux 0x7b3570fe regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x7b4cc6c1 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7b53af03 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x7b5e943b inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b7d7bbc regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x7b7eed2a serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x7bae1573 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7bbc91cc class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7bcfeef8 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7bdd4cae __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7bedab27 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0x7befe077 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7beff7e0 device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c72e060 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x7c7a7181 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7c97c209 wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x7c98f367 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x7c9a7371 clk_prepare +EXPORT_SYMBOL_GPL vmlinux 0x7ca92138 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7cbc851b crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x7cc2e4e8 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x7cca0e53 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdb7903 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cebd606 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d1b0a88 pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7d286773 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x7d330a84 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7d47f21a arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d60abe1 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x7d8ecd11 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x7dab26b6 wm831x_isinkv_values +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 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e27e0ee regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x7e51aa87 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x7e610134 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e87c235 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x7e8e43b3 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ea1ed15 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x7ea2c757 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x7ec44b91 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7efdf1e0 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f019a25 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x7f108f25 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f1fc488 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f4633ed ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0x7f69d2ce usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7f7a47b2 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8175bb dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x7f88662b mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x7fa2ce80 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x7fa60cd2 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x7fa6f88e stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7faacd07 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x7fab7fd3 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x7facc9c1 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x7fbd8a49 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fc0f48e blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x7fc6f2f1 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x7fe05d7c regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x7ffb8b7a of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x8006144f wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x803be00e rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x804826af tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x807dadbc clk_hw_get_parent +EXPORT_SYMBOL_GPL vmlinux 0x8082141b irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x808d4f19 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x809736e8 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x809fc409 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x80aaf033 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x80aefe78 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0x80af5c33 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d22fad rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80d652b5 extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x810689a6 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x8114b8d6 md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x8116fdc0 devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x811afe51 mmput +EXPORT_SYMBOL_GPL vmlinux 0x811dc334 usb_unregister_notify +EXPORT_SYMBOL_GPL vmlinux 0x813efd8b thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x8140d8e6 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x814643ad seq_release_net +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 0x8178c317 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x81b12479 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x81f515d4 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x82150e01 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x824db675 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x825df67d devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x825f110c wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x826cbfb5 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x8289cda5 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x828e0c0d fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x82ce41eb dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82f0d576 devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x82f5475c dev_pm_opp_add +EXPORT_SYMBOL_GPL vmlinux 0x82f81774 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x8301640e devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x830ee01e regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x8321f03c cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x8323e839 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x8324f977 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x832f18aa serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x83304e2e crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x833d3c02 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x833d74e1 gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x835d64e2 of_fixed_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x835f097e cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x83768099 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x83797099 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83cf15ea pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0x8402fdf5 pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x84157f2d sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x84285987 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x844de1d6 sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x845ba2c7 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x846fd21e regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x8470dc9e pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84a3b856 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84cc59e9 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x84e723f5 kvm_io_bus_write +EXPORT_SYMBOL_GPL vmlinux 0x84e85e4d cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x84ef75b9 usb_hcd_unmap_urb_setup_for_dma +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 0x85163a04 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x85236b6b early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x852487ea ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x858c0044 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x85bb1f5b is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85ed2f42 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x85f1f1d0 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x85fcdbe3 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x86220b92 of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x862eb3fe blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x86453957 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x864cceb2 clk_hw_get_flags +EXPORT_SYMBOL_GPL vmlinux 0x86619dcb tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x866fb317 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86b3f022 sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x86b5e479 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0x86f0bd64 arizona_set_irq_wake +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 0x86fb6d26 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x87196fd9 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x871a4816 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x8726a3ee extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x876addca ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x879ba5b5 regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x87b09d27 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x87b2837c device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x87b47c73 sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x87e6bc3d platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x87e7861d led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x87ff3c39 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x88051e54 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x880831ef devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x8846a7c3 kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bcae86 ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x88bcf4ff cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x88ded228 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x892055c3 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x894bf313 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x89567a65 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x895ff8c7 scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x8972983d blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89d4e637 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x89ebc713 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x8a14d565 of_fixed_factor_clk_setup +EXPORT_SYMBOL_GPL vmlinux 0x8a41fbae of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x8a46ea43 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0x8a48956c ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x8a4a82d5 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a57052f dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x8a6769a6 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x8a6c60cd i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x8a8c6a4a regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x8a9906cd key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8aeb3d24 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b067782 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x8b0aac14 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x8b149c36 clk_is_match +EXPORT_SYMBOL_GPL vmlinux 0x8b254ac3 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x8b294b90 ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x8b2d79b0 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x8b480e9b dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x8b4b21f3 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b738aef led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x8b7528ba put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x8b7f0988 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8ba62665 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x8ba7cbc8 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x8bab03a3 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8bc080bf __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8bc3179a sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x8bd9a19d usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x8bea6b62 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x8bfbdf49 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c11127a cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x8c30f24c sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x8c31edbe __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x8c35c0fd unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x8c630d2e pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c78b57d scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x8c957340 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8ce052e2 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x8ce58a1a tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cf1bbb2 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8cff8c5d register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x8d3f788c pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x8d7007b8 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x8d7049e0 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x8d7322a4 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x8d732773 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x8d7f78d2 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x8d85a896 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x8d9bf54a crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dadf661 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x8ddb5c56 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x8dee02c4 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x8df65e1c __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e0a8e97 usb_hcd_resume_root_hub +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 0x8e6c57d6 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x8e7bcd86 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x8ea1fb6d dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0x8eb198d4 rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x8eb3ba63 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8ec21f9e dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x8ed4f75d gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x8efe528b bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1d9d3f powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x8f5317ab shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x8f5b8de6 tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x8f5f68ae virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f75797c ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8f78b436 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x8f830491 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x8f97aab8 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x8fa913bb regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x8fac832d class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fb1e9cd usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x8fb3720b extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x8fb488c3 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fe5c32d crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9054c479 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x907316c3 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x907d1bf6 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x90813507 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x908a4d09 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90d821e8 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x90db5e49 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0x90df764f nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x90e18996 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x90f69a02 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x9104fe2a tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x9106b00c unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x9117f995 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x913ab9ae fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x91416096 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x9147a19f ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91952a1d kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x91b5dc50 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91c7e0a1 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x91d37890 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x91fcf241 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x91fdf9d0 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9221efb1 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x9233ac8d __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x923607c6 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x926a785e ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x926ca566 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x92bb8d75 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x92c59c3f cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92e1ea71 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x92e249b8 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x92edb426 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x92fc72c3 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x93015a5c module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x931d4155 ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x932567c0 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x9331a6d7 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x9331dc3e pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x93380ca1 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x9338d43c bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x934fde38 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x935519ce clk_multiplier_ops +EXPORT_SYMBOL_GPL vmlinux 0x9355f69f ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x93858192 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x93ad078f usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x93adc7f8 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x93c5802e of_clk_src_onecell_get +EXPORT_SYMBOL_GPL vmlinux 0x93cc1c73 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x93ea9878 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x940cf8a4 get_device +EXPORT_SYMBOL_GPL vmlinux 0x940e2749 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x940fc1f4 of_devfreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9414a013 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x942eb059 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x943a14d8 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x9450d084 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x94534808 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x94747320 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x947ced49 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94affc00 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x94b067bb kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x94c2364f virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94e74b66 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f2ec07 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x94f7bd98 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0x94fcf542 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x9523f531 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95291cc3 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954e7011 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x958ab1de user_read +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95967f08 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x95ae88d0 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x95b2ecc4 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x960ece6b ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96240541 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x9632afc1 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x963e5461 fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x963e5f7f register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x96605cab serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x9660dfb6 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x9679a622 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x96831526 i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x96915948 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x9691a577 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x96b32702 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x96ce8fe9 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x96dfcbf5 shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x96ed3fc4 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x9710c4db of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x9724d00c pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x973a8b50 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x976b5fa4 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x976e0fc9 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x97728b17 dev_pm_opp_find_freq_exact +EXPORT_SYMBOL_GPL vmlinux 0x9773e471 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x9795171a kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0x979dbe6c key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x97a47a12 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x97bb7151 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x97d87a2a relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x97db5d7a regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x97dd4a13 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9811a80a led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x98258ab0 xfrm_audit_state_notfound +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 0x984fa3b7 net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x986a7350 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x989ec0c2 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98ae0183 power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x98ae213a trace_buffer_unlock_commit_regs +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 0x9901b390 usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x9917a8a5 clk_hw_set_rate_range +EXPORT_SYMBOL_GPL vmlinux 0x99180b9a gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0x991d441e blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x992566b8 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x99414ec0 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x99649ebc rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x9981b84d metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x998b85cf sdio_set_host_pm_flags +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 0x99d06da6 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9a0253d1 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9a0cc371 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a2703f4 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x9a2708db power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x9a2ff815 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9a3ecc32 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a53e544 usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x9a5ee669 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x9a67b034 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9a75ef3d pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9aea1440 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af5a67a ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x9b6db7f7 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x9b7cbb3c thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x9b9e9351 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bbd7478 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x9bbeee54 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9bc9b15d gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bcfe4e6 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9bf7dbc3 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x9c1d7790 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x9c2466ed __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x9c2f72bf tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x9c2fda71 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x9c32d5ed usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x9c37bd7d usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x9c39efd7 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x9c6e2dfe regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x9c80eaf3 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x9c9c1073 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0x9ca1d280 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9cb87ef2 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x9cc7f465 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x9cd9620f sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x9cd998a0 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x9d08b6f4 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x9d1cee58 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x9d28cf42 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x9d37c817 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x9d692bf7 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x9d6d76bd pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x9d6f5f0a l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9d7d628c fsl_rio_mcheck_exception +EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x9da19b27 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dc34809 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x9e206804 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0x9e3784d9 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x9e3d81ea __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x9e407e87 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e4d6a4d ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x9e60ec1a virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x9e7453af mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x9e87910d tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x9e8fa109 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ee83e5e __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0x9ee898a2 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x9efe27c1 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x9f3ed9fe regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9f72f2d4 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff1a965 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xa0197b5f sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xa0208e02 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xa0411139 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xa0513a57 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0a90a0e bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xa0b427b5 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0c7c8b5 of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xa104fad2 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0xa1275e1c add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xa12f5c22 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xa160eb97 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa170f3be spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1a8dd78 devm_clk_register +EXPORT_SYMBOL_GPL vmlinux 0xa1c32367 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa1d95d1c irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa213b15b rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa22d08d7 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xa23db9de usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xa25adbdf rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xa2634280 tps6586x_irq_get_virq +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 0xa295042c tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xa2964f54 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0xa2a6e5ea cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2be08bf PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xa2cbd550 gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xa2cc4872 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa2d3a3aa kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xa2e0fe1e tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xa33d16aa ata_host_suspend +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 0xa39f7e9a wm831x_regmap_config +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 0xa3ba0181 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0xa3c615d2 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xa3df783c yield_to +EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa3e2ee50 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3f37e7a devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xa405e50f devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xa4132fbf mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4608a89 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4830a5e ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0xa497e391 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xa4d5efa2 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xa4dbc003 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xa4f79850 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xa50065ba __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0xa5043602 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0xa52fc439 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa53765d5 fsl_spi_cpm_free +EXPORT_SYMBOL_GPL vmlinux 0xa53a293c pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0xa5414122 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xa544a4b9 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xa5494ab6 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa54f18ed regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xa571b56b ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xa583249e __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0xa58f3da3 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5cc6301 ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa5d8915d ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xa5e0a94d l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa625110d kmsg_dump_rewind +EXPORT_SYMBOL_GPL vmlinux 0xa650ac42 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa671d180 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xa68d6df2 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0xa6960634 kvmppc_handle_load +EXPORT_SYMBOL_GPL vmlinux 0xa6a4e7c1 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0xa6a8d195 ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xa6b865e8 devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xa6ce4c60 usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ec3770 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa706dbc8 ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xa76e8202 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa7889bc5 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7c57467 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xa7c8570f isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0xa7d53092 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xa80ef199 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0xa81e21a4 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xa820d028 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xa8319abc nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xa833ecae lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0xa838a67f device_create +EXPORT_SYMBOL_GPL vmlinux 0xa84d7195 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa873419c debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0xa87dcd5e unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xa88fda80 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xa896100f devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xa8b6fdf7 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8ea55ab fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xa8f8056e invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xa9057b97 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xa92aa57f usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa93d8b59 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0xa93ed2be dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xa940154a crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xa9458899 usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa945da0e get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xa96b5920 rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa96f01de ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9cb58cb kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9d99322 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xa9e0f2ce power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9f05bb4 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0xaa071d6c inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xaa14d555 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0xaa17a2e2 rh_alloc_align +EXPORT_SYMBOL_GPL vmlinux 0xaa1a1a78 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xaa73a733 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab3b726 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xaab6b643 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xaae334a6 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0xaaf528a8 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xaaffff65 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0xab04ca55 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0xab10a2aa gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xab139d10 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +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 0xab655f14 crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab744654 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xab7a2258 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xab954883 exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xab9c788a kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xaba8285c napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0xabb97aab mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd12621 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xabd74ef5 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0xabff5f48 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0xac234b55 clk_register_divider_table +EXPORT_SYMBOL_GPL vmlinux 0xac242bf1 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0xac5beeab device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xac649e9f ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xac6e12cf vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xac6e3ead sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xac763b50 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0xac9cfc4c ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xacd5985b thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd6077e debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xadd6739c rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae02abb4 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xae23b8da key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xae2af3c0 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae7698ff tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae7dfe7f bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xaeb4192d wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xaebaa10e component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xaefa9b53 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xaf208102 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0xaf28a0c9 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xaf3327f3 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xaf55acde usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xaf707c38 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0xaf79dbd7 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xaf8fcd15 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xaf91ce11 devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xaf9e53e7 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xafb593a7 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xafe5ca03 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb04097b8 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xb04bbf11 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xb04e103b kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xb077e70a clk_unprepare +EXPORT_SYMBOL_GPL vmlinux 0xb0a6b131 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0be0959 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xb0ca579a crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0e2e660 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0xb0e3202f devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0xb0e62534 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb141cf47 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb14b3527 netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb166e68c device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xb1a18bdd trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1bfd809 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1cf9d53 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0xb1e17862 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1f1a5e4 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0xb204346f dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xb2164318 phy_remove_lookup +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 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2823984 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xb28b61e3 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb28c0807 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xb296f324 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb2a1f8a2 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0xb2ac4d0c phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0xb2b45c2e devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xb2be7844 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xb2d0b376 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xb2db04ac ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xb31a99cf spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb381121c skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xb38d91a4 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0xb39f600e spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xb3a99901 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xb3b6f7c9 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xb3b9f586 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb3dfaac9 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0xb3ed9807 dev_pm_opp_get_suspend_opp +EXPORT_SYMBOL_GPL vmlinux 0xb3fb19a0 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xb41a70f9 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0xb4244cca devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb4268650 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xb44dd1c0 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xb454b6e9 rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xb46339d2 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xb46b5816 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0xb47e9ec0 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xb487ba7f fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4c116b7 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0xb4e904a7 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0xb4e90791 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4f8b870 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb52f1284 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5398c6c of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xb547658d dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xb5495377 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xb550b317 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0xb562dece inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0xb5651bb3 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xb576f095 ata_bmdma32_port_ops +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 0xb5a2af69 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5ac2edc devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5c6dfa4 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5de644f extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xb5e40ced usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb5eb01d5 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xb5f0948d wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb5fac31f msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xb5fd1a80 device_register +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb617e240 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb64b308d spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xb6627415 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb663243e pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xb66add7a __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xb6934b8c class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6affbff class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb6e6d99d clk_disable +EXPORT_SYMBOL_GPL vmlinux 0xb71ef650 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xb7329c06 clk_set_phase +EXPORT_SYMBOL_GPL vmlinux 0xb750fb42 of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xb75b78b8 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0xb76d2944 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0xb76f227a pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xb772dd14 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xb786e77d percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb7a055b9 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xb7d054aa thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xb7d9657f sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb80e0ea2 usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xb8102fd8 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xb82aa456 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0xb82b42cf regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0xb83c5ad0 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb857da49 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xb85830e1 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0xb86e9016 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0xb872b363 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb893a76c input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0xb8c15239 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8cd9bff gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xb8e9174f debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xb8ed00a4 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb95691c4 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xb960c8ce blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0xb97e97e5 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb9888344 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0xb991de7b inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0xb9b9bb2b sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9bc1264 regmap_get_val_endian +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 0xb9db256e sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xb9df256a usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xb9e518f7 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xb9fc9edf kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xba151e0d extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xba2387b7 dev_pm_opp_is_turbo +EXPORT_SYMBOL_GPL vmlinux 0xba27bc58 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0xba2a7586 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba556707 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xba7efa94 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xba864dcf gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xbaa24223 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaedf17e of_pci_msi_chip_remove +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 0xbb0c731e usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xbb1283b7 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0xbb1592d1 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xbb1f7ed7 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xbb2a2560 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xbb31fb53 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xbb3876a0 dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xbb596cd6 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbb5f5c97 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb7967ec pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xbbcaef82 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xbc166bde virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbc166dd5 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xbc375eb9 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8ac386 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcacdaee rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0xbcb26b48 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xbcb795af get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xbcbc1a52 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0xbcc663a4 sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbce48409 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xbd2b88e8 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd42f837 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xbd4a8c0e anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd65a18f devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd7a6b6e tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xbd890a7b device_reset +EXPORT_SYMBOL_GPL vmlinux 0xbd93006d of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0xbdab0b5c stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbdb8456e kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0xbdc44fed hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xbdcb0b09 devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xbdd25e83 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbde0dab7 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbdec5407 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbe1707f9 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe28234e devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xbe417e31 transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe8149e7 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xbe838ea4 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xbe8a1dc0 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xbe8cd5cc vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea549b9 clk_hw_round_rate +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec240ff da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbecb15b6 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xbee1ef31 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbee23ad8 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0xbeef7af6 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xbeefef50 clk_gpio_gate_ops +EXPORT_SYMBOL_GPL vmlinux 0xbf01639c tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf0ebe7f dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf4fd782 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xbf6887d5 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xbf91add8 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xbfa901db dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfcf7a8e ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfec11bb vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xbff068f7 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xbffbe89e of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc006df40 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc046b0c2 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xc05f3983 of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc063f8da __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc069c90a device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0xc06acf47 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc096fa87 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0xc0a5946a led_trigger_set +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 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc12e06d9 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xc13e3671 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xc1725683 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc1979f46 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xc1c927d4 max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0xc1e8aeb8 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xc1eb4a64 regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xc2067bbe devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xc20d00ec proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xc21dc167 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xc2271278 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc24708fe rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc264483a tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xc26bac2c inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc297acd1 of_devfreq_cooling_register_power +EXPORT_SYMBOL_GPL vmlinux 0xc2ab0302 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xc2ae726a __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc2af5eea tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0xc2bcfb91 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2de87d6 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc2e6a8d3 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc30a042c find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xc3240278 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xc33f259f led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc349750c gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xc355df0a class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc356e4f6 usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc35ddff9 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc37b757d gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xc386c0bc pci_intx +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 0xc3c60b89 kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xc40f27ef irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4597558 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0xc46ca1de unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc47be732 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc494259e dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4a285ad tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xc4b8a213 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc5049a2b of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc511809e udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xc5218b1d reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc53900cc i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc54ab919 dma_buf_get +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 0xc597fdfd __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xc59ab8d8 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5d19505 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xc5d681f2 clk_fixed_factor_ops +EXPORT_SYMBOL_GPL vmlinux 0xc5e20010 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xc5e84116 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc60bc9e5 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc617ce6f save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc628c328 __blk_end_request_err +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 0xc65af25a handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc666c982 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc695293d securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69ec5f9 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xc6a4a872 __clk_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xc6b5388f __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xc6f8385f cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL vmlinux 0xc71bd6a6 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xc729bf39 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc74d71a0 fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xc754d2dd tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xc767c505 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc77b4359 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7b2c534 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7edae64 dev_pm_opp_of_remove_table +EXPORT_SYMBOL_GPL vmlinux 0xc7f957ab bus_register +EXPORT_SYMBOL_GPL vmlinux 0xc801994f blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xc813fda1 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0xc829c37a crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xc855a87f page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc858c3ca irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0xc85d6be2 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc872d90c tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc8889ee7 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8cdd19d rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc910b0e4 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc9163e8a percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0xc92326e7 platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xc9506b06 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xc955870a ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc956eac3 pcibios_remove_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc9989e5b dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xc99c49d0 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xc9a14a85 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xc9b7dbfd dev_pm_opp_free_cpufreq_table +EXPORT_SYMBOL_GPL vmlinux 0xc9d35249 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xc9d5e4d5 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc9e6ed67 realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca299134 dev_pm_opp_get_freq +EXPORT_SYMBOL_GPL vmlinux 0xca4c33bb crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xca5cacbf kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xca68df50 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xca6fdc17 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xca70af22 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xca74cef1 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8b0a83 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xca8bcb9f gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xca8c4bf1 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xca943835 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac3e398 gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xcae6841c crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xcae8a46c kvmppc_ld +EXPORT_SYMBOL_GPL vmlinux 0xcb0bc1a4 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xcb11c3c3 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb374d4b regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb49d2f7 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcbbf8cfa of_clk_get_parent_name +EXPORT_SYMBOL_GPL vmlinux 0xcbd4dbca md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xcbe18f4a usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf03b0a ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xcbf8f568 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xcc07ae28 regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL vmlinux 0xcc5783ba dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0xcc628ef5 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xcc674ae4 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8b115a regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xcc9ab17f rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0xcca30c74 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xccafd737 dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xccbe91b8 of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccde3125 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xcce1041c raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0xcd40d214 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0xcd443648 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xcd57dbc3 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xcd8f108c inet_csk_route_child_sock +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 0xcdb8b16a do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdf15587 user_describe +EXPORT_SYMBOL_GPL vmlinux 0xce070208 kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce2d0cbf fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0xce4ac52d of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0xce53e133 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0xce57ae5f usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce810d4d __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xceaad4c8 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcec7c930 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcefaaab6 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcf0e41d3 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xcf1a6a9f usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0xcf2a2ebd ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xcf488e88 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf5b1f20 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xcf64d605 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0xcf7c8286 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xcf9e09c8 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xcfb084dc device_del +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 0xcfefab9f bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0xcff9fda8 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xd01d5043 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0xd028781d sdio_release_irq +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 0xd0927a15 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xd09506b4 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd0961d67 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xd0bcb9e4 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d3c032 thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0xd0f29376 irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd0fe3053 dummy_con +EXPORT_SYMBOL_GPL vmlinux 0xd146bfea wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd14ce698 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xd160d58c swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd18004bd usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xd1a73629 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xd1aedc18 bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xd1bd5ba6 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xd1caf95b spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0xd1d317d1 devm_mdiobus_alloc_size +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 0xd24483ba sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xd24be293 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd2617701 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xd266adc0 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd27e69a3 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd2860707 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0xd2ad9a62 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xd2d4d945 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e0b207 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd307e567 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xd308cb9c pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xd3145686 regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd31cb234 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xd32d90bf irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd352d99d dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xd36d5e20 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xd39f6ca6 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3cd6566 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xd3d3faa5 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xd3d45e51 devres_remove +EXPORT_SYMBOL_GPL vmlinux 0xd3e1a48e __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0xd3e6878a dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xd3f2ffc6 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd40d9cdd regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xd4105f3f bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd4363ad2 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xd4394558 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xd4478903 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd4604b8f spi_setup +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4cf6784 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xd4d1e162 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xd4d610c4 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xd5152ece of_clk_add_provider +EXPORT_SYMBOL_GPL vmlinux 0xd54d4f79 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd5580c1e crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0xd569b1f9 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd56e6ce2 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xd575fe96 nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xd5acf89a kvmppc_hv_ops +EXPORT_SYMBOL_GPL vmlinux 0xd5b0d4ee ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd606521c serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd63d715e hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xd641fccb ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0xd64e0a73 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0xd6519fef __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xd66c93b4 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6769c00 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xd68a21de of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd690ddf6 wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6dfb970 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd737017b free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xd74c30fd __class_register +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd7a29313 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xd7a55455 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0xd7ba5b4c crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xd7cb084e shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xd7cddb80 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0xd7e07c06 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0xd7e3b184 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd7f4da9c da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xd7fb94ef regulator_get_current_limit +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 0xd828a786 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xd84a6f7a nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xd84b8e74 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xd8557017 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd887ba41 mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xd88c90b6 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xd894d736 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xd89511c7 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xd89934e4 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xd8a4b697 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xd8b9ea8a rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd8d743f5 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xd8d90066 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xd8dfa0e9 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xd8fbb60b usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xd9194f7c spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xd91f236f kvm_vcpu_gfn_to_pfn +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 0xd95a297e bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd96d27e8 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0xd975d71f devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xd97a4c4b fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xd980811c ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd9821040 rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xd9ab2519 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xd9ba757f crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xd9c39156 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0xd9c39257 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0xd9e23893 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda123821 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xda2286a9 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xda365152 kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xda36f721 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xda74e6db get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xda78892e ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xda8cb2e5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0xda8decfd devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xdaa5c08a crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xdaadf20d kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xdae715e0 videomode_from_timing +EXPORT_SYMBOL_GPL vmlinux 0xdaec19f1 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf3bf83 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xdaf4dfb3 fb_mode_option +EXPORT_SYMBOL_GPL vmlinux 0xdaf9a1e8 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0xdaf9af8e list_lru_walk_node +EXPORT_SYMBOL_GPL vmlinux 0xdb111e1c uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb731197 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xdb80785d __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdb9bb390 regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0xdbb2ce75 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xdbb3f27e fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0xdbb4332c pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xdbd99df9 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbed3ea2 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfc43dd sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbfc87f5 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xdc290e9c rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0xdc4dad07 da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc56eb17 device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xdc7b1a21 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdc7d5332 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca1fd98 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xdcb15814 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2b4063 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd48c6e9 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xdd5571ce ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd5fffd9 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xdd6ca84d __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd73a9c8 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddcbf674 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde0ee496 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xde0fea35 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xde30ec69 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xde3709e4 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0xde3abf9f ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0xde46e353 clk_mux_ops +EXPORT_SYMBOL_GPL vmlinux 0xde742b3b regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdebb1c2d ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xdee1e1e0 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xdee33c19 phy_create +EXPORT_SYMBOL_GPL vmlinux 0xdee8fe6f inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf44bf4c sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xdf5b4198 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xdf6f09c6 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xdf6ff22c regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdf77b5c4 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xdf795b87 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdf97a504 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xdfa3cf74 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0xdfa6d5cf irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdfa92787 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xdfb4097c usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xdfe89a66 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xdfe9ca0e irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0xe001130c __clk_determine_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0063aff of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe011401c __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xe01568e5 kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe02f6db1 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe036b3e9 mpic_msgr_put +EXPORT_SYMBOL_GPL vmlinux 0xe03fd439 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0xe04bb1ff devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe04c1992 page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe080f70d pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0xe08658cf gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe08a27a2 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0xe08a2d66 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe098542b rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xe0992c73 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0xe0b1c103 clk_set_max_rate +EXPORT_SYMBOL_GPL vmlinux 0xe0b79d2a regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xe0d07a27 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xe0e7160f crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xe0e7f7e9 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xe11a6113 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xe13f53fa scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0xe1753997 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0xe1764506 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe18a0f7d fsl_spi_cpm_init +EXPORT_SYMBOL_GPL vmlinux 0xe18f2956 regmap_multi_reg_write +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 0xe1cbd959 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0xe1e71543 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0xe21d3572 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xe23013ac inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe240b4b0 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xe24a2fc2 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0xe270da57 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0xe281ac0d phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2fa4f94 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe3062923 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xe32ea519 ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xe367bc34 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0xe399e564 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0xe3d22d91 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3eb5945 max_gen_clk_ops +EXPORT_SYMBOL_GPL vmlinux 0xe3ff652c agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe4111bbd wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xe4182ec7 ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0xe440ea40 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xe4432267 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xe45812ef skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xe463e865 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xe4649784 kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xe466358f mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49d4675 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4dc092e dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xe4f5ef82 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xe50c465a scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0xe50e30ed pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe52c38b3 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xe5372411 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xe54c685b subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe55cb868 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xe5615188 cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5966889 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe5a2e35e platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xe5a3c281 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xe5aea193 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xe5d131e7 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe5f4eaab get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xe5fc7b0a ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0xe60f5fce sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe691b064 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0xe6bdbfbe sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6d6a21a ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xe6dda818 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e21b97 cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe6f6cd5b ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0xe6ff12d3 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xe7043d8c ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0xe70780ab disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe75e8eda pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0xe76794e7 __page_file_index +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 0xe78dfb12 led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xe7b90a66 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xe7cc7888 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xe7d842ef pm_runtime_force_suspend +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 0xe823f80a crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xe8400850 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe84f6e5c pciserial_remove_ports +EXPORT_SYMBOL_GPL vmlinux 0xe85c55e7 btree_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8bc3e8a rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xe8c5d6e2 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xe8cc30f3 xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xe8d292d7 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xe8e3fc33 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xe8e5b25c __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xe8ea8142 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe920da6e of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xe924c3e2 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe958a8a8 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe9877b8f ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xe99c085d add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xe9a7d79b extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe9e3ef1c crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea30a829 __clk_mux_determine_rate_closest +EXPORT_SYMBOL_GPL vmlinux 0xea38ff49 dev_pm_opp_of_cpumask_add_table +EXPORT_SYMBOL_GPL vmlinux 0xea3fbf5b usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea500f67 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea7f35bb blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xea8a4bdd crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xeaaab866 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0xeab71961 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xeab9d176 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0xeadbf0bd trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xeaf25fb4 nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0xeafd25e3 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xeb28ca9a ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xeb617336 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xeb681021 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xeb780836 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb8d4e15 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xeb997240 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xeba19063 devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0xeba9f4cf anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xebb89497 dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0xebd01f34 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebef3245 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0xebf04d51 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xebf7c571 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec2e44c5 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xec3438c3 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xec43edb6 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xec978590 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xec9e7b10 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0xecbbf8ce rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xecc5b85d bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xecd629a6 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0xecef1221 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xed306aa7 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0xed4018ff extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0xed448284 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0xed5ec1b4 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xed73bebf led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0xed908904 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xeda0c2fb cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xedb06c06 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0xedc3a705 clk_register_gate +EXPORT_SYMBOL_GPL vmlinux 0xede65e52 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xedfb04ed each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0xee26c251 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xee2d7f40 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xee3d2c02 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xee64c43a ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7b4549 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeee650f0 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xeeebd6fd pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0xef11cb35 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL vmlinux 0xef1a8506 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0xef280390 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef53b786 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xef5a7c8c gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0xef5d1b05 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xef5f0f66 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xef65abfc xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef734c1e crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xef7dd771 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xef86e83d tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef91aaef set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xef93b299 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xef9b21ec edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xef9f2528 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefb14224 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xefc1c072 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0xefcda560 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xefcdf5f0 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefeecd18 serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xf014677a vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf04b0bd9 regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0xf06d1f6d led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf081755c trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xf081ca0b rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xf0878960 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf0a10809 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xf0a2d120 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0e8e3a5 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf0f6ba61 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xf112268e sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xf137c831 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf152feaf devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf16d6879 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0xf1784ec5 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xf17a3536 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0xf17bba5f br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xf18101ba subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf186e081 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xf1a0564a pwm_config +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 0xf1be8379 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0xf1cc78d7 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xf1dcaec1 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xf1dfd958 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xf1e68480 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xf1ee76fb kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2077076 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xf2165c91 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf241df95 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0xf2599fa3 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xf26bf4a0 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf282b8a9 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xf283d6ba ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0xf28a7ad1 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xf2945115 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2d6faeb thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xf2df664e spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xf2f95b1b skcipher_geniv_init +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 0xf329034c of_property_read_u16_array +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 0xf370c2ff rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xf3798854 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf3affd90 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3e92718 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xf3ed96fb regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf40b3289 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xf4137784 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0xf415866b get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xf427925e reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf44e453b extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xf46bf60e irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xf47decbb srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xf48245d7 fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf4959165 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4bef6eb pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xf4c279c1 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xf4c91baf max_gen_clk_remove +EXPORT_SYMBOL_GPL vmlinux 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf512921c pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0xf5300cea __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf53cf171 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf5a29b36 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5e7f053 rh_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf60099f3 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xf6034f76 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xf60559ac usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xf606c3fc nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xf60e6073 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xf6146ae5 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xf62da974 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf671380e component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xf67c5b23 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf6855bf7 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf6cb40f3 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf7006706 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf7287e50 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL vmlinux 0xf73c65d8 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf74df9e9 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xf74f86ce gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0xf756e776 clk_register_fixed_factor +EXPORT_SYMBOL_GPL vmlinux 0xf78d0c93 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b22056 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xf7d90096 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0xf7e8c254 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf80a4af5 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf832a0f4 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf83c586f tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xf85e6fa8 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88b5fae fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf88c457d mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf891d4be driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xf89edd6b regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xf8be33a1 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xf8e02f7a sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8f3e8bc __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xf8fcbc0c init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf907b4dd pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xf9148ca2 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xf91fd983 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xf922b7a3 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xf92ba0b2 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9337de9 clk_register_gpio_mux +EXPORT_SYMBOL_GPL vmlinux 0xf94f9cf4 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf97de4a6 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xf988cb4e ata_pci_remove_one +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 0xf9db103e skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xfa1a6ced ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa54d6e3 of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xfa649a13 ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0xfa710206 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfaa0e02b virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfab7669e dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xfac185f6 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xfac72a34 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xfac841ae devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xfae66c55 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb0cf723 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xfb22bc6c cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xfb24dced max8997_update_reg +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 0xfb4db733 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb532828 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xfb579256 clk_register +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb742bb6 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xfb765697 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfb7eadb4 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfb967af5 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xfbb7e509 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbc18f30 dev_pm_opp_set_sharing_cpus +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc1eaefc regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc8b91df da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xfc94e519 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xfcbbdfe2 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfcc78ffb skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xfcd8bde7 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xfce7329c pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xfd27c2c7 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xfd427f34 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0xfd6df55c task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd880e4c kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0xfdc02b16 hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0xfdc25017 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xfdea790f clk_register_fixed_rate +EXPORT_SYMBOL_GPL vmlinux 0xfe06383d rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xfe27d883 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xfe2d5c9a lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0xfe598a40 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xfe5cd426 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xfe824992 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xfe879ba0 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xfe9115b5 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeba0a84 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xfecb562f nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xfecc3a9c dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfedebffe usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xfee5b3d8 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 0xff11fb2e mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xff291ecf clk_unregister_divider +EXPORT_SYMBOL_GPL vmlinux 0xff41f3ee __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0xff5a1009 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +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 0xffdd1656 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xfff24ef8 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xffffda9e kvm_vcpu_on_spin only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc64-emb.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/powerpc/powerpc64-emb.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc64-emb.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/powerpc/powerpc64-emb.modules @@ -0,0 +1,4308 @@ +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 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc64-smp +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/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 0x908c7720 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x4b1c4db2 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xd095051f 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 0x0f423c9c pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x2b14f887 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0x2f4308c0 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x3378517f pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x4170f537 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x44af4f12 paride_unregister +EXPORT_SYMBOL drivers/block/paride/paride 0x5cde7de9 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x6217697b pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xa30ff076 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xcf11d56f pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0xec034251 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0xfbda68ae pi_connect +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xd97cf4f7 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 0x3a2fe5e3 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 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 0xd4ae35e3 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 0xe727271a ipmi_smi_watcher_unregister +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe98fa466 ipmi_smi_add_proc_entry +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf2576cb9 ipmi_smi_watchdog_pretimeout +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xf9adebec ipmi_register_smi +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7184eced st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7d545803 st33zp24_remove +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xebf356dd st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xfecad45c st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8429e4ef xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8b2f138e xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xca9751bf xillybus_endpoint_remove +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x69287cec dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xa2e73588 dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xbab2916d dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc0375172 dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xde8c5606 dw_dma_get_src_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xee1276ef dw_dma_cyclic_free +EXPORT_SYMBOL drivers/edac/edac_core 0xb4e37613 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0483ca16 fw_device_enable_phys_dma +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 0x15ca6fd2 fw_schedule_bus_reset +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 0x2b781ba5 fw_bus_type +EXPORT_SYMBOL drivers/firewire/firewire-core 0x33f1369a fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0x37f42f0b fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3d3bbd9c fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4eaef524 fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x540fcc6f fw_send_response +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 0x6ed1c053 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0x724a6a5f fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7977d2f1 fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8382165f fw_run_transaction +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 0x92227287 fw_core_remove_card +EXPORT_SYMBOL drivers/firewire/firewire-core 0x975999dc fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa33305f0 fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb3326f39 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb75cab52 fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xb7d3ef05 fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0xc0087f1d fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd3e53d71 fw_send_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd88d9c67 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeb5aae9a fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xec315a18 fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xeed61c1e fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfc913062 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfd41022f fw_fill_response +EXPORT_SYMBOL drivers/fmc/fmc 0x24f8d8b3 fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x2c889d62 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x317f3518 fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x31a46eb7 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0x31ef1953 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0x896231bc fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0x9e5b4a5c fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0xa3d1d0b8 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0xa5d8645e fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0xd3eb9fa4 fmc_device_register_n +EXPORT_SYMBOL drivers/fmc/fmc 0xf5e9e2e4 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x01b95a55 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x07dd94e1 drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x081df069 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x099a80aa drm_vblank_no_hw_counter +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 0x0b162cc5 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d658954 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0d9e7cea drm_compat_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e2b274f drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0e631c28 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fbe0a18 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fc22749 drm_gtf_mode_complex +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 0x10787545 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0x11659ebf drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12083766 drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0x12a5bf6c drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1370b5e7 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x140a726e drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x147a52d2 drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14c2e647 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15b1f960 drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x167f8a45 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1734e522 drm_crtc_vblank_off +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 0x1a7a1cd7 drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ad55693 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b6d3a18 drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1c47c842 drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d0e995d drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1ea64da2 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1f157051 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20252fbe drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x203e51b5 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2069c6bd drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2076e328 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20879631 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22a7e195 drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x23e30eb5 drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x240588cb drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x242bc4c9 drm_connector_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x24454725 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2456226c drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x250816fd drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26f75407 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29ba6650 drm_agp_info +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a5beedc drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2b824cef drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d826614 drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2dafa332 drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e969571 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2ef2ab38 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2f1045e6 drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31710f6a drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x31c6c5e2 drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x321fb3a3 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x323fd25a drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33ae0a59 drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3436de00 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x346ebb98 drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x360c8953 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x37ebe743 drm_mm_replace_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x384c70d2 drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x38a4f7ae drm_format_num_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x39322742 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3974de3c drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac5d90c drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b2fd18f drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b5569b8 drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3cd179d3 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d0d576e drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d190438 drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3d524490 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3df4348b drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e7c7689 drm_calc_timestamping_constants +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x40366e8f drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x41f12a37 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x424d1fff drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4369d6ed drm_dev_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x43f83f46 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x448e54e6 drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x460529c6 drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46a14e90 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46db21bb drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47a90cf8 drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x47d56a0a drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4840a735 drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x484cd90b drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x49ff5d12 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a5dcd63 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a7cd17e drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bb66273 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4beea2a1 drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d162c73 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d458308 drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4e3b5bfc drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x514b8a6f drm_hdmi_vendor_infoframe_from_display_mode +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 0x534956f9 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x538aa85a drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x542dcf58 drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5574663b drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55aeb699 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5669b952 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x56c6b533 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x578893d7 drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x58a1efd5 drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5aaf5a39 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b43a7f2 drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5c148adb drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5cfc894f drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5e076c09 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fdada12 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x603c3963 drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x610422a9 drm_mode_set_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6178c8ab drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6193d719 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6381a1fe drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x64f564a9 drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x651346cc drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x663b403b drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67119f6d drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67ad4a12 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67b76957 drm_agp_enable +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 0x690bef9f drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a4d4560 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6bb585b9 drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6c6b5132 drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6cd6f559 drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x709cba85 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71322cb4 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x715df068 drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x721ac373 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73930ae7 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73fbbbc0 drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74293f98 drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x74f36a8f drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x758ded17 drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x75b834fa drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7884a792 drm_property_create_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7aa96e28 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b671daa drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b71a89e drm_framebuffer_unreference +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7c921907 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d06a868 drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7deb766d drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7eec4e65 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x808d2187 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x80e71b19 drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x811df087 drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0x817c2bc9 drm_mode_prune_invalid +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 0x83a152a6 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83a41adb drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x847b0b9a drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84ba232e drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x86430b91 drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x869c3d88 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87b0e672 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x87e11ebd drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x89116329 drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8b304f41 drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d6259ff drm_vma_node_revoke +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 0x90cdc778 of_drm_find_bridge +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90d64a41 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x90ef8d99 drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x911aff9c drm_mode_connector_attach_encoder +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 0x92ac6ee7 drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x92ed2a05 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9390cbc0 drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9407000e drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x95b3df72 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9762c741 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97929da7 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97a32985 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x983dfb05 drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9843fc9b drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a8fa832 drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9a970d3d drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ad9154f drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9afba5f1 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9b9ad4eb drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9cba2cda drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa09f3dae drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa170b8aa drm_mode_create_from_cmdline_mode +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 0xa2ec3fca drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3ac6c92 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa5b0bde4 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa690a0a8 drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa6ebffae drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7bdfab2 drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7e9168f drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa95f6f91 drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9a89b6d drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9d71ede drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaec33f14 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaee0ad61 drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf00853c drm_agp_acquire +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaf902e06 drm_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb0863f1b drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb256a37f drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2a2900f drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb2e8d85a drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb3fd7eef drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4f43b21 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb51df92d drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5d9301f drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb6a32cff drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb74db35e drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb7ed1623 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb8668811 drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9c706ac drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbab30b3c drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbb34632e drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbf21eed drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbe24b77a drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf850d08 drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc04973c3 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc06d9d7e drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc138bf30 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc16db2e7 drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc1b19d62 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc2be3d81 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3bcec4a drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc4dcea58 drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc50971ba drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc64af328 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6db71c0 drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc844a1c4 drm_property_unreference_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 0xd03906e7 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd1126778 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2099a30 drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd3524a08 drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd433903a drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd46d94bc drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd65d52b7 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6adc2ad drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd775ef1f drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8779a02 drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda996dcb drm_atomic_state_default_release +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 0xdd2497f0 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdd33c203 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf9854af drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe0a02684 drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe156dd8a drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe397b813 drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4c818ca drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe571b086 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5906e73 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe67d77ee drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe8136264 drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe85fed72 drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe87a33ea drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeb759f3b drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec17283c drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec92d909 drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xec95e37a of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xed39816f drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0041805 drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0842798 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf0e83eb2 drm_i2c_encoder_mode_set +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 0xf232de1e drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf255c1f3 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2aeba40 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf2f2ab95 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf3712093 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf531e545 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5707a4e drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf5c359c5 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf643c972 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf660ebf8 drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf6db1315 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa1dc9ba drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfb4762d9 drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbe45124 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfbfee2ae drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc00c075 drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc75bfd5 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 0xfddb0794 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfddf00ae drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe07170e drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfe4b50d5 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff206781 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff92e28d drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01da24c0 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x063e0f5a drm_helper_probe_single_connector_modes_nomerge +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06705315 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06d81297 drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0905d7bc drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x098e47d2 drm_dp_link_train_clock_recovery_delay +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a3ca259 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0a44be9d __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0d0dec8f __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0e37e1cb drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eb25d07 drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f469b0d drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11239537 drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x11d386a3 drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x150c9b78 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x15fe135e drm_atomic_helper_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 0x18c3443f drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x18d8c9d0 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x19c127e8 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b395614 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d2449ff drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1fa823ee drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x216cc767 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21f6adec drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x22f51593 drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2386b8f8 drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27182b84 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27692e2e drm_atomic_helper_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27f35d12 drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28d4ba28 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x29d42d35 drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b9819f5 drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cc11c16 drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d13d705 drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d214e80 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2dbcad7d 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 0x350d9e71 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3777c87e __drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x397aa685 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3e03792f drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3ea0f0a6 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x40ce5bd7 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x444baf5f drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44cbe777 drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x46e49c2f drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x47f2dbf5 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x492c659c drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4e231b10 drm_dp_mst_get_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 0x56f8c3a6 drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57538d43 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x586b8f4b drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a189d14 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b43b904 drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5cb1fe55 drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d77bebf drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ea477a9 drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5ea7ed12 drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5fb61ba4 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x60311898 drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x65bdde08 drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6612f979 drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67e3d39b drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x69758c7a drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aae6cbd drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aef1d61 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6ccca1fe drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d31317a drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d7be527 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6de58d0e drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x70a0dd79 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 0x75ffeeee drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x769e4dc5 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x77177c82 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x774ec8b4 drm_fb_helper_cfb_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x79180e71 drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81833a22 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x81ae4646 drm_lspcon_set_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 0x85a6712e drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x883f096e drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88bc09ef drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88fb8458 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8a4d3e31 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8afdf601 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8db89232 drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f786fd4 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8f7872d5 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x90914519 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x909942fa drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x93ea96d1 drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x94da797f drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x97f10b41 drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa02f2526 drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa065163e drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa094ed3a drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa29737bc drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa4f20299 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa5f562c3 drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6b2464e drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7a6d790 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa7f8e553 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa8d6809d drm_dp_bw_code_to_link_rate +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa98d61cc drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa9b5163a drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab0e7cd4 drm_fb_helper_modinit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xab309d60 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xabb040af drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac68ede9 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xaf20abe5 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xafe15b43 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb0292b47 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb22f4ff4 drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3b9355f drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb3ed63a0 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5747aa9 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5934add drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb71ab79e drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbc8c6ad5 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbd06021e drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf148e98 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbf81e445 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc218f307 drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc4446901 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc45a28c7 drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc5cc5797 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc74e192e drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9e764e8 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd362e391 drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd7216c0b drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd73359a7 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd93a0064 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xda15d137 __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdacc348f drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde23abb7 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3879570 drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe456ba4c drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe876c1c9 drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeca48c49 drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xedaed61c drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf211f5b4 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf24616c7 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf24abba5 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf42c60a4 drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfa11a951 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc1d1cc2 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc8210e6 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fec203f ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x15a9e5f4 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x18358c57 ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1d4afa75 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1ebc4bab ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x257cd82f ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2c04f675 ttm_bo_evict_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2caf8328 ttm_mem_io_reserve +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x367febc5 ttm_bo_kmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3888b3a8 ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3951356c ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x47573e68 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4995b339 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x49e8ac04 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4a9f80fd ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4cff21fa ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d456944 ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4d75f318 ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e75721e ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4fe372e3 ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x512ae5ef ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x564e1aee ttm_bo_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x571bdb5a ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x57bd9fc1 ttm_agp_tt_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a1fbd1e ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5a8fdfea ttm_vt_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5baf6d61 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x5ccc6757 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6052860c ttm_round_pot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6343f66b ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x63eadd30 ttm_bo_mem_compat +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x64a60431 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x66b16d61 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6af2789b ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x6d60accb ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7470c650 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x795314e5 ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7aa1130a ttm_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7beb0651 ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d346172 ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x7d55da85 ttm_read_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8078eebb ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x80d86f0e ttm_object_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x822aa7ab ttm_mem_global_alloc +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 0x90e231c5 ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x967d07f7 ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x974f3d91 ttm_eu_backoff_reservation +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 0xab4bd826 ttm_bo_lock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb1859583 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbfd28d89 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc2af2156 ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc9a1df83 ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcd12028a 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 0xcf67c299 ttm_ref_object_exists +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd0f2be9f ttm_agp_tt_create +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 0xd923409a ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xda1f85e8 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe4b268f8 ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xebdceaee ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xec31fcf6 ttm_bo_mem_space +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xed6cc5db ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf2caf7a9 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 0xfc20e456 ttm_bo_del_sub_from_lru +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 0x468532cd i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x4cfb7b1b i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0x969ed080 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x2d298c92 i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0xbb125a50 i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0xb21f2d41 amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x00299de0 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x0b4b289f mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x31ed009c mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x44b0b997 mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x4c351460 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x5f2ab0e5 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6a0eab29 mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x6c277815 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x76ad87c0 mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x8177b9dc mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xae3dc51f mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xba2b37ad mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc16b8653 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xd5ae1a8a mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe0356c22 mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xe977e128 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x2ac23122 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb5ee9112 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xb8e00dff iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0xc2bf346b iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x8931c289 devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xbf6d5661 devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf3fffb9b iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xf539bd8a iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x66ef3278 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x68f62155 hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x729d7d16 hid_sensor_read_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x892a4589 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x94a1b71d hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xa148f0d8 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-trigger 0x03eab0c4 hid_sensor_remove_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x09de0217 hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x39ded45f hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xfc5fd5b2 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x0a1b3817 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 0x30d1e9f8 ms_sensors_show_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x328d4593 ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x63944420 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x8047658f 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 0xa54ab19e ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb4b37ded ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xbe0f5fee 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 0xd60534b5 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x25c21449 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x57587b47 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x61bfa2f5 ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x9096fc1a ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xb3ffa91f ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x4f12d167 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x89f4d587 ssp_common_buffer_postdisable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xebb869be 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 0x4b6b4aa5 st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4f4051a0 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x58d4b8ac st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5aaa8f4e st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x5af279fe st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x6e05be81 st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x89d3e456 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8a05ba05 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8d7a9bf5 st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x91666039 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa6f8ce24 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xa7a5c429 st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xad0acfdd st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb087a324 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xbb3fb3c9 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xeaeec0cb st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf8d33cd4 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x4220e645 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x5f66d623 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x6e3be860 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xb41d4bda st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0xffcfc008 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x3d057dbe hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x30bd559d adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0xaf4c6483 adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x01cf3852 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x051fdcab iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x05a2188b iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x1655b14a iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x1863f0da iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x22d47ce7 iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x26368376 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x3b8de3c9 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x4ef19489 iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x5048b2be iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0x7bd35f30 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xa366a207 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xa7a255f7 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0xad1dc296 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xafa78c0a iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0xd6b4e1f4 iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xeca65414 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x6239bb82 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x9cdbe139 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x004e11b4 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0x763535ac st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x9ab6f518 ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x4bbc0123 st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0xa02143cc st_press_common_probe +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x001f9024 rdma_resolve_ip +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 0x3b93587b rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x6385028a rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7e7646bd rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x278e964b ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x3c7f2432 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x403be66b ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x41699fad ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4c9ec200 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4d90a3cb ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x5eb9f9fe ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6dd447a5 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8d508fbb ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9885f7f ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa9ba0a08 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xb6d58b99 ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc87192b5 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcaf5a59e cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcb0bcbe4 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd980a0d6 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xdf41938d ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfe6de117 ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x03830b49 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x04168358 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0472eb50 ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x05efe7a0 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a32bcff ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0a800154 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e703601 ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x10ba3975 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x110cc167 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1356baea ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x173291b8 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1ca762fd ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1dae6afa ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e4f6bbc ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e8ef044 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x249fe44f ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x270d1d8a ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b20345f ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c5ea480 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d8ab753 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2eee20ed ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x309dd19b ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x321ee005 ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32f76748 ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x39af6e95 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d56444b ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x412d02b4 ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42cd67a3 ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x46e595db ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4980483a ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4a622d7b ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b7262cc ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b7c25bb ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5135867e rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x55f45505 ib_dealloc_fmr +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 0x5aae3030 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x623fdb1d ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x659753f9 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x665b0283 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x67cd5189 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6a223e1c ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x712c7756 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x79602285 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f7fa4d8 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fde5972 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7fe19090 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8526f4fb ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x87a85ffb ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8a8869bb ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8b0ca76e ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8bbe4247 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d449523 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92fb0a31 ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x98c6f900 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9927d84f ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9cfa1c6e ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d3d1501 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9d53e7dd ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9f015506 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa268ebaf ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa3fdbb9a ibnl_add_client +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 0xb37a38a5 ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb727008b ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb80922ed ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb95ea223 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbbab800b ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbc165e6d ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbe0491e8 ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc583156e ib_create_cq +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 0xd0c2f08f ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd409e687 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xda531450 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdd3710f3 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xde3a29e6 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdffd6f29 ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe46a8e7d ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5f259db ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf13d05ce ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf31e6af0 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf5ac1680 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf683ed28 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfd55405c ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfded5517 ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1e596d80 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x499989aa ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4ba2e6f7 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x68345275 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x71f7d7a2 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7ef254ce ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9693be17 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x9c60795e ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa0b0bd26 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xa98620d9 ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb096d8a3 ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xc636c480 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xdd20da5f ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x1a18aede ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x33c503b4 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x370c5a59 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x53ac3d09 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6bce976b ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb31c6fd5 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb9dab3b4 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xbc02e197 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe82d631a ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x386b4c3c 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 0x7e785521 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 0x43056f0e 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 0x75042092 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8dc56593 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8ef89ff0 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 0x99781553 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99e21b8d iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9d5b01ce iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa9174aa0 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xb53b4a55 iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xbea51ee2 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc2671c5c iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xc58393ec iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe40691d9 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf9004020 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xfe9007f8 iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x03c5e4be rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x088164ae rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b5ebae0 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x17d6af7d rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x214cf317 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x301c958e rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4cb42e3a rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51176008 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x56d1054e rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x5ab30ad9 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x605fd602 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6224b6e3 rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6a22e0ef rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x92d10999 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x93b12403 rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa4b256c4 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbe33b232 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xcb58ad3b rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe2f1eab9 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xecaa45c5 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf86537f5 rdma_get_service_id +EXPORT_SYMBOL drivers/input/gameport/gameport 0x2c218a37 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x37a004d0 __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6b3fb17c gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x706658cd gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7577b973 __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0x8f242e82 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x9e402f08 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0xcb18cf01 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xf558433f gameport_start_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x17dd73da input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x1ec54e10 input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x70ae7bb0 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xdf3c38b0 devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0xf20ebcb7 input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x89055cbc matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x2901b23d ad714x_enable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x551e0a06 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0xd02484a4 ad714x_probe +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x4b973a58 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 0x234fb967 sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x4aad6556 sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x620d9012 sparse_keymap_setup +EXPORT_SYMBOL drivers/input/sparse-keymap 0x9d247895 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xc8bf289f sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0xec64b1cf sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x826b0636 ad7879_pm_ops +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x97f83edf ad7879_remove +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0xf2a35f5f 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 0x26adecd8 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 0x2bafb490 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x31c24aa4 capi20_isinstalled +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x32f91f55 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 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 0x83623d24 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x95bd6f4f capi_ctr_resume_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa8c1b9e6 attach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xaa165d27 capilib_release_appl +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xab2665eb capi_ctr_handle_message +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 0xd003901c capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe19a11ac capi20_get_profile +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xe4e2aa68 capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xf857ef14 capi_ctr_ready +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xfd552f7a capi_message2str +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0cf44710 b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x1e087779 b1_load_config +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x285a4de8 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2ae9847d b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x35d04f13 b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3a8c39f6 b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x4d89851d avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x69c15c9b b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8de12c8b b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x8e07d68a b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xae11268f b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xb7a1b73b b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xbbfa7662 b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc063aeb5 b1_loaded +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 0xfd0be5e3 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x06cd41fa t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0dde0317 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x0dde6639 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4ad17a17 b1dma_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x97593250 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xaf478b33 b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xb8c55a60 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd9dafabb b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xf1138ec3 b1dma_reset +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 0x2a04308d mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x6e988bc8 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x786425f9 mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe94e1642 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xb6062935 mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0xe3fc4e6a 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 0x9c5cecf0 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 0x04de9841 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x3f3b323a isac_d_l2l1 +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x879c0158 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xae625922 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xbcb15898 isacsx_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xe1525476 isac_init +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2d8ea9b8 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x2f3f20f6 register_isdn +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x5ad535bb 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 0x2189d0ce mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2348cc3c mISDN_FsmFree +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x26139e0e mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x29fa5b43 mISDN_FsmRestartTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x2b1fbb9f mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36112462 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x36ec1940 mISDN_FsmInitTimer +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x3f6962ab mISDN_register_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x40737b29 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x410f2df6 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 0x6529ef55 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x6afeabda mISDN_ctrl_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x911bbace queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x9ef9201c bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xb20d0bc7 recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc6cb200c mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcb0978d7 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc338297 mISDN_unregister_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd21a95f2 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd285995f mISDN_clock_get +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd2b2ba0d create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd5145151 mISDN_FsmEvent +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd64efdf8 recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd944e35c recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd94a9fa9 get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xd9cd1780 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf1b2dc5c recv_Bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf9e7832f mISDN_FsmNew +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xfdf2d914 bchannel_senddata +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 0x3c3c3015 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 0x4ff1ff94 closure_sub +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x6f176c25 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 0xbada6a1b 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 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 0x5f58fd7a dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0x63603aee dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0x9f68b1d8 dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0xcd5422b7 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5130b703 dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x64892dc8 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x8e1a7cd5 dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xa17faffc dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb3f1afc2 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xd09ce2c0 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/raid456 0xe3b20384 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1d55018c flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x21118675 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x2b24cb31 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x3666ccdf flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x50b9ce02 flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6d3977d6 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa6257515 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xac7a5980 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb45ed180 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xcf0cc3cf flexcop_sram_ctrl +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe7d6f9ba flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xf0cdb3fa flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xfde6fb38 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 0x48d74ae4 cx2341x_handler_set_50hz +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6ee98c49 cx2341x_handler_setup +EXPORT_SYMBOL drivers/media/common/cx2341x 0x865cf2a7 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 0xd356fb19 cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x6ee7c363 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x88bd57a7 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/common/tveeprom 0xde283b79 tveeprom_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0197a7c8 dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x042b6e9d dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0c15d166 dvb_ca_en50221_frda_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0ea2fc02 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x16ae5b47 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x17aa0545 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2218711e dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4394f089 dvb_generic_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4987e255 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4fa4ff5e dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x56c511dd dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5bf1bae4 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x647df49b dvb_ca_en50221_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 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 0x846b68bd dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x861d9a2e dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x9bf5e137 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa8379cb1 dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xae79144e dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xb2dfb54e dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xba3eaa8a dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd24fc34 dvb_register_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcf589e8c dvb_ringbuffer_free +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd4a2a149 dvb_frontend_resume +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd85e376b dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xde1711a1 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdf370b9a dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5b4c7ea dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeac6f341 dvb_dmx_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 0xfa1bdc4a dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xfbaa7e01 dvb_ringbuffer_write_user +EXPORT_SYMBOL drivers/media/dvb-frontends/af9013 0x68aa9fe8 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x643a844e ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x420bdd85 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x0166e532 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1a0ad589 au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6dd4e7ea au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x81925b38 au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa6fc72d2 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xb535e4e8 au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xe4e3066d au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xef6e7221 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf12d5a20 au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xab489382 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0x13aca1a0 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0x382946a1 cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x645ec196 cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0xf7b08a7d cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0x30e444f9 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xbbd79d5f cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x62e76790 cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0x3dbcb326 cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x59d05baf cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0xfd226489 cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x10979c3b cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x2b885723 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xc1cb3d97 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0xd3990e8f cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x07ce2f27 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x21da3e21 dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x569e3c31 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x8bc0a705 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xddbc413f dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x02eb91d5 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x03a1ee3c dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x16483e1b dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x16cf4f37 dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x191b57bb dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x2c6b9cb6 dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x470798b8 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x61aeaaef dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x7d9d6f8d dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x801a6257 dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xb58e3f83 dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xcb156b07 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xee3357ac dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xf501a276 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xfa6419c6 dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x4e7d607f dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x505b9b73 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x683ede95 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7d4ead31 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7d69ea0e dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x7fbbe595 dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xee430c47 dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0567cbe1 dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x0aa8fbe0 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x438ade45 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x78524311 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0xc432499b dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0xe723db22 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x0676a27a dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x4d1d577b dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x7c41ac99 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe2c22f29 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xe4845eea dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x04c83aff drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xf372e9cc drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xba0ba63d drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x0254d6a9 ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0x93a14373 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0x4631fe7c ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0x5ca8ad37 horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0xa8567ccd isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x31c6e602 isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x39e845aa isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x45ee664b itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0x7c0d0f79 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x8b916470 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x2fdee220 lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x0cf431ce lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0xdb970b91 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x4d0731bf lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0x2bb8fa42 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x4de2f24f lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0x463c936e lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xabfbd70d lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0xdd8f8979 lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x30f35f20 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xa350afdc m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0xfd3d51ba m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x7a70af0b mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0xcc4f7785 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0x33b45ef4 mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0xf2df521a mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0x05358e9d nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x942a0627 nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0xbeeb7ea8 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0xe1b6946b or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0xd0c6d1fa s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0xb8821330 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x2f25c4fb s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x4293ab03 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x3a228a9d s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xfaf9ed3a si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0xdb09a349 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x5a65ef4d sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x09d02d8c sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0xd825cacd stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0x25809044 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x1c6dbc18 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0xcd34d574 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x8edfa48a stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0xad5a12ac stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x199a77a9 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x1ac34fb3 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0xbf124ee2 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x9c1dbd8b stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x37349f16 stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0x1f5f503a stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x3457505c tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0xd75d763d tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x77eff273 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xdcf5f193 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xe8e059fb tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0xf2ed65ea tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0xedfe39ad tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0x559346fd tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0x01365949 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x84ddd3fb tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x80cace0f ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0xee4a0d85 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x4716ba68 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0xcdb6b772 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x6206c009 zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0xc4d3601f zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0xf15b9807 zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x1828bcc3 flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x20ef1f49 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x52ce3dbc flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x5ac9157d flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x82c7f649 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x90c36f05 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xbdfd7a61 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5cf4730b bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x71583fc2 bt878_stop +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x9178b7b6 bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xc18fb780 bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0xd5d0bdef bt878_num +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x020ce6bd bttv_get_pcidev +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x11dc4b6d bttv_gpio_enable +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x23239b58 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 0xda83d7b3 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1f5088ef dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x384a2be5 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4a499d8c write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x60ea0f0b dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x67719272 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x723a0a57 dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x727e095a dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x7a8dabb2 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xed6ce8a6 read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0xaf4c213d dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2944621f cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x835d4243 cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xce27d7a9 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xd036491f cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xf7f4f6db cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x6ff7510d altera_ci_tuner_reset +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x7aeca4b5 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 0x24e3eec0 cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3f39287c cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x72a03f39 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x78f62331 cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x7c7e6b9b cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x9f1f6629 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xb99830a0 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x7092d884 vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xdbccbb52 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x27300f70 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x95d7cbdc cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xed83e228 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xfc31e0d2 cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x4fb5aa56 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x560308a7 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x5ea2b76f cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xab822de0 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xb3cdbf2a cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf00cfdca cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xf1880574 cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x131f56aa cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x226d96d8 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x2bd40b58 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x360a8054 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x40328750 cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4f046a56 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5cd9e3f8 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x5ddaf3b9 cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6a9a3190 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x74a09c68 cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x776c8d23 cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7f2e92f2 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x823ed4d2 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x92144398 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb5a76886 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xbc0e23b4 cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc753e085 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc939bb62 cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xcf7c8e2c cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xf14af4e6 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x1e5e38fe ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x321c0edf ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x361d828b ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x378fd584 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x385876a6 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x5ec7f8fa ivtv_udma_unmap +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x6229c6b9 ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x7a712db1 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x82476165 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x834282b3 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x9367592f ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x955cf576 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xc7b757b5 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xcd882693 ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd7c7c3dc ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf3da4818 ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf3f79799 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x04e83446 saa7134_tuner_callback +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x0aa7aa2e saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x11330a88 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x1211df5d saa7134_devlist +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4701e743 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x49c40eb8 saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x567023eb saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x77522b57 saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x7e4f9dce saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x8492eabf saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc0ef2f42 saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xc865077b saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd226d639 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe5096410 saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0x866a2a27 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 0x022ef285 soc_camera_xlate_by_fourcc +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0e4acc21 soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x3825a8d9 soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x582207bc soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x646144ec soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x8eaf8285 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xb0d10195 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 0x60360665 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0x706d1876 snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x7be7068c snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xdfa94891 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xee733e8b snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xee839769 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf81f4f1f snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x265a4c4c lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x3130005b lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x398237d4 lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x53e27d2c lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x70fc3f86 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x951efb5d lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xbaffa7f2 lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xcbac3df6 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/rc-core 0x822d4d34 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xf9edf92f ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0xea52271c fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x63a9b3d7 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x231af7e6 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x4b37f697 fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xd02621f5 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/max2165 0x3a4791ec max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xd30477b5 mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xdbcf6fda mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0xe387d8ff mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0x3d4480b7 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0xb0cc23e4 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0x44eb839d qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xa611878f 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 0x21e4ec05 xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0x84384d1e xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0x87c31e22 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xb2a8c76f cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xcc73211e cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x47470b4d dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x666c2b22 dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x8611788d dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x96488b2b dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xac129990 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xb7e5ad22 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc7bad38e dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xc9bd7b48 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0xd805073b dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x1ac1eb19 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x31eacb78 dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x38891ca4 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x580ae65b dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xb86b5c19 dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xd74a2772 dvb_usb_device_init +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0xe4832bd7 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-af9005-remote 0x107b8874 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 0x0e1265f4 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2a20a6ae dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x2a2561e1 dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x3e5b47d1 dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x426df5ab dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5857f28b dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x5f89c23b dibusb_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x8b18fd3a 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 0xceb7baa2 dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe318f0c6 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xfdb9c278 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x90019120 em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xe38e49d9 em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x434cb418 go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6c1d68cf go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x7d0d5ecc go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x8105d2c5 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xbebba934 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xc97249c3 go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe08e3542 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xe92b2992 go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xecb6cb1a go7007_update_board +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x11affe58 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1a0c964a gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x59f24586 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x7d305261 gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x880fef00 gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9d98c8ef gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb54323c6 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xd5931999 gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x26d71a53 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x4728460b tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x599ee4a4 tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x8e28a0cf ttusbdecfe_dvbt_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0xa5efa105 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-common 0xabe27502 v4l2_ctrl_query_fill +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x0c297bd2 v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x2321e235 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 0xad5a3b78 v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x0250533a videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x1012dea1 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xbca35b90 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xc6691b54 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xd347ec25 videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xe92c251c videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x363bf036 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xfb0ddf5c vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0645d357 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x53ad2c50 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6f7501dc vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xc0f8458e vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf60427f3 vb2_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfe8b5183 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 0xfce75fb6 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x04e7feb5 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0620c3f6 v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x074c3d70 __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x080300bb v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0c6dc19b v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0eea4004 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0f17f1cc v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0fe35848 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0ffeaa17 v4l2_subdev_queryctrl +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 0x1d882a1d v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1ebb8923 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x21e70fe9 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2349023e v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x27fbd2eb v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e985e71 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x309ae56c v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x31d66914 v4l2_async_unregister_subdev +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 0x36847d11 v4l2_ctrl_get_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3789b960 v4l2_ctrl_radio_filter +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 0x3d3aa715 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x416fa8f5 v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x445438e5 v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x45a44c24 v4l2_ctrl_fill +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x48fa9247 v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x495426ee v4l2_ctrl_get_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ac9ac33 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4e53cfda v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x56c19edf v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x59ac45c2 video_ioctl2 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c9824f3 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5cc3fec4 v4l2_query_ext_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x604bd449 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x622d3059 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x63778b16 v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x65d23857 v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x686c8203 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6ba5a29a v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6c507008 v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x6daaebdf v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73738940 v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x77755c6b video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a1f489d __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7f2d8ec4 v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8106095a v4l2_prio_max +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8198f8a1 v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x868d0b09 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e4b59b0 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92bb813e v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9550f7a2 v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x96cb3187 v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9cf2924f v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ec55f90 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa811884c v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb119ec85 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb14b6c30 v4l2_ctrl_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb3b5e341 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb580c4ea v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77b0159 v4l2_prio_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb77e87db v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbc5671dc v4l_printk_ioctl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbe5e08cc video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbf533715 v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc2dcedb3 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5303955 video_device_release_empty +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc6d04326 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc8d82999 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcddd3f3a v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd2f390c5 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd5b22ead v4l2_of_alloc_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe23cb621 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe4912ed9 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe83e59c6 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xea51f7e0 v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xee9784d0 v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf45237fa v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfbf27924 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfd1b2cc3 video_device_alloc +EXPORT_SYMBOL drivers/memstick/core/memstick 0x0e4ccd64 memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x247f1c7a memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x601337ad memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x620fdfff memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9c4022cd memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa37a2d2b memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xa609ff29 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0xba22dcef memstick_register_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc07db2cb memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xc87c97f5 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xda796e2a memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xe41b223b memstick_new_req +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x024b9d4d mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x044400c4 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x1a62b234 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2c75909e mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2df739e8 mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x400c8922 mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x447ade33 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x48654810 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x604493a3 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x62e30190 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6a8e39ca mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6e15fae6 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6f7f5e63 mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x73c6bff7 mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7eed03a8 mpt_reset_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8c51f6e5 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa30a3858 mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa3212a6f mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xa72c0c3c mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac98bff8 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xaf30f394 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb34a1397 mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6568f06 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xbdbd2caa mpt_send_handshake_request +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 0xd05251e1 mpt_set_taskmgmt_in_progress_flag +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 0xe6db744d mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xeb3bc1a0 mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xecc8ab41 mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf7173a28 mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x0372875e mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x11558023 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x182d22e1 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x20b44341 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x2a9f8e52 mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x472ad379 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x4c2c575e mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x60f3c1a4 mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x737a4932 mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x77a3a1c0 mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x7ca0a04a mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8c7bac2a mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x8eb92c7c mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x954065ec mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x9c5213c2 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xa13bf9b7 mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xae61c494 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbc20e061 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xc05b057f mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcb83be85 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xcd28c8d7 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xce4370e3 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd36cd354 mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe8eefbcc mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xef80b4cc mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfa90abb2 mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xfef1c5ce mptscsih_shutdown +EXPORT_SYMBOL drivers/mfd/dln2 0x8010a9ea dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xbee4fb58 dln2_transfer +EXPORT_SYMBOL drivers/mfd/dln2 0xd9d97ebe dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0x5180bb68 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xea81b5a7 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x1a703c3a mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x278062a5 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x3b1b867b mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x4a5050a8 mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x8438f8fa mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x86ea1fc5 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9231b510 mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xa0e3e086 mc13xxx_irq_mask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xad1ac35f mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xed481a33 mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xf27de5a5 mc13xxx_unlock +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 0x0baf2ff1 wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xb80f6439 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 0x059e3f7e ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xab8fa45a ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x8d372f38 c2port_device_unregister +EXPORT_SYMBOL drivers/misc/c2port/core 0xf7e3c553 c2port_device_register +EXPORT_SYMBOL drivers/misc/ioc4 0x56161aa4 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xf749bb34 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x40065318 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x515a8648 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x5927fee3 tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x6566ebdd tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x6f2875cf tifm_add_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x70d17bc0 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0x762eabe3 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8314ecc3 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xb6b8999f tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xe3ad75ed tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xee8aa023 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0xf6217859 tifm_eject +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x8b9814fe mmc_cleanup_queue +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x05aa659d mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0xabf9539d mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1b5f638c cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x8c060376 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xaee8a35e cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc16ddeca cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xdea82204 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe50b5181 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xe9fc71ce cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x0547ee91 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4294a837 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x5afc433b unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x6d6c8f9e do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0x9fecf166 mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x16bdec0d lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0x2497105b simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0x4e2b69c5 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0x518bae72 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0x88505470 denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xcef46c86 denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x062bac98 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x293cb5c6 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x2fe7cb6e nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0x5cd8eaf0 nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0xbe8f5c89 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xccf80443 nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x18312ef7 nand_bch_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x54f9dbaa nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x91233966 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x3132ee65 __nand_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x55270120 nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0x698fccbc 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 0x3929d8e1 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x3b9825e7 onenand_default_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x56a235c5 onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x954aa2fe onenand_scan_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x326d6620 arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x34805ba1 alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3518e40d arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3b9806b1 arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x47f3a379 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x653eef24 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x831cfcca arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x83ed251b arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x90767956 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xb4402dc3 arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0x1ed112bd com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa687487b com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xca71de56 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x01d99d14 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x14f17051 ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x241fee5c ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x2a9f6093 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x53ef01ec ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8c61c491 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xa8eb0b65 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xb9a562e6 __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd48579dc ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xd6db2b0b ei_poll +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0xf08cffe3 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x86a4a8e5 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 0x237ed946 cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x292f4d63 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2d729356 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x32f45c65 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3d1afbfb t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4ab7ec61 cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x79a24bad cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8088b085 cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x859342bd cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9662cabf t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x9b725358 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xb9b778fb cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbbf7d2d5 cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd03d1e25 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd81ddec5 t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe40bc0f1 cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x0cf7fa79 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10cbaf07 cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x14131221 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x16e03198 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x23252ed0 cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x357c01d3 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b4987e5 cxgb4_read_sge_timestamp +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3b938ad3 cxgb4_create_server6 +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4cbaf204 cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x509f49b8 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x56ffefc8 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 0x6d248ae2 cxgb4_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7874fb1a cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x7ff95739 cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x98477d53 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x98b1f4a3 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9e5e1f71 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa5d66fd8 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa610246b cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb1bd0000 cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbabdd4b2 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc0c611d3 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc7b9d909 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc82bf0de t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xcafdd2ea cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd6952cf2 cxgb4_clip_release +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 0xda3275fc cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe6a0ab1b cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfd6b91eb cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x367ded56 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xb9cd1bfa vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xcb9947a2 vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xe9722bb6 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xea4d03bb vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xfcb29c1e enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x99cae1b5 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 0xdd98c0db be_roce_register_driver +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a4b466 mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06d18b90 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a4867aa mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d0f9559 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14be3e96 set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47481459 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4cda5ea9 mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x51293641 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x526eff25 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5b7876ef mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5c3023d7 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61744099 mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c3c1207 mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6ef75fa3 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7e7f1fcf mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x827c1fce mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x883687d8 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8f1af517 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x926350a2 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x95f1525c mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x974c293f mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9791d6d9 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99095758 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9d8d583d mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa99eea34 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb15d08b2 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd0f3d66 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcedb3c90 mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd95694ac mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0f845bf mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe3c48430 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe669b8ca mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xebe74402 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef24771c mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf3f783bd mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf68d00f4 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfa28d604 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfe9dd923 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x000e1b90 mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00388f1d mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x038f21c6 mlx5_core_dealloc_pd +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 0x10a78f46 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x12c06256 mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1633b4c1 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x198abfb1 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1c51c154 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1d0a0326 mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e726bcc mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4d28ce4e mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4f92738e mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x52cbea99 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5760cc22 mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x62d8c7e9 mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x67700054 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x68475525 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7a628fcf mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7d089d3b mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7faa3c41 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x802db20d mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x86389706 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a088a44 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa0b73cfc mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa002cff mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaa8aecdc mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb1c6d36e mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc40bb031 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc40c253c mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc97507f2 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce345b4e mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd6f7454a mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe268c91b mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4d01d8b mlx5_core_create_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 0xea5ce755 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedb22c69 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf3959355 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf48fead4 mlx5_unregister_interface +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 0x2d07a992 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x34d73433 mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4b207458 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x4ed7f9cb 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 0x6a58a6ff mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x7a57b2a5 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 0xc4ac83ef mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xcd06a65c 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 0x203958fc 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 0x628c6888 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xa79ea92d hdlcdrv_register +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xabe3b4ae hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdda48618 hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0xdfea74be hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x19bf6892 sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x23bd255f sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x41c9778b sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x4ccab800 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x81328054 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc1896778 sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xc752b686 irda_register_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xd0e87bb9 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xe0b317d9 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xfcf61860 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 0x1a15f9ee mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x270970d2 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x7494fd09 mii_nway_restart +EXPORT_SYMBOL drivers/net/mii 0x8bd118e2 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0xcf3f91fd mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0xe120c02e mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0xeb959c8a mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xed5154f2 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x4daaae89 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x85689dc3 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x9633cbc3 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xf8d330b6 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x3fb4bcec xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x4fdc205f xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x561f52d2 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0x8d36e9d6 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x7aa7ccb6 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xb50b3803 register_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xc2353ccc pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x3ccd54e8 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x48876b65 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x503a1533 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0x6dd10e6d team_options_register +EXPORT_SYMBOL drivers/net/team/team 0x914464b3 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xb34d6398 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xc16e7be9 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xcc80899a team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xf7ad9027 team_options_change_check +EXPORT_SYMBOL drivers/net/usb/usbnet 0x0edb0e1c usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/usb/usbnet 0xa5538880 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd6b975f6 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd7bf2678 usbnet_link_change +EXPORT_SYMBOL drivers/net/wan/hdlc 0x0ece72f6 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x1f21aac9 attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x248bc3f6 hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x24d22f41 hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0x3adc8a4e hdlc_ioctl +EXPORT_SYMBOL drivers/net/wan/hdlc 0x4506322c alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x580b21d5 unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x60c1cf80 hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0x84355230 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xd4b4daf1 unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf3600126 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0x070fb37e i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x4c3ccb36 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x9addbc27 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xa6b17314 reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x017dbe73 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x1a5f0f92 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x3c4a309f ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x61853e70 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x76ab937b ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x77aa6033 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8abfa2e0 ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb66c3195 ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb73e5b44 ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xc4badb74 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xd095b6eb ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf30b9305 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 0x0e05158b ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x1058dd9b ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x33e4c23f ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4a81cbf2 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5013b5e1 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x5bbd850a ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x78708382 ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x84f6eefd ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc62f1e30 ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xc8e1b241 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xcd169408 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd42567dd ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd766ce80 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xe0b5226a ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf6f270ff ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x10205d92 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x18c5ddc9 ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x3fe8db0f 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 0x82d9dfa8 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 0x93017f71 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa3341c36 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xb40f92be ath6kl_core_rx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbbc1daec ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xc9f4b4d9 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb77640e ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xfc315547 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x006c839a ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x14810d1d ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x15795a8c ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x221eda1d ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x28d9b7b8 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2a0f9b2f 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 0x304fc8ad ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x413404bc ath9k_cmn_debug_phy_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4aadfadd ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x4b7cf09a ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6c878e5a ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6d541af1 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x76c7044e ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8350f5b2 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x8520811a ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x95993ab5 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa4a7ac37 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xa8423f2f ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xb1441680 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xbd296b08 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 0xd31b40a9 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf5cc8ff0 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xff08235f ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x01402d29 ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x045ccee6 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0618e9f3 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x06751dfb ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x08d538a1 ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0963861a ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b088844 ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0b2442d5 ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0bb17d27 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0f414e34 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x114570fa ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x12c45649 ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x130368e0 ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x147f7038 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1b06a601 ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1f96a04a ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x23303b74 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27be3cf9 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x27e94e42 ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x282f94f6 ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2a76f2e8 ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2bae8777 ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2e7b9557 ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30530286 ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x33e0116d ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x364a771d ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x372abad6 ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3857655f ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3c902f43 ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3d6b08cf ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x43e2b554 ath9k_hw_abort_tx_dma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x44493b0c ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4a2c4fe2 ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e4eedd0 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x507cce1a ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x55aa5782 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5657c84b ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5be7ff56 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c4024f0 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5e8f11fd ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x606795fe ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6098a947 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x60bf8ad5 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6109ceeb ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6388eb48 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x6aa411ca ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73658abd ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x73ff5178 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x74b24931 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x764f0e52 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x787abc7d ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7a0ea098 ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7bf973a0 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7d5e4a13 ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f63c45a ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7fe4474a ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x827dc475 ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83611347 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83c24c3d ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x83d7b663 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x84d137c2 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x89baa5a1 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8a2d98af ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8eedf27f ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93ae55ad ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x93d20881 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x94eabca1 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9957d9cd ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9a0fd857 ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9e8543b0 ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9f2b0ed3 ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa2b52d26 ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa517d7fc ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa6ff08ca ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad146e61 ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xad817c4b ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb778cfe8 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb82e82bc ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb8615f49 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbdc2dd6d ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1f13b0b ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd5925407 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd8ea1225 ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdaa194a1 ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdccb2fc8 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdd28cd94 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe03053a5 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2f42900 ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe35a9fed ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe386e2a2 ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe53aef53 ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8322b94 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeaeeb146 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xede207e7 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xee753231 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeebb1fe3 ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xef25219b ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xefbaaa56 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf0923115 ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf1f036ba ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf3e0c668 ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfa1a4267 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb6b346a ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb71c2d7 ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfb9a7fd8 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 0x02bcecc1 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x8116df39 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xf01e67a0 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x1d58497a brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x2082df16 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x25807e0e brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x4007b57b brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x59b980bc brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x763f8d0e brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xab204cc6 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb010b067 brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbaa920f0 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xcbc9556f brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd00e894a brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd9a4bbb4 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xff3fccb9 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x0d94b084 hostap_handle_sta_tx_exc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x25ff4862 hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2674eab4 hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x27d98d9a hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2a585e9e hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x40589bf9 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x4eadee47 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x5176fbdd hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x54f79e9c hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6b1ddf45 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x733c46f0 hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x758a7f72 hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x7a283dd4 prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8746fb65 hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x8b5a4bbf hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x99a63bda hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9f4b0037 hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa12ad27f hostap_dump_tx_header +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xa9a54705 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 0xb83146d9 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc0cbfc02 hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd8564af3 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xd9b2c91b hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xdfa7622e hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe025eeaa hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xed15e7a2 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x04086f07 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1d377469 libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1e49c512 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x24c50fa7 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x257e1121 libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x608b2572 libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x66f1751e libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x69163cf1 libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x779e2f88 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x8cb3dbb4 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x9435be80 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x94d22d98 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x983a6694 libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa17df3c5 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xa9c5e6b2 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb03f7ee3 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcd4cb7f9 libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe178e9a0 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xe7d2ffc6 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xec311c67 libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xfea7a710 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00d3ca65 il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x00d69828 il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x011acc9e il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x080928ac il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a588ba5 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0baa2a75 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0f7b9652 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x13099fb1 il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18081457 il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a2fd092 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1a928d49 il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1ed4ce49 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x202cbfd5 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x20fdd73c il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x22087875 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26b8bb99 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x26c840bd il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x287b6211 il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2ab49b47 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d4448b1 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x30668054 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x30781934 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x30dbb965 il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x33391684 _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x364a0846 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fc121f4 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3fe081ee il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4094e4c8 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x46c9376d il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47e1a9cf il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x50e088fe il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x54512887 il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x56e4c982 il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c135c57 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5c553bfb il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5dfef5da il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6472f271 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x673b4775 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x680e06aa il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6ac5780b il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6cb3c89e il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6d3e9342 il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x6f366cda il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x78a9cab4 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7b8929db il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7c3203fd il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x80312659 il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x82262bd5 il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x839da1cd il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x85e3a826 il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x860b48fa il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x88324e72 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ac7b4bb il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ed7c0d0 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x920cd768 il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9801eb76 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9864a9d6 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98e65588 il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x996e1b87 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d3989bf il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9d6f324c il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9f7acd43 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa3b536f2 il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa6265705 il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xab26c505 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xac382184 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae12ab7e il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb1b51fbb il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb736e89d il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb8990787 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb8dbe8f9 il_full_rxon_required +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbe19af17 il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc70b7d2e il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcad6cf1a il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcd43f815 _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xce074edb il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcebe847f il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xcf2bfa6a il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd46fd70c il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd5454e07 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd8374529 il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xda17c0fc il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xddb5769a il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xddc7b8fa il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe1bb0cc0 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe27ec2c2 il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe7dbf061 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xeb845c24 il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf2a39290 il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3ad3471 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3c9c937 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3fea621 il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf89998d6 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf9778f08 il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfa521b8f il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfc6fce40 il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfeb7473c il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfec4e052 il_poll_bit +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 0x15336c2b __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x289e7b75 orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2fde211e orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x324fddaa orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x55857334 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8203fbd4 orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8313e5cb orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x941c3d65 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x9c5ac2d9 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xc05d2f21 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd944199c orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe61af8c8 free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xe9f8ebf0 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xed40cfeb orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xefeeb8df orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xf01a1073 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x98b51bc7 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x001f3e84 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x1171d9dd rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x11790cf7 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x125dd05b rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2011afcd _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x37201c33 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x393af973 _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x477f16c9 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x47bd6644 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x480f3531 rtl92c_phy_lc_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x49fa8ec6 rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x560674a6 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x59bbe52a rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5fdfc63e rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6562b376 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x6ba1bf85 _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x878d79e9 rtl92c_phy_update_txpower_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x883cc278 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x8c30c87a rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x94141164 rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x98559621 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x9a7a8be7 _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa1bb8d49 rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xacbf2535 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb3272933 rtl92c_dm_init_rate_adaptive_mask +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 0xb7552e6a rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbab1527b rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbd0eaacd rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc3024ff0 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc4c12d69 _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc8e8d3bf rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xcf0bc5eb _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdb1f0ada rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdd948ed5 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe2614b80 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe39e7339 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe4fe570a rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe88cb164 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xeca61efe rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf7f24dfd rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfb632dc6 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6fb9f06f rtl8723_fill_dummy +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x70e8053a rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x84e1a813 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x8c353418 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xeee9d0cc rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3711766e rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x86255045 rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xa1bfe157 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xf8d92121 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0c8f4c9d 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 0x27f44825 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x346a38eb rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x375932c0 rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x37c857b3 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3ee8c68e rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4150fa2a rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4555ceff rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x4afec9a3 rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x620dc912 rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x69f6183a rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x6b763ac1 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x777d3886 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 0x818d98ff rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81bc6464 efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x84b91b4d rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x854811b3 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9c8af8e2 efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9dfd864b rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa0e20a2e rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4746f55 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xac25d73d rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xad494b5b rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb4141101 rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb5aaf957 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbdff0914 efuse_one_byte_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf2192c66 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfffcb575 rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x2bafc2a4 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x93984512 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xa87bdff3 wl1271_free_tx_id +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xed6b45a7 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x4832408a fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x86a855af fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x980f31ce fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0x2ec7086a microread_probe +EXPORT_SYMBOL drivers/nfc/microread/microread 0xdd2c3cc8 microread_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x74cf2a31 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xb6341ad8 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0xdfa7e162 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xb19819f1 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0xc194d686 pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x6c00dd13 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xa39ba0b6 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xef3e4184 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x076a2f51 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x13b77895 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x19159a19 ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x41e78c59 ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x58251e3d st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x61a8fb1c ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x62a1ec0f st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xad27b5e9 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd2507000 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xd3ffaf96 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xda712a51 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x051e94a0 st21nfca_se_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x134574d9 st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1b8d673f st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1c54c031 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x23cefa0c st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2792cdf0 st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2a73284e st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x370d980b st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x45d3f28c st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x61e7d659 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x71c8371a st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x73a66d64 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xac439c05 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb171ae48 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xc13afcd4 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd4026314 st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd6cdbd8c st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xe247cf06 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/ntb/ntb 0x4166bb1f ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x44320a26 ntb_db_event +EXPORT_SYMBOL drivers/ntb/ntb 0x96690dca ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xbf1ec7a4 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0xcd3a60dc ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0xd21afad8 ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0xd97bc083 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xf21f3290 ntb_register_device +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x24c6af30 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x6ad56e20 nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x39b6745f devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x01d861d5 parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x0b01ed73 parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x0cd4b563 parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x133749e5 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x1ce6af7e parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0x290e8742 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0x300df8ec __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0x33bd501d parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0x348c7200 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x36e27668 parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x377e4545 parport_write +EXPORT_SYMBOL drivers/parport/parport 0x3f07296f parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0x454ff73a parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x5209638f parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x61344112 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0x676d15d6 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x683fa084 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x6f464e7f parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0x783869d0 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0x8266d0e7 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x8a960851 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x8d9fc77b parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0x9b674712 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0xa64019f9 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0xad2b0dc2 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0xb1e8714e parport_release +EXPORT_SYMBOL drivers/parport/parport 0xd0874b41 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0xe23bfcd5 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport 0xed4ca802 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0xf33e8307 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0xf8ef3572 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0xffef5be3 parport_claim +EXPORT_SYMBOL drivers/parport/parport_pc 0x2d3df010 parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0xafcd8553 parport_pc_probe_port +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x04e26e2a pcmcia_enable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x0ecbcb20 pcmcia_write_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2534f076 pcmcia_fixup_iowidth +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x2c0ccddc pcmcia_request_io +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x34694d26 pcmcia_release_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x37b97b48 pcmcia_dev_present +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x37e51828 pcmcia_disable_device +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x3da07f1e pcmcia_loop_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x45fbae76 pcmcia_fixup_vpp +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x462bda8f pcmcia_register_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x4cee9766 pcmcia_read_config_byte +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x50e2f2f8 pcmcia_loop_config +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x742f5665 pcmcia_parse_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x977d68e3 __pcmcia_request_exclusive_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0x9995a056 pcmcia_request_irq +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xa43e1c57 pcmcia_request_window +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xcc2c2f08 pcmcia_unregister_driver +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd45df54d pcmcia_get_tuple +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xd46c1b09 pcmcia_get_mac_from_cis +EXPORT_SYMBOL drivers/pcmcia/pcmcia 0xfe1346f5 pcmcia_map_mem_page +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0418526a pcmcia_put_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x0fd7c4a6 pcmcia_unregister_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x212db8d2 pcmcia_socket_list +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x3abadbb7 pcmcia_socket_list_rwsem +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x63beacc4 pccard_register_pcmcia +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x8eb30fbe pcmcia_parse_events +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x92a6b951 pcmcia_socket_class +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x96359e7d pcmcia_get_socket_by_nr +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9a44ea0b pcmcia_reset_card +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9ccafe4b pcmcia_register_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0x9e94bac2 pcmcia_get_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xcf97f3bd dead_socket +EXPORT_SYMBOL drivers/pcmcia/pcmcia_core 0xf514cff5 pcmcia_parse_uevents +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0x94aad622 pccard_nonstatic_ops +EXPORT_SYMBOL drivers/pcmcia/pcmcia_rsrc 0xbb422c01 pccard_static_ops +EXPORT_SYMBOL drivers/pps/pps_core 0x05e18495 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0x1e7b29cd pps_register_source +EXPORT_SYMBOL drivers/pps/pps_core 0x72d200e9 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0xfe1688f1 pps_lookup_dev +EXPORT_SYMBOL drivers/ptp/ptp 0x10fd6243 ptp_clock_index +EXPORT_SYMBOL drivers/ptp/ptp 0x18dcf870 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0xae2a71a4 ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0xca0b0977 ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xf7d1b28e ptp_clock_register +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5148c446 rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x7804f7c4 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x8a0e3487 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xbf2f7457 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc66f6102 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xc6a1eed5 rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd8f763ae rproc_da_to_va +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xdb3a7c21 rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf3d0fd2e rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf7561c7b rproc_vq_interrupt +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xc01141b0 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x3c82c058 scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa2737c9e scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xc4fb398a scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xcf6751f2 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x02af2534 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x04c9a4d8 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x189ea119 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x1f7d7db2 fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x4be25e1c fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x672158cc fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8769a699 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x8a053387 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb80740ad fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc02b5ff7 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xc48338a3 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd03c662a fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x01f212f9 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x05d90140 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x085abd84 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0aa797af fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0b77fe18 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0dbe3c58 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11ad22fe fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x11d3e209 fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x14155fe0 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x19cbb1d8 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1df2c2c7 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x1ff828b5 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x20a07fc0 fc_get_host_stats +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 0x28dc23c4 fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2e8d6c52 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x309cb7ce fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3ac13d8f fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3bff0964 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x3eea9bd4 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x402cce7c fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5250cf69 fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5892fb23 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dda4b7a fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6f1e4c18 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x746f7bfc fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e1460a9 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x88c05c22 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8fb11be8 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x92d06f69 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9a167700 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9b38f972 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9de7f06c fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xabe8c435 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacaba3ac fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacbc6f29 fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb304cb19 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc5a39dd5 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcdbdebbf fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdae0442a fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe5459431 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xec67ea46 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xee4a2619 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf2b4ee35 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5766a9f0 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x740c1bce sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x7c9efcd4 sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a6a76d1 sas_suspend_ha +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 0x835c64e6 mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0587171b osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c1a7315 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1263a7ac osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1a0c061b osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x210d6220 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x24e373d1 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2b3fa163 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3f8b0649 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x44c69c35 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x48258a66 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4a635b71 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x507f0a9d osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5965c5f4 osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x739d2ce2 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x74d9da1b osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7821f177 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x787d5def osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7bc24dee osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7c082fc3 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x87517ec6 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8bb960fc osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9a87399f osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa1433237 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa1d496c5 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa5ffac5c osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac6f9b30 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xac9c6132 osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb1543977 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb28fc072 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd1a3550c osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd5028c23 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda4d330b osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xda558588 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdc360041 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe38de7d5 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfce99c1b osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0c69f850 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x3df4f787 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x73092c42 osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0x7543f73a osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0xa4f489e0 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbd7a7cbb osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x0dc731f1 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x16bcf8ad qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x18cd0fa6 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x27495126 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x635a964f qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7afe2875 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x80ffe987 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x903eedc6 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x991b3d30 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xc090200b qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe03ddf1e qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xe13e08fb qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x1f55cd70 qlogicfas408_ihandl +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x282f2183 qlogicfas408_biosparam +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x2c1a7ceb qlogicfas408_bus_reset +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x3fd8cd71 qlogicfas408_detect +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0x99bd5a44 qlogicfas408_abort +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xa2d0507d qlogicfas408_disable_ints +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xb0f70b0b qlogicfas408_queuecommand +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xc2a34ce5 qlogicfas408_info +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xe76b3b20 qlogicfas408_get_chip_type +EXPORT_SYMBOL drivers/scsi/qlogicfas408 0xf2b95199 qlogicfas408_setup +EXPORT_SYMBOL drivers/scsi/raid_class 0x86205d8f raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xb42bbb4c raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xc56c5502 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0c53987c fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0caf1368 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x0d108719 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x3f34070c fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x6f9f7b0f fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x70eed6cf scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x73ab4deb fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x785be00a scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8a1bcc13 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9550fbf8 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9df45ca5 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xca641fb3 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xf517bf30 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x031a7153 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0ecfce7a sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x25cc0fa4 sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x2c0833e2 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3abf620f sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4193d1ed sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4ed84e10 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5c8d032a sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5eabebd5 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x6337b658 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x715a2c64 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7389ab6e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7abc0e05 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x889f2afa sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x95d3eaf9 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa6ec521a sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb12594ee sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8d5cc4e sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf5e6a3b sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc03105b6 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd0a16aee sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd7991211 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdab1d84c sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xde8969be scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe3cc3a5a sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe69b9897 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe8829c6f scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xea438425 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x10a55739 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x36cb1b05 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xae26e6fb spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc4538dde spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xc55214de spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x09fdae1a ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x0e79695c ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x631b5b69 ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x8b782ee9 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb62b700f ufshcd_system_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb6fc67e5 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb8ad5cc9 ufshcd_alloc_host +EXPORT_SYMBOL drivers/ssb/ssb 0x12b8fd5c ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0x215ee216 ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x305c1f70 ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x38e89dc0 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0x3b22a047 ssb_commit_settings +EXPORT_SYMBOL drivers/ssb/ssb 0x3edaa103 ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x491f17d5 ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0x4a42c47a ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x62c3212b __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x657a9058 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x6a682c9c ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x7b082200 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0x7dac209a ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0x7e0f82d3 ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0x9b23bc27 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0xa07b7fc5 ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa5363769 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0xbb76d37c ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe1f45a37 ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xe46ae448 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x028a6186 fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x050a8675 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x10b48afd fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x22241ec2 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x2cd9014f fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x310b4c33 fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x358e7bc1 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x53344072 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6644789c fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x69473aec fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6defcb0e fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x88880c2f fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x89aa2afb fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8b50c338 fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9247d951 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9758cbb8 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9efc5fe5 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb6520d45 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb80c7439 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xbfc4c58f fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xce7663c3 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xd7711106 fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xdf08cd92 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xe6b38c84 fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x8e5a2014 fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xa4a9452d fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0xbc9cfa3b adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x7c0a4bd5 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xab4d3b76 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xb7a60aaa hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0xcfca87dc hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xaa8c4436 ade7854_probe +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0xdfa3fedc ade7854_remove +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0xb809e596 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x288e8756 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x014ad71d rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04743cc0 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x04e681ab rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0591a824 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x05e978a5 free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0840643c rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0947f578 dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0ba6d602 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cb3449b rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0cc0b7c2 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x112e45a3 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x115ec788 rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x142d66ce rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1737555a rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x195fa2da rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1ed9a73e rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x272defd9 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2bf0e5d4 rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2cf22ab6 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f203bb7 notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2f465d46 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3320a4c5 rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x351c2916 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x41035ee1 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x421301f2 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4643b088 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x48335861 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49beba4f rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x53d4e7fe rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6568fa9b rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x75aa4c65 RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8521e6c5 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x85ff1e24 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8eabe86f rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x90300f5b rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9251c284 rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x98f77700 rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9b632c67 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ec53725 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa54fd171 rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xacf9eba2 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xae4b79ee rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xafa3ef05 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb0716176 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb26959bb rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9456c46 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xc82ca605 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdeeba276 rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xead6e012 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf41f71a3 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x00391fe5 ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0c3e3897 ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1544b488 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x19a8447e ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e174cc8 ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x233b7db8 ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23baeb45 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x23e294bd ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x27eb22ed ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x2b79bb14 ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x306fae16 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3a73cf26 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4054e201 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4b53258c HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4db62979 ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4e1e8bf0 ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x54c20897 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x57bed6ad ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5870afa7 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5c32bf42 ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6106fdec DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x64e6511d ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6e3de465 ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x79812768 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7a263d67 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x88d284a5 ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8b2d4ae6 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8caf32cd ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x8cb6f386 ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9127d654 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9724d9a8 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x998bbb8b ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa446ff21 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa51d4531 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa65b50fe SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa722c5f0 ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xabdfa09b ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xad55a3b9 ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb169e8ab Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbdd7a4ba ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbf3bde43 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xbfc34e0b ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc0e61e67 ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc60a4a81 ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xca7925f8 ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1f225d3 ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3e87e63 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd8ff05d4 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe514cf3c ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb0e88da DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xeb3cadc3 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xefdf226a ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf951577f IsLegalChannel +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x05c34521 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x08829b4c iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0e99ba20 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x149d0615 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2160c7ff iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3b6699e6 iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4913ac6a iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x49ebe59f iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x4f95e410 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x543a76f4 iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x581ccb72 iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5b3b515f iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x65bfb150 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x80e9160c iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8cf70c47 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9361f159 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x95e4297e iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x961c1d7d iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98e05fac iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb4a645ff iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc0ca131f iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xc1db998e iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcc20edea iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xcfcad0a1 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2c597ac iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd30b14a1 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe528cb26 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe6e1b17b iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x016f75b5 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x06505e1c core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ad50c96 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ec56b15 target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x11eb4cbc transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x12bb51b9 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x15b88683 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x19b1d5bc core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x1c63cb9d target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1e5129b7 target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x209ccd13 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x20f3428d transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x23d0e133 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x284b49e6 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b099e8b transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x32abd2a7 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x37f97bc7 transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x39142d1a target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x3a506f0f core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x3bc4f8dc target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x41b542a1 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x469d0edd target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x4f2f4ab0 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0x57b6f5d9 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x57efbc6c target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x609e6808 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x61ede3a5 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x66a4d0f7 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x6868eede core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d7348f0 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x6db3eb34 transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f87dbe0 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x70e10e79 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x7374c668 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x73efed95 target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x779c4d78 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c16cd02 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x82d8c693 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x86109fe0 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ab7c321 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x8f4a4d22 transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x942e1800 target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x949a1d24 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9b900aba spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c588b7f target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0xa20cea12 sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xa5a12b83 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xa9f48932 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xac3b29b4 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xacc81690 target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xaf5f3688 transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xb63507fd target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8385855 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xb851533b passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xbcfc8386 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xbe29af5b transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xbf635322 __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xd204a032 transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0xe1110f2a transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xe36b7b99 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xe6d726a6 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xea0dd5a9 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xed9c06e6 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0xede99c8b transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf1fa7ace target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf31c5839 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xf33bbef1 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xfcc13aef target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xfd42a127 target_put_session +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x43e22e09 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 0x536d7de3 sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0a8f9f84 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x125ae605 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x279a9ef6 usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2bf2fca0 usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x2eb344a7 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x3a0d9646 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4867608d usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x694d8410 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6c191ffd usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x87d9da55 usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x8c795055 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0xaaa55676 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x94129382 usb_serial_resume +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xec23098d 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 0x25b2add2 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x46ffe4b4 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x4e272cdf devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0xcc48214d lcd_device_unregister +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x03591af8 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 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x692c59bb 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 0x80f603f6 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x8de63fb4 svga_set_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x9db2c978 svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xca897ed4 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 0xd7d158fa 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 0xfca7c499 svga_get_tilemax +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 0xbb0562ef cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x2bb05525 matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xdd795b47 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0xfd07d08e g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x35382ae9 matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x83fd6ae2 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa3531751 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xd47ccdfd matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x07db9a0a matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x948004aa matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x15212bf6 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x9233d6fb matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xe77c2784 matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf23b5fdc matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x5e59e156 matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x918cb2f7 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x2721cfcd matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x60b78b75 matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x6eec394e matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xa8dddba6 matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xd9e5060c matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0x614d2e23 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 0x19f5e8c4 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5deb7d4c w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xc108bc97 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0xcc98f309 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x408a30f8 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0x72ad9a5c w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x99400be7 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xe49f1162 w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x4b05342a w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0x90973550 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xb9991631 w1_register_family +EXPORT_SYMBOL drivers/w1/wire 0xd3ed5e9b w1_add_master_device +EXPORT_SYMBOL fs/configfs/configfs 0x1b02f207 configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x1f87ac90 config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x2a8005c0 config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x4e691848 config_item_get +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 0x600e1399 configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0x6cfd59d2 config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0x787cacef configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0x80c56c95 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0x8cbc934b configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x934fb1e9 config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0xba5f219e configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0xe519bbfe configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xf8c55757 configfs_register_default_group +EXPORT_SYMBOL fs/exofs/libore 0x19e8caeb ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x346fc10e ore_read +EXPORT_SYMBOL fs/exofs/libore 0x3960437e ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x6338d09a ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x7c75d09c ore_create +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xaf05e6f8 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0xc8e2af7f ore_write +EXPORT_SYMBOL fs/exofs/libore 0xde6da7bf ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xefb6792a ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xfeabaccd ore_check_io +EXPORT_SYMBOL fs/fscache/fscache 0x00b203e7 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x04faa1a2 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0x0acc2b39 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x19c319f5 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x26c049c3 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x331433bc __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x3341cb83 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0x35804e17 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x54a47496 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x59e1fe72 __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x5b7a05eb __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x647ed6d6 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x698ed52c __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x6acdca97 __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x72453d95 fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x72a34340 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x7bb0f676 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x83aedaad fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x83d768e0 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x888365a6 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x92076c09 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x926d8587 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x96c13fdd __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x97a80a34 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0xaf11c9cd fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0xb2a15de1 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xb3f98293 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xb4ed5d7c fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0xb7c9e37b __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xba30668d __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xbedd4b41 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xc0759b52 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xc093cb28 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xce973a2f __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xd68b6c10 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xd79c7789 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xd7ddf9bc __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xe0914d44 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xe4337f1d __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0xed7c8859 __fscache_enable_cookie +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x54913399 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x5beceace qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x81d61309 qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa802b371 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xea95f0a9 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 0x09c9030d lc_seq_dump_details +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 0x933109ad lc_seq_printf_stats +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 0x6e4eb1eb lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x936f21df lowpan_netdev_setup +EXPORT_SYMBOL net/6lowpan/6lowpan 0xb8993513 lowpan_nhc_del +EXPORT_SYMBOL net/802/p8022 0x78280027 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xb9d47b3f register_8022_client +EXPORT_SYMBOL net/802/p8023 0x99d6f844 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xdf0c952f destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x226efe88 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0xe484acb5 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x014c5e37 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x12bc4c40 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0x1ce1fa5b p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x22461371 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x35d1e27e p9_idpool_get +EXPORT_SYMBOL net/9p/9pnet 0x39437274 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x3a7be018 p9_client_walk +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 0x47101a5d p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x4873df8d p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0x515c7db1 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x581cb633 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x6d5c6d19 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x7508a138 p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x7eecfe8b p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x84f36bf2 p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x90241b60 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x92b5667c p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x96a079c4 v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x97bc9183 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x9cbf36fc p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x9d4b20c7 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x9d7cc830 p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xa2c89653 p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xa68401ba p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xa77d8844 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xab14288c p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xb6492100 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xcfd32c6c p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xd1703986 p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd752f8e0 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0xd7b49d72 p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xdbbbf27c p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe4ce77f5 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xe8300272 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xe92ea6da p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xed03bb56 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0xf12d0c67 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0xf47b6693 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xf9a1a12d p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/appletalk/appletalk 0x223b4fe0 atrtr_get_dev +EXPORT_SYMBOL net/appletalk/appletalk 0x4ce24d7a aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0x9699d4dd atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0xe6406d03 alloc_ltalkdev +EXPORT_SYMBOL net/atm/atm 0x076599a3 atm_charge +EXPORT_SYMBOL net/atm/atm 0x1a1296ae vcc_release_async +EXPORT_SYMBOL net/atm/atm 0x26c5143c 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 0x5e9f7f61 vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x60dc516a register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0x7f25d205 atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0x88f3679b atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0x9727bc34 atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x9a4d057c atm_dev_signal_change +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa1fed874 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0xa8df8a0c deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xe100859c atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf846dcac vcc_insert_socket +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x306e944c ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0x34dcc503 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x3ef69f1d ax25_linkfail_release +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x56fab5c7 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x5a54e9f4 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x8ede9e26 ax25_protocol_release +EXPORT_SYMBOL net/ax25/ax25 0xa7f3015b ax25_display_timer +EXPORT_SYMBOL net/ax25/ax25 0xb278fceb ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xcefea9a0 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xe9c21dd1 ax25_listen_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0024794c hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x02c23ee6 hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0801c6f8 hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x14229899 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0x1d8fb168 hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x22a4efb6 __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x23cf8eaf l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c08bd70 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3c88e2e2 hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4a3dec1d __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4ed9156b bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4fc6fac8 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x55d19b07 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6344fc55 l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0x69fa4473 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6c150df8 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x6f2f0a44 hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7b322c63 hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x7c7e8822 bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9110e9f0 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x929610b0 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x96d93075 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa48a5917 hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa5fb29ae hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa7f33c69 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xad8c1690 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb03f286a hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb5e55888 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb9455713 bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbcfbc742 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc9ab3eef bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0xca05d2a6 bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcda1631f l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd1fb0dfc bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd3a5307a bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe387b428 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0xea65db16 hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xedd65a52 bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf0012002 hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf5d605c1 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf8967568 l2cap_is_socket +EXPORT_SYMBOL net/bridge/bridge 0x2991708b br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x148a724f ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x5deb43df ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x770852f0 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 0x6a44fc70 cfpkt_extr_head +EXPORT_SYMBOL net/caif/caif 0x6e58d693 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0x81f02ea0 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 0xb2e1719f get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xb3792bb6 caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xf6643c09 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x1ab3f8e7 can_rx_register +EXPORT_SYMBOL net/can/can 0x4e44ba50 can_proto_register +EXPORT_SYMBOL net/can/can 0x51ec6ac6 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x6a3e6cf8 can_proto_unregister +EXPORT_SYMBOL net/can/can 0x816ee8c2 can_send +EXPORT_SYMBOL net/can/can 0xf227b2e1 can_ioctl +EXPORT_SYMBOL net/ceph/libceph 0x0588d20b ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0930a2ce ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x0b22e6c4 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x0c23f40e ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x0e5ee95b ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0x127bd61b ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x174db1f6 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0x17713729 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x1829e48f ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x1866668d ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x187ee6d1 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x190e1529 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x194fcc41 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x1a51ee6b ceph_open_session +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 0x2eb39265 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x3aba81e5 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3b34fee2 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x3ca9c181 ceph_calc_pg_primary +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 0x44b8d659 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4999ca47 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x49ff6169 ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x4a44039c ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x558e46f5 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x5af25dd5 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0x5da248b4 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x5ed44dfd ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x5ef512ab ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x5f5b5d94 osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0x60f05dde ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x659fb2e1 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x67a0e123 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x69a64d25 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x6a091ef1 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x77345cea ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x779286d9 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x80014d44 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x821180db ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x87364179 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x8c73e725 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x928f7a86 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x96eb8aa3 ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9790ba2a ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a176aee osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9d67b37a osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x9e191c07 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa0dc6104 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0xa3dad30b osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xa899f500 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0xa8d1be3c ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xab82f64f ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb1cd5f85 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0xb21b8ee2 ceph_osdc_wait_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 0xb6d31041 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xb9973d60 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xbbc2f037 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0xc28268e1 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0xc2b591ab osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc4acce4b ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xc7055626 ceph_put_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 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xcc14236d ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd36a92a7 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0xd4cae549 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd570d408 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xd90d4a84 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0xd97b2718 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xdb11f91c osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xdbcf7187 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xe015d5d1 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xe244b054 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe6a3804e ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xe6e1c247 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0xe8d4b5b9 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xe956a496 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe99690b8 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xed5b40f4 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xed70aab1 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xee55560b osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xf071b014 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0xf2a2176d ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf8d0b08d osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0xfa25b21b ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5945b012 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0xff79b62c dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x49640bf8 wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x49b80d2d wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x564b688a wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0x7251d446 wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0x95c0a91d wpan_phy_free +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf987c14a wpan_phy_unregister +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x5fe37a57 gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0x9b671719 fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x486e45ab ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x6a6ab816 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x76a47d25 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8ec0f403 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xc079e7b7 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xef5b77d7 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x1586cf03 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x71ce0311 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xc593fe99 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x3bdfc268 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x728d6651 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xaf25f5f1 ipt_do_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x7a8ddd6d xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xa6aa84b3 xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x735f4276 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x282854a2 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x51777f21 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6e5996ff ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xbee2f29e ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x78843590 ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x946af02c ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xc98f479a ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/tunnel6 0xb3bac9b8 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/tunnel6 0xc194c05b xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x5b50d04a xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x6e472267 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x13c6e5a7 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x3d6b7ce8 ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x409e9def ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9b4b886d ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb845cf54 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xba9a8756 ircomm_connect_response +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc3b5163e ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xf9fd5b9c 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 0x0d1555db irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x0d6ec741 irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x0ef834db irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x1599393b irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x1b3a3805 irttp_dup +EXPORT_SYMBOL net/irda/irda 0x1e6cade0 irias_add_integer_attrib +EXPORT_SYMBOL net/irda/irda 0x2e3e2a40 irda_notify_init +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 0x4b58a23b async_unwrap_char +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 0x6f0b3023 irlap_open +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 0x8c08b7e6 irda_device_set_media_busy +EXPORT_SYMBOL net/irda/irda 0x91815586 irda_param_pack +EXPORT_SYMBOL net/irda/irda 0x939a9ccc irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0x947ffad5 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x94a824db irda_param_extract_all +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xaa70da80 async_wrap_skb +EXPORT_SYMBOL net/irda/irda 0xb07746d1 irttp_udata_request +EXPORT_SYMBOL net/irda/irda 0xb49f19cd irlap_close +EXPORT_SYMBOL net/irda/irda 0xb7544a17 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0xb9394173 irias_delete_value +EXPORT_SYMBOL net/irda/irda 0xbc4581a9 irttp_connect_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 0xc27e591e irlmp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xc5e04b4c iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xc9ac7137 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0xcead7dbb hashbin_find +EXPORT_SYMBOL net/irda/irda 0xd1d2907a iriap_close +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 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe7c3defc iriap_open +EXPORT_SYMBOL net/irda/irda 0xe8b08ed8 irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf139ae7e irttp_data_request +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xfacf9abb alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0xff7bc728 irlmp_open_lsap +EXPORT_SYMBOL net/l2tp/l2tp_core 0x0edd9f83 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xc98ae988 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x24d0ee97 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0x36560302 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x71110861 lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x8728fd64 lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0xc1fd79ab lapb_data_received +EXPORT_SYMBOL net/lapb/lapb 0xcfc8eeaf lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0xdb3fd428 lapb_register +EXPORT_SYMBOL net/lapb/lapb 0xefacbcab lapb_connect_request +EXPORT_SYMBOL net/llc/llc 0x2a15c828 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x43c16c8f llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x563d0912 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x6c784e14 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x75b21235 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x935b5537 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0xe8f2b60e llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x02f122dc ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x0791dcb4 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0ab96cd8 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x1727e911 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0x18a48fe1 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x1a52fc36 ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0x1a6ca261 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0x1d94e62d ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0x236ae898 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x245d1b5b ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x25f71f85 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x2a186241 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x2c558abb ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x2c6bcd58 __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x31128feb ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x32aeb81c ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x34fef82f ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac80211/mac80211 0x3909c827 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x3b7065f3 ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x3ec8a5cd ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x44b8a35e ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x4c3276e2 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x4eb458bf ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x4f5824fa ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x5869ea98 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x5c6ac12a ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0x5c97ab80 ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x6097d448 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0x6be6abbe ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0x6ce11a55 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x73df0707 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x7467e40f ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x74e8276d ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0x75966398 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7b719955 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x7e4615f4 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x82a58ba4 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x852212f7 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0x8584eeaa rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x8c0d2192 ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x8dc90bb1 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x8def114f ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x8f9116b8 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x903b6e53 ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x936e044d ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x9373c58e ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x93a9b6f3 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x95d09a01 ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x994468eb __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x9d4007ea ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x9d88d3ae __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xa72a87a1 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0xac8c3caa ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xae14142d ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0xaeb16db5 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb4fdc309 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xbc4e3f69 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0xbd2ccfea ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0xbd56dd02 ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xbdab0315 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0xbdc8a9fe ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xbfeb7805 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0xc4986032 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0xc593fdd9 ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0xc631bb33 ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xc65ef4f2 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0xcc38dac1 ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xd1ff6e16 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0xd54d402c ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xdc5c17ad ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xe0acbe12 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xe20c649d ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xe8ca3d48 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0xf1361c09 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xf5cbbc80 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xf6090405 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xf7d08230 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0xfea02250 ieee80211_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x007d84ec ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x1b3e5ba1 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x27f01a10 ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x2ec62ee4 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x73d8e328 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x8b47b522 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0xd0e1b603 ieee802154_alloc_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xe9c07915 ieee802154_xmit_complete +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x0a7e0d1e register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x32c1172f unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x35ea3584 ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x439749a9 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x665f438b ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x79ab185a ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x83bb7d6d ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x9325ab8f register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xac4ae883 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xbee9877c ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdb69210b ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc111806 unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdc6da58e ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfba90e45 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x18201b31 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x1d580019 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x9f69d89e nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x1bcd613b nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x4a963e39 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x6bc97e2f nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0x6cd1dc9f __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xcc938d39 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xe3860254 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/x_tables 0x0fcee79d xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x16de0181 xt_register_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 0x7224dd6a xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x7fe463fb xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x8175385a xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x8371a19d xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9ac884d2 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9cfb2371 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 0xaedff938 xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0xc105d15f xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/nfc/hci/hci 0x02d3d073 nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x0640b2d5 nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0x19e4ce5b nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0x1a4ec297 nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x23da3c0b nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x305e4d19 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/hci/hci 0x31592de7 nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0x3fd0d9db nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x5321253f nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0x54aae4b5 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x58f1f056 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0x62e3e112 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0x63225d71 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7d12e987 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0x7e750c92 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0x8995b606 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x90e4dc3e nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0xa37e4af3 nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xa63a7e96 nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbd65de3c nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xd347c79d nfc_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0x009e0f2d nci_core_conn_create +EXPORT_SYMBOL net/nfc/nci/nci 0x012e873f nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x1aa9eb26 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x237aef3c nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x284b98c8 nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x284ee116 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x3a6541c4 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x3b8b9163 nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x3f9ea490 nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x416d5ad5 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x44595e58 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0x4b99caa9 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0x590b1bca nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0x5d231494 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0x6c9ee247 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x73361131 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x78509d83 nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7a3d82d5 nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x8c9ee7ca nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0x9891e413 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x989746f2 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xbbffb9f5 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0xbdc44086 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xbf3e2fe7 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xd6f2289b nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0xeb0b1974 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xed41a556 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0xf195eada nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nfc 0x0997c794 nfc_find_se +EXPORT_SYMBOL net/nfc/nfc 0x142d5ae7 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x14cc78d2 __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0x191c4b4d nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x1d158c07 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0x22d3b10d nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x28446679 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x2b702a1f nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x35bdb330 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x4303bb44 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x4a2154c4 nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x4adc75c5 nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x732f0a9b nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x7a5be8f7 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x8778c16e nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x8c39ec33 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0x9bd64144 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0x9c0faf95 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0xa81d283c nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0xb1c58d84 nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xbf9641a2 nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0xc7ef0be1 nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0xf0977c34 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xf295f2a5 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc_digital 0x0cc94c9d nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x2f36333e nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x402e0861 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x9e7c5ba1 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x1326c467 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0x1f77b96e phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0x39d793b4 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0x62f32610 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x8f642444 pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0xce2713d7 phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0xd98e2447 phonet_stream_ops +EXPORT_SYMBOL net/phonet/phonet 0xfb85c636 pn_sock_hash +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x006ac2e0 rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3717976a rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4814719e rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x58d4c5f2 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x673dbe3f rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x886f3fdd rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9fba6c90 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xaae50897 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb62c0397 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xbfa0c5f0 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xded18c11 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe4317f99 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xf0105bfc rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfbc1be0b rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfd45a9c5 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/sctp/sctp 0x9e73dfe7 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xaa45ef4a gss_mech_put +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xc1d3cd66 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xfeb94ab4 gss_mech_get +EXPORT_SYMBOL net/sunrpc/sunrpc 0x462d2d6a xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xb74fbdff svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xe3fb5f7d xdr_restrict_buflen +EXPORT_SYMBOL net/wimax/wimax 0x3c0b1e88 wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0x83bd55eb wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x0161aa86 cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x02bc3647 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x058a80ed cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0x06b223b6 cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0x081ec2e4 cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x0826b0e2 cfg80211_check_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x0870a1cb ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0a6951e1 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x0bd9063f cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x10af1333 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x1155fb6f cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19a86c9b cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1d9e12f8 cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x26e2e47e cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0x28f028a2 cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x290b1575 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x2979d9b8 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x29ce5a91 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0x2ed8ae08 ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x306ed431 cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x3380c2ad cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x39440c0d ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x3a7c45d3 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x3cc78cd0 cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x3d470c4d cfg80211_chandef_compatible +EXPORT_SYMBOL net/wireless/cfg80211 0x3dafe9da cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x3e285fec cfg80211_chandef_valid +EXPORT_SYMBOL net/wireless/cfg80211 0x44ec9538 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4e581393 cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x4efae2ae cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x4fa26913 cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x5ab14cc5 wiphy_new_nm +EXPORT_SYMBOL net/wireless/cfg80211 0x5e6d0fbe cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x5f8542a9 regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6bc7307a cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6da1ea56 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x6da9a480 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x6fa38069 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x787227d2 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x7e4fcc89 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x7ef39823 ieee80211_hdrlen +EXPORT_SYMBOL net/wireless/cfg80211 0x7fe1a403 cfg80211_find_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x80404e25 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x84bf722e cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x891a37dd regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x8b49f66c __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x8c7cb0d3 cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x91d7a142 ieee80211_ie_split_ric +EXPORT_SYMBOL net/wireless/cfg80211 0x9492c05b cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x952fb248 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0x96df8eca cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0x982e6b6d ieee80211_radiotap_iterator_init +EXPORT_SYMBOL net/wireless/cfg80211 0x98a72f6b cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x9a4005a7 cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0x9c9d70da wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x9f7fe13e cfg80211_classify8021d +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 0xa1fb8bfb cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xa3d12c17 wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0xa407cabd cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xa4266f42 cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xa99bd508 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0xad88974e cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xad967b11 cfg80211_chandef_usable +EXPORT_SYMBOL net/wireless/cfg80211 0xb052f018 cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb3634c38 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xb4ce7150 cfg80211_report_obss_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xb5829ab2 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0xb761106e cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0xbe59593c cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc68eff3a cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xc71b51b6 cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xc8addbfb ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xcb101975 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0xccd877aa cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xcf375fe7 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd7039933 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdc96a17f cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0xddebeaa1 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0xe21ff370 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0xe34a1686 cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xebf85c3e cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0xec61a96a cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xef55178f cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xefb89049 __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xeffb40bb cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xf909d23a ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0xfa083edb cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xfa6345c4 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/lib80211 0x2738b66a lib80211_crypt_info_init +EXPORT_SYMBOL net/wireless/lib80211 0x36807a08 lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x72f9b31a lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0xb6551946 lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xb74ab2db lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xfa30a31f lib80211_unregister_crypto_ops +EXPORT_SYMBOL sound/ac97_bus 0x544f3583 ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x3ef2da53 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 0x31208d71 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 0x52ba4c3d 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 0x98c66207 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 0xc80d5c31 snd_seq_create_kernel_client +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 0x4d741719 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 0x73a1fcc1 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x02d5f2c3 snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x07550974 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0x08507dcd snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x085ec93a snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0x0865982d snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x0f987e7d snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0x108abd25 snd_device_free +EXPORT_SYMBOL sound/core/snd 0x17c78076 snd_info_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 0x213e4c2b snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x22cf21e9 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x27664e6d snd_ctl_find_numid +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 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3cfeec81 snd_device_register +EXPORT_SYMBOL sound/core/snd 0x4608dd86 snd_register_device +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x5202e086 snd_ctl_free_one +EXPORT_SYMBOL sound/core/snd 0x5337bcf4 snd_card_free +EXPORT_SYMBOL sound/core/snd 0x55bb5506 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x5f34d73a snd_component_add +EXPORT_SYMBOL sound/core/snd 0x61806716 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x624c08ff snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x63a44f0a snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x63d14ffb snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x7189baff snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x743a3023 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0x757030ea snd_jack_new +EXPORT_SYMBOL sound/core/snd 0x76f244c4 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0x7e0ceee5 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x81b7d217 snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0x84ae9aa2 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0x89aef206 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0x8df3789f snd_oss_info_register +EXPORT_SYMBOL sound/core/snd 0x8f595b11 snd_major +EXPORT_SYMBOL sound/core/snd 0x92d29170 snd_cards +EXPORT_SYMBOL sound/core/snd 0x96606fd5 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x9e0b393a snd_device_new +EXPORT_SYMBOL sound/core/snd 0x9e6d79f8 snd_info_get_str +EXPORT_SYMBOL sound/core/snd 0x9fb86b25 snd_ctl_make_virtual_master +EXPORT_SYMBOL sound/core/snd 0xa0fd2427 snd_pci_quirk_lookup_id +EXPORT_SYMBOL sound/core/snd 0xab44fa86 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbf548f33 snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xc5c5f2e8 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xcb1f2cd2 snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0xcc5b23c3 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xcd7424b0 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xd999e522 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xe375d625 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0xec34b1b3 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0xeddf39dd snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0xf7298e8b snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0xf7ec6918 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0xf88eb30d snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0xfb029f21 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0xfc96fc83 snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x5005e913 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0098bc7c snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x02e30916 snd_pcm_hw_constraint_ratnums +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 0x08acbfec snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x0a5ac8aa snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x11fa016e snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x1aa4e6a5 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x1e140344 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x1f00ad52 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x25ff6d0f snd_pcm_hw_constraint_list +EXPORT_SYMBOL sound/core/snd-pcm 0x35f3996b snd_pcm_suspend +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 0x3d0fc481 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x45d2b484 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x4c50755c snd_pcm_lib_preallocate_free_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 0x5479577e snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +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 0x62e3dbb0 snd_pcm_suspend_all +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 0x6b0367e1 snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x6cb1d715 snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x6d03dfb2 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x7879b75f snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0x817e3608 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x860c5d24 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x8bba143c snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x954e87a4 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x984b49f7 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0x9b46f455 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0xa41e6ea2 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xa52bf0c9 snd_pcm_new_stream +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 0xab04ac9e snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xacefd95f snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0xb74d73a5 snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc82bf2b7 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xcef32b52 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0xd78fc875 snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0xd7bcdb3f snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0xdc3f9f81 snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0xde370b72 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xe45f7ad3 snd_pcm_lib_free_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe54f0760 snd_pcm_hw_constraint_ratdens +EXPORT_SYMBOL sound/core/snd-pcm 0xe56a9336 snd_pcm_format_width +EXPORT_SYMBOL sound/core/snd-pcm 0xe5de6172 snd_pcm_lib_preallocate_pages_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0xe71c5081 snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0xe75608ef snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xec416db4 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0xefa7b39c snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xf7aec242 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0xf839f7cd snd_pcm_hw_constraint_ranges +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x01477554 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x211ba74a __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x267cacd3 snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4ed65d34 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x4fc0898a snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6648b043 snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x67456a3b snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6c5766e2 snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x75c70da1 snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7e511802 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0x892aa2e8 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb4eca4be snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xb92d8028 snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0xbe514b2c snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xd2165508 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdab556d3 snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe74b4ca9 snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xee29dcaa snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0xfeb89ec6 snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-timer 0x4af6d724 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0x4ceaae8e snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0x5f2463a3 snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x788d6b23 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0x79ffd316 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0x873b024c snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x8d13cefd snd_timer_continue +EXPORT_SYMBOL sound/core/snd-timer 0x97f03772 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xa976e110 snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xa9d48729 snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xc19a9ef6 snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xcf2af825 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0xea0264e1 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 0x7a976645 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 0x03d14ef9 snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x05060a19 snd_opl3_regmap +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x0a0de45a snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x1adf20eb snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3507fa7c snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x426f904e snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x47afb815 snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xc9c44013 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd076d9c2 snd_opl3_init +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xef77d6fb snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x178bf3ae 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 0x2d646c4b snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x54a33f20 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x7b506076 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xb4d06b58 snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xdd341212 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xe448a00a snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xeaa414d3 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 0xf77e8693 snd_vx_dsp_boot +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x05908f91 amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x069f2512 avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x138e63b1 snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1cae292a snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x1cc6adfc cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3cdff4e4 fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x3fc803cb cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x584e1196 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x5b6f383e amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x62645ddc fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x636b47be fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x78d7a5cf amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7cb314dd cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7e609f30 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x7fef6119 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x80cced6c avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x86db543b cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8a3c3609 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x95052d32 snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae44ed3b amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xae9d7b0d amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb0821e09 fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5e2ce31 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb71d1c8c amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd7a14a11 amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdb1e9696 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xdcb60db9 fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe8c1ac29 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xee53722f fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0dd6f46 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf7abc6d8 amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfab384b7 cmp_connection_destroy +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x803b8a16 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x8819c213 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1300d25e snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1924e3a9 snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x1d01d395 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x2fd1e965 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x409895a0 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x912583e4 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa09e3e7d snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xaacec860 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x21bcc628 snd_ak4117_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x8f5e5910 snd_ak4117_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0x9a6c50b6 snd_ak4117_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xacb8f37c snd_ak4117_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xb0197cce snd_ak4117_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4117 0xe029a749 snd_ak4117_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x377695a2 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5b3242fa snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x5fd22bce snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xd38dc5b3 snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0x65cc65c6 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xcd46d40d snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x049d0f1a snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x4ca42fd8 snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x5db4c66a snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x9f70ea86 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc23a1883 snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xc5474351 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-i2c 0x05654616 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0x10cc16d0 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0x632f5d78 snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0x7ecbf84e snd_i2c_readbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xadee7620 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd32f2a3b snd_i2c_bus_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x1aed2280 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2bc251b9 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3390a6c1 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x7e3a568f snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x8b1e4584 snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x94ec523e snd_sbdsp_get_byte +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9f464fe2 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xaef7a16e snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xc9c0514a snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf6e362a8 snd_sbmixer_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x09fdacf4 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x12e74d9b snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x1d9e9683 snd_ac97_suspend +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x2dfaabcc snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x4ff97189 snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x61478529 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x68b8518d snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x73dae42a snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x757fed1e snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x796c3067 snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x7c002965 snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x89e6c1df snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x9338853a snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xbb66d87e snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd3a875de snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf8be6df9 snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfe34882f snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x092750ec snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x18c85a60 snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x1e24a452 snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4ad34284 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x4b8b839a snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x50e1c570 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x9a4bd58e snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xde5cc2b8 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xecea0a6e snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x0e7f860c snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x1db426f4 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0xe1e0a14c snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x0157e521 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x08cab4aa oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x16b59f1e oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x1e3d1bfb oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x21541cab oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x429d9b50 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4b1b5107 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4cf36c76 oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x4dc8bc7d oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x54d04009 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x568b1d83 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x74d26a99 oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x8146c6bf oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x98b7ab7e oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9ee0c81d oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xba59ab45 oxygen_write_i2c +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xe02494c0 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xee6a12b9 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xefcdfc4a oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfb8ed31e oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xfd8a3729 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x10a059a5 snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x5406fd3a snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x8a5db7a9 snd_trident_free_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xbcbaa3d7 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xf23bcf14 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x165d4195 tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x181bceef tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0x49399256 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x1a7df1da register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0x71dd7d09 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x8a1cc9ca register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xa8f473c0 register_sound_special +EXPORT_SYMBOL sound/soundcore 0xb3992078 register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xd6739078 sound_class +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x023181b1 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x21506328 snd_emux_terminate_all +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x249fcacf snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x5494a34f 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 0x6f466def snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x74dcd7d6 snd_emux_register +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 0x88365a68 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 0x001624b7 freezing_slow_path +EXPORT_SYMBOL vmlinux 0x0028c085 vme_master_request +EXPORT_SYMBOL vmlinux 0x0041f4ee sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x0046685e of_get_pci_address +EXPORT_SYMBOL vmlinux 0x005a4975 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0x005c22e2 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x006f98c1 of_parse_phandle +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0077f8c3 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x00b0f058 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0x00b56bf0 sock_init_data +EXPORT_SYMBOL vmlinux 0x00c9dee4 __bforget +EXPORT_SYMBOL vmlinux 0x00d7e18c ilookup5 +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00f26758 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x00fc15a8 freeze_super +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01191843 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x0122f95e _lv1_get_spe_irq_outlet +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x012f6711 revert_creds +EXPORT_SYMBOL vmlinux 0x0148ba50 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x014a942e inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x017ed9dc netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x01816c01 blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x018d9919 _lv1_set_lpm_interrupt_mask +EXPORT_SYMBOL vmlinux 0x01985cce vfs_mknod +EXPORT_SYMBOL vmlinux 0x0199b752 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x019c66dc vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0x01c08d3a copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x01d1eb76 bio_add_page +EXPORT_SYMBOL vmlinux 0x01d51136 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0x01d864fe block_page_mkwrite +EXPORT_SYMBOL vmlinux 0x0209f3fd mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x020d18d7 _lv1_set_lpm_debug_bus_control +EXPORT_SYMBOL vmlinux 0x0221e02c mmc_free_host +EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars +EXPORT_SYMBOL vmlinux 0x023eb8ed flow_cache_lookup +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x024f1c6d get_super +EXPORT_SYMBOL vmlinux 0x024f2eb6 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0272815e ata_link_printk +EXPORT_SYMBOL vmlinux 0x027344b4 ps2_handle_response +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x027d5499 _lv1_did_update_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0285ee03 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02aab258 lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x02ab52e3 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x02e2d4d5 mach_powermac +EXPORT_SYMBOL vmlinux 0x02e47a8b sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x03098a95 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x030ecb43 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x031dc65e pasemi_dma_free_chan +EXPORT_SYMBOL vmlinux 0x03225a25 simple_transaction_release +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x0337bdf4 tty_set_operations +EXPORT_SYMBOL vmlinux 0x034bf8e5 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x034e67dc phy_init_eee +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03665e33 bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x03738da4 get_disk +EXPORT_SYMBOL vmlinux 0x03783158 mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x037c6ecd phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0x03807141 security_path_unlink +EXPORT_SYMBOL vmlinux 0x03b94f09 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x03c28002 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x043c7071 of_device_unregister +EXPORT_SYMBOL vmlinux 0x0440a533 _lv1_net_remove_multicast_address +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x044e86d0 __sb_end_write +EXPORT_SYMBOL vmlinux 0x0457528e eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0x045f1917 scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x04850112 phy_attach +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04a3959c i2c_verify_client +EXPORT_SYMBOL vmlinux 0x04c69f71 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0x04e0907c eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x04e1872a dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x050ce795 tcp_poll +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x05217309 __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x052719f7 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x0540b32a cpu_core_map +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x055ca037 tty_port_destroy +EXPORT_SYMBOL vmlinux 0x056374c4 of_root +EXPORT_SYMBOL vmlinux 0x056e8e6f kill_pid +EXPORT_SYMBOL vmlinux 0x05782b54 inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x0593c7b2 no_llseek +EXPORT_SYMBOL vmlinux 0x059919b9 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05a926b3 set_security_override +EXPORT_SYMBOL vmlinux 0x05b25e86 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0x05d1be08 tty_throttle +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x061fd029 prepare_creds +EXPORT_SYMBOL vmlinux 0x06235685 mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0x06322902 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x06456aff _lv1_get_virtual_address_space_id_of_ppe +EXPORT_SYMBOL vmlinux 0x0667c3ed tso_count_descs +EXPORT_SYMBOL vmlinux 0x067aac10 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0681406c swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x069aacc3 qdisc_reset +EXPORT_SYMBOL vmlinux 0x06b19dac netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x06c8587a skb_queue_purge +EXPORT_SYMBOL vmlinux 0x06cd047e fput +EXPORT_SYMBOL vmlinux 0x06e85649 dev_notice +EXPORT_SYMBOL vmlinux 0x06f293e8 set_wb_congested +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x0714c316 simple_getattr +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f3686 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x074276c3 sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x0756ce0f uart_resume_port +EXPORT_SYMBOL vmlinux 0x076f23a1 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x0791d15f cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0x079e2483 pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07aed8e2 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x07b26e10 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x07bd4cf9 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x07c642fe skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07dfb80d twl6040_reg_write +EXPORT_SYMBOL vmlinux 0x07e299df dma_sync_wait +EXPORT_SYMBOL vmlinux 0x07ed92f0 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x07ef213a pasemi_dma_free_fun +EXPORT_SYMBOL vmlinux 0x07f8ee15 _lv1_unmap_device_dma_region +EXPORT_SYMBOL vmlinux 0x08159beb __vfs_read +EXPORT_SYMBOL vmlinux 0x081e848c sock_no_accept +EXPORT_SYMBOL vmlinux 0x082812cf kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x0841dec3 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x0844dfe4 path_noexec +EXPORT_SYMBOL vmlinux 0x0871b371 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x08761702 pagevec_lookup +EXPORT_SYMBOL vmlinux 0x08a59f24 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x08ea4fec devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x090cce43 ping_prot +EXPORT_SYMBOL vmlinux 0x091f7755 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x0935096d kernel_sendpage +EXPORT_SYMBOL vmlinux 0x09396aab of_find_property +EXPORT_SYMBOL vmlinux 0x093bf9b4 seq_write +EXPORT_SYMBOL vmlinux 0x09457899 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x096341c2 _lv1_connect_irq_plug_ext +EXPORT_SYMBOL vmlinux 0x09690fc9 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x096ea52e generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x097e6c6d debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x099c9db6 sg_miter_next +EXPORT_SYMBOL vmlinux 0x09be5b0a ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x09c5215e inet6_protos +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 0x09dd56b5 iput +EXPORT_SYMBOL vmlinux 0x09e36edb dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x0a03ef81 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x0a0ed190 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x0a15ed11 netdev_warn +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a35358d md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x0a3d0644 cpu_online_mask +EXPORT_SYMBOL vmlinux 0x0a555a71 __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x0a5771dd page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a763d48 uart_register_driver +EXPORT_SYMBOL vmlinux 0x0a766f83 nf_log_register +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a789709 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x0a8e3e0a mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x0a9bcc33 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x0a9c9e42 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aab31a7 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x0ac13397 input_close_device +EXPORT_SYMBOL vmlinux 0x0ac907f0 key_invalidate +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad433d5 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0x0ad85186 gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x0b059359 __vio_register_driver +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1b1a56 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b208ee9 inet_bind +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b4cd927 ps2_end_command +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b616029 udp_disconnect +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b76ccf2 register_shrinker +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bd7dc8d __frontswap_load +EXPORT_SYMBOL vmlinux 0x0be1ed21 sock_no_poll +EXPORT_SYMBOL vmlinux 0x0c085253 vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x0c1ad162 _lv1_net_start_rx_dma +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c2794ae bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c4888d3 pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c6e130e lro_flush_all +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cbf4196 elevator_alloc +EXPORT_SYMBOL vmlinux 0x0cc2f61a wireless_spy_update +EXPORT_SYMBOL vmlinux 0x0cf49528 agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d5d97f3 netlink_ack +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d8f1777 vme_lm_request +EXPORT_SYMBOL vmlinux 0x0d9dea82 of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da7f38a bprm_change_interp +EXPORT_SYMBOL vmlinux 0x0dbab04a kill_fasync +EXPORT_SYMBOL vmlinux 0x0dbd6937 arp_create +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dcd40bb bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x0ddaf49d mmc_release_host +EXPORT_SYMBOL vmlinux 0x0ddbd076 skb_queue_head +EXPORT_SYMBOL vmlinux 0x0de78235 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x0dedc03b __mmc_claim_host +EXPORT_SYMBOL vmlinux 0x0df4dcec param_ops_uint +EXPORT_SYMBOL vmlinux 0x0df63e27 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x0df7214f elv_rb_del +EXPORT_SYMBOL vmlinux 0x0dfcd288 dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x0e032889 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x0e334ef0 of_n_size_cells +EXPORT_SYMBOL vmlinux 0x0e4bc8c5 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e74023f dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x0e7b106a pci_match_id +EXPORT_SYMBOL vmlinux 0x0e8a2c5e i2c_clients_command +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e94a358 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x0ea738f4 __destroy_inode +EXPORT_SYMBOL vmlinux 0x0eb0e95a generic_file_llseek +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0ed1006d register_cdrom +EXPORT_SYMBOL vmlinux 0x0ef3dae7 nd_device_register +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f043b3b pci_fixup_device +EXPORT_SYMBOL vmlinux 0x0f0e687c xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x0f19027f phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x0f2a8542 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x0f2cdcbc mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x0f48089b inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x0f4a591e cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f5f279c peernet2id_alloc +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 0x0f80d063 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0x0f85ab07 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0x0f8ef7f8 param_set_ushort +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb050e8 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fbe1051 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0x0fff6445 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x10189454 dev_deactivate +EXPORT_SYMBOL vmlinux 0x104f1f5a ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x1058c239 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x10595cf9 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x106b6809 scsi_host_get +EXPORT_SYMBOL vmlinux 0x106cd8f3 phy_stop +EXPORT_SYMBOL vmlinux 0x107091fa xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x107bcc6b skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x1087118c twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x10894f8d thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x108cf208 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x10a6884a xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x10b0fef8 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0x10b1e690 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0x10e33115 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x10e41552 ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10f16f62 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0x1103a927 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1116d7ca free_buffer_head +EXPORT_SYMBOL vmlinux 0x11192c3f blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x111987c9 sk_alloc +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x1171b635 _lv1_delete_lpm_event_bookmark +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x1189e0b0 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x118d434c swiotlb_dma_supported +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11b0e932 do_SAK +EXPORT_SYMBOL vmlinux 0x11b29cfe give_up_console +EXPORT_SYMBOL vmlinux 0x11f586e1 __pskb_copy_fclone +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 0x12280235 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x123c5d38 i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x129680d1 register_quota_format +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b38976 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x12ba4aed bitmap_start_sync +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 0x12ef21ae remove_proc_entry +EXPORT_SYMBOL vmlinux 0x13017d5d down_read +EXPORT_SYMBOL vmlinux 0x13060c25 ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13215eac mem_section +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x1327a5d3 compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x132c56b1 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13417781 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x1378a329 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x13bfd390 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x13c086ff xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d85654 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x13d9ee4d xfrm_register_km +EXPORT_SYMBOL vmlinux 0x13e30541 is_bad_inode +EXPORT_SYMBOL vmlinux 0x13ebaaed __neigh_create +EXPORT_SYMBOL vmlinux 0x13ec1cb8 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x13edb49b devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x13f15d4f xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x13fd50b3 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x13ffa8bb netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x1404482c pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x141fe5fd pasemi_read_iob_reg +EXPORT_SYMBOL vmlinux 0x142342e2 phy_register_fixup +EXPORT_SYMBOL vmlinux 0x1423f7fe xfrm_input +EXPORT_SYMBOL vmlinux 0x1424a2b8 sk_dst_check +EXPORT_SYMBOL vmlinux 0x14280bfa __remove_inode_hash +EXPORT_SYMBOL vmlinux 0x1431b128 dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x1439e3c2 skb_unlink +EXPORT_SYMBOL vmlinux 0x143ca6f1 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0x1490f722 skb_append +EXPORT_SYMBOL vmlinux 0x14a14817 pSeries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0x14c2d7f8 locks_copy_lock +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14f251cd rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x14f33441 mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x15030aa4 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x1503561d bio_put +EXPORT_SYMBOL vmlinux 0x15110ef0 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x151592c4 _lv1_invalidate_htab_entries +EXPORT_SYMBOL vmlinux 0x1537f650 dev_open +EXPORT_SYMBOL vmlinux 0x154613f5 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1565bd0a vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x159c8872 blk_init_queue +EXPORT_SYMBOL vmlinux 0x159d5edc tty_mutex +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15cfcbec simple_dir_operations +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15d486d6 netif_device_attach +EXPORT_SYMBOL vmlinux 0x15e5a120 vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x16045232 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x16065157 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x161a7bb3 pci_find_bus +EXPORT_SYMBOL vmlinux 0x161ea20b netpoll_setup +EXPORT_SYMBOL vmlinux 0x162f0b2d gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x16496f30 generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0x1661ce63 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x1663f26d __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x167b8e45 dev_close +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x1687c366 devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0x168fb936 dev_addr_init +EXPORT_SYMBOL vmlinux 0x16b37903 blk_recount_segments +EXPORT_SYMBOL vmlinux 0x16d5a5d7 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16f9c221 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x172fff6f capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x173020e5 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x17590f00 xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x175d6408 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x176debed mmc_erase +EXPORT_SYMBOL vmlinux 0x177de996 param_get_ushort +EXPORT_SYMBOL vmlinux 0x17837f26 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x178ba192 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x179a7152 softnet_data +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17c4f219 of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0x17cb8c79 _lv1_read_htab_entries +EXPORT_SYMBOL vmlinux 0x17dc0821 devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0x17dfd2dd update_region +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17f1a648 sock_no_bind +EXPORT_SYMBOL vmlinux 0x17f2cb69 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17feec24 jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x181a934f dcache_readdir +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x182f50af _lv1_open_device +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1842ec89 cap_mmap_file +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x18614a9e set_groups +EXPORT_SYMBOL vmlinux 0x1887a4ab skb_pull +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x18993047 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0x18c340c5 dm_io +EXPORT_SYMBOL vmlinux 0x18c93080 bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x18c98205 _lv1_destruct_virtual_address_space +EXPORT_SYMBOL vmlinux 0x18d4816b i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x18dbc313 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x190221f3 vfs_read +EXPORT_SYMBOL vmlinux 0x1902cf08 kfree_skb +EXPORT_SYMBOL vmlinux 0x1902de91 i8042_install_filter +EXPORT_SYMBOL vmlinux 0x193e518e scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x1949740d sock_setsockopt +EXPORT_SYMBOL vmlinux 0x196bd91f dma_find_channel +EXPORT_SYMBOL vmlinux 0x1972d24c __blk_run_queue +EXPORT_SYMBOL vmlinux 0x199ec4fb arch_spin_unlock_wait +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19ad11a4 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x19b20b10 vme_unregister_error_handler +EXPORT_SYMBOL vmlinux 0x19b6c61b ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x19b8c656 xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x19ba1dc7 fence_enable_sw_signaling +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19c36b94 proc_symlink +EXPORT_SYMBOL vmlinux 0x19c968d1 pasemi_dma_start_chan +EXPORT_SYMBOL vmlinux 0x1a268761 grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x1a2e6b4d kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x1a8e7b64 sys_imageblit +EXPORT_SYMBOL vmlinux 0x1a91663d pasemi_dma_free_buf +EXPORT_SYMBOL vmlinux 0x1a9c3222 netdev_emerg +EXPORT_SYMBOL vmlinux 0x1a9fec4e blk_peek_request +EXPORT_SYMBOL vmlinux 0x1aa5fbfe from_kuid_munged +EXPORT_SYMBOL vmlinux 0x1aac81b0 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x1abbd56b d_set_d_op +EXPORT_SYMBOL vmlinux 0x1ac4b28b pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ad333a1 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x1ae5714e netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x1aefad70 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b01dfce dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b30beaa security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x1b3b8734 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x1b46bc61 pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0x1b5799ce mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b684a46 blk_complete_request +EXPORT_SYMBOL vmlinux 0x1b6a98e9 bioset_free +EXPORT_SYMBOL vmlinux 0x1b828c79 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bbe2711 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0x1bc06e0b __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1be06ca1 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c0a6ec2 mount_single +EXPORT_SYMBOL vmlinux 0x1c168847 d_genocide +EXPORT_SYMBOL vmlinux 0x1c200a7d pasemi_dma_stop_chan +EXPORT_SYMBOL vmlinux 0x1c34ab2c dev_alert +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c4dab93 _lv1_connect_irq_plug +EXPORT_SYMBOL vmlinux 0x1c507e69 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x1c5b2c15 pmu_wait_complete +EXPORT_SYMBOL vmlinux 0x1c6260ce clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x1c7118ab pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0x1c7414cc sock_wfree +EXPORT_SYMBOL vmlinux 0x1c774d30 misc_deregister +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c838977 from_kgid +EXPORT_SYMBOL vmlinux 0x1c875ae9 jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x1c8a983b sk_reset_timer +EXPORT_SYMBOL vmlinux 0x1c9d7924 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x1cb00c03 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x1cb9aad0 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x1cbf05b1 validate_sp +EXPORT_SYMBOL vmlinux 0x1ce4fd8e install_exec_creds +EXPORT_SYMBOL vmlinux 0x1d08db37 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0x1d0a3fdd swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x1d0d99eb xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d1a107e mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x1d3c56a9 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x1d3c7947 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x1d3e0386 pmac_resume_agp_for_card +EXPORT_SYMBOL vmlinux 0x1d4750bc _lv1_stop_lpm +EXPORT_SYMBOL vmlinux 0x1d63f14c init_special_inode +EXPORT_SYMBOL vmlinux 0x1d699974 pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x1d85c432 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x1dac0854 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1df86bec skb_copy +EXPORT_SYMBOL vmlinux 0x1e04545f jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x1e04983a jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e1a3f29 inet_select_addr +EXPORT_SYMBOL vmlinux 0x1e1d7851 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x1e25cdb6 security_mmap_file +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e657f6d truncate_inode_pages +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e8f236f __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x1e9d042b wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea65bc7 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0x1eacaae2 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x1ead3ec6 lock_fb_info +EXPORT_SYMBOL vmlinux 0x1ede06ba tty_port_put +EXPORT_SYMBOL vmlinux 0x1ede9ab9 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x1ee168db dquot_alloc +EXPORT_SYMBOL vmlinux 0x1ee6fab0 neigh_update +EXPORT_SYMBOL vmlinux 0x1eef8449 mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x1ef4e74d blk_requeue_request +EXPORT_SYMBOL vmlinux 0x1ef7113a sock_edemux +EXPORT_SYMBOL vmlinux 0x1efd9eaf xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x1f123995 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x1f1aafd0 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x1f26a29b vm_mmap +EXPORT_SYMBOL vmlinux 0x1f2a993a vga_put +EXPORT_SYMBOL vmlinux 0x1f550ee3 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x1f5f90d8 generic_delete_inode +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f846d38 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x1f9c2deb would_dump +EXPORT_SYMBOL vmlinux 0x1fae7678 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x1fb0ae7a dump_truncate +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe0bfb2 dentry_path_raw +EXPORT_SYMBOL vmlinux 0x1fe594e1 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x1fe7b4ab pasemi_write_dma_reg +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe96276 seq_release +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ff4aadd dump_align +EXPORT_SYMBOL vmlinux 0x1ff8e0ef devm_gpio_free +EXPORT_SYMBOL vmlinux 0x1ffdb4df bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x2008a8b2 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x201494ee _lv1_net_set_interrupt_mask +EXPORT_SYMBOL vmlinux 0x2017350d locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x201864d7 mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2055d4ec tcf_hash_create +EXPORT_SYMBOL vmlinux 0x205cb9b2 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x20808a47 pmac_register_agp_pm +EXPORT_SYMBOL vmlinux 0x2095d1d5 blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x2096e6f4 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20ac03e0 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x20b7e514 fb_find_mode +EXPORT_SYMBOL vmlinux 0x20c2a996 scsi_register_interface +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20ca91fd netif_napi_del +EXPORT_SYMBOL vmlinux 0x20df5a3d vme_dma_pci_attribute +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20ee6c3e xfrm_register_type +EXPORT_SYMBOL vmlinux 0x21123b5f i2c_master_recv +EXPORT_SYMBOL vmlinux 0x21156831 d_invalidate +EXPORT_SYMBOL vmlinux 0x2118147b mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x211969ba md_register_thread +EXPORT_SYMBOL vmlinux 0x211c8bbb page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x21278a4a vfs_readv +EXPORT_SYMBOL vmlinux 0x212db908 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x213603bf pasemi_dma_free_ring +EXPORT_SYMBOL vmlinux 0x214ffb73 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x218ea4c9 pid_task +EXPORT_SYMBOL vmlinux 0x21918574 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0x219d73f4 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x21a25867 phy_detach +EXPORT_SYMBOL vmlinux 0x21b91732 skb_tx_error +EXPORT_SYMBOL vmlinux 0x21d07ed7 seq_vprintf +EXPORT_SYMBOL vmlinux 0x21d5cbd6 inet6_offloads +EXPORT_SYMBOL vmlinux 0x21d7a274 of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e4cd92 pcie_set_mps +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x21f23f32 nf_reinject +EXPORT_SYMBOL vmlinux 0x220ce7c0 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x220ff7f8 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x22184d7e pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x2226f639 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2235fa0e blk_put_request +EXPORT_SYMBOL vmlinux 0x223f8af2 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x2244fc1f kernel_getsockname +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 0x22918fab tty_unthrottle +EXPORT_SYMBOL vmlinux 0x2292d3e7 vfs_writef +EXPORT_SYMBOL vmlinux 0x229b7d6d giveup_vsx +EXPORT_SYMBOL vmlinux 0x229f3c72 __dax_fault +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22b9d1fd pipe_lock +EXPORT_SYMBOL vmlinux 0x22bb722a xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x22cb57d0 devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x22cff591 mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0x22fd85a1 of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x2305b34a up_read +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x2334c8bd blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x23929d38 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23c45417 node_data +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23dd1950 get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x23dd3901 __nd_driver_register +EXPORT_SYMBOL vmlinux 0x23de5715 genphy_update_link +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x240d27de rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x240e2ffd pci_remove_bus +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x243ac46b tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x2443452d pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x24564fdc scsi_print_result +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x246dea67 cancel_dirty_page +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 0x24936621 nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0x24c12b3d free_page_put_link +EXPORT_SYMBOL vmlinux 0x24c76adc tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x24ce1445 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x24cfd438 _lv1_copy_lpm_trace_buffer +EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x24dc8cb5 cad_pid +EXPORT_SYMBOL vmlinux 0x24e3616b md_reload_sb +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fb6477 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x25100550 iunique +EXPORT_SYMBOL vmlinux 0x25122bcb sys_copyarea +EXPORT_SYMBOL vmlinux 0x251a7a83 default_llseek +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x25282b39 clear_inode +EXPORT_SYMBOL vmlinux 0x2545723b __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x2547b64e dev_set_mac_address +EXPORT_SYMBOL vmlinux 0x255cdf43 find_get_entry +EXPORT_SYMBOL vmlinux 0x256d2e16 mdiobus_write +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x258b74e2 tty_devnum +EXPORT_SYMBOL vmlinux 0x25ab1ba1 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0x25b6b8f7 _lv1_set_spe_transition_notifier +EXPORT_SYMBOL vmlinux 0x25e0488b of_node_put +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x2608b444 dm_get_device +EXPORT_SYMBOL vmlinux 0x260a8206 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0x2618c90a tcp_shutdown +EXPORT_SYMBOL vmlinux 0x2632ff9e dquot_transfer +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x2649c88f noop_llseek +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x265d1c61 scsi_print_command +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x266888b3 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x2678f015 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x267d7b00 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x2697e164 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x26b2cebc input_register_device +EXPORT_SYMBOL vmlinux 0x26b760c4 slhc_init +EXPORT_SYMBOL vmlinux 0x26b9febe blk_make_request +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26eaf5af read_cache_pages +EXPORT_SYMBOL vmlinux 0x26f7f312 lease_get_mtime +EXPORT_SYMBOL vmlinux 0x27302b1a generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x273d88ab __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x274e03e5 mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x2750c2de keyring_alloc +EXPORT_SYMBOL vmlinux 0x275d9517 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x27696d2c simple_statfs +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 0x279f32c3 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27d03478 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27f1d9d7 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x28063b74 netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x2833c092 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x2833cef6 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x2843d277 dev_get_stats +EXPORT_SYMBOL vmlinux 0x284ef5ac do_truncate +EXPORT_SYMBOL vmlinux 0x2861e0e3 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x28706b9b sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0x2873bffe compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0x2878e5ff sb_min_blocksize +EXPORT_SYMBOL vmlinux 0x2882775f pci_release_regions +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 0x28d8cf6e blk_fetch_request +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28e873c3 mount_subtree +EXPORT_SYMBOL vmlinux 0x28ebfe96 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x28f8fc30 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0x291aebd4 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x2933bef0 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x296ef069 block_write_begin +EXPORT_SYMBOL vmlinux 0x29b62842 put_filp +EXPORT_SYMBOL vmlinux 0x29b64585 mutex_trylock +EXPORT_SYMBOL vmlinux 0x29c7e649 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x29c8c53c flow_cache_fini +EXPORT_SYMBOL vmlinux 0x29cb699a uart_write_wakeup +EXPORT_SYMBOL vmlinux 0x29d8db28 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x29eb9289 __sb_start_write +EXPORT_SYMBOL vmlinux 0x29f25cea block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x29f5cdf8 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a357da0 __brelse +EXPORT_SYMBOL vmlinux 0x2a37ad7e dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a399105 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x2a5e3366 phy_attach_direct +EXPORT_SYMBOL vmlinux 0x2a621cef qdisc_list_add +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2aadc832 blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ad63102 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x2af76056 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0x2af8ad84 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b0d9003 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2b187579 max8925_set_bits +EXPORT_SYMBOL vmlinux 0x2b2582ae dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x2b29caae filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x2b2ce27e dquot_drop +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3abf00 serio_rescan +EXPORT_SYMBOL vmlinux 0x2b3b99f3 tc_classify +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b5475a5 do_splice_from +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2b9f8d2b param_set_charp +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba88042 put_page +EXPORT_SYMBOL vmlinux 0x2bb528e4 dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x2bc081fd ihold +EXPORT_SYMBOL vmlinux 0x2be14ede proc_set_user +EXPORT_SYMBOL vmlinux 0x2be5d7fb blkdev_fsync +EXPORT_SYMBOL vmlinux 0x2c06dfb4 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x2c1cd4a4 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c4c7997 _lv1_construct_lpm +EXPORT_SYMBOL vmlinux 0x2c4fefff inet_register_protosw +EXPORT_SYMBOL vmlinux 0x2c50d95f pci_disable_device +EXPORT_SYMBOL vmlinux 0x2c5202ec udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x2c60dc2b blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x2c64c3e4 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x2c6ed32f register_framebuffer +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c87756a blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x2cb051c7 param_get_charp +EXPORT_SYMBOL vmlinux 0x2cd0b1a9 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d2f268a blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x2d2f7a16 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3131d2 d_tmpfile +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d437a77 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x2d7407be f_setown +EXPORT_SYMBOL vmlinux 0x2d76acc1 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0x2d7b0e80 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x2d7d2767 _lv1_set_lpm_group_control +EXPORT_SYMBOL vmlinux 0x2d7e887d dev_addr_add +EXPORT_SYMBOL vmlinux 0x2dae6e62 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2dd26675 netlink_set_err +EXPORT_SYMBOL vmlinux 0x2de8e1da get_gendisk +EXPORT_SYMBOL vmlinux 0x2dfd06dd blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq +EXPORT_SYMBOL vmlinux 0x2e1429cf kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x2e245605 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e4070f7 flush_signals +EXPORT_SYMBOL vmlinux 0x2e56b010 ppp_input +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e7cd0a8 inet_frags_init +EXPORT_SYMBOL vmlinux 0x2e93495e _lv1_write_htab_entry +EXPORT_SYMBOL vmlinux 0x2e9cfaea xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x2eb6e044 napi_get_frags +EXPORT_SYMBOL vmlinux 0x2ebd9c63 pci_disable_msix +EXPORT_SYMBOL vmlinux 0x2ebfec0b eth_header +EXPORT_SYMBOL vmlinux 0x2ed43a17 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x2ee4337f smu_queue_cmd +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 0x2f09dcf2 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f7d6dde tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0x2f95f6b6 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x2fab5581 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fbf68a6 skb_split +EXPORT_SYMBOL vmlinux 0x2fc2ff03 may_umount +EXPORT_SYMBOL vmlinux 0x2fe1ec26 param_get_invbool +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe8fde5 blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x2ffd642f arp_xmit +EXPORT_SYMBOL vmlinux 0x300ce0cd ip_defrag +EXPORT_SYMBOL vmlinux 0x301384b2 put_disk +EXPORT_SYMBOL vmlinux 0x30165d6b mpage_writepages +EXPORT_SYMBOL vmlinux 0x3018aa3e __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x301b1b2c devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0x301bbd90 param_set_int +EXPORT_SYMBOL vmlinux 0x301c1ef2 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x3032bb94 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x30438c7c get_fs_type +EXPORT_SYMBOL vmlinux 0x305ede99 sock_wake_async +EXPORT_SYMBOL vmlinux 0x305fc496 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x3070f9d6 uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x308bdd4a pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x3097a842 param_set_short +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30b14c2e reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30edb343 commit_creds +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3107bc19 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x31297d14 pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0x312cfaf2 _lv1_disable_logical_spe +EXPORT_SYMBOL vmlinux 0x3141c9d7 abx500_remove_ops +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x3159d05a agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0x31604d3d param_get_uint +EXPORT_SYMBOL vmlinux 0x3172d385 pipe_unlock +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31a085f0 register_qdisc +EXPORT_SYMBOL vmlinux 0x31aa60b5 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x31b654f4 set_nlink +EXPORT_SYMBOL vmlinux 0x31b7f300 _lv1_set_lpm_signal +EXPORT_SYMBOL vmlinux 0x31b9192e pcim_enable_device +EXPORT_SYMBOL vmlinux 0x31c181f2 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x31c7a85f phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x31cd509a _lv1_net_control +EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state +EXPORT_SYMBOL vmlinux 0x31cfeba1 netif_receive_skb +EXPORT_SYMBOL vmlinux 0x31e141d4 param_get_bool +EXPORT_SYMBOL vmlinux 0x3200688c cdrom_check_events +EXPORT_SYMBOL vmlinux 0x321dab04 inode_dio_wait +EXPORT_SYMBOL vmlinux 0x3235e35a find_inode_nowait +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x327693c9 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x327b9c1b pmu_poll_adb +EXPORT_SYMBOL vmlinux 0x328ff324 vio_get_attribute +EXPORT_SYMBOL vmlinux 0x32a4973e scsi_remove_device +EXPORT_SYMBOL vmlinux 0x32a792f8 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x32dd4155 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x32df1fa7 alloc_disk +EXPORT_SYMBOL vmlinux 0x32e3c094 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x32e4932d dev_change_flags +EXPORT_SYMBOL vmlinux 0x32fd8c29 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0x3303cc7e generic_show_options +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x33460dd6 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0x334c1905 blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x334d2adf fsync_bdev +EXPORT_SYMBOL vmlinux 0x33598963 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x335b6c44 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x337a0d7b tty_vhangup +EXPORT_SYMBOL vmlinux 0x3388eb75 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x338994fa ip_options_compile +EXPORT_SYMBOL vmlinux 0x338c0951 locks_init_lock +EXPORT_SYMBOL vmlinux 0x33941f1d param_array_ops +EXPORT_SYMBOL vmlinux 0x33b7806c blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33c39232 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33d6f3d0 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x33e8a9ff vfs_rename +EXPORT_SYMBOL vmlinux 0x33ec0b3b jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x340efd77 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x341a2eea parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x341c3b60 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x34479744 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34930686 audit_log_start +EXPORT_SYMBOL vmlinux 0x3499c065 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349f611e tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x34a12e03 read_code +EXPORT_SYMBOL vmlinux 0x34a457ce ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x34acdab5 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x34b3fd98 of_get_next_child +EXPORT_SYMBOL vmlinux 0x34ba60bc tcp_gro_complete +EXPORT_SYMBOL vmlinux 0x34eab966 __module_get +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34f79b0e filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x3519080f do_splice_direct +EXPORT_SYMBOL vmlinux 0x35322651 open_exec +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35859368 setup_new_exec +EXPORT_SYMBOL vmlinux 0x358a1d5d flow_cache_init +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ac11d3 dst_discard_out +EXPORT_SYMBOL vmlinux 0x35ae25da xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35c83998 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0x35ca14ad tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x35d2e4d1 file_open_root +EXPORT_SYMBOL vmlinux 0x35d78fb5 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x36020280 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x360b32bd cdev_add +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x361f598f inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x3626d8a8 generic_readlink +EXPORT_SYMBOL vmlinux 0x364c9f52 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x3654a0e5 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x365d4bd7 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x366ccd6d sk_receive_skb +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x369014cd security_inode_init_security +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36b3fc54 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36f6616f abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x370e47f3 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x3710b460 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x371902e9 _lv1_get_lpm_interrupt_status +EXPORT_SYMBOL vmlinux 0x371d2130 check_legacy_ioport +EXPORT_SYMBOL vmlinux 0x372be99c seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x37344510 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x37355de0 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x37383edd rtas_get_power_level +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37a62ef4 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x37aabc2d generic_write_end +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 0x38072052 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x382409e8 keyring_search +EXPORT_SYMBOL vmlinux 0x382777ab _lv1_gpu_context_allocate +EXPORT_SYMBOL vmlinux 0x3828e345 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x38639216 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x3869191d scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x389deb8e generic_setxattr +EXPORT_SYMBOL vmlinux 0x38a6d26d tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a8b19a key_payload_reserve +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38ee695c eth_validate_addr +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x3912c12d cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x39145205 d_obtain_alias +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 0x39600022 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x396f3a56 md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x39732482 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0x39774fea dump_page +EXPORT_SYMBOL vmlinux 0x3991f7ce cdrom_ioctl +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 0x39ccf532 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x3a1f1d32 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x3a3848c9 simple_write_end +EXPORT_SYMBOL vmlinux 0x3a3d4f40 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x3a40836f of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x3a52d655 md_done_sync +EXPORT_SYMBOL vmlinux 0x3a83fc16 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x3a90fb2d blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aaf9cfa blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x3ac3830d __scm_destroy +EXPORT_SYMBOL vmlinux 0x3aca50aa napi_gro_receive +EXPORT_SYMBOL vmlinux 0x3accbd3c phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x3ad1c47c fd_install +EXPORT_SYMBOL vmlinux 0x3b2884b9 mmc_can_trim +EXPORT_SYMBOL vmlinux 0x3b290de2 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6a2c88 i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x3b7215f0 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b83f109 scm_fp_dup +EXPORT_SYMBOL vmlinux 0x3ba85738 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x3bb0ebcd dm_register_target +EXPORT_SYMBOL vmlinux 0x3bb26bd2 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x3bc8efa2 dma_pool_create +EXPORT_SYMBOL vmlinux 0x3bdac722 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x3bf5d730 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x3c2134e8 bdget_disk +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c422a13 phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0x3c42980a netlink_capable +EXPORT_SYMBOL vmlinux 0x3c472732 elv_register_queue +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c498aa6 inode_change_ok +EXPORT_SYMBOL vmlinux 0x3c54b3ed tty_kref_put +EXPORT_SYMBOL vmlinux 0x3c5e397e dev_get_by_index +EXPORT_SYMBOL vmlinux 0x3c6e6f91 elv_rb_find +EXPORT_SYMBOL vmlinux 0x3c78fc5c ps2_begin_command +EXPORT_SYMBOL vmlinux 0x3c798dbe mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x3c7dc9a3 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c83862f get_user_pages +EXPORT_SYMBOL vmlinux 0x3c9fbbba to_nd_btt +EXPORT_SYMBOL vmlinux 0x3ca2c5c6 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x3ca7f098 inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x3cbbaaa9 vga_con +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3ccb6f2b get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x3cd4a634 load_nls +EXPORT_SYMBOL vmlinux 0x3cd881f3 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3cea7705 input_flush_device +EXPORT_SYMBOL vmlinux 0x3cec5e43 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x3cffcbe7 mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x3d143381 nonseekable_open +EXPORT_SYMBOL vmlinux 0x3d16d47b bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x3d743f32 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x3da8e8fa agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0x3dad81df filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x3db32a32 blk_integrity_register +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 0x3dc4906e pci_assign_resource +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dd28295 lock_sock_nested +EXPORT_SYMBOL vmlinux 0x3dd59c98 end_page_writeback +EXPORT_SYMBOL vmlinux 0x3dd8c45f sync_filesystem +EXPORT_SYMBOL vmlinux 0x3df0dd42 module_refcount +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e0e5993 vfs_statfs +EXPORT_SYMBOL vmlinux 0x3e2262f2 __frontswap_test +EXPORT_SYMBOL vmlinux 0x3e269630 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x3e286dca _lv1_get_rtc +EXPORT_SYMBOL vmlinux 0x3e7716a3 elevator_init +EXPORT_SYMBOL vmlinux 0x3e7fe116 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x3e874a14 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e91e8a9 phy_start +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3e9e8e26 downgrade_write +EXPORT_SYMBOL vmlinux 0x3eb7ba6a netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0x3ee9afcb xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x3eea519d netif_skb_features +EXPORT_SYMBOL vmlinux 0x3eeb163e inet_put_port +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f06a656 _lv1_construct_event_receive_port +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f58093c vc_resize +EXPORT_SYMBOL vmlinux 0x3f66566c fddi_type_trans +EXPORT_SYMBOL vmlinux 0x3f7c4e10 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x3fa89e57 fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x3fb78220 eth_header_parse +EXPORT_SYMBOL vmlinux 0x3fbba82d sget_userns +EXPORT_SYMBOL vmlinux 0x3fbfd6ed _lv1_gpu_open +EXPORT_SYMBOL vmlinux 0x3fc9a3dd fasync_helper +EXPORT_SYMBOL vmlinux 0x3fe0d1c0 slhc_free +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fe49b5c key_reject_and_link +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x3ffea9e9 __get_user_pages +EXPORT_SYMBOL vmlinux 0x4017de9d iterate_fd +EXPORT_SYMBOL vmlinux 0x401d5172 macio_enable_devres +EXPORT_SYMBOL vmlinux 0x4024a3ab fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40416a29 fb_pan_display +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x408abe08 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409c23d3 ip6_frag_init +EXPORT_SYMBOL vmlinux 0x40a1f60b pci_iomap_range +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40b26e38 vfs_setpos +EXPORT_SYMBOL vmlinux 0x40b334df giveup_fpu +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 0x40f8e77c pci_choose_state +EXPORT_SYMBOL vmlinux 0x411171e2 of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x41361807 _lv1_get_logical_ppe_id +EXPORT_SYMBOL vmlinux 0x41462e77 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x415e2295 key_validate +EXPORT_SYMBOL vmlinux 0x4162522f flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x416671d3 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0x41669a7e eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x41977b87 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41a9705e stop_tty +EXPORT_SYMBOL vmlinux 0x41b27e80 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41dbf4de _lv1_start_lpm +EXPORT_SYMBOL vmlinux 0x41e461a4 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x41f3c1ad pci_map_rom +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x422ed96c pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x424433ba dev_add_pack +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424b1f4f sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x42699943 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x4293a155 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x4294d127 make_bad_inode +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a35464 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x42be1ad3 alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x42e00ffc agp_collect_device_status +EXPORT_SYMBOL vmlinux 0x42f30479 sock_release +EXPORT_SYMBOL vmlinux 0x42ff8f05 d_path +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x43190e82 tty_check_change +EXPORT_SYMBOL vmlinux 0x431953d2 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x43219fb6 d_make_root +EXPORT_SYMBOL vmlinux 0x433bde72 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0x43413023 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x43802389 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a63384 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x43bcfaad __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x43cfe642 __lock_page +EXPORT_SYMBOL vmlinux 0x43d93f3e km_policy_expired +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43f6390f kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x4428b3a9 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x4458696d netlink_unicast +EXPORT_SYMBOL vmlinux 0x446272df skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x4464ab6d mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x447e8c5f pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x448d8a93 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x44949114 __elv_add_request +EXPORT_SYMBOL vmlinux 0x449d6a06 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44b33713 mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x44c827ed fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x44cfbaf6 generic_listxattr +EXPORT_SYMBOL vmlinux 0x44d1e862 macio_register_driver +EXPORT_SYMBOL vmlinux 0x44e2b1ce cfb_fillrect +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44eef869 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x44f94e0e skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x45072b36 rtnl_notify +EXPORT_SYMBOL vmlinux 0x451ad1e6 get_cached_acl +EXPORT_SYMBOL vmlinux 0x451fdd3d generic_update_time +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4564459b _lv1_set_virtual_uart_param +EXPORT_SYMBOL vmlinux 0x4569f9e1 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x4592039c ps3_dma_region_init +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b07c77 twl6040_get_pll +EXPORT_SYMBOL vmlinux 0x45cca34b param_get_string +EXPORT_SYMBOL vmlinux 0x45cfe80b pasemi_dma_free_flag +EXPORT_SYMBOL vmlinux 0x45d0098d iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x45d9c399 kernel_connect +EXPORT_SYMBOL vmlinux 0x45eb15aa __mod_zone_page_state +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 0x46284256 vio_unregister_device +EXPORT_SYMBOL vmlinux 0x4629e03d __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x46571a05 mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x465e0609 freeze_bdev +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x469d33f0 i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0x46afd532 on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x46b02a1f jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46c56ab0 bdi_register_dev +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46f71a67 da903x_query_status +EXPORT_SYMBOL vmlinux 0x46f81c93 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4706a4d4 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x47215609 mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x47714f11 genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x47912014 dev_mc_del +EXPORT_SYMBOL vmlinux 0x47926639 macio_request_resource +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479a9512 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47aba5d8 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x47bc7819 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x47c62fcb start_tty +EXPORT_SYMBOL vmlinux 0x47dbd53a __nlmsg_put +EXPORT_SYMBOL vmlinux 0x47e43dd6 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x47ebcb0c pci_save_state +EXPORT_SYMBOL vmlinux 0x47f23c7f of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x48119a0e bio_integrity_free +EXPORT_SYMBOL vmlinux 0x4815f22b _lv1_gpu_attribute +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x4831ecfc dma_common_get_sgtable +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 0x4861d8ff mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x486929c1 kernel_write +EXPORT_SYMBOL vmlinux 0x4881efab pmac_get_partition +EXPORT_SYMBOL vmlinux 0x48ada20d scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48bcc695 sk_stream_error +EXPORT_SYMBOL vmlinux 0x48d1433d tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x48d253a1 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x48f6ca0d tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x490b6e68 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x490be170 md_write_end +EXPORT_SYMBOL vmlinux 0x490bf92c vm_map_ram +EXPORT_SYMBOL vmlinux 0x49159716 phy_find_first +EXPORT_SYMBOL vmlinux 0x4917dacb bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x4939c06b bdgrab +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 0x49853329 acl_by_type +EXPORT_SYMBOL vmlinux 0x49a42e67 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49c23236 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0x49d4ab14 drop_super +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a01bd39 tty_unregister_device +EXPORT_SYMBOL vmlinux 0x4a1ca942 pci_scan_bus +EXPORT_SYMBOL vmlinux 0x4a66dec5 write_one_page +EXPORT_SYMBOL vmlinux 0x4a66f9e6 dst_release +EXPORT_SYMBOL vmlinux 0x4a6996bf devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x4a70524b build_skb +EXPORT_SYMBOL vmlinux 0x4a7c4de6 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x4a80da86 set_page_dirty +EXPORT_SYMBOL vmlinux 0x4a866b99 dev_mc_flush +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a89f264 inode_permission +EXPORT_SYMBOL vmlinux 0x4ab0b9d0 d_add_ci +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac64da4 _lv1_select_virtual_address_space +EXPORT_SYMBOL vmlinux 0x4ac688f5 seq_path +EXPORT_SYMBOL vmlinux 0x4ac749cc simple_readpage +EXPORT_SYMBOL vmlinux 0x4ac81d09 filp_open +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4aea5c69 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4aff2c9b bio_reset +EXPORT_SYMBOL vmlinux 0x4b07d71d generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b223e51 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x4b377a97 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x4b3cb349 _lv1_destruct_io_irq_outlet +EXPORT_SYMBOL vmlinux 0x4b4b4336 bio_advance +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 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bc70914 __break_lease +EXPORT_SYMBOL vmlinux 0x4bcb6224 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x4bcda64a unregister_key_type +EXPORT_SYMBOL vmlinux 0x4be1a2c4 md_flush_request +EXPORT_SYMBOL vmlinux 0x4be35976 param_set_byte +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4bf84677 bio_endio +EXPORT_SYMBOL vmlinux 0x4c04f7b1 param_get_ullong +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c339c60 get_tz_trend +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c4961f4 vga_tryget +EXPORT_SYMBOL vmlinux 0x4c51a316 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0x4c8642ce copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x4c9e1989 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4ca985c3 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x4cb1c5c1 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x4cb85093 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x4ccc1e8d __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x4cd47545 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4d267e78 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0x4d3211cf vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x4d713160 phy_suspend +EXPORT_SYMBOL vmlinux 0x4d76e18d ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d8fb0b4 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da26e0f pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0x4db20ea1 of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x4dc54048 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x4dda86e9 is_nd_btt +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4de7c7f3 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x4ded4417 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e061ea3 qdisc_list_del +EXPORT_SYMBOL vmlinux 0x4e132532 kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e4ffac9 vfs_llseek +EXPORT_SYMBOL vmlinux 0x4e676c4c param_ops_charp +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6c081f __quota_error +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4ea6b560 ll_rw_block +EXPORT_SYMBOL vmlinux 0x4ebac0a5 inet_sendpage +EXPORT_SYMBOL vmlinux 0x4ebc338f netif_rx +EXPORT_SYMBOL vmlinux 0x4ebf0f27 mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x4ed03d92 sock_kmalloc +EXPORT_SYMBOL vmlinux 0x4ed8b8dc tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x4eee9067 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x4eeed6e4 __napi_schedule +EXPORT_SYMBOL vmlinux 0x4f165b92 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f212f7f genphy_config_aneg +EXPORT_SYMBOL vmlinux 0x4f21f14b unregister_binfmt +EXPORT_SYMBOL vmlinux 0x4f2250ba rtc_tm_to_time64 +EXPORT_SYMBOL vmlinux 0x4f369951 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f664db6 _lv1_insert_htab_entry +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f78ae01 bdget +EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve +EXPORT_SYMBOL vmlinux 0x4f8247b4 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe6cbd6 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x4fecb58b kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x4fed8311 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x4fef780a sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x501093fb inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x5028f8a6 tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0x5029740e machine_id +EXPORT_SYMBOL vmlinux 0x502e320a __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x50394e62 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x506e5ba9 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0x5094fea6 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x50a7ce9a skb_make_writable +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50b2a2e0 fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c7914d kmem_cache_size +EXPORT_SYMBOL vmlinux 0x50de4b7b dget_parent +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x51211ef6 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x512c0c58 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0x5146e892 dentry_open +EXPORT_SYMBOL vmlinux 0x514ab3d7 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x514fd660 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x51567ef5 kobject_get +EXPORT_SYMBOL vmlinux 0x516a00e8 send_sig +EXPORT_SYMBOL vmlinux 0x517a49b1 mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x51898b05 scsi_remove_host +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51a90828 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0x51add177 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0x51bb45ee sock_from_file +EXPORT_SYMBOL vmlinux 0x51bbf473 inet6_bind +EXPORT_SYMBOL vmlinux 0x51c3730f seq_puts +EXPORT_SYMBOL vmlinux 0x51dc99cf blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x51e28479 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x51f0e0ae pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x52029081 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x52215c8f sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x52241b90 get_empty_filp +EXPORT_SYMBOL vmlinux 0x5226e773 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x525b0bd8 of_match_device +EXPORT_SYMBOL vmlinux 0x526f79f0 key_link +EXPORT_SYMBOL vmlinux 0x527830ff pmac_xpram_read +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529f35bf mach_maple +EXPORT_SYMBOL vmlinux 0x52af848c param_get_ulong +EXPORT_SYMBOL vmlinux 0x52ba0183 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x52ba295c ip_getsockopt +EXPORT_SYMBOL vmlinux 0x52bc17ce pneigh_lookup +EXPORT_SYMBOL vmlinux 0x52e3fa05 _lv1_allocate_memory +EXPORT_SYMBOL vmlinux 0x52e698a9 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x52eb648c vfs_fsync +EXPORT_SYMBOL vmlinux 0x5302591f mach_pasemi +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x53271871 rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x5339f5f8 _lv1_read_virtual_uart +EXPORT_SYMBOL vmlinux 0x534ae9e4 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536ad3a4 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x5378adcd mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a46848 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x53bfe835 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x53cc9063 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0x53d41a81 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0x53e356a4 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x53ebb01f rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x53f339d1 nvm_register_target +EXPORT_SYMBOL vmlinux 0x53f642b0 posix_test_lock +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x54108c4c tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x541758d2 blk_get_queue +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x542c73a3 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0x543135f8 of_iomap +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x54547e0f param_get_byte +EXPORT_SYMBOL vmlinux 0x546bced0 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0x54791777 unload_nls +EXPORT_SYMBOL vmlinux 0x547c7a32 sock_no_connect +EXPORT_SYMBOL vmlinux 0x548751a1 setattr_copy +EXPORT_SYMBOL vmlinux 0x548dfd13 seq_pad +EXPORT_SYMBOL vmlinux 0x54a74cc6 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x54a874e6 param_ops_invbool +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ae0410 replace_mount_options +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54d38deb swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x5501ee47 d_alloc_name +EXPORT_SYMBOL vmlinux 0x55070418 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x5507921f frontswap_register_ops +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551d6486 neigh_for_each +EXPORT_SYMBOL vmlinux 0x55346c3b pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +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 0x557b3dd8 _lv1_gpu_close +EXPORT_SYMBOL vmlinux 0x5582611e fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x55cae55e dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x55d180f2 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55e46885 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x55fd6765 padata_alloc +EXPORT_SYMBOL vmlinux 0x56171736 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0x562104f6 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x562ec67c cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x565b99f4 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x566a2a6b lookup_one_len +EXPORT_SYMBOL vmlinux 0x56748deb pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x568804ee _lv1_destruct_event_receive_port +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x5690d062 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x56a042af netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x56afc001 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x56b2ae40 md_write_start +EXPORT_SYMBOL vmlinux 0x56bcbdc1 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x56bff83d blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c32ffe devm_free_irq +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56ddd997 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x5705e2e4 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x570f217f pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x57190c2b netdev_features_change +EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr +EXPORT_SYMBOL vmlinux 0x572ae872 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x572ddd85 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5737f978 mutex_lock +EXPORT_SYMBOL vmlinux 0x57443db7 tty_register_device +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x574da385 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x575014e9 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x577f502b unregister_shrinker +EXPORT_SYMBOL vmlinux 0x57875aaf ibmebus_unregister_driver +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579879d3 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x579bab50 _lv1_gpu_memory_free +EXPORT_SYMBOL vmlinux 0x57d3d692 napi_complete_done +EXPORT_SYMBOL vmlinux 0x57de88e5 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x57f8c9c6 sock_kfree_s +EXPORT_SYMBOL vmlinux 0x580a09a7 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x5812f03c pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x58296348 vfs_path_lookup +EXPORT_SYMBOL vmlinux 0x5838288c skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x583b6732 proto_unregister +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x587dee73 security_path_mknod +EXPORT_SYMBOL vmlinux 0x5883b2eb __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x588ae00c blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0x5892788c of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0x58994980 ata_print_version +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58bc6729 max8998_bulk_read +EXPORT_SYMBOL vmlinux 0x58bdcba8 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x5900853e param_set_ulong +EXPORT_SYMBOL vmlinux 0x591534c3 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x59440fab jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5954558f dqget +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x5995dbe3 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59d64e15 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x59dea73e blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x59e4a136 pci_pme_active +EXPORT_SYMBOL vmlinux 0x59ef1f83 blk_mq_map_queue +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 0x5a20330c param_set_invbool +EXPORT_SYMBOL vmlinux 0x5a2cda3e trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0x5a68ed67 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5aaa1ffd iget_failed +EXPORT_SYMBOL vmlinux 0x5abf572a poll_initwait +EXPORT_SYMBOL vmlinux 0x5ad2f91a netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x5af97b57 scsi_add_device +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b11377d of_platform_device_create +EXPORT_SYMBOL vmlinux 0x5b14c6a6 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x5b257a57 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x5b3232e0 submit_bh +EXPORT_SYMBOL vmlinux 0x5b353797 icmpv6_send +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b4b8081 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b61642a generic_removexattr +EXPORT_SYMBOL vmlinux 0x5b70c61c mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x5b756ac5 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5baa0270 pcibus_to_node +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc4252d inode_needs_sync +EXPORT_SYMBOL vmlinux 0x5bdc7f46 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x5be51bda bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x5bf0aabe dquot_quota_off +EXPORT_SYMBOL vmlinux 0x5c1d3be3 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x5c21cfca netlink_net_capable +EXPORT_SYMBOL vmlinux 0x5c3537a8 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c38b954 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x5c68bb78 unlock_page +EXPORT_SYMBOL vmlinux 0x5c6a4bcf generic_fillattr +EXPORT_SYMBOL vmlinux 0x5c8e683c mmc_remove_host +EXPORT_SYMBOL vmlinux 0x5cb146e5 tcp_proc_register +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cc668ab input_get_keycode +EXPORT_SYMBOL vmlinux 0x5ccc9045 _lv1_close_device +EXPORT_SYMBOL vmlinux 0x5cd4ba86 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x5cd694bf ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d2a1de4 vme_irq_free +EXPORT_SYMBOL vmlinux 0x5d437eb3 genphy_resume +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d7586d7 audit_log +EXPORT_SYMBOL vmlinux 0x5da52a00 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x5db1e082 simple_rename +EXPORT_SYMBOL vmlinux 0x5db5e899 padata_free +EXPORT_SYMBOL vmlinux 0x5dbb0e82 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x5dea8e75 d_find_any_alias +EXPORT_SYMBOL vmlinux 0x5deec0e9 nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0x5df709c1 tty_port_open +EXPORT_SYMBOL vmlinux 0x5e1fd845 fb_get_mode +EXPORT_SYMBOL vmlinux 0x5e31f495 tcp_seq_open +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e494722 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x5e4de56b scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5eaf5c70 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5ed203b2 nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x5ed375c7 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x5ed7b46a set_user_nice +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ee444b0 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0acf86 serio_open +EXPORT_SYMBOL vmlinux 0x5f0fd5b7 __seq_open_private +EXPORT_SYMBOL vmlinux 0x5f2165b2 of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x5f2fe155 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x5f53012b devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x5f5773ed load_nls_default +EXPORT_SYMBOL vmlinux 0x5f5f091a iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x5f661452 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x5f7cd3f3 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x5f80d7b9 udp_add_offload +EXPORT_SYMBOL vmlinux 0x5f812654 neigh_xmit +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5fb30f3f of_node_get +EXPORT_SYMBOL vmlinux 0x5fcfe48a pnv_pci_get_gpu_dev +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe7db13 mmc_register_driver +EXPORT_SYMBOL vmlinux 0x5feb500a agp_create_memory +EXPORT_SYMBOL vmlinux 0x5ff38cc8 tcp_get_cookie_sock +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 0x601f68c4 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x603241bd key_task_permission +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x6059c915 delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x60609f95 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x6062f401 padata_stop +EXPORT_SYMBOL vmlinux 0x6067d43b jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x607f49e3 vfs_write +EXPORT_SYMBOL vmlinux 0x608caf7e generic_write_checks +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x6099dfef ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60b31b50 devm_ioremap +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60e89254 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x60ec516d devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x60f17870 seq_putc +EXPORT_SYMBOL vmlinux 0x61229b10 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x61574734 drop_nlink +EXPORT_SYMBOL vmlinux 0x61588f88 srp_rport_put +EXPORT_SYMBOL vmlinux 0x61654c72 may_umount_tree +EXPORT_SYMBOL vmlinux 0x616baed9 pci_release_region +EXPORT_SYMBOL vmlinux 0x617558d2 bio_chain +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x61973264 tcp_check_req +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61a4487c _lv1_gpu_device_unmap +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61c4d754 page_put_link +EXPORT_SYMBOL vmlinux 0x61c50351 inet_ioctl +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 0x61ff1328 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x620fdff2 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0x6214448b __lock_buffer +EXPORT_SYMBOL vmlinux 0x6214aef2 cpufreq_unregister_notifier +EXPORT_SYMBOL vmlinux 0x6215ab54 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x6230bcda devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x6237f237 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x62381464 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x62456ae0 nf_log_packet +EXPORT_SYMBOL vmlinux 0x62473a7c of_device_is_compatible +EXPORT_SYMBOL vmlinux 0x6247faba __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x62538167 slhc_toss +EXPORT_SYMBOL vmlinux 0x625ebcf9 register_netdev +EXPORT_SYMBOL vmlinux 0x626d4407 dm_put_device +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x629e4e5a serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x62b8436c devm_request_resource +EXPORT_SYMBOL vmlinux 0x62be4f78 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x62cb51ea sock_rfree +EXPORT_SYMBOL vmlinux 0x62d02c4b dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0x62fc3ff1 __sock_create +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63271b19 tcp_close +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x6360d639 cpu_all_bits +EXPORT_SYMBOL vmlinux 0x636e3165 blk_run_queue +EXPORT_SYMBOL vmlinux 0x6371878a put_io_context +EXPORT_SYMBOL vmlinux 0x639f1fcc tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ac55f5 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x63b7a909 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f2936a rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x63f75920 _lv1_construct_virtual_address_space +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 0x6413a976 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x64238739 path_get +EXPORT_SYMBOL vmlinux 0x642674c1 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x642858ed of_get_next_parent +EXPORT_SYMBOL vmlinux 0x64318f69 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x64566107 unregister_netdev +EXPORT_SYMBOL vmlinux 0x6459c177 udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x64638b5c dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x646cc6ab pmu_poll +EXPORT_SYMBOL vmlinux 0x646d1161 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0x648a213f simple_lookup +EXPORT_SYMBOL vmlinux 0x648aaa51 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x6493db19 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64bb61a3 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64c198a9 neigh_destroy +EXPORT_SYMBOL vmlinux 0x64c58640 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x64ed0625 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x64fb6e9e zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x64fc1e3d udp6_set_csum +EXPORT_SYMBOL vmlinux 0x6503c4f9 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x651f71bc of_device_register +EXPORT_SYMBOL vmlinux 0x652b83b6 netpoll_print_options +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6543c155 dquot_acquire +EXPORT_SYMBOL vmlinux 0x6549938e con_is_bound +EXPORT_SYMBOL vmlinux 0x65630597 mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x658cf655 migrate_page +EXPORT_SYMBOL vmlinux 0x6596e213 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65c2b8e6 pci_get_class +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 0x65e507a1 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x6603eaaa soft_cursor +EXPORT_SYMBOL vmlinux 0x662a19b4 dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x663f4c04 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x6644945e blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x664de423 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x6699520e inode_get_bytes +EXPORT_SYMBOL vmlinux 0x669e4617 starget_for_each_device +EXPORT_SYMBOL vmlinux 0x66a015da get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x66ad1cb3 _lv1_set_lpm_general_control +EXPORT_SYMBOL vmlinux 0x66cbf14b pmac_xpram_write +EXPORT_SYMBOL vmlinux 0x66fd51a1 netdev_update_features +EXPORT_SYMBOL vmlinux 0x6712d301 of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x6724cb3d __block_write_begin +EXPORT_SYMBOL vmlinux 0x673a76fc mark_info_dirty +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x67458eb0 netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x6772a2ba mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x677acb7c inet_frags_fini +EXPORT_SYMBOL vmlinux 0x677af69d bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67d6ad9d pci_read_vpd +EXPORT_SYMBOL vmlinux 0x67f033f5 i2c_del_driver +EXPORT_SYMBOL vmlinux 0x67f3b5db udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x67fd6dfc inet_del_protocol +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x681bfaff pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x684aa3b5 twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x684ce975 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0x6859ad65 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x686b0b2d sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0x68703a31 ppc_md +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x6886c1e2 vfs_link +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a2766e __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68cb9723 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x68cc2ae7 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x68cd77e9 pci_enable_msix +EXPORT_SYMBOL vmlinux 0x68d6b1f0 up_write +EXPORT_SYMBOL vmlinux 0x68daf25c module_layout +EXPORT_SYMBOL vmlinux 0x68e1ef51 smu_present +EXPORT_SYMBOL vmlinux 0x68e6e544 register_gifconf +EXPORT_SYMBOL vmlinux 0x69059b17 kernel_bind +EXPORT_SYMBOL vmlinux 0x690a2ad9 unlock_buffer +EXPORT_SYMBOL vmlinux 0x690b7369 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x69392b0e add_disk +EXPORT_SYMBOL vmlinux 0x69500b57 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x698d6c7c kernel_read +EXPORT_SYMBOL vmlinux 0x69980540 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x699ccbf8 _lv1_deconfigure_virtual_uart_irq +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69d92f0c mpage_writepage +EXPORT_SYMBOL vmlinux 0x69e10131 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x69f9a6b9 dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a36d7de flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x6a3a85c0 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0x6a526d15 mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a6afb1f mmc_power_save_host +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a774c1d genphy_setup_forced +EXPORT_SYMBOL vmlinux 0x6a83333b fget +EXPORT_SYMBOL vmlinux 0x6a94ee70 powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0x6a98bcb2 inet_accept +EXPORT_SYMBOL vmlinux 0x6a996a77 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x6ab0f22e tcp_release_cb +EXPORT_SYMBOL vmlinux 0x6ab680d3 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6af38182 i2c_master_send +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b23a455 md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x6b259693 file_remove_privs +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b346531 __inode_permission +EXPORT_SYMBOL vmlinux 0x6b358cab _lv1_read_repository_node +EXPORT_SYMBOL vmlinux 0x6b387694 _lv1_end_of_interrupt_ext +EXPORT_SYMBOL vmlinux 0x6b3e5250 km_state_expired +EXPORT_SYMBOL vmlinux 0x6b52f6ac dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x6b589a6e _lv1_net_add_multicast_address +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 0x6b80e69e blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x6b893098 ps3_sb_event_receive_port_destroy +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bef96ad serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c1530c1 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x6c168dc0 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x6c188963 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x6c2139e6 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x6c2c59ae crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x6c445b95 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x6c49c533 dcb_setapp +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 0x6c63ec89 eth_mac_addr +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c74bd1d ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x6c83657b noop_fsync +EXPORT_SYMBOL vmlinux 0x6c9a4aa8 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x6c9bb06a __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x6ca40f7a dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x6ca9e924 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x6cb37127 flex_array_clear +EXPORT_SYMBOL vmlinux 0x6cd3fa55 simple_rmdir +EXPORT_SYMBOL vmlinux 0x6cdffa84 __mutex_init +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d119b9c dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x6d1743eb _lv1_get_total_execution_time +EXPORT_SYMBOL vmlinux 0x6d1b26e6 inet_frag_find +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d4a9475 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0x6d69aaad blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x6d6a3db9 __serio_register_port +EXPORT_SYMBOL vmlinux 0x6d7013ca neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x6d740223 flex_array_put +EXPORT_SYMBOL vmlinux 0x6d775ebe uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x6d959421 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6dd2d0ff tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e0a60d1 alloc_file +EXPORT_SYMBOL vmlinux 0x6e0e0112 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0x6e153176 kobject_del +EXPORT_SYMBOL vmlinux 0x6e2249d5 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb56171 bdi_destroy +EXPORT_SYMBOL vmlinux 0x6ed19872 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0x6ee09c4b blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x6eee3be0 phy_device_free +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f35e1a8 key_alloc +EXPORT_SYMBOL vmlinux 0x6f3a19e1 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x6f4ae65d tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x6f601e93 mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x6f646a06 forget_cached_acl +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f8fb8ef of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0x6fa331ed _lv1_construct_io_irq_outlet +EXPORT_SYMBOL vmlinux 0x6fa89ae3 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc3383a skb_put +EXPORT_SYMBOL vmlinux 0x6fcaaac5 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fdb3a77 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x6fe4fc32 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0x70134290 loop_backing_file +EXPORT_SYMBOL vmlinux 0x701699b2 _lv1_set_spe_privilege_state_area_1_register +EXPORT_SYMBOL vmlinux 0x7026063c xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x70773d0a dev_uc_init +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70925df3 cdrom_release +EXPORT_SYMBOL vmlinux 0x7093c3c1 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x70a0c3de invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x70bb63c1 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0x70bbfef7 tcp_make_synack +EXPORT_SYMBOL vmlinux 0x70c69317 update_devfreq +EXPORT_SYMBOL vmlinux 0x70cb5263 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x70e4d807 dev_get_flags +EXPORT_SYMBOL vmlinux 0x70e5121d pcim_iomap +EXPORT_SYMBOL vmlinux 0x70ee0bf4 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x70f86c70 pmu_queue_request +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7112a8dc skb_store_bits +EXPORT_SYMBOL vmlinux 0x711301a2 textsearch_destroy +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7133b2b2 cdrom_open +EXPORT_SYMBOL vmlinux 0x713b7cd3 inet_csk_accept +EXPORT_SYMBOL vmlinux 0x7145febf pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b243c7 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x71c8b838 set_blocksize +EXPORT_SYMBOL vmlinux 0x7224bc17 __genl_register_family +EXPORT_SYMBOL vmlinux 0x723697d5 submit_bio +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x7270c945 agp_bind_memory +EXPORT_SYMBOL vmlinux 0x72963859 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x729a150b __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x729b4a83 _lv1_get_spe_all_interrupt_statuses +EXPORT_SYMBOL vmlinux 0x72a563d6 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x72a5f6c8 paca +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b33b05 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72bec6a6 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72cbf899 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x72d03258 filp_close +EXPORT_SYMBOL vmlinux 0x72d5560d of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x73076328 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x73096c02 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x730bcff5 find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x7327a8a7 devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x7339a6f0 dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x7361eaba sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x736e6f4f bdi_register +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x739f34bc kobject_set_name +EXPORT_SYMBOL vmlinux 0x73d43163 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x73d4721a kill_litter_super +EXPORT_SYMBOL vmlinux 0x73de0e97 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x73de230b generic_writepages +EXPORT_SYMBOL vmlinux 0x73e6c955 override_creds +EXPORT_SYMBOL vmlinux 0x73e76e31 inode_init_owner +EXPORT_SYMBOL vmlinux 0x73fe7c94 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x74405ef2 pci_request_regions +EXPORT_SYMBOL vmlinux 0x7446f028 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x7449cd23 registered_fb +EXPORT_SYMBOL vmlinux 0x74626dbd srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7483dd8c phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x749b5941 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0x74b05530 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x74b46a8a insert_inode_locked +EXPORT_SYMBOL vmlinux 0x74bc7a69 tcp_prot +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74cce1d8 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x74d1ea52 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x74d405cd input_grab_device +EXPORT_SYMBOL vmlinux 0x74d4079b vme_slave_request +EXPORT_SYMBOL vmlinux 0x74db2dae param_set_bool +EXPORT_SYMBOL vmlinux 0x74e404f8 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x74e4ee9d xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74f5113e tcp_conn_request +EXPORT_SYMBOL vmlinux 0x74fe8730 sys_ctrler +EXPORT_SYMBOL vmlinux 0x7510a227 kdb_current_task +EXPORT_SYMBOL vmlinux 0x752dc149 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x755ce928 devfreq_add_governor +EXPORT_SYMBOL vmlinux 0x756313e7 set_anon_super +EXPORT_SYMBOL vmlinux 0x756c786e _lv1_connect_interrupt_event_receive_port +EXPORT_SYMBOL vmlinux 0x75754995 _lv1_storage_check_async_status +EXPORT_SYMBOL vmlinux 0x757cb097 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x7585d615 mach_ps3 +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 0x75e4f5aa pasemi_read_mac_reg +EXPORT_SYMBOL vmlinux 0x75e8ba3c inetdev_by_index +EXPORT_SYMBOL vmlinux 0x75e8ea1e simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x75ec513d qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76194d4d devm_gpio_request +EXPORT_SYMBOL vmlinux 0x761c1924 add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x761def74 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x762daab5 vm_insert_page +EXPORT_SYMBOL vmlinux 0x762f1102 mmc_request_done +EXPORT_SYMBOL vmlinux 0x7635c2ad lro_receive_skb +EXPORT_SYMBOL vmlinux 0x7645323a dquot_disable +EXPORT_SYMBOL vmlinux 0x7645af6f sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x7647b14d set_posix_acl +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x764e2224 _lv1_disconnect_irq_plug_ext +EXPORT_SYMBOL vmlinux 0x7650e5f6 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x765ff474 crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x767b43cd d_rehash +EXPORT_SYMBOL vmlinux 0x767f3d67 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x76833658 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x768d20e4 mntget +EXPORT_SYMBOL vmlinux 0x76bf4cd8 abort_creds +EXPORT_SYMBOL vmlinux 0x76bfb7c6 ppp_channel_index +EXPORT_SYMBOL vmlinux 0x76cbf1e0 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76e3b1d6 md_update_sb +EXPORT_SYMBOL vmlinux 0x77144936 _lv1_disconnect_irq_plug +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7736deb4 ps3_dma_region_free +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x77547d33 pci_bus_type +EXPORT_SYMBOL vmlinux 0x7759871c simple_release_fs +EXPORT_SYMBOL vmlinux 0x777460f1 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0x7779f17f generic_file_mmap +EXPORT_SYMBOL vmlinux 0x777b0515 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77b8d330 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77e0221b __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x77f5b5ea tcp_connect +EXPORT_SYMBOL vmlinux 0x7809a826 blk_mq_start_stopped_hw_queues +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 0x784bdd59 clear_user_page +EXPORT_SYMBOL vmlinux 0x785b8ddf inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x78749706 dev_uc_del +EXPORT_SYMBOL vmlinux 0x7878ee3f _dev_info +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 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78b24a22 d_delete +EXPORT_SYMBOL vmlinux 0x78c7229b zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x78cf7955 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x791f4ecd km_is_alive +EXPORT_SYMBOL vmlinux 0x7965309b user_path_at_empty +EXPORT_SYMBOL vmlinux 0x7967f829 padata_set_cpumasks +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 0x79863acc param_ops_bool +EXPORT_SYMBOL vmlinux 0x798f0136 netdev_alert +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79c99b7d mmc_get_card +EXPORT_SYMBOL vmlinux 0x79d48a0f of_get_property +EXPORT_SYMBOL vmlinux 0x79e0139a jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x79f359c9 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x7a09a6e2 proc_set_size +EXPORT_SYMBOL vmlinux 0x7a10c933 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a8b59d0 dquot_file_open +EXPORT_SYMBOL vmlinux 0x7a9f0d4c blk_stop_queue +EXPORT_SYMBOL vmlinux 0x7aa10672 ps3_dma_region_create +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aa9e259 _lv1_map_htab +EXPORT_SYMBOL vmlinux 0x7ab57607 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac3f728 put_cmsg +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7b0ca239 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b169799 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b3548d2 iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x7b46d293 bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x7b7c96fc xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x7b8525dc padata_add_cpu +EXPORT_SYMBOL vmlinux 0x7b86aca3 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x7ba8919b serio_close +EXPORT_SYMBOL vmlinux 0x7baca101 single_release +EXPORT_SYMBOL vmlinux 0x7bb39bce bdevname +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bc69bbc nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x7bc8f8aa dev_get_iflink +EXPORT_SYMBOL vmlinux 0x7bdcc3f3 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0x7bf2c8d2 search_binary_handler +EXPORT_SYMBOL vmlinux 0x7bfd44a1 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c259de3 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0x7c27156c rtas_online_cpus_mask +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 0x7c9291d1 csum_partial_copy_generic +EXPORT_SYMBOL vmlinux 0x7c986b66 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca38a54 dqput +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cb1b8d2 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7cf9f760 padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x7d0cad07 nobh_writepage +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d154567 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x7d39d38c genphy_soft_reset +EXPORT_SYMBOL vmlinux 0x7d49f100 dev_crit +EXPORT_SYMBOL vmlinux 0x7d5b055b of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d756107 pci_enable_device +EXPORT_SYMBOL vmlinux 0x7d7e5990 dcb_getapp +EXPORT_SYMBOL vmlinux 0x7d8981c0 pnv_pci_get_npu_dev +EXPORT_SYMBOL vmlinux 0x7d8d9297 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x7d9ccc71 sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x7da0cfa5 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e250e19 proc_remove +EXPORT_SYMBOL vmlinux 0x7e2c0522 kern_path_create +EXPORT_SYMBOL vmlinux 0x7e31d4a7 unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x7e4287a9 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x7e434546 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7e87227e slhc_compress +EXPORT_SYMBOL vmlinux 0x7e99e117 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x7ea7bebe jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x7eada0c3 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee92a29 pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f059067 km_new_mapping +EXPORT_SYMBOL vmlinux 0x7f1bd1d8 bd_set_size +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f2a74bc __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x7f3155ec kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x7f3ee457 backlight_force_update +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f7085f9 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x7f9c5dfb of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x7fb94e20 console_start +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fd18e9e agp_backend_acquire +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 0x801089ec call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0x8032a0e1 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x8045eb4e vfs_mkdir +EXPORT_SYMBOL vmlinux 0x8051633b blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x80816908 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x80872fd0 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x809a741c md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0x80a53b0c pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x80aa1ef6 uart_add_one_port +EXPORT_SYMBOL vmlinux 0x80bf320f dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80f92624 kernel_listen +EXPORT_SYMBOL vmlinux 0x812ab434 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x81368805 elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x8166f713 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0x81900dfe nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81b0c3d5 touch_buffer +EXPORT_SYMBOL vmlinux 0x81be7bf2 from_kuid +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81cd1af7 touch_atime +EXPORT_SYMBOL vmlinux 0x81d8a91d blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x81d9f7f2 _lv1_put_iopte +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81de833a block_read_full_page +EXPORT_SYMBOL vmlinux 0x81ee9c50 sock_i_ino +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x82396014 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x823f362b get_phy_device +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x82592fc7 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x826e6938 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82704544 of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82b68922 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x82cc033d phy_init_hw +EXPORT_SYMBOL vmlinux 0x82dc8f46 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x830e11b0 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x832d7e2d tty_register_driver +EXPORT_SYMBOL vmlinux 0x833628da revalidate_disk +EXPORT_SYMBOL vmlinux 0x833de418 mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x8340ad78 kobject_add +EXPORT_SYMBOL vmlinux 0x838910af security_path_symlink +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x839e2e60 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83e153a2 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0x840fd06f seq_escape +EXPORT_SYMBOL vmlinux 0x84337dcb vfs_iter_write +EXPORT_SYMBOL vmlinux 0x843a507a ___pskb_trim +EXPORT_SYMBOL vmlinux 0x844596e9 phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x844bbaaa netdev_info +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x844eb092 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0x845124e0 ps3_mm_phys_to_lpar +EXPORT_SYMBOL vmlinux 0x8455154f netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0x8456498d register_key_type +EXPORT_SYMBOL vmlinux 0x847f5054 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x8497e306 rfkill_alloc +EXPORT_SYMBOL vmlinux 0x849fe807 csum_and_copy_from_user +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84dd129c nf_register_hook +EXPORT_SYMBOL vmlinux 0x84e6f308 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85057d1b pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x8511f68c from_kprojid +EXPORT_SYMBOL vmlinux 0x852bc3f5 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x8539c0d9 blk_finish_request +EXPORT_SYMBOL vmlinux 0x854d2bcc input_set_keycode +EXPORT_SYMBOL vmlinux 0x8556dcad netdev_crit +EXPORT_SYMBOL vmlinux 0x8557f345 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x85a982f9 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x85ae6052 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85d267e9 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x85dd31d1 phy_resume +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e595a7 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x85e99dcb simple_transaction_read +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x85fb631b inet_sendmsg +EXPORT_SYMBOL vmlinux 0x860b994c jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x8617155e __scsi_add_device +EXPORT_SYMBOL vmlinux 0x861c1222 led_blink_set +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x866410f8 mpage_readpage +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x86825cce genphy_read_status +EXPORT_SYMBOL vmlinux 0x8689b16d nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868c1765 set_bh_page +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a385d5 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x86acdc74 param_get_short +EXPORT_SYMBOL vmlinux 0x86b3d24e dm_put_table_device +EXPORT_SYMBOL vmlinux 0x86b48111 init_net +EXPORT_SYMBOL vmlinux 0x86d54ccd inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8703e88a of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x8706bafe dmam_pool_create +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x871c9024 unlock_new_inode +EXPORT_SYMBOL vmlinux 0x872a2cc8 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x873207d0 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x87353bb7 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x873e5316 giveup_altivec +EXPORT_SYMBOL vmlinux 0x87411121 serio_unregister_port +EXPORT_SYMBOL vmlinux 0x8776f10f pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x879caf68 __page_symlink +EXPORT_SYMBOL vmlinux 0x87abb6b2 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x87abd037 down_read_trylock +EXPORT_SYMBOL vmlinux 0x87ad599e phy_device_register +EXPORT_SYMBOL vmlinux 0x87d9492b ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x87da0247 key_revoke +EXPORT_SYMBOL vmlinux 0x880070eb padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x880da1b1 _lv1_get_logical_partition_id +EXPORT_SYMBOL vmlinux 0x8818d902 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x882bb885 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x8860113c fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x8863ed69 dma_set_mask +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88b1c443 agp_free_memory +EXPORT_SYMBOL vmlinux 0x88c34fb8 tty_do_resize +EXPORT_SYMBOL vmlinux 0x88cfadc5 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0x88de1806 mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x88e5e910 init_task +EXPORT_SYMBOL vmlinux 0x89098e34 genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x891f1ca8 make_kprojid +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x8934735f mntput +EXPORT_SYMBOL vmlinux 0x893c07ba netdev_change_features +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x895e7ca3 framebuffer_release +EXPORT_SYMBOL vmlinux 0x89675f33 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x898bf3af of_get_mac_address +EXPORT_SYMBOL vmlinux 0x89909921 km_policy_notify +EXPORT_SYMBOL vmlinux 0x89abd20a icmp_send +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c5a8be smu_get_sdb_partition +EXPORT_SYMBOL vmlinux 0x89c60237 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0x89c6c05a tcp_req_err +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x8a1648e3 blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x8a1a9bab netif_device_detach +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a1de81e blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5e37fa xfrm_input_resume +EXPORT_SYMBOL vmlinux 0x8a690acb iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a703ccb nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7e3f5a of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x8a7fe9ac kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x8a8b43c1 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9cef2a _lv1_allocate_device_dma_region +EXPORT_SYMBOL vmlinux 0x8aaad368 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x8aaf5ee8 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x8abbfac4 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x8acc0db0 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x8ad3e3f8 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0x8aeffb1c mmc_can_discard +EXPORT_SYMBOL vmlinux 0x8af12e94 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8b15a7f7 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x8b2dc6ed finish_open +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b56d390 sync_inode +EXPORT_SYMBOL vmlinux 0x8b5a7e55 request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b74f7c4 macio_dev_put +EXPORT_SYMBOL vmlinux 0x8b7cc60c sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b91e406 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x8bb1464c of_match_node +EXPORT_SYMBOL vmlinux 0x8bcf2eef make_kuid +EXPORT_SYMBOL vmlinux 0x8bddf9b0 writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x8be83d1c blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x8bee5d28 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c0bb8eb vme_irq_handler +EXPORT_SYMBOL vmlinux 0x8c0c66ac locks_free_lock +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c322e5a mapping_tagged +EXPORT_SYMBOL vmlinux 0x8c3cc070 param_set_bint +EXPORT_SYMBOL vmlinux 0x8c4f1979 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x8c59513f nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x8c5a91c8 param_ops_string +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c6a09e2 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x8c6b743e ip6_frag_match +EXPORT_SYMBOL vmlinux 0x8c7451c7 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x8c8d79c0 _lv1_gpu_context_iomap +EXPORT_SYMBOL vmlinux 0x8ca0ab28 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x8cba9d4a irq_to_desc +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cdd4b78 skb_checksum +EXPORT_SYMBOL vmlinux 0x8cf5ffa2 agp_copy_info +EXPORT_SYMBOL vmlinux 0x8cf75f3d __serio_register_driver +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d04c699 invalidate_bdev +EXPORT_SYMBOL vmlinux 0x8d133113 devm_iounmap +EXPORT_SYMBOL vmlinux 0x8d16f075 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x8d1881a0 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d67d204 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x8d6d474d dev_mc_sync +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d937ee2 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8db01b10 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x8dd23aa9 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8de2fbc5 _lv1_get_virtual_uart_param +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8e00bec8 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0x8e1f4ea8 setup_arg_pages +EXPORT_SYMBOL vmlinux 0x8e214ea5 seq_open_private +EXPORT_SYMBOL vmlinux 0x8e2e8401 __skb_checksum +EXPORT_SYMBOL vmlinux 0x8e339d00 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x8e3bf0b6 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e77a4b1 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x8e7f817f rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x8e98a26b inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x8e9ade29 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x8ea6108d agp_unbind_memory +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ecc466e tso_build_hdr +EXPORT_SYMBOL vmlinux 0x8edd34d4 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x8ee2992f udplite_prot +EXPORT_SYMBOL vmlinux 0x8eea1bc9 smu_poll +EXPORT_SYMBOL vmlinux 0x8f124cd4 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0x8f1d33eb ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x8f237c6f vme_register_driver +EXPORT_SYMBOL vmlinux 0x8f3fedda inode_init_always +EXPORT_SYMBOL vmlinux 0x8f48d8af kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0x8f4986d7 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x8f6a6242 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x8f71486e vme_slot_num +EXPORT_SYMBOL vmlinux 0x8f798c01 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fe2d4be udp_del_offload +EXPORT_SYMBOL vmlinux 0x90034980 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x900e19dd alloc_fddidev +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x9024c8cb ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x9067c228 iget5_locked +EXPORT_SYMBOL vmlinux 0x9078be53 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x9084d814 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x908a8663 cfb_copyarea +EXPORT_SYMBOL vmlinux 0x9093eefb tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x90a3a760 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x90cc3380 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0x90d2ee5b set_cached_acl +EXPORT_SYMBOL vmlinux 0x90e6ea30 security_file_permission +EXPORT_SYMBOL vmlinux 0x91190fab twl6040_power +EXPORT_SYMBOL vmlinux 0x91201cef _lv1_enable_logical_spe +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x913f0ad5 phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x915d2fcf fget_raw +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 0x91783d65 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91a5d9d3 km_query +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91c4feca _lv1_unmap_htab +EXPORT_SYMBOL vmlinux 0x91c6c38b current_in_userns +EXPORT_SYMBOL vmlinux 0x91dc7425 scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x91e284a4 vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x91f6d455 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91feb7b8 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x920601e3 free_netdev +EXPORT_SYMBOL vmlinux 0x921210a5 i2c_release_client +EXPORT_SYMBOL vmlinux 0x92303457 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0x923075c4 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0x92390a49 console_stop +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9271bb16 agp_enable +EXPORT_SYMBOL vmlinux 0x9285054d iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x929547b2 genlmsg_put +EXPORT_SYMBOL vmlinux 0x92a8a4e4 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92be8088 kill_bdev +EXPORT_SYMBOL vmlinux 0x92dbf388 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0x92e8cb0f dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x92f83979 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x92fb3bde bioset_create +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x930433e6 set_create_files_as +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x931adc05 scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x9331b484 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x93507f1c _lv1_gpu_memory_allocate +EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x93827835 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x93830c30 __register_nls +EXPORT_SYMBOL vmlinux 0x938dbfc0 kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b643f6 pskb_expand_head +EXPORT_SYMBOL vmlinux 0x93b74087 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x93bc1bce fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x93d4628d copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x93da2538 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x93f2f731 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x940ad5fb simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x941fea6e simple_transaction_get +EXPORT_SYMBOL vmlinux 0x943dc80f csum_and_copy_to_user +EXPORT_SYMBOL vmlinux 0x9457493e invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x945f9e18 nvm_register +EXPORT_SYMBOL vmlinux 0x947c3e9a sk_stop_timer +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94f6fb49 dquot_commit_info +EXPORT_SYMBOL vmlinux 0x94f70419 inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x95147ae9 pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0x9515e25d udp_prot +EXPORT_SYMBOL vmlinux 0x951a9218 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x951c2246 tcf_register_action +EXPORT_SYMBOL vmlinux 0x951d33a3 textsearch_register +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x952e9965 component_match_add +EXPORT_SYMBOL vmlinux 0x9530439c fb_blank +EXPORT_SYMBOL vmlinux 0x953d378f generic_make_request +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95479486 padata_start +EXPORT_SYMBOL vmlinux 0x9548f602 vio_register_device_node +EXPORT_SYMBOL vmlinux 0x955c9a86 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x9562744a jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x9564704e ip_setsockopt +EXPORT_SYMBOL vmlinux 0x957b1b8d xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x957dda84 genl_unregister_family +EXPORT_SYMBOL vmlinux 0x9583a41a nf_log_trace +EXPORT_SYMBOL vmlinux 0x9587eaa6 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x95a11267 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x95c3d83e ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x960fc754 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x962bdbdf mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x9641838c security_path_chmod +EXPORT_SYMBOL vmlinux 0x9648155b skb_clone +EXPORT_SYMBOL vmlinux 0x9660f7b1 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0x96682a44 mount_nodev +EXPORT_SYMBOL vmlinux 0x9670854d vlan_vid_add +EXPORT_SYMBOL vmlinux 0x96811382 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x968e8fbc user_revoke +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96a046f1 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96b60cc3 tcp_filter +EXPORT_SYMBOL vmlinux 0x96c1af01 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96f9693c kill_block_super +EXPORT_SYMBOL vmlinux 0x96f9a08e in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x9702c6d2 init_buffer +EXPORT_SYMBOL vmlinux 0x970cf3c9 ilookup +EXPORT_SYMBOL vmlinux 0x970de133 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x9721fc99 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x972bea16 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x976cd2ea blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x976e014f _lv1_map_device_mmio_region +EXPORT_SYMBOL vmlinux 0x9771cc9a dev_printk_emit +EXPORT_SYMBOL vmlinux 0x97811242 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x9781942a neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x97999817 rfkill_set_hw_state +EXPORT_SYMBOL vmlinux 0x979e59f0 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x97a57333 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x97afba7b proc_douintvec +EXPORT_SYMBOL vmlinux 0x97b269e5 vme_bus_num +EXPORT_SYMBOL vmlinux 0x97b811cc __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0x97ba1af0 tcp_hashinfo +EXPORT_SYMBOL vmlinux 0x97c15cb3 scsi_device_put +EXPORT_SYMBOL vmlinux 0x97e90cfc set_device_ro +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x98177648 _lv1_set_lpm_interval +EXPORT_SYMBOL vmlinux 0x9821221f mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x98347e15 blk_get_request +EXPORT_SYMBOL vmlinux 0x98410f38 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x9841b9ba scsi_unregister +EXPORT_SYMBOL vmlinux 0x98505db1 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x986d6b96 agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x986f4b9e bio_integrity_trim +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x9899533b blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0x989d0f86 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98dc6dbf jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x98ea221e ppp_register_channel +EXPORT_SYMBOL vmlinux 0x98eb7229 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x98f338e4 get_task_io_context +EXPORT_SYMBOL vmlinux 0x98f4c950 import_iovec +EXPORT_SYMBOL vmlinux 0x98fb77e6 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x99140c09 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x992096de simple_unlink +EXPORT_SYMBOL vmlinux 0x9923b86e shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x9929ee6c security_d_instantiate +EXPORT_SYMBOL vmlinux 0x9931483b scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99537751 macio_unregister_driver +EXPORT_SYMBOL vmlinux 0x995754d1 __i2c_transfer +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x998d2120 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a025ea pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99b9fe86 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x99c24cfe _lv1_free_device_dma_region +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d37146 simple_fill_super +EXPORT_SYMBOL vmlinux 0x99d382d7 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x9a0827f2 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a1ffb92 _lv1_clear_spe_interrupt_status +EXPORT_SYMBOL vmlinux 0x9a5aabac pci_restore_state +EXPORT_SYMBOL vmlinux 0x9a6c2531 pasemi_dma_init +EXPORT_SYMBOL vmlinux 0x9a8c85d6 kthread_bind +EXPORT_SYMBOL vmlinux 0x9aabae8a write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x9adf8769 devm_release_resource +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aecbb66 mmc_can_reset +EXPORT_SYMBOL vmlinux 0x9b027798 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x9b1039f3 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x9b1957f2 agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x9b2a9d53 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x9b335fde netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b35b98e phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x9b8253c4 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x9b879fab blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0x9b89e838 seq_release_private +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbfe827 blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9bdeccb6 input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bebf445 mdio_bus_type +EXPORT_SYMBOL vmlinux 0x9c016d9e jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0x9c1af2b7 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c5391c7 __check_sticky +EXPORT_SYMBOL vmlinux 0x9c7eba37 scsi_dma_map +EXPORT_SYMBOL vmlinux 0x9c820eb0 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x9c8ede29 security_path_rename +EXPORT_SYMBOL vmlinux 0x9c9b0ea6 nobh_write_end +EXPORT_SYMBOL vmlinux 0x9c9f7683 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0x9ca78389 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cce7cc6 keyring_clear +EXPORT_SYMBOL vmlinux 0x9cdd42c1 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d0f44b6 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x9d146825 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d409cf8 input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0x9d67a19a pagecache_get_page +EXPORT_SYMBOL vmlinux 0x9d6a54c2 flex_array_get_ptr +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 0x9dc2a0a1 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0x9dd2f4d2 path_put +EXPORT_SYMBOL vmlinux 0x9de5557c phy_connect_direct +EXPORT_SYMBOL vmlinux 0x9df27463 inc_nlink +EXPORT_SYMBOL vmlinux 0x9e0882bb param_ops_ulong +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e1e50e2 srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0x9e26ed06 proc_mkdir +EXPORT_SYMBOL vmlinux 0x9e2d62c0 srp_rport_get +EXPORT_SYMBOL vmlinux 0x9e2ec9b9 dev_addr_del +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e35502d blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x9e3e34ab devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x9e431ee4 scsi_register +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e5266e0 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e735070 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x9e761acd max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e7bdc39 inet_shutdown +EXPORT_SYMBOL vmlinux 0x9e93f0c9 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9c20e7 simple_follow_link +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ea48502 scmd_printk +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9ec766ef d_instantiate +EXPORT_SYMBOL vmlinux 0x9ed8f51b scsi_target_resume +EXPORT_SYMBOL vmlinux 0x9ee0c48f dquot_get_state +EXPORT_SYMBOL vmlinux 0x9ee78669 _lv1_write_virtual_uart +EXPORT_SYMBOL vmlinux 0x9f0351ac devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x9f1331c0 wake_up_process +EXPORT_SYMBOL vmlinux 0x9f1bf7ab tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x9f1d7303 __pci_register_driver +EXPORT_SYMBOL vmlinux 0x9f240127 kill_anon_super +EXPORT_SYMBOL vmlinux 0x9f2d499a handle_edge_irq +EXPORT_SYMBOL vmlinux 0x9f2ffd44 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x9f3ddbd0 bdput +EXPORT_SYMBOL vmlinux 0x9f413c8f sg_miter_start +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f99e905 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0x9fa46e64 dev_load +EXPORT_SYMBOL vmlinux 0x9fbf30c6 get_thermal_instance +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa008e8b7 nf_afinfo +EXPORT_SYMBOL vmlinux 0xa0204150 nvm_end_io +EXPORT_SYMBOL vmlinux 0xa027dc8f ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xa03750a4 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa048887e scsi_mode_sense +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa04f49da truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0xa04fba3f blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xa0537ebd filemap_write_and_wait_range +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 0xa0973838 abx500_register_ops +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0e8d5d6 single_open +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0fe4c7c jbd2_journal_check_available_features +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 0xa14c951e blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0xa16932d5 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0xa1706923 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xa1993070 follow_down_one +EXPORT_SYMBOL vmlinux 0xa1b0c577 create_empty_buffers +EXPORT_SYMBOL vmlinux 0xa1b10b21 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1bfa19b inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1e2e055 inet_add_protocol +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa1fde864 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa2127cdc pasemi_dma_alloc_flag +EXPORT_SYMBOL vmlinux 0xa2465322 _lv1_get_version_info +EXPORT_SYMBOL vmlinux 0xa24ef679 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xa27f338e con_copy_unimap +EXPORT_SYMBOL vmlinux 0xa27fb03e posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2878d21 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2b673d7 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2d8f4f5 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa2fefc22 input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3a81f74 dquot_release +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3b7888b kernel_param_lock +EXPORT_SYMBOL vmlinux 0xa3da08e0 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xa3df898e max8998_update_reg +EXPORT_SYMBOL vmlinux 0xa3e711da end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xa3fc7a99 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xa41bace8 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4543b4d kern_unmount +EXPORT_SYMBOL vmlinux 0xa459d97e fb_prepare_logo +EXPORT_SYMBOL vmlinux 0xa45d03c5 simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0xa4606cce phy_driver_register +EXPORT_SYMBOL vmlinux 0xa460946d simple_transaction_set +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa480c04b _lv1_gpu_context_attribute +EXPORT_SYMBOL vmlinux 0xa49399ca bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b312b3 d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xa4b41aaf deactivate_locked_super +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4ca9c23 macio_request_resources +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4daf30c check_disk_size_change +EXPORT_SYMBOL vmlinux 0xa53bab6e generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa56b8ab2 flex_array_free +EXPORT_SYMBOL vmlinux 0xa58be726 request_key_async +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa598f6b4 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5b8c526 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xa5baf6d9 macio_release_resource +EXPORT_SYMBOL vmlinux 0xa5bd6e4a pci_dev_put +EXPORT_SYMBOL vmlinux 0xa5db6e3d mutex_lock_killable +EXPORT_SYMBOL vmlinux 0xa5fcec45 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xa6122dfb device_get_mac_address +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa6352515 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xa6578a81 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa65d4c81 unregister_console +EXPORT_SYMBOL vmlinux 0xa66a907a netdev_notice +EXPORT_SYMBOL vmlinux 0xa66db746 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0xa6731d90 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67e72f5 current_fs_time +EXPORT_SYMBOL vmlinux 0xa6814868 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68ef2bb nd_btt_probe +EXPORT_SYMBOL vmlinux 0xa697cda8 pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0xa69c2205 find_lock_entry +EXPORT_SYMBOL vmlinux 0xa6bfb925 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0xa6ce472f cpu_rmap_update +EXPORT_SYMBOL vmlinux 0xa6e40b82 bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xa6f07f1c decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7142a7a __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xa71bbf05 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa7282c5f unregister_qdisc +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7383be3 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xa7414b4b ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xa747771f mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xa74840fd alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa74fbac8 agp_generic_enable +EXPORT_SYMBOL vmlinux 0xa7650779 scsi_execute +EXPORT_SYMBOL vmlinux 0xa785699d locks_remove_posix +EXPORT_SYMBOL vmlinux 0xa78d9eb7 slhc_uncompress +EXPORT_SYMBOL vmlinux 0xa7943d45 fb_class +EXPORT_SYMBOL vmlinux 0xa799b941 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0xa79b9b8d alloc_disk_node +EXPORT_SYMBOL vmlinux 0xa7b6ffc1 udp_ioctl +EXPORT_SYMBOL vmlinux 0xa7ba3298 should_remove_suid +EXPORT_SYMBOL vmlinux 0xa7c77449 uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xa7d15d25 __napi_complete +EXPORT_SYMBOL vmlinux 0xa7e997b4 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xa7f6b717 mmc_can_erase +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa863bfe4 unregister_framebuffer +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa877e708 pagecache_write_end +EXPORT_SYMBOL vmlinux 0xa883da23 bdi_init +EXPORT_SYMBOL vmlinux 0xa88b76dc notify_change +EXPORT_SYMBOL vmlinux 0xa88decb4 mount_bdev +EXPORT_SYMBOL vmlinux 0xa8a8f3ac sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xa8bf3615 finish_no_open +EXPORT_SYMBOL vmlinux 0xa8c22160 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xa8ced546 _lv1_net_set_interrupt_status_indicator +EXPORT_SYMBOL vmlinux 0xa8d7962b lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xa8e070c8 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xa8ec49b4 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0xa8f37f39 remove_arg_zero +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 0xa9205e34 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa9273e1a epapr_hypercall_start +EXPORT_SYMBOL vmlinux 0xa93aaa24 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0xa93ba88e proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xa93bfc5e of_translate_address +EXPORT_SYMBOL vmlinux 0xa952c377 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xa95762fb inode_set_flags +EXPORT_SYMBOL vmlinux 0xa95c4458 max8998_bulk_write +EXPORT_SYMBOL vmlinux 0xa9660e5f xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xa96d33d4 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa98f44a3 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9b8de1b dquot_destroy +EXPORT_SYMBOL vmlinux 0xa9bc67f4 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xaa0b2218 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xaa0edca8 pasemi_dma_alloc_fun +EXPORT_SYMBOL vmlinux 0xaa27d87a __dquot_free_space +EXPORT_SYMBOL vmlinux 0xaa3758b1 check_disk_change +EXPORT_SYMBOL vmlinux 0xaa394fa4 security_inode_permission +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa534ca6 d_prune_aliases +EXPORT_SYMBOL vmlinux 0xaa56052f skb_push +EXPORT_SYMBOL vmlinux 0xaa695422 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa76b4d8 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xaa7736c0 __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xaa9c25a6 empty_aops +EXPORT_SYMBOL vmlinux 0xaaa6aa43 input_set_capability +EXPORT_SYMBOL vmlinux 0xaaa978d8 fs_bio_set +EXPORT_SYMBOL vmlinux 0xaaab1fbd agp_bridge +EXPORT_SYMBOL vmlinux 0xaab6b7f8 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xaac43a2c tty_port_hangup +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad1d8e4 input_free_device +EXPORT_SYMBOL vmlinux 0xaad6d5ce write_cache_pages +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaadd1f41 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab228e31 csum_tcpudp_magic +EXPORT_SYMBOL vmlinux 0xab57a72e blk_put_queue +EXPORT_SYMBOL vmlinux 0xab5e677a fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xab66f611 _lv1_set_lpm_trigger_control +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab731219 ps2_command +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab882a68 mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0xabb8151d twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0xabbaf0d3 mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabd99995 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0xabe15548 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0xabe3a75a pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0xabffb213 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0xac0b4c54 path_is_under +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac120761 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac384f89 __frontswap_store +EXPORT_SYMBOL vmlinux 0xac4ad8ac netif_napi_add +EXPORT_SYMBOL vmlinux 0xac60aa64 seq_file_path +EXPORT_SYMBOL vmlinux 0xac69175c wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xac697c1a posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xac7de3e2 of_phy_attach +EXPORT_SYMBOL vmlinux 0xac814332 vfs_symlink +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacbd7625 dev_emerg +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xacc5bb87 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd14ab8 _lv1_construct_logical_spe +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacde1ca6 md_integrity_register +EXPORT_SYMBOL vmlinux 0xacde4bca md_error +EXPORT_SYMBOL vmlinux 0xace16395 blk_queue_split +EXPORT_SYMBOL vmlinux 0xace4d477 skb_queue_tail +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01744f kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad096f94 mmc_of_parse +EXPORT_SYMBOL vmlinux 0xad0f92f7 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad1af3ba of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0xad207cd8 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xad26ed3c mark_page_accessed +EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free +EXPORT_SYMBOL vmlinux 0xad34d813 scsi_host_put +EXPORT_SYMBOL vmlinux 0xad3761c0 iget_locked +EXPORT_SYMBOL vmlinux 0xad3a5eac ppp_dev_name +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad5277b1 vc_cons +EXPORT_SYMBOL vmlinux 0xad70d002 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xad9b7b2c neigh_seq_next +EXPORT_SYMBOL vmlinux 0xadaa1362 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xadac2d9c thaw_bdev +EXPORT_SYMBOL vmlinux 0xadaf383e noop_qdisc +EXPORT_SYMBOL vmlinux 0xadd4dee6 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xadeffe25 _lv1_gpu_context_intr +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae04236a pci_domain_nr +EXPORT_SYMBOL vmlinux 0xae2070f7 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0xae20c285 del_gendisk +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae440b4e fb_firmware_edid +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae83a9ad xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0xae85acce agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0xae93f9a6 send_sig_info +EXPORT_SYMBOL vmlinux 0xaea37938 mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0xaead3ffb mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0xaeb7910d reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0xaebaf10a submit_bio_wait +EXPORT_SYMBOL vmlinux 0xaef8ef49 skb_find_text +EXPORT_SYMBOL vmlinux 0xaefddefe sk_wait_data +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 0xaf46eb09 path_nosuid +EXPORT_SYMBOL vmlinux 0xaf5854db cont_write_begin +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafefb3bc mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0xaff9fcc2 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb004fbdf __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xb00cac01 dev_remove_pack +EXPORT_SYMBOL vmlinux 0xb00cfcf6 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xb00fd2c0 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0xb0143df1 scsi_init_io +EXPORT_SYMBOL vmlinux 0xb03b781a crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb048319a sk_mc_loop +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb084a57e block_commit_write +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0ab77b4 tty_lock +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0c74ccf migrate_page_copy +EXPORT_SYMBOL vmlinux 0xb0ce5041 sk_free +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e43b34 __invalidate_device +EXPORT_SYMBOL vmlinux 0xb102322a page_readlink +EXPORT_SYMBOL vmlinux 0xb10dc719 udp_seq_open +EXPORT_SYMBOL vmlinux 0xb1152d50 xfrm_init_state +EXPORT_SYMBOL vmlinux 0xb1225fb1 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xb1272275 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xb128664e phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13474fe writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xb13abd37 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0xb13b73f6 of_phy_connect +EXPORT_SYMBOL vmlinux 0xb147a855 dql_reset +EXPORT_SYMBOL vmlinux 0xb14b4d2e mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xb14bf316 tcp_rcv_established +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 0xb172447c inet_offloads +EXPORT_SYMBOL vmlinux 0xb17a99e1 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0xb17fce97 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0xb185c487 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xb19cf689 inet6_getname +EXPORT_SYMBOL vmlinux 0xb1b78ae8 skb_append_datato_frags +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 0xb1f6e9eb sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xb2078734 __netif_schedule +EXPORT_SYMBOL vmlinux 0xb2427be8 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xb25b89ee vio_unregister_driver +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb269a15b crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0xb2a0d6f6 get_super_thawed +EXPORT_SYMBOL vmlinux 0xb2b7f36c backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2bf8f8f fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0xb2d34e71 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xb2e74311 user_path_create +EXPORT_SYMBOL vmlinux 0xb2ec1729 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb307a828 md_check_recovery +EXPORT_SYMBOL vmlinux 0xb31661e0 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xb31d903e sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xb327a4c7 unregister_nls +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb33a15ec iterate_dir +EXPORT_SYMBOL vmlinux 0xb33f514d macio_release_resources +EXPORT_SYMBOL vmlinux 0xb35531e8 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0xb3762090 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xb3bf73df cpu_active_mask +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3dac660 bio_phys_segments +EXPORT_SYMBOL vmlinux 0xb3df338d __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xb3e15669 udp_poll +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb40c608c fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xb413c8f5 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0xb42172eb nobh_write_begin +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb436d38e agp_find_bridge +EXPORT_SYMBOL vmlinux 0xb457915a __dec_zone_page_state +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 0xb48a6837 secpath_dup +EXPORT_SYMBOL vmlinux 0xb4a3b8fd skb_vlan_push +EXPORT_SYMBOL vmlinux 0xb4a68916 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xb4d5dbf0 vga_client_register +EXPORT_SYMBOL vmlinux 0xb4d6b1ed generic_permission +EXPORT_SYMBOL vmlinux 0xb4d71ae1 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xb524edf6 ppp_input_error +EXPORT_SYMBOL vmlinux 0xb53d8f28 dst_alloc +EXPORT_SYMBOL vmlinux 0xb547cc4e brioctl_set +EXPORT_SYMBOL vmlinux 0xb5575ce1 xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xb56bfd9e smu_spinwait_cmd +EXPORT_SYMBOL vmlinux 0xb56dac27 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xb56fe21a vme_master_mmap +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57ad031 __vfs_write +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5c29e8d devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0xb5c94dff pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0xb5f6bc86 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xb600b96d devfreq_interval_update +EXPORT_SYMBOL vmlinux 0xb60c51b8 phy_device_remove +EXPORT_SYMBOL vmlinux 0xb61591ab blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xb61856d8 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb63f09a5 netif_carrier_off +EXPORT_SYMBOL vmlinux 0xb64958dc inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xb65c1d1a sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xb66768f1 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0xb66c1338 mdiobus_read +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6790251 mpage_readpages +EXPORT_SYMBOL vmlinux 0xb67a9f90 devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a73861 of_find_node_by_type +EXPORT_SYMBOL vmlinux 0xb7094a97 default_file_splice_read +EXPORT_SYMBOL vmlinux 0xb722f011 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xb72e07f3 get_acl +EXPORT_SYMBOL vmlinux 0xb73ba476 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb74a53db cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xb75c857b thaw_super +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7746349 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xb77b6ddd pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xb77d4ae6 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xb788217d hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c80594 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0xb805f1d4 sg_miter_stop +EXPORT_SYMBOL vmlinux 0xb823174e try_module_get +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb83cd984 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xb848d84c __scm_send +EXPORT_SYMBOL vmlinux 0xb858bdee pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0xb86123be _lv1_write_repository_node +EXPORT_SYMBOL vmlinux 0xb86b6af0 generic_ro_fops +EXPORT_SYMBOL vmlinux 0xb86f4560 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb8a30c7e _lv1_add_lpm_event_bookmark +EXPORT_SYMBOL vmlinux 0xb8b0ea94 wait_iff_congested +EXPORT_SYMBOL vmlinux 0xb8d2b892 serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0xb8da3280 param_get_int +EXPORT_SYMBOL vmlinux 0xb8ec4fbb sync_blockdev +EXPORT_SYMBOL vmlinux 0xb8f484f9 input_register_handle +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb91a47ec input_set_abs_params +EXPORT_SYMBOL vmlinux 0xb92f33d0 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0xb930401d blk_execute_rq +EXPORT_SYMBOL vmlinux 0xb9329c56 inet_del_offload +EXPORT_SYMBOL vmlinux 0xb936c3c0 napi_consume_skb +EXPORT_SYMBOL vmlinux 0xb93fcb58 max8998_write_reg +EXPORT_SYMBOL vmlinux 0xb9452273 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xb945d68b dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xb9496984 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xb95d3cdf __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xb95df149 mach_powernv +EXPORT_SYMBOL vmlinux 0xb98a13f7 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0xb992d0cb serio_reconnect +EXPORT_SYMBOL vmlinux 0xb99d0414 xfrm_lookup +EXPORT_SYMBOL vmlinux 0xb9c37e16 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0xb9d4ce6b netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9fed065 rtas +EXPORT_SYMBOL vmlinux 0xba108d70 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xba120504 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xba122a2c smu_done_complete +EXPORT_SYMBOL vmlinux 0xba2f0422 blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba374a8f find_vma +EXPORT_SYMBOL vmlinux 0xba37de47 sockfd_lookup +EXPORT_SYMBOL vmlinux 0xba3a36f2 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0xba3e7245 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0xba47167b phy_device_create +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba556534 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xba7acd41 km_report +EXPORT_SYMBOL vmlinux 0xba7d008c netdev_err +EXPORT_SYMBOL vmlinux 0xba945ed9 dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xbaaf08fa of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xbab16dcb pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0xbace9b80 read_dev_sector +EXPORT_SYMBOL vmlinux 0xbacf7f84 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xbad0ea74 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xbad40270 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xbad6d792 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xbae57733 unregister_cdrom +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb06bd4d dev_disable_lro +EXPORT_SYMBOL vmlinux 0xbb34134a iov_shorten +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb42757f cdev_init +EXPORT_SYMBOL vmlinux 0xbb4f4766 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb78ed85 tso_build_data +EXPORT_SYMBOL vmlinux 0xbb94bec4 elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbba49ac7 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0xbba77581 max8925_reg_write +EXPORT_SYMBOL vmlinux 0xbba7ffa8 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0xbbab98ae audit_log_task_info +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbbcb079 follow_down +EXPORT_SYMBOL vmlinux 0xbbcf5b33 cdev_alloc +EXPORT_SYMBOL vmlinux 0xbbe213df vfs_getattr +EXPORT_SYMBOL vmlinux 0xbbe7a0d1 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xbbf932af xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xbc2185f9 __d_drop +EXPORT_SYMBOL vmlinux 0xbc29c5d2 param_set_ullong +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc3ddba9 truncate_pagecache +EXPORT_SYMBOL vmlinux 0xbc401f0f unregister_filesystem +EXPORT_SYMBOL vmlinux 0xbc61c5d6 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbca07b30 read_cache_page +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbce6e251 vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbd016406 bio_copy_kern +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd3de1b2 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd474f62 redraw_screen +EXPORT_SYMBOL vmlinux 0xbd4da7ac xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xbd504d05 pci_set_power_state +EXPORT_SYMBOL vmlinux 0xbd62e731 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xbd649658 backlight_device_register +EXPORT_SYMBOL vmlinux 0xbd665e24 vme_dma_request +EXPORT_SYMBOL vmlinux 0xbd695f29 kfree_put_link +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd8cfa15 pasemi_write_mac_reg +EXPORT_SYMBOL vmlinux 0xbd8f3511 eth_header_cache +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbda48ae6 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0xbda8c813 inet_getname +EXPORT_SYMBOL vmlinux 0xbdc9ebac swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0xbde5ace8 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0xbe0edaeb serio_interrupt +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe3c0705 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xbe552565 poll_freewait +EXPORT_SYMBOL vmlinux 0xbe63a923 inet_dgram_ops +EXPORT_SYMBOL vmlinux 0xbe764936 datagram_poll +EXPORT_SYMBOL vmlinux 0xbe8937c5 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0xbe97ec29 d_move +EXPORT_SYMBOL vmlinux 0xbe9ba7bf neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xbec8b15b tty_port_close_start +EXPORT_SYMBOL vmlinux 0xbedd2d15 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0xbef1e1de udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef9799f kset_register +EXPORT_SYMBOL vmlinux 0xbf0fd58f bio_copy_data +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf89b3cf sock_create_lite +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf8c99b3 pcim_iounmap +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf973c39 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xbf9b4bce xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfb33df4 vfs_iter_read +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfbaff01 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xbffc46d2 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xc006a86c dev_alloc_name +EXPORT_SYMBOL vmlinux 0xc00b3ac4 set_disk_ro +EXPORT_SYMBOL vmlinux 0xc01b09e0 scsi_block_requests +EXPORT_SYMBOL vmlinux 0xc023288c blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xc023e570 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xc02ae710 textsearch_prepare +EXPORT_SYMBOL vmlinux 0xc02e780c __register_binfmt +EXPORT_SYMBOL vmlinux 0xc0321956 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xc0470bea pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xc048ab07 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0xc04e344b call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xc0659f95 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xc06ea44a jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc07b43b2 nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0a88ed2 security_path_link +EXPORT_SYMBOL vmlinux 0xc0a986c6 input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0xc0a9bcc4 do_splice_to +EXPORT_SYMBOL vmlinux 0xc0baa90e scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0xc0bfefe9 eth_type_trans +EXPORT_SYMBOL vmlinux 0xc0d41927 register_md_personality +EXPORT_SYMBOL vmlinux 0xc0d499fe of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xc0fbd06e ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xc10a735f scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xc1256492 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xc13511d7 cpumask_next_and +EXPORT_SYMBOL vmlinux 0xc13a10dc flex_array_alloc +EXPORT_SYMBOL vmlinux 0xc152c6e9 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc160b2d6 skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xc180a9f7 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0xc19a7b09 key_unlink +EXPORT_SYMBOL vmlinux 0xc1b1e5b1 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0xc1b1e792 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xc1be3880 input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0xc1c2fd7f dump_skip +EXPORT_SYMBOL vmlinux 0xc1cc3e1e ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e18846 pci_iomap +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc223d720 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0xc2263869 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xc232b59d sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc255edba mmc_put_card +EXPORT_SYMBOL vmlinux 0xc26c2a26 page_waitqueue +EXPORT_SYMBOL vmlinux 0xc27d168c __get_page_tail +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2cff83c neigh_connected_output +EXPORT_SYMBOL vmlinux 0xc2d833a3 file_path +EXPORT_SYMBOL vmlinux 0xc2e1e994 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc2fb9ee1 _lv1_shutdown_logical_partition +EXPORT_SYMBOL vmlinux 0xc30cae20 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc31bcac5 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xc3431d71 pci_bus_put +EXPORT_SYMBOL vmlinux 0xc35ac8ea inet6_release +EXPORT_SYMBOL vmlinux 0xc3ae6057 security_path_chown +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3de9259 release_sock +EXPORT_SYMBOL vmlinux 0xc3e45dbe blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0xc3ea42f6 fb_set_var +EXPORT_SYMBOL vmlinux 0xc3ef4ee0 blk_end_request_all +EXPORT_SYMBOL vmlinux 0xc3f79ee2 filemap_fdatawait +EXPORT_SYMBOL vmlinux 0xc40dba43 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xc41240ba to_ndd +EXPORT_SYMBOL vmlinux 0xc413a2d6 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0xc4141c74 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0xc41f1696 _lv1_configure_virtual_uart_irq +EXPORT_SYMBOL vmlinux 0xc422215f i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xc44cc0cc devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc45c3705 dst_destroy +EXPORT_SYMBOL vmlinux 0xc470a837 led_update_brightness +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc48f668c free_user_ns +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4b7d6a4 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0xc4ee727a seq_lseek +EXPORT_SYMBOL vmlinux 0xc4f44899 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xc4fc4ccd ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xc5089620 _lv1_stop_ppe_periodic_tracer +EXPORT_SYMBOL vmlinux 0xc51043d5 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xc519bee4 of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xc519fc10 udp_set_csum +EXPORT_SYMBOL vmlinux 0xc5382998 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0xc545ee0c kill_pgrp +EXPORT_SYMBOL vmlinux 0xc550beca devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55d5a93 blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5603629 blk_start_request +EXPORT_SYMBOL vmlinux 0xc5741b88 tcp_read_sock +EXPORT_SYMBOL vmlinux 0xc575fff5 mount_pseudo +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5b2305e mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xc5b45422 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6124bbb netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xc616b7c2 d_splice_alias +EXPORT_SYMBOL vmlinux 0xc61ac169 register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0xc62d7033 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0xc630cc98 uart_get_divisor +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc6389d64 rt6_lookup +EXPORT_SYMBOL vmlinux 0xc644677a neigh_lookup +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc66f0631 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc69849bd kset_unregister +EXPORT_SYMBOL vmlinux 0xc69f58ee inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xc6adac5c qdisc_destroy +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6baa55f dst_init +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cb8c88 PDE_DATA +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6f124d7 elv_add_request +EXPORT_SYMBOL vmlinux 0xc6fd8a83 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xc714e768 d_obtain_root +EXPORT_SYMBOL vmlinux 0xc71f0523 pci_dev_get +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc7414bf5 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0xc752163d __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc75e3cbc remap_pfn_range +EXPORT_SYMBOL vmlinux 0xc75e629e proc_create_data +EXPORT_SYMBOL vmlinux 0xc7683a44 netdev_lower_dev_get_private +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 0xc78dd89b ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xc79bcd36 dm_vcalloc +EXPORT_SYMBOL vmlinux 0xc7a4fbed rtnl_lock +EXPORT_SYMBOL vmlinux 0xc7b6217f pneigh_enqueue +EXPORT_SYMBOL vmlinux 0xc7dd1621 ns_capable +EXPORT_SYMBOL vmlinux 0xc7f0f2ca blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat +EXPORT_SYMBOL vmlinux 0xc7f82fc4 devm_ioport_map +EXPORT_SYMBOL vmlinux 0xc7fd8a47 clear_nlink +EXPORT_SYMBOL vmlinux 0xc7ffd98e i2c_use_client +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 0xc860848a key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xc86982f7 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc8810489 ps3_sb_event_receive_port_setup +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc89529c6 ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc89a15c3 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b2d666 account_page_redirty +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b9d37f __kernel_write +EXPORT_SYMBOL vmlinux 0xc8e31d75 _lv1_configure_irq_state_bitmap +EXPORT_SYMBOL vmlinux 0xc8e99621 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xc8fe02cf of_phy_find_device +EXPORT_SYMBOL vmlinux 0xc902dce0 param_ops_short +EXPORT_SYMBOL vmlinux 0xc906866c tcp_sendpage +EXPORT_SYMBOL vmlinux 0xc90c2e29 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xc9106fa9 get_agp_version +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc93f0773 abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc94feff3 of_dev_put +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc9677dea __alloc_skb +EXPORT_SYMBOL vmlinux 0xc96e0561 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc9858053 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xc989debe note_scsi_host +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9c6e2df elv_rb_add +EXPORT_SYMBOL vmlinux 0xc9d090ac netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xc9dba5aa dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0xc9e1ab26 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xc9fc598d pasemi_read_dma_reg +EXPORT_SYMBOL vmlinux 0xca0510aa compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0xca06db55 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca16f7e8 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0xca17624f redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xca218dc3 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca7acc73 dev_warn +EXPORT_SYMBOL vmlinux 0xca825895 pmu_suspend +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca916f15 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca948c3f skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xcaabf3f9 pasemi_write_iob_reg +EXPORT_SYMBOL vmlinux 0xcaac29e9 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xcab789a0 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0xcac80432 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcae6af9c lwtunnel_output +EXPORT_SYMBOL vmlinux 0xcaee8790 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcaf7b9ba get_io_context +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb480503 bio_split +EXPORT_SYMBOL vmlinux 0xcb53cd9c lookup_bdev +EXPORT_SYMBOL vmlinux 0xcb643244 phy_print_status +EXPORT_SYMBOL vmlinux 0xcb739415 inet_release +EXPORT_SYMBOL vmlinux 0xcb82e687 ata_port_printk +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb9dc77a dev_addr_flush +EXPORT_SYMBOL vmlinux 0xcba80099 register_console +EXPORT_SYMBOL vmlinux 0xcbb96c97 dev_trans_start +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc23a04 vme_irq_request +EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbcac29e consume_skb +EXPORT_SYMBOL vmlinux 0xcbe8b038 _lv1_configure_execution_time_variable +EXPORT_SYMBOL vmlinux 0xcbec7623 ether_setup +EXPORT_SYMBOL vmlinux 0xcbedf82b udp6_csum_init +EXPORT_SYMBOL vmlinux 0xcbf6e0ff inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0xcc1574c2 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc3f170c vfs_readf +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc572d39 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xcc64bbe3 blk_rq_init +EXPORT_SYMBOL vmlinux 0xcc80e78e vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xcc89c246 pasemi_dma_alloc_chan +EXPORT_SYMBOL vmlinux 0xcca21106 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0xccbb7cc1 nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccf6636b sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd15af78 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0xcd15d981 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd41d103 cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xcd45c557 param_ops_byte +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd678cfa __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xcd769f62 _lv1_gpu_device_map +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcd9800b4 tty_write_room +EXPORT_SYMBOL vmlinux 0xcd9fed04 elevator_exit +EXPORT_SYMBOL vmlinux 0xcdbdb7d7 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xcdbf020e mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdfb9233 bio_map_kern +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce409cda pmac_set_early_video_resume +EXPORT_SYMBOL vmlinux 0xce44bbad mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce63cf8e __blk_end_request +EXPORT_SYMBOL vmlinux 0xce677790 dev_printk +EXPORT_SYMBOL vmlinux 0xce6ed521 of_get_address +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceace886 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceaf5249 vio_find_node +EXPORT_SYMBOL vmlinux 0xceafc0d8 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xcec547ae key_put +EXPORT_SYMBOL vmlinux 0xcec77ee0 unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xcee26262 force_sig +EXPORT_SYMBOL vmlinux 0xcef42b79 request_firmware +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf25d0a4 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xcf91a2b0 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xcf968417 pci_set_master +EXPORT_SYMBOL vmlinux 0xcf9fcbb7 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0xcfaee415 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xcfb7d5a0 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0xcfe34a2c input_inject_event +EXPORT_SYMBOL vmlinux 0xcff79d6d phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0xd015f1d8 devfreq_add_device +EXPORT_SYMBOL vmlinux 0xd01d2f09 mac_find_mode +EXPORT_SYMBOL vmlinux 0xd021e132 seq_read +EXPORT_SYMBOL vmlinux 0xd027fb06 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xd02d64c6 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xd0358954 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xd0460e94 address_space_init_once +EXPORT_SYMBOL vmlinux 0xd04c4744 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0xd05931ec _lv1_set_lpm_counter_control +EXPORT_SYMBOL vmlinux 0xd06b3d50 __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd081afab find_get_pages_tag +EXPORT_SYMBOL vmlinux 0xd08f6239 sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0xd091ae04 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0xd092be09 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0xd093c864 seq_printf +EXPORT_SYMBOL vmlinux 0xd0951d23 inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0xd09b0199 fence_context_alloc +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0b9965e blk_end_request +EXPORT_SYMBOL vmlinux 0xd0d02c90 complete_request_key +EXPORT_SYMBOL vmlinux 0xd0e102c5 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xd0e7ee55 tty_port_raise_dtr_rts +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 0xd0fb8a1b vme_irq_generate +EXPORT_SYMBOL vmlinux 0xd0fef3b2 agp_free_key +EXPORT_SYMBOL vmlinux 0xd10577c0 dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xd110696a blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd14c024f dentry_unhash +EXPORT_SYMBOL vmlinux 0xd1634457 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0xd1676287 dump_emit +EXPORT_SYMBOL vmlinux 0xd1693e27 km_state_notify +EXPORT_SYMBOL vmlinux 0xd17c4c37 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd1a18705 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xd1a26b54 d_walk +EXPORT_SYMBOL vmlinux 0xd1c4776f generic_read_dir +EXPORT_SYMBOL vmlinux 0xd1d3bb5d tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1fe8ebb _lv1_get_spe_interrupt_status +EXPORT_SYMBOL vmlinux 0xd208893f remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xd212dca6 mutex_unlock +EXPORT_SYMBOL vmlinux 0xd21bee8a nvm_get_blk +EXPORT_SYMBOL vmlinux 0xd21e4cc3 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xd228fdb3 generic_perform_write +EXPORT_SYMBOL vmlinux 0xd22b2267 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xd22fdbad scsi_cmd_ioctl +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 0xd276fb62 i2c_transfer +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd29061fc misc_register +EXPORT_SYMBOL vmlinux 0xd2a69c2a __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xd2ab36bd phy_disconnect +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2b6a6dc dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xd2c2e75b textsearch_unregister +EXPORT_SYMBOL vmlinux 0xd2cbdaf5 sk_common_release +EXPORT_SYMBOL vmlinux 0xd2ce84e0 copy_from_iter +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dca172 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xd2ef2638 smu_cmdbuf_abs +EXPORT_SYMBOL vmlinux 0xd2efc074 ibmebus_register_driver +EXPORT_SYMBOL vmlinux 0xd305c7a5 xattr_full_name +EXPORT_SYMBOL vmlinux 0xd319c766 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd32e194f simple_empty +EXPORT_SYMBOL vmlinux 0xd3656cc3 security_task_getsecid +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd36edb68 tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0xd394e55b skb_insert +EXPORT_SYMBOL vmlinux 0xd3952521 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0xd3aac59a dev_add_offload +EXPORT_SYMBOL vmlinux 0xd3ad9d1e nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xd3b9d0a5 neigh_table_init +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3c3788f request_key +EXPORT_SYMBOL vmlinux 0xd3e3f052 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xd3ee7a5a ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xd407b273 tcp_splice_read +EXPORT_SYMBOL vmlinux 0xd408a5ac skb_pad +EXPORT_SYMBOL vmlinux 0xd409383c pmu_request +EXPORT_SYMBOL vmlinux 0xd40bf9b0 vfs_writev +EXPORT_SYMBOL vmlinux 0xd418219f fb_show_logo +EXPORT_SYMBOL vmlinux 0xd431744b prepare_binprm +EXPORT_SYMBOL vmlinux 0xd431cb01 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0xd43bad79 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0xd43bdbef scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xd441f785 bdev_read_only +EXPORT_SYMBOL vmlinux 0xd445b888 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0xd44a0aaf kthread_stop +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd47814af unlock_rename +EXPORT_SYMBOL vmlinux 0xd48d47ed input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4a30998 bio_init +EXPORT_SYMBOL vmlinux 0xd4b5b3bb pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0xd4bf8ea8 always_delete_dentry +EXPORT_SYMBOL vmlinux 0xd4c10d12 I_BDEV +EXPORT_SYMBOL vmlinux 0xd4e98751 input_allocate_device +EXPORT_SYMBOL vmlinux 0xd4f68d92 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0xd54957b8 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55aebd5 block_truncate_page +EXPORT_SYMBOL vmlinux 0xd5855bbb param_set_uint +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd597535e xfrm_state_add +EXPORT_SYMBOL vmlinux 0xd5c1219b arp_tbl +EXPORT_SYMBOL vmlinux 0xd5e1d719 _lv1_set_ppe_periodic_tracer_frequency +EXPORT_SYMBOL vmlinux 0xd5eae2d2 __register_chrdev +EXPORT_SYMBOL vmlinux 0xd60d2c21 twl6040_set_pll +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd6206368 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd661e1e1 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0xd6737aa0 dev_set_group +EXPORT_SYMBOL vmlinux 0xd67d8ac3 set_binfmt +EXPORT_SYMBOL vmlinux 0xd67d9b50 pci_request_region +EXPORT_SYMBOL vmlinux 0xd67f72c8 copy_to_iter +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68fe5d1 truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xd69d9731 block_write_full_page +EXPORT_SYMBOL vmlinux 0xd6b8465a sget +EXPORT_SYMBOL vmlinux 0xd6b8ce27 rwsem_wake +EXPORT_SYMBOL vmlinux 0xd6bb477f jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6dba5fe sock_i_uid +EXPORT_SYMBOL vmlinux 0xd6edf811 _lv1_release_memory +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd7082c24 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0xd72e1cfc _lv1_set_lpm_spr_trigger +EXPORT_SYMBOL vmlinux 0xd7315ec6 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xd7490f10 __sk_dst_check +EXPORT_SYMBOL vmlinux 0xd750e939 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xd7512a19 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd7636412 fb_set_cmap +EXPORT_SYMBOL vmlinux 0xd76e1cb8 __pagevec_release +EXPORT_SYMBOL vmlinux 0xd77cee5e clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xd77d1c5f d_drop +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd7b757b0 vme_bus_type +EXPORT_SYMBOL vmlinux 0xd7c027c1 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0xd7c6dc7d __dst_free +EXPORT_SYMBOL vmlinux 0xd7ceee59 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xd7d6f930 pcie_set_readrq +EXPORT_SYMBOL vmlinux 0xd7ddc75a sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd80985a9 inet_frag_kill +EXPORT_SYMBOL vmlinux 0xd80e709e register_netdevice +EXPORT_SYMBOL vmlinux 0xd81ed67f swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xd846871e blkdev_put +EXPORT_SYMBOL vmlinux 0xd84f6fd9 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xd85082b1 simple_setattr +EXPORT_SYMBOL vmlinux 0xd8644514 iov_iter_init +EXPORT_SYMBOL vmlinux 0xd86691ad __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0xd8672bfa kfree_skb_list +EXPORT_SYMBOL vmlinux 0xd886798e pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ac73f9 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8ee9799 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd9106dac tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xd94dc8b0 nf_register_hooks +EXPORT_SYMBOL vmlinux 0xd96856c3 iterate_mounts +EXPORT_SYMBOL vmlinux 0xd97eeaa7 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0xd981cb7f posix_lock_file +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98aacef dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xd9a058a6 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xd9b79b35 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9d4d09d _lv1_release_io_segment +EXPORT_SYMBOL vmlinux 0xd9d4db63 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e3da8f scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xda0f5234 rtas_offline_cpus_mask +EXPORT_SYMBOL vmlinux 0xda2b0082 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda4454a0 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xda6be262 tcp_init_sock +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda87e34b fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0xda885411 pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +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 0xdacd0bbe xfrm_user_policy +EXPORT_SYMBOL vmlinux 0xdae5a471 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb014134 filemap_flush +EXPORT_SYMBOL vmlinux 0xdb02928b done_path_create +EXPORT_SYMBOL vmlinux 0xdb15c8e4 tty_name +EXPORT_SYMBOL vmlinux 0xdb17d8a8 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb3cf36e md_wakeup_thread +EXPORT_SYMBOL vmlinux 0xdb4091e7 max8998_read_reg +EXPORT_SYMBOL vmlinux 0xdb45b673 dquot_enable +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb855843 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0xdb893e2b blk_init_tags +EXPORT_SYMBOL vmlinux 0xdb91035e scsicam_bios_param +EXPORT_SYMBOL vmlinux 0xdbaf256f compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xdbb0596f dquot_operations +EXPORT_SYMBOL vmlinux 0xdbbbfb13 agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0xdbcaa13f tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xdc044450 simple_open +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc16cc60 __kfree_skb +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc742f97 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xdc8884cb inet6_del_offload +EXPORT_SYMBOL vmlinux 0xdc88b7a1 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdca3478d input_unregister_device +EXPORT_SYMBOL vmlinux 0xdca63ecb touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb5119a vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdcb90e11 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xdcd21e7d pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0xdcefb9a5 pmu_resume +EXPORT_SYMBOL vmlinux 0xdd22ad17 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0xdd3ba5a0 page_symlink +EXPORT_SYMBOL vmlinux 0xdd3cce04 ibmebus_bus_type +EXPORT_SYMBOL vmlinux 0xdd479cd4 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd766578 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xdd7c7de6 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddca8d0b swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0xddcb40e1 dev_uc_add +EXPORT_SYMBOL vmlinux 0xdddc88eb dev_uc_sync +EXPORT_SYMBOL vmlinux 0xdded7027 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0xde0cb600 vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xde2b91e1 mmc_stop_bkops +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 0xdeb136fa vlan_vid_del +EXPORT_SYMBOL vmlinux 0xdec1c58c nvm_erase_blk +EXPORT_SYMBOL vmlinux 0xdf07a5b4 inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xdf12a3cd input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xdf13c1c3 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xdf212f0e neigh_seq_start +EXPORT_SYMBOL vmlinux 0xdf236330 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf34977e param_ops_bint +EXPORT_SYMBOL vmlinux 0xdf426865 __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf59da77 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf60fc83 _lv1_net_start_tx_dma +EXPORT_SYMBOL vmlinux 0xdf80c2db sock_create_kern +EXPORT_SYMBOL vmlinux 0xdf841de2 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xdf8b6bf5 mach_pseries +EXPORT_SYMBOL vmlinux 0xdf8d726c netdev_printk +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdf9eb312 sk_capable +EXPORT_SYMBOL vmlinux 0xdfac74d3 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0xdfafefce agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0xdfbf3548 inet_addr_type +EXPORT_SYMBOL vmlinux 0xdfcdbd8c ps2_init +EXPORT_SYMBOL vmlinux 0xdfe7fc65 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xdfef8125 vfs_unlink +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xdffd7dee sock_efree +EXPORT_SYMBOL vmlinux 0xe036559b iterate_supers_type +EXPORT_SYMBOL vmlinux 0xe03865f8 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0xe0433656 nf_hook_slow +EXPORT_SYMBOL vmlinux 0xe04e0043 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe04fd529 from_kgid_munged +EXPORT_SYMBOL vmlinux 0xe05d7c58 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe07162b5 dev_getfirstbyhwtype +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 0xe08e9330 truncate_setsize +EXPORT_SYMBOL vmlinux 0xe09472ce nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0d227bd scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xe0d6ffff mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xe0e07ed7 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe114e637 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0xe119b960 skb_try_coalesce +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1484a76 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xe15062d2 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xe16d3332 serio_bus +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe185d275 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xe1cc49bc pci_clear_master +EXPORT_SYMBOL vmlinux 0xe1f0c46e igrab +EXPORT_SYMBOL vmlinux 0xe200f51c tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe204a257 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xe20a4e8e mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0xe20c63e7 _lv1_unmap_device_mmio_region +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe22ef7f3 dev_mc_add +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe279bd9c lock_rename +EXPORT_SYMBOL vmlinux 0xe285ab47 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0xe287780b ata_dev_printk +EXPORT_SYMBOL vmlinux 0xe28b0766 input_release_device +EXPORT_SYMBOL vmlinux 0xe2900c47 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0xe2975b24 simple_dname +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2bcb824 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xe2bde0ea sock_no_listen +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2c2e0ff skb_trim +EXPORT_SYMBOL vmlinux 0xe2c3f7de xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fad3d0 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xe2fccbab zero_fill_bio +EXPORT_SYMBOL vmlinux 0xe3097d12 pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xe30f7432 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe319340d filemap_fault +EXPORT_SYMBOL vmlinux 0xe31946dc eth_gro_receive +EXPORT_SYMBOL vmlinux 0xe319e538 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xe31e743d d_find_alias +EXPORT_SYMBOL vmlinux 0xe32d3832 inode_init_once +EXPORT_SYMBOL vmlinux 0xe3359e20 pci_find_capability +EXPORT_SYMBOL vmlinux 0xe345c3a3 blk_free_tags +EXPORT_SYMBOL vmlinux 0xe36e0738 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0xe3798176 unmap_mapping_range +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3bd7a67 blkdev_get +EXPORT_SYMBOL vmlinux 0xe3bf0e6a netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe3e70c56 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xe3eec3b9 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xe3f6bddf nd_integrity_init +EXPORT_SYMBOL vmlinux 0xe3fb0ea5 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0xe40e4c41 skb_free_datagram +EXPORT_SYMBOL vmlinux 0xe43735fc have_submounts +EXPORT_SYMBOL vmlinux 0xe455ed87 simple_link +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe48bf3ff nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xe4945847 release_firmware +EXPORT_SYMBOL vmlinux 0xe49f9893 tty_port_init +EXPORT_SYMBOL vmlinux 0xe4ac025f tcf_hash_search +EXPORT_SYMBOL vmlinux 0xe4ae6571 devm_memunmap +EXPORT_SYMBOL vmlinux 0xe4cdc460 sk_net_capable +EXPORT_SYMBOL vmlinux 0xe4d8fd51 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4ef868a try_to_release_page +EXPORT_SYMBOL vmlinux 0xe4fa3e23 __init_rwsem +EXPORT_SYMBOL vmlinux 0xe4fdea7e arp_send +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe500631a generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xe51129e9 __free_pages +EXPORT_SYMBOL vmlinux 0xe51d7ec4 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe53c772a mdiobus_free +EXPORT_SYMBOL vmlinux 0xe541ebce sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xe5462d89 scsi_device_get +EXPORT_SYMBOL vmlinux 0xe5475d86 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xe5490187 phy_connect +EXPORT_SYMBOL vmlinux 0xe54dfbe1 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xe5551d6e pci_reenable_device +EXPORT_SYMBOL vmlinux 0xe55c1fdd phy_start_aneg +EXPORT_SYMBOL vmlinux 0xe5685789 skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5c15da6 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f7b4c5 open_check_o_direct +EXPORT_SYMBOL vmlinux 0xe5f861bc napi_gro_flush +EXPORT_SYMBOL vmlinux 0xe6022ee6 __cleancache_get_page +EXPORT_SYMBOL vmlinux 0xe60988ac _lv1_query_logical_partition_address_region_info +EXPORT_SYMBOL vmlinux 0xe6384342 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xe6483223 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe6933e38 save_mount_options +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6ce5765 dev_activate +EXPORT_SYMBOL vmlinux 0xe6d05fde __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xe6e71409 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0xe6ee44f6 __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xe6f1eaf2 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xe6f3f3db input_event +EXPORT_SYMBOL vmlinux 0xe6f61ec3 __getblk_slow +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe6fd76a5 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xe71615ef pci_select_bars +EXPORT_SYMBOL vmlinux 0xe7386d22 __breadahead +EXPORT_SYMBOL vmlinux 0xe7393285 eth_header_cache_update +EXPORT_SYMBOL vmlinux 0xe74598b3 tty_unlock +EXPORT_SYMBOL vmlinux 0xe748ae6b put_tty_driver +EXPORT_SYMBOL vmlinux 0xe74aa406 _lv1_set_dabr +EXPORT_SYMBOL vmlinux 0xe751127c param_set_copystring +EXPORT_SYMBOL vmlinux 0xe75a95fc input_reset_device +EXPORT_SYMBOL vmlinux 0xe76e567e dup_iter +EXPORT_SYMBOL vmlinux 0xe77149bc genl_notify +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7ac6f48 __ps2_command +EXPORT_SYMBOL vmlinux 0xe7c3ec1c scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xe7cd6462 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0xe7cd99b7 smu_queue_simple +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7e30778 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xe7f6f1c2 param_get_long +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe8463fb7 kmalloc_caches +EXPORT_SYMBOL vmlinux 0xe8593b48 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xe85f4b74 agp_backend_release +EXPORT_SYMBOL vmlinux 0xe8853bf1 qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xe888af3d vfs_create +EXPORT_SYMBOL vmlinux 0xe8a4f040 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8ab0632 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xe8aea97c tso_start +EXPORT_SYMBOL vmlinux 0xe8be44b0 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe8cef115 uart_suspend_port +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9243fe3 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0xe935eedb dma_direct_ops +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe93c3a24 dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe96537db swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xe99070b5 devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0xe9944a1e netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xe9aa3edf mmc_start_req +EXPORT_SYMBOL vmlinux 0xe9ac1b13 seq_open +EXPORT_SYMBOL vmlinux 0xe9ad64a9 tcf_action_exec +EXPORT_SYMBOL vmlinux 0xe9cabe39 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fc4980 tcp_child_process +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea0fcf18 dquot_scan_active +EXPORT_SYMBOL vmlinux 0xea2a6c20 napi_disable +EXPORT_SYMBOL vmlinux 0xea63738b dput +EXPORT_SYMBOL vmlinux 0xea64944c bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xea73b60a page_follow_link_light +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea91946c of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeac27f68 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0xeae1bb02 input_register_handler +EXPORT_SYMBOL vmlinux 0xeae6ddfc bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xeae99dff mount_ns +EXPORT_SYMBOL vmlinux 0xeaecf846 cdev_del +EXPORT_SYMBOL vmlinux 0xeb0b7c36 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0xeb0bba15 __f_setown +EXPORT_SYMBOL vmlinux 0xeb0c528e __bread_gfp +EXPORT_SYMBOL vmlinux 0xeb2ef03a compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0xeb30679e md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xeb3530f9 down_write +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb46847d qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xeb4c7bfa sock_wmalloc +EXPORT_SYMBOL vmlinux 0xeb8189e2 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xeb84f26c inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0xeb8a7104 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xebbefd23 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xebca239b blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xebdea2d5 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xebeddee0 mmc_add_host +EXPORT_SYMBOL vmlinux 0xec1bf86d scsi_host_alloc +EXPORT_SYMBOL vmlinux 0xec30765a _lv1_allocate_io_segment +EXPORT_SYMBOL vmlinux 0xec3b5b26 pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0xec4eb7cb tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xec70d0dd ppp_unit_number +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed068109 ipv4_specific +EXPORT_SYMBOL vmlinux 0xed0c52f0 nf_log_unset +EXPORT_SYMBOL vmlinux 0xed1ca184 single_open_size +EXPORT_SYMBOL vmlinux 0xed2ec9b8 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xed3ad807 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0xed43111d dev_err +EXPORT_SYMBOL vmlinux 0xed500aaf mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed60215f phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0xed652427 _lv1_set_interrupt_mask +EXPORT_SYMBOL vmlinux 0xed86ed8b uart_update_timeout +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 0xedc59254 i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0xedf0b48c _lv1_storage_get_async_status +EXPORT_SYMBOL vmlinux 0xedf3b5b3 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee067ee8 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xee1057ea generic_setlease +EXPORT_SYMBOL vmlinux 0xee15af5b genphy_suspend +EXPORT_SYMBOL vmlinux 0xee2206de of_translate_dma_address +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee313466 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0xee4e84ed vme_new_dma_list +EXPORT_SYMBOL vmlinux 0xee52b095 phy_drivers_register +EXPORT_SYMBOL vmlinux 0xee5bb20b _lv1_panic +EXPORT_SYMBOL vmlinux 0xee5befd5 max8925_reg_read +EXPORT_SYMBOL vmlinux 0xee7191df dquot_commit +EXPORT_SYMBOL vmlinux 0xee71b9e2 netif_rx_ni +EXPORT_SYMBOL vmlinux 0xee761797 tcf_em_register +EXPORT_SYMBOL vmlinux 0xee81e831 sg_miter_skip +EXPORT_SYMBOL vmlinux 0xee9174c5 _lv1_storage_read +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeec2c589 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xeec875a5 kernel_accept +EXPORT_SYMBOL vmlinux 0xeecfe04c ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0xeeda0d84 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xeee9944a passthru_features_check +EXPORT_SYMBOL vmlinux 0xeeea7e82 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef98842 invalidate_partition +EXPORT_SYMBOL vmlinux 0xef0a5281 pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xef16af72 d_alloc +EXPORT_SYMBOL vmlinux 0xef235f3a tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xef3ed0b3 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0xef634ed0 vga_get +EXPORT_SYMBOL vmlinux 0xef697f82 tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0xef77d183 skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xef8b5ebe bh_submit_read +EXPORT_SYMBOL vmlinux 0xef91bb94 bio_unmap_user +EXPORT_SYMBOL vmlinux 0xef978dac __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xef9f7600 tty_hangup +EXPORT_SYMBOL vmlinux 0xefa24c96 of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0xefa66feb dev_mc_init +EXPORT_SYMBOL vmlinux 0xefb0b688 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0xefb9a6fb blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xefc2e54d _lv1_storage_send_device_command +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 0xefeb5ea9 __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xeffc0ea8 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00625d6 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf04365f8 proto_register +EXPORT_SYMBOL vmlinux 0xf0498c4e ip6_xmit +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf077cf97 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08c8cf8 bmap +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0ae03d9 uart_match_port +EXPORT_SYMBOL vmlinux 0xf0b032f8 genphy_config_init +EXPORT_SYMBOL vmlinux 0xf0d2f84a _lv1_gpu_context_free +EXPORT_SYMBOL vmlinux 0xf0da66eb led_set_brightness +EXPORT_SYMBOL vmlinux 0xf0de468e inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf0f83804 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf1311bfd make_kgid +EXPORT_SYMBOL vmlinux 0xf13e8676 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf17a1c66 sys_fillrect +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf1848d6d lease_modify +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1d3c755 set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f0278a pci_iounmap +EXPORT_SYMBOL vmlinux 0xf1f13176 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0xf1fbc834 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf20ecc59 devm_memremap +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf2184e9a agp_put_bridge +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf23255df security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0xf23a23d9 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24779be tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xf24dcaa8 _lv1_net_stop_rx_dma +EXPORT_SYMBOL vmlinux 0xf2654f89 filemap_map_pages +EXPORT_SYMBOL vmlinux 0xf26c9869 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xf29063af __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xf29a65ef pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2bccc97 tty_port_close_end +EXPORT_SYMBOL vmlinux 0xf2c15e45 of_get_parent +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2c55225 __devm_request_region +EXPORT_SYMBOL vmlinux 0xf2cc8562 tty_free_termios +EXPORT_SYMBOL vmlinux 0xf2e26301 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0xf2fd86db devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0xf3036b79 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xf30530c7 tty_port_close +EXPORT_SYMBOL vmlinux 0xf30d1036 _lv1_start_ppe_periodic_tracer +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31beb0f sock_create +EXPORT_SYMBOL vmlinux 0xf31e2d4f of_dev_get +EXPORT_SYMBOL vmlinux 0xf3204455 of_device_alloc +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 0xf35464fb nf_log_set +EXPORT_SYMBOL vmlinux 0xf357db8d pasemi_dma_set_flag +EXPORT_SYMBOL vmlinux 0xf36ba11c __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xf383f375 follow_pfn +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38b38da fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0xf3916987 global_cursor_default +EXPORT_SYMBOL vmlinux 0xf3a5a570 file_update_time +EXPORT_SYMBOL vmlinux 0xf3dae4d9 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e8f01d reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0xf4310644 pci_get_device +EXPORT_SYMBOL vmlinux 0xf438cc9b nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0xf441690e pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf4433042 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0xf45273c8 __ip_select_ident +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4aebf24 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4d61916 file_ns_capable +EXPORT_SYMBOL vmlinux 0xf4da03e4 write_inode_now +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf5056894 fb_validate_mode +EXPORT_SYMBOL vmlinux 0xf519143b inet_reqsk_alloc +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 0xf5313e33 zpool_register_driver +EXPORT_SYMBOL vmlinux 0xf533be67 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf5550fd4 vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0xf559e298 param_set_long +EXPORT_SYMBOL vmlinux 0xf55afb85 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf56957b7 blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0xf5773c7b pci_get_slot +EXPORT_SYMBOL vmlinux 0xf5881795 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5b84e0f xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0xf5b86034 sock_alloc_file +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c7aa31 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xf5cd2d7e proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5f285e2 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xf605a838 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf61debe9 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xf6213e12 pasemi_dma_clear_flag +EXPORT_SYMBOL vmlinux 0xf62852a3 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0xf62de7a3 truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf645ec07 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xf66d5839 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf68688fc netdev_state_change +EXPORT_SYMBOL vmlinux 0xf69258ff iov_iter_kvec +EXPORT_SYMBOL vmlinux 0xf6b75d35 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6c3992d tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0xf6dda06b generic_file_open +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6ecb763 _lv1_send_event_locally +EXPORT_SYMBOL vmlinux 0xf6ed36cb ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf70a24c7 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0xf72edb1f skb_seq_read +EXPORT_SYMBOL vmlinux 0xf752895a irq_set_chip +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf7843169 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xf788c5b9 scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xf78a2b72 sock_register +EXPORT_SYMBOL vmlinux 0xf79a541e down_write_trylock +EXPORT_SYMBOL vmlinux 0xf7a136e6 pmac_suspend_agp_for_card +EXPORT_SYMBOL vmlinux 0xf7a58147 blk_start_queue +EXPORT_SYMBOL vmlinux 0xf7a7f808 security_path_truncate +EXPORT_SYMBOL vmlinux 0xf7bac0ec _lv1_set_lpm_counter +EXPORT_SYMBOL vmlinux 0xf7ddf560 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xf8004bfd _lv1_disconnect_interrupt_event_receive_port +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 0xf84b8555 __devm_release_region +EXPORT_SYMBOL vmlinux 0xf854cbbb pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0xf875f961 unregister_quota_format +EXPORT_SYMBOL vmlinux 0xf87a9e2f wireless_send_event +EXPORT_SYMBOL vmlinux 0xf8ad4611 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8d510f6 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xf8e78b09 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf90d9b66 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xf93cb342 mdiobus_scan +EXPORT_SYMBOL vmlinux 0xf9512bbd inet_listen +EXPORT_SYMBOL vmlinux 0xf95af259 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xf97b0934 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xf97f9193 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xf99368e4 eeh_dev_release +EXPORT_SYMBOL vmlinux 0xf999ccfe dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c008ec release_pages +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9c23ced elevator_change +EXPORT_SYMBOL vmlinux 0xf9cc7443 block_write_end +EXPORT_SYMBOL vmlinux 0xf9f35c5e dma_async_device_register +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xf9fdef46 mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xfa06b8ab new_inode +EXPORT_SYMBOL vmlinux 0xfa09f137 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0xfa41145a __put_cred +EXPORT_SYMBOL vmlinux 0xfa4980a5 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0xfa4c5b91 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa5521bd blk_delay_queue +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa5d83f7 jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0xfa5ec526 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0xfa61aebf dquot_resume +EXPORT_SYMBOL vmlinux 0xfa7fadef flush_old_exec +EXPORT_SYMBOL vmlinux 0xfa8b7c1a __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xfa8bb88e d_lookup +EXPORT_SYMBOL vmlinux 0xfa95d8b6 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xfa98d0e7 of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0xfaa8dfb3 deactivate_super +EXPORT_SYMBOL vmlinux 0xfab4523b param_ops_ullong +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfadb5750 pmu_unlock +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfafef855 ps2_drain +EXPORT_SYMBOL vmlinux 0xfb0cecfd vm_event_states +EXPORT_SYMBOL vmlinux 0xfb1750bf blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xfb4803fe xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0xfb502b30 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0xfb5109b4 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0xfb574ebc inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb72911c security_path_mkdir +EXPORT_SYMBOL vmlinux 0xfb77500a get_mm_exe_file +EXPORT_SYMBOL vmlinux 0xfb88f565 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xfb8f3bda sock_no_getname +EXPORT_SYMBOL vmlinux 0xfb932449 key_type_keyring +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb986416 is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0xfba2c8f5 pci_bus_get +EXPORT_SYMBOL vmlinux 0xfba8ab2d kobject_init +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbab83d6 mmc_detect_change +EXPORT_SYMBOL vmlinux 0xfbc14caf input_open_device +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd9519e __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xfbdb1742 udp_proc_register +EXPORT_SYMBOL vmlinux 0xfbe6a0ab dev_driver_string +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc2350c4 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xfc2c6a61 mmc_flush_cache +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc3fc0a8 follow_up +EXPORT_SYMBOL vmlinux 0xfc89c360 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xfc96f90a twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0xfca2b2fc simple_write_begin +EXPORT_SYMBOL vmlinux 0xfca45018 blk_register_region +EXPORT_SYMBOL vmlinux 0xfcaddf51 sock_no_mmap +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 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfcfb0931 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0xfd3ed891 of_device_is_available +EXPORT_SYMBOL vmlinux 0xfd4f41b3 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0xfd6980c8 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xfd74978e generic_getxattr +EXPORT_SYMBOL vmlinux 0xfd8cc306 abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xfd91c321 sched_autogroup_detach +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 0xfdc9da56 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xfde3738e module_put +EXPORT_SYMBOL vmlinux 0xfdebfb87 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xfded48ed enable_kernel_fp +EXPORT_SYMBOL vmlinux 0xfdee248c kern_path +EXPORT_SYMBOL vmlinux 0xfdee8005 input_mt_report_pointer_emulation +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 0xfe1ab9e3 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe2ed844 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xfe2f0033 fb_set_suspend +EXPORT_SYMBOL vmlinux 0xfe3d8f8f vmap +EXPORT_SYMBOL vmlinux 0xfe4cb4b5 _lv1_storage_write +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5e428d __inet_hash +EXPORT_SYMBOL vmlinux 0xfe663b1a d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xfe743057 mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0xfe757b80 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe82e79f ps2_sendbyte +EXPORT_SYMBOL vmlinux 0xfe87a7cb dquot_initialize +EXPORT_SYMBOL vmlinux 0xfe9085ce inet_add_offload +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfe96b321 pcie_get_mps +EXPORT_SYMBOL vmlinux 0xfeb7b0e4 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0xfec4b365 kobject_put +EXPORT_SYMBOL vmlinux 0xfed221d9 pasemi_dma_alloc_ring +EXPORT_SYMBOL vmlinux 0xfed399f1 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xfef65ae5 skb_dequeue +EXPORT_SYMBOL vmlinux 0xfef8935f blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xff0ef8b7 nf_ct_attach +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff385cc5 __find_get_block +EXPORT_SYMBOL vmlinux 0xff3ad3ca free_task +EXPORT_SYMBOL vmlinux 0xff47e109 seq_dentry +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 0xffc065cd security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xffc8507d register_filesystem +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffe2adcc macio_dev_get +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x00b10557 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x01e69e6f kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x03b83826 kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x04484f7c kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0633a7dd kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x09951c78 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0d411f8f kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x191e7f9d kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x199adeae kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x21624573 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x22017df0 kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x225bf703 kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x229c52c8 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x22b9f7f6 gfn_to_page_many_atomic +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 0x28a53006 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2e64deb7 kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2fa236e2 kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x352479f0 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x35a25228 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x37c3ee2d kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x401b57ff gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x408e3aac kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x479705c3 kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x4f0de590 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x50097758 kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x501e71e6 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x54bb7013 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5631e61a kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5ba57b6d kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x65f788ee kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6899a31c kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7249d70d kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7a5e8d1e kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x815b3270 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x84969c02 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85a5a4b2 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8669bac4 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8960a0be gfn_to_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8ad6a5ec gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8c56fd1c kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8da01274 kvm_get_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e1105dc kvm_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8f6f42ed kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x944dbe75 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x94646552 vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x973a03bb kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9af0a634 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9c03911b kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9fee8485 kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa181fed1 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa6aedbd3 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa83046f6 kvmppc_ld +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 0xaff45d5b kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb028128e gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb40e8fc3 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb6470f21 kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xba8abc93 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbbe6ab8d kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbcf17106 mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xbf5b4199 kvm_unmap_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc879ad44 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc8c97761 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcabc4671 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xce1dd5e5 kvmppc_unfixup_split_real +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd16387ce kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd747e18b kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xda9ac787 kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xddd59603 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe002a65d kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe173b196 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe2671bae kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe653ec84 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xeab09392 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xecce343c kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xede5b2cd kvmppc_h_logical_ci_load +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 0xf700a909 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xfd727e28 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0x9a0b4268 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x3fa9f7cd spu_save +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x8297cd02 spufs_context_fops +EXPORT_SYMBOL_GPL arch/powerpc/platforms/cell/spufs/spufs 0x94a3c835 spu_restore +EXPORT_SYMBOL_GPL crypto/af_alg 0x0447c7a5 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x155f158a af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0x2443d890 af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x3462468c af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x6a9886ad af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x71c8096b af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xb86a603d af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xbd74a8bb af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd92f3b9e af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xea871699 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xdac716c4 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1d2165c5 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x8d535331 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x49126bee async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x8d353325 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x9617fd09 async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xbc0dd8f5 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe1305072 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xe1c57ba8 __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x0475e33e async_xor +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xb8500fbf 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 0x3c938e31 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0xdb3e025e crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/cryptd 0x08143f26 cryptd_free_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x20765165 cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x513ed6e5 cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x58253277 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x66beb068 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x94b1af40 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0xb254b5f7 cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd881443e cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xd9ed60b9 cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xdb821dea cryptd_shash_desc +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 0x789fb0a8 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x040a64f6 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x07e4ecee mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x4db551e5 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa1ca9e4a mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xa9db730f mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xd7f669eb shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf13859ad shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf1c7ae3c shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x063505bd crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x15d3f017 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc43ee334 crypto_poly1305_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xd0677c10 crypto_poly1305_init +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 0xbe714072 xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x08a0d8a4 ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0996c1fa ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x0ca0c782 ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x10541df2 ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1224a933 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x1541ab3b ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x37e73711 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3e4ebeb5 ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x43dc06e1 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x52fa7a41 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x54071017 ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x5da5f5e2 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6804b5b2 ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x6836a84f ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x688e353e ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x89ff2c88 ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8c48a72d ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x92643d45 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb1f1d88c ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xbb541c33 ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xde28e0c4 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea12cd9d ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf08f0a4d ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x0e317df7 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x3949178d ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x5657aeef ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x573cc6b2 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7bc4e7b4 ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x83689a87 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x9f97ab08 ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa023ed92 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa5c7821a ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xa8ed5f94 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc9b5fb74 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xecb8399b ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf4856855 ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xfa8ee8ad __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0x27f9efbd 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 0x32196a2d __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x828a8215 __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x946e78d9 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa0dd004c __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x00df48d1 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0134bcbe bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x035fc2d1 bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0e2f6b06 bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0f286efd bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x12ff5fc8 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b88465e bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4494a00f bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x540b10df bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x544d1060 bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x57fb9557 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x592d1a93 bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x61cbdda5 bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x833a1ef6 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x8b149044 bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa13b4918 bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa4265f97 bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb227d8e4 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb7781eb6 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb8743b7f bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xc8b4ca2d bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xdf4f9d7a bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xeff55f96 bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf660e884 bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x27228e60 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x2a0ea789 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x401acf74 btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x52dc3da4 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x7f9d74d5 btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xd0505b3c btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x21a10fe3 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x222a2d1c btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x690e5185 btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x95eadfea btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x96aa8a4b btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x982925cb btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x9e3dd4c8 btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc6dbfd35 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xcade52f1 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xde99c402 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe0619ef5 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xeffce875 btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1c1075f6 btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x260548f4 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3176188e btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x46797c2f btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x520aaf07 btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x5724f497 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x68a07ecc btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x8562021c btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xb60838eb btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xc2c18ad3 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xd4667b50 btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x2c523592 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x944067cd qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0xf95d1702 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0xe65728a8 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 0x449143db dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5103db5b dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x729c2211 dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xc65dc8a7 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xd50e85ce dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x376e7db2 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x43db200b hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xfd007b25 hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x1013bb34 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x1285dfeb vchan_init +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x96d27725 vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x9a0cc53c vchan_find_desc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x044f6e1a edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1344de89 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1c2b8fb8 edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x1d56b09b edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x30710d73 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x30d17881 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3686c4aa edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3770f409 edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3f085b6b edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x46b136a1 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x57d2834b edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6d2a4bf9 edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x79b268b4 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7d9f4664 edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x865838e3 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8c5fc4d0 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x8f1d2b02 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa8fb31f7 edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xade46452 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xba63a4c8 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xe03b1176 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf5b8e368 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf92e4645 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x14b5f5ca fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x68789b76 fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x699f478e fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x910097f6 fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd833a9c7 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf68afcb2 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x1db430b7 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0xe078cf68 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x7d94e209 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0xcdfbe682 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x04cbd358 drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x20729b9e drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x43ec9925 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x66a1307d drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x73594494 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x88735044 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x21e456b3 ttm_dma_unpopulate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x51f655a1 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 0x982577e0 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 0x111fecec hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1a2a0dd5 hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1e8af1d5 hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x26ae7c3f hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2c771ba4 hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x2fb7b1e0 hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x33e3e9d5 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x436c98df hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x50d95f3f hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5442530e hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5457bf69 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x59bb9b21 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x5fb3b676 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x64529f54 hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6f1f37af hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x718740ca hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x867cdd47 hid_input_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8b3cbb74 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x9090f0c5 hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x94cd7cd7 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x956f92f6 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa9cb81ac hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb37e2a9d hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb3ae4c5a hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xb636adfc hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbd42280a hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc1c85fe1 hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xcbbec1f3 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd17dcde7 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd228c5ed hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd7f928cb hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe1dca14c hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xe5f1d0bb hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf77d87e5 hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc55bdc2 hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfc64f77e hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x2f622ea1 roccat_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x7bdd906b roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat 0x8c4181ec roccat_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x2af1c3a3 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x3456c0e9 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x600c308d roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x8087e105 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x96b9d4e7 roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xbb74e3d0 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0bde4423 sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x3196cc58 sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x5de56468 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xa8d2e1a6 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xb6b13ddb sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd190c24a hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xee7ca75d sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf0055a82 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xf3edd92f sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x3bde565b hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x09f0095c hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x1786950d hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x22e2986d hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4420dcf0 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x4776d941 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x48dd9f02 hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5945a8db hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x605f90f4 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x62e5afac hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x8cbf2715 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x92ac1c51 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd2e144e9 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xd8ba0341 hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdbd736e7 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdd33fb6d hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xdf6556db hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xed902d1f hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf80a9dbf hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x164dd713 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc2397148 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xc78813b4 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0aa62708 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0b46e17a pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0ef74f28 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x40a7edc7 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x537b1f8b pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6256c124 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x647210be pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x64b1413c pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x6e52ccd2 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8cb9710c pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8dc2763a pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x90082d93 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xa430cd4b pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xaedd9904 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xdd77b68c pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x258e6505 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4098f886 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x474c0e3e intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x6d7a1e71 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9468bc19 intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xd39b0601 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xdc84571d intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x4d7eb132 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x83d209e1 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x84ab8f87 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x92a61d18 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xa9de9ba1 stm_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x5ed2a274 i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x840183e1 i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x94199014 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xae31cc85 i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xef9a82f0 i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xe4d9f8b6 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xeab403b9 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x8102b704 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xae102daf i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x9039b96e bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x97833548 bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xed2b9812 bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x230e7846 ad_sd_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x496a0532 ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x75e44d0f ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x7cba3228 ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x904a4ef2 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa2ae54a3 ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xb135148f ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xbcccd082 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xcbbd9586 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 0x4b1203f7 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 0x9b82c2cc iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x60c16242 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0xbb233793 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x55736be4 bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xd638ce97 bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xed4ca6f8 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0b2e2199 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0ea87ff6 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2bcb543c adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x4f94d589 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x5096b700 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x54027ce1 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x81213619 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x8ea61174 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa35a3069 adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xa743bf51 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xac595dd8 adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xb59ec78f adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x016e1ac3 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x217cfaf7 devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x2c9eb660 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x333382ed iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x387d11ea iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x396a42ba devm_iio_device_register +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45cfdbf5 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x57d12baa iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5af5fa6e iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x61312486 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x74910186 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x7bc28372 iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83406057 iio_read_channel_average_raw +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 0xa6dfa960 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa8bde880 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xaa356477 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xae31bc0e iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xba75f9d6 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xbe4b0d5c iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc341fe6a iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc491b203 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xc65c3b51 devm_iio_device_free +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 0xcfbe67c9 iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe2d4e7aa iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe527e371 iio_convert_raw_to_processed +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/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xb4616e82 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x3ce9993f 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 0x91756cfc adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x95bc69e0 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xbd7d60c3 cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0xe2e8e64d cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x5038614a cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x7004f33e cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe28a5294 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x53e02d7b cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xa9c173de cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x656f682d tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x677419e1 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xd6cb358b tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xe18a163f tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x040ffb1a wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x0ecee4e3 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1370f9b9 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x1ad22361 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x25ad980e wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4839280c wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x75087048 wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x7cd85500 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x90206a7f wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xcd8c9046 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xdfdaf927 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xef2de6dc wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x0b5b00e3 ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x4aacbdd7 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x71afb0a0 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x7ebdb4a3 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x87d19848 ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xa95fa5e2 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xbdee0856 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xdce97b12 ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xeb28c126 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 0x34185e08 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3c852ae3 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3cb516ef gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x50bc839c gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x586bc0ea gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6d6314ec gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6e1a7c00 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8536ed50 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x867468f5 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x8d43665a gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x97b93ce9 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9eee71e6 gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xc85f2c3a gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xccc01335 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd40532e7 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd4f63090 gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xfef77c81 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x05d61d3c led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x0ab2d4f9 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x272e81d5 led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb13b5b27 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xcc175a4e led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xf3213da3 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x081e0606 lp55xx_register_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x4581a2bf lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x61cd643d lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6763444d lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6769b5a5 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x70fedba4 lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x857133db lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb043671c lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xb291ffb1 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc2781f9f lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc485e0fb 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 0x3317f996 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x33627c7a wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x7d0e9359 wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x80ca04fe wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x9781aded wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xd17a47b0 wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xd3046a89 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xd41d3b0e wf_register_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 0x498a3f77 mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x4a4f8c77 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5166ea56 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x57f04718 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5b763743 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x5fca248b mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x621c64cc mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x6aa3c43d mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x963293c3 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbe241e5e mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xd45a0c21 __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe9fa8639 chameleon_parse_cells +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xfde7c4c5 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 0x17afd6af dm_bio_detain +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1ffff911 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2788215c 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 0x4290f118 dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x6650ca34 dm_cell_error +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 0x7624b26d dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x9097a1d6 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 0xbf76fa89 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 0xd8eb992d 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 0x2faa17fb 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 0x05a9acdf dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x312c905e dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x7b5efd3b dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8016885e dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x93eeedf0 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe71c7076 dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xf1859ae1 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xebb3b750 dm_unregister_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xee0e83f5 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 0x093f3cbc 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 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4aa5515d dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4f28e055 dm_rh_mark_nosync +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x767ca00a 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 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 0xb97e4549 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 0xd8aa4284 dm_rh_region_context +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0xd92e837d dm_region_hash_create +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 0x185a43d7 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 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 0x15c404fb saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x19e6d907 saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x27d37e57 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x39400025 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x5c342920 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x6ef0e8fa saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x74d0513f saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x8c56cc97 saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x90920b03 saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xf821a203 saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x168b69d9 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x32a3e23e saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb22d5d7c saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xb4df897f saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc023c5a2 saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xc1fd9745 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdf7262fd saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x074270bd smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x26f343fd smscore_unregister_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 0x469b8d90 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x492fd22c sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x5e56d18c smscore_register_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 0x7e6081b4 smscore_putbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x80ef5565 sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x844539ae sms_get_board +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x90e80860 smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x9452554a smscore_get_board_id +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 0xae42c83f sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xd897e34a sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe56fc1f3 smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeac81a76 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xee07f0b5 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xf0698d5b smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfdfc7370 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xfe5ab81a sms_board_power +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x211e77e6 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0x33fbaa43 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0x7cceb18e tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x04d0158a media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x07734e19 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x0e9f8305 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x17c7afd4 media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0x19572e50 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x1f907218 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0x3878e7f2 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0x3c8d64fe media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x3e0a901f media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0x4a0b3a43 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x5b414808 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/media 0x5d979698 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x65865f6c media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x73241fe6 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x8361a546 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0xeef576b7 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xf3a8022d __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xffeadbf5 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x823bf2ee cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x11f34628 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x1627cb8c mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x21f9e40f mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x2546a666 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x26c12b8f mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x35434b00 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x3a03f798 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x4b215bf2 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x619661ca mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x6a1d2a87 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x70e69a47 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x730c6f14 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x7e21456e mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x93d5459b mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa573f1e2 mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa6d55b07 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc061e803 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc9075841 mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xf5aa2df5 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x043cd06d saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x16a5032c saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x2453e7b4 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x483c2243 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x5e870ba6 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x680b5e1f saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x68c3cb10 saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8132bf43 saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8a73f805 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8db33b42 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x8f5827ff saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x996f8428 saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa0d69244 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb5ebfc0c saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xb6f4f886 saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc4f0ddb4 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc79e509f saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xd9e0f9b8 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xf0dfaaf2 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x126fac4e ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x2edbc32c ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x6cddec5c ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7d103a24 ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xa3bd033c ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xafd6b5b1 ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xdb4901d3 ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x050de15f 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 0x1cc419d9 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x283ebd82 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 0x972ff274 xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x9cdd8883 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xbc1b1d54 xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xec1f6bde 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 0x85216be5 xvtc_of_get +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0xa8a0f912 xvtc_put +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x02554516 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0x2be11d63 radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x00199f9f rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x07fe7bb8 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x09ffd48d rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1ad2a895 rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x261dd0c6 ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x2efc27d5 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x3289e478 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x553efb91 rc_core_debug +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x76b8b90c rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x906ec18c rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x993d368f 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 0xa8f401c7 ir_raw_event_set_idle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xb52d8ced rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbcfa2317 rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc23c0cb8 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 0xe61caead rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xeb05bed8 rc_close +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x6976989d mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0x438adb95 microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xe8612a80 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xf08d78ad r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0xf69f5e09 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x9ea49a5d tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xc264bae1 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xf5116922 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0xa68347f8 tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0x6b086e59 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xe81c9927 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x00f6efab tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8286c407 tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0xc45f1043 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x106b4d6e is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1af6c455 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x237b9b2e cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x3a786b14 cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4395f071 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4cff29e8 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5272cd1f cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6ab72378 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x74e1d622 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x80abf321 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x8c3653eb cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa232ab89 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xa33c5ba7 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xac1e4c7d cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xadaf5d55 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xb3b1552a cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xde30fe00 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xeb0ac6ea cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xefa3d7a3 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xf84926c7 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xf7556c85 mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x61b961af mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x07ba0de8 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x24453730 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2710bf95 em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2e5863af em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x3376b9ce em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5dc6c18a em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x79069ab7 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8602f9d8 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x9af3b0ed em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa8aa3951 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xb8f79c27 em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xbd65310f em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xc0e045bf em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xce076eb3 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xd6247147 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdf03aada em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xf8963d4b em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xfcc96f22 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x0e3ff8c6 tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x1144304a 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 0xc4e17134 tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xdff8e89d tm6000_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xecb155bb 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 0x34f846a3 v4l2_spi_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x5e076017 v4l2_i2c_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6f17288d v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x7ea9715d 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 0x8e377763 v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xf2254884 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 0x2e9c0a3c v4l2_flash_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0x85c8df72 v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1376377c v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1664e82a 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 0x18623226 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1b45f843 v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1e31fde2 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x1f1bbfb1 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x24b1c868 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x25914e0f v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x269ce357 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x323fb272 v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x36e86780 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x39b677d1 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x404f7048 v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x421af440 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x425a053e v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x5379b23b v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x687d349f v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6903fbcb v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79c7ce96 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x7b028626 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8c2f8dfe v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x9e5b5d2d v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc08e6905 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc5f57c63 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xefcadb6c v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf8fd6272 v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xfa2b184e v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0482e37a videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0555a2dc videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0e136b35 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x1902f131 videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x33ccb33f videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x36edec9c videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x44834da0 videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x4d33cbd7 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x57cc8869 videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x5b7134e5 videobuf_read_one +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x86282898 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x98994913 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9b309ef7 videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xa9722c59 videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb140070b videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb501c307 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xcd136bef videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd60a433f videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xdafe54a3 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe0abc657 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xe7087cc2 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf99a8ad7 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfb1088d1 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xfd149e98 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x553a86d0 videobuf_sg_alloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x6be50999 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x839b3e1b videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xf34d09f8 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xfe0667b6 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x064d2d0a videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x2dae115a videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x3c264a45 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x070d1e37 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x09f22161 vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x09fca653 vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x0c72bb35 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x12953a6a vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x18ad1173 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2125cdfa vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x3bb82777 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x5444ad40 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x547e9025 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x69ef5865 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7bf296e4 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x91bed0db vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xbca3da17 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd3ed30d8 vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xd81fffa5 vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdc44cbb2 vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe2cd99f7 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xc4f76ff3 vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0xdef2360d 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 0x1483595c vb2_dma_sg_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x96e8aed4 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 0xc5fb33ab vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x02d041f9 vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x07118c55 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0968732f vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x14d0eddf vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1699f6ea vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1e227d37 _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x26aea444 vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x309c47cd vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x45c2220c vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x49ba7bf1 vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x58418d79 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6976dca0 vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6b527f2b vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x77156b92 vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7f2dd75d vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x81e72871 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x87875346 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9660cf87 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x96c4b366 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x971154bd vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x993c9cc8 vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa866d562 vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xad5db610 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb87745df vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xb8d33e6a vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbf5a001d vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc4156fc2 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xc9c69d5a vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd958543f vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe35e04bd vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xedb56141 vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xfbe1bdf4 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0x1b14e4bb vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x03aa1669 v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x102c8342 v4l2_fh_del +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 0x20b9b0e6 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 0x33f8bbb4 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x364d8dff v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3b9dfc1e v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x41e5cfff v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x494320ef v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e894665 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x69da4ed0 v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x6c22354a v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x77f901cd 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 0x85b3ded6 v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x87181adf v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa79c814a v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa808b1e0 v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa903d8b9 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbc9effbc v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbf12f174 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc34d1375 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc5a348e1 v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc9e6ee53 v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcfbdd54e v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd3f18dfe v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xdae3c1b1 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe29cd976 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xf0580b2c v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfb142c59 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe8e127d v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x23503da4 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xce31a737 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xef9771e4 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x0bc53528 da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x3b86c105 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x450c6cd1 da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x4cab212e da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x58270090 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x827e8238 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x99ade2ec da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0b339595 kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x0c33b3b7 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x4afe09cd kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x65000f04 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x8785e0fb kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x9f47daee kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xae668542 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd4ca410e kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x27ccb1bd lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x80ec2a0e lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x96f8b86d lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x0afee109 lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x10cbff8a lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x5e5bb19f lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x77b43471 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x85abcd6c lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xcd342e76 lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xed3dc9b9 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x61949212 lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xb09ddfef lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xc581a3ad lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x0b892af5 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x814268bd mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xb0aca219 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xc1f8239d mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xcdc963cc mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xd3f7d6f5 mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x4dc91659 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x768ebe5e pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x7dc3be2d pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9287cb9d pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xa83312c7 pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xac77a5f0 pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe0dbe0d7 pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xe31c865e pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xea36eaaa pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf3d08e94 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf7f73e27 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xa43f86a1 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xd6934ba2 pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6d271697 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x6fd4631a pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x91de35f4 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x988403b3 pcf50633_gpio_invert_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xc555a834 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 0x04478b6e rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x06c8068a rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x0d1ec919 rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x15c27ee1 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2b905c3e rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2cd1e7bd rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x2ec9c55a rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4ce13d3d rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x4f16379e rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5ef25ef0 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x63d8b808 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x7196d55b rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x731e80af rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x83caa22e rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x8d1a3913 rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa9575634 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xaacb63f5 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xc38f37f8 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd366916b rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd71d4b5f rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xdb0ce55e rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xed97ef29 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf0b905db rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf228fb86 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1bc620fc rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x2d0527cb rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x34c7eea7 rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x4d82c5fc rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5b28f4be rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x5daa9477 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x6050fa86 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x82dedf65 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xbf06992d rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc144e611 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xc4c5fcf1 rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xd6f70c52 rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xe53de56b rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x00db7e44 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0a44cf67 si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0f533ca0 si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1701a859 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1735b060 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ad586ab si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1cd7d062 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1ecbe956 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2734d7ee si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x293a0007 si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37e35446 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3847d3e0 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x505e58fd si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5c7cd681 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5e8fd5d3 devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x60581afd si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x6e840598 si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x744197c9 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7ad46025 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8b55bf23 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8f257878 si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9d19098f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xad68de4d si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xadbfa1b1 si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb40285fd si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xb9fef4c2 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xba3f44b4 si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xc6c95bb1 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xd896db5d si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe6f5925e si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf048bfe1 si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf2ed8d2e si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf8943c38 si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xfe0811f5 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x1adedc88 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x378ae6d4 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x56eb616d sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x77081bfd sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xe55bcbe3 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xdcc4f852 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xe0876422 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xf6a280be am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xff2e2753 am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x49fd7339 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x775ed136 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x7c90af9d tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x9662aba9 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x2a83c90e ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x064e04c9 bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x5a0c1029 bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x9297a028 bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xae93f861 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x04aa9f13 cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x2c361b27 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xb531f330 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xe7f5b45d cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x07ef46bd cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x0b115fb9 cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1c7eeb13 cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x2f32f382 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x3c062399 cxl_fd_read +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5306b59c cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x530d7385 cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x563e2678 cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x56c8eeed cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5f4f71f7 cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6c251af7 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x81504afe cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x91fc8266 cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x92656251 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x994013f3 cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa6990834 cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa7238ec1 cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa90a9372 cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xca3730a7 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xcc624131 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xceaa5535 cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd0998abf cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd2710813 cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd3f7aac4 cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd580447b cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd5f36713 cxl_fd_release +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 0x0548e25e enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x324250e8 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7d37b957 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8eb5452b enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x97938ca4 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbee787c2 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xcd4be999 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xd3b8b7c8 enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x097334c6 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x100c68e4 lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3ffc42e9 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x6d5b9cc4 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x83aed01b lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xb55230dd lis3lv02d_joystick_disable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc2404934 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xc56674e3 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 0x0bcfcdba sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x19aec9f3 sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1a987c0b sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2130b525 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2b1c5428 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x3c337a78 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x71b9ae82 sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb4b4df02 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xb869d6be sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xbdd0868c sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd67d527c sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xdd4af721 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xebd01c9e sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xfb740d16 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x01810985 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x1756e22a sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x529eecd8 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x66053ce2 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xafb676f3 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcdfbfdea sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xde584de4 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe1902276 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xe635712a sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x173d6fc0 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x28144a28 cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xd50a6fbe cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x3780d8dc cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x49d2930c cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xc479175a cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0xa647be5b cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x4ad4abeb cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x7bcfdcd2 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xf2e0f153 cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00c28282 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x00df543d unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07681668 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x07723407 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0e4a9582 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0f9f438a mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x18ce264c mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1ad7ef38 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1f3073dd mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2c6ce3d8 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3231ff85 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x41f90658 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x461fb85f __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4d371d7c mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x579a45b7 __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x587ec9a1 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5ccb68e2 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6724794a mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6c95ae23 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x76b6c942 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x805282d9 mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x872a1191 mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x8f79ed71 mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9947579e deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x9c5aea1e get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa01fe1aa mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa8076a4b kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa83a763f mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xabc81f50 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaed15fe8 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb20444f4 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcbc35a4a register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xcd36ca8d mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd55aa5ab mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd6ecfc79 get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xddadfe51 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe3a444ee mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe5a7a894 mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe9150671 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xebbf8482 mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2d92cdb mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xfe72d70b mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x25e2f37d mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x5847e69d del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xd319e75a register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xedfe25ef deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xf6c8c7ff add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x02d47ad8 nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x56f93ee2 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0xc674511e sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x9064e311 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0xee191b62 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0x7b8927b7 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x01a23feb ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x03217127 ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x07cd3cab ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0d86c8f6 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x17debc7a ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x2a26913e 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 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x63e6b95f ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x641796d4 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x6778286c ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa1c608ba ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa949d753 ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xcf7f5fce ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf08a5699 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf673ae27 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x1320e595 devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xe8daa16d arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x3d40c77b c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x4be008fe register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x66b51b8b alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x71426f65 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x7acf4749 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xd882b4bf free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0a04d299 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0d1de871 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2c1faf85 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x2ff588e1 free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x343d9a22 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x3f296583 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4a780e65 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4ef2b796 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x5f8f0351 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x6abbb2af can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7d92e7a9 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x817a5435 safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xa7d4ae09 can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb404b6ac register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xc28710d3 alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xe8a06ece can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xea7064bb close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xee51e170 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x29099ed6 register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x5698bae1 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe1eb3a41 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xe9ecf973 alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x07478542 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x44f80df8 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xe8fc368c register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf17d79ab alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x064e88c6 arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x37643da8 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00464e00 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00783d94 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00e1c13d mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00fd3098 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x01127c3e mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04102eb7 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x04d106ea mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05a22f2f mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x05ac578c mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0735338c mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08475816 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b6bbf4e mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d2541b9 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10d759ea mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x122204a0 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1301d51a mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1344ebe2 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x14185b62 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x148fa21c mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x172fcd3a mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a3a6923 mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1a822ad6 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b225511 mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b4c5728 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2600e7fe mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26ec7f0f mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x283271f0 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2adcb4f7 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ae14dd4 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x312d6ef0 mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x357995f2 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f6a8571 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4225066d mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x43382af9 mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x44976d34 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46f32fbe __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4857564a mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aa574bf mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ce05dd3 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d5c413a mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x511f5130 mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x515a4e1c mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x522a14ee mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5255a10e mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5db7b12a mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ee05fa8 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5fea7ead mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x62570f33 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x631d502a mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x667f5938 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a623801 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b3cb871 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c03288b mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f0cb22d mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f63e379 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fb1d328 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x761cd47d mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7a9aa2e6 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7bb81118 mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7c01dbd0 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d6b72d1 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7fe2d2ba mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x807427d1 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8432a37c mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x861e9263 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88541129 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ccf3e51 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e8d58be mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92d143f5 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9705fe45 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98733999 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x98a3081b mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ef00a69 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f63b90b mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa4d4139b mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa66ff860 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa6a5d142 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9a31dff mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac61800b mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac68220a mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2d6c9b6 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb410c330 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb46e3277 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7ec1602 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xba32ea4c mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0b404f8 mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0e1e0f9 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc2772af8 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4171baf mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc570aac3 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7e13d29 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc8ce6472 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc90b79ad mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcba18255 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcbefba2e mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccd2d697 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd8d8de2 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf23255d mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf59f224 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd0c2be03 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2892f76 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd72d52da mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd8dff95b mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd92a06a5 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd9f06d17 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda3d799d __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xde0798ea mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe01a4bc9 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe035ff46 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe05c4516 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2eb989c mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5cde631 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe6c56968 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe92d0a98 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xea42bea4 mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeba39016 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xecc8808f mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf285551f mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf2c9944f mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7692c4b __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf7b917d2 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbabcffb mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfefabb53 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff947960 mlx4_vf_get_enable_smi_admin +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 0x0c2417fe mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0c839a5b mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0f38718b mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1400e384 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1912abe6 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1fd9d857 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x20a73ee2 mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2aa96eaf mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x30b10782 mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x37e79f94 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3b256b4d mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3cbb4692 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x477207f0 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48459544 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x4e074f5f mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5e449af3 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61c08f2f mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x646878b8 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6d425ba5 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74563993 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x74f89fe8 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f23e0da mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81ce70d5 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82f331f3 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8d7dc86a mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x95127ba4 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x974f6707 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa7dc5e59 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab5ab92a mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xad4144bc mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbcb18577 mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbf9aff49 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc0cdb55c mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbb1baa3 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcbbffa22 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe4d8002d mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe702b6fb mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8318efa mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe8ed146b mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xec0c7bc9 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xefd2d4be mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf8b2812c mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf90bcc1d mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb4e9e3b mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfff292f7 mlx5_query_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 0xfe8abd2e devm_regmap_init_encx24j600 +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x1ca861e1 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x6b06aba3 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x80d3b212 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0xa7c735d7 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x11b76d53 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x4c11b135 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x674774f5 stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x938a20b4 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x02d116b2 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x183ddf13 cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x1e9128f6 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x241e8d7f cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4dd3d227 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x534dc97f cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6087742b cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x6fb8e527 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x78189de4 cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x7b3385fd cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x882c54ee cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xab6bf2c8 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xbe515b95 cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xdc40e347 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xf28f55dd cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/geneve 0x3b5a4017 geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/geneve 0x545bfeb4 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x79c3fd7a macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x8b1acd36 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xc4557547 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xe2a61589 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0xfe617863 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x28826b77 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x46cb2241 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x728d1586 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8100a74e bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x9bc6480e bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa6f318b9 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xa7d5a4e5 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xba70c68f bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xca504843 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xda57a65c bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x8283a504 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x350a8746 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xa4c94e59 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb4426748 usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xe0ff2428 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x505006c1 cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x5e190195 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x7e6e4b1f cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x892f1f8c cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x973fd720 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb0d2ef2d cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xca2255e1 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf09ca720 cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xf6d634c6 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x3a0e802a rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x451604ac rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x6ed9cf9f generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7f05de3a rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xd4898a76 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xf30c04c0 rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x01cabc1d usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x0204f903 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x10609b48 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x146b2d65 usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x18a65b1a usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x20965db4 usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x21690bc8 usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x23260f21 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x312269cf usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x4ae265d2 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56bf9109 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5a4de335 usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5b7a85c2 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x5f50dd1e usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x74ab18ab usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8cc15a2b usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x90a5a5ca usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x90a68aae usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x915791ed usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xaf591a03 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb16c587d usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb320f3a3 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb46b8401 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb9f648ae usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd02197a3 usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd1a00d25 usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd51911f1 usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd6b3596b usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xe90adaf6 usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xef58901c usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf1658cfa usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xf492d5ee usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x6884f19b vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x9ee01df9 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x03d309f4 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2eb558c4 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x37ee4082 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x5c0f9d8c i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x61d167f8 i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x62b20040 i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x749fdaa6 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8067aff4 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x86ee7564 i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa31b3a50 i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xa726d723 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xab769f99 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xc21e4300 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xcfecf7db i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf6e9c3f8 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfb42664c i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x26885070 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x2ea81109 cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x733e511a cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xaae7c414 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0x7a4dd681 libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x278db30d il_dealloc_bcast_stations +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x6945c50b il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x70f37e53 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xe5865674 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xfa803b36 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x002b2e74 iwl_init_notification_wait +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0a713bbb 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 0x0db82bbe __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f32fdb3 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x207d66be iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x233d9d00 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2a44acea iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2f82ddb7 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x35033c81 iwl_phy_db_free +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3ed0c4e6 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x46175227 iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x4d3bbda6 iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x54ba0b0f iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x58e7ded0 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5965f03f iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x62ed6953 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 0x7bc1c1e0 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x7bdd5948 iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x8399b321 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x84408991 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x92bffe41 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa01d00da __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xadb7bfe1 iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc67c31ed iwl_notification_wait_init +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xc8d55c7c iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd5925519 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xd63c9928 __iwl_err +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 0xf8af98a2 iwl_phy_db_init +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x363dc5db lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x436dd088 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4dae06f9 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x59f3b91f lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x78473be7 lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x7bd73c88 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x850acddb lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8b94f42c lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x9181e45f lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa78f08b0 lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa8a8ef36 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb372cbbe lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb8ba4fbf lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbe4d9626 lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc44a7547 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xe28fe99f lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x39ffa540 lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x517fe034 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x7951e2a6 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x88858adf __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 0xc8bea8c0 lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd6fc63a9 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd76a9bc8 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xd8de46d1 lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x00372a8d mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x1d367eab mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x26a6c708 mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x292762fc mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2ce18b28 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 0x35fcd0c0 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x445887fd mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x47ce196e mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x695323c6 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8c5a923a mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x8e087069 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xad1e2485 mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xae0fa52b mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb449e726 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc42ca836 mwifiex_deauthenticate_all +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdc347cfc mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe0b9993b mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xed68354f mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xfcf0edc1 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x234c7d03 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x257c1584 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x2950c4c0 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3005c701 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x3cdd9260 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x6ac8edd9 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x867d4069 p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x8c01b733 p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcb751105 p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x52f94ebb rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbc5e53a8 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xce604d6c dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd674240b dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x07a91558 rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x09bc23ce rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x0d1c08e3 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x1065d8e0 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x130936fb rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x14a825f9 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2828883c rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x3ed58dcd rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x4819a53a rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x65517dd4 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x66e42f03 rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x675f21d8 rtl8723_enable_fw_download +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 0x71472d09 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9c09fbe4 rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fa14022 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x9fb69f9b rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xa5c2b1da 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 0xbae9d4c8 rtl8723_save_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc040ee51 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd0f01511 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd412b6b7 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd7f2d59f rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe78d6cbb rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xee01a46e rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf0e0303d rtl8723_download_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xfe193fdd rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xffe9a636 rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x02cefc03 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0bfdf4c2 rtl_beacon_statistic +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x14c8fd1d rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1a81971a 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 0x2476204b rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x28b1f6aa 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 0x4f2b5ad5 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x524df752 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5c2d86e0 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x5e5846fd 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 0x76b0c476 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x85ba0ec9 rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb1975abe rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb85463a4 rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbc6b9102 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcc33bc35 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xee886350 read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xef6dea85 rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf83438b6 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x43072e71 rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x80bc5f62 rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xa9f717b5 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xd7138db4 rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x05e68ff5 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0d8d9e3c rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0f414d43 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x1025f250 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x14b93b6b rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x17f9e0e7 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2215ba7c rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x28869a82 rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2938483e rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3009d778 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3cc4d60c rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3d950b72 rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3e95f971 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4599b9ef rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x47b08c2a rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x486fd1e5 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4b18cdd1 rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x534229cc rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x54bf7047 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x649c7fcf rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x66bca589 rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x6891e849 rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x856eb530 rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8621bceb rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x87681caa rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8d050782 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8dfbde36 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x932c0a22 rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xad9a675a rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb0b9cde7 rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb4340583 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd2758ac6 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd5f6e420 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe6b1845b rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xeef6705c rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xf77b045b rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfad455e1 rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfb6a63df rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x02c9bc83 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 0x2ad1e1db rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x470604e6 rt2800mmio_fill_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x631b4122 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x7e371fab rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x80abf1bf rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x8ffc83cd rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x91c7bd14 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xaa0b8054 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xaf333470 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xb1fb6958 rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc06026f1 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc6a1455e rt2800mmio_autowake_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xdfbd04c4 rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xe28f94c7 rt2800mmio_txstatus_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x018dc09f rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x04ee243d rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x0f397965 rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x11506371 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1bdff659 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x29bd8b26 rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2df63894 rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x335d9d22 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3421a1ca rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x36ef3213 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x38270cc7 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3e6e6957 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4079be8b rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x472952e7 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4961ce30 rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4c9f53f3 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4d787721 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4f3a5cf0 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x507a2666 rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5704e6f8 rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x58d5ce3b rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6bc324bc rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6ce999da rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6e992db4 rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x73917662 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x7d247dd5 rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x82fb5b42 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x8db0bbbd rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x90971d48 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xafee4257 rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb5f27996 rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbc5469d5 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbce00b48 rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc00d66cc rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc49fb27c rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc56931c3 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xcad1682d rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd09f9ac8 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd32c08af rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd4569010 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe94c28d8 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xefd7c586 rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf388589f rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xf52164c5 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfc18c3df rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd83f660 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4e7a21a3 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x51da740c rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x6bd81ff8 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe5eec380 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe9c0fa33 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x03149ca8 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x070ec5e3 rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x74c70547 rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xe8713064 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x3148de11 rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x43de87df rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x741669e2 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x787e72b7 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7bce104d rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x80198776 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x80e37664 rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x82cda6e9 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb49cd99f rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xbe365904 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xc7b8274d rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd47578d3 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd5ad8b71 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xd9519d39 rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xee568b73 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf33fde52 rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x66541a45 wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xa03862e9 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xad8b7b8f wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x037a4920 wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0b6101c4 wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0f541512 wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x133750bf wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x20d2a26b wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x28725396 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2dd3cd9a wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33eb0283 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x400f5a8b wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4af1145c wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d541ace wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x4d89a636 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 0x544d2d1d wlcore_event_ba_rx_constraint +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x579c554e wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b8f1b96 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5ed44c80 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x60488067 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x625db85b wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x68e6e593 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x694e7680 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x69bdee1d wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x713964a2 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x77092dcc wlcore_get_native_channel_type +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7a08fdda wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f160ab0 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x8d6e063a wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x99eb0e22 wl1271_debugfs_update_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa13299ae wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1a1c893 wlcore_scan_sched_scan_ssid_list +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xb0200a1c 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 0xbb518c24 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xbbabf4ae wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc8abde44 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc9cf9881 wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd1d21f09 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2a30393 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd2b787a8 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4b9c3d5 wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd4e50937 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdaa70407 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xdf5acf05 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe2dd114b wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe47de41d wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe9203aad wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xf26e2ac5 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x8fc0d64a nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x9c66e188 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xbccb40ae nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd17a5138 nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2aa1049d st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x2d6177ef st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6be9ac06 st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x9239bac8 st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x96fbbe6f st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xdc879317 st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xe91ba297 st_nci_hci_load_session +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xf081c46e st_nci_discover_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 0x5a94a8b6 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x5d6211cd ntb_transport_create_queue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x6a5be36e 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 0x13138501 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x141217a9 nvmem_register +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 0x35fcfb4e of_nvmem_device_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 0x63babb1e devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x6761c939 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 0x958a4aca devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa457b938 of_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xfe828daa nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x3c064af5 rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x991ff556 rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xd99b76dd rpaphp_get_drc_props +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x18d5a6fa pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x2ef8350a pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x5a51faff 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 0x0884c41c ps3stor_teardown +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0x965f4416 ps3stor_setup +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0xaf69fa6e ps3stor_read_write_sectors +EXPORT_SYMBOL_GPL drivers/ps3/ps3stor_lib 0xca118748 ps3stor_send_command +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x38782c40 mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x442c4779 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xb734eef3 mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xc38eb2d3 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xf9d4e715 mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x01c2c4c0 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0b428e47 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x33f6a72d wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x564edfda wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xa2c058cb wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0xe5baf47d wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xab281aee wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0561a539 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0b36d4cd cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x11573ee2 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x123dc7ac cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1a24c408 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1bc50144 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22f0c024 cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2581ea1f cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x28fd5e1c cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x341f996c cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3a5c4389 cxgbi_ddp_page_size_factor +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3c45e763 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3e0586ab cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3f953615 cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4814c084 cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4de5e9af cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59d5349f cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x65887c2a cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x664549da cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x6de7b790 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x786949d1 cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7ee2a8a8 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x819e55d0 cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x83a5ec9b cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87a46043 cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x881f3e4d cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c48d774 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9637fae4 cxgbi_sock_fail_act_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa0955ae1 cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa1112de2 cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa5fead64 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa931d8b5 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb383e21f cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb6c6e7cc cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb92d2b0f cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xbf1df92c cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xc6f1eabf cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcb957685 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xcf46c4e7 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4916f1a cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe262e0b0 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe2e56847 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xe77db080 cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf4bd2446 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6b25456 cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf9aceeae cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xfded5363 cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x03941edd fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x09fccbbd fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x1cb1ee1c fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x52af33c1 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x571a8e45 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x580d5a4f fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x5fde4658 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8d213f7e fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8effdcfc fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x916daf50 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xba925177 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc6d7ba31 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xcec364bd fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd4d32dd3 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd8f2aa18 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe224869f fcoe_get_lesb +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 0x005e58df __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x08fdbd90 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x103d135b iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14069c2b iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x15f05eb4 iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1654b232 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x18142d51 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1ae7d9f8 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1c57d833 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3139261f iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3ca686f5 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x513317b9 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x552d0456 iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b34d085 iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ea8a9a0 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5ff96f98 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69d73d12 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71992812 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7287738a iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x72a964f8 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x761fd072 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7798ae3b iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x797a5ddf iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7b605ec0 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x80de2248 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8682961c iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8744ca2f iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x919b0522 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x94d4a0ef iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fea5f20 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa46b2aa3 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa64ec7a2 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc77a033 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc964300a iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd557f9de iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe067020e iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe16d4727 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe43507e8 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe78587d2 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xea0b4e42 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf895c502 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xffc65696 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1207c38b iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x1b8d3207 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x3598392e iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x434d859f iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x49a0a484 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7598442a iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9423b1b9 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x9ec32368 iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb4623cb3 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb55ab116 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb797b38e iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbfbdb106 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc5bc48a6 iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xcb4a3d8f iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdea4451c iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe36f5b4e iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xefdf9152 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x09b1f65d sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x165b7e73 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x217832ff sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x25b292a0 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x28f2f685 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x53b608f4 sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x623815a4 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x70332a2d sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7fcc3202 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8d598fcc sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9f058fed sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa89b660e sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb328ba30 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb84d3652 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xba68d0bb sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xbd8a8953 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd2c7104e sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd880c268 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdb6555c5 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe2fac133 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xe50d5458 sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf1f99369 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfca47ec4 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xfff726f1 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x10b24a12 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x116d0602 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x13b91d1e iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x19dbca22 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1ae92a96 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1cd4a709 iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x242d4f62 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2bdddf11 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x385d9b90 iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3b7b0a5a iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x48fffca7 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49e83e05 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68cd2ac5 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 0x6a7c5d85 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7e154bef 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 0x86ed943b iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x89671b60 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x91485d70 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa395dc73 iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa435be2c iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xabd1421c iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb34f4479 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb37e3f2e iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb43b2382 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb765e83c iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbe4bcc3a iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc6311f01 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8dd0f48 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcc27c08d iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcdec1f65 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd15ab817 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd9ecd63c iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdaaa82bb iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xddcea9c1 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe3d1d4ff iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xeb01b488 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xec5f0058 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfcb3146d iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfce12889 iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xfea6badf iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x42556069 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x5729d574 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd5218293 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xfc769802 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x9b2b18c9 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/ufs/ufshcd 0x0fc7572b ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x27bc7614 ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x297d0c15 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x2df2db1f ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x48df9409 ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5906343a ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xae43c774 ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x25bffb47 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x755420ca ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8898089a ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x8d9ba950 ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbae68782 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xbe1cfce7 ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe126087e ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x25f87840 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x8a8b8d87 spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xdfbb8828 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xe6b45fd7 spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xf3a28e7c spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1a111010 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x1c37db74 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x412a520a dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe3d7a9b9 dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x0511ca9b spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x081d7f80 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x290ed207 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x30b25a22 spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4215335a spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x54fe98e8 spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x55b8b9b6 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x575e088a spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5c92d644 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x7b773587 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x90539f01 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x951686d8 spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa87518e0 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaa7aa824 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xd2464763 spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xef64285a spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xf1ecd158 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xfafb237b spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x736266e0 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0cd330f4 range_unknown +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0f2c4ac6 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x19ce057f comedi_alloc_devpriv +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 0x28858881 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x324eca98 comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x350b69a2 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4f3be450 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4f74811c comedi_alloc_subdev_readback +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x507d1f27 comedi_dio_insn_config +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 0x60047939 __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6dc9a332 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x735e7a49 comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7500581d comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x7bae440c comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x82d74e76 comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x839a2178 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8a59073a comedi_buf_write_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9bcd6eba comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x9f2a1a84 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa15de36d comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa5a78e83 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb1638e87 comedi_alloc_spriv +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 0xca630d21 comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcb070c80 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xced668a0 comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcf8fff73 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd10b39b7 comedi_load_firmware +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd84619a9 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xdb2044b2 range_unipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xddd20d42 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe4df2730 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xe8c16bf4 comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf5a6e8ff comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xfb28e954 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x27c64055 comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x28f2263b comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x519e8394 comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x737ca82f comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x849ddf4c comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xac4f8b65 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe071ce34 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe2a70e5a comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x07041c82 comedi_pcmcia_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x123ae7f1 comedi_to_pcmcia_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x2ad08267 comedi_pcmcia_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x79410cc5 comedi_pcmcia_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0x900732d1 comedi_pcmcia_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xd0442320 comedi_pcmcia_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pcmcia 0xea93d7fc comedi_pcmcia_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x352efb99 comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x883679a1 comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x97f5bd72 comedi_usb_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xcc8a9ac4 comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xcd34722b comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xfbc3ef6f 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 0x87f80e4e addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x380e1902 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xb0adf13e amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0xe29ae736 amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x08ac4c15 comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x272a59e7 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x4a7d545b comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x57fa3da9 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x66eff644 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x78ebc513 comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x8b855473 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x9e9de54e comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xab6ec464 comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc8c5ed0b comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xd1d3f68a comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe1fc68ea comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xecdbf5b5 comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x94d5d537 subdev_8255_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xd3497759 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xe6010f19 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 0x82712a74 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 0x1c6ca407 das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x08c75c6f mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x0a9590a2 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x10af81c5 mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x2faee797 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x3a64243d mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x42254a3e mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x47e9797f mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x53fc0eca mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x55b5ebf4 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x6815c401 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x791e5c14 mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x89e30947 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa12eee52 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xaa341a70 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb0d770ca mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xbd6ab292 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc5c303a0 mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xddecda27 mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xde46f18d mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xe1098680 mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xf3ad08e3 mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x2325744c labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x5b5296ed labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x04c06bbd labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x240e5b79 labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x32655c41 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x5c0a351a labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x68d26a65 labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x031a79e0 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x0b238e85 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x320a78e6 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x3b51bf35 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x40c42456 ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x5a04cde3 ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x9d7f306f ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xccb7af79 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x617a9d22 ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x64c880f1 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x6d418d16 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x950b9f62 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xc2f99efd ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xd0934569 ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x12fe35c1 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x254cb3a7 comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x63271d6d comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x8134b799 comedi_close +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x91765b64 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbee718eb comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe0d45b7b comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x7096478c adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x021d2a76 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x1f4c0886 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x223198ec most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x4c25dc38 most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x52bac784 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x8257cda9 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x86893788 most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa3765179 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa57f8df0 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xafa8324e most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc6179668 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xd80384f2 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 0x1c46af59 spk_synth_flush +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x2fef2f8d 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 0x5ef7c318 spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x62007471 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x8e146195 synth_release_region +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x945c377a spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x98f1676f synth_remove +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 0xb954b90c spk_synth_is_alive_nop +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 0xc91d4569 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 0xec42b6d8 spk_synth_is_alive_restart +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xf74c6e69 synth_add +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0x6f3fcc16 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0x7bdd2df2 __uio_register_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xfc29f16f uio_unregister_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x3d9c7026 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xf377e35e usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xb430e28b ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xd849a5a0 ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x052c4400 imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x11194079 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x9bafcbc9 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x11a0c309 ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x309f9b13 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x620b6030 ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x69ee2369 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xcabe5b24 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xf7dd2d23 ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x17332a96 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x18d9bce6 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1ecebcc9 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x22aeea18 gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x27a4cf0d gether_get_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x3e1c24da gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x436f2449 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x4b85b6b9 gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x6c122482 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 0x891a1fc6 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xafda3eb7 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc2e9a802 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xca39dbdb gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xe697af76 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xf8dfeda6 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 0x8a1d891b gserial_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb0d7eecb 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/usb_f_fs 0x4ac99025 ffs_single_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0x542308ae ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xb0e5a0ed 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 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 0x34529477 fsg_lun_fsync_sub +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 0x3e8265c5 fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3f908dbb 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 0x4c018cc4 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 0x56201bfc fsg_show_cdrom +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 0x5d09280e 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 0x6ca43a26 fsg_show_nofua +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x747b0d30 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 0x8044bbd9 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 0x9165e0a8 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x92e43857 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 0x984b98f5 fsg_store_cdrom +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 0xcb544c7f 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 0xda307d27 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xe936283c 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 0x00c06c30 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x251deb24 rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x365c2920 rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3eb75dc7 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3ef2f0a5 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x471bedab rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x4fb40e0d rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x511450cc rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6780496d rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x8d58fc8d rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xb42d1c07 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xc8f195f1 rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xcd140451 rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd2858a4c rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xed472d9b rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x00822eba usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x034f7d67 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x09be6332 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x14ae6aa5 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x334c757e usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x34a35c35 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x37b920cd usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x47612cac usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5558298a usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x581f5306 usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x59edd0c0 unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x67aa64e9 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x81a430ce usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x89b6a114 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x92aa4c55 usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x93eb5204 usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x943a4c82 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9eccce3c usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xaef70b0e usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb138b14a usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb421dc52 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb9beb3c7 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xbe268fab usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd0469f55 usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd70324b5 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd8c6b85f usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe04f042f usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xe3a8ca40 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xec7769bf usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf83c3d3c usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x169a82e8 usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x29229d8f usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6d43b921 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x781bc5e3 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x802796fb gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x8bbecb97 usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x9e90f593 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa19fd9eb 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 0xb2c056df usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xb55adabe usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xd7c4963a usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdde67310 usb_del_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf7dd6321 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x28bb574d ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x667a4e18 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5389b281 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5942f112 usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x677c711b ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x68359ac3 usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x7b5dc37a usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x92c72294 usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xa72b8ba2 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xbbb25715 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xd4b19c8b usb_ftdi_elan_edset_output +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x0892ae1a musb_writew +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0x30b14f68 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 0xb978afca isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0x3f066ef0 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x069527cc usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x0e1d36fb usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x22e28d75 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x341ccdd9 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3b94dccb usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x52518421 usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x577af656 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5d0462eb usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5edf453f usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x6058a984 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x780be543 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8d35a018 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9291c609 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x971f6324 usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x99b70089 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa185b096 usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc3466ffe usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc98aed7d usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe700b184 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xedcf588b usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfcd4a951 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x01cbce9a usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x0803ee82 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1004e5d8 usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1bc3edc2 usb_stor_sense_invalidCDB +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x25ae1ff3 usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2be171ad usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x2dd112f6 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x34c542b0 usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x4aa9d483 usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5812b1fe usb_stor_bulk_transfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6916ef84 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6952e20e usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6d895278 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x759137ad usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8da60aab usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x93f8625c usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9ccdbe9d usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x9d72e6d2 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xa20e1b06 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xae43ea83 usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xbf02a635 usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xd5966274 usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe8ce19a7 usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xeb883029 fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf8e16a44 usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x0c3d86b4 usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x4c3c8b3b usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x599047bd usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x68c07e1a dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x72383fde usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x7e0ff5d1 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x8c196eb3 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 0xe56b9edf usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xed6de296 usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xf008e850 usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfae306b4 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xfdc87528 usbip_recv_iso +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x01665ec7 __wa_destroy +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 0x140f730e wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x2fbf5ddc wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x448b242d wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x6fff8ad3 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x989e8008 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xab8235c0 rpipe_ep_disable +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 0x26e2afce wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2d6df08d wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x2fb7620a wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x3d6e08b4 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x4f2c6e8b __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x69345f7b wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6abede12 wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x6cb2e799 wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9744f93f wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb2d259af wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xcde149bd wusbhc_rh_status_data +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd07c510b wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xe8f3a8eb wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfac1bb6e wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfe2e17d7 wusb_et_name +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x57d9396b i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x78f13b50 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x8133425d i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x09cbf105 umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x12195b6a umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x26431089 __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xaf8758ab umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdef37ab9 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf1c64aeb umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf6147e18 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf7435e83 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x082e6f34 uwb_pal_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 0x10a8fe5a uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x11f6e9b3 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x146600ed uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x23550d3c uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2c64ab0e uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x307c02be uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3633f8f6 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x3c6f4646 uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x408e9169 uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4e01d1b2 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x517d356c uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x53b92d63 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x55df5050 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x56ded822 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x56ece70f uwb_rc_vcmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5757844b uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6684642b uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6f47cb8f uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x893e9273 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x92575ef1 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x92d43165 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x976929f6 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xa9b27f72 uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbcab7783 uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd6ae960 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc5b3cad6 uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xcee01d25 uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd7d11f86 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xd8f8e74c uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe2f637f0 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xef2816f3 uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xef551a56 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6526f80 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6649f8e __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xf6eea873 uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfbed4f02 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x77a1b23f whci_wait_for +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x069a7989 vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x0b3148b2 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x38c08e24 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x42ffed5a vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x92e86093 vfio_external_group_match_file +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 0xaf206bf2 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 0xccd9895a vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0x43f6429d vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0x5843d8ba vfio_spapr_pci_eeh_release +EXPORT_SYMBOL_GPL drivers/vfio/vfio_spapr_eeh 0xac0624b4 vfio_spapr_iommu_eeh_ioctl +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x4eded0b5 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x74c8a974 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x09d35d5f vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0c914408 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2b06855a vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2ba645a3 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x2d8c9aa5 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x387235d6 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3f88e371 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4ac9e6fe vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4e25114e vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x54333ef4 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x57adc82f vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58da18fd vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7639db05 vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x79ee981c vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7a3f4475 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x958c2351 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x98aae018 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9a86d14c vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa56735e6 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xae41cf77 vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb10dd231 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbe3d186 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc6691cb4 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcce9538e vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd42dede5 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde271ff4 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe0d2cb4a vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe28ac7b0 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf802589d vhost_log_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x0497753d ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x04a523ee ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x335d4826 ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x3952127d ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x46919cd0 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x8b1bf5b0 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xc80a396c ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x43c3fe5a auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x61f7f96a auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x6257c7f2 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x770e3284 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x93586ef0 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x9ca3cb06 auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xa759a396 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd30533a2 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd501a047 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdc77a9ce auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0xec43e208 fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x1c4acd5b sis_malloc_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x3993dd3d sis_free_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0289c972 w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0x57c3b6da w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x58a67e9b w1_write_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x654a9f74 w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6a79e95f w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6dff6995 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0x6ff16ab8 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0x71cc6e03 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9a79ae55 w1_write_8 +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x546fb0ea dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x5f305cc8 dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x6eddbd2f 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 0x29f4f442 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x33328e58 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3c592cf9 nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb647fda9 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xc4b1d67a nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf2e1f2db nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xff6fc2e6 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x034e4fc1 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x05ce85f4 nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x065e017e nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0860d642 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c686616 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0cfefbe0 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0d7b5b52 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x13f8d551 nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x14682963 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1476b425 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x157659cb nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1996eb57 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a07ea10 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x20102883 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x262551ef nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x283dafeb nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x29091f90 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a0876f5 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x32e1d3b2 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x35185318 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x373e9e23 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x375c7791 register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x379ac727 nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c202697 nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3cfdfafc nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e91b20d nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3f2690f2 nfs_check_flags +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3fea6642 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40306948 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x40739385 nfs_wait_bit_killable +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41efe8df nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4401c6b7 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x45fc2a2a nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4a24bf79 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e18aecc nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f1b54b0 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x514a02e0 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5407b7f7 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58407e7a nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e5f93f3 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63df0092 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x665ffbc6 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68b09d86 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68c51580 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x697627fd nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a0adeca nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a4234ec nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6da408fc nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x702275e9 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74274394 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x77c02d4c nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a173b53 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b411dde nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7b634780 nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7d642d1d nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f2ab611 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fd49c67 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8256c12e nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x829d1532 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83d2a15a nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x852679bb nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x88f11f43 nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8a86d95b nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8ce30936 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8de290bc nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e995ccc nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91c405d0 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91f2812c nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x920b0073 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94297a76 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x94c9c567 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x968d7a80 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b85ed8c nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9f0e1e00 nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa106ebd5 nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa179b72a nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa18075d3 nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa26a7f49 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa3eee67f nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa58d027d nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa60f8cb3 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf958a39 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xafd84028 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb047f09a nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb1d7e214 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb99873f2 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbd9a18b3 nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbda3660c nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc00088ad nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc350de6e nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc38d9595 unregister_nfs_version +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 0xcc820dbb nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcdf2789e nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf57f1f9 nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2342f12 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd32fecbb nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd9011cc8 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb0e9cfa nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdb8a6d77 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd9de9ba nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdf653914 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe079b615 nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe140bda4 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe19b86c3 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1b55661 nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe431ce8d nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe46d9748 nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5180840 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe52c9be0 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe556253d nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe5ff995e nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe78258b6 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xebbb4908 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xec31301d nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xee625984 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf07b58a7 nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf085fe70 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2010644 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf253e05c nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf39c210c nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf896bef6 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfab28051 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb1d1514 nfs_file_release +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 0xfd81d6a2 nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfee040ff nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xe4ab995a nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x010e3e5d nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x030b76a9 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x040d4113 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x065df778 nfs4_find_get_deviceid +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 0x17a0ef40 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d6296f3 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1d63e9d1 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2d61a617 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2e6f2991 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x301f17d7 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3403451c nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x370245ff pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x425eb83f nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5242666e pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x54d8c075 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5633980b pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x691ba40b nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6abc34e4 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6b8e972c pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x75033b70 pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7b45aaf7 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x84abba2c pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8668daaa pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87b88893 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x87d5cdf6 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8e3ccfba pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa3f98dfb nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa700c7f6 nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xae1df084 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf0fcd96 nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb158fb8f pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb20d6d9b nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbb1ac871 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbe076ed2 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfbb5dc1 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc0529e93 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc1f9bc0a pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc37b70e3 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc4e4f967 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc688c100 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc8e3c49a pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9bfc8f9 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcaf13999 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd6f0b981 pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe615b888 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xeb8f1d8a pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec6f4333 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0a47345 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3831ed3 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf388143b pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf47fccda pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf5000902 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf58f9c82 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf7939f3e nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf9689346 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc57ae0b nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfd60ba56 pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffbed267 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x454f55ad locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x8e33548e opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0xcfd13d23 locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd7369623 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xec839638 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x0ee22ab4 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 0x5a3308d6 o2nm_get_node_by_ip +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x807c74b7 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 0xa36a6d1a o2hb_setup_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 0xa8af9b27 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 0xc03b5698 o2nm_node_get +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 0xdceb7b27 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 0x55819b72 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6a5a40b0 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6c259877 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7a1211f8 dlm_setup_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xae9d4d5f dlm_print_one_lock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xc9bb6105 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 0xee60302c dlmlock +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 0x548ec646 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 0xa9ff5756 ocfs2_plock +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0xaaca8a72 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 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 0x018fddab notifier_err_inject_dir +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x338eb8c4 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 0x3614f80e lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xe6d0e95c lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x44c83dff garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x5f0938d3 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x843438ff garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x9e2fee4e garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0xc5806abb garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xcdfd3b10 garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x18c1f9b5 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x72324eb4 mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xad22248e mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xd15560a4 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0xfd01ab47 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xffe511db mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/stp 0x03b2d614 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0x2640b412 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x0ed942b9 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xeb3bd069 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 0x4c3c7cb4 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 0x3e1c0d95 bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5aa1e79c l2cap_chan_del +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x5bb4110e l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x7ef24285 l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x8feb90c2 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x90328b3b l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xa224d91a l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe45bddb7 l2cap_chan_create +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x23ca5212 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0x39913c7d br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3b276e35 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x4ed28951 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x7b825a88 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa1ecd888 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xae2fa2e2 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xbc592015 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x15a02024 nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xd37a6425 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x027e5245 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x080f3c40 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0x088805d6 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0x09c3c359 dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0b0d8724 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1310c6b7 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14bd2784 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1caf093e dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x233e0b86 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x25c967e7 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x35bec75c dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3634d58c dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3d41348e dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x405b3931 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0x437daba5 dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x451a637a dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x48d7d54d 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 0x57e6ba90 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +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 0x9890fdc5 dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9c578fd3 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9cef87e1 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa01ec3a8 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa0f20777 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa49f3cfe dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa62e13c2 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa82abf44 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbaca90d3 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbb142ffd compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbdfd2670 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc5862994 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc6b5820a dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc74eb4aa dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdf818ab0 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5256155 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe977b28b dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x07207747 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x885fd921 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x8f9337c5 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc99e0e71 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xcf9611d8 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf0ca493e dccp_invalid_packet +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x61a08a2e ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xa3e64845 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xb3659443 ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xd58dfa29 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xf85ca047 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ipv4/gre 0x5e53c53d gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xbc39125c gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x08c708de inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x20e6d95d inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x4be38e22 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb24382f7 inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xdada2279 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xef12a0b8 inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xfe7bcf44 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x10ce2e1a ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x17d1d26e ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x1c11ba89 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2ea5e0d6 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4c65940a ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x50426f3d ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x54bae43c ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x6b3e73ef ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaa200ed0 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xb9616455 ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbe5434b2 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc3a7bf52 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xec2e7afc ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xedda6333 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf87f8c02 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x0f02a8de arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0xaeeccb28 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 0x61cd72b6 nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x118fa2fc nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x3cbd102a nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x899de105 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x97f60823 nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9ad39d15 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 0xcc3a16e2 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 0x64bb1ef3 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x7df0b5c2 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x9a2993d9 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xb24c7f6d nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xf411c0e2 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x1a35f835 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x09c8c9f5 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x412d656d tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xa598652c tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xd3cabc8a tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe274877e tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x98a484a9 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbafb549a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xe54fd110 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xffcae43d setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x00b3a81a ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x35803a49 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x48ded240 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xabd85511 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xb08a9dfe ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xcc595753 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xeb532fc0 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x97525887 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0xd6a612d2 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0xcd3602d0 ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x221e43ea 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 0xd668e347 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x588e0ab0 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x088a9b71 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x0c92ef2b nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x705e94f2 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x88bb1c0a nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xd18f109c 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 0xa9b00aa8 nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x2c886371 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x6aaf4b0b nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x790c4d95 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x9fc1d0e0 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xef127d16 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xd3526433 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0798b1be l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x186f1b79 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x18a5da47 __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x34cc7e3a l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3a171a41 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x46ec0d2f l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x5d96db69 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x868b3899 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8a8adae5 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa2e010d3 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb58bd7e4 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc0da2888 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd02861ea l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdd8a2776 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf26f3a23 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xfb5eab40 l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x32884d95 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x02d9b987 ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x037b1e69 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0cee75f4 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x0f627b83 ieee80211_iter_chan_contexts_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 0x287cad02 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x44a051ba ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x452b190d ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x457ccb16 ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x68ab6824 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x833b5ba4 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x84136b3e ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x8425ab62 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbb333f97 ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbe2afbcf ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xedce4a44 ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x573f075b mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x93f6265a mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xa1d3ec6d mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc8265416 nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0c972d51 ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x11846d60 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1aab7844 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x1ac08268 ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x26ec9611 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x376d2f7c 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 0x5b212f42 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x680214be 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 0x9e98722b ip_set_get_ipaddr6 +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa279fe33 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 0xae9322d1 ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbbe7ae8b ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbe23930d ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbf5fd2de ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xddbc5534 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf8ad9dd6 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xfb711c92 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x14d742d0 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x1e5063f4 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7f54ca63 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xa116b71c unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0053b173 nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0063f6aa nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x059f3c7b nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0b55fed2 nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1261ae3c __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x149cae7a nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1785bdd6 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x186d3349 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2009c4e3 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x29cd9889 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2d673588 nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e3fb8c4 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x300dc859 nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x313730d0 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31871179 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x33350c02 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x356f7b1a nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x387b590d nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x38909d73 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3a42c349 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d0f700e nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x44560f5d nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x45ccd2d9 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x502506dd nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x535474ac nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x590091b8 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6162162e nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x626483af nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x65d19d5a nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x665555be nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6695bb5a nf_ct_expect_unregister_notifier +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 0x71bf3995 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7275b4c4 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74401700 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74f25e9a nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x77576f2b nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x789eaabd 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 0x79a344ca nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a52b25c nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x814b3410 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8808fe41 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8882dc96 nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a4993ca nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d45547b __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8d52e160 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8ffe7e89 nf_conntrack_htable_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90e4ec5a nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x95d5f5ba nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x96191b51 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97fa85da nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x980e9a9c nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x99db5803 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa93e5aa0 nf_conntrack_hash_check_insert +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 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xba474111 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbbd138fd nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbc77d9f4 nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc0d8e8ba nf_ct_invert_tuple +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 0xc4472225 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc47901df nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8833ed3 nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd4e6754 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcd6d3b38 nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3e62e69 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd63ecd9 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xddb80582 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdedffb1a nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2939003 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe380c730 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebaefb97 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xec39d4cd nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xef8e7616 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf013e2e2 nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0771caa nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf0f95d4a nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf622d2be nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf64f635d nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf77f4f18 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf8853b90 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf9147173 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x867d2e2a nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x133b0665 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0xfd3b674e nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x0908d0dc nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4403edd6 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x45490de4 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4551649d nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x499b681d set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x66cc4d26 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x6baf14e9 nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7a418a04 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x7a83bb1d set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9324cf55 set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0xf444734f nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1d2a91de nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x2575eca4 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x6bc33ef8 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xc2b456ee nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x0b974890 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x7823f260 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x083a2d8f ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2fa7c82e ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xb47f26e7 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xbcc32fa3 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xc210c079 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xd6713180 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xdca80f0a ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x77a412d0 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xdff447c6 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x1a170351 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3ffeef86 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x50464036 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x7d470f31 nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x048ea373 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 0x131f636c nf_nat_l4proto_in_range +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1858da81 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2c1c67d8 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x38b4c7e1 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3aee6c90 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x3ee13499 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x86b9b5ad nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xd451b054 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xf02f1b02 nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xc184d322 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xfb780eaf 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 0x5539c834 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 0x94d0ec09 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 0x0974d9e6 nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0cf82f0d nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x0f0f27d2 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x125ed1dd nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x14bcc54b nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x233767d4 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f7aa617 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x304d5895 nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x67463dce nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6904bd65 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x6dc04b3d nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x8304a4a6 nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x97221bc8 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa381fa86 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbc96320f nft_do_chain +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 0xe88c0ef1 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xfb58abbf nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x21a296be nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x6bb772d1 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x7087a92a nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8de7a3de nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x8fd73468 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc3327e6d nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf5edbc4d nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x47865a42 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5375e40e nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xadf9e59b nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xbdf5b4c2 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x0084ca25 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x922ae202 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x98fc0357 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4a24f1c8 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x4b17731d nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x7b9a5fd3 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb43faafd nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xe8919913 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xfec7601f nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x756f3058 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x75ddedd6 nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xcaf973f4 nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x09cfc457 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x1600ff5d 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 0x161d1417 xt_compat_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x24c8e482 xt_copy_counters_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2dc7b104 xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x421c2df7 xt_proto_init +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x452f0aef xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4924d0a3 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4b59d110 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4e30d957 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x5f82f1f7 xt_compat_flush_offsets +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x63647ff8 xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x64eec0b1 xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x691a6d69 xt_compat_calc_jump +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6bff9903 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x75da76f2 xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x840539c0 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8f70fedf xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x908cf748 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa54ec61d xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcef19d92 xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd4bc3808 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdfbb24cf xt_compat_target_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 0xf0a0f5d8 xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf82558b9 xt_check_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 0x351de4c0 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xb32359bb nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc0fe9e94 nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x1a5e031d nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x3c550762 nci_uart_set_config +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xa06f4564 nci_uart_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4bc04333 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x4ec091b0 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x732f0ba0 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x9c1580ce ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb8425320 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc08a848f ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc66358dc __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc93e2fd7 ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc97a0f88 ovs_vport_receive +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 0x08922c50 rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x11e55d3f rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x21857dd7 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x24018588 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x28673206 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x297ea143 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 0x39cb37a1 rds_send_drop_acked +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 0x59ff2a89 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x684f5b66 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x6ac3863a rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x71c60f26 rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x73c84885 rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x774cfd94 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x7b8f2f7a rds_message_unmapped +EXPORT_SYMBOL_GPL net/rds/rds 0x7bc62829 rds_stats_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0x8016ecd3 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x98de3a0a rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x9a63123d rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0x9d96debf rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0xbaec1307 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xd31252c5 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xdc8bbbe4 rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xe1df32f5 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xf2950979 rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0xf4280153 rds_inc_init +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x23b669f4 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xa7c3b755 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 0x314de468 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 0xcbdb321b gss_mech_register +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xd5dbe11f gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0023dc0c svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01a15bc3 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x032fb9f2 rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0434f315 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x044b94f7 svc_auth_register +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 0x08aef2a5 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x099a6acb xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0c05c15c xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0d145257 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e45ef3c xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e5426b7 rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0ee1ce2b svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0fe16a08 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12b1e7b5 rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x136097a3 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x16d6d7d3 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177523ad rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18018630 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ac74f24 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b2bbce9 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b70d4ed rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e14f527 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f067b7f rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20ed084b sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x22b8f107 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x237ce25d rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x24bfbf8b rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25390bd4 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x255bd54f auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x25aa2a3f bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x275e2108 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27cfe880 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x284a35fa cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29adb9f2 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29d0c724 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c4d9558 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ca1c43c rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2d27e8cd rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eb1e233 svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f8b1984 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3140552e svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x317cce4c sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x317da792 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31e0b516 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3284fe37 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34556fe7 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x349203bf svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3644cde3 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b737923 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e46f770 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e821d1c cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3f4be238 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42d32ebe rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42da21b2 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42fff5fc svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46711102 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46f9fb16 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4aba3571 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bdff238 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4c17baa4 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4d673e2f xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4da635e2 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e6b241e rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e784ebd svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4ea443c4 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50760468 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50bad737 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5265aa10 rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54c0db55 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x561edbac xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x56c116a4 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5718a65b rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5780e925 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58c0d9e9 xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5bfce172 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cf56620 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d8a4c03 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5fbf9ec4 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64ee8453 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x64ffe50f rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x689e6c3e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68f28bf7 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d1c8dc0 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d45db61 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6dddae34 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6e7999d3 rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7119db8c svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72af0497 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x753394a8 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7b3b92df svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7beed0a7 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ff9df9d xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x800dc3a2 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x81812f34 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x83403da6 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x85e6314b sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8648c42e xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x867a7957 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x87c9e4a9 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ce0095c sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8ec37611 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x90316247 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9087d129 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9170b4da rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x91cb8c40 rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x93c7a8b0 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x961c4a41 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b549656 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9c299dd1 rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ccafc79 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d4e386c rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9d747ff7 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dd9dc42 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9eec1141 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9ef449af rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f4b4a6a rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9f71c2ed rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa106cca6 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa11ac4b7 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa1dea161 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa223908c put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2aa795c rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa2b2dfb8 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa35d5605 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4f760f7 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa53c77d1 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa824c300 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8257823 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8871e30 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8b8575e svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab9f9f9b rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xac9dd5ae sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaca84eaf xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad1f00f1 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafddd1b2 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb3112ccb rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb37e0432 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb596effa rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5e163a4 xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5e6db40 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6d39520 svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba330867 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc09b1fbf cache_seq_stop +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 0xc4f48f3f rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc6619dc9 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc777c923 rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc79fd61a rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8cddce3 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca84cb51 rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcd88a83b svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce6105e5 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf65fa49 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1017724 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2db7402 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4293f16 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd65db7e3 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd6adc517 rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7fdb62a xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9932f4e rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda71454d xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdb1741c4 svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdbfcf685 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd0cfcb6 rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd53effc rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6bbfab svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0883844 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe0da6836 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe256a690 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3e2180e svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe434442c auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe6faf5a3 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe92480cf xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xec9a63eb xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecf3da3e rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed00156e rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed1614dd svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeddaafbc cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeddd64e3 rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee34acf1 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xee3ee964 svc_proc_register +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 0xf234f3af xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf59bfcf5 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf64927ce svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf657cbd2 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf8160492 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9b9f399 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa733e64 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfa887f01 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfbd70390 rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc210e60 xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd365bb8 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfdc2faca svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe8a924a csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x01831d99 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x04fd3025 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 0x36fdf8e0 vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x56e476db vsock_enqueue_accept +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x59d943c8 vsock_addr_cast +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x5f51a087 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x73282be0 vsock_stream_has_space +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 0x840881c4 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x85666755 vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa190bb70 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa1ef2a6c vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa3572626 vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xa873f794 vsock_add_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 0xed480bdc vsock_remove_bound +EXPORT_SYMBOL_GPL net/wimax/wimax 0x151e86c7 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x22243922 wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2523c994 wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0x31507376 wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x4139abfe wimax_msg_send +EXPORT_SYMBOL_GPL net/wimax/wimax 0x50a6fa9c wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x57325274 wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x872efdcf wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0xbdad6059 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc868d24b wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0xd469c350 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xdb9b63eb wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0xde88a859 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0b53cd70 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x0d4e4685 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1db8a822 cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1e427823 cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2b1d26e1 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x33641f76 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x37e6202e cfg80211_wext_siwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x43345490 cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x60293d5b cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x6dc47f5b cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x91c95cd6 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xbacf7a81 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe50c33a3 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 0x31799c69 ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x36e10ccb ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8e65b967 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xdeb0c68c ipcomp_destroy +EXPORT_SYMBOL_GPL sound/ac97_bus 0x5a3f593b snd_ac97_reset +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x002df91e aoa_fabric_unlink_codec +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x16f6828f aoa_codec_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x1a6699a7 ftr_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x5f417dbe pmf_gpio_methods +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x661e6102 aoa_fabric_unregister +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x6738fb97 aoa_snd_device_new +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x94eff4bf aoa_snd_ctl_add +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0x9bb949e2 aoa_fabric_register +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xc559944e aoa_get_card +EXPORT_SYMBOL_GPL sound/aoa/core/snd-aoa 0xf94a6383 aoa_codec_register +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x2ca43d38 soundbus_dev_get +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x67afc7cf soundbus_dev_put +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x97c53607 soundbus_register_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0x9aa31260 soundbus_add_one +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xa26aca26 soundbus_unregister_driver +EXPORT_SYMBOL_GPL sound/aoa/soundbus/snd-aoa-soundbus 0xd7e70151 soundbus_remove_one +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x95f7801e snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0xdbd51ab2 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x14b2cea3 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0x24b3df2c snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x3263a2e7 snd_ctl_sync_vmaster +EXPORT_SYMBOL_GPL sound/core/snd 0x33411de7 snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x3eb93d98 snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xa1a86807 snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0xe289a2f6 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 0x4a6cc15f snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x50081d69 snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x51fc9af6 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x61396214 snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa4ac8700 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xb26c251f snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xba4fe363 snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xd17e15d4 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xe75253bb _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x02c72c57 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x3760b59b snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x59880e2c snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x885c3bd9 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xafe9766a snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xb55c9489 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xd2070128 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xed04f0af snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf173acf9 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xf63da320 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xfc229672 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1d8cb59e amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x1f8172d1 amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa6219c93 amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xc2b88f9a amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xcc681e7b amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xddfa3663 amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xf1d62802 amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x045b6d8b snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0b5cdd77 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1184b8a8 snd_hdac_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d921b1c snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2076b4b4 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x24bf5c3c snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x29a9859a snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x33b7bcd9 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x34de542c snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x360f0748 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3621ce4c snd_hdac_power_up_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x365d2cb7 snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39af177b snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3a62cfeb snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x468e32c4 snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4a3f3c07 snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x56308948 snd_hdac_regmap_write_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5cd929cb snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e743e8a snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5fa1d31c hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x633f88bc snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6afa2443 snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b396c1d snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72482088 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x72e6901f snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77493e0b snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x77600a45 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7a248398 snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7b1837ff snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ee9df65 snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ff230fd snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x83a0d650 snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x864e4aff snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x87d3dc5b snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x88e098e2 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a4753a1 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8c6092c8 snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x968e9283 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9944bad8 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9a8e1877 snd_array_free +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9bdd4e43 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa39b03a2 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa82ef65c snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa9075401 snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa949b6c8 snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb0238d2e snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1d21a76 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb77723ae snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb86ba018 snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8a6d1b2 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb8f1fe48 snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xba7ec1a7 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbdbba555 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 0xbf624152 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc341844f snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc8ad4baa snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc9b2ea2c snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xca1b610d snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd2b1b299 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3a0df0e snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd3f70c44 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd6ffa054 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 0xdf6656e7 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe2e04f01 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe35a0ef2 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe9ca67f0 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xea255c33 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeb0f9956 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf92bc22b snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfa06135f snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfb9fa3b9 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfee0b715 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x05e1926e snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x40280b03 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x41202ee4 snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x845e1e87 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x91167443 snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xd75190e1 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00c8d179 snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x00da7f28 snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0167aebb 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 0x0c95ff9a azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1390f47b azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x16cf33ff snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x19d1a368 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1b9de9b6 snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c304f40 snd_hda_get_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1c68009c snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1d20e044 snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1e314f29 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x24ab003d hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x25da9752 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28288bce snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x28beafe2 snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a25c580 snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2a9c7765 snd_hda_codec_amp_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2b96c82f snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2be4e70d snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2e1cc252 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x326b2f88 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x327c6a3c snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x328bd264 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x328be7f7 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x33184b22 query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x36a003ad snd_hda_codec_amp_init +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 0x3a6c3a90 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3abdabaf snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b290b77 snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3c9cfbb8 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cec59c3 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x41cddc1d azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x42b8c3c8 snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x43645a35 snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4370dcde snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44978089 snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x44eff524 snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45f56c08 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x525af591 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x536b6c53 snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x553e1d5b snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x57371ad8 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5aa01269 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5b0645bb snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c18311d snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5dbf489e snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5e6ca5bb hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5ed8112c snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63b5bef5 azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x66c48e65 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68c0a0c7 snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x68cc8531 snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x696ef7b6 snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69e0d55b snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6d7aa36f snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e2c5766 snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6e651448 snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x70e6116b snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72346445 snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72ea33ce snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x743b0bec snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x755347a5 azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75d97233 snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x764ff635 snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x78d5dc02 snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x795ab90b snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7ad9fea7 snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7bcc4137 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7cedc1cc snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7fde8824 snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x87120949 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8813e6fe snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a84fab0 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8fab4b3b snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90492117 snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x91d4bb98 snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94943b90 snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94d39f7b snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x96981935 snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9a76cedb snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c42f1b0 snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cc18252 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9cfcda02 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9d726e42 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9ef8951f snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb0d563b7 snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb165e3cd snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2aa09de snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb38cfd3b snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb818bd81 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb96aa3ac __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9f31bbb snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba7a632b snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbb9c8648 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbcd21915 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdc22a41 azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbeed049d snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc05281d2 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3aa35c8 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6bb6dcf snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc8148788 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca5cb191 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xca788236 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd07bbf92 snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd4f36fc6 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd71543af snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd7ca4da6 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd900bc1a snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xda66affc snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdc456b4c azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xddc3b52e snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdf371497 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2d5f57e is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe5fdc62b snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe989199d __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb59dc99 snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeb6bb375 snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf20e9f64 snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf46adfe1 snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf835e387 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfa6d864a snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb501993 snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xfb590ed9 snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x09149e30 snd_hda_get_path_from_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x148d01d8 snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x19fafdb3 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x23c6cf01 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x326f0327 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x330ae919 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3421e537 snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x36f1373b snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x4a116b15 snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5d7cb317 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x5e28102a 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 0x7ace7e0b snd_hda_get_nid_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 0x8b7275b2 snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8bf46aeb snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x8da30778 snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x913b554d snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x98407b75 snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xa5292731 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xb95dae67 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xd2267a91 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf13e7ba3 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x34107b7d 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 0xd3428652 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0x375ad98c cs42l51_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf3b3e5d4 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xf87f041a cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x129c70a7 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x95bd6f0b cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcc0ecb41 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x61af0313 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0xe4633a6f es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x12922750 pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x2b570949 pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x4873096f pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0xd328665e pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x446c3b69 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x6677db44 sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x78b167e7 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x818d26a9 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xaa9b6262 sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0x464ca705 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x7aac2e8e ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0xa6a2f47a ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x4e44afbd tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0x7d661486 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0xbbfa4926 ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x06f5758f wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x3cb4f9dd wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xa8a7f4dd wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xb1d8679c wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x85d7d1e5 wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0xd702f9c1 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x38065b11 fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xb6428443 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 0x00bede41 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0253e41f snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0455bf05 snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05e75578 snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06eb004a snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x072534a8 snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d09573e snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x0d5b39fd snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x11341ba1 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x124c3792 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x13f04791 snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x147d84ce snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x158437bf snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x159ea8ca snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x16fdf91b snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17bac69b snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x17d1eb5f snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x183347ce snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x19700837 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x198c047f snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1af2a5ea snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1fc77043 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x203ca33f snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x20ea541d dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d9b7067 snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2fc55fbf snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x311c2713 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x32b18511 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3873dfef devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3a12ce06 snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3d790a0b snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x40bff1a4 snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x428d7958 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44134a08 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x45223973 snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x466459b5 snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49d0fcce snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ad01a1a snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bbebdf8 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4e53e4d9 snd_soc_dapm_sync_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4fb1e62d snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x505ab4a8 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x51adb300 snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x524a418c snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54639b91 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x55045dfb snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5633bc24 snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5643f6b8 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x57892192 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5840347f snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x58b2a5cb snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ae8aad4 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x60207030 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x609e4028 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6265cefc devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6428f21f snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x653bcac4 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c20925c snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6e2cb0f9 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6fc4c160 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6ff9263c snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7280c27a snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73983583 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x75804caf snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x77d2090b snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ba6170c snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ca800c7 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7cde15d7 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7d1ec37a snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e591da0 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e65f58b snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7ea33635 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7f14c05b snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7fd4c3f6 snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x807b8897 snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83cf6047 snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83ec94b7 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x867ae189 snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x883fbb61 snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x894061c6 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8c8fa220 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9097b696 snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x92614e5c snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x93717a32 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94ac4cf7 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x951c201a snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95bda708 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96d06da3 snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x97eedc92 snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x99c4e17d snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a9b6b7f snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c7c718e snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9c9e7dc0 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eb239b7 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9eb5a3dd snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa041dd73 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa1c51c99 snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa2ebec87 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa39d04d8 snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa411faa5 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa448f03d snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa6ad06f7 snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa7c7c0ab snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa821ad76 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae1cc020 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xae691477 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf2d2cf6 snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb56c1c93 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb6336217 snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb8948f03 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1f4d710 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc26d8646 snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4d6ba37 snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc4f42746 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5004a12 snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5489f00 snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc5b0e474 snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc8269f94 snd_soc_params_to_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc85986ed snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca07d71e snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xca7b1e55 snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcb0e8aad snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce6a9c18 snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0e4da1c snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd666637c snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd786ff17 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9ef85f5 snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdbe4e1b7 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdd773de4 snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xddf04a05 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe0304481 snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe09b46e6 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe2cafe33 snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe6cc294f devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe7b2640a snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe99440ce snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xed7a304c snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeebc3885 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf0a42fe5 snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf121c8c6 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1bc1a59 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf5c9e2fc snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf6c5705d snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf75a1a2a snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf76fc18d snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf8be48fa soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfb905da6 snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc8cc0c4 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd9f3a7d snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0ad91ca3 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x202a1b1b line6_midi_id +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x2c180268 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x32ce82d8 line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x43b276f3 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x684bf0d3 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x711acef5 line6_pcm_release +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x85faecdb line6_write_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa254cf34 line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xa9aa90e5 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xae141e02 line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb843af6d line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd3b9d558 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xd83b7bce line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xe5df7b94 line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfdaa3e6c 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 0x0002e19e register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x000b7013 usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0x0058ddf2 of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x00603b25 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x0063bd8f ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x0065cce5 xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0083192e crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x008a725f kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0x008e471a da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x00b44747 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x00be1379 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x00c8896d wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x00d67ec1 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0x00e88770 xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x00ec984c usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010cc884 da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x0112723a ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0194d0df gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0x01aa541b virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x01b354d9 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x01c9157e inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x01d8c10e hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x01e622f0 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x0200c232 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x02268fea nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x0227d709 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x02482819 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x0266770d rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x028ad680 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0x02ad4f7a of_get_display_timings +EXPORT_SYMBOL_GPL vmlinux 0x02b5e2b4 tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0321cdbf of_alias_get_highest_id +EXPORT_SYMBOL_GPL vmlinux 0x0327546a crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x033832c7 usb_amd_hang_symptom_quirk +EXPORT_SYMBOL_GPL vmlinux 0x033e63a5 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x0343bdf1 __i2c_board_list +EXPORT_SYMBOL_GPL vmlinux 0x0346960f power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x037373d1 gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x0377b436 usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03a61792 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0x03ac34b2 dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x0432d8b4 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x043f1d64 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x0449cde7 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x045fb853 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x04655d12 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x0466235f kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0x04770034 ping_getfrag +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 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x053b8b51 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x054f7509 spu_associate_mm +EXPORT_SYMBOL_GPL vmlinux 0x055d1222 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x058a35bc of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x058b257b blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x059a5491 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x059afa55 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x05beeca1 ata_scsi_queuecmd +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 0x062fa567 ps3_vuart_cancel_async +EXPORT_SYMBOL_GPL vmlinux 0x063503a3 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0x063b318c gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x064834f9 shake_page +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x06577d2b power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x065ae89b regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x065e4617 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x066d45b1 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x06842552 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x068bdb0e ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0x06cf75f8 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x06f37447 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x071ca882 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0x072d51d1 ps3_system_bus_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x073f00b0 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x07863553 napi_hash_del +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 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x081d4ceb usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0872e917 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x08890b28 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08924f28 tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x08b2160c regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x08b7c99a devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08bcec84 flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x08c88464 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x08d91c22 mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x0910ac78 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x091c824a machine_power_off +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x092c605e max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0x0938ebde iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x094b3c35 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0x0952af60 fb_videomode_from_videomode +EXPORT_SYMBOL_GPL vmlinux 0x0965ae67 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x09725a68 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x09769ea7 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x098e4faf arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x09a47d0c crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x09b68de6 virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x09c2325d crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x0a2a8b8d x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a532841 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x0a650a09 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0a6570a2 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x0a715a2f usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x0a7c2039 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x0ad839cb dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x0adbddf7 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0b0593cb alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b244f5d bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x0b32e0d2 ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x0b3903d2 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x0b3da852 task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x0b4400c3 ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x0b59cf58 eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0x0b5d4f9e iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x0b724c70 __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x0b72cbc4 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x0b881c29 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x0b91010e rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x0be51542 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x0bea5160 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x0bf840d1 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c141f87 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x0c18b16a phy_create +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c47d282 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0x0c6476b3 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x0c7eebcf scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0x0c975a6d tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0x0c9a8a1e iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0caf198e devm_power_supply_register_no_ws +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 0x0cee4f25 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x0d396303 perf_tp_event +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 0x0d82324d cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0x0d8d3384 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x0da361e9 regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0da4db65 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x0dbc75a4 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0df13d1e devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x0dfac96a pmac_i2c_find_bus +EXPORT_SYMBOL_GPL vmlinux 0x0e09db14 rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0x0e1f10a3 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x0e3d9a4d mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0x0e4baa94 devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x0e793af6 regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x0e8dd4d1 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0eb49c58 da903x_reads +EXPORT_SYMBOL_GPL vmlinux 0x0eb64069 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0x0eb7c1b4 thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0eb8ddca pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x0ebe0440 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x0ec32cd9 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0ed0afe9 skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f06c2fc wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0x0f0959ed __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f4c87eb pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x0f4d9cac irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0f7759f6 ps3_mmio_region_init +EXPORT_SYMBOL_GPL vmlinux 0x0f819399 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x0fccaa58 usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0x0fdda5a5 ata_sff_dma_pause +EXPORT_SYMBOL_GPL vmlinux 0x0fe8c902 devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x0ffbebf2 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x0ffc71b8 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1022fc5f fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x103442c5 crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x1049b8a2 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x1064c0ac adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x106a0502 device_del +EXPORT_SYMBOL_GPL vmlinux 0x10a1258e skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x10a71cbf devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x10b8fedf wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x10c92163 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x10fd9626 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x110f65ff ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x1111dd51 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1179729e fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x11914d18 __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x119d76b9 splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x11b9482e sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x11bf7b1b __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x11c20b8f unregister_spu_syscalls +EXPORT_SYMBOL_GPL vmlinux 0x11c2a0df rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x11f9c779 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x11ff4fc4 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x120acbe8 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x120be463 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x123a7720 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x123d8935 put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x1249d78c get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x12567b2c wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x126e61cd of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x126fe526 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0x127ec34c usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x12834786 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x1295855e fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x129919eb device_attach +EXPORT_SYMBOL_GPL vmlinux 0x12d964d5 ps3_gpu_mutex +EXPORT_SYMBOL_GPL vmlinux 0x12e594fb trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x12e5a973 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x130e7b31 device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x13185afd use_mm +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x1333d8b3 ps3av_video_mode2res +EXPORT_SYMBOL_GPL vmlinux 0x136209db power_supply_reg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1368151c regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0x136a4ee6 btree_init +EXPORT_SYMBOL_GPL vmlinux 0x1372251a scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0x138756b1 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x13935f83 usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x13a556c9 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13adea7d rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x13b93580 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x13bc1c38 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x13c231b9 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13cf52de dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x13d15123 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x13ea06d7 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x13feebe0 rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0x14067f02 cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x1408a750 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x14186426 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x141ae923 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x1423caa4 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x142fd39f usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x1504305b rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0x152d575a ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x157fde46 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x158c4168 sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0x15a8747a of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0x15a93e79 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x15b8b44d opal_async_wait_response +EXPORT_SYMBOL_GPL vmlinux 0x15c21e5e nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x15c2f494 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x15ecb6e2 eeh_pe_configure +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 0x1687a60f crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0x168a3ae9 cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x168e478f ps3_free_mmio_region +EXPORT_SYMBOL_GPL vmlinux 0x1697bdb3 regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x16d78024 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x17258cd4 regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x17318769 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0x17363439 bus_register +EXPORT_SYMBOL_GPL vmlinux 0x173904fb transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x1745c658 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x1748072b component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x174b622d virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0x177620f7 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x1791ad11 md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17a0d899 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x17c2f576 irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x17e228db ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x17f8a98c cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0x180df406 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x18112fc5 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x1845c850 ohci_suspend +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 0x186dbc46 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x1878f62b edac_err_assert +EXPORT_SYMBOL_GPL vmlinux 0x187c59fe sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x188f8be8 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18b11066 dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x18c9656f tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x18d91e62 pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x18ed922f irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x18ef002b __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x18f305e4 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x192ab602 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x192aba45 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x195045f2 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x195c94e5 pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x19603fb1 sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x19604f74 uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x1961e981 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x19639538 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x196e8f25 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x1972bce4 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x1987482b device_find_child +EXPORT_SYMBOL_GPL vmlinux 0x198f308e kvmppc_h_put_tce +EXPORT_SYMBOL_GPL vmlinux 0x199bcb70 tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x199d022c sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b6668f sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x19c69e2e spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x19ddd319 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a032741 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x1a0df346 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0x1a25fb18 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0x1a316304 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x1a36a79c fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x1a412006 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x1a4cb299 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x1a6cd9f7 pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1a7ee283 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x1a88135f ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1a9c79a1 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x1a9c9935 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x1aa8fe05 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x1aaa697c fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x1ac717e3 ps3_os_area_get_rtc_diff +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad6ac34 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x1af82efb tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x1af9f1c1 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x1b012ab4 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x1b01d007 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x1b1933c8 fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1b202885 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0x1b456105 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x1b5f862c ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x1b89e9ea ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x1b8e9a05 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1bdb1087 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x1bdfdb4d swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0x1bec00ab crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x1bed9a5a wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x1c061498 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x1c1ba49e ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x1c2aca3d scom_map_device +EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x1c4311a5 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x1c46bef6 da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5918d2 serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c60d1a2 crypto_grab_spawn +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 0x1c85aa19 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1c8b6c1b gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0x1c96a19f device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x1c9ad1fa mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x1cb900d4 ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0x1cd55624 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1ce77ebd wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1d0b156d ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3481ec pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x1d4744f4 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x1d58ae14 lpddr2_jedec_timings +EXPORT_SYMBOL_GPL vmlinux 0x1d5dbe23 cgroup_attach_task_all +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 0x1d9a626d virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1dfbcf4c mpic_msgr_disable +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e373562 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x1e3e9d56 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0x1e43ef99 fib_table_lookup +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 0x1e9527db usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x1e9bc08a flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x1ea02c3e get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebb37ab debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec687ae debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1ee341da blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x1ef36201 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f67bee8 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8d11ca rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f9443da device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x1fb6eef4 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x1fe23251 cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x1fe970cb ps3_io_irq_setup +EXPORT_SYMBOL_GPL vmlinux 0x1fed69ec ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x20010e3f percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x200cbfc7 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x20106d79 regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x2010d355 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x203c8a6b xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x205691af wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x20794dc8 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x208cd198 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20f06dab subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0x2114ec92 crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x212c8101 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x217bec7b usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21dc9150 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x2249aa7c exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0x2266f372 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x228232d4 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22b2d4a9 irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x23249107 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x232afc5b pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x2344bef6 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x2364b465 spu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x237fb523 usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x2384657a __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x2399aae2 rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x239de3e8 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x23b82e2b ip6_route_lookup +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 0x2408a7ba bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0x2415e86a ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2447fd2b ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0x2467180a dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24b18255 __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x24ba1902 cpufreq_frequency_table_cpuinfo +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 0x252e66a7 tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x2540471c reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x2553321d invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x259e5257 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x25ac4578 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x25ba66b7 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0x25bc9268 spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x25c65556 rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0x25e1bbb5 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0x25e2dca4 init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x26003a10 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x262e134f of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x2659d17a kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x2687ab27 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x26907e6c pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0x269e14b8 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x26aa9582 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x26b6643e udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c0b92d pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ceeb06 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x26da54b9 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x26e66c4a sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x2717ae33 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x27395d22 ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x27460304 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x2787527a driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x2796ed1e user_describe +EXPORT_SYMBOL_GPL vmlinux 0x27a57b04 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x27a750df pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x27b5154c event_triggers_call +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 0x27eb59dd ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x27fb203c vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x282144df save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x285370b3 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0x28574f57 anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x287c4f31 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x28853198 regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x2899d782 reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0x28b36f42 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x28c07982 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x28cf9bcf pwm_config +EXPORT_SYMBOL_GPL vmlinux 0x28ee080b rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x28f3ab6b init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x291de536 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0x292555b4 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x292ec11f regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0x292f4647 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x2946d4dd crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x2987e36a sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29af425e iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x29f9a70c regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x29fe897f devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x2a043810 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x2a122b7b tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2a1f76c0 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x2a3aa00a ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0x2a4e1853 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x2a56e8e1 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a9839ac thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0x2a9f9722 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x2aac2b82 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0x2aaf451b ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x2ab285f1 stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2ad13996 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x2ad8436b dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b187cfc pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b2c74d3 sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0x2b2cac31 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b453df7 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b784611 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x2b784e44 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x2b7ce7a4 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x2b7e91da of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x2b99c5f8 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x2bde0b22 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2bfd53d1 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c53b97a fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2c7a6aeb register_spu_syscalls +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c80caa2 rio_request_inb_mbox +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 0x2ccb11fc locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0x2ccb6e8a pcibios_remove_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2cd16771 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea11ad ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x2cea1492 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cf89d13 user_update +EXPORT_SYMBOL_GPL vmlinux 0x2cfbd074 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x2d098f11 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x2d14497d sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0x2d14ff7d usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1dbf30 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x2d2ecefa crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0x2d3335d9 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x2d33e0ae led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d440802 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2d570431 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5c3e88 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2d5e1f78 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0x2d5f1d97 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x2d62d864 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x2d632e50 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x2d7afea8 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0x2d7da8d2 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0x2d97a490 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0x2d983819 regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x2db40065 sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dc8dc31 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2debc83f ps3_mmio_region_create +EXPORT_SYMBOL_GPL vmlinux 0x2e149f85 trace_event_buffer_commit +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 0x2e2f1740 ring_buffer_record_disable_cpu +EXPORT_SYMBOL_GPL vmlinux 0x2e35742c pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0x2e5718c4 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0x2ea873da of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0x2eabab04 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec0757d tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x2ec39633 pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x2eda6c53 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x2edcd78e usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x2edf2cf9 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x2eed57d6 of_prop_next_string +EXPORT_SYMBOL_GPL vmlinux 0x2ef4775d pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x2f008e08 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f22e162 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x2f2e455f firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x2f38ff1f sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f4281a3 ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x2f5d23ff udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x2f5ea8d6 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f798323 regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x2f7cc97f aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x2fa19b40 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0x2fa75daf force_sig_info +EXPORT_SYMBOL_GPL vmlinux 0x2fd874d5 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2fe7e929 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x301aec03 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x302dd2da relay_flush +EXPORT_SYMBOL_GPL vmlinux 0x304d015b md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x3082440d fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x3086251b class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x30b50db6 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x30bdc3fe fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30dfa662 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x30ea3b9e remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x311868df sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x311954ae dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x311b78c2 ps3_get_spe_id +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x312ce71c tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x314fe5ec crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x3155b41d devm_mdiobus_free +EXPORT_SYMBOL_GPL vmlinux 0x315b8871 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x31647063 devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x3165c7de ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0x31ba69be get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x31bef441 opal_i2c_request +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c53094 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x31c7970f pciserial_suspend_ports +EXPORT_SYMBOL_GPL vmlinux 0x31f44b32 bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x31f50362 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x3225d264 usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x32488f7e get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x32489b46 fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x328da48c nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x32ad53ca gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x32b0fdfc of_css +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32c9ae61 max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0x32e00e9a devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x330797db tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x3309ea64 ps3av_audio_mute +EXPORT_SYMBOL_GPL vmlinux 0x3310f3bc ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x332919ba __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x33398de6 mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x33492136 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0x3356795a n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x335c6dfe usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x337786fa usb_unpoison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x339baa6d usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x33bdf56f max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x33c1df38 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x340f0574 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x342238f0 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x34365669 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x3459fa48 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x346389d2 ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x348f435d bd_unlink_disk_holder +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 0x34cef32a free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x34ded825 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x34e92ed5 bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x34fa4e39 tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x350d91c5 to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x35157fb3 usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x3577a63c put_pid +EXPORT_SYMBOL_GPL vmlinux 0x3585755d blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x358bf179 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a6cda1 dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35e17193 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x35f795d5 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x360b57ab net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x36118d13 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x362576bb usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x36280533 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x36475842 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0x3654106e tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0x36567004 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x367111b9 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x36863c6e ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a0aa90 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x36a0b2d9 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0x36a85fa5 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36c2819e wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x36c58c4f trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x36c8bf2f bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x36d88ea0 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36ed10e1 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x370afcfb ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0x37275eb1 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0x372f5771 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x373187da da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0x37469522 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0x3767be5e tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x3769ccd7 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x377369d8 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x377a06f6 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x37c21d11 regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x37d64262 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x37dba11b smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x37e9c841 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x38367be7 __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x383761a2 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0x3837af69 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x38512edf srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x385eb5c2 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x389c3da5 regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x389f5600 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x38ad49f4 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x38b79ec2 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x38deebd5 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x38df296a devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x390b3176 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x3920fe95 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x39229541 __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x392e3b43 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x393803c8 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0x39436932 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x3948eabe add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0x394d32ff ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x394fdbec ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x39609ac0 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0x397a17cd skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x39861459 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39d3b292 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x39ebf4e6 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x39f61c73 acop_handle_fault +EXPORT_SYMBOL_GPL vmlinux 0x3a1c56eb of_get_regulator_init_data +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 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a800b1b devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab169a7 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x3ab3bc3e tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x3acbc56c __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad08ddb scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3ae808e9 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x3ae929c9 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3b1c5afc ps3_vuart_irq_setup +EXPORT_SYMBOL_GPL vmlinux 0x3b1f4532 uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x3b28f49c pskb_put +EXPORT_SYMBOL_GPL vmlinux 0x3b3e7159 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x3b4eec97 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x3b507bee power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x3b783a0b spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3b993167 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x3ba48023 ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0x3ba9e985 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x3baba83c dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0x3bc2459d of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x3c0990f7 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x3c235196 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x3c511536 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0x3c64d279 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x3c6a2f70 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c86c7e5 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9bc062 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0x3ca29c92 spi_async +EXPORT_SYMBOL_GPL vmlinux 0x3cae2edd debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cdcfccb usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x3ce5859b pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3d337cda devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d44b858 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x3d5026bc iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d6fbdff debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x3d7a6a6c proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0x3d7f0abb devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x3da09fff nd_blk_region_to_dimm +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dc43607 fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x3dc526a9 arizona_of_match +EXPORT_SYMBOL_GPL vmlinux 0x3dc916b6 crypto_fl_tab +EXPORT_SYMBOL_GPL vmlinux 0x3dcbb036 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x3dd1f8a9 ring_buffer_empty_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e00318e aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x3e04f946 dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0x3e10a6c1 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x3e18c3cb ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0x3e1dcd15 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x3e27a482 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e444cfb pcibios_find_pci_bus +EXPORT_SYMBOL_GPL vmlinux 0x3e475286 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3e494f1e of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e5f4de7 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e74f1d8 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x3e76da15 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x3ebe386a phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0x3ec09444 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3ef7f8a5 ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f0d4fbf bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f1fdd6c thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x3f3829ab pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x3f45b06e kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x3f4ad2ae mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0x3f5bd9ac of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x3f901992 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x3f9463c7 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3fa20740 shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x3fa5af9c nd_cmd_bus_desc +EXPORT_SYMBOL_GPL vmlinux 0x3fa61909 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x3fa881c8 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x3fb14423 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x3fb21239 ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x3fbf686d extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x3fd8f444 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0x3febdb70 devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x3ff78bad ref_module +EXPORT_SYMBOL_GPL vmlinux 0x40071732 ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0x402d5c45 vfs_truncate +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 0x4078fc70 hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0x409673af irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40d2f422 rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x40fba2fc platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x41413c6c l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x4150391e crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x415ec7f9 devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x41621c0c blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0x416484e6 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0x417a3b1d gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x41c1454e tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41f2c990 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x41f8b135 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x420e9786 trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0x42248320 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x423b63fc lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x427c4055 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x4291dafd ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x42b02d32 __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x42b1884d regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x42babfca to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0x42ec0996 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4302a429 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x4314dc17 devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x432a44de register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x432f7970 usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x4355dbf1 phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x4355f561 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x43592821 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x4367d154 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43aae30a rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x43bfb2b9 __class_register +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d9bc94 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x43f04821 wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x44010b47 br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0x4401bd98 param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x4402ea1b pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0x44197e93 kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x4421c25f tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x4428a8de iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x442a90ae iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x443f37ad device_create +EXPORT_SYMBOL_GPL vmlinux 0x44561408 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x445beeae xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x446f7a48 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x44a06d19 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44c83e50 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x44c8dd05 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0x44f04b19 irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x450a1555 copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x452d78a7 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x453bfbf8 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x4568b24a crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45815ab2 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x459322b1 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0x45b97762 gpiod_set_array_value +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45ffc28a regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460ee95f xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4641ba2f rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x4656eca9 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x4659c7ae of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x46813fa7 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x468d512f ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x46d9f955 ps3_irq_plug_setup +EXPORT_SYMBOL_GPL vmlinux 0x46e3ea06 module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x46f5e580 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x46fca266 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4730af9f pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x4741db42 ps3av_set_audio_mode +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4776adee tpm_do_selftest +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 0x47b1f1d7 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x47b233f3 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47cab774 skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x47fbd746 thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x481be2d2 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x4846a1cb __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x48712484 ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x48781403 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x487c9902 usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x488228d2 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x4896a3d7 device_register +EXPORT_SYMBOL_GPL vmlinux 0x489fbf73 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x48ae414f xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0x48cfb0df device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0x48e6c54b bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0x490c88c3 sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0x490c90e3 rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0x490e2a4c ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0x49183a6f pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x491bd0a8 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x49226f7b ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0x49436761 ps3_system_bus_device_register +EXPORT_SYMBOL_GPL vmlinux 0x49443400 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x494aa891 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x4982d846 ping_close +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49975b55 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x49a781ae phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0x49affb9a relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x49b90716 scom_controller +EXPORT_SYMBOL_GPL vmlinux 0x49bf37de usb_string +EXPORT_SYMBOL_GPL vmlinux 0x49c43c19 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0x49c865ec fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x49d05982 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x49d67497 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x49df9e85 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x49e55b46 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0x49e62e31 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f51b1a call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x49f9618f usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x49ff252b security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a0dd8a3 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0x4a133041 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x4a1e1525 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4a3d4a1c blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x4a3f0236 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0x4a43e119 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a4d1ea6 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x4a559633 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x4a64f9d2 device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x4a72bb4a ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4a847f1d tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x4a89495c of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ab5bb64 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0x4ae29f38 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x4ae9129f con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x4b082bb9 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x4b4824ad ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0x4bb6bd07 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x4bf10903 ps3_system_bus_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4bf50c93 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x4bf86f7e of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x4c18f773 ps3_os_area_set_rtc_diff +EXPORT_SYMBOL_GPL vmlinux 0x4c444355 ps3_vuart_read +EXPORT_SYMBOL_GPL vmlinux 0x4c4d1496 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x4c536258 power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4c6738c5 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c8f4656 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x4c90225c led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x4cacbdbc crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d18f88c ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x4d32d614 dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0x4d389695 page_endio +EXPORT_SYMBOL_GPL vmlinux 0x4d497e6c usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x4d52572a kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x4d901bd9 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x4d955389 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4da46792 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x4db5f59a wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4de317dc xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x4de8aa55 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x4decb3b1 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x4dfc864f generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x4e01c695 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x4e09b3f1 vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e154353 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e412d14 ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e64cfc0 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x4e6e033e crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4e76a75f register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x4e84370c pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x4e941d10 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x4e975c0f devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x4e9b704d ps3_close_hv_device +EXPORT_SYMBOL_GPL vmlinux 0x4eb8456e validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x4ec985f5 blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0x4ee22bed devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0x4ee9f975 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f0710d4 usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x4f2384f7 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f6a6931 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x4f78fe81 gpiochip_find +EXPORT_SYMBOL_GPL vmlinux 0x4f8e1d7c regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fdda1ee mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x500cb233 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x5014bc7b ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x50317ef6 rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0x5056a3f0 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x5066966d fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x50714821 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x5071489c crypto_alloc_instance2 +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 0x508b89be pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x5095f50a rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x509607cd nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x50b85d35 rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x50cf991f cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x50e074bf device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x50e5c263 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50f1a697 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51049e57 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x5109dd64 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x510e1c71 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0x51155522 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x511aef00 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x5134d392 led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x515b5a94 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x515cfe8d iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x5162207b pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x517a328e skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0x518260a3 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x51b90b3d of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x51c3cae5 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x51c6dcbe devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x51e78a4a tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x51e7f95f inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x51f266e1 pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x51fdaabf setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x520a559c unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x521ba2a2 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x5246b1b1 of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x5280db48 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x52891535 put_device +EXPORT_SYMBOL_GPL vmlinux 0x52a56fe8 da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x52a7b637 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x52afe33e debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0x52c2ae18 usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0x52d1e3e2 devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x52e5e9fe sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x52f679b5 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0x52fe89a3 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x530f92a3 od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x5324edd5 usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5328ab75 agp_add_bridge +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 0x5365d0f6 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x5379d000 tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x5394811d device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x53d3ee51 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0x53eec481 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x53f1ae42 irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x53f6c6d9 regmap_raw_write_async +EXPORT_SYMBOL_GPL vmlinux 0x53fb51ff blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5407f919 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x54088acb ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x5410ed83 led_trigger_set +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 0x542ce168 gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x544a3565 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x54524fe2 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x5461d78a cm_notify_event +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 0x54caaa79 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x54cd97b4 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x54d2ddbe eeh_add_device_tree_early +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +EXPORT_SYMBOL_GPL vmlinux 0x54df2115 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0x54e21d0d rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x54f2c132 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x54f46c2a ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0x54fd041c usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x553b49a4 cpufreq_get_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x55417264 unregister_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5559011a inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x5576a16f spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0x55784228 regmap_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5588879e kvmppc_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x55a77a95 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0x55be1511 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x55e76c69 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f3a820 power_supply_set_battery_charged +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 0x566b137b da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x569786c2 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x56b7a96c ps3_vuart_read_async +EXPORT_SYMBOL_GPL vmlinux 0x56bba033 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x56d2fe17 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56f15723 __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x57499640 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x574cc530 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x574dde6a trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x576f59d2 mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x578a9318 irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579ccb08 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57e8cfdd dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x582f6ace adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x583ac4e7 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x583dbda5 __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x5863f47f register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x587e7d71 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5881fb2a fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x58862646 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58bcefb1 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x58cb78d2 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x58e8e51f ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x592a302b dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0x593fa921 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x593fe522 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x594a230e pmac_i2c_get_controller +EXPORT_SYMBOL_GPL vmlinux 0x59983a8b kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5998b64a i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x59aa1607 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x59b0a9ad regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59d5be54 usb_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x59dfa113 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59efd3d2 bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x59fe8f76 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x5a30682f inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x5a40dad3 ps3_vuart_write +EXPORT_SYMBOL_GPL vmlinux 0x5a548d5b platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x5a57fc39 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x5a65664e extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5aa0aa6b pmac_low_i2c_lock +EXPORT_SYMBOL_GPL vmlinux 0x5aa3001d wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x5ac216e7 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x5ac8e090 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x5af39aa3 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5b0d5d79 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x5b4d6669 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x5b574ae5 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x5b75102a ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x5b8a1071 mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0x5b8abede usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x5b8e7e5f __giveup_vsx +EXPORT_SYMBOL_GPL vmlinux 0x5bab4e74 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0x5bb26660 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x5bb806ae usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x5bc40536 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x5bcb7f48 regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bd0cf31 rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bf0d868 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x5c2a59e6 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x5c5600b4 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c60de72 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x5c670dc3 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0x5c8c6dc8 ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x5c9a8da5 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x5ca1bb9b ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc4f088 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cc9c4e0 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x5cd87ee3 fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x5cdbbb66 cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x5d0b8b69 dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x5d124d01 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d3ca501 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x5d7118b0 dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0x5d7adc06 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x5d8e4489 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x5d964264 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x5d9d9542 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x5da42565 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dc1fe5c cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5dd0dd82 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5ded04f2 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x5e031c9a power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x5e0677b0 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e67c079 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x5e70a2fe pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x5e769986 ps3_os_area_get_av_multi_out +EXPORT_SYMBOL_GPL vmlinux 0x5ea9e7a7 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x5ead57c9 wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5ed00205 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x5ee27141 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5f1dd844 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f2f8d49 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x5f31d2e8 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0x5f5a85d4 nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x5f5a8a25 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x5f6139ea ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x5f65a739 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x5f96d176 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x5fa63316 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x5fc406f1 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0x5ffd5de6 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0x6037bb28 iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x60439f13 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x606aee7c regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0x608187cc __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x6086a48a eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x60dc372f usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60ea3bc1 crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x6136c2d9 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x614e1380 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x6159a515 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x61888b42 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x618989d8 fb_sys_read +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61aa6492 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x61aae097 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x61bac4bc devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x61bc495d i2c_adapter_type +EXPORT_SYMBOL_GPL vmlinux 0x61c44edb scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x61cc93c9 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x61d639d4 led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x61dce8d9 arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x621b0531 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x622bc6fe each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6234c860 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x6236256f fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x6237afe1 devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x6238e1f9 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0x62533257 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x6272de66 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x629bcb9d ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62dda4e3 devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62eb80de gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x62eceb08 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0x6300302d virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x63166424 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0x631aaada phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x631beb2c inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x632ac7ec tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x6340a6e3 cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x63478c71 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x63631bf6 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x63860d15 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x63941c4d __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x639b317a of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x63af404b i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0x63c3e80f request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x63c5ab89 component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x63cd549f scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x63facd36 fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64231d16 component_del +EXPORT_SYMBOL_GPL vmlinux 0x6425e7e0 pmf_unregister_irq_client +EXPORT_SYMBOL_GPL vmlinux 0x64343c59 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64569b11 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x6473f50b pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x6474b306 ps3_vuart_clear_rx_bytes +EXPORT_SYMBOL_GPL vmlinux 0x6486bc52 pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x6496d8e3 inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0x6499d19a thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x64ae273f unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x64bec82b generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x64c03ade i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x64d35ef8 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x64d851c1 da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64fda96f crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x6548f3b9 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x65b404da pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c21cbf regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65e5fead regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x661de20e irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x6642ab34 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x664e08e5 serial8250_do_startup +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 0x66bb7f5f gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66db3416 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x6701ccd5 usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0x673a603a srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67a2e093 wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x67bd3e36 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x67e486eb split_page +EXPORT_SYMBOL_GPL vmlinux 0x681ede55 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x684dce14 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0x68578265 debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x6887de0c simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x688c0887 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x688e3cd8 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x689810d8 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x68aa83d5 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x68aeded2 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x68cb875d crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x68d23d21 ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0x68d2ebeb rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x68d42f70 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x68f7d618 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x691a8680 get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x693e0d6c user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x693f37ba rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x6946f646 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x6963a102 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0x696ede9a ps3_vuart_port_driver_register +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 0x69889494 devm_hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x698d1677 swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0x69917914 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0x69ca48cb tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x69ede26f of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0x6a0880bf usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a50f7e3 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x6a545150 device_move +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a679749 extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a8b7aa7 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6ac248c7 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6afd3845 pmf_do_functions +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b93842d blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x6babbb58 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x6bb872ca wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x6bc23483 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x6bdf72a4 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x6bef33f8 nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x6c01d156 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x6c035efb rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0aa124 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0x6c1edeed skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0x6c1fa104 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6c37d028 ata_bmdma_port_start32 +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c6c5341 gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x6c783c41 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x6c80c20b pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c94c5c5 ata_bmdma_dumb_qc_prep +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 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6ce0d196 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x6cf09a0a rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x6d182674 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x6d29f36b i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d3c6a9a rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0x6d5060ab get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x6d576caa pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d8f13b5 gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x6d9ba8e7 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x6dafa5c3 gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x6dd33d2c regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x6de9cc57 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x6deca32e srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0x6dfbe4e3 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e4cdfa2 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x6e51c4c8 led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0x6e6d1eb4 led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x6e6f1c98 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x6e735b8a ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x6e76721d arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e86d51f __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x6e872583 tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6ea89407 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6eb6582c verify_signature +EXPORT_SYMBOL_GPL vmlinux 0x6ebbe5c9 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0x6ec92b28 sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0x6ed0850b regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0x6ee3a1a9 ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x6f08393b sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0x6f0b01a2 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x6f0db140 usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x6f18e961 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f291bc7 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x6f443224 blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x6f5702af kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x6f5801b5 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6f7a74c2 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f96fe45 pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x6fbcbef8 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x6fdd9df8 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6fde0e6f pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x702507ea ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x702e7e8a get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x704038bb cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x70639142 irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x7066703c bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70bd57c4 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cc4e80 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70d2fc86 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x70ead2ac rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x70ef453d __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x715d988b relay_open +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x718f90b2 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x71a05742 gpiod_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x71b312ff regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x71b38137 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x71be1028 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x71c18fcd napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x71c27fd8 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0x71cde78a dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x72386ae8 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x72416c34 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x7256505d bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x7265b55e of_rescan_bus +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 0x728aa619 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x72c2e551 irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x72da0be9 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x7319052b platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x73426157 nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0x7396198c devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x739aa1a1 pmac_i2c_setmode +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +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 0x73d99227 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x73e8d22f tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0x73e9999b devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x73ec977c spu_init_channels +EXPORT_SYMBOL_GPL vmlinux 0x73fd2f94 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x741502ff sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x742a73f9 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x7433a6f6 spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x74460096 regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0x745460f2 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x74669951 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x74967f23 xhci_run +EXPORT_SYMBOL_GPL vmlinux 0x7498ea4a event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x749e8eb5 mmc_switch +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 0x74c36cb6 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x74d47142 dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x751cdc6c spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x75470e1e devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x7563b32b ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0x756719a9 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x757de484 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x75b8b546 pci_user_write_config_word +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 0x75d8ce10 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x75dcb413 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x7607348e pmac_i2c_adapter_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x760ca833 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0x761be476 inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x764cfc7b phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7667b9b1 rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x76719ae1 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x76773500 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76affcaa regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x76b1b5bd cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x76c892e5 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x76e16a47 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x76fad819 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x7702048c usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x7713807a blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x771bbf7c sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x7740643e da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7743bfec bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x775102ea scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x7756d966 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x776a74a9 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x777ea5a1 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b15a42 regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x77b52ce8 cbe_spu_info +EXPORT_SYMBOL_GPL vmlinux 0x77d88182 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x781cdf52 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x781fa98c trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x78342a90 of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0x78586b47 eeh_add_sysfs_files +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x788fe139 use_cop +EXPORT_SYMBOL_GPL vmlinux 0x789a08ab led_init_core +EXPORT_SYMBOL_GPL vmlinux 0x78a6f6c9 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78b0d835 __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x78b3c241 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x78b7890d fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78e73d62 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x78eae563 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x79388d0e tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x794c3248 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0x795b6af0 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x796df0ad bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x7970df6f xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x799daa7e get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x79a1c42f rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x79bbf94a of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x79bcff6f stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x79c61b4c power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79fec4ad sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0x7a15d28f blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x7a20f9f6 cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x7a2c2f14 mm_iommu_find +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a36128e virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x7a79bc67 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x7a8025e3 tps6586x_update +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7aac3f46 blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x7aadd906 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x7ac33be3 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x7ac89f01 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x7acb85b2 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x7b051117 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b49a4ad dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x7b5af0e5 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b8829b2 of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0x7baf3d42 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7bb0b30b serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x7bba3665 lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7bd2749e tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x7bf7b638 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c4da52b dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x7c4f00db clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0x7c7cd618 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x7c84092e vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x7c98d265 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0x7c9fa978 init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x7ca3fcad fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7cb04467 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7cbba434 ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdef5b1 ps3_vuart_port_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7cf65d97 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d037158 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x7d051bdb trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x7d17a3d1 sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x7d1d0a34 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x7d2c2386 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x7d42a094 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x7d475423 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d642503 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x7d6bb6ba usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x7d7bc35b wakeup_source_create +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 0x7e0db728 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e2078df shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x7e2b3d7b _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x7e4242bd ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x7e507d9a key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x7e528ec7 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x7e59bb77 ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x7e5a644a scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e78c338 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7ee87770 fat_get_dotdot_entry +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 0x7f2617db nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x7f419a57 virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x7f52c522 ps3av_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f86e5d1 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd75568 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0x8008e697 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x8010dbec __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x803e1b87 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x804300a9 pm_generic_poweroff +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 0x807754e1 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8082d783 usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x80830934 register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80b3682b wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80c8fdb6 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80f3268f __trace_printk +EXPORT_SYMBOL_GPL vmlinux 0x810e9557 edac_get_sysfs_subsys +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 0x813db10c sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815504f9 pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x817bc341 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x817e5202 eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0x81880072 md_run +EXPORT_SYMBOL_GPL vmlinux 0x818cd570 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0x818feb3d kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x819eaf47 ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x81a31868 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0x81c8c3f6 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0x81d60389 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x81deaa4e mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0x81fb7f13 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x81fca69d ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8211d5a7 usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x8238b52b debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8240c4a1 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x82545e86 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x82558914 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0x8256318b dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x825f6f06 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x82604bf1 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x827135b3 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x827d3328 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x827db613 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x82a8b8d8 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0x82c7ae0c device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x82ecd622 rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x8305351b usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0x830f5f67 tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x835e6345 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x83700a0a devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0x83789077 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x837ceea3 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x838cb5f7 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x83a64b88 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x83a9c65d ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x83ae8c4c pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x83b3e63b simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x83e13fcb spu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x83f8c2e5 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x843d1bc8 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x844c51c1 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x845463e2 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0x847876c1 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8489363b crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x848d066e copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x8491d0c7 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8494894a tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b57a22 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x84be6a68 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x84cbb98e dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x84e802ce md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x84ed54d8 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x85131d1e nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x8515a276 rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x8533fb05 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x853a16cf devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0x8549d57e devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x854d8106 srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x8586b3ce transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x85977f3b powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85ec60ab inverse_translate +EXPORT_SYMBOL_GPL vmlinux 0x85f6163d crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x8611d851 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x862391f2 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0x862b513f device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x862c0fcc kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0x862ea16e netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x867de14a ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8685c512 __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86c6b9d1 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x86d6ef09 blkg_dev_name +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 0x8715dcb4 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x871b4cdd power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x871d7a5e device_add +EXPORT_SYMBOL_GPL vmlinux 0x87374d60 of_irq_to_resource +EXPORT_SYMBOL_GPL vmlinux 0x873a4145 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x8776fe95 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8787e7a2 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x878ecf80 regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x87f990f1 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x88040cac ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x88211fdd wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x886b8916 pmf_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x886ba8a1 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x886e4dd2 sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x8870f1ac kvm_release_hpt +EXPORT_SYMBOL_GPL vmlinux 0x8897c6db handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88aba124 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88bb2cc0 irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0x88f89f8a regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x890e6d11 cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x890f4cda platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x891307a6 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x892b0d9a raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x893831e5 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x89388d24 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x894001f1 extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x894a933c mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x894d47f8 kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x8954d638 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0x8961b0ee digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x89653fe9 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x89855ff0 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x898686de anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x899233b0 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x8a14d28d gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x8a1a6312 usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x8a3f30a3 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a5ce545 led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0x8a6ca12f pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x8a728df6 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0x8a753cbb realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x8a77be21 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x8a8d8e0d __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8abb0397 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ac335b3 gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x8ad80460 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0x8aecad6d ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0x8af9ee88 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x8b012cfe of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b03d6c2 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x8b18d3f1 devres_find +EXPORT_SYMBOL_GPL vmlinux 0x8b35bac2 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x8b3ec089 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x8b703994 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b7e785a thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8157f3 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0x8b867967 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x8b8aa7c3 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x8b9655fd dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x8b9e7a4a debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x8bc48f3e add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0x8be3a4bf get_device +EXPORT_SYMBOL_GPL vmlinux 0x8be6b707 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c0571e7 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8c35b099 usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0x8c46bd83 nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x8c4ca178 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0x8c6118ef stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x8c62f88f clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8cabf2ae blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cc596ec __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x8cd5fc53 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8d1bb976 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x8d1ff36a regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d51e4a6 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x8d85367f smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x8d936a6d mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0x8da05470 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8db942db wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dccbf14 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x8ded80e9 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x8df57769 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +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 0x8e3e8996 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x8ea0ef97 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ea14250 subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x8eac2e49 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8eaf4061 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x8ebba356 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x8ec6edfb key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x8ec8b08f extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0x8ecedcd7 spu_invalidate_slbs +EXPORT_SYMBOL_GPL vmlinux 0x8ee097ca pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x8ee0e0f1 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f1e886e rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0x8f25faca vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x8f280828 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x8f33e007 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x8f5a8184 usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0x8f6ae76f shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f96f7d7 console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x8f97adf4 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x8f99286b irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x8fbb5c21 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0x8fbe140a platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd840cd percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x90099d71 ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x900d1cab rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0x9021d3b7 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x90274a34 eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0x90275239 debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x902aace5 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x903d7657 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0x90481927 of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x906dde28 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x9075e581 crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90a77fcc of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x90c201a1 tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x90e3cc37 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x9105ee37 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x91150b7f spu_priv1_ops +EXPORT_SYMBOL_GPL vmlinux 0x9164c67f kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x916ce80e tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x9174b9a9 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91a56821 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x91a91dda sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91e9c1e9 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x91ef528f dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x9215b6b0 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x922d3dea arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x928960c4 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x92b7abcb thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x92bb7b7c blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0x92da4b94 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x93016a97 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x930b6993 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x93115026 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93311080 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x93443c92 pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x9365fafc rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x9387ed8c usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x93ab61bf pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x93b1fb94 i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0x93d7eed6 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x93daaab7 irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x93fde1ca blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9448464d power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x9451b9f1 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0x94652787 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x946df5f9 of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94aa1538 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x94cfc9c8 regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94dc3ec8 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x94e2240b usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f1daae max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95239316 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95353a30 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x9544f741 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x9579ddae __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x959086a1 blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x95965d16 usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x95a2a896 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95bf9a4a blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x95cf1335 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0x95cfe0d9 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x95e8b8e4 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x95f2deba usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0x96167f0a usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0x96191e04 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x9634e8ae rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x965a78d5 threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x96750f31 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x969c13ae usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x96b801a9 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x96bafc33 tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x96bbdccb virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x96c4ec56 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x96d16dc0 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x96ef4d6e crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x96faaed0 usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x971acd4c component_add +EXPORT_SYMBOL_GPL vmlinux 0x97239ee4 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x97415d2e device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x975c93ec __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x9780c464 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x97a01819 iommu_tce_clear_param_check +EXPORT_SYMBOL_GPL vmlinux 0x97bb2b23 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x97dad3af skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97e1dad4 ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x97ea8ab6 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0x97ee1964 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x9801ed0a trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x982423ab ata_dummy_port_info +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 0x98581016 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9868a665 pmac_low_i2c_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9877a8da pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x988491d5 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x98949818 powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98bcae62 power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x98c8489f rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x98e8523f usb_unanchor_urb +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 0x9916ac73 gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change +EXPORT_SYMBOL_GPL vmlinux 0x995acb8e scom_find_parent +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 0x998876a0 ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x998d79d6 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99ad3598 inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x99b2c9ed pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99be4d3c leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x99c321a4 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x99cd4691 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x99d5b9e4 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a1d8894 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x9a3623dc of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a7f930f regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a95d952 sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x9aac91e8 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0x9aad4542 usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0x9aad6540 klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x9ab8b3cf sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x9ac11b74 suspend_set_ops +EXPORT_SYMBOL_GPL vmlinux 0x9ad6cf1b page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b1b24b5 wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x9b2ba7ca tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9b3084fb ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x9b44a8e0 wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x9b7f6777 eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x9b904f1e find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c011423 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x9c1b526a ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0x9c296754 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x9c2e1ad8 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0x9c3273e5 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x9c658e36 devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x9c6d1638 kick_process +EXPORT_SYMBOL_GPL vmlinux 0x9ca4e56a fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x9cb7f500 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x9cbd1ec5 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ce20f98 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x9cfa5a95 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0x9d0be35c gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0x9d3ae080 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x9d3dd005 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0x9d41ba89 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x9d6271e8 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x9d7ea944 ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0x9d7ff70a phy_put +EXPORT_SYMBOL_GPL vmlinux 0x9d84ea8d trace_seq_printf +EXPORT_SYMBOL_GPL vmlinux 0x9dac663a handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dc33570 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x9de8be22 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0x9df561d1 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x9e1b8ac6 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e49f651 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x9e5504ff of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x9e71bcf6 inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x9e7a75bc subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x9ea90532 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9ea9f6fa kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x9eb109f1 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0x9ec2b78b blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ed72b0e __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9ef5c639 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9f0a253d usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x9f126501 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x9f16a3da blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x9f2c6544 powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0x9f360399 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x9f3d6d03 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9f4721fe regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x9f5566cb iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x9f72d9d1 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x9f8a5a28 rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x9f9758c9 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0x9fb30222 ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe43c62 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa00534dd usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0xa035465d pmf_do_irq +EXPORT_SYMBOL_GPL vmlinux 0xa0527cf8 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa07b4bdf page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0xa07d9796 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0xa091da4d devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xa0987b54 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa09991e9 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0xa0a27df5 sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0ab968b serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0xa0ac5c59 crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xa0cf0ee0 devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xa0cf7fa0 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa0f92665 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0xa0f9a3b1 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0xa1306d07 devm_usb_get_phy_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xa13e4fd9 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa14b490e ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa14e2e3a anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0xa150c5e3 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xa1515d9b sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa1541bcb fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1918f7a debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xa1aa87a3 ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0xa1b591cf mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa1d84591 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0xa1df0ad3 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xa1e678bf iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xa1ec3f7f debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa1f5ec42 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xa21419c3 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0xa21674fc securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xa219a936 cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0xa22f4822 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa2718017 cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa2734a95 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xa294b49a i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xa2a188a3 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2c5091b sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0xa2fd6ab7 phy_init +EXPORT_SYMBOL_GPL vmlinux 0xa2fd99bf of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa3036089 usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xa32d38ab gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xa338fcea ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xa36d4c43 ata_std_error_handler +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 0xa3a42e89 trace_call_bpf +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 0xa41fd259 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xa4273b11 crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xa46d0f9d pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xa4802e55 sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4bd50f1 __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xa4c00321 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa4c2b6fa fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0xa4eb191a wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xa4f0331b uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0xa52ed95c dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0xa545d3f6 swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0xa54712f5 sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xa567dea2 i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa56d50b5 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xa58878fb serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5da1202 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xa5e24e40 pmac_i2c_match_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa5e8666c pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa60b7be4 ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xa610ee3a usb_hcd_end_port_resume +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 0xa63b5346 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa66bdc08 percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0xa679edcd unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xa6959bcf ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6b7d28f crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xa6d3bbc8 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0xa6f1a3c0 ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0xa7213172 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0xa72a12d7 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0xa73457e6 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0xa7474ded rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa74b406f debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xa74cbbb6 bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa76c6fd4 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xa77d1801 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0xa7a7d715 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7c16da3 devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa7e27447 of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xa7fb8701 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xa8104d6c dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xa814a3bc ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa82fccb6 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0xa831f4bc nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xa8327426 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0xa843b382 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xa84d8469 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85263e6 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xa8563e07 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0xa87214e8 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa90bbe41 to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa94f4683 inode_congested +EXPORT_SYMBOL_GPL vmlinux 0xa9601a0d crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0xa96f51d5 pmf_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xa98cdb36 ps3_get_firmware_version +EXPORT_SYMBOL_GPL vmlinux 0xa9980cda platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0xa9a57716 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xa9c51ddf arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9ff408a pstore_register +EXPORT_SYMBOL_GPL vmlinux 0xaa31df06 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa92a5a8 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xaaa7899c apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaba67b1 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xaad3b0c3 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaaf1ba0f gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xaaf8fe32 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0xab14742d sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0xab16afb4 ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xab29ad96 cpuidle_disable_device +EXPORT_SYMBOL_GPL vmlinux 0xab2b243d ps3_irq_plug_destroy +EXPORT_SYMBOL_GPL vmlinux 0xab3299fa regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xab330945 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xab35a454 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xab49e098 modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xab4f9c82 list_lru_count_one +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 0xab6fa92a pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xab92eb0e da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xab9fff0e vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xaba2db15 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xabaa61f4 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0xabb1d6ab mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xabd5367b of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xac03e737 iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0xac0ee003 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xac242f46 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xac2da522 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0xac35e32f da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xac57f640 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xac5daf36 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0xac7ac857 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xac835123 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0xac8e5739 phy_get +EXPORT_SYMBOL_GPL vmlinux 0xac9e4183 pmf_call_one +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad1013cf pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xad12e16b regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xad280fc7 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xad290538 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xad29a9eb of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xad37cd7d pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xad483bae dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0xad66c846 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xad99f711 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xad9de852 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xadacdddb subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xadbb733b crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xadf0b2af rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadfcdf4d crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0xae378e83 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xae38b255 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae726754 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae9e36d1 of_pci_range_parser_init +EXPORT_SYMBOL_GPL vmlinux 0xaebdb974 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xaec1ee91 of_get_nand_on_flash_bbt +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaeeb5b23 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0xaef9eb1a ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0xaf421d09 pcibios_add_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0xaf470e8a devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xaf4e27d8 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0xaf51cae8 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xaf5ca886 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xaf68a357 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0xaf71f9e5 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0xaf7297f0 devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xaf7dc07a map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xaf8f08bb pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xafb180eb ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xafc21fa6 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xaff3a1e1 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0xb00332c5 rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb0233000 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0xb03392fe sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb0625bcd iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0xb0922850 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xb09fca70 crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0a0a994 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xb0af257c smu_get_ofdev +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0cb2ea9 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb0ea1834 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xb0f7353b __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0xb0f9da95 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0xb123d939 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0xb13c2826 of_property_read_u64 +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 0xb149b6f2 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xb14d14f0 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xb14fc8e1 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xb159aa33 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb15d4f94 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0xb16b4820 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb19dfcb3 pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1b6dee5 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1c8502f hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb21d626c cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22429e6 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0xb2432bab ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0xb2481403 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0xb26950cb device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb2960554 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xb2a84ef9 dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0xb2da48b5 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb319df1c cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0xb322d33c blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb344bb81 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb36237b0 rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0xb364b0a3 pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xb3705513 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xb377c497 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb38f54d3 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xb3a90770 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xb3b7a239 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb3cfe9dc subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xb3dd162a of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0xb3f49b6a blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xb40e2744 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xb4588e54 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xb47ff0f9 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb4b7ee63 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb50df25f securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xb511e338 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xb51763ca dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb547c4a5 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xb57af20f handle_mm_fault +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 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5cb15e5 __platform_register_drivers +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 0xb6297df4 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb6613968 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xb68593b3 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xb686e902 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0xb6939bc9 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0xb6a25cb5 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0xb6a32408 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6bc007a spu_sys_callback +EXPORT_SYMBOL_GPL vmlinux 0xb6de34a7 crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xb6e0637c wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xb6e0a617 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0xb72d2eca crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xb7347085 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0xb74ecf07 adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0xb781f6e9 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb7968e4b ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0xb7cf9cab md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xb7e29bb6 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xb7e7b9e0 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xb7e87bd4 invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0xb7f4b8d0 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb80803a5 crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0xb80af3d6 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0xb836d3b7 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0xb84b1aae ps3_event_receive_port_setup +EXPORT_SYMBOL_GPL vmlinux 0xb8787c10 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8a95be9 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d10772 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xb8d6b6ef class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xb8f1db2d inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb9012a11 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb9039bf3 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb94de068 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb9573188 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0xb96b967c to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0xb98cc93a srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9c850d6 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d96b72 blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0xb9eba745 isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0xb9f19bf7 pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0xba0245a3 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xba0c91cf adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba2d70e6 ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xba4806ce usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xba5c8b2f mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xba657276 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xba672cf5 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xba699b7f irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0xba859aad regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xba915b87 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbaa4e61c locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xbab0d899 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0xbab1119d tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaf6c39c clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbaf7623d __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xbb00f539 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb076342 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb306053 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0xbb398803 ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xbb49aafe spu_64k_pages_available +EXPORT_SYMBOL_GPL vmlinux 0xbb5c5f31 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb80e8d5 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xbb87a4aa crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbbb685b7 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xbbbd39b5 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xbbc6fca4 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0xbbccab93 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0xbbf6f1b5 device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xbc08467d tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xbc12dbc4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc443739 usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xbc56f37f usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc8c80e7 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0xbc8f6ada dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0xbc9dc0b3 pmac_i2c_get_dev_addr +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcbc7805 device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcdaece2 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbd1eb509 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd593ba2 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd7d3321 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0xbd7d5111 fat_fill_super +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 0xbdf5bca5 gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0xbdfa97dc crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xbdfd864b ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xbe15c541 ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xbe1685cd trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe27ab2e shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xbe3f7989 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0xbe591759 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xbe621aa9 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe6f8fd1 tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xbe799308 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xbe96dfd8 of_reconfig_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbea31c1c wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeacdcb4 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec0cae9 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xbec15b5a irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbed0d24f ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0xbed2b86e tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbeeb0995 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xbefd4c51 regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf2ec6dd trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xbf2ede3e uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbf438396 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0xbf4bec01 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0xbf7b93ef get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xbf7ccd2f sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xbf949d3c sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xbfb7f89a regcache_sync_region +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 0xc01098d6 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc01a82b9 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc0609542 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0xc061367e mpic_msgr_get +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc065aa2a nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0996860 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0xc0a42483 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xc0a8ce4b vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0dbdda5 regmap_field_alloc +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 0xc0f34cfd __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0xc127d5e0 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc15f0442 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xc1606fd9 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc19217ee of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xc198d018 __class_create +EXPORT_SYMBOL_GPL vmlinux 0xc1a91b21 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0xc1de9810 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xc1e03385 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0xc1e99586 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0xc1fe484e scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xc20eba09 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc22a4f79 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xc23ba20d pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xc24d8d5c single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xc266afc4 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0xc267e79d sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xc274b013 inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc2a1a6b2 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0xc2be66ae bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2c2bc70 eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0xc2d2bf83 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xc2de873c usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xc2e4c652 virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0xc30a789f max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xc30d6b6a scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xc317f97d usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3221b2c reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xc326d1b2 ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc3601549 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc3719dd6 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc375d24e xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc39a5452 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xc39b130b sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3ad3149 rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xc3b7d5e6 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0xc3b81e24 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xc3e0fdc0 do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0xc3e1352f nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xc3ec3bcd __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xc3ee0a8b sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42a6556 __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0xc4415399 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc4619900 ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xc4624a63 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc472b2af nl_table +EXPORT_SYMBOL_GPL vmlinux 0xc47ee68e ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0xc4886002 device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xc48af8fa set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc49e1d2d netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4bb20be pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xc4cc781e regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xc4cc9907 kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4d8b012 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xc4e2b732 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xc4eff337 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc4fcf3d2 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xc5306d8e usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc546e490 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xc553a77d devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0xc5601343 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5883054 regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc594b582 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xc5a005d5 extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5d11db4 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0xc5ddd1c1 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0xc5e1991d tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xc5e79579 powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0xc5eb4d14 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5f13a1f spu_set_profile_private_kref +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc60c321f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc623a88b transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc63a645c elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc666e56b pci_hp_change_slot_info +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 0xc69a4e32 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6bfe692 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xc6c9378b ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6e2f79a percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc6ea7dc2 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xc706dbdd pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc728267d ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7528314 mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0xc754face cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xc75af705 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0xc7608a1e find_symbol +EXPORT_SYMBOL_GPL vmlinux 0xc766b466 gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xc7774fda virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7aa1ee0 regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc7b78dda pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc8013ca3 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xc80c7f70 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xc825c22a __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xc826420c skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0xc8329026 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xc836fa9a __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0xc84583f7 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0xc8478572 do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0xc8696444 pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc88012f0 task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0xc89542e2 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8a21109 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b21f91 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xc8b5e058 devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xc8ba94f0 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e2ed2e page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0xc8f71527 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xc90432cb percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xc9051fb2 pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xc9086ff5 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0xc90b3806 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xc9116911 tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc91e57f4 macio_find +EXPORT_SYMBOL_GPL vmlinux 0xc937d98a ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xc93e6e76 dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xc945c649 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xc9521ed2 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xc9561772 fb_destroy_modelist +EXPORT_SYMBOL_GPL vmlinux 0xc95f7d9b securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc96202ee of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xc9641b48 visitor32 +EXPORT_SYMBOL_GPL vmlinux 0xc97d1140 cpufreq_cooling_get_level +EXPORT_SYMBOL_GPL vmlinux 0xc99711a0 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0xc99de1bc sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xc9bf8d39 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xc9c6e8bc ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0xc9cd6fa1 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xc9ce9009 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xc9e340ec phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca0172c2 ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xca0403c4 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xca224e66 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xca24492e hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0xca31d3ed scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0xca3712c9 mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0xca404252 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xca5aa3e4 usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0xca604f03 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xca7210bc devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca9a3ceb extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcaba85a1 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac2cc6c platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0xcae2d204 phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0xcae38741 hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xcafa449e disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0xcafb20b5 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0xcafcf73f mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb2747af gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcbb9d649 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xcbccd8ec tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0xcbde31f3 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbf4ff8e extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xcc0d746d trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc5519d9 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xcc5cdfec regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0xcc5d9ecc alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xcc5e464f posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0xcc5f792b pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xcc6280a9 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8ff376 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0xcca16ffb inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccd9a225 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0xcd2802f1 devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xcd2f5635 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0xcd31a144 mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xcd34d1a2 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xcd4d935a led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0xcd6b1104 crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xcd8fa866 disk_get_part +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 0xcdbb528c blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcdcff314 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0xcdd97540 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcded9085 dma_buf_vunmap +EXPORT_SYMBOL_GPL vmlinux 0xce13c51c rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce394103 iommu_tce_put_param_check +EXPORT_SYMBOL_GPL vmlinux 0xce448814 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xce59f069 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0xce5aae74 regulator_set_voltage_sel_regmap +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 0xce9b6a58 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xcea0c551 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xcea2718f rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcedfa3eb spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0xcee15a04 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcef0bcb2 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0xcf2138a2 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xcf2522d8 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xcf3320fd da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf6a41f8 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xcf8681a7 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0xcfb14fbe device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfbeeb16 regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfcdc81b flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xcfe0499d usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0xd031e3f4 relay_subbufs_consumed +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 0xd091f9ca pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xd0a0f310 cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0c9622c ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd0deb77f uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0xd0e76dd8 register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xd0f06b85 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0xd0f440c4 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0xd101125e spu_management_ops +EXPORT_SYMBOL_GPL vmlinux 0xd113b22a pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xd141d1d3 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xd1460677 to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0xd1537a37 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xd153c3ca tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd1663af0 spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd176a01f adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd1b30ff8 pmf_register_irq_client +EXPORT_SYMBOL_GPL vmlinux 0xd1bce452 pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xd1c72329 ps3_open_hv_device +EXPORT_SYMBOL_GPL vmlinux 0xd1df402e pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd1ebeba9 crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fbd290 ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd1fc0375 input_class +EXPORT_SYMBOL_GPL vmlinux 0xd20224ff sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd225cd71 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xd2405d63 __sock_recv_timestamp +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 0xd2adeb3c led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd31c9530 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0xd353460d component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0xd35908e9 pcibios_alloc_controller +EXPORT_SYMBOL_GPL vmlinux 0xd35ec61a key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xd3620ee7 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xd37e5a97 sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3c86332 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xd3cc3e87 md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xd401150b virtqueue_get_avail +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 0xd41e2085 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd436753b regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0xd43cc893 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd45b8aef security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xd45d0c3c rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xd4641c5e xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0xd486b674 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xd4a590c7 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4d0ffe3 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0xd4d34b93 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd4f11464 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xd51547a3 device_property_present +EXPORT_SYMBOL_GPL vmlinux 0xd522e03a desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xd529219b register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd52d4346 devm_extcon_dev_allocate +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 0xd5a7fc28 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd5b02b5f regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0xd5b26ef2 gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xd5b49890 ping_err +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5cda79d fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0xd5ce8f1f devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd5da1c66 arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xd5e273ff input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd6693c78 dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd678c446 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6b4331e PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xd6c9aa09 usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0xd6cd6158 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd6cf4226 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6dda7e3 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd7012801 device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd709fe19 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0xd715595e param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xd735722d regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0xd74a83ca netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0xd74b5733 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0xd7509d9a pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd79ba476 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xd7b70917 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xd7c64bc8 agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7dbe513 ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd7f1de17 __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xd7fc3e98 alarm_start_relative +EXPORT_SYMBOL_GPL vmlinux 0xd801e658 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xd8020088 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0xd8052c2f fuse_direct_io +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 0xd84cdfad tps65912_reg_write +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 0xd888c3d7 find_module +EXPORT_SYMBOL_GPL vmlinux 0xd8c3d870 __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xd8e41a13 __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0xd8ed9630 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xd9231770 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xd92eab2d sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xd93e8e0e of_get_videomode +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd9449b11 phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xd9497b3c ps3_os_area_flash_register +EXPORT_SYMBOL_GPL vmlinux 0xd94aa457 display_timings_release +EXPORT_SYMBOL_GPL vmlinux 0xd9598b04 pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xd95ac829 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd970981e serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xd97878a7 mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0xd9b5ac41 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xd9c4c66a devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0xd9cd30a3 shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda0a4d22 mpic_msgr_enable +EXPORT_SYMBOL_GPL vmlinux 0xda2d8990 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0xda5312d4 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xda622f4d crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0xda6567e9 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0xdadd5d04 devfreq_event_disable_edev +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 0xdb0ac13b ps3_compare_firmware_version +EXPORT_SYMBOL_GPL vmlinux 0xdb224bf1 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xdb22aecc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xdb38c923 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0xdb3f45e8 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb4dbf80 fb_sys_write +EXPORT_SYMBOL_GPL vmlinux 0xdb5941e0 usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0xdb66dbfd rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb8d6035 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdbba88ea cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0xdbd0b3c6 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xdbf6fbe4 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfca539 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xdc1ca549 i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xdc277092 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdc450856 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xdc4d3fdf handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0xdc5d233d pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc5f07c4 tpm_calc_ordinal_duration +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 0xdca5e5ef nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xdcee2384 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xdcfc3c10 sk_setup_caps +EXPORT_SYMBOL_GPL vmlinux 0xdcfd4a0e blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xdd043eea ps3av_get_auto_mode +EXPORT_SYMBOL_GPL vmlinux 0xdd0946e5 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xdd139c4a regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0xdd15ebe8 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd2e805c exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4a3133 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0xdd5059d2 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xdd55d3a9 spu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd6cab7e kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xddba6992 uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddc143d2 pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0xddcf292c tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde0da44d dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xde16dad8 pmf_get_function +EXPORT_SYMBOL_GPL vmlinux 0xde32ce7f attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xde560b2c crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xde5fb519 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0xde78bcad thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0xde7a23a1 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xde9f4ca8 pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdea62c03 tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0xded437b5 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdeed289c ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0efa9e of_resolve_phandles +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf1b9ae6 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0xdf2ca003 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xdf3b5fee spi_async_locked +EXPORT_SYMBOL_GPL vmlinux 0xdf80476d trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xdf858fbf of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xdfab6c75 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xdfb796d9 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xdfbb4332 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +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 0xe0456376 srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0xe0521824 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe073fa7f device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xe0751c51 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xe080638b ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xe0842cf9 spu_get_profile_private_kref +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09220f2 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0xe0928358 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xe0afa9a2 __module_address +EXPORT_SYMBOL_GPL vmlinux 0xe0cb8474 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0xe0d6e5c4 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0xe1038522 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xe109ff8a ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xe1253712 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe133f6b3 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xe13de51e platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xe14a474a sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0xe160281b single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe19edbb2 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0xe19fc092 ps3fb_videomemory +EXPORT_SYMBOL_GPL vmlinux 0xe1a7cd1e clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xe1af7837 crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0xe1b033fe extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1cf27a3 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xe1dbb253 usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xe20c8f93 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xe22f02a1 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe255d6ab pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xe2762f8f sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xe2811413 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2919ed7 __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xe292d546 usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xe2c37400 skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0xe2d15afd class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xe2e1bdd3 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0xe2e23f8d ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xe2e6d2b3 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0xe2eddd1d pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe307a1f3 hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0xe30bfdb1 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xe335d465 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0xe36dedee regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0xe3848e0f eeh_add_device_tree_late +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3f00109 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0xe409d556 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0xe426310a rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0xe43001b2 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4329ad6 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe44841eb wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0xe451e03d disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xe45e10f1 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe47ee186 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe497b57d blkcipher_walk_phys +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 0xe4e2d8ff usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0xe4eac9d8 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xe4f3d6dc __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xe4f588c4 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe540f359 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe57ef554 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59a21f7 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe5bffc9b flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0xe5ef4db7 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0xe5f1365e sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xe5f6f749 class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xe630c034 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xe6483df8 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe66cf472 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xe671f33c pmac_i2c_get_channel +EXPORT_SYMBOL_GPL vmlinux 0xe684122f pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0xe6873e6e pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe6a64dbb kobj_sysfs_ops +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 0xe6f1dd0a regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0xe7356744 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0xe739dd5d serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xe747be4b led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe74c746f __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0xe753a83b pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xe75961e5 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0xe768d444 __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe76c4643 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xe7822b34 out_of_line_wait_on_bit_timeout +EXPORT_SYMBOL_GPL vmlinux 0xe7a66807 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xe7c26c50 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0xe7d07d6a serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xe7db4b2e sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7f31d5a dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80e864f dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xe8111477 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +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 0xe86e66a1 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0xe8757c76 mmput +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8b890e5 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0xe8d3a2de iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xe8e86ff0 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe91b3859 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0xe9213ed0 devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xe924c5f7 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe960e703 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xe98006eb trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0xe992527c crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe993077d dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xe9bf72d8 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0xe9c8d9eb driver_register +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xe9e09f2a iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xe9efdf1f ata_bmdma_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0xe9f6c96f iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0xea072514 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea21af61 ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0xea23bc99 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0xea3a2362 of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea876ca4 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea9a983c sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0xeac19457 pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xeac21bfc regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xeac7cdd3 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xeaff9bdb debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0xeb13811d iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0xeb163932 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xeb340bf7 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0xeb58d544 devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xeb59e740 kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0xeb69ed50 copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0xeb719f10 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb80878a skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xeb8e8d67 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0xeb928577 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xeb934280 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0xeba0751e ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xebc3f1a4 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xebccb975 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0xebd212f3 devres_get +EXPORT_SYMBOL_GPL vmlinux 0xebe21523 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xebe5ff6b serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec118831 stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec2568e7 usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec3cbd12 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xec52202e cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec681ee6 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0xec701460 cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0xecba1d27 srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0xecd013be rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xecd6c608 relay_close +EXPORT_SYMBOL_GPL vmlinux 0xece3ac1b unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xecf10455 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xecfcfc91 drop_cop +EXPORT_SYMBOL_GPL vmlinux 0xed0a40e2 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0xed30c40c regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0xed5dd0f1 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xed6ffb7f phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0xed7ccddc regmap_read +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xeda84498 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0xedb85c47 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0xedbcd671 __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xedc97a23 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xedc9a621 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0xedf415b6 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xee234d24 eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0xee2d1e0b dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xee349478 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xee34f80a of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xee36ccb8 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xee6b71c4 syscon_regmap_lookup_by_compatible +EXPORT_SYMBOL_GPL vmlinux 0xee7870fe tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL vmlinux 0xeeb15bd2 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xeec84820 of_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xeeca091e regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0xeed40971 of_node_to_nid +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xef06c973 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0xef185090 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xef36c46c fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0xef5d2c68 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0xef699f7f iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0xef6c3f70 round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xef6c96e1 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xef6d007a sigset_from_compat +EXPORT_SYMBOL_GPL vmlinux 0xef85b409 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0xef8c7850 pcap_adc_async +EXPORT_SYMBOL_GPL vmlinux 0xef91882f usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0xef9c6722 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa7bc7a sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xefc368d2 gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xefd29919 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xefe789d9 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0xefed9802 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xf00af985 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0xf0305666 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0508d04 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf074d01d pmac_i2c_get_bus_node +EXPORT_SYMBOL_GPL vmlinux 0xf07c0082 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0xf098dd15 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0xf0b6f9a6 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0ed9c0c crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xf0edb978 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf116f114 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xf11bbcd3 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0xf140a89f spu_setup_kernel_slbs +EXPORT_SYMBOL_GPL vmlinux 0xf14de857 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf1933e23 nd_blk_region_set_provider_data +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 0xf1b67683 of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xf1bc626d iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xf1f76737 pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf2024d30 kvm_alloc_hpt +EXPORT_SYMBOL_GPL vmlinux 0xf21d0a65 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf21e5d47 regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0xf22eac00 pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0xf2575324 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xf270495b pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf29b6b6b gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xf2a20a94 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2c4dac5 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xf2cf602f dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0xf2d0aac4 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0xf2f2acbd simple_attr_open +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 0xf316108b pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf3218905 user_read +EXPORT_SYMBOL_GPL vmlinux 0xf3246cfc power_supply_get_drvdata +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 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf37f611e ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf382f2ae shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xf393fc69 dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3c27dac posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf3d45217 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0xf3d8ce7f securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f98ff0 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xf409bfdd __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0xf441f83f blk_mq_free_request +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 0xf47bebbc put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf498a31d device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4dafd40 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0xf4de4d5d ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xf4e1922a __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xf4f6b85e blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf5031736 scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xf50c6914 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf515561b extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xf52298c2 perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xf52cb31c phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf5481beb rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0xf549b7a4 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf561c8ba scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xf57ae918 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xf58ba2ea wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0xf59c4b00 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5a7e848 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5cfb1df unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xf5e679c4 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xf5f099b5 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0xf61ec901 ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0xf6346ff1 stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0xf6350502 spu_switch_notify +EXPORT_SYMBOL_GPL vmlinux 0xf6374068 arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0xf637fda3 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0xf643da82 gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xf66fc531 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0xf685b43a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf698014a devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xf6b0b4f6 sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0xf6ba5332 nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xf6c54cc8 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6cc6385 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf6dcabd5 platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xf6e361ed ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xf6e874f5 ata_timing_merge +EXPORT_SYMBOL_GPL vmlinux 0xf6eaa0c7 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf6ee3874 crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xf6f5863e device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xf6f5ee24 relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xf70fe0a3 of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7b9a673 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0xf7c5522a device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xf7d3c464 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xf7d5c344 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xf7e53be2 dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xf7e8dacd kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xf7f380ec irq_alloc_domain_generic_chips +EXPORT_SYMBOL_GPL vmlinux 0xf7fce698 get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf836854e scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf84b5e13 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf894539d of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf89e72a9 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0xf8ac19d8 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0xf8d6a609 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0xf8e398fc memstart_addr +EXPORT_SYMBOL_GPL vmlinux 0xf8e6b564 hibernation_set_ops +EXPORT_SYMBOL_GPL vmlinux 0xf8ea0a62 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0xf8f3a0fb ata_ratelimit +EXPORT_SYMBOL_GPL vmlinux 0xf8fe3d0b kmsg_dump_register +EXPORT_SYMBOL_GPL vmlinux 0xf904224d netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xf91ba35e sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0xf92846c6 of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9401d50 of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xf943a962 unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9730989 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xf9769838 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xf979203b pmac_i2c_get_adapter +EXPORT_SYMBOL_GPL vmlinux 0xf97931c7 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xf97bc594 ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0xf982d804 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9a07a34 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0xf9a6269d fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0xf9a719a0 unregister_virtio_driver +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 0xf9ffe02d rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa315a0a power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xfa31ab3f register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xfa4298ef regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xfa44eed4 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0xfa60a0ca evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0xfa643b6e blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0xfa78d6a4 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xfa8922c0 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb16fef4 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0xfb2b2b8c dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb4264ce __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0xfb4fc9d7 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0xfb525dfc pmac_i2c_get_type +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb6514e1 platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xfb6a07d2 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb79df2d spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0xfba264cc ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd3a24d opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfbdca1b6 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0xfbf3379d pci_intx +EXPORT_SYMBOL_GPL vmlinux 0xfbf62081 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0xfbf7b44e swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0xfbfcdc2b ps3_sys_manager_get_wol +EXPORT_SYMBOL_GPL vmlinux 0xfc01780a fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc17883f crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc2084e5 usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0xfc452095 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfc516813 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0xfc61e059 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xfc9937a7 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xfc9add44 ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xfca3429b rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0xfcb4c3d9 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0xfcfd95c5 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfcffb4e1 pmac_i2c_get_flags +EXPORT_SYMBOL_GPL vmlinux 0xfd139608 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xfd241487 pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xfd3d792b sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xfd48b17b sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0xfd58d420 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0xfd5e3a68 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7ed807 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xfd9429e5 extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd9bdd50 wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfda6d1b5 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0xfdafbb06 ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xfdbf1a46 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0xfdc4866a kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0xfde40469 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0xfdf01810 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xfdf13498 skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xfe02e966 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0xfe0ccf81 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xfe1a8a6f iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0xfe2af6cb skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xfe4b407c __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0xfe7d65aa md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xfe891bc8 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfe99def4 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0xfec75c0d platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee74a99 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xfeec1f06 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xfeff34d3 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff0dacff ps3av_video_mute +EXPORT_SYMBOL_GPL vmlinux 0xff0f7eff perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xff1134ba of_thermal_get_ntrips +EXPORT_SYMBOL_GPL vmlinux 0xff40dc9c pstore_unregister +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff5e8729 ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff67b193 usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xff69475c wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffe0f468 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xffe84549 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0xffe878d7 pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0xfff466e0 crypto_init_ahash_spawn only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc64-smp.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/powerpc/powerpc64-smp.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/powerpc/powerpc64-smp.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/powerpc/powerpc64-smp.modules @@ -0,0 +1,4367 @@ +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 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/ppc64el/generic +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/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 0xdd3817b8 suni_init +EXPORT_SYMBOL drivers/bcma/bcma 0x217a29d4 bcma_core_dma_translation +EXPORT_SYMBOL drivers/bcma/bcma 0xa70dac8b 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 0x1cad1311 pi_read_regr +EXPORT_SYMBOL drivers/block/paride/paride 0x2de62769 paride_register +EXPORT_SYMBOL drivers/block/paride/paride 0x344aeb31 pi_do_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x356b7de6 pi_release +EXPORT_SYMBOL drivers/block/paride/paride 0x3b04d8e1 pi_write_block +EXPORT_SYMBOL drivers/block/paride/paride 0x4267110a pi_register_driver +EXPORT_SYMBOL drivers/block/paride/paride 0x45058ce8 pi_disconnect +EXPORT_SYMBOL drivers/block/paride/paride 0x4809756c pi_init +EXPORT_SYMBOL drivers/block/paride/paride 0x4d652638 pi_schedule_claimed +EXPORT_SYMBOL drivers/block/paride/paride 0x838f95e1 pi_write_regr +EXPORT_SYMBOL drivers/block/paride/paride 0xb21ba07d pi_unregister_driver +EXPORT_SYMBOL drivers/block/paride/paride 0xefabb572 pi_connect +EXPORT_SYMBOL drivers/block/paride/paride 0xf00f85f3 pi_read_block +EXPORT_SYMBOL drivers/block/paride/paride 0xf5905a1f paride_unregister +EXPORT_SYMBOL drivers/bluetooth/btbcm 0xe1dc52a6 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 0x44b37713 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 0x85a2bd8d 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 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 0xe1c66e4f ipmi_get_smi_info +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xe4dee20e ipmi_smi_add_proc_entry +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 0xf6fa30bb ipmi_smi_watcher_register +EXPORT_SYMBOL drivers/char/ipmi/ipmi_msghandler 0xfcb77cfd ipmi_free_recv_msg +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x4d1dd519 st33zp24_probe +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x7c607ff9 st33zp24_pm_resume +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0x8b32a79b st33zp24_pm_suspend +EXPORT_SYMBOL drivers/char/tpm/st33zp24/tpm_st33zp24 0xdb802bb3 st33zp24_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x25978d50 xillybus_isr +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0x8b958a1a xillybus_endpoint_remove +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xbca50b26 xillybus_init_endpoint +EXPORT_SYMBOL drivers/char/xillybus/xillybus_core 0xd16e327a xillybus_endpoint_discovery +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x132b2832 dw_dma_cyclic_free +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x1686d799 dw_dma_cyclic_start +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x2b96ac7b dw_dma_cyclic_stop +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0x4beee11b dw_dma_cyclic_prep +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xc255c4cc dw_dma_get_dst_addr +EXPORT_SYMBOL drivers/dma/dw/dw_dmac_core 0xd01a251b dw_dma_get_src_addr +EXPORT_SYMBOL drivers/edac/edac_core 0xba160496 edac_mc_find +EXPORT_SYMBOL drivers/firewire/firewire-core 0x04d0f641 fw_core_remove_descriptor +EXPORT_SYMBOL drivers/firewire/firewire-core 0x0ca048eb fw_send_request +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 0x1dc722f5 fw_cancel_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x2885fec5 fw_get_request_speed +EXPORT_SYMBOL drivers/firewire/firewire-core 0x35b36c5b fw_iso_context_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x3c56ef91 fw_workqueue +EXPORT_SYMBOL drivers/firewire/firewire-core 0x4cb6cfae fw_iso_context_stop +EXPORT_SYMBOL drivers/firewire/firewire-core 0x5f665faf fw_bus_type +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 0x664f7819 fw_core_handle_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x6f0defe7 fw_iso_context_flush_completions +EXPORT_SYMBOL drivers/firewire/firewire-core 0x73927e6d fw_card_initialize +EXPORT_SYMBOL drivers/firewire/firewire-core 0x75030d79 fw_schedule_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x796c4f26 fw_iso_buffer_destroy +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7c2730fd fw_send_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0x7e5caf90 fw_run_transaction +EXPORT_SYMBOL drivers/firewire/firewire-core 0x86468d44 fw_rcode_string +EXPORT_SYMBOL drivers/firewire/firewire-core 0x8efbab20 fw_core_handle_bus_reset +EXPORT_SYMBOL drivers/firewire/firewire-core 0x90863005 fw_high_memory_region +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa3c76903 fw_core_remove_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xa47ed14e fw_iso_context_queue_flush +EXPORT_SYMBOL drivers/firewire/firewire-core 0xadcb9a31 fw_iso_buffer_init +EXPORT_SYMBOL drivers/firewire/firewire-core 0xbe6b15e4 fw_iso_resource_manage +EXPORT_SYMBOL drivers/firewire/firewire-core 0xca9004f4 fw_iso_context_queue +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcaa039cd fw_iso_context_start +EXPORT_SYMBOL drivers/firewire/firewire-core 0xcc02f506 fw_device_enable_phys_dma +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd09edde8 fw_iso_context_create +EXPORT_SYMBOL drivers/firewire/firewire-core 0xd8f4579e fw_card_add +EXPORT_SYMBOL drivers/firewire/firewire-core 0xe85fb0a6 fw_core_add_address_handler +EXPORT_SYMBOL drivers/firewire/firewire-core 0xef0aad6c fw_core_handle_request +EXPORT_SYMBOL drivers/firewire/firewire-core 0xf96974dc fw_fill_response +EXPORT_SYMBOL drivers/firewire/firewire-core 0xfb4a0d82 fw_core_remove_card +EXPORT_SYMBOL drivers/fmc/fmc 0x0c1336e3 fmc_free_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x2c517570 fmc_reprogram +EXPORT_SYMBOL drivers/fmc/fmc 0x371871e8 fmc_device_unregister_n +EXPORT_SYMBOL drivers/fmc/fmc 0x5f60300a fmc_device_register +EXPORT_SYMBOL drivers/fmc/fmc 0x80bfbaeb fmc_show_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x82110400 fmc_scan_sdb_tree +EXPORT_SYMBOL drivers/fmc/fmc 0x89bbdb67 fmc_driver_register +EXPORT_SYMBOL drivers/fmc/fmc 0xa2ec3841 fmc_device_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xbae48527 fmc_driver_unregister +EXPORT_SYMBOL drivers/fmc/fmc 0xd0dd1bd4 fmc_find_sdb_device +EXPORT_SYMBOL drivers/fmc/fmc 0xeba7e42b fmc_device_register_n +EXPORT_SYMBOL drivers/gpu/drm/drm 0x006eb61c drm_mode_create_dvi_i_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0183b037 drm_i2c_encoder_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm 0x027aab6b drm_i2c_encoder_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x039633e4 drm_gtf_mode_complex +EXPORT_SYMBOL drivers/gpu/drm/drm 0x04e2d238 drm_agp_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x062af62d drm_mm_dump_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0666754d drm_modeset_unlock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06ccd109 drm_vblank_no_hw_counter +EXPORT_SYMBOL drivers/gpu/drm/drm 0x06d08a35 drm_atomic_state_default_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0791d7be drm_atomic_state_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08dca52f drm_legacy_addmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x08f523f7 drm_prime_gem_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09b56d32 drm_atomic_async_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x09fe770d drm_pci_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a1e634f drm_atomic_check_only +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0a23a9ad drm_calc_timestamping_constants +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 0x0c03373f drm_gem_vm_close +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0c49ac68 drm_mode_set_config_internal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0dac8a4f drm_modeset_unlock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f30cca6 drm_read +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f53a151 drm_agp_bind_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0f9845a8 drm_crtc_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0facbe1c drm_universal_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fad69f3 drm_sysfs_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fc54f78 drm_clflush_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x0fd60df2 drm_get_connector_status_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x106f298c drm_mode_equal +EXPORT_SYMBOL drivers/gpu/drm/drm 0x107742a9 drm_get_subpixel_order_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x124b16c6 drm_modeset_unlock +EXPORT_SYMBOL drivers/gpu/drm/drm 0x130f4eb5 drm_noop +EXPORT_SYMBOL drivers/gpu/drm/drm 0x13d5891e drm_mode_create_from_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x14a9a178 drm_get_format_name +EXPORT_SYMBOL drivers/gpu/drm/drm 0x150b71fa drm_atomic_get_crtc_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x152b52a9 drm_encoder_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x159e3307 drm_i2c_encoder_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x15e51428 drm_modeset_legacy_acquire_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1775aa5b drm_mode_find_dmt +EXPORT_SYMBOL drivers/gpu/drm/drm 0x17c95d82 drm_agp_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194aa467 drm_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0x194eadaa drm_edid_header_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19ddf196 drm_get_pci_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x19e4430f drm_flip_work_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1a1176ae drm_property_create_blob +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 0x1ad5ba28 drm_bridge_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b3e1d9a drm_connector_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1b5a9912 drm_crtc_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bc977ca drm_gem_prime_handle_to_fd +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1bd3cbd6 drm_flip_work_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d1d9377 drm_legacy_ioremap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d2903e2 drm_gtf_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1d68946f drm_atomic_get_plane_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1da766e7 drm_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x1dd71f7a drm_err +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20311683 drm_modeset_lock_all_ctx +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2050263c drm_connector_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20645642 drm_debug +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20a4e16d drm_i2c_encoder_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm 0x20e50eae drm_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22973e5e drm_agp_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x22acaf62 drm_get_cea_aspect_ratio +EXPORT_SYMBOL drivers/gpu/drm/drm 0x237e18ac drm_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x239b8edb drm_mode_create_suggested_offset_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0x244026b3 drm_plane_from_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0x245de212 drm_atomic_get_connector_state +EXPORT_SYMBOL drivers/gpu/drm/drm 0x246c32b1 drm_property_create_bitmask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x250f23df drm_prime_sg_to_page_addr_arrays +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25b315e9 drm_mode_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x25f8be27 drm_crtc_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x262d322e drm_gem_handle_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x26956536 drm_crtc_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x28be30bd drm_i2c_encoder_restore +EXPORT_SYMBOL drivers/gpu/drm/drm 0x29a010e6 drm_mm_insert_node_in_range_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2a03a25c drm_pci_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2cd0986b drm_crtc_get_hv_timing +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2d50570f drm_rect_calc_hscale +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e63b725 drm_ioctl +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2e7a4300 drm_rgb_quant_range_selectable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2eee8c6f drm_mode_connector_update_edid_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x2fe8e83f drm_property_create_bool +EXPORT_SYMBOL drivers/gpu/drm/drm 0x301b06a8 drm_legacy_addbufs_pci +EXPORT_SYMBOL drivers/gpu/drm/drm 0x32ba1b2b drm_platform_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33231116 drm_atomic_state_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x33a6c188 drm_match_cea_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x351858d6 drm_panel_detach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x35c3bf19 drm_bridge_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36c5fbaf drm_framebuffer_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x36d1029b drm_agp_info +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 0x394d64f0 drm_pcie_get_speed_cap_mask +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3ac1fef9 drm_mode_legacy_fb_format +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b718dae drm_atomic_set_fb_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3b9d009a drm_format_plane_cpp +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3c60a09c drm_pci_exit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e0a015f drm_send_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3e4ad891 drm_modeset_lock_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3eb37b9d drm_ht_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0x3f9742dd drm_atomic_state_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0x410b3116 drm_add_modes_noedid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x444cc712 drm_crtc_check_viewport +EXPORT_SYMBOL drivers/gpu/drm/drm 0x448c34d4 drm_property_create_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44ad9b58 drm_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44e44867 drm_atomic_set_crtc_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0x44f8b344 drm_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4671344f drm_flip_work_queue_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4672f96e drm_mode_crtc_set_gamma_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x46fa411d drm_gem_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x490cfb78 drm_mm_reserve_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4a9e1a5f drm_gem_create_mmap_offset_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4af72787 drm_object_property_set_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4b217e95 drm_ioctl_permit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4bc97aed drm_panel_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4befe7a6 drm_plane_force_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c511235 drm_edid_is_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4c78b54d drm_vblank_pre_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ce54c15 drm_hdmi_avi_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4d5a7b9e drm_gem_dmabuf_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd238c3 drm_mode_vrefresh +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4dd8cce9 drm_invalid_op +EXPORT_SYMBOL drivers/gpu/drm/drm 0x4ea1f5a2 drm_gem_object_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0x50e28c07 drm_edid_to_sad +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5162877b drm_encoder_init +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 0x54044861 drm_probe_ddc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55a3e279 drm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55b3223f drm_mode_connector_attach_encoder +EXPORT_SYMBOL drivers/gpu/drm/drm 0x55d3e9c5 drm_dev_set_unique +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5708eaed drm_vblank_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x57b6efe3 drm_ioctl_flags +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59640495 drm_encoder_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59a02898 drm_vblank_post_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59c3a95a drm_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x59ef50f0 drm_edid_block_valid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5b643c81 drm_gem_object_lookup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5ba09b36 drm_modeset_drop_locks +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bcc0d7a drm_gem_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5bf1e613 drm_crtc_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d2d4c7b drm_gem_dumb_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d6fc790 drm_modeset_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5d7318dc drm_global_item_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f0218ca drm_crtc_vblank_on +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5f9e1fef drm_mode_connector_list_update +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fac78cb drm_dev_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0x5fb732da drm_mode_validate_basic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x61c090c6 drm_atomic_clean_old_fb +EXPORT_SYMBOL drivers/gpu/drm/drm 0x629c05e1 drm_clflush_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6380220a drm_crtc_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0x641f5901 drm_gem_put_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x65313379 drm_bridge_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6599ff68 drm_bridge_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x669c8a5a drm_debugfs_remove_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0x66cb5388 drm_bridge_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x67633846 drm_mm_insert_node_generic +EXPORT_SYMBOL drivers/gpu/drm/drm 0x679abc00 drm_framebuffer_unreference +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 0x69ae6d1e drm_gem_create_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6a408850 drm_property_add_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6b146b16 drm_gem_mmap_obj +EXPORT_SYMBOL drivers/gpu/drm/drm 0x6e30ba8e drm_rect_rotate_inv +EXPORT_SYMBOL drivers/gpu/drm/drm 0x70058db9 drm_master_get +EXPORT_SYMBOL drivers/gpu/drm/drm 0x704bf914 drm_flip_work_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7180b0ea drm_plane_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71f33e6f drm_modeset_lock_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x71f82da8 drm_mode_probed_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0x72a91dfb drm_atomic_crtc_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x731557fd drm_legacy_idlelock_take +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7318315e drm_vma_offset_lookup_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x73512b29 drm_property_lookup_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7544a15b drm_legacy_rmmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0x766bacc8 drm_gem_prime_fd_to_handle +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7860c8f8 drm_mode_config_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7969f09a drm_mode_object_find +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a1d7b91 drm_legacy_getsarea +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a297c0e drm_framebuffer_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7a80b0e2 drm_crtc_handle_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7b625665 drm_dev_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc3f1ea drm_i2c_encoder_mode_fixup +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7bc89095 drm_crtc_vblank_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7cd56307 drm_vblank_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x7d3c3ef4 drm_atomic_state_alloc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x802b822d drm_unplug_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x806fe94f drm_vblank_count_and_time +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82440aa4 drm_mode_create_aspect_ratio_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x82c2998f drm_flip_work_allocate_task +EXPORT_SYMBOL drivers/gpu/drm/drm 0x831aeb30 drm_gem_get_pages +EXPORT_SYMBOL drivers/gpu/drm/drm 0x836c820b drm_atomic_set_crtc_for_plane +EXPORT_SYMBOL drivers/gpu/drm/drm 0x837c85bb drm_vma_offset_manager_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0x83d61aa7 drm_atomic_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x840f62dc drm_modeset_backoff_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0x841aaaf2 drm_legacy_rmmap_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84a5255a drm_property_create_signed_range +EXPORT_SYMBOL drivers/gpu/drm/drm 0x84dd0524 drm_i2c_encoder_save +EXPORT_SYMBOL drivers/gpu/drm/drm 0x871ab41a drm_rect_intersect +EXPORT_SYMBOL drivers/gpu/drm/drm 0x88742f2f drm_gem_private_object_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x893d5ba7 drm_legacy_ioremapfree +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8a42fceb drm_property_create_object +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8c132413 drm_select_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8d68b7eb drm_bridge_pre_enable +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8de13715 drm_format_vert_chroma_subsampling +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e1f2177 drm_add_edid_modes +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e6d49bd drm_put_dev +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8e8e579e drm_panel_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8ea84d00 drm_atomic_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8eff9111 drm_ht_find_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0x8f5d0814 drm_modeset_acquire_fini +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9067805e drm_bridge_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9102a249 drm_crtc_vblank_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9157f6d7 drm_mode_set_name +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 0x946d872f drm_connector_unplug_all +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9731faaf drm_gem_object_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0x97fc7b13 drm_mode_create_dirty_info_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98cc57d8 drm_atomic_set_mode_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0x98f3dfe9 drm_pci_set_busid +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9972db48 drm_rect_calc_vscale_relaxed +EXPORT_SYMBOL drivers/gpu/drm/drm 0x999f558c drm_i2c_encoder_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x99acf76b drm_mode_equal_no_clocks_no_stereo +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ac49d36 drm_set_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9bab2f36 drm_crtc_vblank_count +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9c3666b1 drm_atomic_commit +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9d62a6d2 drm_mode_validate_size +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9e9997e6 drm_framebuffer_unregister_private +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ed8bcce drm_calc_vbltimestamp_from_scanoutpos +EXPORT_SYMBOL drivers/gpu/drm/drm 0x9ef376d3 drm_arm_vblank_event +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0709f3e drm_property_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa0f46c01 drm_dev_alloc +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 0xa3019e90 drm_gem_free_mmap_offset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa3c1251f drm_irq_uninstall +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa4466414 drm_mm_remove_node +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa44fa05c drm_agp_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa618635c drm_agp_bind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa75eef93 drm_mode_connector_set_tile_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa7d66e50 drm_connector_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa85d1f03 drm_mode_config_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9c46a7c drm_bridge_post_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xa9efb647 drm_gem_prime_import +EXPORT_SYMBOL drivers/gpu/drm/drm 0xabf5d11b drm_cvt_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xac5e0e4c drm_atomic_add_affected_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xad2cd5cf drm_mode_connector_set_path_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xae046cce drm_vma_node_revoke +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaea191aa drm_property_unreference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xaeec3f94 drm_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb053adda drm_rect_rotate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb15ca1e0 drm_vblank_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb349fa64 drm_i2c_encoder_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb4e26046 drm_av_sync_delay +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5540008 drm_global_item_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb5575ec6 drm_poll +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb67bf183 drm_object_property_get_value +EXPORT_SYMBOL drivers/gpu/drm/drm 0xb9dcba09 drm_crtc_wait_one_vblank +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba4e3fe6 drm_legacy_idlelock_release +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba55ee5f drm_mode_parse_command_line_for_connector +EXPORT_SYMBOL drivers/gpu/drm/drm 0xba71ac36 drm_panel_add +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbac7d723 drm_ati_pcigart_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbbddaf31 drm_bridge_disable +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbdf93e14 drm_agp_unbind +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf0b1b6c drm_i2c_encoder_detect +EXPORT_SYMBOL drivers/gpu/drm/drm 0xbf987378 drm_of_component_probe +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc0e12b34 drm_mode_plane_set_obj_prop +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc168cadf drm_mode_duplicate +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc19a3c19 drm_panel_attach +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc29de7a4 drm_vma_node_allow +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc360e7e2 drm_ut_debug_printk +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc3fa5a75 drm_legacy_mmap +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc50c087f drm_mode_create_rotation_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc67bcbcb drm_of_find_possible_crtcs +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc6997ad7 drm_legacy_addbufs_agp +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc8437c3a of_drm_find_panel +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9265ec2 drm_atomic_legacy_backoff +EXPORT_SYMBOL drivers/gpu/drm/drm 0xc9b22808 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 0xca798034 drm_mode_copy +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcb2340b8 drm_rect_debug_print +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc3420e8 drm_legacy_ioremap_wc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc634f74 drm_property_create_enum +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcc76d710 drm_warn_on_modeset_not_all_locked +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccb59883 drm_plane_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xccddda08 drm_mode_create_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fc417 drm_ht_just_insert_please +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcd0fee28 drm_edid_to_eld +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcdead43c drm_prime_pages_to_sg +EXPORT_SYMBOL drivers/gpu/drm/drm 0xce08d7ed drm_debugfs_create_files +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcef47e99 drm_mode_hsync +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf295b50 drm_irq_install +EXPORT_SYMBOL drivers/gpu/drm/drm 0xcf4aadca drm_mode_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd16c32a3 drm_property_reference_blob +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd2335101 drm_fb_get_bpp_depth +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd508ef84 drm_mode_create_scaling_mode_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd52b1d11 drm_mm_init_scan +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd6d02147 drm_dev_unref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd70c8470 drm_mm_debug_table +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd7f55aae drm_pci_free +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd872db40 drm_hdmi_vendor_infoframe_from_display_mode +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd8da295b drm_atomic_set_mode_prop_for_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9731209 drm_framebuffer_reference +EXPORT_SYMBOL drivers/gpu/drm/drm 0xd9cd037a drm_modeset_lock_interruptible +EXPORT_SYMBOL drivers/gpu/drm/drm 0xda875bfa drm_mode_set_crtcinfo +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdb28286b drm_connector_index +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 0xddfcaf9b drm_property_create +EXPORT_SYMBOL drivers/gpu/drm/drm 0xde8144f6 drm_mode_create_tv_properties +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf26e3c2 drm_vma_node_is_allowed +EXPORT_SYMBOL drivers/gpu/drm/drm 0xdf666902 drm_rotation_simplify +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe028014f drm_plane_index +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe02d4c47 drm_pcie_get_max_link_width +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe2ffd7a5 drm_vma_offset_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe3c4afec drm_object_attach_property +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe4a7dc4d drm_crtc_vblank_off +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe51d89b5 drm_mm_clean +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe5922bec drm_gem_handle_delete +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe660ef50 drm_master_put +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe6906fb1 drm_dev_ref +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe7197773 drm_ht_insert_item +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe72580b3 drm_platform_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe90e6b7c drm_mode_debug_printmodeline +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe9671724 drm_modeset_lock +EXPORT_SYMBOL drivers/gpu/drm/drm 0xe97fa7bc drm_atomic_add_affected_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm 0xebc84ebe drm_modeset_acquire_init +EXPORT_SYMBOL drivers/gpu/drm/drm 0xeeab1396 drm_gem_vm_open +EXPORT_SYMBOL drivers/gpu/drm/drm 0xef04807f drm_framebuffer_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf1419512 drm_compat_ioctl +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 0xf6c8af2a drm_connector_register +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf83e8e39 drm_ati_pcigart_cleanup +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf8925499 drm_framebuffer_remove +EXPORT_SYMBOL drivers/gpu/drm/drm 0xf981b520 drm_atomic_state_default_clear +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfa58b5e0 drm_mode_config_reset +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfaae953b drm_gem_prime_export +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfc1b9aae 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 0xfd21c7f2 drm_mode_get_tile_group +EXPORT_SYMBOL drivers/gpu/drm/drm 0xfdbc45e9 drm_mode_prune_invalid +EXPORT_SYMBOL drivers/gpu/drm/drm 0xff6deba9 drm_crtc_init_with_planes +EXPORT_SYMBOL drivers/gpu/drm/drm 0xffc6c87a drm_detect_monitor_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x01add73a drm_dp_mst_port_has_audio +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06437c40 drm_dp_dpcd_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x06a23099 __drm_atomic_helper_connector_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 0x0ce325af drm_dp_mst_deallocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0eef20b0 drm_fb_helper_unlink_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0f96ec70 drm_dp_clock_recovery_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x0fe1bb23 drm_dp_aux_unregister +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x10ef2214 drm_dp_mst_dump_topology +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13a08d70 __drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x13b42a12 drm_dp_mst_topology_mgr_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1444d3db drm_fb_helper_cfb_fillrect +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 0x188cba26 drm_atomic_helper_wait_for_vblanks +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1b335bcf drm_dp_dual_mode_set_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1d7b1521 drm_dp_mst_get_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1dedcec4 drm_atomic_helper_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x1df963b9 drm_primary_helper_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2157e1c8 drm_dp_link_power_up +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x21f2448d drm_atomic_helper_check_modeset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2283583c drm_kms_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2421ff1a drm_dp_dpcd_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x25b7c7d3 drm_atomic_helper_commit_modeset_disables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2618ede9 drm_atomic_helper_disable_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x27b7a5fa drm_atomic_helper_connector_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2813c54d drm_atomic_helper_legacy_gamma_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x28b5f687 drm_fb_helper_setcmap +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2a99d528 drm_atomic_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b5d3306 drm_fb_helper_restore_fbdev_mode_unlocked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2b9cbde6 drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2cba1d61 drm_fb_helper_sys_fillrect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2d6aa31b drm_kms_helper_poll_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x2f52ddf9 drm_plane_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x31c7bee0 drm_atomic_helper_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32186147 drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32296ff8 drm_dp_dual_mode_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x32726b2a drm_atomic_helper_commit_modeset_enables +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x338b03a7 __drm_atomic_helper_plane_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34871adf drm_dp_channel_eq_ok +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x34a1e3da drm_dp_mst_detect_port +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x351e789a drm_dp_mst_topology_mgr_set_mst +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x35c4af5e drm_fb_helper_sys_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x38c9b55f drm_helper_disable_unused_functions +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3b2a3993 drm_fb_helper_hotplug_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c587cfd drm_plane_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3c79678d drm_fb_helper_add_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fc852a3 drm_dp_update_payload_part2 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x3fe599ae drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x43bccc91 drm_atomic_helper_plane_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4431128f drm_helper_mode_fill_fb_struct +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44c61fa4 drm_fb_helper_sys_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x44e4396a drm_fb_helper_set_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x455ef2fb drm_atomic_helper_disable_all +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x462aac07 drm_dp_mst_reset_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x476574b5 drm_fb_helper_blank +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4bb1f00c drm_dp_dual_mode_max_tmds_clock +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4c6de203 drm_dp_aux_register +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x4f61935e drm_atomic_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50907e42 drm_primary_helper_funcs +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50e74e60 drm_dp_find_vcpi_slots +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x50f9c664 drm_fb_helper_fill_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5386bf62 drm_fb_helper_initial_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5407ae9e drm_dp_get_dual_mode_type_name +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x54a7c19f drm_lspcon_get_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x55ee6449 drm_kms_helper_poll_enable_locked +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x571b4c26 drm_crtc_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x57461e69 drm_atomic_helper_cleanup_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x597d906e drm_fb_helper_release_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5a6e12ef drm_dp_mst_topology_mgr_destroy +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b44e907 drm_helper_connector_dpms +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5b5f028a drm_dp_link_power_down +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5c282b1b drm_atomic_helper_page_flip +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d581ce1 drm_dp_dual_mode_get_tmds_output +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d8aad77 drm_fb_helper_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5d8ec4c8 drm_crtc_helper_set_config +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5dfcbe50 drm_fb_helper_set_par +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5e4cd11e drm_fb_helper_unregister_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5efa28e7 drm_fb_helper_pan_display +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x5f4984d2 drm_atomic_helper_update_plane +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x63def9a3 drm_fb_helper_debug_leave +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x67f15992 drm_atomic_helper_connector_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6851b604 drm_dp_dual_mode_detect +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x68c4996f drm_atomic_helper_check +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x696eae06 drm_fb_helper_sys_write +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6aa63080 drm_dp_link_configure +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6c8456bb drm_helper_crtc_enable_color_mgmt +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6d02747c drm_fb_helper_remove_one_connector +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x6f726bae drm_atomic_helper_crtc_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 0x77e06f22 drm_dp_link_probe +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7b071fb6 drm_atomic_helper_crtc_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7bab6fac drm_fb_helper_fill_fix +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x7c38d11e drm_fb_helper_cfb_copyarea +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8178a1f5 drm_dp_aux_unregister_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x83da70a0 drm_dp_mst_topology_mgr_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x84e924ba drm_dp_get_adjust_request_pre_emphasis +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8695babd drm_lspcon_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x88378a30 drm_atomic_helper_swap_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8bff3e18 drm_atomic_helper_plane_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x8d6beb0c drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x91a8acfe drm_fb_helper_fini +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9233c5be drm_dp_mst_hpd_irq +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9602191e drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0x9944985f drm_dp_update_payload_part1 +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa47826e4 drm_dp_calc_pbn_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa6624cab drm_pick_cmdline_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa77858bb drm_dp_get_adjust_request_voltage +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xa854aae0 drm_helper_probe_single_connector_modes_nomerge +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 0xab19b4f9 drm_dp_mst_allocate_vcpi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xac816f43 drm_helper_encoder_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xacf0b87c drm_atomic_helper_commit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xadb762c0 drm_dp_dpcd_read_link_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xae36014d drm_dp_dual_mode_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb16c2d37 drm_dp_mst_get_edid +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb557f003 drm_helper_move_panel_connectors_to_head +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb5872e47 drm_primary_helper_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xb86299fd drm_dp_aux_register_devnode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbe9a9454 drm_fb_helper_debug_enter +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xbee4686a drm_atomic_helper_connector_set_property +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc378118b drm_fb_helper_check_var +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc7bf6f6b drm_primary_helper_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xc9fb8924 drm_atomic_helper_commit_planes_on_crtc +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xca2efac7 drm_plane_helper_check_update +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcb66e4bd drm_dp_check_act_status +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcc408849 drm_helper_crtc_mode_set +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcd8b5830 drm_atomic_helper_check_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xcda510af drm_atomic_helper_suspend +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd038f8ea drm_dp_aux_dev_init +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd10dfd39 drm_atomic_helper_prepare_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd714a2cf drm_helper_probe_single_connector_modes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xd9c9cab3 drm_atomic_helper_commit_planes +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdb39617a __drm_atomic_helper_plane_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xdc8c7483 drm_kms_helper_poll_disable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde11eabe drm_dp_mst_topology_mgr_resume +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xde929c1c drm_has_preferred_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe003dfbd __drm_atomic_helper_crtc_duplicate_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe08aa16e drm_fb_helper_cfb_imageblit +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe0b5431e __drm_atomic_helper_crtc_destroy_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe1d9c5d1 drm_helper_crtc_mode_set_base +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe37a8349 drm_atomic_helper_framebuffer_changed +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe3da5632 __drm_atomic_helper_connector_reset +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe4751f33 drm_crtc_helper_set_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xe5397c4f drm_helper_hpd_irq_event +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xeb6fb000 drm_helper_resume_force_mode +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf33f63c7 drm_fb_helper_single_add_all_connectors +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf38169c4 drm_fb_helper_alloc_fbi +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf5345b3b drm_fb_helper_prepare +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xf82262ec drm_kms_helper_poll_enable +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfae1dd38 drm_helper_crtc_in_use +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xfc4257a8 drm_atomic_helper_update_legacy_modeset_state +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff016333 drm_fb_helper_sys_read +EXPORT_SYMBOL drivers/gpu/drm/drm_kms_helper 0xff902517 drm_kms_helper_poll_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x039942a8 ttm_dma_tt_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0c4a3ac4 ttm_eu_backoff_reservation +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x0fedcda9 ttm_bo_move_memcpy +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x10e6aeda ttm_eu_reserve_buffers +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x132fa71b ttm_bo_synccpu_write_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x13d4761e ttm_bo_clean_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1504e722 ttm_tt_bind +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x1bbeffd1 ttm_bo_synccpu_write_grab +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x23aea5ca ttm_prime_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x26b25b4e ttm_fbdev_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x27b290e8 ttm_bo_create +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x288d7a0d ttm_bo_manager_func +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2b54aa9a ttm_object_file_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x2ec09c4e ttm_pool_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x31148268 ttm_mem_io_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x354117d9 ttm_tt_set_placement_caching +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x37c33bee ttm_bo_move_accel_cleanup +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3a5bbe96 ttm_page_alloc_debugfs +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x3bc66e31 ttm_bo_dma_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x4e8dd264 ttm_bo_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x52efb147 ttm_bo_mmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x555c69f2 ttm_bo_kmap +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 0x5f2155c6 ttm_bo_lock_delayed_workqueue +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 0x7c24c559 ttm_tt_init +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 0x815f0e7e ttm_object_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x84a13931 ttm_write_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x86283fab ttm_bo_move_to_lru_tail +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x875df60e 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 0x8a5c9c5d ttm_mem_global_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8d14adbf ttm_io_prot +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x8e3b145a ttm_bo_init_mm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x9214022d ttm_mem_io_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94031d68 ttm_mem_global_free +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x94894449 ttm_base_object_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x952c39df ttm_bo_add_to_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0x992efd36 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 0xa2a129fd ttm_suspend_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa45c5323 ttm_bo_unmap_virtual +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa73de2a9 ttm_vt_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa8518e14 ttm_mem_global_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa89dda2d ttm_pool_unpopulate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xa93172c4 ttm_eu_fence_buffer_objects +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xac6558fd ttm_bo_device_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb06e4173 ttm_bo_del_sub_from_lru +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb3e0227d ttm_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb64070f9 ttm_bo_wait +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xb83c6470 ttm_lock_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xbf72e0ab ttm_bo_unlock_delayed_workqueue +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc1c5f924 ttm_bo_mem_put +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc5f0c2da ttm_read_lock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xc78606e6 ttm_mem_global_alloc +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xcc403f4a ttm_bo_mem_space +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 0xcfb20f8d ttm_agp_tt_populate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xd424294d ttm_bo_evict_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 0xdb2e5f87 ttm_bo_unref +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xdcd1b7b6 ttm_bo_kunmap +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xe39ac9be ttm_mem_io_unlock +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xeb746c8b ttm_bo_acc_size +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xedb98cea ttm_bo_device_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf3962fe3 ttm_dma_tt_fini +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xf864361e ttm_bo_move_ttm +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfa3ecd82 ttm_bo_swapout_all +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfbc2c5ec ttm_object_file_release +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xfe9eaf24 ttm_bo_validate +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff31277c ttm_bo_init +EXPORT_SYMBOL drivers/gpu/drm/ttm/ttm 0xff93b1a4 ttm_agp_tt_create +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 0x3ef4d965 i2c_bit_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xc7ad9ea5 i2c_bit_algo +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-bit 0xf56d8d73 i2c_bit_add_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x58d1ffcc i2c_pca_add_numbered_bus +EXPORT_SYMBOL drivers/i2c/algos/i2c-algo-pca 0x6fa287eb i2c_pca_add_bus +EXPORT_SYMBOL drivers/i2c/busses/i2c-amd756 0x85566e2f amd756_smbus +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x09e8ebed mma9551_app_reset +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x18940ca7 mma9551_read_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x23c624d8 mma9551_read_status_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x26cc083a mma9551_set_power_state +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x2c3b4026 mma9551_read_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x41ef446c mma9551_read_accel_scale +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x539d2d61 mma9551_write_config_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x584784a9 mma9551_read_status_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x690d38af mma9551_read_version +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x72ab7366 mma9551_write_config_byte +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0x806b23bd mma9551_read_accel_chan +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xb5515d69 mma9551_update_config_bits +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xbcd7fe96 mma9551_sleep +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc1dde6cb mma9551_write_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xc43eda57 mma9551_read_config_word +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdba6f07a mma9551_read_status_words +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xdbe8983d mma9551_gpio_config +EXPORT_SYMBOL drivers/iio/accel/mma9551_core 0xf3ae5b88 mma9551_set_device_state +EXPORT_SYMBOL drivers/iio/accel/st_accel 0x3cc9e9b0 st_accel_common_remove +EXPORT_SYMBOL drivers/iio/accel/st_accel 0xb2bf3a09 st_accel_common_probe +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1984198a iio_triggered_buffer_setup +EXPORT_SYMBOL drivers/iio/buffer/industrialio-triggered-buffer 0x1f98ea49 iio_triggered_buffer_cleanup +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0x94ad1f08 iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xccb7ebff devm_iio_kfifo_allocate +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xde04afe0 iio_kfifo_free +EXPORT_SYMBOL drivers/iio/buffer/kfifo_buf 0xec97603e devm_iio_kfifo_free +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x01655001 hid_sensor_parse_common_attributes +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x16e719e3 hid_sensor_write_raw_hyst_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x4aba1e9c hid_sensor_read_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x535a8656 hid_sensor_read_poll_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0x6ade6bba hid_sensor_write_samp_freq_value +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-iio-common 0xb2b4b397 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 0x1ce368d3 hid_sensor_power_state +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0x3e118937 hid_sensor_setup_trigger +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xb7049cae hid_sensor_pm_ops +EXPORT_SYMBOL drivers/iio/common/hid-sensors/hid-sensor-trigger 0xbf20342d 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 0x5b392a7c ms_sensors_ht_read_temperature +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x5f84e988 ms_sensors_read_temp_and_pressure +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x737b5f88 ms_sensors_tp_read_prom +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x7a0ef179 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 0x81e6a858 ms_sensors_show_battery_low +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0x88dfd31c ms_sensors_write_resolution +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xa1a6f9fc ms_sensors_write_heater +EXPORT_SYMBOL drivers/iio/common/ms_sensors/ms_sensors_i2c 0xb42e8111 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 0xec5d9c33 ms_sensors_ht_read_humidity +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x0ee919b3 ssp_change_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x2961a8e8 ssp_register_consumer +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x5d65c4c7 ssp_enable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0x6b012641 ssp_get_sensor_delay +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/sensorhub 0xe06e883e ssp_disable_sensor +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x155f4028 ssp_common_buffer_postenable +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0x45abb504 ssp_common_process_data +EXPORT_SYMBOL drivers/iio/common/ssp_sensors/ssp_iio 0xd2763e4c 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 0x0ee5ba65 st_sensors_set_dataready_irq +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x1675b385 st_sensors_set_fullscale_by_gain +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x32a97b8a st_sensors_power_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x4247dfd4 st_sensors_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x71d84eda st_sensors_init_sensor +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x76dd4b30 st_sensors_allocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x7ce70127 st_sensors_check_device_support +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x82e62c24 st_sensors_set_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x8647bd7d st_sensors_deallocate_trigger +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0x98db840e st_sensors_read_info_raw +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xaee35ea7 st_sensors_sysfs_scale_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xb8b5b7dd st_sensors_power_disable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc1a19a20 st_sensors_get_buffer_element +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xc5e2baee st_sensors_set_odr +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xd8570f02 st_sensors_sysfs_sampling_frequency_avail +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xdb36e3e7 st_sensors_validate_device +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors 0xf6dd92c1 st_sensors_set_axis_enable +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0x5b098048 st_sensors_i2c_configure +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_i2c 0xd4697e46 st_sensors_of_i2c_probe +EXPORT_SYMBOL drivers/iio/common/st_sensors/st_sensors_spi 0x449aaca1 st_sensors_spi_configure +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x464e8b03 st_gyro_common_probe +EXPORT_SYMBOL drivers/iio/gyro/st_gyro 0x87ff9553 st_gyro_common_remove +EXPORT_SYMBOL drivers/iio/humidity/hts221 0x6e8a1f6b hts221_probe +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x2198c71e adis_enable_irq +EXPORT_SYMBOL drivers/iio/imu/adis_lib 0x2a1fa8fc adis_debugfs_reg_access +EXPORT_SYMBOL drivers/iio/industrialio 0x044f0a83 iio_trigger_register +EXPORT_SYMBOL drivers/iio/industrialio 0x1988c0cf iio_push_event +EXPORT_SYMBOL drivers/iio/industrialio 0x19aaafca iio_trigger_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0x2c22eec6 iio_triggered_buffer_postenable +EXPORT_SYMBOL drivers/iio/industrialio 0x2c9717e8 iio_trigger_free +EXPORT_SYMBOL drivers/iio/industrialio 0x2d6bcdcb iio_trigger_generic_data_rdy_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x2d8708da iio_trigger_poll_chained +EXPORT_SYMBOL drivers/iio/industrialio 0x44af77ec iio_read_const_attr +EXPORT_SYMBOL drivers/iio/industrialio 0x5e4b2af2 iio_trigger_poll +EXPORT_SYMBOL drivers/iio/industrialio 0x98b87748 iio_trigger_notify_done +EXPORT_SYMBOL drivers/iio/industrialio 0x99379a10 iio_device_free +EXPORT_SYMBOL drivers/iio/industrialio 0xb68436ff iio_bus_type +EXPORT_SYMBOL drivers/iio/industrialio 0xbb28fd04 iio_device_register +EXPORT_SYMBOL drivers/iio/industrialio 0xc6440d24 iio_triggered_buffer_predisable +EXPORT_SYMBOL drivers/iio/industrialio 0xcb649530 iio_trigger_alloc +EXPORT_SYMBOL drivers/iio/industrialio 0xcff19af6 iio_buffer_init +EXPORT_SYMBOL drivers/iio/industrialio 0xda898ab8 iio_device_unregister +EXPORT_SYMBOL drivers/iio/industrialio 0xdf76bbeb iio_pollfunc_store_time +EXPORT_SYMBOL drivers/iio/industrialio 0xe1bd6982 iio_device_alloc +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x6fd3d681 iio_triggered_event_cleanup +EXPORT_SYMBOL drivers/iio/industrialio-triggered-event 0x94d86148 iio_triggered_event_setup +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xce3802b4 st_magn_common_probe +EXPORT_SYMBOL drivers/iio/magnetometer/st_magn 0xd272c5f5 st_magn_common_remove +EXPORT_SYMBOL drivers/iio/pressure/ms5611_core 0x9882120c ms5611_probe +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x6abaa55b st_press_common_remove +EXPORT_SYMBOL drivers/iio/pressure/st_pressure 0x7237f23c 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 0x4b3ae1b2 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x7f2acffb rdma_addr_cancel +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xac8df1d8 rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0xb02d1d49 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x038f30d2 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x118c888a ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x14d08cb2 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1ca0a9dc ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x1cfe9a32 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x30747143 ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x588f80e5 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x743b986c ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x830d38dd ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8a6e5e35 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8ad961e0 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa24781ad ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc0216502 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xc1ac3c8e ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcbc86e71 ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xcf597a44 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe81d2663 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xfd7efd4d ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x00e4f513 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x02c011de ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0477ff03 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x057bef5d ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x072ad860 ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0edb3545 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x101a88d6 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x14246d4b ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x16077724 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x17534815 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1b7b3a1c ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1eb9ca53 ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x21248672 ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x22f3cf93 ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x24abfeab ib_destroy_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2b303495 ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2c90de20 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d63469c ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x32e4776c ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33cc9ab2 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x341ac40b ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x384192f7 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3b4dde75 ib_dealloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3d227c6a ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x404230ad ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x437e6568 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x44c00220 ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4526fedc ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x49998688 ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4ad844a7 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4b598986 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4c7f9390 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5420080f ib_find_cached_gid_by_port +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 0x588b0c1b ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5a25e87a ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c2ab9fc ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6086076e ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6e011428 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70659193 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x71c381b1 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7a5f6cdf ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ba10415 ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ba53d15 ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7f5cbd77 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x81c9c1fc ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x88b03597 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d00109f ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x931dab2e ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x947a2e32 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x960e9cff ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a091e5c ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9b6f2a00 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa06d9f6e ib_destroy_srq +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 0xabf6c882 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xaca1e292 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xadc8f8cd ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xafeeda10 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb0aea15b ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb107462f ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb13c8689 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4a7ca17 ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb4e3a07c 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 0xba55f9e6 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc04f7432 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc3dab436 ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc413a335 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xca2d733e ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcb6f5d32 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcbc2a486 ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce3dfa11 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd0c98009 ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd28a9f8e ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3f27c09 ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd3f49951 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdc04b9df ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdda7d1b3 ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe1038b0e ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe3e7b242 ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe7c547c2 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe9378dda ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf283ff2f ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf37f38ef ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfc150956 ib_ud_header_init +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcd22e6b ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xfcf843be ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x17a4c0db ib_free_recv_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x1e137b84 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2449ccc0 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2e938eae ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x50efd6f1 ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6f077fcf ib_get_mad_data_offset +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x6fb2353b ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7217e129 ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x7b5d4b7a ib_is_mad_class_rmpp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb216c9ed ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb559acbf ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xce68e4a7 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xef4dd624 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf41cdf09 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xf65f5af4 ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x12033a76 ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x265d4c69 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x5328d7a6 ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x670bf3df ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x779d3bce ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x97beb0ad ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x98effa21 ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x9a1cd50d ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb0a51851 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xda0d50ec ib_sa_cancel_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xe13e368b ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xf4b9b41b ib_sa_free_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xfae8e4c1 ib_sa_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x48ef0255 ib_copy_qp_attr_to_user +EXPORT_SYMBOL drivers/infiniband/core/ib_uverbs 0x5be7d879 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 0xe66f6f8c ib_copy_path_rec_to_user +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ae9c24e iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x2896cfbd iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3d6bae4f iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x518bfb25 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x62fbe3b2 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x63972105 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x65d89dad iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6968573d iwpm_add_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6b1ef612 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x6c74c344 iwpm_get_remote_info +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7c00b37e iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x8a8cf8ff iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x904609a0 iwpm_remove_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x9178b18f 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 0x99acf76b iwpm_mapping_error_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x99edf901 iwpm_valid_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xabd0c63d iwpm_register_pid_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xda6bc3b2 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xdb828b72 iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x060f46b1 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x100f8090 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x23bbac65 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x35cfd1b6 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41032a46 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x41967917 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x4723689a rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x6cff2c58 rdma_join_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x83d2e6cd rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x866c1785 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x94aad846 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa0641876 rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa07135ce rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa3525578 rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb7250654 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xb87abfa1 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xbf52d1d7 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd2382917 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf3079d5b rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6654cef rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xfaa9ae07 rdma_listen +EXPORT_SYMBOL drivers/input/gameport/gameport 0x043b3964 gameport_set_phys +EXPORT_SYMBOL drivers/input/gameport/gameport 0x192987f4 gameport_stop_polling +EXPORT_SYMBOL drivers/input/gameport/gameport 0x261dc428 gameport_unregister_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x45c21f1c __gameport_register_driver +EXPORT_SYMBOL drivers/input/gameport/gameport 0x6ba6a7ad gameport_open +EXPORT_SYMBOL drivers/input/gameport/gameport 0x7fbb2486 gameport_close +EXPORT_SYMBOL drivers/input/gameport/gameport 0x865703ee __gameport_register_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xc5807841 gameport_unregister_port +EXPORT_SYMBOL drivers/input/gameport/gameport 0xd59c9de2 gameport_start_polling +EXPORT_SYMBOL drivers/input/input-polldev 0x09748b9e devm_input_allocate_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7532a3ea input_unregister_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x7c5a98ad input_register_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x8a07e6d4 input_free_polled_device +EXPORT_SYMBOL drivers/input/input-polldev 0x9fd5e92f input_allocate_polled_device +EXPORT_SYMBOL drivers/input/matrix-keymap 0x60721cb8 matrix_keypad_build_keymap +EXPORT_SYMBOL drivers/input/misc/ad714x 0x3a053c11 ad714x_disable +EXPORT_SYMBOL drivers/input/misc/ad714x 0x6804a07c ad714x_probe +EXPORT_SYMBOL drivers/input/misc/ad714x 0x68ea4738 ad714x_enable +EXPORT_SYMBOL drivers/input/misc/cma3000_d0x 0x248c8641 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 0x1ef0c59c sparse_keymap_free +EXPORT_SYMBOL drivers/input/sparse-keymap 0x443d78df sparse_keymap_report_event +EXPORT_SYMBOL drivers/input/sparse-keymap 0x60594ab4 sparse_keymap_report_entry +EXPORT_SYMBOL drivers/input/sparse-keymap 0x748c43df sparse_keymap_entry_from_scancode +EXPORT_SYMBOL drivers/input/sparse-keymap 0x95e29e29 sparse_keymap_entry_from_keycode +EXPORT_SYMBOL drivers/input/sparse-keymap 0xd5541b5c sparse_keymap_setup +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x3a5e5218 ad7879_probe +EXPORT_SYMBOL drivers/input/touchscreen/ad7879 0x58ab22eb 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 0x09c429a2 capi20_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x14f2aa5a capi20_get_version +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x17170425 capi_ctr_handle_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x2accb891 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 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 0x8732f206 capi_ctr_down +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8dfd73ff detach_capi_ctr +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x8f699913 capilib_release +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x92db2d50 capi_ctr_suspend_output +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0x9f823278 register_capi_driver +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa5d0a4bc capi20_register +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xa7bf56e5 capi_ctr_resume_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 0xc42d9ec1 capi20_manufacturer +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xd4851fff capi20_put_message +EXPORT_SYMBOL drivers/isdn/capi/kernelcapi 0xdf041250 capi_ctr_ready +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 0x0d4f8357 b1_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x0eb8fe2d b1_loaded +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x13c96539 b1_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2255177a b1ctl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x2e66555c b1_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x3f7f1411 b1_alloc_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x42ddcad3 avmcard_dma_free +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x5c288740 avmcard_dma_alloc +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x64bb177c b1_free_card +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x6ad89c3f b1_getrevision +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x85f09690 b1_irq_table +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0x9906467c b1_register_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xa8bd3bc2 b1_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xc8953db2 b1_parse_version +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xcaf926b6 b1_load_t4file +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1 0xda0ecf7d b1_load_config +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 0x27bd2f11 t1pci_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x29a48644 b1dmactl_proc_fops +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x37e802a6 b1pciv4_detect +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4cd62509 b1dma_send_message +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4cdd5814 b1dma_reset_ctr +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0x4d3bd11d b1dma_release_appl +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xbf2eb397 b1dma_reset +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xc1966cc3 b1dma_load_firmware +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xd6f9f1ea b1dma_interrupt +EXPORT_SYMBOL drivers/isdn/hardware/avm/b1dma 0xe7f4ed7f b1dma_register_appl +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 0x1eed56a5 mISDNipac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0x2e3621f2 mISDNisac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xe75fb238 mISDNipac_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNipac 0xf80fa63d mISDNisac_irq +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x02d1582d mISDNisar_init +EXPORT_SYMBOL drivers/isdn/hardware/mISDN/mISDNisar 0x84c54ec8 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 0x582f77ac 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 0x63c64a46 isac_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x80fa2101 isacsx_irq +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0x9d3340b3 isac_setup +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf627d7f8 isac_init +EXPORT_SYMBOL drivers/isdn/hisax/hisax_isac 0xf86bc29d isacsx_setup +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x40964666 isdn_ppp_register_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0x8a23a335 isdn_ppp_unregister_compressor +EXPORT_SYMBOL drivers/isdn/i4l/isdn 0xdc4f24af 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 0x128fdc34 mISDN_register_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 0x26c1484e recv_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 0x3c1e3f23 mISDN_initbchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x41e8b7fe mISDN_initdchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x46926f30 bchannel_get_rxbuf +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x50c2230c mISDN_FsmChangeState +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x573666f6 bchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x588886a6 l1_event +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x821624e6 dchannel_senddata +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8328b56b recv_Echannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8a4e99fb mISDN_clock_update +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8bf8e5d7 recv_Dchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0x8c505f7e get_next_dframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xa53ce448 recv_Dchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xaf38200a mISDN_freedchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc2ee7ad1 mISDN_unregister_device +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3401729 mISDN_register_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xc3f1298d mISDNDevName4ch +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcc251908 mISDN_clear_bchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xcdad83a5 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 0xd67c6ea5 mISDN_register_Bprotocol +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xdefc169f create_l1 +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe8f617eb mISDN_unregister_clock +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xe9bbb7b2 get_next_bframe +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xea5e970e queue_ch_frame +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xea822d6b mISDN_freebchannel +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xef06f63a recv_Bchannel_skb +EXPORT_SYMBOL drivers/isdn/mISDN/mISDN_core 0xf3dd3b92 mISDN_ctrl_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/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 0x24865783 closure_sync +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 0x52bc54c2 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5b59b856 bch_btree_insert_key +EXPORT_SYMBOL drivers/md/bcache/bcache 0x5d14540d closure_put +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 0x90388c4c closure_sub +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 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 0x2aa1914b dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x2e8d477a dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-log 0x65085b2f dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xd5adf6e6 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x03b8c6d2 dm_exception_store_create +EXPORT_SYMBOL drivers/md/dm-snapshot 0x28ed9d3e dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5faff468 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0x728e8787 dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0x97c038ec dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xb4d9baba dm_snap_cow +EXPORT_SYMBOL drivers/md/raid456 0x38c4a501 raid5_set_cache_size +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x01a6cc60 flexcop_sram_set_dest +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x1a91ee33 flexcop_device_initialize +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x23ba6dce flexcop_pass_dmx_packets +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x4b382b05 flexcop_i2c_request +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x54edad34 flexcop_pass_dmx_data +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x5b227ede flexcop_device_exit +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x6554a51c flexcop_dump_reg +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0x66f0d2d5 flexcop_eeprom_check_mac_addr +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xa5004f63 flexcop_device_kfree +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xb5a29042 flexcop_wan_set_speed +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xc3671158 flexcop_pid_feed_control +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xd8d5a3ba flexcop_device_kmalloc +EXPORT_SYMBOL drivers/media/common/b2c2/b2c2-flexcop 0xe184afe2 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 0x30863171 cx2341x_handler_set_50hz +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 0x51eac81d cx2341x_handler_set_busy +EXPORT_SYMBOL drivers/media/common/cx2341x 0x6c03cf4a 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 0xd8e2fdf7 cx2341x_handler_init +EXPORT_SYMBOL drivers/media/common/cypress_firmware 0x9920db63 cypress_load_firmware +EXPORT_SYMBOL drivers/media/common/tveeprom 0x5c4b8235 tveeprom_read +EXPORT_SYMBOL drivers/media/common/tveeprom 0xf6a7f965 tveeprom_hauppauge_analog +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x087cb639 dvb_dmx_swfilter_packets +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x0aec2d29 dvb_register_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x2cf24a1c dvb_register_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x302f0851 dvb_net_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x32706276 dvb_ringbuffer_read +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x411e96d7 dvb_ca_en50221_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x43eb7046 dvb_dmx_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x4514a5c6 dvb_net_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x578e564c dvb_unregister_frontend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x57bbc291 dvb_ca_en50221_camchange_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x5c0ea535 dvb_ringbuffer_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x6685a39b dvb_frontend_resume +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 0x7c519204 dvb_generic_open +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x7cb6aea8 dvb_register_device +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 0x84e293fc dvb_frontend_reinitialise +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x85a5e7d3 dvb_ringbuffer_avail +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x8ef1b93d dvb_dmx_swfilter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0x90415854 dvb_dmx_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xa2b541cd dvb_frontend_detach +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xabb45024 dvb_dmxdev_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xac4ca1b0 intlog2 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xbb8362b4 dvb_dmx_swfilter_raw +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc1b5d073 dvb_unregister_device +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc3b992a3 dvb_ca_en50221_camready_irq +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xc5a22eb8 dvb_frontend_suspend +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xcd26a8a4 dvb_dmx_swfilter_204 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce11288a dvb_dmxdev_release +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xce4edf68 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 0xd5f80600 dvb_unregister_adapter +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xd8f7184c dvb_ringbuffer_flush_spinlock_wakeup +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xdcd6d852 dvb_generic_ioctl +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe5ae8707 intlog10 +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xe9718004 dvb_ca_en50221_init +EXPORT_SYMBOL drivers/media/dvb-core/dvb-core 0xeb312bfe dvb_generic_release +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 0x897c8cf3 af9013_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ascot2e 0x8174c796 ascot2e_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/atbm8830 0x4e1632f1 atbm8830_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x1572013c au8522_writereg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x2cd21d9e au8522_init +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x40eab79d au8522_get_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x6ae7b499 au8522_led_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0x80123613 au8522_sleep +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xa5466d31 au8522_analog_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xd7be9b5d au8522_release_state +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xdf0eb377 au8522_i2c_gate_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_common 0xf232c46c au8522_readreg +EXPORT_SYMBOL drivers/media/dvb-frontends/au8522_dig 0xd834d0f9 au8522_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/bcm3510 0xa39521c1 bcm3510_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22700 0xd02ef4da cx22700_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx22702 0x38d3e76c cx22702_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24110 0x1fb73806 cx24110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xac1a8d03 cx24113_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24113 0xcc583c95 cx24113_agc_callback +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24116 0x8bf127da cx24116_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24120 0xaf14f3df cx24120_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x31d56a2c cx24123_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cx24123 0x8595bfe8 cx24123_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2820r 0x87753ddb cxd2820r_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x6be58041 cxd2841er_attach_t +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x81a6eaf5 cxd2841er_attach_s +EXPORT_SYMBOL drivers/media/dvb-frontends/cxd2841er 0x93f4d9ed cxd2841er_attach_c +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x1122a08d dib0070_get_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x5d764db6 dib0070_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0x73baf225 dib0070_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xd5391104 dib0070_set_rf_output +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0070 0xfa487813 dib0070_ctrl_agc_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x03d548a9 dib0090_gain_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x1f40026d dib0090_update_rframp_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x320556e8 dib0090_set_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3beaf433 dib0090_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3f5bcf80 dib0090_update_tuning_table_7090 +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x3fa79474 dib0090_set_switch +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x4d020a7b dib0090_get_tune_state +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x53ab5a94 dib0090_get_wbd_target +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x5b69129d dib0090_get_wbd_offset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x776c3cdc dib0090_fw_register +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x8379bb4b dib0090_dcc_freq +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0x95ff9fa1 dib0090_set_dc_servo +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xa3956c3e dib0090_get_current_gain +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xd8cd8011 dib0090_pwm_gain_reset +EXPORT_SYMBOL drivers/media/dvb-frontends/dib0090 0xda08f0d4 dib0090_set_vga +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mb 0x7641c9bc dib3000mb_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x4527b2a1 dib3000mc_pid_control +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x8f5326ee dib3000mc_get_tuner_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0x99d2ac28 dib3000mc_set_config +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xc2b4d3da dib3000mc_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xea600e35 dib3000mc_pid_parse +EXPORT_SYMBOL drivers/media/dvb-frontends/dib3000mc 0xed8cf683 dib3000mc_i2c_enumeration +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0x8d03db35 dib7000m_pid_filter_ctrl +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xb129edbb dib7000m_pid_filter +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xd8c8a644 dib7000m_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000m 0xfdbe87c1 dib7000m_get_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dib7000p 0x2154e6b8 dib7000p_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dib8000 0x70b1c787 dib8000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x12466cb1 dibx000_i2c_set_speed +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x2e5955c0 dibx000_reset_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x47304287 dibx000_init_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x6111b5b2 dibx000_get_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0x99f54ff2 dibx000_exit_i2c_master +EXPORT_SYMBOL drivers/media/dvb-frontends/dibx000_common 0xad3ad91c systime +EXPORT_SYMBOL drivers/media/dvb-frontends/drx39xyj/drx39xyj 0x56388867 drx39xxj_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxd 0xb149d525 drxd_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/drxk 0xeeca9e10 drxk_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ds3000 0x1a027a8e ds3000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/dvb-pll 0xe27b7946 dvb_pll_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ec100 0xe5cd93df ec100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/horus3a 0xb9e6eeef horus3a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6405 0x9f258d0f isl6405_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6421 0x6704f81b isl6421_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/isl6423 0x855c6a74 isl6423_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/itd1000 0x7ba298f0 itd1000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ix2505v 0xeb3dba26 ix2505v_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/l64781 0x3db83543 l64781_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lg2160 0x551080ec lg2160_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3305 0x2ce61142 lgdt3305_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt3306a 0x18fba095 lgdt3306a_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgdt330x 0x29cc4a09 lgdt330x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lgs8gxx 0xe1a331b1 lgs8gxx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbh25 0x89a7c4c4 lnbh25_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xdb7094e8 lnbp21_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp21 0xedf6a185 lnbh24_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/lnbp22 0x0640c5da lnbp22_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0x5822ebe4 m88ds3103_get_agc_pwm +EXPORT_SYMBOL drivers/media/dvb-frontends/m88ds3103 0xb671dce7 m88ds3103_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/m88rs2000 0x31e70acc m88rs2000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a16 0x3f6c5abb mb86a16_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mb86a20s 0x04df2876 mb86a20s_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt312 0xf7f1687f mt312_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/mt352 0x73c6061c mt352_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt200x 0xb39108c4 nxt200x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/nxt6000 0x092127cf nxt6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51132 0x084ff8f1 or51132_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/or51211 0x2fe11561 or51211_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1409 0x3110c2e1 s5h1409_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1411 0x9d6fa6d4 s5h1411_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x40106f80 s5h1420_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/s5h1420 0x9ed64f44 s5h1420_get_tuner_i2c_adapter +EXPORT_SYMBOL drivers/media/dvb-frontends/s921 0x88fe8e77 s921_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si2165 0xa13da21b si2165_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/si21xx 0x878485b3 si21xx_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp8870 0x2183a04b sp8870_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/sp887x 0x7236628a sp887x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb0899 0x7111bda8 stb0899_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6000 0xb149d232 stb6000_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stb6100 0x2d6348c8 stb6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0288 0x1b1836c0 stv0288_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0297 0x4c74c0b5 stv0297_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0299 0x6e1941aa stv0299_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5c868219 stv0367ter_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0367 0x5fdfba03 stv0367cab_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv0900 0x07f9bdf9 stv0900_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv090x 0x496c8c6d stv090x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110 0x4baf07aa stv6110_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/stv6110x 0xf010ac13 stv6110x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10021 0x0809801b tda10021_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10023 0x1b872d4b tda10023_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10048 0x421ee940 tda10048_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0x912f407a tda10045_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda1004x 0xa53ae812 tda10046_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda10086 0x65ddd0b5 tda10086_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda665x 0x590c787f tda665x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8083 0xbd94f486 tda8083_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda8261 0xa746f920 tda8261_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tda826x 0x8aca87ae tda826x_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ts2020 0x372e9563 ts2020_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/tua6100 0x7a834ff3 tua6100_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1820 0x777122f8 ves1820_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/ves1x93 0x0526e881 ves1x93_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10036 0x08fad22f zl10036_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10039 0x69aa9296 zl10039_attach +EXPORT_SYMBOL drivers/media/dvb-frontends/zl10353 0x9872fc2f zl10353_attach +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x19dd2f55 flexcop_dma_control_timer_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x37e27504 flexcop_dma_allocate +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x87d57e04 flexcop_dma_free +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x8f31a4ea flexcop_dma_config_timer +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0x92a8a986 flexcop_dma_control_size_irq +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xb2280493 flexcop_dma_config +EXPORT_SYMBOL drivers/media/pci/b2c2/b2c2-flexcop-pci 0xd0c29cd3 flexcop_dma_xfer_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x3a34fdeb bt878_device_control +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x4e6b1c6a bt878 +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x5e44b72f bt878_start +EXPORT_SYMBOL drivers/media/pci/bt8xx/bt878 0x989103e3 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 0x16c32a87 bttv_sub_register +EXPORT_SYMBOL drivers/media/pci/bt8xx/bttv 0x7e5a2c7f 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 0xe5320d03 bttv_sub_unregister +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x1bd9ce8e dst_error_bailout +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x2c951147 dst_error_recovery +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x3d8c2f8d dst_comm_init +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0x4d6963b6 rdc_reset_state +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xaaafca61 write_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc099ef60 dst_wait_dst_ready +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xc4beb137 dst_attach +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xdaf3b3ac read_dst +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xe94b8c9c dst_check_sum +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst 0xeb1d6668 dst_pio_disable +EXPORT_SYMBOL drivers/media/pci/bt8xx/dst_ca 0x86806477 dst_ca_attach +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x28b54d6a cx18_ext_init +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x2cdea06d cx18_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x4b01e527 cx18_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x8f17bfe9 cx18_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0x9dbf4004 cx18_release_stream +EXPORT_SYMBOL drivers/media/pci/cx18/cx18 0xae0ab6dc cx18_claim_stream +EXPORT_SYMBOL drivers/media/pci/cx23885/altera-ci 0x51cf0086 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 0x11c9558d cx25821_risc_databuffer_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x241686ca cx25821_riscmem_alloc +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x3ad1c35f cx25821_dev_get +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x4a7ecbc8 cx25821_dev_unregister +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x784853c3 cx25821_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x86641566 cx25821_set_gpiopin_direction +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0x8c30f662 cx25821_sram_channel_dump_audio +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xc5d38741 cx25821_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx25821/cx25821 0xd3238b94 cx25821_sram_channel_setup_audio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0x12677710 vp3054_i2c_probe +EXPORT_SYMBOL drivers/media/pci/cx88/cx88-vp3054-i2c 0xd8a8a89d vp3054_i2c_remove +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x12a2ff2a cx88_querycap +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x660afcf3 cx88_set_freq +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0x8b9e17a1 cx88_video_mux +EXPORT_SYMBOL drivers/media/pci/cx88/cx8800 0xa1c6b305 cx88_enum_input +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x0dc7657d cx8802_get_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x2fbc8fa8 cx8802_buf_queue +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x3acaf432 cx8802_buf_prepare +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x63ec91e4 cx8802_cancel_buffers +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x83659509 cx8802_register_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0x94536503 cx8802_unregister_driver +EXPORT_SYMBOL drivers/media/pci/cx88/cx8802 0xba185611 cx8802_start_dma +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x0c3d2d82 cx88_sram_channel_dump +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1977c61b cx88_ir_start +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x1e032587 cx88_wakeup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x4216fc84 cx88_sram_channels +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x507c8722 cx88_core_put +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x6141c8c5 cx88_tuner_callback +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x69e31c97 cx88_get_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7642ed3c cx88_print_irqbits +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x7f3c3c54 cx88_reset +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x904b8696 cx88_audio_thread +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9662a4da cx88_sram_channel_setup +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0x9f7ffa8f cx88_set_tvnorm +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xa2609548 cx88_set_scale +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb474bd0e cx88_vdev_init +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb5f56990 cx88_set_tvaudio +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb76ec560 cx88_newstation +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xb970e289 cx88_dsp_detect_stereo_sap +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc0957d7c cx88_core_get +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xc2a8c111 cx88_set_stereo +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd18e325f cx88_risc_buffer +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xd68552e3 cx88_shutdown +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xe7b94077 cx88_ir_stop +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xee9f9cca cx88_core_irq +EXPORT_SYMBOL drivers/media/pci/cx88/cx88xx 0xfe8b6d84 cx88_risc_databuffer +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x01e09f7b ivtv_set_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x044ac82e ivtv_init_on_first_open +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0802e326 ivtv_udma_setup +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x082b6e8d ivtv_vapi_result +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0c3e1a07 ivtv_udma_alloc +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x0d16aba7 ivtv_start_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x14f67530 ivtv_debug +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x3d685f27 ivtv_claim_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x539efb5a ivtv_udma_prepare +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x55af19f6 ivtv_firmware_check +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x644889b8 ivtv_vapi +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x84c80730 ivtv_api +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0x868dfa8c ivtv_ext_init +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xd6b2118b ivtv_stop_v4l2_encode_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe422d872 ivtv_release_stream +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe9239558 ivtv_clear_irq_mask +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xe9ecbabb ivtv_reset_ir_gpio +EXPORT_SYMBOL drivers/media/pci/ivtv/ivtv 0xf3072f78 ivtv_udma_unmap +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 0x2e0714d8 saa7134_dmasound_exit +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x3c4e6cb4 saa7134_dmasound_init +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4622ad8f saa7134_ts_register +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x4f7e9ca8 saa7134_devlist_lock +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6083e90e saa7134_tvaudio_setmute +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x6b541682 saa7134_set_gpio +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x75c66969 saa7134_boards +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x877af405 saa7134_pgtable_alloc +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0x93a5ee25 saa7134_pgtable_build +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xa6a1912f saa7134_set_dmabits +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xd05d7d87 saa7134_pgtable_free +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe4fb354f saa_dsp_writel +EXPORT_SYMBOL drivers/media/pci/saa7134/saa7134 0xe614addd saa7134_ts_unregister +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xc3e4c127 ttpci_eeprom_decode_mac +EXPORT_SYMBOL drivers/media/pci/ttpci/ttpci-eeprom 0xf45e2df2 ttpci_eeprom_parse_mac +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0a133573 soc_camera_power_init +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x0a417e95 soc_camera_host_register +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0x75d8302b soc_camera_power_on +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xa0b73eac soc_camera_apply_board_flags +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xab1a3ecb soc_camera_power_off +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xcc0e620c soc_camera_host_unregister +EXPORT_SYMBOL drivers/media/platform/soc_camera/soc_camera 0xd45685d8 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 0x2f41ffad snd_tea575x_hw_init +EXPORT_SYMBOL drivers/media/radio/tea575x 0x456157da snd_tea575x_exit +EXPORT_SYMBOL drivers/media/radio/tea575x 0xa82b2940 snd_tea575x_enum_freq_bands +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc18ec580 snd_tea575x_s_hw_freq_seek +EXPORT_SYMBOL drivers/media/radio/tea575x 0xc20443ce snd_tea575x_g_tuner +EXPORT_SYMBOL drivers/media/radio/tea575x 0xe57f5a69 snd_tea575x_set_freq +EXPORT_SYMBOL drivers/media/radio/tea575x 0xf92e02d5 snd_tea575x_init +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x04dca738 lirc_unregister_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x14aef5d8 lirc_dev_fop_poll +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x4aa2f021 lirc_dev_fop_close +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x53fcb47e lirc_get_pdata +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5ae6f8d1 lirc_dev_fop_write +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x5b9cc46d lirc_register_driver +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x71be6d98 lirc_dev_fop_open +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0x90523d07 lirc_dev_fop_read +EXPORT_SYMBOL drivers/media/rc/lirc_dev 0xe9c0451d lirc_dev_fop_ioctl +EXPORT_SYMBOL drivers/media/rc/rc-core 0x682b5273 ir_raw_handler_register +EXPORT_SYMBOL drivers/media/rc/rc-core 0xd84b628d ir_raw_handler_unregister +EXPORT_SYMBOL drivers/media/tuners/fc0011 0x02d6adff fc0011_attach +EXPORT_SYMBOL drivers/media/tuners/fc0012 0x59acdb99 fc0012_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x2495803b fc0013_attach +EXPORT_SYMBOL drivers/media/tuners/fc0013 0x81b90bf5 fc0013_rc_cal_add +EXPORT_SYMBOL drivers/media/tuners/fc0013 0xb8715955 fc0013_rc_cal_reset +EXPORT_SYMBOL drivers/media/tuners/max2165 0x7d49e2de max2165_attach +EXPORT_SYMBOL drivers/media/tuners/mc44s803 0xf778444c mc44s803_attach +EXPORT_SYMBOL drivers/media/tuners/mt2060 0xb905bf15 mt2060_attach +EXPORT_SYMBOL drivers/media/tuners/mt2131 0x814d0830 mt2131_attach +EXPORT_SYMBOL drivers/media/tuners/mt2266 0xb632de01 mt2266_attach +EXPORT_SYMBOL drivers/media/tuners/mxl5005s 0x07287888 mxl5005s_attach +EXPORT_SYMBOL drivers/media/tuners/qt1010 0xcf9ddd2b qt1010_attach +EXPORT_SYMBOL drivers/media/tuners/tda18218 0xda8a1f33 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 0xeb0c80cf xc2028_attach +EXPORT_SYMBOL drivers/media/tuners/xc4000 0xa1d5f8fa xc4000_attach +EXPORT_SYMBOL drivers/media/tuners/xc5000 0xe8f6b559 xc5000_attach +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0x7e8559f3 cx231xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/cx231xx/cx231xx 0xdc420cf9 cx231xx_register_extension +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1cf4a825 dvb_usbv2_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x1f4ebf39 dvb_usbv2_generic_write_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x28662e57 dvb_usbv2_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x379e33ee dvb_usbv2_suspend +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x3eea0719 dvb_usbv2_disconnect +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x40144e36 dvb_usbv2_generic_rw_locked +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x459d5757 dvb_usbv2_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x5edd34f2 dvb_usbv2_probe +EXPORT_SYMBOL drivers/media/usb/dvb-usb-v2/dvb_usb_v2 0x94b36949 dvb_usbv2_reset_resume +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x382f0411 dvb_usb_generic_write +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x5420a42e dvb_usb_device_exit +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x551cd3b7 dvb_usb_generic_rw +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x681d3a45 usb_cypress_load_firmware +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x77ba9895 dvb_usb_get_hexline +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x802d5ddc dvb_usb_nec_rc_key_to_event +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb 0x9d32ed18 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 0x96df5308 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 0x30094703 dibusb_dib3000mc_tuner_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x38688297 dibusb_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x4e459b1f dibusb_read_eeprom_byte +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x582ec66f dibusb_dib3000mc_frontend_attach +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x690d3980 dibusb_pid_filter +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x743eabfa dibusb_rc_query +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x770deddc dibusb2_0_power_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x94696c2a dibusb_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0x9f092823 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 0xb6bb31ca dibusb_i2c_algo +EXPORT_SYMBOL drivers/media/usb/dvb-usb/dvb-usb-dibusb-common 0xe1f2b826 dibusb2_0_streaming_ctrl +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0x9e83d73e em28xx_unregister_extension +EXPORT_SYMBOL drivers/media/usb/em28xx/em28xx 0xef4ac44c em28xx_register_extension +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x4489bf91 go7007_register_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x5094d514 go7007_read_interrupt +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x68591987 go7007_snd_init +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x6b30dd73 go7007_snd_remove +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0x709c42c8 go7007_alloc +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xaeec121b go7007_boot_encoder +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xb729bb5f go7007_read_addr +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xd3379450 go7007_update_board +EXPORT_SYMBOL drivers/media/usb/go7007/go7007 0xff52579b go7007_parse_video_stream +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x0a7e036a gspca_coarse_grained_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x1a80ace4 gspca_expo_autogain +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x42a05d9d gspca_dev_probe2 +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x941d2499 gspca_resume +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0x9670af2c gspca_debug +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xb6d8de9c gspca_dev_probe +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xc2c7e3f6 gspca_suspend +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xf708f69e gspca_frame_add +EXPORT_SYMBOL drivers/media/usb/gspca/gspca_main 0xfeb7666b gspca_disconnect +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x40e148f1 tm6000_register_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0x933145d3 tm6000_unregister_extension +EXPORT_SYMBOL drivers/media/usb/tm6000/tm6000 0xaf843b6b tm6000_init_digital_mode +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x16c641e0 ttusbdecfe_dvbs_attach +EXPORT_SYMBOL drivers/media/usb/ttusb-dec/ttusbdecfe 0x3d01402a 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 0x4c47593b v4l2_m2m_get_vq +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0x74d87b23 v4l2_m2m_job_finish +EXPORT_SYMBOL drivers/media/v4l2-core/v4l2-mem2mem 0xa5d92abc v4l2_m2m_mmap +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x009e0567 videobuf_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x37ea1b9f videobuf_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x4b0632d7 videobuf_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x53d5ebb9 videobuf_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0x740b87a8 videobuf_dvb_unregister_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf-dvb 0xbef6f630 videobuf_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0x2063bc56 vb2_verify_memory_type +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-core 0xcd6c5bf3 vb2_buffer_in_use +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x00149081 vb2_dvb_register_bus +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x0f83c7a8 vb2_dvb_dealloc_frontends +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x4c929a49 vb2_dvb_get_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0x6daec423 vb2_dvb_alloc_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xf9ea67a6 vb2_dvb_find_frontend +EXPORT_SYMBOL drivers/media/v4l2-core/videobuf2-dvb 0xfd0e8979 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 0x75d3df75 vb2_querybuf +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x01bc47af v4l2_ctrl_g_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x02e9a37f v4l2_ctrl_sub_ev_ops +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0614dd5a v4l2_video_std_frame_period +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x082938e1 video_devdata +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x09e0edcb __v4l2_ctrl_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0d211b37 v4l2_clk_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0e68cbd4 v4l2_async_notifier_register +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x0edf1a69 v4l2_ctrl_radio_filter +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 0x1b02473d v4l2_subdev_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b5c0864 v4l2_ctrl_merge +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x1b66e7db v4l2_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x20550a91 v4l2_ctrl_new_std +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2342f1ae v4l2_prio_open +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x236b8990 v4l2_async_register_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x268bf320 v4l2_subdev_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x280c27f2 __video_register_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2858f1ca v4l2_ctrl_activate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ceb3765 video_device_release +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2e40f910 v4l2_of_parse_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2ecc7b8d v4l2_ctrl_new_std_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x2f217ba9 v4l2_clk_get +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x33ab9793 v4l2_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34785cd4 v4l2_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34f437b2 v4l2_ctrl_new_std_menu_items +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x34f6ec5f v4l2_ctrl_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x35b37cbf v4l2_query_ext_ctrl +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 0x3ae38083 __v4l2_ctrl_s_ctrl_string +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x3bdd0f94 v4l2_prio_change +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x43da368d video_device_release_empty +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 0x497ad613 v4l2_subdev_s_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4b77c88d v4l2_ctrl_replace +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4ca433b1 v4l2_subdev_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x4f7562c5 v4l2_ctrl_new_int_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x52aa4fd6 v4l2_async_unregister_subdev +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x533eb43d v4l2_ctrl_grab +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x58d47d9e v4l2_ctrl_find +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x5c3a508a v4l2_clk_set_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x62f87fd1 v4l2_subdev_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x66499116 v4l2_ctrl_add_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x73795548 v4l2_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x748a6fb7 v4l2_ctrl_poll +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7565158e v4l2_clk_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7975d7ba v4l2_clk_enable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x79bc3f15 v4l2_async_notifier_unregister +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7a3cd015 v4l2_ctrl_get_menu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x7df658fa video_ioctl2 +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 0x8deb5a9f video_usercopy +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8e0ad9a7 v4l2_ctrl_add_handler +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x8fd29ea4 v4l2_subdev_init +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x92e4e957 v4l2_of_put_link +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9353039c v4l2_clk_get_rate +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x98e0ac4e v4l2_querymenu +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9d81c74a v4l2_ctrl_subdev_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0x9ecb7e6d v4l2_s_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa44d365b v4l2_subdev_g_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xa5af66fa __v4l2_ctrl_modify_range +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb0fbd7d6 v4l2_ctrl_g_ctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb1163dac v4l2_try_ext_ctrls +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb37e1373 v4l2_ctrl_auto_cluster +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xb50c70a8 v4l2_ctrl_subscribe_event +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 0xbd49d859 v4l2_ctrl_handler_free +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xbdd7d6fe v4l2_ctrl_handler_setup +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc27f2199 v4l2_clk_unregister_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc51db47f v4l2_ctrl_handler_init_class +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc5bf6885 v4l2_ctrl_handler_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xc9588990 video_unregister_device +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcb502b9d v4l2_clk_disable +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xcda04a5b v4l2_prio_close +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xce2a8393 v4l2_ctrl_log_status +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xd24c1d63 v4l2_ctrl_notify +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda4b111b v4l2_clk_put +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xda7b9a13 v4l2_ctrl_subdev_subscribe_event +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe2b92059 v4l2_video_std_construct +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe3ad996d video_device_alloc +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe88e6cf3 __v4l2_ctrl_s_ctrl_int64 +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xe98dcd58 v4l2_ctrl_new_custom +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xed5c7dc4 v4l2_of_free_endpoint +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf3251e7b v4l2_norm_to_name +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf4c92bbe v4l2_subdev_queryctrl +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xf65458c6 __v4l2_clk_register_fixed +EXPORT_SYMBOL drivers/media/v4l2-core/videodev 0xfeb5c471 v4l2_of_parse_link +EXPORT_SYMBOL drivers/memstick/core/memstick 0x033629f7 memstick_detect_change +EXPORT_SYMBOL drivers/memstick/core/memstick 0x06f006b0 memstick_suspend_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x10f19c7d memstick_add_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x15899882 memstick_alloc_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x1762723f memstick_new_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x231e5836 memstick_free_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x29fb1d67 memstick_remove_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0x4db93e11 memstick_set_rw_addr +EXPORT_SYMBOL drivers/memstick/core/memstick 0x5d820a02 memstick_init_req_sg +EXPORT_SYMBOL drivers/memstick/core/memstick 0x8db1c75c memstick_next_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0x9a6051ee memstick_resume_host +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdc07e67e memstick_init_req +EXPORT_SYMBOL drivers/memstick/core/memstick 0xdcc36dcf memstick_unregister_driver +EXPORT_SYMBOL drivers/memstick/core/memstick 0xec0762cf memstick_register_driver +EXPORT_SYMBOL drivers/memstick/host/r592 0x52f1b23b memstick_debug_get_tpc_name +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x04a4c63c mpt_device_driver_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x04fb2fe1 mpt_event_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2bacd2bb mpt_detach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x2f8cf4fd mpt_raid_phys_disk_pg0 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4526289b mpt_event_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4d75ceaf mptbase_sas_persist_operation +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x4f409319 mpt_raid_phys_disk_pg1 +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x502108d0 mpt_fwfault_debug +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x58f40c27 mpt_suspend +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x5f4de5b4 mpt_free_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x6101e54e mpt_alloc_fw_memory +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x67d39bad mpt_send_handshake_request +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x735520be mpt_put_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7374f351 mpt_resume +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7818ec36 mpt_config +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x7d20e2a7 mpt_free_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8417ff34 mpt_verify_adapter +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x84551301 mpt_put_msg_frame_hi_pri +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x8e773c33 mpt_GetIocState +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x934246b7 mpt_raid_phys_disk_get_num_paths +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9869c7b9 mpt_print_ioc_summary +EXPORT_SYMBOL drivers/message/fusion/mptbase 0x9d80aacf mpt_findImVolumes +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xac416fbf mpt_get_msg_frame +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb6db0091 mpt_register +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xb718ed99 mpt_reset_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 0xcd2a6b5a mpt_attach +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xd9a92a75 mpt_reset_deregister +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdae2be51 mpt_clear_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdc96ee3d mpt_Soft_Hard_ResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdd805159 ioc_list +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xdf35d07a mpt_halt_firmware +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xece587fb mpt_HardResetHandler +EXPORT_SYMBOL drivers/message/fusion/mptbase 0xf4c0bfd4 mpt_set_taskmgmt_in_progress_flag +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x01937086 mptscsih_abort +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x03ed76fe mptscsih_resume +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x08fdd0ea mptscsih_raid_id_to_num +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x11bfe3ee mptscsih_suspend +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x1a11b765 mptscsih_flush_running_cmds +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3006b141 mptscsih_taskmgmt_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x3f7e307f mptscsih_taskmgmt_response_code +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x41c7760e mptscsih_ioc_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x521a34e4 mptscsih_event_process +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x5e28831f mptscsih_change_queue_depth +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6b6fd35e mptscsih_slave_configure +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x6cc42099 mptscsih_IssueTaskMgmt +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73538898 mptscsih_scandv_complete +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x73ee55d1 mptscsih_remove +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x746a9b71 mptscsih_qcmd +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x84d75429 mptscsih_host_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x88a0a088 mptscsih_is_phys_disk +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0x95d3d2b3 mptscsih_io_done +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xb24de34f mptscsih_bios_param +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbb9f4639 mptscsih_slave_destroy +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xbd80b89f mptscsih_dev_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xca8b823b mptscsih_bus_reset +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xccffce51 mptscsih_get_scsi_lookup +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xd1e9112c mptscsih_host_attrs +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe0d39eff mptscsih_show_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xe38b0e55 mptscsih_info +EXPORT_SYMBOL drivers/message/fusion/mptscsih 0xf3fa7355 mptscsih_shutdown +EXPORT_SYMBOL drivers/mfd/dln2 0x2724bff9 dln2_register_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0x62920cdd dln2_unregister_event_cb +EXPORT_SYMBOL drivers/mfd/dln2 0xa4ac2579 dln2_transfer +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xd8fcafa1 pasic3_write_register +EXPORT_SYMBOL drivers/mfd/htc-pasic3 0xe37bf4e1 pasic3_read_register +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x0702b889 mc13xxx_lock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x252399d2 mc13xxx_unlock +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x28be22a0 mc13xxx_reg_write +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x577f4cbc mc13xxx_irq_free +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x5fbb5ce8 mc13xxx_reg_read +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x84dc0f51 mc13xxx_irq_unmask +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9dee40e8 mc13xxx_irq_request +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9e3d1cee mc13xxx_irq_status +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0x9e811bb5 mc13xxx_get_flags +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xacf1288d mc13xxx_reg_rmw +EXPORT_SYMBOL drivers/mfd/mc13xxx-core 0xee1ed6f3 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 0x5a81b16b wm8994_irq_init +EXPORT_SYMBOL drivers/mfd/wm8994-irq 0xd57b2147 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 0xbdba1d94 ad_dpot_probe +EXPORT_SYMBOL drivers/misc/ad525x_dpot 0xd4e00558 ad_dpot_remove +EXPORT_SYMBOL drivers/misc/altera-stapl/altera-stapl 0x30b3ae49 altera_init +EXPORT_SYMBOL drivers/misc/c2port/core 0x1236f38c c2port_device_register +EXPORT_SYMBOL drivers/misc/c2port/core 0x61bdd9ef c2port_device_unregister +EXPORT_SYMBOL drivers/misc/ioc4 0x88dd8a35 ioc4_register_submodule +EXPORT_SYMBOL drivers/misc/ioc4 0xbeafbaa6 ioc4_unregister_submodule +EXPORT_SYMBOL drivers/misc/tifm_core 0x13679a5e tifm_alloc_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x14406558 tifm_map_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0x571a15d3 tifm_remove_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x7a8d1a63 tifm_free_adapter +EXPORT_SYMBOL drivers/misc/tifm_core 0x8e16d747 tifm_unregister_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x935deaca tifm_register_driver +EXPORT_SYMBOL drivers/misc/tifm_core 0x9f946840 tifm_has_ms_pif +EXPORT_SYMBOL drivers/misc/tifm_core 0xa16e9b52 tifm_alloc_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8c2ec46 tifm_queue_work +EXPORT_SYMBOL drivers/misc/tifm_core 0xa8f51735 tifm_unmap_sg +EXPORT_SYMBOL drivers/misc/tifm_core 0xd2af40ad tifm_eject +EXPORT_SYMBOL drivers/misc/tifm_core 0xd3853458 tifm_free_device +EXPORT_SYMBOL drivers/misc/tifm_core 0xd6a52ed8 tifm_add_adapter +EXPORT_SYMBOL drivers/mmc/card/mmc_block 0x1124f801 mmc_cleanup_queue +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x1003edc9 mmc_spi_get_pdata +EXPORT_SYMBOL drivers/mmc/host/of_mmc_spi 0x8159c94b mmc_spi_put_pdata +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x19ace3c2 cfi_read_pri +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x1bd84ee3 cfi_merge_status +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x6475d02e cfi_build_cmd_addr +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0x667ccb36 cfi_build_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb35f33c6 cfi_send_gen_cmd +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xb8387cc7 cfi_varsize_frob +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xc61fc353 cfi_fixup +EXPORT_SYMBOL drivers/mtd/chips/cfi_util 0xff9fa623 cfi_udelay +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x3c76a904 do_map_probe +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0x4e6c6cb0 unregister_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xaf3baf96 map_destroy +EXPORT_SYMBOL drivers/mtd/chips/chipreg 0xb6aa3ed6 register_mtd_chip_driver +EXPORT_SYMBOL drivers/mtd/chips/gen_probe 0xc1cd9f9b mtd_do_chip_probe +EXPORT_SYMBOL drivers/mtd/lpddr/lpddr_cmds 0x5380b21e lpddr_cmdset +EXPORT_SYMBOL drivers/mtd/maps/map_funcs 0xbf54d82c simple_map_init +EXPORT_SYMBOL drivers/mtd/mtd 0xdc14b717 mtd_concat_destroy +EXPORT_SYMBOL drivers/mtd/mtd 0xee9be358 mtd_concat_create +EXPORT_SYMBOL drivers/mtd/nand/denali 0xc867ca1c denali_remove +EXPORT_SYMBOL drivers/mtd/nand/denali 0xcf28cf2b denali_init +EXPORT_SYMBOL drivers/mtd/nand/nand 0x0b627a99 nand_scan_tail +EXPORT_SYMBOL drivers/mtd/nand/nand 0x64702370 nand_lock +EXPORT_SYMBOL drivers/mtd/nand/nand 0x808a0c0d nand_scan_bbt +EXPORT_SYMBOL drivers/mtd/nand/nand 0x8ecbb3b8 nand_check_erased_ecc_chunk +EXPORT_SYMBOL drivers/mtd/nand/nand 0x98452574 nand_scan +EXPORT_SYMBOL drivers/mtd/nand/nand 0xe0ceb87d nand_scan_ident +EXPORT_SYMBOL drivers/mtd/nand/nand 0xea555777 nand_unlock +EXPORT_SYMBOL drivers/mtd/nand/nand 0xef859391 onfi_async_timing_mode_to_sdr_timings +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x3aea12e4 nand_bch_calculate_ecc +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x68958919 nand_bch_init +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x70097aa0 nand_bch_free +EXPORT_SYMBOL drivers/mtd/nand/nand_bch 0x8d9074f7 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 0xc1bfd76c nand_correct_data +EXPORT_SYMBOL drivers/mtd/nand/nand_ecc 0xdb3002b1 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 0x291119e3 onenand_scan_bbt +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0x5f1a46cf onenand_addr +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xae586c29 flexonenand_region +EXPORT_SYMBOL drivers/mtd/onenand/onenand 0xc66dbb7c onenand_default_bbt +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x3e0525cd arc_proto_map +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x40b4b541 arc_proto_default +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5607a31c alloc_arcdev +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x5ca737b4 arc_raw_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x6534792a arcnet_debug +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x788ff910 arcnet_unregister_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x795f2c99 arcnet_close +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0x8692964a arc_bcast_proto +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xa60b63aa arcnet_send_packet +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xaeb2b020 arcnet_timeout +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xea8aabe8 arcnet_open +EXPORT_SYMBOL drivers/net/arcnet/arcnet 0xecb730b0 arcnet_interrupt +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xa164fd37 com20020_found +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xd6ddf84d com20020_check +EXPORT_SYMBOL drivers/net/arcnet/com20020 0xfa6f8669 com20020_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x05556a41 ei_close +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x119721ac ei_interrupt +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x24898e5a ei_start_xmit +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x36e86338 ei_open +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x543ee1a1 ei_poll +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x5b1c15ea ei_set_multicast_list +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x86c00c41 NS8390_init +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0x8da97b47 ei_tx_timeout +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xab3b6ae0 ei_get_stats +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe355d02c __alloc_ei_netdev +EXPORT_SYMBOL drivers/net/ethernet/8390/8390 0xe645ed99 ei_netdev_ops +EXPORT_SYMBOL drivers/net/ethernet/broadcom/bnx2x/bnx2x 0x7cf44a49 bnx2x_schedule_sp_rtnl +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x636af174 cnic_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/broadcom/cnic 0x64ec5cbd 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 0x1d505eee cxgb3_queue_tid_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2047373e cxgb3_unregister_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x26ccd00d cxgb3_remove_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x2d65de86 t3_l2e_free +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x305070ad cxgb3_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x3e3c777f cxgb3_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x4d9a222b cxgb3_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x6e691b5e t3_register_cpl_handler +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x8ae134b6 t3_l2t_send_event +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0x949f38c2 dev2t3cdev +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xa866bdca cxgb3_insert_tid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbd6fa62c cxgb3_register_client +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xbe827371 t3_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd217c624 cxgb3_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xd7dafb63 cxgb3_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb3/cxgb3 0xe74b4a27 t3_l2t_send_slow +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x031b19ba cxgb4_register_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x082aa41f cxgb4_remove_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x10469a70 cxgb4_port_chan +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x1c4730a9 cxgb4_ofld_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x2b0803e1 cxgb4_update_root_dev_clip +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x3df4aff1 cxgb4_read_tpte +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x46188884 cxgb4_create_server_filter +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x479ec313 cxgb4_l2t_send +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x4ba53c57 cxgb4_l2t_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x50ee5c07 cxgb4_best_aligned_mtu +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x5cbc415f t4_cleanup_clip_tbl +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x62662740 cxgb4_create_server6 +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 0x6d72ffcf cxgb4_flush_eq_cache +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x723ed6ca cxgb4_alloc_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8734f980 cxgb4_free_atid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x89d7ec92 cxgb4_remove_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x8fb96841 cxgb4_sync_txq_pidx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x90f1390a cxgb4_clip_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0x9aa4eebd cxgb4_clip_get +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xa99defb9 cxgb4_port_viid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xb0687115 cxgb4_free_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xba65bbee cxgb4_dcb_enabled +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xbc0ed8c3 cxgb4_port_idx +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xc5c8766e cxgb4_dbfifo_count +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd00e5a36 cxgb4_unregister_uld +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xd485cf04 cxgb4_read_sge_timestamp +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 0xe1853e22 cxgb4_create_server +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe4b40027 cxgb4_bar2_sge_qregs +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xe8adc7e6 cxgb4_iscsi_init +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xef30c82c cxgb4_alloc_stid +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf082fb99 cxgb4_l2t_release +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xf5a8c953 cxgb4_pktgl_to_skb +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfc46263d cxgb4_get_tcp_stats +EXPORT_SYMBOL drivers/net/ethernet/chelsio/cxgb4/cxgb4 0xfead6429 cxgb4_select_ntuple +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x093489bc vnic_dev_get_res +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x16339b66 vnic_dev_get_res_count +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x385e9e3c vnic_dev_unregister +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0x3f87ee83 enic_api_devcmd_proxy_by_index +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xa162e7e8 vnic_dev_get_pdev +EXPORT_SYMBOL drivers/net/ethernet/cisco/enic/enic 0xf6745b70 vnic_dev_register +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0x38e48f8a be_roce_unregister_driver +EXPORT_SYMBOL drivers/net/ethernet/emulex/benet/be2net 0xa6a4f2b5 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 0x0df0eb93 mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10f3dba1 mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11dffef4 mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x15118698 mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1bbef6f9 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1da3aa44 mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x206a9736 mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2163bffd mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31be6839 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x47444b5a mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49d8755d mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4aec2f87 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x515e6461 mlx4_sync_pkey_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5e33c58a mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f55e769 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6535b008 mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69737a9f mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x88583bfb mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x898970ff mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8da663fc mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ee1a4f8 mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x92097a23 get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94f68b29 mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99a3c3ab mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1aeec23 mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa32b449a mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa535be02 mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac784492 mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb2df9dbd mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4600aee mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc48ee6e8 mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf4609b6 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcf5bb59d set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd3a82bf6 mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd47c2b3d set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd5e78b5e mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9a42030 mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf5f0737f mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x031e85ea mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x03587d2f 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 0x0c1ac702 mlx5_cmd_exec_cb +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 0x1a86622f mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x23b447b2 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x25f61859 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x299f4404 mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x29f9e3b1 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2b85fc72 mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x347ad1cd mlx5_core_create_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x36083e51 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x42503b9c mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x61f1dc70 mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x69fda71f mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7602694f mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79278368 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ce56655 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82514a04 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x852e48f6 mlx5_core_create_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x98762aa2 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9a20cf24 mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9c362dfa mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa88fbbdb mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb740a230 mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbb36cbaf mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc8de386 mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc2bf8ba7 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc59bc8eb mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc60283f8 mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc6039443 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc88b9edb mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdb967711 mlx5_core_arm_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe15baf6d mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe57f4d30 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 0xee300535 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xee36cd85 mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf5f0264d mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb49a5ab mlx5_core_destroy_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 0x016ab7c6 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 0x3062feb2 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 0x6d454457 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 0x816e0a25 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xc5b38918 mlxsw_core_driver_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 0xf08af0a2 mlxsw_core_rx_listener_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xf25d51fe mlxsw_core_skb_transmit +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 0xec75f360 qed_get_eth_ops +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x24a60d24 hdlcdrv_arbitrate +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x66e7ff31 hdlcdrv_receiver +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x735af66c hdlcdrv_transmitter +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x85795580 hdlcdrv_unregister +EXPORT_SYMBOL drivers/net/hamradio/hdlcdrv 0x888169eb hdlcdrv_register +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x0e72dfe4 sirdev_raw_read +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x13bebd64 sirdev_receive +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x39736f97 irda_unregister_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x597b8e5b sirdev_raw_write +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x7482fee3 sirdev_set_dtr_rts +EXPORT_SYMBOL drivers/net/irda/sir-dev 0x9de88ab1 sirdev_set_dongle +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xa4cd99af sirdev_put_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xbe14ce18 sirdev_get_instance +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xea9e77bb sirdev_write_complete +EXPORT_SYMBOL drivers/net/irda/sir-dev 0xef560e0c irda_register_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 0x2f61a3b3 mii_check_gmii_support +EXPORT_SYMBOL drivers/net/mii 0x3adc0548 mii_check_link +EXPORT_SYMBOL drivers/net/mii 0x573be6da mii_check_media +EXPORT_SYMBOL drivers/net/mii 0x6066dde8 generic_mii_ioctl +EXPORT_SYMBOL drivers/net/mii 0x616627f7 mii_ethtool_gset +EXPORT_SYMBOL drivers/net/mii 0x8e2fd1f8 mii_ethtool_sset +EXPORT_SYMBOL drivers/net/mii 0x9af469d3 mii_link_ok +EXPORT_SYMBOL drivers/net/mii 0xa8ced6b6 mii_nway_restart +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x0280f560 free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xb7c7dcc6 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x08fd89be cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0xc82e3b7a cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x4a5787b5 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x9759c2fc xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xe3bc2890 xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/vitesse 0x41669994 vsc824x_add_skew +EXPORT_SYMBOL drivers/net/ppp/pppox 0x07873fae pppox_unbind_sock +EXPORT_SYMBOL drivers/net/ppp/pppox 0x5fbb6301 pppox_ioctl +EXPORT_SYMBOL drivers/net/ppp/pppox 0xe0ff7a18 unregister_pppox_proto +EXPORT_SYMBOL drivers/net/ppp/pppox 0xecdbb373 register_pppox_proto +EXPORT_SYMBOL drivers/net/sungem_phy 0x33a56e43 sungem_phy_probe +EXPORT_SYMBOL drivers/net/team/team 0x24710ea5 team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0x4208f0c6 team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0x6e13edc5 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xab60946d team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0xc53e2f65 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/net/team/team 0xcfd4d837 team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0xe17db1b6 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0xf1b3d047 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0x59314a19 cdc_parse_cdc_header +EXPORT_SYMBOL drivers/net/usb/usbnet 0x633c1ab9 usbnet_manage_power +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd7555609 usbnet_link_change +EXPORT_SYMBOL drivers/net/usb/usbnet 0xd77fbeea usbnet_device_suggests_idle +EXPORT_SYMBOL drivers/net/wan/hdlc 0x22b97011 detach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0x262642c6 alloc_hdlcdev +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5883cbba hdlc_close +EXPORT_SYMBOL drivers/net/wan/hdlc 0x5e1e1db3 hdlc_change_mtu +EXPORT_SYMBOL drivers/net/wan/hdlc 0x7be4fb6a unregister_hdlc_device +EXPORT_SYMBOL drivers/net/wan/hdlc 0xb6f5a9db hdlc_open +EXPORT_SYMBOL drivers/net/wan/hdlc 0xba58637b hdlc_start_xmit +EXPORT_SYMBOL drivers/net/wan/hdlc 0xbcb256ad attach_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xe8b1f916 register_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xea1b1ebf unregister_hdlc_protocol +EXPORT_SYMBOL drivers/net/wan/hdlc 0xf5a44d38 hdlc_ioctl +EXPORT_SYMBOL drivers/net/wimax/i2400m/i2400m 0xf08fb1e6 i2400m_unknown_barker +EXPORT_SYMBOL drivers/net/wireless/airo 0x50d752b1 init_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0x85e0c7bf reset_airo_card +EXPORT_SYMBOL drivers/net/wireless/airo 0xfd5b02c3 stop_airo_card +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x0299ce43 ath_hw_get_listen_time +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x126c29b7 ath_reg_notifier_apply +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x319c6026 ath_is_49ghz_allowed +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x483ba7d2 ath_key_delete +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x7762b5ba ath_hw_setbssidmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x8cf513ad ath_regd_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0x9cbc380d ath_is_mybeacon +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xa1a69db5 ath_hw_keyreset +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaafdb617 ath_is_world_regd +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xaea5d605 ath_rxbuf_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xb066c295 ath_key_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xce4105f8 dfs_pattern_detector_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xe9d7dec3 ath_printk +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xf4506f2a ath_hw_cycle_counters_update +EXPORT_SYMBOL drivers/net/wireless/ath/ath 0xfb4de67a ath_regd_get_band_ctl +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x01b35378 ath10k_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x2b01a24b ath10k_print_driver_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x4dfa9700 ath10k_htt_t2h_msg_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x527e23fa ath10k_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x69d866b2 ath10k_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x780b0191 ath10k_core_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x85aa615d ath10k_htt_hif_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0x90df6f87 ath10k_core_unregister +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0739fc6 ath10k_core_register +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa0d780f6 ath10k_htc_tx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xa8201e4a ath10k_htc_rx_completion_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xb5a1fef4 ath10k_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xd6276083 ath10k_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xdaaee5cf ath10k_core_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath10k/ath10k_core 0xf770aea1 ath10k_debug_get_new_fw_crash_data +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x1150a8a5 ath6kl_core_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x4528279f ath6kl_stop_txrx +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x5f0e893a 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 0x80947432 ath6kl_core_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x80a09613 ath6kl_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x817d833f ath6kl_core_create +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0x91cfb84a ath6kl_hif_rw_comp_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa2b751f9 ath6kl_core_destroy +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa3e07f2d ath6kl_cfg80211_resume +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xa6f66cc1 ath6kl_warn +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xbb8b83da ath6kl_cfg80211_suspend +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xcb014460 ath6kl_err +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xd84c1204 ath6kl_hif_intr_bh_handler +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xe8f499d5 ath6kl_core_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ath/ath6kl/ath6kl_core 0xf560e3a3 ath6kl_read_tgt_stats +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x119d5d39 ath_cmn_process_fft +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x15071676 ath9k_cmn_beacon_config_ap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1a09aac6 ath9k_cmn_rx_accept +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1c914d38 ath9k_cmn_process_rssi +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x1e1b18b0 ath9k_cmn_setup_ht_cap +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x2284ee02 ath9k_cmn_init_crypto +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x23833baa ath9k_cmn_process_rate +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x27766f1b 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 0x41b899c5 ath9k_cmn_get_channel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x514e563d ath9k_cmn_get_hw_crypto_keytype +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x529f471e ath9k_cmn_beacon_config_sta +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x59b66c15 ath9k_cmn_init_channels_rates +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x6a66127b ath9k_cmn_spectral_scan_config +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x87c55559 ath9k_cmn_spectral_deinit_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x89ce8074 ath9k_cmn_debug_base_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0x975c85fe ath9k_cmn_debug_modal_eeprom +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc3948e51 ath9k_cmn_spectral_scan_trigger +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xc626ebc0 ath9k_cmn_reload_chainmask +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd2981357 ath9k_cmn_count_streams +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xd57e17a2 ath9k_cmn_debug_recv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe2b0d208 ath9k_cmn_update_txpow +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe2c94151 ath9k_cmn_beacon_config_adhoc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xe2e6a322 ath9k_cmn_rx_skb_postprocess +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_common 0xf31ba03e ath9k_cmn_spectral_init_debug +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x07eeb80c ath9k_hw_setup_statusring +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0a7cb2b9 ar9003_paprd_create_curve +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x0ab7d325 ath9k_hw_releasetxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x134e32b8 ath9k_hw_txstart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1aca33fa ath9k_hw_gen_timer_start +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x1efb362e ath9k_hw_init +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x203c014b ath9k_hw_btcoex_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x204077fb ath9k_hw_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x20440916 ath9k_hw_gettsf32 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x268c036a ath9k_hw_beaconinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2d8e7150 ath9k_hw_set_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x2f5d01a6 ath9k_hw_phy_disable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x30643bce ath9k_hw_set_rx_bufsize +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x32d3bee8 ath9k_hw_getchan_noise +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3407ae6b ar9003_mci_get_interrupt +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a15faad ath9k_hw_intrpend +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3a201fe2 ath9k_hw_getnf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3aed2e1d ath9k_hw_reset_calvalid +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x3b348358 ath9k_hw_wow_apply_pattern +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x42034357 ath9k_hw_gettsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x447ded83 ar9003_mci_state +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x48d0dda9 ath9k_hw_cfg_output +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bc8bad9 ar9003_get_pll_sqsum_dvc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4bfa3a35 ath9k_hw_gettxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4cfa817b ath9k_hw_get_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4d51235b ath9k_hw_numtxpending +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4ddf4be3 ar9003_paprd_init_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4e4cbec8 ath9k_hw_settsf64 +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4eee3a39 ath9k_hw_enable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4f35494a ath9k_hw_check_alive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x4fbec032 ath9k_hw_setopmode +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5310bed8 ath9k_hw_stopdmarecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x53ceb06d ath9k_hw_gpio_get +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x559df2fa ath9k_hw_btcoex_bt_stomp +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x581e04ec ar9003_mci_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58e9cae2 ar9003_is_paprd_enabled +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58f36316 ath9k_hw_write_associd +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x58fa062e ar9003_paprd_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5c995a1b ar9003_paprd_populate_single_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x5f140a8f ath9k_hw_setuptxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x66bfbb68 ath9k_hw_addrxbuf_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x67eea8a8 ath9k_hw_stop_dma_queue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7469b70d ath_gen_timer_isr +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x75d881bf ath9k_hw_bstuck_nfcal +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7677572d ath9k_hw_set_tsfadjust +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78cb95c7 ath9k_hw_ani_monitor +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x78f1d11e ath9k_hw_set_tx_filter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x79f8be8d ath9k_hw_putrxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7e6d46ef ar9003_mci_cleanup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x7f823783 ath9k_hw_setrxabort +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8020bcb0 ath9k_hw_puttxbuf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x82d5916e ath_gen_timer_free +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8740a96a ath9k_hw_set_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x88d40d33 ath9k_hw_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8cec04e0 ath9k_hw_beaconq_setup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8eb891e4 ath9k_hw_name +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x8f0284d5 ath9k_hw_setpower +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x904739b0 ath9k_hw_btcoex_init_3wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9561374f ath9k_hw_setantenna +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0x9d47798e ar9003_mci_get_next_gpm_offset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa0900097 ar9003_mci_send_message +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa363f179 ar9003_hw_bb_watchdog_check +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xa9f07c3d ath9k_hw_gen_timer_stop +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xab1de077 ar9003_mci_send_wlan_channels +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xaec82b45 ath9k_hw_init_global_settings +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0966e51 ath9k_hw_btcoex_init_mci +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0e48364 ath9k_hw_btcoex_init_2wire +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb0ec7375 ath9k_hw_disable_mib_counters +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2337bc4 ath9k_hw_set_txpowerlimit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb2ef5782 ar9003_mci_set_bt_version +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb318c471 ar9003_hw_bb_watchdog_dbg_info +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb7fe929a ath9k_hw_check_nav +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xb9a34b0d ath9k_hw_setrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbbb9c5ca ath9k_hw_computetxtime +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbc01b4dc ar9003_hw_disable_phy_restart +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xbea06b1d ath9k_hw_set_sta_beacon_timers +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc08ea41e ath9k_hw_btcoex_set_weight +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc23e3784 ath9k_hw_startpcureceive +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc91451b5 ath9k_hw_getrxfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc95737b0 ath9k_hw_wow_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xc9c131d6 ath9k_hw_reset +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xcb331911 ath9k_hw_btcoex_init_scheme +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd027613e ath9k_hw_deinit +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd0c2141a ar9003_paprd_setup_gain_table +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd1f0253c ath9k_hw_cfg_gpio_input +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd355c771 ath9k_hw_wait +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6c62005 ath9k_hw_btcoex_set_concur_txprio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd6f2ecdc ath9k_hw_kill_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xd73033fc ath_gen_timer_alloc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xda2c5c9b ar9003_paprd_is_done +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdb365eae ath9k_hw_wow_wakeup +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xdfcf5b6c ath9k_hw_set_txq_props +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0363ad6 ath9k_hw_rxprocdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0879709 ath9k_hw_updatetxtriglevel +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe0c154ac ath9k_hw_resume_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2123d94 ath9k_hw_init_btcoex_hw +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe2ec89f1 ath9k_hw_setmcastfilter +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe36e5ce3 ath9k_hw_process_rxdesc_edma +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe7195166 ath9k_hw_request_gpio +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xe8067814 ath9k_hw_abortpcurecv +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec053c7a ath9k_hw_btcoex_enable +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xec077fd2 ath9k_hw_disable_interrupts +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xeedc91f3 ath9k_hw_resettxqueue +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xf5c19f33 ath9k_hw_setuprxdesc +EXPORT_SYMBOL drivers/net/wireless/ath/ath9k/ath9k_hw 0xfd14e551 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 0x0728cc14 stop_atmel_card +EXPORT_SYMBOL drivers/net/wireless/atmel 0x07c00218 atmel_open +EXPORT_SYMBOL drivers/net/wireless/atmel 0xb8c0dd58 init_atmel_card +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x0b3b6c20 brcmu_pktq_pflush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x18cbb581 brcmu_pkt_buf_get_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x39a39dcf brcmu_pktq_mlen +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x3f2988a1 brcmu_dotrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x6300b654 brcmu_pktq_mdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7782e7b6 brcmu_pktq_init +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x7b576606 brcmu_pktq_pdeq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x8c6aa032 brcmu_pktq_peek_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9ad3edb9 brcmu_pktq_pdeq_match +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0x9f4b5dcf brcmu_d11_attach +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xb228ba84 brcmu_pktq_penq +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbcaf7013 brcmu_pkt_buf_free_skb +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xbe2a03df brcmu_pktq_flush +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xc2ea32b1 brcmu_pktq_pdeq_tail +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xd261b8a6 brcmu_boardrev_str +EXPORT_SYMBOL drivers/net/wireless/brcm80211/brcmutil/brcmutil 0xebd9f50a brcmu_pktq_penq_head +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x002a708d hostap_info_process +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x01e60c1d hostap_set_antsel +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1723ac32 hostap_set_multicast_list_queue +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1bb65f99 hostap_80211_rx +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x1d8ba556 hostap_free_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x23cc025c prism2_update_comms_qual +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x2ca599ef hostap_set_hostapd +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3057caf7 hostap_80211_ops +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x31ecfb5b hostap_info_init +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x34951b38 hostap_set_auth_algs +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x3c9577af hostap_init_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x415e5fa3 hostap_init_data +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x48d78ed3 hostap_set_word +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x610e4367 hostap_set_hostapd_sta +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x65844395 hostap_setup_dev +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x6a249025 hostap_set_encryption +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x73ce13ba hostap_check_sta_fw_version +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x784fe562 hostap_remove_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9321f95e hostap_get_porttype +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0x9a336823 hostap_handle_sta_tx_exc +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 0xb5d308ef hostap_add_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xc3c47c0f hostap_set_string +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe480606f hostap_remove_interface +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xe6fe9d54 hostap_master_start_xmit +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xf3111039 hostap_init_ap_proc +EXPORT_SYMBOL drivers/net/wireless/hostap/hostap 0xfdc08498 hostap_set_roaming +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x03c435b9 free_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x08b645d5 libipw_is_valid_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x0d38a68e libipw_get_channel_flags +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x1342af70 libipw_get_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x2a3f1774 libipw_rx_mgt +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x38db72dd libipw_freq_to_channel +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x4e608c93 libipw_rx +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x6154840e libipw_wx_get_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x73a29898 libipw_channel_to_index +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x748b6cb8 libipw_wx_set_encode +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x78d1e6b3 libipw_xmit +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x91adea83 libipw_change_mtu +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x94634efe libipw_networks_age +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0x947a9fda libipw_get_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb4e8ad02 libipw_wx_set_encodeext +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xb77a28a0 libipw_set_geo +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xbc5e593e libipw_wx_get_scan +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xc14cef32 libipw_channel_to_freq +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xcb693c92 alloc_libipw +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf0c9c77a libipw_txb_free +EXPORT_SYMBOL drivers/net/wireless/ipw2x00/libipw 0xf5f09914 libipw_wx_get_encodeext +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x021e6112 il_is_ht40_tx_allowed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x07d10e39 il_dbgfs_register +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0a6cb842 il_eeprom_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x0b63caf1 il_add_beacon_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x160ea5d0 il_tx_cmd_complete +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x17f97069 il_cmd_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x18cb75a4 il_init_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x1aa7e4d5 il_connection_init_rx_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x23108251 il_wr_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d87cc6a il_rd_prph +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x2d904f2e il_irq_handle_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x31f45974 il_get_lowest_plcp +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x35b900ba il_set_rate +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x38c9a612 il_tx_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3c22e4da il_hdl_pm_debug_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e292fa1 il_get_passive_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3e8f00e8 il_send_cmd_pdu_async +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x3ea1f364 il_setup_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x40975346 il_hdl_spectrum_measurement +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x422f3a98 il_cmd_queue_unmap +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x47da14b9 il_mac_flush +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4aa39103 il_get_cmd_string +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c0aa15f il_power_initialize +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4c28f71d il_send_bt_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x4e7059a7 il_send_rxon_timing +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x50c838df il_send_add_sta +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x564c6740 il_debug_level +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x599c487a il_set_flags_for_band +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5bf94b5b il_send_cmd_pdu +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x5d22f0f9 il_leds_exit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x63c7d4ad il_mac_remove_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x66f80a80 il_get_active_dwell_time +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x671e852f il_check_rxon_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x71efb836 il_init_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x759f0f73 il_rx_queue_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x76fcc0c9 il_set_tx_power +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x77cbc260 il_restore_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7d5ca1bc il_eeprom_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7de58f7b il_scan_cancel_timeout +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x7f3b66a2 il_rx_queue_alloc +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8380cf11 il_force_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x83922a6b il_mac_bss_info_changed +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x83993e77 il_hdl_pm_sleep +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8aa7f2a5 il_tx_cmd_protection +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ada41de il_scan_cancel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8d9d5e31 il_pm_ops +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x8ee82e71 il_clear_ucode_stations +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x90db2ab0 il_send_cmd_sync +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x92ee1eca il_eeprom_query_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9447ebd4 il_mac_hw_scan +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x966f2681 il_mac_add_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x97385999 il_write_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x98b45130 il_mac_change_interface +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9acaf247 il_tx_queue_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9c8ec3a9 il_set_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0x9df3b608 il_power_update_mode +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa10b203a il_mac_sta_remove +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa2434ae4 il_cancel_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xa9726bea il_tx_queue_free +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xabb76eda il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xae8b230b il_apm_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb0a5001b il_send_lq_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb46d78a9 il_free_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb7bd33ff il_isr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xb89e8848 il_get_free_ucode_key_idx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbbbd2486 il_update_stats +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbe1dd294 il_free_channel_map +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xbeff6b4b il_get_single_channel_number +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc39cf12c il_bg_watchdog +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4447d6a il_set_decrypted_flag +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc4821fbb il_free_geos +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc48af215 il_usecs_to_beacons +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc496c46f il_get_channel_info +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc7a6f7e3 il_setup_scan_deferred_work +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc87fd0f8 il_clear_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xc8ae38f8 il_txq_update_write_ptr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xced43dfd il_set_rxon_channel +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xceddfe72 il_send_cmd +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd0bf088d il_alloc_txq_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xd5b44a9f _il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb7a2ccb il_read_targ_mem +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdb97ced1 il_dbgfs_unregister +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xdee2b004 il_mac_reset_tsf +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe048f6fb il_fill_probe_req +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe086258c il_hdl_error +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe0f23a94 il_tx_queue_reset +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe435493a il_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe46864fc il_send_stats_request +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe5ee1c1c il_leds_init +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xe6d40ce7 il_add_station_common +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xec5aa5b3 il_rx_queue_space +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xef157ddb il_chswitch_done +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xefcd8dba il_hdl_csa +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf297c566 il_eeprom_query16 +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf3e2a044 il_setup_rx_scan_handlers +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf435914c il_mac_config +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf501278b il_bcast_addr +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf5dc64fc _il_apm_stop +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7a4657c il_poll_bit +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf7c2fb44 il_init_scan_params +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf86b489e il_set_rxon_hwcrypto +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xf8a90bf1 il_set_rxon_ht +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xfe794a3e il_mac_conf_tx +EXPORT_SYMBOL drivers/net/wireless/iwlegacy/iwlegacy 0xffce7af0 il_full_rxon_required +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 0x01f547ab orinoco_stop +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x0234a4a2 orinoco_if_add +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x079dd74b orinoco_up +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2de68332 __orinoco_ev_rx +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2dfd87e1 alloc_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x2ebe3959 orinoco_set_multicast_list +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x3a6e5e09 orinoco_down +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x49b6609c free_orinocodev +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5861cc1f __orinoco_ev_info +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x5dea5bf1 hermes_struct_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8fd9c1ca orinoco_open +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0x8fd9d715 orinoco_if_del +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xb33f341d orinoco_process_xmit_skb +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xce45e6f8 orinoco_change_mtu +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd04dac80 orinoco_tx_timeout +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd122cf43 orinoco_get_stats +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xd65769c9 orinoco_init +EXPORT_SYMBOL drivers/net/wireless/orinoco/orinoco 0xffe27bca orinoco_interrupt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/btcoexist/btcoexist 0x0828b847 rtl_btc_get_ops_pointer +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x0093e308 rtl92c_bt_rssi_state_change +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x03762278 _rtl92c_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x10833c54 _rtl92c_phy_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x199a5740 rtl92ce_phy_set_rf_on +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x21a49944 rtl92c_dm_check_txpower_tracking +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2a8fa9a3 rtl92c_phy_sw_chnl_callback +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x2c8886a2 rtl92c_phy_query_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x337126b4 rtl92c_phy_set_io +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x361f0cbe rtl92c_phy_set_rfpath_switch +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x3662d84f rtl92c_dm_rf_saving +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x4d85a7e9 _rtl92c_store_pwrIndex_diffrate_offset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5b9b1e03 rtl8192_phy_check_is_legal_rfpath +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5d782d59 rtl92c_dm_bt_coexist +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x5fab56c7 rtl92c_phy_sw_chnl +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x62e11298 rtl92c_set_fw_pwrmode_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x678130de _rtl92c_phy_init_bb_rf_register_definition +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x749a6306 rtl92c_dm_init +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x74e2db7b rtl92c_firmware_selfreset +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x791485ee rtl92c_dm_write_dig +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x7e2161ca rtl92c_phy_rf_config +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x86889997 rtl92c_fill_h2c_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x933d512f _rtl92c_phy_dbm_to_txpwr_idx +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x97198b9a rtl92c_dm_init_edca_turbo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x99b53962 rtl92c_dm_init_rate_adaptive_mask +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xa37297ad rtl92c_phy_iq_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xacabdcc3 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 0xb42e17e6 rtl92c_phy_set_bb_reg +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xb897d815 _rtl92c_phy_fw_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc00ca1c7 rtl92c_phy_set_txpower_level +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xc05083ec _rtl92c_phy_fw_rf_serial_write +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd4c2bbeb _rtl92c_phy_rf_serial_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd676b71e rtl92c_set_fw_joinbss_report_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd6f7c3e3 rtl92c_phy_ap_calibrate +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xd9bf0670 rtl92c_dm_watchdog +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xdc2c5d16 rtl92c_phy_set_bw_mode +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xe89481d0 _rtl92c_phy_set_rf_sleep +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xef534a79 _rtl92c_phy_bb8192c_config_parafile +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf1beba22 rtl92c_download_fw +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf5f12916 rtl92c_set_fw_rsvdpagepkt +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xf79031ba rtl92c_phy_set_io_cmd +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xfdb8e124 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 0x1f801486 rtl_pci_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0x23d26321 rtl_pci_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xc8bd8fe2 rtl_pci_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_pci 0xd9117b10 rtl_pci_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x3c0f86f8 rtl_usb_suspend +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x72a29b15 rtl_usb_probe +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0x756a371c rtl_usb_disconnect +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtl_usb 0xbfa0e8d6 rtl_usb_resume +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0193134b rtl_cam_delete_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x05f77191 rtl_cam_add_one_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1189efc1 rtl_send_smps_action +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x12ccdfaf 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 0x23299f33 rtl_cam_empty_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x39c0c826 rtl_cam_del_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3b1db0fa rtl_process_phyinfo +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x3dc7d232 rtl_rfreg_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x54663086 rtl_dm_diginit +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x620db584 rtl_cam_mark_invalid +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x79188a02 rtl_query_rxpwrpercentage +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x81aecf5c rtl_ps_disable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x877e1aff efuse_read_1byte +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8c20783c rtl_ps_enable_nic +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x980848e2 rtl_addr_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x9af5a8fe rtl_efuse_shadow_map_update +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4062c6c rtl_ps_set_rf_state +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa9a3dc67 rtl_cmd_send_packet +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb2e1125b rtl_init_rfkill +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xb9cc7bae rtlwifi_rate_mapping +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbbe8039c rtl_cam_reset_all_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xc719f03b efuse_shadow_read +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcfb5c7ca rtl_cam_get_free_entry +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xd17e23ca rtl_hal_pwrseqcmdparsing +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe9660aa2 rtl_wowlan_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xeb402cdf rtl_fw_cb +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xedffddf1 rtl_bb_delay +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf17ed970 rtl_get_tcb_desc +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf304f736 rtl_phy_scan_operation_backup +EXPORT_SYMBOL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xfc9aa7a4 rtl_signal_scale_mapping +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x30efbe49 wlcore_calc_packet_alignment +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x57ef0096 wlcore_tx_complete +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0x97ffd896 wl12xx_is_dummy_packet +EXPORT_SYMBOL drivers/net/wireless/ti/wlcore/wlcore 0xfae23cee wl1271_free_tx_id +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x63fc44a6 fdp_nci_probe +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0x9cc7e465 fdp_nci_recv_frame +EXPORT_SYMBOL drivers/nfc/fdp/fdp 0xf9ec2ca1 fdp_nci_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xdd5d598d microread_remove +EXPORT_SYMBOL drivers/nfc/microread/microread 0xeaf971d8 microread_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x0c200f08 nxp_nci_remove +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x163009e3 nxp_nci_probe +EXPORT_SYMBOL drivers/nfc/nxp-nci/nxp-nci 0x17e7ca10 nxp_nci_fw_recv_frame +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x4e0abe9c pn544_hci_probe +EXPORT_SYMBOL drivers/nfc/pn544/pn544 0x5a86bf91 pn544_hci_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x3d2126b4 s3fwrn5_recv_frame +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0x783cf114 s3fwrn5_remove +EXPORT_SYMBOL drivers/nfc/s3fwrn5/s3fwrn5 0xad8befa1 s3fwrn5_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x0e721e74 st_nci_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x145f4a58 st_nci_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x1b1f497e ndlc_recv +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x482e44de st_nci_se_io +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x4efeb60e ndlc_close +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x57563ca1 ndlc_probe +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x8265fca5 ndlc_remove +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0x9b6ce0eb ndlc_send +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xb5593530 ndlc_open +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xba15acf4 st_nci_se_init +EXPORT_SYMBOL drivers/nfc/st-nci/st-nci 0xfb522127 st_nci_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x0060c8d2 st21nfca_hci_se_io +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x15438da3 st21nfca_hci_probe +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1936a853 st21nfca_hci_remove +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x1eaad6d5 st21nfca_hci_disable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x27b598ad st21nfca_se_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x2cacb408 st21nfca_dep_deinit +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x491411b2 st21nfca_vendor_cmds_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x5c57f5bb st21nfca_hci_loopback_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x610798f7 st21nfca_connectivity_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x6a18378c st21nfca_tm_send_dep_res +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x8d1545c0 st21nfca_hci_discover_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0x9509b605 st21nfca_hci_enable_se +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xa9e426a5 st21nfca_apdu_reader_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb4804d43 st21nfca_dep_event_received +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xb63843e6 st21nfca_im_send_atr_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xd9bf1eb2 st21nfca_dep_init +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xf4a2ab6a st21nfca_im_send_dep_req +EXPORT_SYMBOL drivers/nfc/st21nfca/st21nfca_hci 0xfdc4760e st21nfca_se_init +EXPORT_SYMBOL drivers/ntb/ntb 0x00d5a6f4 ntb_unregister_client +EXPORT_SYMBOL drivers/ntb/ntb 0x26a2411f ntb_clear_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0x40fac911 ntb_link_event +EXPORT_SYMBOL drivers/ntb/ntb 0x708aa61f ntb_unregister_device +EXPORT_SYMBOL drivers/ntb/ntb 0x806ec976 __ntb_register_client +EXPORT_SYMBOL drivers/ntb/ntb 0x84b33513 ntb_register_device +EXPORT_SYMBOL drivers/ntb/ntb 0xf6f23247 ntb_set_ctx +EXPORT_SYMBOL drivers/ntb/ntb 0xf96b3537 ntb_db_event +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x583f817d nvdimm_namespace_detach_btt +EXPORT_SYMBOL drivers/nvdimm/nd_btt 0x99f3cf46 nvdimm_namespace_attach_btt +EXPORT_SYMBOL drivers/nvmem/nvmem_core 0x8157a313 devm_nvmem_cell_put +EXPORT_SYMBOL drivers/parport/parport 0x0023f448 parport_unregister_driver +EXPORT_SYMBOL drivers/parport/parport 0x00a2d4b4 parport_find_base +EXPORT_SYMBOL drivers/parport/parport 0x2099bc67 parport_register_dev_model +EXPORT_SYMBOL drivers/parport/parport 0x28dacfd3 parport_claim +EXPORT_SYMBOL drivers/parport/parport 0x2e2936e7 parport_ieee1284_ecp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x2f2ef077 parport_put_port +EXPORT_SYMBOL drivers/parport/parport 0x3673695b parport_del_port +EXPORT_SYMBOL drivers/parport/parport 0x3eb08f0a parport_write +EXPORT_SYMBOL drivers/parport/parport 0x4c3f11ae parport_ieee1284_epp_write_data +EXPORT_SYMBOL drivers/parport/parport 0x4d2a941b parport_ieee1284_interrupt +EXPORT_SYMBOL drivers/parport/parport 0x550f31bf parport_set_timeout +EXPORT_SYMBOL drivers/parport/parport 0x5958e711 parport_read +EXPORT_SYMBOL drivers/parport/parport 0x5e3a3912 parport_irq_handler +EXPORT_SYMBOL drivers/parport/parport 0x6209a331 parport_ieee1284_epp_read_data +EXPORT_SYMBOL drivers/parport/parport 0x68869e84 parport_ieee1284_epp_read_addr +EXPORT_SYMBOL drivers/parport/parport 0x6bff24f9 parport_announce_port +EXPORT_SYMBOL drivers/parport/parport 0x729fb5ea parport_ieee1284_ecp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0x749a66b4 parport_wait_event +EXPORT_SYMBOL drivers/parport/parport 0x7ee482d6 parport_ieee1284_read_byte +EXPORT_SYMBOL drivers/parport/parport 0x83a0fcd3 parport_ieee1284_read_nibble +EXPORT_SYMBOL drivers/parport/parport 0x8addcf72 parport_register_device +EXPORT_SYMBOL drivers/parport/parport 0xa903126d parport_find_number +EXPORT_SYMBOL drivers/parport/parport 0xa9438cc3 parport_release +EXPORT_SYMBOL drivers/parport/parport 0xaf34025f parport_register_port +EXPORT_SYMBOL drivers/parport/parport 0xb2bf2cb7 parport_wait_peripheral +EXPORT_SYMBOL drivers/parport/parport 0xb855c516 parport_get_port +EXPORT_SYMBOL drivers/parport/parport 0xba8d46c9 parport_negotiate +EXPORT_SYMBOL drivers/parport/parport 0xbd2ded44 parport_unregister_device +EXPORT_SYMBOL drivers/parport/parport 0xc910c503 parport_remove_port +EXPORT_SYMBOL drivers/parport/parport 0xd98468a0 parport_ieee1284_ecp_write_data +EXPORT_SYMBOL drivers/parport/parport 0xe6495d69 parport_ieee1284_write_compat +EXPORT_SYMBOL drivers/parport/parport 0xe724cce4 parport_ieee1284_epp_write_addr +EXPORT_SYMBOL drivers/parport/parport 0xf2e1fa80 __parport_register_driver +EXPORT_SYMBOL drivers/parport/parport 0xfc4b0da9 parport_claim_or_block +EXPORT_SYMBOL drivers/parport/parport_pc 0x2ce4861c parport_pc_unregister_port +EXPORT_SYMBOL drivers/parport/parport_pc 0x716e4184 parport_pc_probe_port +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x167f6786 rproc_vq_interrupt +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x24fd2f95 rproc_shutdown +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x38a40779 rproc_get_by_phandle +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x4afee1df rproc_put +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x55573a4c rproc_alloc +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x5c5d51ee rproc_report_crash +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0x952902fc rproc_del +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xa0c0c8f3 rproc_add +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xd30306f1 rproc_boot +EXPORT_SYMBOL drivers/remoteproc/remoteproc 0xf15cc724 rproc_da_to_va +EXPORT_SYMBOL drivers/rtc/rtc-ds1685 0xc4308bc7 ds1685_rtc_poweroff +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x33850cb9 scsi_esp_unregister +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x4a29ab38 scsi_esp_intr +EXPORT_SYMBOL drivers/scsi/esp_scsi 0x8df3e6cd scsi_esp_cmd +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xa20a4fd2 scsi_esp_register +EXPORT_SYMBOL drivers/scsi/esp_scsi 0xbb665499 scsi_esp_template +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x420143ce fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x58f86eab fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6eebd6de fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x7e595189 fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x80c8b868 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x9335f715 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb88b07ae fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xcd0d191a fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd45aaf22 fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xd4df4aa5 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xdd8bee1e fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xf45447d5 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0351f7f5 fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x085e7f50 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x0950fb53 fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23f5274e fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26bfb8d8 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x26c33e9d fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27e46232 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x27f1fc0a fc_fill_reply_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x29a81b38 fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2efe11bf fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2f149262 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x36e5fbaf fc_cpu_mask +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39df366b fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4165fb1b fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x45f9fa3c fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5410ebf7 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5933d7e4 fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b7209c7 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5b7e2b42 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x69534f6d fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6a69347b fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6ba48b4c fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6dc83bdc _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x71ec98e0 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x746364cd fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x79a253ab fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7e727e3b fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8a108460 fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c96dbf4 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x90f832bb fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9845e339 fc_lport_notifier_head +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d4f48c0 fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9d9102c9 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa219001b fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa3be2cf0 fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb339265c fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb8ef2210 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc4c96452 fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcb85fa36 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd021966b fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd6040037 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xdda66f93 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe38bcafc fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe420b5ae fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe6c3f6c7 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe765d283 fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf5f60a0a fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x25bbc16b sas_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x3ad86b58 sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x4493602a sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x76dd9bf7 sas_prep_resume_ha +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 0xb5bd8f8c mraid_mm_register_adp +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b03df1b osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0b5f211d osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x10ae8cb2 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x18de08a9 osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1f248294 osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x208c1e36 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x28fa76d9 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3230190e osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3dae26e7 osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4bd34f36 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f73452c osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4f9afef1 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x504deb89 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5a835b26 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x681d999c osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7950c32a osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7e5f3b5c osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x81684a75 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x858642c6 osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x926f342e osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb060f1a7 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbcfd378c osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc45ea502 osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcb6f82fd osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xcddb2a13 osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd2711477 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd4d12671 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd7850cce osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xdaaa8ddf osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe208fe60 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe25e713f osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xef6b6b7a osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf4bdfa53 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf5ae8c29 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf69b33d3 osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xfe6270d6 osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/osd 0x23e03967 osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x983ff903 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xbde67ec1 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0xe604120d osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xf67566be osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xfd872d2f osduld_device_info +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x06ab8f61 qlt_rdy_to_xfer +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x335b4fe3 qlt_stop_phase2 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x59e61401 qlt_lport_deregister +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x6bc18133 qlt_enable_vha +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x71df723a qlt_xmit_response +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x7d1c7e35 qlt_unreg_sess +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x846625f9 qlt_free_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x911c0d64 qlt_free_mcmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x91dc5b68 qlt_abort_cmd +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0x93dc66a4 qlt_xmit_tm_rsp +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xb6cb4ace qlt_stop_phase1 +EXPORT_SYMBOL drivers/scsi/qla2xxx/qla2xxx 0xeb2bfe74 qlt_lport_register +EXPORT_SYMBOL drivers/scsi/raid_class 0x713f7779 raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xc47ffda1 raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0xe9d7beb5 raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x36896176 fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x499fba43 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4bfb1521 scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5486dad5 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x5cbc279d fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x70b5f941 fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9023a3b8 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9299d5b4 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x9c302456 fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb8fa22da fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xc4c4ee22 scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe064ed40 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xe198bf36 fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0107e532 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x02a3f63c sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0bcac147 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d065c17 sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1bc1ca3d scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1d0c3359 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x36fdb634 sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x41dc4d92 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x44213ae9 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x48c7b46f sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x4d4355c1 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x550d9680 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x57b1db86 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5f8ea8e1 sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x73aed0b4 sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x826d6a78 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8861c1a3 sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9fc985c9 sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa15456a8 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb198d458 sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb8fd4bf6 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xd92a2bfc sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xde681d86 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xeafd37b8 sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xee40d870 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf5385566 scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf62cc5c6 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xfb0e6caf sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xa5d1bea3 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xacb6ad37 spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xb78b3758 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd5e23031 spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xd85844f7 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x1334abae ufshcd_system_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x2b288795 ufshcd_runtime_suspend +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x41fb46d4 ufshcd_shutdown +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0x745d5b41 ufshcd_runtime_resume +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xa117387a ufshcd_alloc_host +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xabc54436 ufshcd_runtime_idle +EXPORT_SYMBOL drivers/scsi/ufs/ufshcd 0xb0b3a4e3 ufshcd_system_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x295a93ea ssb_dma_translation +EXPORT_SYMBOL drivers/ssb/ssb 0x2c1fbc30 ssb_pmu_set_ldo_paref +EXPORT_SYMBOL drivers/ssb/ssb 0x352ac1e0 ssb_device_disable +EXPORT_SYMBOL drivers/ssb/ssb 0x71d54a2b ssb_bus_powerup +EXPORT_SYMBOL drivers/ssb/ssb 0x7777f416 ssb_chipco_gpio_control +EXPORT_SYMBOL drivers/ssb/ssb 0x7d4c9abd ssb_bus_sdiobus_register +EXPORT_SYMBOL drivers/ssb/ssb 0x8d547787 ssb_bus_resume +EXPORT_SYMBOL drivers/ssb/ssb 0x92bf1d6c __ssb_driver_register +EXPORT_SYMBOL drivers/ssb/ssb 0x9543cf76 ssb_pcicore_dev_irqvecs_enable +EXPORT_SYMBOL drivers/ssb/ssb 0x99c2db0a ssb_pcihost_register +EXPORT_SYMBOL drivers/ssb/ssb 0xa0336490 ssb_device_is_enabled +EXPORT_SYMBOL drivers/ssb/ssb 0xa30e39eb ssb_set_devtypedata +EXPORT_SYMBOL drivers/ssb/ssb 0xa3937053 ssb_clockspeed +EXPORT_SYMBOL drivers/ssb/ssb 0xa79dea7b ssb_bus_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb6aa0fbc ssb_driver_unregister +EXPORT_SYMBOL drivers/ssb/ssb 0xb6dfb2be ssb_pmu_set_ldo_voltage +EXPORT_SYMBOL drivers/ssb/ssb 0xc0512e0f ssb_admatch_base +EXPORT_SYMBOL drivers/ssb/ssb 0xc645a603 ssb_device_enable +EXPORT_SYMBOL drivers/ssb/ssb 0xd1ad0303 ssb_bus_may_powerdown +EXPORT_SYMBOL drivers/ssb/ssb 0xd481192b ssb_admatch_size +EXPORT_SYMBOL drivers/ssb/ssb 0xe9c5263c ssb_bus_suspend +EXPORT_SYMBOL drivers/ssb/ssb 0xf6b7cbb1 ssb_commit_settings +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x0f4c4e3d fbtft_probe_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x113b2eaa fbtft_write_vmem16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x18c24783 fbtft_write_gpio8_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x1f4dde46 fbtft_write_vmem16_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4a65863a fbtft_write_gpio16_wr +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x4a787047 fbtft_dbg_hex +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5b9b56fd fbtft_register_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x5e1aa017 fbtft_unregister_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6684f439 fbtft_init_display +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x6934eb17 fbtft_write_reg16_bus16 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x71454956 fbtft_register_framebuffer +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x77233f66 fbtft_write_reg8_bus9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x797faac0 fbtft_write_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x7cc5a9e0 fbtft_write_reg16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x8d7beefc fbtft_framebuffer_release +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x95441621 fbtft_remove_common +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9b44796c fbtft_unregister_backlight +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0x9fd6b3d3 fbtft_read_spi +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xabf324ef fbtft_write_spi_emulate_9 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xb8a12ed9 fbtft_framebuffer_alloc +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xc22bb0a9 fbtft_write_vmem16_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf67f3549 fbtft_write_reg8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xf8731159 fbtft_write_vmem8_bus8 +EXPORT_SYMBOL drivers/staging/fbtft/fbtft 0xfafe883e fbtft_write_gpio16_wr_latched +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0x1aeb349c fwtty_port_put +EXPORT_SYMBOL drivers/staging/fwserial/firewire-serial 0xb8c1d4e6 fwtty_port_get +EXPORT_SYMBOL drivers/staging/iio/addac/adt7316 0x09210b1f adt7316_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x2a7f25fd hmc5843_common_resume +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x4e073b20 hmc5843_common_probe +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x580a6d47 hmc5843_common_remove +EXPORT_SYMBOL drivers/staging/iio/magnetometer/hmc5843_core 0x5981fb70 hmc5843_common_suspend +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x2c39debd ade7854_remove +EXPORT_SYMBOL drivers/staging/iio/meter/ade7854 0x72ef9c83 ade7854_probe +EXPORT_SYMBOL drivers/staging/media/cxd2099/cxd2099 0x7f07d854 cxd2099_attach +EXPORT_SYMBOL drivers/staging/most/aim-network/aim_network 0x504dc103 most_deliver_netinfo +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x03a3e851 rtllib_wx_set_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0c3a445f dot11d_init +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x0deec282 rtllib_wx_get_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x112924d8 rtllib_xmit +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1490c7e1 rtllib_wx_set_encode_ext +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x14d4f7c2 rtllib_wx_set_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1793b514 rtllib_DisableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1984534d rtllib_wx_set_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1d3fbeb6 rtllib_wx_get_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x1e1cec58 rtllib_get_beacon +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2027851e rtllib_wx_get_wap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x247c13ac notify_wx_assoc_event +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2ba24783 rtllib_wx_get_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x2d772191 rtllib_wx_get_rts +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x3a0fd22d rtllib_start_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x421f3198 rtllib_stop_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x44f423de rtllib_wx_set_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x49cdcbf8 rtllib_stop_scan_syncro +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x4ba77707 rtllib_MgntDisconnect +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x527a56a8 rtllib_wx_set_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x55969b8a rtllib_wx_get_name +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x56901bc5 rtllib_act_scanning +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x5fb447c1 rtllib_wx_set_rawtx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x6e8c5a4a rtllib_ps_tx_ack +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7099a33e free_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x722c63da RemovePeerTS +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x761c4313 alloc_rtllib +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7b3806ed rtllib_wx_get_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x7caad017 rtllib_wx_set_auth +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8963a575 rtllib_wx_set_freq +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x8d31f2cb rtllib_softmac_start_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9518e197 rtllib_wx_set_gen_ie +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x991dddbd rtllib_EnableIntelPromiscuousMode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0x9ade7555 rtllib_rx +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa021f530 rtllib_wx_get_mode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xa545b869 rtllib_wx_set_mlme +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb6af8046 rtllib_wx_get_rate +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xb9993cd7 rtllib_start_send_beacons +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbadd5312 rtllib_reset_queue +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xbe1420f2 rt_global_debug_component +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xcb621cd7 HT_update_self_and_peer_setting +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xd5840756 rtllib_wx_set_essid +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdc060ec9 rtllib_wpa_supplicant_ioctl +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdd7c0574 rtllib_softmac_stop_protocol +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdea63382 Dot11d_Channelmap +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xdf78f620 rtllib_wlan_frequencies +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe319fe63 rtllib_wx_set_power +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xe56c84db rtllib_sta_ps_send_null_frame +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf5e4e84a rtllib_wx_get_encode +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xf7afd22b rtllib_legal_channel +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xfad4bc77 rtllib_stop_scan +EXPORT_SYMBOL drivers/staging/rtl8192e/rtllib 0xffb5611a rtllib_wx_set_scan +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x06639925 ieee80211_stop_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x08b0adb1 notify_wx_assoc_event_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x0f099f61 ieee80211_is_54g_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1058c78c ieee80211_start_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1099177c ieee80211_wx_set_auth_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1156e602 ieee80211_get_beacon_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x127897e8 ieee80211_disassociate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1a329585 ieee80211_stop_send_beacons_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1e19d5b9 DOT11D_ScanComplete +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x1f428442 ieee80211_wx_set_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x242c3f62 Dot11d_Init +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x25adb160 ieee80211_wx_set_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x39bc2e28 ieee80211_softmac_stop_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x3f852b4c ieee80211_softmac_xmit_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x402b5a82 ieee80211_wx_set_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4114c38d ieee80211_stop_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x4fc420d7 ieee80211_wx_set_mlme_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x55d6dd9b ieee80211_start_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x56dc643c ieee80211_rx_mgt_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5ce088f8 ieee80211_wx_get_scan_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x5e15891c ieee80211_reset_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x61ea895d ieee80211_is_shortslot_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x63336996 ieee80211_wx_get_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x6cd8d87c ieee80211_wx_set_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7354a24c ieee80211_wx_set_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7605d5f5 Dot11d_UpdateCountryIe +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x7662b59b ieee80211_wx_get_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x77afee67 ieee80211_wx_get_name_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x781cc3bd ieee80211_softmac_start_protocol_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x80a3d45d DOT11D_GetMaxTxPwrInDbm +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x821ea931 ieee80211_wx_get_wap_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x946698ba ieee80211_wake_queue_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9aee3712 ieee80211_rx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9cc9550c ToLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0x9ea893c1 ieee80211_wx_get_encode_ext_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa1e59b33 HTUpdateSelfAndPeerSetting +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa3c56da6 ieee80211_wpa_supplicant_ioctl_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa50f669e ieee80211_wx_set_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xa8438d10 SendDisassociation_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xacd22ecf ieee80211_wx_set_gen_ie_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb8f19c13 ieee80211_wx_get_rts_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xb9c4b4e4 ieee80211_wx_get_mode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc370a43e ieee80211_wlan_frequencies_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc414febd ieee80211_txb_free_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xc6aee66b ieee80211_wx_set_power_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd1d5e633 ieee80211_wx_get_encode_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd3ff3a66 ieee80211_wx_set_essid_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xd41d56ab ieee80211_softmac_scan_syncro_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xda466a7c IsLegalChannel +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe3945860 ieee80211_wx_set_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xe48f1eff ieee80211_wx_set_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf2641eb1 ieee80211_wx_set_rawtx_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xf844cc85 ieee80211_wx_get_rate_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff5f8a1a ieee80211_wx_get_freq_rsl +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xff8bd7f5 Dot11d_Reset +EXPORT_SYMBOL drivers/staging/rtl8192u/r8192u_usb 0xfff0c0ed ieee80211_ps_tx_ack_rsl +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3292168b iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x35f96509 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x51b65759 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x53417243 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5d0a3a21 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5ed1bc53 iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6db5e15a iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6e395ddc iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x713a2063 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7c8e4111 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7de9583a iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x7e80f67a iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x82913218 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8b256c3d iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x8e0d4817 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x90ce0c3e iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x93241d93 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9de94141 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x9fe4dd48 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xac9d3beb iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb6fff169 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd03c674d iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xe3ecd376 iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf808d875 iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf8c67302 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf935079c iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfa184116 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xfca7a990 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0eecab4c transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x15c569fa target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x1b750566 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x1f4dfa3d core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x227ec957 sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0x29870d49 transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x2b3a7c62 target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x33769486 spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x40fdbf5c target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x442b4f97 transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0x472685f4 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x4782b84c transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x48dc466c target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0x4cdbfb37 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x4eaa4fba transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x5573fcbf core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x56f6385b __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x599803f2 core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x5e173d9f target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x61562b2c target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x647bff42 transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x674ed1cc spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c06172f transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6ea8a549 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7a7de159 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0x7aa16749 transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b821006 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c9caf0a target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e3b4c30 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x8490b54e target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x884c67d2 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a6b6e3c transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x8ac0a947 transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x8e45dd8c transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x97bb6fbc target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x9ea8c2b1 spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0xa1d64224 target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0xa4ab00a9 passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0xa68a59f7 transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa6c81179 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xa800b76c core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xb0d42155 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xb586734e transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb8b39222 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0xc4f322b5 target_show_dynamic_sessions +EXPORT_SYMBOL drivers/target/target_core_mod 0xc5e32d79 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0xc6089dfb target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc74001e3 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7937f0d sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0xc8b01ee5 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0xca984f24 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xcaf02a71 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xcf0aec6a transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0xd1ae6e27 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0xd4923831 passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xdac1707e target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd3d7b91 target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xddca3e97 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xe06b3035 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0xe2a9244d transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xeb6f8123 target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xebe4556e target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xec91aa5b sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0xefc48442 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf0b210d6 target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xf63657f2 target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf6a9d2bb transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xf91f66be target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0xfb1e803a spc_parse_cdb +EXPORT_SYMBOL drivers/usb/class/cdc-wdm 0x39e738bc 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 0x8f4821ac sl811h_driver +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x023e6552 usb_wwan_dtr_rts +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0ac3c141 usb_wwan_chars_in_buffer +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x0b1e4025 usb_wwan_write_room +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x1e63e249 usb_wwan_port_remove +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x32e784fb usb_wwan_write +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x334c4d52 usb_wwan_tiocmget +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x34bfe78a usb_wwan_tiocmset +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x4bd1a9ed usb_wwan_suspend +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6919afff usb_wwan_resume +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x6da63be0 usb_wwan_ioctl +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x73ac2bd1 usb_wwan_close +EXPORT_SYMBOL drivers/usb/serial/usb_wwan 0x80086e71 usb_wwan_open +EXPORT_SYMBOL drivers/usb/serial/usbserial 0x33e849f6 usb_serial_suspend +EXPORT_SYMBOL drivers/usb/serial/usbserial 0xefd64d6b 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 0x233d95fb devm_lcd_device_unregister +EXPORT_SYMBOL drivers/video/backlight/lcd 0x3d38c843 devm_lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x512f3645 lcd_device_register +EXPORT_SYMBOL drivers/video/backlight/lcd 0x9288e246 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 0x4ab38ef2 svga_set_default_crt_regs +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x51f5275d svga_tilecursor +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x5df63d85 svga_get_caps +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x67d4a2ca svga_tilefill +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x6e4adb1e svga_check_timings +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0x7ca2513c 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 0xa2d6aaa2 svga_settile +EXPORT_SYMBOL drivers/video/fbdev/core/svgalib 0xc0065f85 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/svgalib 0xff1de371 svga_get_tilemax +EXPORT_SYMBOL drivers/video/fbdev/core/syscopyarea 0x220b0752 sys_copyarea +EXPORT_SYMBOL drivers/video/fbdev/core/sysfillrect 0x43f5929c sys_fillrect +EXPORT_SYMBOL drivers/video/fbdev/core/sysimgblt 0x459eab46 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 0x74159945 cyber2000fb_attach +EXPORT_SYMBOL drivers/video/fbdev/cyber2000fb 0xb39f68d1 cyber2000fb_enable_extregs +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x31da2450 g450_mnp2f +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x59a26ecb matroxfb_g450_setclk +EXPORT_SYMBOL drivers/video/fbdev/matrox/g450_pll 0x6b5e4ba7 matroxfb_g450_setpll_cond +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x6c4f9954 DAC1064_global_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0x9bc96c85 DAC1064_global_restore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xa0cb3d8c matrox_G100 +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_DAC1064 0xaf93139a matrox_mystique +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_Ti3026 0x5ccca29c matrox_millennium +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_accel 0x12ff2053 matrox_cfbX_init +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0x2b6c826f matroxfb_wait_for_sync +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xb4070107 matroxfb_register_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xebb15cf7 matroxfb_unregister_driver +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_base 0xf0d563de matroxfb_enable_irq +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x381e57f7 matroxfb_g450_shutdown +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_g450 0x9c31683c matroxfb_g450_connect +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x25cf8049 matroxfb_PLL_calcclock +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x5f592109 matroxfb_DAC_out +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x86667330 matroxfb_read_pins +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x88e57b11 matroxfb_DAC_in +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0x8f66bfbe matroxfb_vgaHWrestore +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xcdc90c64 matroxfb_var2my +EXPORT_SYMBOL drivers/video/fbdev/matrox/matroxfb_misc 0xe435e70b matroxfb_vgaHWinit +EXPORT_SYMBOL drivers/video/fbdev/mb862xx/mb862xxfb 0xa06acdc1 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 0x148077f5 w1_ds2760_recall_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x5bb119c9 w1_ds2760_write +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x64fbf0b7 w1_ds2760_store_eeprom +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2760 0x9be333e7 w1_ds2760_read +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xa84544da w1_ds2780_eeprom_cmd +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2780 0xc90e1048 w1_ds2780_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0x928207f2 w1_ds2781_io +EXPORT_SYMBOL drivers/w1/slaves/w1_ds2781 0xcd085c4f w1_ds2781_eeprom_cmd +EXPORT_SYMBOL drivers/w1/wire 0x4c89cb13 w1_add_master_device +EXPORT_SYMBOL drivers/w1/wire 0x90deca04 w1_unregister_family +EXPORT_SYMBOL drivers/w1/wire 0xb46e06e6 w1_remove_master_device +EXPORT_SYMBOL drivers/w1/wire 0xce4ddcb3 w1_register_family +EXPORT_SYMBOL fs/configfs/configfs 0x0b961219 config_item_init_type_name +EXPORT_SYMBOL fs/configfs/configfs 0x10ff4a75 configfs_register_group +EXPORT_SYMBOL fs/configfs/configfs 0x301f3a0b config_item_set_name +EXPORT_SYMBOL fs/configfs/configfs 0x3291f772 configfs_unregister_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0x4e7d561d config_item_put +EXPORT_SYMBOL fs/configfs/configfs 0x506ef795 configfs_register_default_group +EXPORT_SYMBOL fs/configfs/configfs 0x5e57643a config_group_find_item +EXPORT_SYMBOL fs/configfs/configfs 0x7fdecb05 configfs_depend_item +EXPORT_SYMBOL fs/configfs/configfs 0xada81a5f config_group_init +EXPORT_SYMBOL fs/configfs/configfs 0xb42ca9da configfs_register_subsystem +EXPORT_SYMBOL fs/configfs/configfs 0xba87c4e1 configfs_unregister_default_group +EXPORT_SYMBOL fs/configfs/configfs 0xbb351f43 configfs_undepend_item +EXPORT_SYMBOL fs/configfs/configfs 0xc9e075e3 config_item_get +EXPORT_SYMBOL fs/configfs/configfs 0xdc5c638d configfs_unregister_group +EXPORT_SYMBOL fs/configfs/configfs 0xfd72866e config_group_init_type_name +EXPORT_SYMBOL fs/exofs/libore 0x045c92a6 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2c905e47 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x464a9f8d ore_write +EXPORT_SYMBOL fs/exofs/libore 0x5a3ac107 ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x8b20657a ore_read +EXPORT_SYMBOL fs/exofs/libore 0x9fee0ff0 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xaa89fe39 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0xb8466274 ore_get_rw_state +EXPORT_SYMBOL fs/exofs/libore 0xc1444086 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xc77df8d2 ore_check_io +EXPORT_SYMBOL fs/fscache/fscache 0x00654144 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x0a7d24fa fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x0d3ba180 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0x1842c4a6 __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x1ecc5e4c fscache_fsdef_index +EXPORT_SYMBOL fs/fscache/fscache 0x2871cb3e __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x2f04629a fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x3c4e9f91 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x4539da90 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x45a63a2f __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x47c53274 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x4816d469 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x54947142 __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x59a4f631 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x5afe94d2 fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x62695b1c __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x6eb88fe5 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x71ffe1ab __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 0x7e0b67d0 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0x7e8ebee1 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0x7ed0aa6f __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0x8b2a0817 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x8b4e46dc __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x93358861 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0x97114a2f __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0xb6815e14 fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0xbe9a2c80 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0xc6dec196 fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xc6fc8ee9 __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xcc9891c5 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xcd62c7ef __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0xd15ac916 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xdd00581a __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xdf068514 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xeb7eebad __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xef30f231 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xf37f0947 fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xfb6e6756 __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0xff0164c0 fscache_object_retrying_stale +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x061b4e37 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0x8aeb9d51 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa8904f60 qtree_read_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa9aef851 qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0xfa3ae3a7 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 0x2ed1a4f0 lc_seq_printf_stats +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 0x6d26f083 lc_seq_dump_details +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 0x30ab191a lowpan_nhc_del +EXPORT_SYMBOL net/6lowpan/6lowpan 0x3aad1e8d lowpan_nhc_add +EXPORT_SYMBOL net/6lowpan/6lowpan 0x7ea14e29 lowpan_netdev_setup +EXPORT_SYMBOL net/802/p8022 0x70b7aff0 unregister_8022_client +EXPORT_SYMBOL net/802/p8022 0xbb85b14f register_8022_client +EXPORT_SYMBOL net/802/p8023 0x6aed4dd1 make_8023_client +EXPORT_SYMBOL net/802/p8023 0xa8efc445 destroy_8023_client +EXPORT_SYMBOL net/802/psnap 0x4da9e1a5 unregister_snap_client +EXPORT_SYMBOL net/802/psnap 0x9dab75d2 register_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x03b9c4de p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x046c2437 p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x05d994d6 p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0x0d715dfd p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x11291075 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x1ad597f4 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x2065cf04 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x229c796b p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x26f1801e p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0x28bc6c6a p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0x2edbd611 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x304b2a2a p9_client_symlink +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 0x4297c47a v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x451ed827 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x53bb5a1c p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x53d58a07 p9dirent_read +EXPORT_SYMBOL net/9p/9pnet 0x568036c8 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0x591871bc v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0x60125106 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x7cf4bead p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x7d403fcd p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x8436f824 v9fs_get_trans_by_name +EXPORT_SYMBOL net/9p/9pnet 0x87f73ff5 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0x89cf7e42 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0x8e952110 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0x9174c7d6 v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0xb2b8f66c p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0xb55341b3 p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xc3c3403e p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc81252c6 p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xcd664f95 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd85d6aa9 p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0xd900d1fa p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0xd9b357cb p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xddeb2b99 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xe3174d13 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xe44e9e2a p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0xe56c605d p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xee533b39 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xee9d6831 p9_client_stat +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 0xfe8c8404 p9_client_begin_disconnect +EXPORT_SYMBOL net/appletalk/appletalk 0x2ef4e55f alloc_ltalkdev +EXPORT_SYMBOL net/appletalk/appletalk 0x6f292542 atalk_find_dev_addr +EXPORT_SYMBOL net/appletalk/appletalk 0x9b256a29 aarp_send_ddp +EXPORT_SYMBOL net/appletalk/appletalk 0xd02064a0 atrtr_get_dev +EXPORT_SYMBOL net/atm/atm 0x1c91665f 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 0x53c14212 atm_dev_lookup +EXPORT_SYMBOL net/atm/atm 0x5d19e6ea vcc_process_recv_queue +EXPORT_SYMBOL net/atm/atm 0x7ed43c6a atm_alloc_charge +EXPORT_SYMBOL net/atm/atm 0x7fb05eb2 atm_charge +EXPORT_SYMBOL net/atm/atm 0x8bd18ec0 atm_dev_deregister +EXPORT_SYMBOL net/atm/atm 0x9feaf287 sonet_subtract_stats +EXPORT_SYMBOL net/atm/atm 0xa3b65f3e atm_dev_register +EXPORT_SYMBOL net/atm/atm 0xaa024146 sonet_copy_stats +EXPORT_SYMBOL net/atm/atm 0xb0b970cd atm_dev_release_vccs +EXPORT_SYMBOL net/atm/atm 0xbd9c37ea vcc_insert_socket +EXPORT_SYMBOL net/atm/atm 0xca87b453 vcc_sklist_lock +EXPORT_SYMBOL net/atm/atm 0xddfe004d deregister_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xeede8be7 atm_init_aal5 +EXPORT_SYMBOL net/atm/atm 0xf49bc67a atm_pcr_goal +EXPORT_SYMBOL net/atm/atm 0xf63bfa17 register_atm_ioctl +EXPORT_SYMBOL net/atm/atm 0xf7e15fa6 vcc_release_async +EXPORT_SYMBOL net/ax25/ax25 0x004f7a35 ax25_ip_xmit +EXPORT_SYMBOL net/ax25/ax25 0x242852b9 ax25_uid_policy +EXPORT_SYMBOL net/ax25/ax25 0x341948b9 ax25_header_ops +EXPORT_SYMBOL net/ax25/ax25 0x3afee63e ax25_findbyuid +EXPORT_SYMBOL net/ax25/ax25 0x4502c65a asc2ax +EXPORT_SYMBOL net/ax25/ax25 0x4999d6bc ax25_send_frame +EXPORT_SYMBOL net/ax25/ax25 0x53dea1ff ax2asc +EXPORT_SYMBOL net/ax25/ax25 0x55c38545 ax25_linkfail_register +EXPORT_SYMBOL net/ax25/ax25 0x59d4611c 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 0xb3296bb6 ax25_find_cb +EXPORT_SYMBOL net/ax25/ax25 0xc1444946 ax25cmp +EXPORT_SYMBOL net/ax25/ax25 0xd43ecbf1 null_ax25_address +EXPORT_SYMBOL net/ax25/ax25 0xf4fba558 ax25_listen_register +EXPORT_SYMBOL net/ax25/ax25 0xf759397d ax25_listen_release +EXPORT_SYMBOL net/bluetooth/bluetooth 0x027c497e bt_sock_link +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0cab7572 hci_conn_check_secure +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0d8ed23d hci_suspend_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x0db9626c hci_unregister_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0x11bd5a8f hci_free_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x163787a5 bt_sock_wait_state +EXPORT_SYMBOL net/bluetooth/bluetooth 0x171e0b8d hci_get_route +EXPORT_SYMBOL net/bluetooth/bluetooth 0x26413979 hci_reset_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x2f9aa715 bt_accept_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0x3081ce66 l2cap_unregister_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x47022514 bt_err +EXPORT_SYMBOL net/bluetooth/bluetooth 0x4d9d4904 bt_sock_reclassify_lock +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51756472 bt_procfs_cleanup +EXPORT_SYMBOL net/bluetooth/bluetooth 0x51e4a08a bt_accept_enqueue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x55cf8af6 __hci_cmd_sync +EXPORT_SYMBOL net/bluetooth/bluetooth 0x599135b5 bt_procfs_init +EXPORT_SYMBOL net/bluetooth/bluetooth 0x61cc1bfd hci_unregister_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x68559cb2 bt_accept_dequeue +EXPORT_SYMBOL net/bluetooth/bluetooth 0x72966c2a hci_mgmt_chan_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x74a295fc bt_sock_register +EXPORT_SYMBOL net/bluetooth/bluetooth 0x759564bc l2cap_conn_put +EXPORT_SYMBOL net/bluetooth/bluetooth 0x76c979a7 hci_register_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x78bca494 l2cap_register_user +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8d9a7c61 hci_resume_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0x8fea24bd bt_sock_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x90ae5f1e hci_conn_security +EXPORT_SYMBOL net/bluetooth/bluetooth 0x91c9a325 bt_to_errno +EXPORT_SYMBOL net/bluetooth/bluetooth 0x962f06b1 hci_mgmt_chan_unregister +EXPORT_SYMBOL net/bluetooth/bluetooth 0x9f381982 bt_sock_poll +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa79511ff bt_sock_unlink +EXPORT_SYMBOL net/bluetooth/bluetooth 0xa97cd5b4 l2cap_is_socket +EXPORT_SYMBOL net/bluetooth/bluetooth 0xadd9da5b hci_recv_diag +EXPORT_SYMBOL net/bluetooth/bluetooth 0xae92171f __hci_cmd_sync_ev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0539dd6 bt_err_ratelimited +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb0a29d31 bt_sock_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xb6b4baab hci_conn_switch_role +EXPORT_SYMBOL net/bluetooth/bluetooth 0xbd9d66f2 hci_alloc_dev +EXPORT_SYMBOL net/bluetooth/bluetooth 0xc8c051b3 hci_register_cb +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcb1e6e84 l2cap_conn_get +EXPORT_SYMBOL net/bluetooth/bluetooth 0xcc1fb551 baswap +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd7442057 bt_info +EXPORT_SYMBOL net/bluetooth/bluetooth 0xd9fe62a1 bt_sock_wait_ready +EXPORT_SYMBOL net/bluetooth/bluetooth 0xde730c0d bt_sock_stream_recvmsg +EXPORT_SYMBOL net/bluetooth/bluetooth 0xdec9c506 hci_recv_frame +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe334359d l2cap_chan_close +EXPORT_SYMBOL net/bluetooth/bluetooth 0xe8283080 bt_sock_ioctl +EXPORT_SYMBOL net/bluetooth/bluetooth 0xf112da85 bt_warn +EXPORT_SYMBOL net/bluetooth/bluetooth 0xfab2fc50 hci_cmd_sync +EXPORT_SYMBOL net/bridge/bridge 0xe1ecc4ba br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x302d9700 ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x82186bdb ebt_do_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x95101c03 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 0x414e5256 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 0x966d7de2 cfpkt_add_head +EXPORT_SYMBOL net/caif/caif 0x9e3e305d cfpkt_set_prio +EXPORT_SYMBOL net/caif/caif 0x9f082213 caif_disconnect_client +EXPORT_SYMBOL net/caif/caif 0xb7b6874e caif_free_client +EXPORT_SYMBOL net/caif/caif 0xba474e5b get_cfcnfg +EXPORT_SYMBOL net/caif/caif 0xd851422d caif_enroll_dev +EXPORT_SYMBOL net/caif/caif 0xf89b3605 cfcnfg_add_phy_layer +EXPORT_SYMBOL net/can/can 0x3cec1bac can_rx_register +EXPORT_SYMBOL net/can/can 0x52b01a96 can_rx_unregister +EXPORT_SYMBOL net/can/can 0x7b044517 can_send +EXPORT_SYMBOL net/can/can 0x98a6b0bb can_proto_unregister +EXPORT_SYMBOL net/can/can 0xb7d4136f can_ioctl +EXPORT_SYMBOL net/can/can 0xfb61a103 can_proto_register +EXPORT_SYMBOL net/ceph/libceph 0x009d8d8b osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x075721f4 ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0x08b34ad8 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x0e7074db ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0x0f771e61 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x117d2309 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x12f85058 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x174c6e9d ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x178b9837 ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0x1a1489eb ceph_monc_wait_osdmap +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 0x304ae9e2 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x3119dd62 ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x319e915e osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x3abec91f ceph_pr_addr +EXPORT_SYMBOL net/ceph/libceph 0x3c2fea4c ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0x3c47f1ef ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x3eb9c140 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x3eef6c0b ceph_pg_pool_name_by_id +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 0x42ad3c61 ceph_zero_page_vector_range +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 0x45f4ddc6 ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0x466b85b8 libceph_compatible +EXPORT_SYMBOL net/ceph/libceph 0x4a46a30e osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0x4caff95a ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x4f390ac9 ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0x507e2426 osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0x516054d3 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0x52c34952 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x567b737d ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x592ad344 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0x60e9fe5b osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x676555fa ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x69440f77 __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6ba8c25a ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x6d1643e0 ceph_osdc_readpages +EXPORT_SYMBOL net/ceph/libceph 0x6fcdafef ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0x715f51a7 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0x719422fd ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x729f2a33 ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x759140eb ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0x793f0c7a ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x79f4a049 ceph_osdc_put_event +EXPORT_SYMBOL net/ceph/libceph 0x7be25311 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x810c7dd5 ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0x86400c3d ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0x891a8f20 ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x89d61fd1 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0x8c05f9ed ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x98048ff8 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x991a5b86 ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9c3ac4c1 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x9d8c0826 ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa0bd6a6b ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xa17154c2 ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0xa2071d8e osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xa2e54da2 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xa56dd39a ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0xa7bd13d7 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0xa95f4ef3 osd_req_op_extent_osd_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xaae0bec9 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0xacfc69b1 ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0xae28d782 ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb048cfda ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0xb54676fa ceph_msg_type_name +EXPORT_SYMBOL net/ceph/libceph 0xb6081d6d ceph_msgr_exit +EXPORT_SYMBOL net/ceph/libceph 0xbab421d7 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbb1024e3 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbfbc69be ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xc0c8ae99 ceph_open_session +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 0xcae7d873 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xccfd6bdf ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0xce2069e4 osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd3f37dea ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xd60dd9d9 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0xd6ec7aab ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0xd7acd83f ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0xdb45cd0d osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xdd56f06d ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xdfb9d17a ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0xe2454dd5 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0xe3b042ca ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0xe4e15ca1 ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe5ea05bb ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xf01c63b9 ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0xf07579d8 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0xf3269067 ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0xf35cb4d9 ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0xf890adf8 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xfe133697 ceph_msg_data_add_pages +EXPORT_SYMBOL net/ceph/libceph 0xfecf1b60 ceph_msg_data_add_bio +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x310d0da2 dccp_syn_ack_timeout +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x5b950899 dccp_req_err +EXPORT_SYMBOL net/ieee802154/ieee802154 0x2c3bd58c wpan_phy_for_each +EXPORT_SYMBOL net/ieee802154/ieee802154 0x396b83da wpan_phy_register +EXPORT_SYMBOL net/ieee802154/ieee802154 0x8d534dff wpan_phy_unregister +EXPORT_SYMBOL net/ieee802154/ieee802154 0xebc3d9b4 wpan_phy_find +EXPORT_SYMBOL net/ieee802154/ieee802154 0xed781f3a wpan_phy_new +EXPORT_SYMBOL net/ieee802154/ieee802154 0xf5c39d1a wpan_phy_free +EXPORT_SYMBOL net/ipv4/fou 0x3106aeb4 gue_encap_hlen +EXPORT_SYMBOL net/ipv4/fou 0x508a434a fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0xae95652b gue_build_header +EXPORT_SYMBOL net/ipv4/fou 0xd0750778 fou_encap_hlen +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x3979d2df ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x49846024 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8bd6c642 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x8df7c8a7 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf16df206 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf592ba9f ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x2cf0b4ca arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x6a71cc82 arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x8f3664f8 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x0af73a25 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x6e61266c ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xd1ec7be7 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x16830d3f xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/tunnel4 0x75f6f84b xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/udp_tunnel 0xc3213861 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x4e11ecb9 ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x67cd554f ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x978940e8 ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xabea9f41 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x3e0e6333 ip6t_register_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x4a10d9d7 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x5426c746 ip6t_do_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x191d8d86 xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xa3af6ff8 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x7f15c105 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xfe02ac7a xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x00352100 ircomm_control_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x02952b5c ircomm_data_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x2a032995 ircomm_flow_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0x9ddede2e ircomm_disconnect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb04d4061 ircomm_close +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xb4da1a4c ircomm_connect_request +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xc1d895dc ircomm_open +EXPORT_SYMBOL net/irda/ircomm/ircomm 0xffdbf14d ircomm_connect_response +EXPORT_SYMBOL net/irda/irda 0x0064e0ea hashbin_get_first +EXPORT_SYMBOL net/irda/irda 0x0616dc9e 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 0x0cdca16a irttp_open_tsap +EXPORT_SYMBOL net/irda/irda 0x0da3f4a0 irlmp_connect_request +EXPORT_SYMBOL net/irda/irda 0x0ece1ce0 irttp_close_tsap +EXPORT_SYMBOL net/irda/irda 0x0f19e530 irlmp_open_lsap +EXPORT_SYMBOL net/irda/irda 0x17be0600 irlmp_data_request +EXPORT_SYMBOL net/irda/irda 0x192ee876 async_wrap_skb +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 0x4ca27de1 alloc_irdadev +EXPORT_SYMBOL net/irda/irda 0x5c3f521f irlap_open +EXPORT_SYMBOL net/irda/irda 0x5ccc2993 irlap_close +EXPORT_SYMBOL net/irda/irda 0x601bda46 hashbin_remove +EXPORT_SYMBOL net/irda/irda 0x689f2a97 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 0x6ff350ca irlmp_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 0x7b0aa353 irttp_flow_request +EXPORT_SYMBOL net/irda/irda 0x7c6f61a2 irlmp_close_lsap +EXPORT_SYMBOL net/irda/irda 0x7f52a8bf irda_param_insert +EXPORT_SYMBOL net/irda/irda 0x8136bc2c iriap_getvaluebyclass_request +EXPORT_SYMBOL net/irda/irda 0x85d88217 irias_delete_object +EXPORT_SYMBOL net/irda/irda 0x8ecc4401 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 0x9afa5851 irttp_connect_response +EXPORT_SYMBOL net/irda/irda 0x9bd5d8de irttp_disconnect_request +EXPORT_SYMBOL net/irda/irda 0xa194cf07 irttp_dup +EXPORT_SYMBOL net/irda/irda 0xa1d41e58 hashbin_delete +EXPORT_SYMBOL net/irda/irda 0xaa557515 irias_new_object +EXPORT_SYMBOL net/irda/irda 0xb3cdfac8 irttp_udata_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 0xc68e43be irias_add_octseq_attrib +EXPORT_SYMBOL net/irda/irda 0xce4a573b irttp_data_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 0xe3463529 hashbin_lock_find +EXPORT_SYMBOL net/irda/irda 0xe3bde43e irias_insert_object +EXPORT_SYMBOL net/irda/irda 0xe666ae3e iriap_open +EXPORT_SYMBOL net/irda/irda 0xe695dabd irlmp_connect_response +EXPORT_SYMBOL net/irda/irda 0xedd521c2 irlmp_get_discoveries +EXPORT_SYMBOL net/irda/irda 0xf0a694a1 irias_find_object +EXPORT_SYMBOL net/irda/irda 0xf55b9771 iriap_close +EXPORT_SYMBOL net/irda/irda 0xf5876b95 hashbin_remove_this +EXPORT_SYMBOL net/irda/irda 0xfeac8ab8 irda_device_set_media_busy +EXPORT_SYMBOL net/l2tp/l2tp_core 0xe3b55006 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xf93d2688 l2tp_ioctl +EXPORT_SYMBOL net/lapb/lapb 0x02957216 lapb_getparms +EXPORT_SYMBOL net/lapb/lapb 0x404cb838 lapb_unregister +EXPORT_SYMBOL net/lapb/lapb 0x5385eb0c lapb_disconnect_request +EXPORT_SYMBOL net/lapb/lapb 0x5bf7efef lapb_register +EXPORT_SYMBOL net/lapb/lapb 0x6b870d8d lapb_setparms +EXPORT_SYMBOL net/lapb/lapb 0x73f646c6 lapb_data_request +EXPORT_SYMBOL net/lapb/lapb 0xab039407 lapb_connect_request +EXPORT_SYMBOL net/lapb/lapb 0xf0dddae2 lapb_data_received +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x4b9a58ff llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x51cc1107 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x59601adb llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0x8d5ed013 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x8e6ae2bb llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0x969ff2ad llc_sap_open +EXPORT_SYMBOL net/llc/llc 0xa6f0e57b llc_add_pack +EXPORT_SYMBOL net/mac80211/mac80211 0x002a42e0 ieee80211_sta_block_awake +EXPORT_SYMBOL net/mac80211/mac80211 0x064bfb17 ieee80211_cqm_rssi_notify +EXPORT_SYMBOL net/mac80211/mac80211 0x0936540e ieee80211_tx_prepare_skb +EXPORT_SYMBOL net/mac80211/mac80211 0x0bd609f2 ieee80211_get_key_tx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x0d4a5cae ieee80211_start_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0x0dea7b61 ieee80211_stop_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0x0f6f6317 ieee80211_stop_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x1394d6c2 ieee80211_free_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x15e0aa88 ieee80211_beacon_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x16b7d500 rate_control_set_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x181ad98b ieee80211_stop_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x183b5d85 ieee80211_find_sta +EXPORT_SYMBOL net/mac80211/mac80211 0x1b66e745 ieee80211_get_tx_rates +EXPORT_SYMBOL net/mac80211/mac80211 0x1c6779e4 ieee80211_connection_loss +EXPORT_SYMBOL net/mac80211/mac80211 0x24eca11b ieee80211_alloc_hw_nm +EXPORT_SYMBOL net/mac80211/mac80211 0x2636b048 ieee80211_tdls_oper_request +EXPORT_SYMBOL net/mac80211/mac80211 0x26eaf791 ieee80211_tx_status_noskb +EXPORT_SYMBOL net/mac80211/mac80211 0x274224ca ieee80211_ctstoself_get +EXPORT_SYMBOL net/mac80211/mac80211 0x288ffc06 ieee80211_chswitch_done +EXPORT_SYMBOL net/mac80211/mac80211 0x2b939511 ieee80211_wake_queues +EXPORT_SYMBOL net/mac80211/mac80211 0x2ef31e8b ieee80211_reserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x31a9386f ieee80211_get_buffered_bc +EXPORT_SYMBOL net/mac80211/mac80211 0x32c73e51 ieee80211_tx_status +EXPORT_SYMBOL net/mac80211/mac80211 0x347940a5 ieee80211_rate_control_unregister +EXPORT_SYMBOL net/mac80211/mac80211 0x3c45037a __ieee80211_get_rx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x3c8cb674 ieee80211_wake_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x40608308 ieee80211_enable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x40b2cf6a ieee80211_sched_scan_results +EXPORT_SYMBOL net/mac80211/mac80211 0x419c0202 ieee80211_get_tkip_p1k_iv +EXPORT_SYMBOL net/mac80211/mac80211 0x42ce4966 ieee80211_csa_finish +EXPORT_SYMBOL net/mac80211/mac80211 0x4344df21 ieee80211_scan_completed +EXPORT_SYMBOL net/mac80211/mac80211 0x4888f5d8 ieee80211_unregister_hw +EXPORT_SYMBOL net/mac80211/mac80211 0x4c2b011a ieee80211_get_tkip_rx_p1k +EXPORT_SYMBOL net/mac80211/mac80211 0x535175a6 ieee80211_queue_work +EXPORT_SYMBOL net/mac80211/mac80211 0x55f97e4f ieee80211_get_key_rx_seq +EXPORT_SYMBOL net/mac80211/mac80211 0x5728870d ieee80211_rx_napi +EXPORT_SYMBOL net/mac80211/mac80211 0x581149be ieee80211_nullfunc_get +EXPORT_SYMBOL net/mac80211/mac80211 0x5df761bd ieee80211_stop_queue +EXPORT_SYMBOL net/mac80211/mac80211 0x5fed8e59 __ieee80211_create_tpt_led_trigger +EXPORT_SYMBOL net/mac80211/mac80211 0x6339f270 ieee80211_disable_rssi_reports +EXPORT_SYMBOL net/mac80211/mac80211 0x6e001a40 ieee80211_csa_update_counter +EXPORT_SYMBOL net/mac80211/mac80211 0x6fe7e272 __ieee80211_get_assoc_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x71c2f983 __ieee80211_get_tx_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0x7283c4d8 ieee80211_get_tkip_p2k +EXPORT_SYMBOL net/mac80211/mac80211 0x7683a2e8 ieee80211_pspoll_get +EXPORT_SYMBOL net/mac80211/mac80211 0x773b1d0c ieee80211_rate_control_register +EXPORT_SYMBOL net/mac80211/mac80211 0x77ea65c4 ieee80211_update_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0x7efaebc4 ieee80211_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0x7fbd3164 ieee80211_tx_dequeue +EXPORT_SYMBOL net/mac80211/mac80211 0x8f5c2e57 ieee80211_rts_get +EXPORT_SYMBOL net/mac80211/mac80211 0x90cda62b ieee80211_sta_eosp +EXPORT_SYMBOL net/mac80211/mac80211 0x914fd5c5 ieee80211_sta_ps_transition +EXPORT_SYMBOL net/mac80211/mac80211 0x93cd9374 ieee80211_send_bar +EXPORT_SYMBOL net/mac80211/mac80211 0x978b706e ieee80211_unreserve_tid +EXPORT_SYMBOL net/mac80211/mac80211 0x9f6c8ae0 ieee80211_rx_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0x9f794c44 ieee80211_queue_delayed_work +EXPORT_SYMBOL net/mac80211/mac80211 0xa6424b41 ieee80211_tx_status_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xa86aab64 ieee80211_iter_keys +EXPORT_SYMBOL net/mac80211/mac80211 0xae0247a6 ieee80211_report_low_ack +EXPORT_SYMBOL net/mac80211/mac80211 0xaf558b3f ieee80211_register_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb1455963 ieee80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/mac80211/mac80211 0xb270b59d ieee80211_restart_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xb335ae53 ieee80211_beacon_get_tim +EXPORT_SYMBOL net/mac80211/mac80211 0xb42dac81 ieee80211_ctstoself_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xb58c3fa2 ieee80211_ap_probereq_get +EXPORT_SYMBOL net/mac80211/mac80211 0xb5e95c39 ieee80211_stop_rx_ba_session_offl +EXPORT_SYMBOL net/mac80211/mac80211 0xbb324baf ieee80211_csa_is_complete +EXPORT_SYMBOL net/mac80211/mac80211 0xbc708619 ieee80211_start_tx_ba_cb_irqsafe +EXPORT_SYMBOL net/mac80211/mac80211 0xbf2a5454 ieee80211_start_tx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xc468ac17 wiphy_to_ieee80211_hw +EXPORT_SYMBOL net/mac80211/mac80211 0xc55d52c7 ieee80211_sched_scan_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xcebb7930 ieee80211_proberesp_get +EXPORT_SYMBOL net/mac80211/mac80211 0xd4f36199 rate_control_send_low +EXPORT_SYMBOL net/mac80211/mac80211 0xd72625cb ieee80211_parse_p2p_noa +EXPORT_SYMBOL net/mac80211/mac80211 0xde49fb07 ieee80211_queue_stopped +EXPORT_SYMBOL net/mac80211/mac80211 0xe17454c4 ieee80211_beacon_get_template +EXPORT_SYMBOL net/mac80211/mac80211 0xe3c9cf43 ieee80211_rts_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xe6e7ae64 ieee80211_generic_frame_duration +EXPORT_SYMBOL net/mac80211/mac80211 0xee0e54aa ieee80211_free_txskb +EXPORT_SYMBOL net/mac80211/mac80211 0xee14f28c __ieee80211_get_radio_led_name +EXPORT_SYMBOL net/mac80211/mac80211 0xef092730 ieee80211_stop_rx_ba_session +EXPORT_SYMBOL net/mac80211/mac80211 0xf815c1fd ieee80211_sta_set_buffered +EXPORT_SYMBOL net/mac80211/mac80211 0xfe485096 ieee80211_radar_detected +EXPORT_SYMBOL net/mac80211/mac80211 0xfefb0664 ieee80211_report_wowlan_wakeup +EXPORT_SYMBOL net/mac802154/mac802154 0x11bfd1dc ieee802154_wake_queue +EXPORT_SYMBOL net/mac802154/mac802154 0x320e4947 ieee802154_rx_irqsafe +EXPORT_SYMBOL net/mac802154/mac802154 0x59c21dae ieee802154_xmit_complete +EXPORT_SYMBOL net/mac802154/mac802154 0x6d74e6f5 ieee802154_free_hw +EXPORT_SYMBOL net/mac802154/mac802154 0x7576c8d2 ieee802154_unregister_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xd597913e ieee802154_stop_queue +EXPORT_SYMBOL net/mac802154/mac802154 0xef9d7883 ieee802154_register_hw +EXPORT_SYMBOL net/mac802154/mac802154 0xfcbe1dcb ieee802154_alloc_hw +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x03ee47a5 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x05c4767d ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x2296699c unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x23f2eb9c ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x3d5b3485 register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6d254e54 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb506584a unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc9d379fb register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd64e3970 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xdde862fd ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe3740b7b ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe59479c7 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe7921075 ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xfdb7d38a ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x68f24e80 __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x96d9cbb4 __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack 0xa6f24a06 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x2043cf49 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x3a331e25 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0x401e03d6 nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0x573efc87 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x714a6cde nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xe4ca2567 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x03a219b2 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x12a38aab xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0x1803d6ba xt_register_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x19dd0370 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x28aa65a1 xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x5033a8e1 xt_unregister_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x5df2ddf3 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x5f76a0de xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x7f8f5cbb 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 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xfb87832d xt_unregister_match +EXPORT_SYMBOL net/nfc/hci/hci 0x21e918df nfc_hci_set_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0x43028a27 nfc_hci_result_to_errno +EXPORT_SYMBOL net/nfc/hci/hci 0x4c021502 nfc_llc_stop +EXPORT_SYMBOL net/nfc/hci/hci 0x573a7a57 nfc_hci_set_param +EXPORT_SYMBOL net/nfc/hci/hci 0x703f7dee nfc_llc_start +EXPORT_SYMBOL net/nfc/hci/hci 0x708bd722 nfc_hci_recv_frame +EXPORT_SYMBOL net/nfc/hci/hci 0x72912927 nfc_hci_send_cmd +EXPORT_SYMBOL net/nfc/hci/hci 0x786468ae nfc_hci_send_event +EXPORT_SYMBOL net/nfc/hci/hci 0x7d885ed7 nfc_hci_driver_failure +EXPORT_SYMBOL net/nfc/hci/hci 0xb24617fa nfc_hci_target_discovered +EXPORT_SYMBOL net/nfc/hci/hci 0xb7c0d859 nfc_hci_register_device +EXPORT_SYMBOL net/nfc/hci/hci 0xbca0b4fd nfc_hci_sak_to_protocol +EXPORT_SYMBOL net/nfc/hci/hci 0xbe868bc2 nfc_hci_free_device +EXPORT_SYMBOL net/nfc/hci/hci 0xc6948ec2 nfc_hci_disconnect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xc945b463 nfc_hci_get_param +EXPORT_SYMBOL net/nfc/hci/hci 0xd489a3cc nfc_hci_reset_pipes_per_host +EXPORT_SYMBOL net/nfc/hci/hci 0xd7832889 nfc_hci_get_clientdata +EXPORT_SYMBOL net/nfc/hci/hci 0xde4ba61f nfc_hci_disconnect_all_gates +EXPORT_SYMBOL net/nfc/hci/hci 0xe6a4ceed nfc_hci_connect_gate +EXPORT_SYMBOL net/nfc/hci/hci 0xec18ef23 nfc_hci_unregister_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf8af6381 nfc_hci_allocate_device +EXPORT_SYMBOL net/nfc/hci/hci 0xf9d94055 nfc_hci_reset_pipes +EXPORT_SYMBOL net/nfc/hci/hci 0xfd336855 nfc_hci_send_cmd_async +EXPORT_SYMBOL net/nfc/nci/nci 0x0c2b3ebe nci_core_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x0ec88e84 nci_unregister_device +EXPORT_SYMBOL net/nfc/nci/nci 0x3870cf9a nci_send_data +EXPORT_SYMBOL net/nfc/nci/nci 0x4ecd630d nci_core_reset +EXPORT_SYMBOL net/nfc/nci/nci 0x5340d76f nci_send_frame +EXPORT_SYMBOL net/nfc/nci/nci 0x53627cfd nci_allocate_device +EXPORT_SYMBOL net/nfc/nci/nci 0x5a3e7bf0 nci_conn_max_data_pkt_payload_size +EXPORT_SYMBOL net/nfc/nci/nci 0x5d33f944 nci_prop_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x7080b268 nci_core_init +EXPORT_SYMBOL net/nfc/nci/nci 0x71bd71c0 nci_req_complete +EXPORT_SYMBOL net/nfc/nci/nci 0x7f08f023 nci_core_conn_close +EXPORT_SYMBOL net/nfc/nci/nci 0x8115a447 nci_hci_connect_gate +EXPORT_SYMBOL net/nfc/nci/nci 0x83ea8a89 nci_get_conn_info_by_id +EXPORT_SYMBOL net/nfc/nci/nci 0x8a25c384 nci_hci_dev_session_init +EXPORT_SYMBOL net/nfc/nci/nci 0x8d0fe481 nci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x92028bd1 nci_register_device +EXPORT_SYMBOL net/nfc/nci/nci 0x9ab4223d nci_hci_send_cmd +EXPORT_SYMBOL net/nfc/nci/nci 0x9ea265b2 nci_set_config +EXPORT_SYMBOL net/nfc/nci/nci 0x9fffbd10 nci_free_device +EXPORT_SYMBOL net/nfc/nci/nci 0xa2aa7dc3 nci_hci_send_event +EXPORT_SYMBOL net/nfc/nci/nci 0xa2f300fc nci_hci_clear_all_pipes +EXPORT_SYMBOL net/nfc/nci/nci 0xba490602 nci_to_errno +EXPORT_SYMBOL net/nfc/nci/nci 0xc45ed863 nci_hci_get_param +EXPORT_SYMBOL net/nfc/nci/nci 0xcf191cd8 nci_recv_frame +EXPORT_SYMBOL net/nfc/nci/nci 0xe1bb1ef7 nci_hci_open_pipe +EXPORT_SYMBOL net/nfc/nci/nci 0xe93ced30 nci_hci_set_param +EXPORT_SYMBOL net/nfc/nci/nci 0xed123c86 nci_nfcee_mode_set +EXPORT_SYMBOL net/nfc/nci/nci 0xf1a31d57 nci_nfcee_discover +EXPORT_SYMBOL net/nfc/nci/nci 0xfb6f4b3b nci_core_conn_create +EXPORT_SYMBOL net/nfc/nfc 0x02b234a0 nfc_dep_link_is_up +EXPORT_SYMBOL net/nfc/nfc 0x06a1f358 nfc_set_remote_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0x22ccb563 nfc_proto_unregister +EXPORT_SYMBOL net/nfc/nfc 0x2ae8cf60 nfc_class +EXPORT_SYMBOL net/nfc/nfc 0x2f4cc82f nfc_alloc_recv_skb +EXPORT_SYMBOL net/nfc/nfc 0x31a85e22 nfc_targets_found +EXPORT_SYMBOL net/nfc/nfc 0x39c7a7ff nfc_driver_failure +EXPORT_SYMBOL net/nfc/nfc 0x42f7dabd nfc_send_to_raw_sock +EXPORT_SYMBOL net/nfc/nfc 0x4a68cb46 nfc_allocate_device +EXPORT_SYMBOL net/nfc/nfc 0x4bc9d70c nfc_fw_download_done +EXPORT_SYMBOL net/nfc/nfc 0x58d1db94 nfc_tm_data_received +EXPORT_SYMBOL net/nfc/nfc 0x7365e859 nfc_tm_activated +EXPORT_SYMBOL net/nfc/nfc 0x77d246c2 nfc_add_se +EXPORT_SYMBOL net/nfc/nfc 0x7a49441d nfc_tm_deactivated +EXPORT_SYMBOL net/nfc/nfc 0x81b8b7b7 nfc_register_device +EXPORT_SYMBOL net/nfc/nfc 0x86d50ed5 nfc_target_lost +EXPORT_SYMBOL net/nfc/nfc 0x8f602520 nfc_remove_se +EXPORT_SYMBOL net/nfc/nfc 0x9c61dd11 nfc_unregister_device +EXPORT_SYMBOL net/nfc/nfc 0xabd0ae13 nfc_get_local_general_bytes +EXPORT_SYMBOL net/nfc/nfc 0xaea7bd70 nfc_proto_register +EXPORT_SYMBOL net/nfc/nfc 0xba5aab3f __nfc_alloc_vendor_cmd_reply_skb +EXPORT_SYMBOL net/nfc/nfc 0xbd8bf855 nfc_vendor_cmd_reply +EXPORT_SYMBOL net/nfc/nfc 0xf6241c9f nfc_se_transaction +EXPORT_SYMBOL net/nfc/nfc 0xfd44299e nfc_find_se +EXPORT_SYMBOL net/nfc/nfc_digital 0x5e5ad473 nfc_digital_register_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x64f44502 nfc_digital_unregister_device +EXPORT_SYMBOL net/nfc/nfc_digital 0x934133c8 nfc_digital_allocate_device +EXPORT_SYMBOL net/nfc/nfc_digital 0xe3ce2a69 nfc_digital_free_device +EXPORT_SYMBOL net/phonet/phonet 0x2610b4ef phonet_header_ops +EXPORT_SYMBOL net/phonet/phonet 0x3727794d pn_sock_unhash +EXPORT_SYMBOL net/phonet/phonet 0x3c7ad2d8 pn_sock_get_port +EXPORT_SYMBOL net/phonet/phonet 0x7ff59645 pn_sock_hash +EXPORT_SYMBOL net/phonet/phonet 0x841acaac phonet_proto_unregister +EXPORT_SYMBOL net/phonet/phonet 0xccbba711 pn_skb_send +EXPORT_SYMBOL net/phonet/phonet 0xd07b83c5 phonet_proto_register +EXPORT_SYMBOL net/phonet/phonet 0xd0a7c5bf phonet_stream_ops +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x298636cd rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3530abd1 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3708c0cb rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x4457a341 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x66a1b223 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x9840e870 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xad320349 rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xad95c2b0 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb52230b5 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xb80791a1 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xd5afd157 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xda728181 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe4f627bc rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xeba841d3 rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xfd28fc77 key_type_rxrpc +EXPORT_SYMBOL net/sctp/sctp 0x32494440 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0x72451d73 gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xde5b7d38 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xeb2a55ed gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc0396024 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xc05f9778 xdr_restrict_buflen +EXPORT_SYMBOL net/sunrpc/sunrpc 0xfa6bef3f svc_pool_stats_open +EXPORT_SYMBOL net/wimax/wimax 0x5b98d63a wimax_reset +EXPORT_SYMBOL net/wimax/wimax 0xc5871449 wimax_rfkill +EXPORT_SYMBOL net/wireless/cfg80211 0x00228c54 cfg80211_radar_event +EXPORT_SYMBOL net/wireless/cfg80211 0x0219bd16 cfg80211_get_drvinfo +EXPORT_SYMBOL net/wireless/cfg80211 0x042cb87c ieee80211_data_to_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x053e11cf ieee80211_get_num_supported_channels +EXPORT_SYMBOL net/wireless/cfg80211 0x071e765e cfg80211_rx_assoc_resp +EXPORT_SYMBOL net/wireless/cfg80211 0x0761c2f7 cfg80211_cqm_txe_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x09c64fbd ieee80211_frequency_to_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x0f5cf50d ieee80211_data_from_8023 +EXPORT_SYMBOL net/wireless/cfg80211 0x0f6ae90c cfg80211_ch_switch_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x138c6c01 cfg80211_rx_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x147c523e cfg80211_get_station +EXPORT_SYMBOL net/wireless/cfg80211 0x15e4e93d cfg80211_crit_proto_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x16625892 ieee80211_amsdu_to_8023s +EXPORT_SYMBOL net/wireless/cfg80211 0x1879fcbd bridge_tunnel_header +EXPORT_SYMBOL net/wireless/cfg80211 0x19e03378 cfg80211_get_p2p_attr +EXPORT_SYMBOL net/wireless/cfg80211 0x1a9b0cc9 cfg80211_stop_iface +EXPORT_SYMBOL net/wireless/cfg80211 0x1bcaa792 cfg80211_ch_switch_started_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x208ec275 cfg80211_check_station_change +EXPORT_SYMBOL net/wireless/cfg80211 0x21fe4772 cfg80211_sched_scan_stopped_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x3048f15a cfg80211_unlink_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x3186f25e cfg80211_rx_spurious_frame +EXPORT_SYMBOL net/wireless/cfg80211 0x38d2a3a8 ieee80211_get_hdrlen_from_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x3c4ed0c8 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 0x43b77013 cfg80211_cac_event +EXPORT_SYMBOL net/wireless/cfg80211 0x45c232c4 cfg80211_ft_event +EXPORT_SYMBOL net/wireless/cfg80211 0x46c089ad cfg80211_inform_bss_data +EXPORT_SYMBOL net/wireless/cfg80211 0x4706a824 cfg80211_tdls_oper_request +EXPORT_SYMBOL net/wireless/cfg80211 0x4712acf3 cfg80211_cqm_beacon_loss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x495457ff cfg80211_calculate_bitrate +EXPORT_SYMBOL net/wireless/cfg80211 0x4a33acc7 cfg80211_get_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x4fead1d9 cfg80211_connect_result +EXPORT_SYMBOL net/wireless/cfg80211 0x50214c28 ieee80211_bss_get_ie +EXPORT_SYMBOL net/wireless/cfg80211 0x5252ff5a wiphy_rfkill_set_hw_state +EXPORT_SYMBOL net/wireless/cfg80211 0x542c3911 cfg80211_sched_scan_stopped +EXPORT_SYMBOL net/wireless/cfg80211 0x559f08a0 __cfg80211_send_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x59b44537 wiphy_unregister +EXPORT_SYMBOL net/wireless/cfg80211 0x5a8c8a5f cfg80211_rx_unprot_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x5a9b7b68 cfg80211_roamed_bss +EXPORT_SYMBOL net/wireless/cfg80211 0x5d3ec2d0 cfg80211_ibss_joined +EXPORT_SYMBOL net/wireless/cfg80211 0x601003e9 cfg80211_iter_combinations +EXPORT_SYMBOL net/wireless/cfg80211 0x601f5543 cfg80211_new_sta +EXPORT_SYMBOL net/wireless/cfg80211 0x65431f56 cfg80211_cqm_rssi_notify +EXPORT_SYMBOL net/wireless/cfg80211 0x6722a11f regulatory_set_wiphy_regd_sync_rtnl +EXPORT_SYMBOL net/wireless/cfg80211 0x69b18f43 rfc1042_header +EXPORT_SYMBOL net/wireless/cfg80211 0x6a25866b __ieee80211_get_channel +EXPORT_SYMBOL net/wireless/cfg80211 0x6b99629b cfg80211_auth_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0x6d6cb9ad ieee80211_operating_class_to_band +EXPORT_SYMBOL net/wireless/cfg80211 0x6e7c85d3 freq_reg_info +EXPORT_SYMBOL net/wireless/cfg80211 0x6fe61f00 __cfg80211_alloc_reply_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x712268c0 cfg80211_classify8021d +EXPORT_SYMBOL net/wireless/cfg80211 0x74a1c2cc 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 0x7ff521e2 cfg80211_tx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x80dcb333 cfg80211_report_wowlan_wakeup +EXPORT_SYMBOL net/wireless/cfg80211 0x8282165c cfg80211_rx_mlme_mgmt +EXPORT_SYMBOL net/wireless/cfg80211 0x8492a430 ieee80211_get_response_rate +EXPORT_SYMBOL net/wireless/cfg80211 0x85204110 cfg80211_unregister_wdev +EXPORT_SYMBOL net/wireless/cfg80211 0x8719d2fe wiphy_free +EXPORT_SYMBOL net/wireless/cfg80211 0x890e744a __cfg80211_alloc_event_skb +EXPORT_SYMBOL net/wireless/cfg80211 0x89334923 cfg80211_remain_on_channel_expired +EXPORT_SYMBOL net/wireless/cfg80211 0x8a7062a5 ieee80211_mandatory_rates +EXPORT_SYMBOL net/wireless/cfg80211 0x90b190c5 wiphy_rfkill_start_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x9193e5b5 cfg80211_chandef_usable +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 0x9b1fe9d7 wiphy_rfkill_stop_polling +EXPORT_SYMBOL net/wireless/cfg80211 0x9d8ea90c cfg80211_roamed +EXPORT_SYMBOL net/wireless/cfg80211 0x9f7bd261 cfg80211_check_combinations +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 0xa5a518ec cfg80211_conn_failed +EXPORT_SYMBOL net/wireless/cfg80211 0xa9f5146c cfg80211_mgmt_tx_status +EXPORT_SYMBOL net/wireless/cfg80211 0xaa9d5ee5 cfg80211_put_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xad17e880 cfg80211_scan_done +EXPORT_SYMBOL net/wireless/cfg80211 0xaddedbd8 cfg80211_disconnected +EXPORT_SYMBOL net/wireless/cfg80211 0xbaa18014 wiphy_register +EXPORT_SYMBOL net/wireless/cfg80211 0xc347fe73 regulatory_set_wiphy_regd +EXPORT_SYMBOL net/wireless/cfg80211 0xc63f1b81 ieee80211_radiotap_iterator_next +EXPORT_SYMBOL net/wireless/cfg80211 0xc6705ced cfg80211_reg_can_beacon +EXPORT_SYMBOL net/wireless/cfg80211 0xc84f52d7 cfg80211_michael_mic_failure +EXPORT_SYMBOL net/wireless/cfg80211 0xc90fde22 ieee80211_chandef_to_operating_class +EXPORT_SYMBOL net/wireless/cfg80211 0xc9754bd5 cfg80211_chandef_dfs_required +EXPORT_SYMBOL net/wireless/cfg80211 0xce675c9a cfg80211_assoc_timeout +EXPORT_SYMBOL net/wireless/cfg80211 0xce7d308c regulatory_hint +EXPORT_SYMBOL net/wireless/cfg80211 0xcfb4b4d1 cfg80211_ref_bss +EXPORT_SYMBOL net/wireless/cfg80211 0xd116e60c cfg80211_abandon_assoc +EXPORT_SYMBOL net/wireless/cfg80211 0xd372c732 cfg80211_sched_scan_results +EXPORT_SYMBOL net/wireless/cfg80211 0xd50b0a22 ieee80211_ie_split +EXPORT_SYMBOL net/wireless/cfg80211 0xd5a9cfc4 cfg80211_reg_can_beacon_relax +EXPORT_SYMBOL net/wireless/cfg80211 0xd5dfdc32 cfg80211_inform_bss_frame_data +EXPORT_SYMBOL net/wireless/cfg80211 0xd6b4feb6 cfg80211_cqm_pktloss_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xdba126c1 reg_initiator_name +EXPORT_SYMBOL net/wireless/cfg80211 0xdfc3db58 cfg80211_notify_new_peer_candidate +EXPORT_SYMBOL net/wireless/cfg80211 0xe11c1c3b cfg80211_gtk_rekey_notify +EXPORT_SYMBOL net/wireless/cfg80211 0xefc56354 cfg80211_chandef_create +EXPORT_SYMBOL net/wireless/cfg80211 0xf03f2546 cfg80211_probe_status +EXPORT_SYMBOL net/wireless/cfg80211 0xf8febd16 cfg80211_del_sta_sinfo +EXPORT_SYMBOL net/wireless/cfg80211 0xfaeff348 cfg80211_rx_unexpected_4addr_frame +EXPORT_SYMBOL net/wireless/cfg80211 0xfc6f9d9d cfg80211_ready_on_channel +EXPORT_SYMBOL net/wireless/cfg80211 0xfd280258 wiphy_apply_custom_regulatory +EXPORT_SYMBOL net/wireless/cfg80211 0xfed4d591 cfg80211_find_vendor_ie +EXPORT_SYMBOL net/wireless/cfg80211 0xff6133d6 cfg80211_pmksa_candidate_notify +EXPORT_SYMBOL net/wireless/lib80211 0x32a4f9db lib80211_register_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x34205a98 lib80211_crypt_delayed_deinit +EXPORT_SYMBOL net/wireless/lib80211 0x60d5ab01 lib80211_unregister_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0x90955fac lib80211_get_crypto_ops +EXPORT_SYMBOL net/wireless/lib80211 0xf0b1b09c lib80211_crypt_info_free +EXPORT_SYMBOL net/wireless/lib80211 0xfdd43512 lib80211_crypt_info_init +EXPORT_SYMBOL sound/ac97_bus 0x6dbad85e ac97_bus_type +EXPORT_SYMBOL sound/core/oss/snd-mixer-oss 0x38e1fcd1 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 0x48a7be89 snd_seq_event_port_attach +EXPORT_SYMBOL sound/core/seq/snd-seq 0x68cfb80a 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 0x9a507d57 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 0xe2e4e40c 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 0xbe6ee7bd 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 0x1e29d668 snd_virmidi_new +EXPORT_SYMBOL sound/core/snd 0x050fb20c snd_ctl_remove_id +EXPORT_SYMBOL sound/core/snd 0x0552301d snd_jack_add_new_kctl +EXPORT_SYMBOL sound/core/snd 0x0dc3a2c0 snd_info_create_module_entry +EXPORT_SYMBOL sound/core/snd 0x0df12ceb snd_device_new +EXPORT_SYMBOL sound/core/snd 0x14c92e83 snd_cards +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 0x20e76ed8 snd_ctl_unregister_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x229ac330 snd_ctl_boolean_mono_info +EXPORT_SYMBOL sound/core/snd 0x249876c6 snd_info_create_card_entry +EXPORT_SYMBOL sound/core/snd 0x24a94b26 snd_info_get_line +EXPORT_SYMBOL sound/core/snd 0x24eccd6e snd_register_oss_device +EXPORT_SYMBOL sound/core/snd 0x284d8dff snd_unregister_oss_device +EXPORT_SYMBOL sound/core/snd 0x2ae3deaa release_and_free_resource +EXPORT_SYMBOL sound/core/snd 0x31a9ff6b snd_ctl_replace +EXPORT_SYMBOL sound/core/snd 0x342a2354 copy_to_user_fromio +EXPORT_SYMBOL sound/core/snd 0x35748b34 snd_ctl_remove +EXPORT_SYMBOL sound/core/snd 0x3971b4df snd_ecards_limit +EXPORT_SYMBOL sound/core/snd 0x3c697352 snd_info_free_entry +EXPORT_SYMBOL sound/core/snd 0x43d0fbc9 snd_mixer_oss_notify_callback +EXPORT_SYMBOL sound/core/snd 0x48895bb7 snd_unregister_device +EXPORT_SYMBOL sound/core/snd 0x48b76030 snd_info_register +EXPORT_SYMBOL sound/core/snd 0x48c1164b snd_component_add +EXPORT_SYMBOL sound/core/snd 0x49f915d2 snd_ctl_boolean_stereo_info +EXPORT_SYMBOL sound/core/snd 0x4a3ea5c0 snd_request_card +EXPORT_SYMBOL sound/core/snd 0x4ab6bbf0 snd_ctl_register_ioctl +EXPORT_SYMBOL sound/core/snd 0x4f22154c snd_card_free +EXPORT_SYMBOL sound/core/snd 0x553bb6a6 snd_ctl_add +EXPORT_SYMBOL sound/core/snd 0x56f652e0 snd_ctl_rename_id +EXPORT_SYMBOL sound/core/snd 0x5ddd0f2b snd_jack_set_parent +EXPORT_SYMBOL sound/core/snd 0x606e3be5 snd_card_free_when_closed +EXPORT_SYMBOL sound/core/snd 0x65bcdd9a snd_device_free +EXPORT_SYMBOL sound/core/snd 0x70c15ac1 snd_dma_disable +EXPORT_SYMBOL sound/core/snd 0x75f7c0a3 snd_pci_quirk_lookup +EXPORT_SYMBOL sound/core/snd 0x81b69e41 snd_ctl_enum_info +EXPORT_SYMBOL sound/core/snd 0x8304ea16 snd_ctl_register_ioctl_compat +EXPORT_SYMBOL sound/core/snd 0x89a62632 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 0x98c3f34b snd_ctl_make_virtual_master +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 0xa9089e92 snd_card_new +EXPORT_SYMBOL sound/core/snd 0xafb7e7f8 _snd_ctl_add_slave +EXPORT_SYMBOL sound/core/snd 0xb15eed15 snd_jack_set_key +EXPORT_SYMBOL sound/core/snd 0xb2e5ae4a snd_lookup_minor_data +EXPORT_SYMBOL sound/core/snd 0xbd347af1 snd_ctl_notify +EXPORT_SYMBOL sound/core/snd 0xc0082bf5 snd_card_register +EXPORT_SYMBOL sound/core/snd 0xc2071199 snd_ctl_unregister_ioctl +EXPORT_SYMBOL sound/core/snd 0xc512b614 snd_jack_new +EXPORT_SYMBOL sound/core/snd 0xc7abcd08 snd_card_set_id +EXPORT_SYMBOL sound/core/snd 0xcc185412 snd_card_file_remove +EXPORT_SYMBOL sound/core/snd 0xcc72fb39 snd_jack_report +EXPORT_SYMBOL sound/core/snd 0xce06abf6 snd_seq_root +EXPORT_SYMBOL sound/core/snd 0xdef3e501 snd_card_disconnect +EXPORT_SYMBOL sound/core/snd 0xe1a8eea5 snd_device_register +EXPORT_SYMBOL sound/core/snd 0xec4c6555 snd_ctl_find_id +EXPORT_SYMBOL sound/core/snd 0xf3bb0e95 snd_ctl_find_numid +EXPORT_SYMBOL sound/core/snd 0xf709aabf snd_card_file_add +EXPORT_SYMBOL sound/core/snd 0xf7826877 snd_register_device +EXPORT_SYMBOL sound/core/snd 0xfbc7fe1a snd_ctl_new1 +EXPORT_SYMBOL sound/core/snd 0xfbcd98d6 snd_power_wait +EXPORT_SYMBOL sound/core/snd 0xfffd89db copy_from_user_toio +EXPORT_SYMBOL sound/core/snd-hwdep 0x49c20c67 snd_hwdep_new +EXPORT_SYMBOL sound/core/snd-pcm 0x019be23e snd_pcm_new +EXPORT_SYMBOL sound/core/snd-pcm 0x0283dfe3 _snd_pcm_hw_params_any +EXPORT_SYMBOL sound/core/snd-pcm 0x031a004f snd_pcm_lib_preallocate_pages_for_all +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 0x07189ebf snd_pcm_mmap_data +EXPORT_SYMBOL sound/core/snd-pcm 0x09e6731d snd_pcm_lib_mmap_iomem +EXPORT_SYMBOL sound/core/snd-pcm 0x0daadc8f snd_pcm_hw_constraint_minmax +EXPORT_SYMBOL sound/core/snd-pcm 0x0e165451 snd_pcm_hw_constraint_step +EXPORT_SYMBOL sound/core/snd-pcm 0x0f0a1392 snd_pcm_hw_constraint_integer +EXPORT_SYMBOL sound/core/snd-pcm 0x1024e904 snd_pcm_lib_read +EXPORT_SYMBOL sound/core/snd-pcm 0x12b06aaa snd_pcm_lib_preallocate_free_for_all +EXPORT_SYMBOL sound/core/snd-pcm 0x1776f488 snd_pcm_hw_param_first +EXPORT_SYMBOL sound/core/snd-pcm 0x1d027e4b snd_pcm_format_signed +EXPORT_SYMBOL sound/core/snd-pcm 0x23a10801 snd_pcm_lib_readv +EXPORT_SYMBOL sound/core/snd-pcm 0x28351847 snd_pcm_hw_rule_noresample +EXPORT_SYMBOL sound/core/snd-pcm 0x29bea345 snd_pcm_hw_constraint_msbits +EXPORT_SYMBOL sound/core/snd-pcm 0x2dcd209c snd_pcm_notify +EXPORT_SYMBOL sound/core/snd-pcm 0x2ed86e54 snd_pcm_hw_constraint_pow2 +EXPORT_SYMBOL sound/core/snd-pcm 0x2feb6ede snd_pcm_stop +EXPORT_SYMBOL sound/core/snd-pcm 0x322bacab snd_pcm_hw_constraint_ranges +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 0x3d0db2c3 snd_pcm_lib_preallocate_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x49099960 snd_pcm_lib_free_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 0x53890ff1 snd_pcm_open_substream +EXPORT_SYMBOL sound/core/snd-pcm 0x573a6a09 snd_dma_alloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x5898dcba snd_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x58e0e2d6 snd_pcm_suspend_all +EXPORT_SYMBOL sound/core/snd-pcm 0x5d1b1f63 snd_pcm_set_sync +EXPORT_SYMBOL sound/core/snd-pcm 0x5d7cba9b snd_pcm_hw_param_last +EXPORT_SYMBOL sound/core/snd-pcm 0x5e7f4920 snd_pcm_format_set_silence +EXPORT_SYMBOL sound/core/snd-pcm 0x5fadbe36 snd_pcm_hw_constraint_list +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 0x68af40f3 snd_dma_alloc_pages_fallback +EXPORT_SYMBOL sound/core/snd-pcm 0x6ad77bc5 snd_pcm_lib_write +EXPORT_SYMBOL sound/core/snd-pcm 0x6ef8fcd8 snd_pcm_format_linear +EXPORT_SYMBOL sound/core/snd-pcm 0x771dd3e4 snd_pcm_lib_free_pages +EXPORT_SYMBOL sound/core/snd-pcm 0x7e4d4007 snd_pcm_lib_writev +EXPORT_SYMBOL sound/core/snd-pcm 0x81e485b4 snd_pcm_hw_constraint_mask64 +EXPORT_SYMBOL sound/core/snd-pcm 0x82b7f8d7 snd_pcm_hw_rule_add +EXPORT_SYMBOL sound/core/snd-pcm 0x834dc955 snd_pcm_format_size +EXPORT_SYMBOL sound/core/snd-pcm 0x884e24b8 snd_pcm_new_stream +EXPORT_SYMBOL sound/core/snd-pcm 0x94098ff8 snd_interval_list +EXPORT_SYMBOL sound/core/snd-pcm 0x9c9eeb52 snd_pcm_release_substream +EXPORT_SYMBOL sound/core/snd-pcm 0xa61aa028 snd_pcm_format_unsigned +EXPORT_SYMBOL sound/core/snd-pcm 0xa831c9c3 snd_pcm_suspend +EXPORT_SYMBOL sound/core/snd-pcm 0xa9882942 snd_pcm_kernel_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xac437f7b snd_interval_ratnum +EXPORT_SYMBOL sound/core/snd-pcm 0xad552406 snd_pcm_hw_refine +EXPORT_SYMBOL sound/core/snd-pcm 0xb325c265 snd_pcm_lib_get_vmalloc_page +EXPORT_SYMBOL sound/core/snd-pcm 0xb9638db4 snd_pcm_rate_to_rate_bit +EXPORT_SYMBOL sound/core/snd-pcm 0xc3553488 snd_pcm_period_elapsed +EXPORT_SYMBOL sound/core/snd-pcm 0xd5188d01 snd_pcm_lib_ioctl +EXPORT_SYMBOL sound/core/snd-pcm 0xd8881e0b snd_pcm_hw_constraint_ratnums +EXPORT_SYMBOL sound/core/snd-pcm 0xdb420658 _snd_pcm_lib_alloc_vmalloc_buffer +EXPORT_SYMBOL sound/core/snd-pcm 0xe162ec7e snd_pcm_hw_constraint_ratdens +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 0xe838a00e snd_pcm_set_ops +EXPORT_SYMBOL sound/core/snd-pcm 0xea4fe385 snd_pcm_limit_hw_rates +EXPORT_SYMBOL sound/core/snd-pcm 0xf152437f snd_pcm_lib_malloc_pages +EXPORT_SYMBOL sound/core/snd-pcm 0xfc1e09a5 snd_pcm_new_internal +EXPORT_SYMBOL sound/core/snd-pcm 0xff6104d0 snd_pcm_rate_bit_to_rate +EXPORT_SYMBOL sound/core/snd-rawmidi 0x0cb1f873 snd_rawmidi_output_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x15f2a842 snd_rawmidi_kernel_open +EXPORT_SYMBOL sound/core/snd-rawmidi 0x17d0ca9a snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2972da04 snd_rawmidi_transmit +EXPORT_SYMBOL sound/core/snd-rawmidi 0x2f632d2f snd_rawmidi_drop_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0x46c04f97 snd_rawmidi_input_params +EXPORT_SYMBOL sound/core/snd-rawmidi 0x66b9506b snd_rawmidi_kernel_read +EXPORT_SYMBOL sound/core/snd-rawmidi 0x6ee913bc snd_rawmidi_kernel_write +EXPORT_SYMBOL sound/core/snd-rawmidi 0x722c8dcb snd_rawmidi_receive +EXPORT_SYMBOL sound/core/snd-rawmidi 0x7915655b snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0x88d6f53f __snd_rawmidi_transmit_peek +EXPORT_SYMBOL sound/core/snd-rawmidi 0x92949eb3 snd_rawmidi_info_select +EXPORT_SYMBOL sound/core/snd-rawmidi 0x9a65341f snd_rawmidi_set_ops +EXPORT_SYMBOL sound/core/snd-rawmidi 0xadd73548 snd_rawmidi_kernel_release +EXPORT_SYMBOL sound/core/snd-rawmidi 0xc206ba57 __snd_rawmidi_transmit_ack +EXPORT_SYMBOL sound/core/snd-rawmidi 0xdb168af9 snd_rawmidi_drain_output +EXPORT_SYMBOL sound/core/snd-rawmidi 0xde3a4282 snd_rawmidi_transmit_empty +EXPORT_SYMBOL sound/core/snd-rawmidi 0xe871185b snd_rawmidi_new +EXPORT_SYMBOL sound/core/snd-rawmidi 0xea2deb9e snd_rawmidi_drain_input +EXPORT_SYMBOL sound/core/snd-timer 0x019bbf2a snd_timer_pause +EXPORT_SYMBOL sound/core/snd-timer 0x07a6e0c2 snd_timer_resolution +EXPORT_SYMBOL sound/core/snd-timer 0x21afbf1a snd_timer_close +EXPORT_SYMBOL sound/core/snd-timer 0x2b5f01b0 snd_timer_open +EXPORT_SYMBOL sound/core/snd-timer 0x92ae08f1 snd_timer_global_new +EXPORT_SYMBOL sound/core/snd-timer 0xad9424c0 snd_timer_interrupt +EXPORT_SYMBOL sound/core/snd-timer 0xb58aecff snd_timer_global_register +EXPORT_SYMBOL sound/core/snd-timer 0xc54cbcca snd_timer_notify +EXPORT_SYMBOL sound/core/snd-timer 0xdf797ee7 snd_timer_new +EXPORT_SYMBOL sound/core/snd-timer 0xe196f40e snd_timer_start +EXPORT_SYMBOL sound/core/snd-timer 0xe32e9478 snd_timer_stop +EXPORT_SYMBOL sound/core/snd-timer 0xe99438f6 snd_timer_global_free +EXPORT_SYMBOL sound/core/snd-timer 0xeea03899 snd_timer_continue +EXPORT_SYMBOL sound/drivers/mpu401/snd-mpu401-uart 0x32da0bd1 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 0x11e8a873 snd_opl3_reset +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x3434cd35 snd_opl3_load_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x51c8a06b snd_opl3_interrupt +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x5eab7b8d snd_opl3_find_patch +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x726a8217 snd_opl3_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0x982f5938 snd_opl3_hwdep_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xac18ba1c snd_opl3_timer_new +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xb498a46b snd_opl3_create +EXPORT_SYMBOL sound/drivers/opl3/snd-opl3-lib 0xd4ec2021 snd_opl3_init +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x226138b0 snd_vx_threaded_irq_handler +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x2da86bb4 snd_vx_create +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x33af6bcb snd_vx_dsp_load +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x3c1887f6 snd_vx_load_boot_image +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x42f13760 snd_vx_suspend +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x574e0192 snd_vx_check_reg_bit +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x5d52057e snd_vx_dsp_boot +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x712c7fe1 snd_vx_setup_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x71f38215 snd_vx_resume +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0x93e6675a snd_vx_free_firmware +EXPORT_SYMBOL sound/drivers/vx/snd-vx-lib 0xf1f04d23 snd_vx_irq_handler +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0c584ab8 cmp_connection_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x0d86327a cmp_connection_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20254e45 amdtp_syt_intervals +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x20ddbd5f amdtp_stream_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x225483e2 iso_packets_buffer_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x418a51b8 amdtp_stream_start +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x46d862de snd_fw_async_midi_port_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c4b568f fcp_avc_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4c8e0770 avc_general_get_plug_info +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x4cf93828 amdtp_stream_stop +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x53ca18e8 amdtp_rate_table +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6b05d074 amdtp_stream_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x6d9704b5 fw_iso_resources_allocate +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x74bcc76c fw_iso_resources_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x8de8c666 fcp_bus_reset +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x985aad41 avc_general_get_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9c79d437 cmp_connection_establish +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0x9d9ceb97 amdtp_stream_pcm_prepare +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa073ca0e amdtp_stream_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1c985e3 amdtp_stream_pcm_abort +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa1ce915e amdtp_stream_get_max_payload +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa59269e0 iso_packets_buffer_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xa5d94f85 cmp_connection_check_used +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xb5577d2c cmp_connection_update +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xbc56f3cb snd_fw_transaction +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xc35d7f44 fw_iso_resources_free +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcdb82f80 amdtp_stream_add_pcm_hw_constraints +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xcf18c9c7 fw_iso_resources_init +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xd703668d snd_fw_async_midi_port_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xe2e4c2bd avc_general_set_sig_fmt +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xeebde452 cmp_connection_break +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf0a4f3ef fw_iso_resources_destroy +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xf61c71ad amdtp_stream_set_parameters +EXPORT_SYMBOL sound/firewire/snd-firewire-lib 0xfd747bf5 amdtp_stream_pcm_pointer +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x2f4cc4b3 snd_ak4113_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4113 0x4d2137b2 snd_ak4113_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x09118aa7 snd_ak4114_resume +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x50434278 snd_ak4114_check_rate_and_errors +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0x63adf959 snd_ak4114_build +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xa516139a snd_ak4114_suspend +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xb6879db1 snd_ak4114_reinit +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xd579902d snd_ak4114_create +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe5ba2c18 snd_ak4114_external_rate +EXPORT_SYMBOL sound/i2c/other/snd-ak4114 0xe650cd26 snd_ak4114_reg_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x506269e1 snd_akm4xxx_init +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0x54fc9c2f snd_akm4xxx_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xae506d9a snd_akm4xxx_write +EXPORT_SYMBOL sound/i2c/other/snd-ak4xxx-adda 0xafd69cec snd_akm4xxx_reset +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xaa62f9ab snd_pt2258_build_controls +EXPORT_SYMBOL sound/i2c/other/snd-pt2258 0xe992c658 snd_pt2258_reset +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x3c46b39e snd_cs8427_reg_write +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x6b7f5f0a snd_cs8427_create +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x7148fec2 snd_cs8427_iec958_pcm +EXPORT_SYMBOL sound/i2c/snd-cs8427 0x71eb021d snd_cs8427_iec958_active +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xb110d950 snd_cs8427_init +EXPORT_SYMBOL sound/i2c/snd-cs8427 0xf59c9a33 snd_cs8427_iec958_build +EXPORT_SYMBOL sound/i2c/snd-i2c 0x02c307a4 snd_i2c_probeaddr +EXPORT_SYMBOL sound/i2c/snd-i2c 0x2fa92014 snd_i2c_device_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xac1e7ca0 snd_i2c_bus_create +EXPORT_SYMBOL sound/i2c/snd-i2c 0xc6a1b98a snd_i2c_device_free +EXPORT_SYMBOL sound/i2c/snd-i2c 0xd7b73bd4 snd_i2c_sendbytes +EXPORT_SYMBOL sound/i2c/snd-i2c 0xfa4db7e1 snd_i2c_readbytes +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x2b1449e4 snd_sbdsp_create +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x3c623767 snd_sbdsp_reset +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x4627582b snd_sbmixer_new +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x62090ead snd_sbdsp_command +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x80fc6fbc snd_sbmixer_read +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0x9e475e2c snd_sbmixer_resume +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xbff8e3ff snd_sbmixer_suspend +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xd1f190e1 snd_sbmixer_add_ctl +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xf18a20c0 snd_sbmixer_write +EXPORT_SYMBOL sound/isa/sb/snd-sb-common 0xfd4ef9b7 snd_sbdsp_get_byte +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0aa00cb8 snd_ac97_write +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x0c70467a snd_ac97_tune_hardware +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x375839ad snd_ac97_update_power +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x56434891 snd_ac97_pcm_open +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x5893ce49 snd_ac97_resume +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x71a661ab snd_ac97_mixer +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x8a226681 snd_ac97_bus +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x940a24c2 snd_ac97_get_short_name +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x944fe565 snd_ac97_update +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0x96354dfe snd_ac97_set_rate +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc5848d6b snd_ac97_pcm_close +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xc6989a4c snd_ac97_update_bits +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcb435e6a snd_ac97_write_cache +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xcf3d01a4 snd_ac97_pcm_double_rate_rules +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xd5a09c5f snd_ac97_read +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xf8af7454 snd_ac97_pcm_assign +EXPORT_SYMBOL sound/pci/ac97/snd-ac97-codec 0xfbdf743a snd_ac97_suspend +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x083197c3 snd_emu10k1_voice_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x61d80239 snd_emu10k1_synth_copy_from_user +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7449507c snd_emu10k1_ptr_read +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x7567d1fd snd_emu10k1_synth_free +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0x85412140 snd_emu10k1_synth_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xabfaa775 snd_emu10k1_synth_bzero +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf4e60dcc snd_emu10k1_ptr_write +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf7257b2c snd_emu10k1_voice_alloc +EXPORT_SYMBOL sound/pci/emu10k1/snd-emu10k1 0xf8d741b0 snd_emu10k1_memblk_map +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x222b1be4 snd_ice1712_akm4xxx_free +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x29160a43 snd_ice1712_akm4xxx_build_controls +EXPORT_SYMBOL sound/pci/ice1712/snd-ice17xx-ak4xxx 0x2cba4e55 snd_ice1712_akm4xxx_init +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x03d3a838 oxygen_write32_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x15e96348 oxygen_write32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x22e847f2 oxygen_write_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x343f5590 oxygen_pci_shutdown +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x3fe6984e oxygen_write16_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x48a39bc1 oxygen_reset_uart +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x53daa996 oxygen_read32 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x5ac98baf oxygen_read_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x6e139815 oxygen_write_spi +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x71d6ad66 oxygen_write_ac97_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x7679baa6 oxygen_read16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x88c0fb02 oxygen_pci_remove +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9773c0e8 oxygen_read8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x99b6a0e1 oxygen_write_ac97 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0x9a5d3133 oxygen_update_dac_routing +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa2149675 oxygen_write8_masked +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xa4aa1ba7 oxygen_pci_probe +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xb0936e02 oxygen_pci_pm +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xd729e447 oxygen_write16 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xde61a8e9 oxygen_write8 +EXPORT_SYMBOL sound/pci/oxygen/snd-oxygen-lib 0xea7cb3ce oxygen_write_i2c +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x1952906f snd_trident_alloc_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x477b4096 snd_trident_write_voice_regs +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x56283610 snd_trident_stop_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0x803a9271 snd_trident_start_voice +EXPORT_SYMBOL sound/pci/trident/snd-trident 0xb0fcc61f snd_trident_free_voice +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x1dd70dfc tlv320aic23_regmap +EXPORT_SYMBOL sound/soc/codecs/snd-soc-tlv320aic23 0x36ead28b tlv320aic23_probe +EXPORT_SYMBOL sound/soc/snd-soc-core 0x9dfb2e97 snd_soc_alloc_ac97_codec +EXPORT_SYMBOL sound/soundcore 0x1f062c1d sound_class +EXPORT_SYMBOL sound/soundcore 0x2f964246 register_sound_special_device +EXPORT_SYMBOL sound/soundcore 0x7afc9d8a unregister_sound_mixer +EXPORT_SYMBOL sound/soundcore 0x849fb78a register_sound_special +EXPORT_SYMBOL sound/soundcore 0x99c95fa5 unregister_sound_special +EXPORT_SYMBOL sound/soundcore 0xacbbdb66 register_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xcca210ad register_sound_mixer +EXPORT_SYMBOL sound/soundcore 0xcd083b10 unregister_sound_dsp +EXPORT_SYMBOL sound/soundcore 0xf9d4229f register_sound_midi +EXPORT_SYMBOL sound/soundcore 0xfdab6de3 unregister_sound_midi +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x0803d693 snd_emux_new +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x2e99b0da 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 0x95cfca48 snd_emux_lock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0x9f28824d snd_emux_unlock_voice +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xc5f49898 snd_emux_free +EXPORT_SYMBOL sound/synth/emux/snd-emux-synth 0xcbaa08cd 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 0x63343b1d snd_usbmidi_input_stop +EXPORT_SYMBOL sound/usb/snd-usbmidi-lib 0xa0c72fba 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 0x00092e2a cdev_alloc +EXPORT_SYMBOL vmlinux 0x0012f802 i2c_verify_adapter +EXPORT_SYMBOL vmlinux 0x0013e12d security_path_mknod +EXPORT_SYMBOL vmlinux 0x00144deb inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0x001b9798 skb_clone +EXPORT_SYMBOL vmlinux 0x00311fca locks_copy_conflock +EXPORT_SYMBOL vmlinux 0x00360b32 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x0085e1f1 __do_once_done +EXPORT_SYMBOL vmlinux 0x0094273f reservation_object_add_excl_fence +EXPORT_SYMBOL vmlinux 0x00d7e722 vme_lm_count +EXPORT_SYMBOL vmlinux 0x00dca63a mmc_power_restore_host +EXPORT_SYMBOL vmlinux 0x00ded34b of_find_compatible_node +EXPORT_SYMBOL vmlinux 0x00fe656d sock_no_ioctl +EXPORT_SYMBOL vmlinux 0x00ff8d98 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x01009642 da903x_query_status +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x01088801 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x010dd2ef led_blink_set +EXPORT_SYMBOL vmlinux 0x012a97fc xor_altivec_4 +EXPORT_SYMBOL vmlinux 0x0135cf83 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0x0138cc5c jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x0165a14a netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01790e94 csum_partial_copy +EXPORT_SYMBOL vmlinux 0x018e870d set_cached_acl +EXPORT_SYMBOL vmlinux 0x018fe48a iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x01c76f42 pci_get_subsys +EXPORT_SYMBOL vmlinux 0x01cbb3f7 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x01cfedac rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x02124474 ip_send_check +EXPORT_SYMBOL vmlinux 0x02380478 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0x023a074a hvc_get_chars +EXPORT_SYMBOL vmlinux 0x024125af of_graph_get_port_by_id +EXPORT_SYMBOL vmlinux 0x02444a21 alloc_fddidev +EXPORT_SYMBOL vmlinux 0x02447a87 vme_bus_type +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 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02bbbb47 simple_getattr +EXPORT_SYMBOL vmlinux 0x02c906ed register_key_type +EXPORT_SYMBOL vmlinux 0x02dc8644 account_page_dirtied +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02fd5c12 mmc_put_card +EXPORT_SYMBOL vmlinux 0x02fe11ee nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x033243d6 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03409fd5 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x03455405 __dst_free +EXPORT_SYMBOL vmlinux 0x034a07e2 dev_addr_add +EXPORT_SYMBOL vmlinux 0x03580a33 sock_rfree +EXPORT_SYMBOL vmlinux 0x03589f38 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x036b5302 simple_link +EXPORT_SYMBOL vmlinux 0x036ddb77 clear_user_page +EXPORT_SYMBOL vmlinux 0x0376938a qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x039237ac request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x03a13c9f pcie_set_mps +EXPORT_SYMBOL vmlinux 0x03c3c6ef generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x03d4f3d1 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x03ed89ae seq_lseek +EXPORT_SYMBOL vmlinux 0x03f3d53d sock_no_accept +EXPORT_SYMBOL vmlinux 0x03f8262a nf_ip_checksum +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x04074f48 ioremap +EXPORT_SYMBOL vmlinux 0x0418e80c pci_restore_state +EXPORT_SYMBOL vmlinux 0x0422fe4a inet_csk_timer_bug_msg +EXPORT_SYMBOL vmlinux 0x0427e9a6 nd_namespace_blk_validate +EXPORT_SYMBOL vmlinux 0x04371853 phy_start_interrupts +EXPORT_SYMBOL vmlinux 0x043ab776 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x04764d1f __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0x0478b500 ppp_register_net_channel +EXPORT_SYMBOL vmlinux 0x047ce121 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x0487f831 fb_find_best_display +EXPORT_SYMBOL vmlinux 0x04a2db15 of_n_addr_cells +EXPORT_SYMBOL vmlinux 0x04a9122c __sk_dst_check +EXPORT_SYMBOL vmlinux 0x04cc1953 dquot_drop +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x04ea5d10 ksize +EXPORT_SYMBOL vmlinux 0x04f3e82a dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0x04fa30fc __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x04fd0ee5 __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x04fddf76 vfs_write +EXPORT_SYMBOL vmlinux 0x0504a5ed init_special_inode +EXPORT_SYMBOL vmlinux 0x05186ca4 flush_icache_range +EXPORT_SYMBOL vmlinux 0x051fe4d7 inode_needs_sync +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x0530dede _raw_write_trylock +EXPORT_SYMBOL vmlinux 0x05432a0b devm_get_gpiod_from_child +EXPORT_SYMBOL vmlinux 0x055a47aa inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x055c8559 __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0x0564e262 pagecache_write_begin +EXPORT_SYMBOL vmlinux 0x059c66af led_set_brightness +EXPORT_SYMBOL vmlinux 0x05a514a1 _insl_ns +EXPORT_SYMBOL vmlinux 0x05a5bb65 of_get_cpu_node +EXPORT_SYMBOL vmlinux 0x05be5601 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x05ccd70f nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x05ec16a9 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06209027 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x064046c2 debugfs_create_automount +EXPORT_SYMBOL vmlinux 0x06484d07 framebuffer_alloc +EXPORT_SYMBOL vmlinux 0x067ac8a6 gen_pool_set_algo +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x06abc822 sock_create +EXPORT_SYMBOL vmlinux 0x06b2d640 iterate_dir +EXPORT_SYMBOL vmlinux 0x06c65e79 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0x06ccdb9e pci_choose_state +EXPORT_SYMBOL vmlinux 0x06d4e426 devm_gpio_request_one +EXPORT_SYMBOL vmlinux 0x06ec5935 pipe_lock +EXPORT_SYMBOL vmlinux 0x06fe3b14 default_grn +EXPORT_SYMBOL vmlinux 0x071b87bf ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x0727c4f3 iowrite8 +EXPORT_SYMBOL vmlinux 0x072f901c vme_master_rmw +EXPORT_SYMBOL vmlinux 0x0740fbe7 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x074e9213 down_killable +EXPORT_SYMBOL vmlinux 0x077103b4 seq_puts +EXPORT_SYMBOL vmlinux 0x0774459e rc5t583_ext_power_req_config +EXPORT_SYMBOL vmlinux 0x077c95a4 netlink_broadcast +EXPORT_SYMBOL vmlinux 0x078dd1e6 vio_get_attribute +EXPORT_SYMBOL vmlinux 0x07a890c8 fb_alloc_cmap +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07ac99c3 serio_open +EXPORT_SYMBOL vmlinux 0x07ae888e of_translate_address +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x07d2464e filemap_fault +EXPORT_SYMBOL vmlinux 0x07da9832 devm_input_allocate_device +EXPORT_SYMBOL vmlinux 0x080dacca mmc_gpio_get_cd +EXPORT_SYMBOL vmlinux 0x08164d5f sock_i_ino +EXPORT_SYMBOL vmlinux 0x0820b646 swiotlb_sync_sg_for_cpu +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x083ba71e find_vma +EXPORT_SYMBOL vmlinux 0x083d9a23 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0x083eb21c rfkill_unregister +EXPORT_SYMBOL vmlinux 0x08463797 dcb_setapp +EXPORT_SYMBOL vmlinux 0x085e7482 phy_device_register +EXPORT_SYMBOL vmlinux 0x0865df01 mmc_remove_host +EXPORT_SYMBOL vmlinux 0x0868e224 ibmebus_unregister_driver +EXPORT_SYMBOL vmlinux 0x086d0704 neigh_seq_next +EXPORT_SYMBOL vmlinux 0x0894b108 blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x08bc8999 generic_read_dir +EXPORT_SYMBOL vmlinux 0x08d6ccd9 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x08ea69e7 mipi_dsi_packet_format_is_long +EXPORT_SYMBOL vmlinux 0x093c7bb2 param_set_bool +EXPORT_SYMBOL vmlinux 0x094955e7 fb_blank +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0981ecca blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x098b71c6 fb_dealloc_cmap +EXPORT_SYMBOL vmlinux 0x098fdcd3 bioset_integrity_create +EXPORT_SYMBOL vmlinux 0x099d38d6 __ps2_command +EXPORT_SYMBOL vmlinux 0x09b3901a xfrm_state_walk +EXPORT_SYMBOL vmlinux 0x09c40b2d dquot_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 0x09dae1cd inet_stream_connect +EXPORT_SYMBOL vmlinux 0x09dc0231 pci_bus_put +EXPORT_SYMBOL vmlinux 0x09ef1523 kern_path_create +EXPORT_SYMBOL vmlinux 0x0a04b09b __f_setown +EXPORT_SYMBOL vmlinux 0x0a085bd8 phy_write_mmd_indirect +EXPORT_SYMBOL vmlinux 0x0a0f0765 seq_escape +EXPORT_SYMBOL vmlinux 0x0a173aa8 napi_gro_frags +EXPORT_SYMBOL vmlinux 0x0a292872 reservation_seqcount_class +EXPORT_SYMBOL vmlinux 0x0a29f168 kmem_cache_free +EXPORT_SYMBOL vmlinux 0x0a460cab wait_iff_congested +EXPORT_SYMBOL vmlinux 0x0a4b53c8 of_graph_parse_endpoint +EXPORT_SYMBOL vmlinux 0x0a4c1dc6 generic_readlink +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a7f6360 srp_start_tl_fail_timers +EXPORT_SYMBOL vmlinux 0x0a85321d qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x0a864aa8 acl_by_type +EXPORT_SYMBOL vmlinux 0x0a90cb8f dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0acf7679 dma_issue_pending_all +EXPORT_SYMBOL vmlinux 0x0ad0b9c9 jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0x0b096e42 copy_page_to_iter +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b2b7994 __invalidate_device +EXPORT_SYMBOL vmlinux 0x0b2e1ec7 h_get_mpp +EXPORT_SYMBOL vmlinux 0x0b3040eb of_find_mipi_dsi_device_by_node +EXPORT_SYMBOL vmlinux 0x0b3e2093 scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7f0f9d bio_advance +EXPORT_SYMBOL vmlinux 0x0b8b6c1e input_event +EXPORT_SYMBOL vmlinux 0x0b933169 clear_inode +EXPORT_SYMBOL vmlinux 0x0bab33eb devm_gpiod_put_array +EXPORT_SYMBOL vmlinux 0x0bbb3c59 revalidate_disk +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bce3e60 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x0bd26890 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x0bd96052 tcp_close +EXPORT_SYMBOL vmlinux 0x0bdaa961 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x0be31fad flush_signals +EXPORT_SYMBOL vmlinux 0x0c00b91d in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x0c0ab802 compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x0c0c6df3 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x0c11482a dst_alloc +EXPORT_SYMBOL vmlinux 0x0c11ab4c of_dev_get +EXPORT_SYMBOL vmlinux 0x0c19a508 textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0x0c205806 agp_generic_remove_memory +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c2386e7 mipi_dsi_driver_unregister +EXPORT_SYMBOL vmlinux 0x0c287a1f blk_finish_request +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c6bdc3f vme_master_read +EXPORT_SYMBOL vmlinux 0x0c9538c1 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x0ca0c882 twl6030_interrupt_mask +EXPORT_SYMBOL vmlinux 0x0cad4eec __serio_register_port +EXPORT_SYMBOL vmlinux 0x0cad6e24 input_unregister_handler +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cd69177 sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0x0ce21ae6 phy_get_eee_err +EXPORT_SYMBOL vmlinux 0x0cf8063a locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0x0d095b5d kmem_cache_create +EXPORT_SYMBOL vmlinux 0x0d4e3ddb jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d570b10 i2c_smbus_xfer +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d6412f4 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0x0d6c963c copy_from_user +EXPORT_SYMBOL vmlinux 0x0d90398d dquot_resume +EXPORT_SYMBOL vmlinux 0x0d951878 elv_rb_add +EXPORT_SYMBOL vmlinux 0x0d95e89a xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0dbc7663 mipi_dsi_detach +EXPORT_SYMBOL vmlinux 0x0dc0ace0 idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0dcc4361 __tracepoint_kmalloc +EXPORT_SYMBOL vmlinux 0x0dddda6e try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x0df597b9 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x0e10861d abx500_set_register_interruptible +EXPORT_SYMBOL vmlinux 0x0e1094a0 tty_set_operations +EXPORT_SYMBOL vmlinux 0x0e369d3e __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x0e389803 loop_register_transfer +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e75f8e6 swiotlb_alloc_coherent +EXPORT_SYMBOL vmlinux 0x0e848b4b eth_mac_addr +EXPORT_SYMBOL vmlinux 0x0e8f30f6 _raw_write_lock_irq +EXPORT_SYMBOL vmlinux 0x0e9520ca ppp_register_channel +EXPORT_SYMBOL vmlinux 0x0ec36c2d genphy_aneg_done +EXPORT_SYMBOL vmlinux 0x0ec5babe vme_dma_free +EXPORT_SYMBOL vmlinux 0x0eee3bb2 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f000ccb devfreq_monitor_resume +EXPORT_SYMBOL vmlinux 0x0f057a54 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x0f1db727 __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x0f3922d8 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f503735 twl6030_mmc_card_detect +EXPORT_SYMBOL vmlinux 0x0f5faa7e wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x0f629eb6 ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f72b32f __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f8d5eb5 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb87c4c tty_port_put +EXPORT_SYMBOL vmlinux 0x0fc141f0 con_copy_unimap +EXPORT_SYMBOL vmlinux 0x0fcfe555 __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x0fd485f7 scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x0fd69714 tty_lock +EXPORT_SYMBOL vmlinux 0x0fee96cf udp_set_csum +EXPORT_SYMBOL vmlinux 0x0ff2b602 slhc_compress +EXPORT_SYMBOL vmlinux 0x0ff8cbb8 key_task_permission +EXPORT_SYMBOL vmlinux 0x100442e9 input_unregister_handle +EXPORT_SYMBOL vmlinux 0x102deab3 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0x10386bbd param_ops_int +EXPORT_SYMBOL vmlinux 0x1042e5a4 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0x104ddc02 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x106f93fb jbd2_journal_get_undo_access +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 0x10ee20bb default_blu +EXPORT_SYMBOL vmlinux 0x10fef14e check_disk_change +EXPORT_SYMBOL vmlinux 0x1101b670 __nlmsg_put +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1132947c misc_deregister +EXPORT_SYMBOL vmlinux 0x114873ce get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0x114f2932 phy_register_fixup_for_id +EXPORT_SYMBOL vmlinux 0x11514859 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x116c4711 agp_enable +EXPORT_SYMBOL vmlinux 0x116c559e inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x116fa5da max8998_update_reg +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11727bdd jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x11796622 genphy_update_link +EXPORT_SYMBOL vmlinux 0x1182d83a cpuidle_disable +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11d77ce6 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x11edd58a copy_to_iter +EXPORT_SYMBOL vmlinux 0x11f29767 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x11f5d180 blk_register_region +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 0x1219a027 of_find_property +EXPORT_SYMBOL vmlinux 0x122165cf pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0x122e22b0 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x1235b0fc end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x12624700 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0x1265a2fb dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0x1267f920 __breadahead +EXPORT_SYMBOL vmlinux 0x1286f723 put_cmsg +EXPORT_SYMBOL vmlinux 0x1291a73f dquot_file_open +EXPORT_SYMBOL vmlinux 0x12930be2 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b0d11e padata_remove_cpu +EXPORT_SYMBOL vmlinux 0x12d37262 mfd_add_devices +EXPORT_SYMBOL vmlinux 0x12d517d1 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x12d79769 d_alloc_name +EXPORT_SYMBOL vmlinux 0x12dfeb12 vprintk_emit +EXPORT_SYMBOL vmlinux 0x12e1818f pm8606_osc_enable +EXPORT_SYMBOL vmlinux 0x12e5ef0c rtas_set_power_level +EXPORT_SYMBOL vmlinux 0x13056444 of_find_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x131937f7 try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13243d4b wl1251_get_platform_data +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x137bb439 fixed_size_llseek +EXPORT_SYMBOL vmlinux 0x13832c38 tcp_poll +EXPORT_SYMBOL vmlinux 0x13878e1d scsi_print_result +EXPORT_SYMBOL vmlinux 0x138c4aeb __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x1393306f input_unregister_device +EXPORT_SYMBOL vmlinux 0x13c1624c sk_common_release +EXPORT_SYMBOL vmlinux 0x13d035be __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13e9ccb6 account_page_redirty +EXPORT_SYMBOL vmlinux 0x13ea5662 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x13f53da6 CMO_PageSize +EXPORT_SYMBOL vmlinux 0x14002e5a crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0x1418e39e tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x141e319b input_enable_softrepeat +EXPORT_SYMBOL vmlinux 0x14248edf elv_rb_former_request +EXPORT_SYMBOL vmlinux 0x142e75f3 simple_fill_super +EXPORT_SYMBOL vmlinux 0x1437cfae filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0x1442c644 unregister_key_type +EXPORT_SYMBOL vmlinux 0x145634b4 register_filesystem +EXPORT_SYMBOL vmlinux 0x146c623b nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x148181db vio_cmo_set_dev_desired +EXPORT_SYMBOL vmlinux 0x149ec84e sock_init_data +EXPORT_SYMBOL vmlinux 0x14a0f549 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x14a14817 pSeries_enable_reloc_on_exc +EXPORT_SYMBOL vmlinux 0x14c05b8c devfreq_recommended_opp +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14e1a461 xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x14e4ec06 mmc_alloc_host +EXPORT_SYMBOL vmlinux 0x14e7c15f xfrm_init_replay +EXPORT_SYMBOL vmlinux 0x14e86245 xfrm_state_add +EXPORT_SYMBOL vmlinux 0x14f2dc5a blk_end_request_all +EXPORT_SYMBOL vmlinux 0x14fd1081 devm_gpiod_get_array +EXPORT_SYMBOL vmlinux 0x15043232 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x15095298 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x15361969 of_find_node_by_phandle +EXPORT_SYMBOL vmlinux 0x153cd26b cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x153ee657 fget +EXPORT_SYMBOL vmlinux 0x15417bc7 __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1582a939 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0x15936203 pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x15a06ade __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x15b4583a blkdev_get +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c302e1 __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0x15ce4856 skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0x15d3fd60 prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x15ecb36f rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x15f08119 thermal_cdev_update +EXPORT_SYMBOL vmlinux 0x160bd45c rtas_token +EXPORT_SYMBOL vmlinux 0x163734f2 netif_napi_del +EXPORT_SYMBOL vmlinux 0x1664ef4d lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x16795e2d kobject_add +EXPORT_SYMBOL vmlinux 0x167c5967 print_hex_dump +EXPORT_SYMBOL vmlinux 0x16920a2f mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x16b56e05 blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0x16cffb3e dma_pool_create +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x16e7f81c param_get_ulong +EXPORT_SYMBOL vmlinux 0x16eea62d genl_unregister_family +EXPORT_SYMBOL vmlinux 0x16fdce32 pci_select_bars +EXPORT_SYMBOL vmlinux 0x17228cba ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x1743414f __debugger_fault_handler +EXPORT_SYMBOL vmlinux 0x174f9927 of_device_unregister +EXPORT_SYMBOL vmlinux 0x1757f924 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x17648396 dev_base_lock +EXPORT_SYMBOL vmlinux 0x1786d4cf pci_pme_capable +EXPORT_SYMBOL vmlinux 0x178c42ab mipi_dsi_host_register +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17ab76a4 proc_set_size +EXPORT_SYMBOL vmlinux 0x17afeed6 xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17befeb2 inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0x17e28473 fsl_upm_run_pattern +EXPORT_SYMBOL vmlinux 0x17eb76fa iunique +EXPORT_SYMBOL vmlinux 0x17ef79af nf_log_packet +EXPORT_SYMBOL vmlinux 0x17f341a0 i8042_lock_chip +EXPORT_SYMBOL vmlinux 0x17f6fa58 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0x1807a837 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0x180e9dab of_get_named_gpio_flags +EXPORT_SYMBOL vmlinux 0x181b0a4b add_disk +EXPORT_SYMBOL vmlinux 0x1820f761 devm_request_resource +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183617bd bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0x183e04c3 kernel_read +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x184b82fb mmc_vddrange_to_ocrmask +EXPORT_SYMBOL vmlinux 0x184fe1a5 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x1857aa39 proc_dointvec +EXPORT_SYMBOL vmlinux 0x1863ca7b mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x187fb5ca gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0x18829416 nvdimm_namespace_capacity +EXPORT_SYMBOL vmlinux 0x1889cf6a of_device_is_big_endian +EXPORT_SYMBOL vmlinux 0x188a3dfb timespec_trunc +EXPORT_SYMBOL vmlinux 0x1894b6a3 fsl_lbc_ctrl_dev +EXPORT_SYMBOL vmlinux 0x189868d7 get_random_bytes_arch +EXPORT_SYMBOL vmlinux 0x189d1d4a netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0x18b9a631 __check_sticky +EXPORT_SYMBOL vmlinux 0x18c120ee phy_ethtool_get_wol +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18e99a7e ptp_clock_index +EXPORT_SYMBOL vmlinux 0x18ee7e36 ata_std_end_eh +EXPORT_SYMBOL vmlinux 0x190e320e sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x19115cc9 ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0x19212309 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x193bc885 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0x19504ec8 dev_driver_string +EXPORT_SYMBOL vmlinux 0x195192ea nvm_put_blk +EXPORT_SYMBOL vmlinux 0x19684a3f blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x1982d830 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0x1996b3c3 of_node_get +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 0x19dd8952 vfs_writef +EXPORT_SYMBOL vmlinux 0x1a05571c inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x1a08c1ab sock_no_poll +EXPORT_SYMBOL vmlinux 0x1a0cce11 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x1a140bed cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0x1a2027ca mmc_set_blocklen +EXPORT_SYMBOL vmlinux 0x1a57070d jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0x1a7b5539 icmp_send +EXPORT_SYMBOL vmlinux 0x1a82bad8 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0x1a9a335e dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x1abcccf5 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x1ac5d3cb strcspn +EXPORT_SYMBOL vmlinux 0x1ac8fc0a tcf_action_exec +EXPORT_SYMBOL vmlinux 0x1aca99c4 led_update_brightness +EXPORT_SYMBOL vmlinux 0x1af62a99 panic_notifier_list +EXPORT_SYMBOL vmlinux 0x1af8239c phy_device_create +EXPORT_SYMBOL vmlinux 0x1afcf1c2 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b132009 rename_lock +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b2e8170 vga_client_register +EXPORT_SYMBOL vmlinux 0x1b3d894b d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0x1b44f536 inet_select_addr +EXPORT_SYMBOL vmlinux 0x1b45e6c9 dev_mc_del +EXPORT_SYMBOL vmlinux 0x1b4bff72 ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x1b593088 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0x1b625d33 enable_kernel_vsx +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b8a82ef seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x1b8b95ad i8042_unlock_chip +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bc4ff03 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0x1bee0b56 jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0x1bfec830 __iounmap_at +EXPORT_SYMBOL vmlinux 0x1c32c74e mipi_dsi_set_maximum_return_packet_size +EXPORT_SYMBOL vmlinux 0x1c3e02e4 memcmp +EXPORT_SYMBOL vmlinux 0x1c3e09e0 vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0x1c564a4e blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0x1c5cc421 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x1c856786 dcache_readdir +EXPORT_SYMBOL vmlinux 0x1c964304 vme_register_driver +EXPORT_SYMBOL vmlinux 0x1ca0935b padata_alloc +EXPORT_SYMBOL vmlinux 0x1cc837b3 lookup_one_len +EXPORT_SYMBOL vmlinux 0x1cce7f84 mmc_can_erase +EXPORT_SYMBOL vmlinux 0x1cd6162d sock_wfree +EXPORT_SYMBOL vmlinux 0x1ce3d6de dev_addr_flush +EXPORT_SYMBOL vmlinux 0x1d04a2f7 nd_iostat_end +EXPORT_SYMBOL vmlinux 0x1d1056e5 crc32_be +EXPORT_SYMBOL vmlinux 0x1d183468 bitmap_unplug +EXPORT_SYMBOL vmlinux 0x1d1ee147 vga_tryget +EXPORT_SYMBOL vmlinux 0x1d24106f blk_integrity_register +EXPORT_SYMBOL vmlinux 0x1d5cd68c make_kgid +EXPORT_SYMBOL vmlinux 0x1d8d0385 from_kgid_munged +EXPORT_SYMBOL vmlinux 0x1d996496 lock_sock_fast +EXPORT_SYMBOL vmlinux 0x1dad297d find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x1daee28a percpu_counter_destroy +EXPORT_SYMBOL vmlinux 0x1dbc4d0c proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x1dc09d34 seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0x1dc19c1a twl6040_get_vibralr_status +EXPORT_SYMBOL vmlinux 0x1dc36131 fb_destroy_modedb +EXPORT_SYMBOL vmlinux 0x1dcee88f find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x1dd571e6 fb_copy_cmap +EXPORT_SYMBOL vmlinux 0x1ddead9a ppp_output_wakeup +EXPORT_SYMBOL vmlinux 0x1ddf950a security_path_truncate +EXPORT_SYMBOL vmlinux 0x1de933cc buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x1e0dadb6 dns_query +EXPORT_SYMBOL vmlinux 0x1e147e43 __find_get_block +EXPORT_SYMBOL vmlinux 0x1e14edaf genphy_suspend +EXPORT_SYMBOL vmlinux 0x1e1df745 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e3e0709 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x1e3f4645 param_get_ushort +EXPORT_SYMBOL vmlinux 0x1e553302 generic_write_end +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e7b7e54 inet6_offloads +EXPORT_SYMBOL vmlinux 0x1e8dc8de devm_ioport_unmap +EXPORT_SYMBOL vmlinux 0x1e90e09d d_invalidate +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1eb5ae16 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0x1ebabbce pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x1ed80353 mmc_gpiod_request_ro +EXPORT_SYMBOL vmlinux 0x1efde761 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x1f0d8241 current_in_userns +EXPORT_SYMBOL vmlinux 0x1f16e94f __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x1f200604 path_nosuid +EXPORT_SYMBOL vmlinux 0x1f36d73f skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x1f42dd8e cdrom_release +EXPORT_SYMBOL vmlinux 0x1f66301d xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0x1f6af27e phy_attach +EXPORT_SYMBOL vmlinux 0x1f6ce67a sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x1f957246 vfs_statfs +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fce7be3 devm_gpio_free +EXPORT_SYMBOL vmlinux 0x1fd07fff kdb_grepping_flag +EXPORT_SYMBOL vmlinux 0x1fe286ce dev_err +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1fee5c5a ptp_clock_register +EXPORT_SYMBOL vmlinux 0x1feee4cf of_find_matching_node_and_match +EXPORT_SYMBOL vmlinux 0x1ff6f91c bio_copy_data +EXPORT_SYMBOL vmlinux 0x1ffb63cf dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x2014f4b3 mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x2029d557 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x2048473d ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x205cba43 param_set_ullong +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x2090a9fb md_update_sb +EXPORT_SYMBOL vmlinux 0x209d620e bio_copy_kern +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20aa7a86 nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0x20aca48b md_finish_reshape +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +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 0x20f77162 jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x20fe1b02 elv_rb_del +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x211fed20 __neigh_event_send +EXPORT_SYMBOL vmlinux 0x21265e00 nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x21420a4e xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x218b4660 of_get_child_by_name +EXPORT_SYMBOL vmlinux 0x219f5b89 phy_disconnect +EXPORT_SYMBOL vmlinux 0x21d24bc4 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x21dca005 dev_get_stats +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21e3c363 bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x21e94192 d_obtain_alias +EXPORT_SYMBOL vmlinux 0x21f19335 fence_remove_callback +EXPORT_SYMBOL vmlinux 0x22027e73 sg_miter_start +EXPORT_SYMBOL vmlinux 0x220d26ab gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x221db5d2 __get_page_tail +EXPORT_SYMBOL vmlinux 0x2224a931 sock_kzfree_s +EXPORT_SYMBOL vmlinux 0x222deb44 kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x222e7ce2 sysfs_streq +EXPORT_SYMBOL vmlinux 0x2255791b scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0x226413c0 blk_set_default_limits +EXPORT_SYMBOL vmlinux 0x2276db98 kstrtoint +EXPORT_SYMBOL vmlinux 0x227e83b4 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x2286f389 inet_add_protocol +EXPORT_SYMBOL vmlinux 0x22a1f256 xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0x22b325d5 kd_mksound +EXPORT_SYMBOL vmlinux 0x22d5dca2 tcp_parse_options +EXPORT_SYMBOL vmlinux 0x22f20cfe nf_reinject +EXPORT_SYMBOL vmlinux 0x22fc7085 blk_put_request +EXPORT_SYMBOL vmlinux 0x22ff16f0 md_write_start +EXPORT_SYMBOL vmlinux 0x230337e0 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0x23169f84 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x231d4001 fb_edid_add_monspecs +EXPORT_SYMBOL vmlinux 0x233917d1 mac_vmode_to_var +EXPORT_SYMBOL vmlinux 0x23448f32 handle_edge_irq +EXPORT_SYMBOL vmlinux 0x23566c35 udp_prot +EXPORT_SYMBOL vmlinux 0x235b3321 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0x235e90f3 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x2391c6f0 dev_change_flags +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23ad75a7 arp_tbl +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23bc7345 xfrm_register_km +EXPORT_SYMBOL vmlinux 0x23c8f257 slhc_uncompress +EXPORT_SYMBOL vmlinux 0x23c9891c kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0x23cf97db vm_event_states +EXPORT_SYMBOL vmlinux 0x23d3a89d inode_get_bytes +EXPORT_SYMBOL vmlinux 0x23de58f9 vme_lm_request +EXPORT_SYMBOL vmlinux 0x23e33043 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x23e3aa86 inode_add_bytes +EXPORT_SYMBOL vmlinux 0x23e46f01 del_gendisk +EXPORT_SYMBOL vmlinux 0x23f2243d mempool_free +EXPORT_SYMBOL vmlinux 0x23fa9c45 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x241b43a1 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x24428be5 strncpy_from_user +EXPORT_SYMBOL vmlinux 0x244457cd mmc_gpio_request_cd +EXPORT_SYMBOL vmlinux 0x24452bb0 fbcon_set_tileops +EXPORT_SYMBOL vmlinux 0x24525b71 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245b53c8 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x245d47e5 pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x2467d736 d_path +EXPORT_SYMBOL vmlinux 0x246d9b04 md_reload_sb +EXPORT_SYMBOL vmlinux 0x247288ba dma_common_mmap +EXPORT_SYMBOL vmlinux 0x24753f7f sock_no_bind +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2484adc3 __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0x24855cba __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2495cfc4 filp_close +EXPORT_SYMBOL vmlinux 0x249e5c6e dev_activate +EXPORT_SYMBOL vmlinux 0x24b2e0f8 dev_uc_init +EXPORT_SYMBOL vmlinux 0x24c7a505 __mutex_init +EXPORT_SYMBOL vmlinux 0x24d6b4a6 cur_cpu_spec +EXPORT_SYMBOL vmlinux 0x24d96d71 vfs_iter_read +EXPORT_SYMBOL vmlinux 0x24f00380 ida_init +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x2514abba inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0x25277497 rfkill_register +EXPORT_SYMBOL vmlinux 0x254e7c69 fbcon_set_bitops +EXPORT_SYMBOL vmlinux 0x255e84a2 request_key_async +EXPORT_SYMBOL vmlinux 0x2570a138 reservation_seqcount_string +EXPORT_SYMBOL vmlinux 0x2577600b copy_strings_kernel +EXPORT_SYMBOL vmlinux 0x25812804 km_query +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x259f4b2c tcp_ioctl +EXPORT_SYMBOL vmlinux 0x25b84981 security_path_chmod +EXPORT_SYMBOL vmlinux 0x25bd9079 kset_register +EXPORT_SYMBOL vmlinux 0x25c8c532 devfreq_remove_governor +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25f68db8 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0x26168b3f tcp_shutdown +EXPORT_SYMBOL vmlinux 0x2629da5a __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2644e0ed scsi_host_lookup +EXPORT_SYMBOL vmlinux 0x2645e27e tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x26477c07 __vmalloc +EXPORT_SYMBOL vmlinux 0x2649ea6a skb_append +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x265c7d24 clear_wb_congested +EXPORT_SYMBOL vmlinux 0x265e5ad5 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x2665d53a key_create_or_update +EXPORT_SYMBOL vmlinux 0x26735949 free_user_ns +EXPORT_SYMBOL vmlinux 0x267755ff d_genocide +EXPORT_SYMBOL vmlinux 0x26864cd0 pci_disable_link_state +EXPORT_SYMBOL vmlinux 0x26910298 simple_empty +EXPORT_SYMBOL vmlinux 0x26ac9975 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x26ae925c __serio_register_driver +EXPORT_SYMBOL vmlinux 0x26c9ce1e generic_file_open +EXPORT_SYMBOL vmlinux 0x26d900c9 dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +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 0x27400d2c down_read +EXPORT_SYMBOL vmlinux 0x27449ec8 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x27517b45 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x275d9bf5 xfrm_find_acq +EXPORT_SYMBOL vmlinux 0x27646df3 start_thread +EXPORT_SYMBOL vmlinux 0x276ef426 sched_autogroup_detach +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 0x279d1a02 pci_read_vpd +EXPORT_SYMBOL vmlinux 0x27a88b69 igrab +EXPORT_SYMBOL vmlinux 0x27aec7ea pci_assign_resource +EXPORT_SYMBOL vmlinux 0x27b40d87 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27bc0791 qdisc_reset +EXPORT_SYMBOL vmlinux 0x27bda1ff cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x27fe3266 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x2803474b do_splice_direct +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x281bb665 mntput +EXPORT_SYMBOL vmlinux 0x28219e08 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x2821bd04 __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x28318305 snprintf +EXPORT_SYMBOL vmlinux 0x2836448e iterate_fd +EXPORT_SYMBOL vmlinux 0x2837a4be dquot_acquire +EXPORT_SYMBOL vmlinux 0x2839fb4d input_release_device +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 0x28ad319e get_unmapped_area +EXPORT_SYMBOL vmlinux 0x28b1d9f8 write_cache_pages +EXPORT_SYMBOL vmlinux 0x28c8569e param_ops_ulong +EXPORT_SYMBOL vmlinux 0x28e4960b ptp_clock_event +EXPORT_SYMBOL vmlinux 0x28e6ce45 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x28eaade3 of_match_device +EXPORT_SYMBOL vmlinux 0x28eda8f7 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x291289ac __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0x29195f58 touchscreen_parse_properties +EXPORT_SYMBOL vmlinux 0x2925583a devfreq_add_device +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x295f3040 dquot_get_state +EXPORT_SYMBOL vmlinux 0x2977bb18 inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x297b2d4e tty_port_hangup +EXPORT_SYMBOL vmlinux 0x29832d7d kill_anon_super +EXPORT_SYMBOL vmlinux 0x29952654 blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0x2998065c tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0x29a0c9dd sk_alloc +EXPORT_SYMBOL vmlinux 0x29b1e6dc fb_validate_mode +EXPORT_SYMBOL vmlinux 0x29dea469 __ww_mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x29edd8c3 rtas_online_cpus_mask +EXPORT_SYMBOL vmlinux 0x29f5461c rfkill_alloc +EXPORT_SYMBOL vmlinux 0x2a0b9fe6 seq_vprintf +EXPORT_SYMBOL vmlinux 0x2a28d8bf netpoll_parse_options +EXPORT_SYMBOL vmlinux 0x2a303d4d check_signature +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a399ec5 notify_change +EXPORT_SYMBOL vmlinux 0x2a491437 single_open +EXPORT_SYMBOL vmlinux 0x2a65a37e pagecache_write_end +EXPORT_SYMBOL vmlinux 0x2a8ae70f sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x2a97681e tty_vhangup +EXPORT_SYMBOL vmlinux 0x2aac1b4e __skb_get_hash +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2acb4dc5 inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2ae1bed3 vfs_rename +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b13dec8 set_blocksize +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b3dd3c2 revert_creds +EXPORT_SYMBOL vmlinux 0x2b3fb4b5 max8925_reg_write +EXPORT_SYMBOL vmlinux 0x2b452fb6 tty_port_close_end +EXPORT_SYMBOL vmlinux 0x2b4991ec xmon +EXPORT_SYMBOL vmlinux 0x2b4c4b0a swiotlb_dma_supported +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 0x2baf16fb nf_register_hooks +EXPORT_SYMBOL vmlinux 0x2bb75ea5 tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2bc6a334 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x2bdabeba udp_disconnect +EXPORT_SYMBOL vmlinux 0x2be82eac unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x2c1f57b3 generic_setxattr +EXPORT_SYMBOL vmlinux 0x2c201ac5 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x2c255270 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x2c256e1f input_scancode_to_scalar +EXPORT_SYMBOL vmlinux 0x2c2c857e uart_match_port +EXPORT_SYMBOL vmlinux 0x2c3548e3 phy_device_free +EXPORT_SYMBOL vmlinux 0x2c58bcfc i8042_install_filter +EXPORT_SYMBOL vmlinux 0x2c5dda93 cfb_fillrect +EXPORT_SYMBOL vmlinux 0x2c7b1fca down_timeout +EXPORT_SYMBOL vmlinux 0x2c99ed71 set_nlink +EXPORT_SYMBOL vmlinux 0x2c9bdec9 registered_fb +EXPORT_SYMBOL vmlinux 0x2cac425e agp_generic_free_gatt_table +EXPORT_SYMBOL vmlinux 0x2cf73cb7 kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d16283a finish_open +EXPORT_SYMBOL vmlinux 0x2d21b34e of_find_node_by_type +EXPORT_SYMBOL vmlinux 0x2d27bfd0 skb_find_text +EXPORT_SYMBOL vmlinux 0x2d2a14cf sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d4fae5d give_up_console +EXPORT_SYMBOL vmlinux 0x2d562dcd unregister_netdev +EXPORT_SYMBOL vmlinux 0x2d73477f rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x2d851212 skb_tx_error +EXPORT_SYMBOL vmlinux 0x2dace62f inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x2db1e0c6 dql_init +EXPORT_SYMBOL vmlinux 0x2dc14875 agp_allocate_memory +EXPORT_SYMBOL vmlinux 0x2dd20f90 invalidate_partition +EXPORT_SYMBOL vmlinux 0x2dfdfceb filemap_map_pages +EXPORT_SYMBOL vmlinux 0x2dfeca47 get_cached_acl +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e12a93b ibmebus_request_irq +EXPORT_SYMBOL vmlinux 0x2e180e5e blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x2e2b40d2 strncat +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e702cac freeze_bdev +EXPORT_SYMBOL vmlinux 0x2e86b81e elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x2e88004f __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x2e8e47b8 inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x2e9603ba mmc_flush_cache +EXPORT_SYMBOL vmlinux 0x2ec37fa7 pm860x_reg_read +EXPORT_SYMBOL vmlinux 0x2eced851 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x2ed06552 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x2ef06736 trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef6566c blk_mq_start_request +EXPORT_SYMBOL vmlinux 0x2ef75d69 empty_aops +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0a2478 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x2f0a9889 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x2f1dc8fe generic_update_time +EXPORT_SYMBOL vmlinux 0x2f24e741 crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x2f287f0d copy_to_user +EXPORT_SYMBOL vmlinux 0x2f5396ba adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0x2f5f4954 ptp_find_pin +EXPORT_SYMBOL vmlinux 0x2f755c51 bio_endio +EXPORT_SYMBOL vmlinux 0x2f772ec3 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x2f786511 keyring_clear +EXPORT_SYMBOL vmlinux 0x2f849fc3 param_get_charp +EXPORT_SYMBOL vmlinux 0x2f99fc9f is_nvdimm_bus_locked +EXPORT_SYMBOL vmlinux 0x2f9cb69f mmc_can_sanitize +EXPORT_SYMBOL vmlinux 0x2fae96de rtas_data_buf_lock +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fb94d2b flush_icache_user_range +EXPORT_SYMBOL vmlinux 0x2fc52a20 mdiobus_free +EXPORT_SYMBOL vmlinux 0x2fd9d266 bdi_register_owner +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe32d3c sock_sendmsg +EXPORT_SYMBOL vmlinux 0x2ff43190 swiotlb_unmap_sg_attrs +EXPORT_SYMBOL vmlinux 0x2ff7f49d simple_transaction_set +EXPORT_SYMBOL vmlinux 0x3010f7ef pci_scan_bus +EXPORT_SYMBOL vmlinux 0x301b2c40 mdiobus_scan +EXPORT_SYMBOL vmlinux 0x30226ddf agp_device_command +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x308cbf66 srp_reconnect_rport +EXPORT_SYMBOL vmlinux 0x309450ab mmc_gpio_get_ro +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x309d2f37 pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30ae6aa8 sock_no_listen +EXPORT_SYMBOL vmlinux 0x30b8b35c cpu_to_chip_id +EXPORT_SYMBOL vmlinux 0x30f251e3 mount_subtree +EXPORT_SYMBOL vmlinux 0x30f3af07 misc_register +EXPORT_SYMBOL vmlinux 0x30ff2dc6 new_inode +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x310f02ec memremap +EXPORT_SYMBOL vmlinux 0x310f5c61 sk_stream_error +EXPORT_SYMBOL vmlinux 0x3117f1d9 i2c_register_driver +EXPORT_SYMBOL vmlinux 0x3129e0c2 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x313cfac7 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3147857d default_red +EXPORT_SYMBOL vmlinux 0x315fa6fa pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0x3169ef91 dma_direct_ops +EXPORT_SYMBOL vmlinux 0x316f1b71 ps2_handle_ack +EXPORT_SYMBOL vmlinux 0x316f9d46 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x317d2e9f xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x3193fe68 inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x3196e166 kobject_get +EXPORT_SYMBOL vmlinux 0x319f125d pci_bus_type +EXPORT_SYMBOL vmlinux 0x319f4dce paca +EXPORT_SYMBOL vmlinux 0x31b447d3 mdiobus_write_nested +EXPORT_SYMBOL vmlinux 0x31b5005b scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x31cd995b store_fp_state +EXPORT_SYMBOL vmlinux 0x3219d5a9 max8998_write_reg +EXPORT_SYMBOL vmlinux 0x3222f472 netdev_printk +EXPORT_SYMBOL vmlinux 0x322a70d1 mmc_can_secure_erase_trim +EXPORT_SYMBOL vmlinux 0x3236c4a0 get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x323d53be cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x323e30f9 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x324e2bfc scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x3291fd38 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x329e670b of_node_put +EXPORT_SYMBOL vmlinux 0x32a125cb mach_powernv +EXPORT_SYMBOL vmlinux 0x32ab4a5a request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x32bf2d9d __dev_get_by_name +EXPORT_SYMBOL vmlinux 0x32cb2336 pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x32ddc69b nd_sb_checksum +EXPORT_SYMBOL vmlinux 0x33043dfe inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x3309a7d1 bd_set_size +EXPORT_SYMBOL vmlinux 0x33227220 d_rehash +EXPORT_SYMBOL vmlinux 0x33240f63 serio_unregister_driver +EXPORT_SYMBOL vmlinux 0x333cb37c __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x334588c6 pci_set_master +EXPORT_SYMBOL vmlinux 0x33493a0f inet6_bind +EXPORT_SYMBOL vmlinux 0x3354dde7 nd_region_to_nstype +EXPORT_SYMBOL vmlinux 0x3367fd7c agp_generic_destroy_pages +EXPORT_SYMBOL vmlinux 0x3397e88a reservation_object_reserve_shared +EXPORT_SYMBOL vmlinux 0x33a1a0d0 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x33a64e22 __frontswap_store +EXPORT_SYMBOL vmlinux 0x33b84f74 copy_page +EXPORT_SYMBOL vmlinux 0x33bbdaa7 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33ce0d00 set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x33dc3e9d mfd_remove_devices +EXPORT_SYMBOL vmlinux 0x33e3b315 nf_register_sockopt +EXPORT_SYMBOL vmlinux 0x33f0768c cpufreq_quick_get_max +EXPORT_SYMBOL vmlinux 0x33fa0ffb rt6_lookup +EXPORT_SYMBOL vmlinux 0x33fcf44a __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x33fe55e9 tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x34188583 pcim_pin_device +EXPORT_SYMBOL vmlinux 0x3435f725 file_open_root +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x34728b04 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x34996c59 devfreq_monitor_start +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x349cf44d blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x349d20ef dma_set_mask +EXPORT_SYMBOL vmlinux 0x34a2202a swiotlb_sync_single_for_cpu +EXPORT_SYMBOL vmlinux 0x34d25c57 vme_master_mmap +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x351e9b64 eth_gro_receive +EXPORT_SYMBOL vmlinux 0x3539f11b match_strlcpy +EXPORT_SYMBOL vmlinux 0x353fdf1c bioset_integrity_free +EXPORT_SYMBOL vmlinux 0x355ccfe5 make_bad_inode +EXPORT_SYMBOL vmlinux 0x356461c8 rtc_time64_to_tm +EXPORT_SYMBOL vmlinux 0x35713751 free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x35791e61 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x357e997a i2c_get_adapter +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35b6129c vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x35b98042 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0x35bd7e39 input_set_keycode +EXPORT_SYMBOL vmlinux 0x35c32767 xor_altivec_2 +EXPORT_SYMBOL vmlinux 0x35c9332e blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x35e09980 flex_array_put +EXPORT_SYMBOL vmlinux 0x360082da inode_change_ok +EXPORT_SYMBOL vmlinux 0x3603b7b7 seq_release_private +EXPORT_SYMBOL vmlinux 0x3618cb2d ida_destroy +EXPORT_SYMBOL vmlinux 0x362eaf46 page_symlink +EXPORT_SYMBOL vmlinux 0x365a21dc pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0x3668fd48 flex_array_free_parts +EXPORT_SYMBOL vmlinux 0x366f6d27 idr_destroy +EXPORT_SYMBOL vmlinux 0x369e1115 kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x36a4783a ppp_dev_name +EXPORT_SYMBOL vmlinux 0x36b0e732 try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36db9226 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x36f40ea0 ata_dev_printk +EXPORT_SYMBOL vmlinux 0x370d9f40 scsi_cmd_blk_ioctl +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 0x373fac7b dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x3783c1ad eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x37998d0d tty_unregister_driver +EXPORT_SYMBOL vmlinux 0x379dab0d locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x37a55be5 tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x37abec00 __register_binfmt +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 0x37d13c9a pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x37de46c8 single_open_size +EXPORT_SYMBOL vmlinux 0x37e8093a send_sig +EXPORT_SYMBOL vmlinux 0x37f4bace gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x380d88cb scsi_add_device +EXPORT_SYMBOL vmlinux 0x38134ec2 inet_del_offload +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x3825d180 mmc_erase +EXPORT_SYMBOL vmlinux 0x384822d0 seq_release +EXPORT_SYMBOL vmlinux 0x385d47bd dquot_operations +EXPORT_SYMBOL vmlinux 0x387be1fc __quota_error +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38b4f68c twl6040_power +EXPORT_SYMBOL vmlinux 0x38b825d1 idr_replace +EXPORT_SYMBOL vmlinux 0x38fa5e18 get_user_pages +EXPORT_SYMBOL vmlinux 0x38fb9933 tty_std_termios +EXPORT_SYMBOL vmlinux 0x3906dc09 pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x39111266 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0x3921b652 pmem_should_map_pages +EXPORT_SYMBOL vmlinux 0x3939f8f0 rfkill_pause_polling +EXPORT_SYMBOL vmlinux 0x393d4de9 crc32_le +EXPORT_SYMBOL vmlinux 0x393d5410 dquot_disable +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x39476616 param_set_byte +EXPORT_SYMBOL vmlinux 0x3954e944 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x3955fcf6 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0x39638882 write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x39720ed2 simple_setattr +EXPORT_SYMBOL vmlinux 0x3994745d ppc_md +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 0x39b7c811 sock_release +EXPORT_SYMBOL vmlinux 0x39bf5b87 devm_release_resource +EXPORT_SYMBOL vmlinux 0x39c638d2 bioset_free +EXPORT_SYMBOL vmlinux 0x39c71a02 ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x39cdf63c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x39e52771 mmc_can_discard +EXPORT_SYMBOL vmlinux 0x3a0cdb7f input_open_device +EXPORT_SYMBOL vmlinux 0x3a0cde67 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x3a20f256 dev_load +EXPORT_SYMBOL vmlinux 0x3a26a1c1 set_security_override +EXPORT_SYMBOL vmlinux 0x3a3c4fc0 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x3a519105 i2c_verify_client +EXPORT_SYMBOL vmlinux 0x3a595a2d tty_do_resize +EXPORT_SYMBOL vmlinux 0x3a97f2b5 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3aab38da redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0x3aeed01b __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x3b36fa72 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x3b3987c6 dquot_enable +EXPORT_SYMBOL vmlinux 0x3b3f6217 genphy_config_init +EXPORT_SYMBOL vmlinux 0x3b5c628e simple_unlink +EXPORT_SYMBOL vmlinux 0x3b615a21 wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b6ec2ca sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b95a9a3 mdiobus_read +EXPORT_SYMBOL vmlinux 0x3b988215 submit_bio +EXPORT_SYMBOL vmlinux 0x3b9e05f1 param_set_copystring +EXPORT_SYMBOL vmlinux 0x3bb773ff kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x3bd18e3f padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0x3bd6232d __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0x3bd98632 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x3c2fc2c1 generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0x3c3f3ba4 init_buffer +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c4bab46 xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0x3c511bcc inet6_protos +EXPORT_SYMBOL vmlinux 0x3c537c7e serial8250_set_isa_configurator +EXPORT_SYMBOL vmlinux 0x3c5607f9 n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0x3c5c2515 blk_queue_split +EXPORT_SYMBOL vmlinux 0x3c5dd7fd unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x3c7073c5 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0x3c776807 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c8340c7 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0x3cba104c deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x3cc4b0dc lg_lock_init +EXPORT_SYMBOL vmlinux 0x3cc4d06b register_netdevice +EXPORT_SYMBOL vmlinux 0x3cd76063 __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x3cdb719e mmc_erase_group_aligned +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3ced16eb kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x3cf2c343 user_revoke +EXPORT_SYMBOL vmlinux 0x3d1e0810 tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x3d2d25ed get_super +EXPORT_SYMBOL vmlinux 0x3d69a3a7 inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x3d7261da vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0x3d810d89 of_mdiobus_register +EXPORT_SYMBOL vmlinux 0x3d82b39b tcp_make_synack +EXPORT_SYMBOL vmlinux 0x3d84f312 kobject_put +EXPORT_SYMBOL vmlinux 0x3d859561 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x3d9531d9 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x3d9bd5a5 would_dump +EXPORT_SYMBOL vmlinux 0x3db79e77 bdi_destroy +EXPORT_SYMBOL vmlinux 0x3dbf36c9 sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dcfb37e inet_getname +EXPORT_SYMBOL vmlinux 0x3ddc7e84 d_add_ci +EXPORT_SYMBOL vmlinux 0x3de5040c param_ops_invbool +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e01b729 i2c_del_adapter +EXPORT_SYMBOL vmlinux 0x3e4c9a37 set_posix_acl +EXPORT_SYMBOL vmlinux 0x3e527325 _dev_info +EXPORT_SYMBOL vmlinux 0x3e5984ac sockfd_lookup +EXPORT_SYMBOL vmlinux 0x3e5c16d9 dquot_scan_active +EXPORT_SYMBOL vmlinux 0x3e6290c3 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x3e882943 pcibios_align_resource +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e95083c vme_slave_get +EXPORT_SYMBOL vmlinux 0x3ed97d9c pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x3edeb3e0 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0x3ee5b07f kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x3efb716f sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0x3efd3194 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0x3efeb2f9 get_io_context +EXPORT_SYMBOL vmlinux 0x3f0546a8 ioread32_rep +EXPORT_SYMBOL vmlinux 0x3f406a3b enable_kernel_altivec +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f4b9c14 ilookup +EXPORT_SYMBOL vmlinux 0x3f59938a set_wb_congested +EXPORT_SYMBOL vmlinux 0x3f9d3271 sock_no_getname +EXPORT_SYMBOL vmlinux 0x3fc94eb7 fb_pan_display +EXPORT_SYMBOL vmlinux 0x3fcd1038 agp_generic_create_gatt_table +EXPORT_SYMBOL vmlinux 0x3fda47bd jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0x3fe2ccbe memweight +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x3fef37b0 d_tmpfile +EXPORT_SYMBOL vmlinux 0x3ff8e495 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0x40051361 security_file_permission +EXPORT_SYMBOL vmlinux 0x401c13e5 __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x4033e7d9 xfrm_state_update +EXPORT_SYMBOL vmlinux 0x4042eca5 audit_log_start +EXPORT_SYMBOL vmlinux 0x404d8f15 kill_bdev +EXPORT_SYMBOL vmlinux 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x40642549 mmc_set_blockcount +EXPORT_SYMBOL vmlinux 0x406edc67 dm_put_device +EXPORT_SYMBOL vmlinux 0x407156c3 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x408a71d7 devm_devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x4090f8cb blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409e90ea tso_build_data +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40a9f898 iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x40ac3cb4 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x40c01859 gen_pool_best_fit +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 0x40f07d43 vfs_link +EXPORT_SYMBOL vmlinux 0x411c84ee __ip_dev_find +EXPORT_SYMBOL vmlinux 0x41292328 abort_creds +EXPORT_SYMBOL vmlinux 0x413250ad free_buffer_head +EXPORT_SYMBOL vmlinux 0x413e6b66 commit_creds +EXPORT_SYMBOL vmlinux 0x41457d40 generic_setlease +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x4159c38f ioremap_wc +EXPORT_SYMBOL vmlinux 0x4161e7f0 netlink_capable +EXPORT_SYMBOL vmlinux 0x41664640 neigh_event_ns +EXPORT_SYMBOL vmlinux 0x41689f6b netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x418d4663 __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x4196be6d dev_get_by_index +EXPORT_SYMBOL vmlinux 0x419743d6 skb_trim +EXPORT_SYMBOL vmlinux 0x419e7909 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x41a3fbf1 __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x41b217d7 max8925_bulk_read +EXPORT_SYMBOL vmlinux 0x41b53b4c jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41bbc3b4 xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x41d74540 phy_start_aneg +EXPORT_SYMBOL vmlinux 0x41e11e94 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x41e61fdb follow_down_one +EXPORT_SYMBOL vmlinux 0x41efd82c input_flush_device +EXPORT_SYMBOL vmlinux 0x42101f1d dentry_open +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x421d5e74 ps2_end_command +EXPORT_SYMBOL vmlinux 0x422e5307 pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x42595e58 vgacon_text_force +EXPORT_SYMBOL vmlinux 0x4262636d xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x42648eb7 key_type_keyring +EXPORT_SYMBOL vmlinux 0x42a1b208 gen_pool_first_fit +EXPORT_SYMBOL vmlinux 0x42a21d0a rtnl_notify +EXPORT_SYMBOL vmlinux 0x42a63886 devm_backlight_device_register +EXPORT_SYMBOL vmlinux 0x42dd31f1 twl6040_reg_read +EXPORT_SYMBOL vmlinux 0x42ed9d7d tcp_conn_request +EXPORT_SYMBOL vmlinux 0x430191c7 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x430ba48f vfs_fsync +EXPORT_SYMBOL vmlinux 0x43242fde nvdimm_bus_lock +EXPORT_SYMBOL vmlinux 0x432a8b53 qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x433c6d09 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x4349c7ea dquot_destroy +EXPORT_SYMBOL vmlinux 0x435056f2 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0x4351577a fb_parse_edid +EXPORT_SYMBOL vmlinux 0x4362e452 brioctl_set +EXPORT_SYMBOL vmlinux 0x436c2179 iowrite32 +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43a01f90 complete_all +EXPORT_SYMBOL vmlinux 0x43a6ce6d console_start +EXPORT_SYMBOL vmlinux 0x43a78649 gen_pool_add_virt +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x43fb72ea tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x441e99e6 input_mt_drop_unused +EXPORT_SYMBOL vmlinux 0x44355f1e eth_type_trans +EXPORT_SYMBOL vmlinux 0x44370f94 of_get_parent +EXPORT_SYMBOL vmlinux 0x44448e4f tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x445cc258 bh_submit_read +EXPORT_SYMBOL vmlinux 0x448a4b88 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x448eac3e kmemdup +EXPORT_SYMBOL vmlinux 0x4490283f from_kuid +EXPORT_SYMBOL vmlinux 0x4490fbf3 __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0x44af4af5 simple_write_begin +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44d24b63 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x44da5c0c __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0x44db82c7 of_find_all_nodes +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x44eb192e wait_for_completion +EXPORT_SYMBOL vmlinux 0x44f5d7c7 blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x451b2180 dma_iommu_ops +EXPORT_SYMBOL vmlinux 0x4535225c unregister_framebuffer +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x453df7f0 skb_vlan_push +EXPORT_SYMBOL vmlinux 0x45420270 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0x45463c57 pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x455ad34a blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0x45713de2 mfd_cell_enable +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45816d7b vfs_writev +EXPORT_SYMBOL vmlinux 0x4586ee34 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x4594d6fe qdisc_list_del +EXPORT_SYMBOL vmlinux 0x45953e50 netdev_features_change +EXPORT_SYMBOL vmlinux 0x459a0287 jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x45a55ec8 __iounmap +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45b1fa7c mipi_dsi_dcs_get_pixel_format +EXPORT_SYMBOL vmlinux 0x45b266b3 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0x45f2d37b dev_addr_del +EXPORT_SYMBOL vmlinux 0x45fd57a2 __alloc_skb +EXPORT_SYMBOL vmlinux 0x4612c59d down_trylock +EXPORT_SYMBOL vmlinux 0x461ac773 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x461ebfa0 __copy_tofrom_user +EXPORT_SYMBOL vmlinux 0x463c082c napi_get_frags +EXPORT_SYMBOL vmlinux 0x4649e214 inode_init_once +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x46627ef3 node_data +EXPORT_SYMBOL vmlinux 0x46649cd1 vme_lm_set +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46712e7f of_n_size_cells +EXPORT_SYMBOL vmlinux 0x46768dd3 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x467cf76c mdio_bus_type +EXPORT_SYMBOL vmlinux 0x467df16d netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0x46a0170e flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0x46a411bc mmc_wait_for_req +EXPORT_SYMBOL vmlinux 0x46a998cf sync_blockdev +EXPORT_SYMBOL vmlinux 0x46b9205b pci_enable_msix +EXPORT_SYMBOL vmlinux 0x46c47fb6 __node_distance +EXPORT_SYMBOL vmlinux 0x46ca71b5 ps2_init +EXPORT_SYMBOL vmlinux 0x46ce4caa unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x46d12956 wait_for_completion_interruptible_timeout +EXPORT_SYMBOL vmlinux 0x46d4adcc devm_devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0x46e6c46a pnv_cxl_alloc_hwirq_ranges +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x4702cff8 scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x47082596 blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0x4717ced0 ps2_drain +EXPORT_SYMBOL vmlinux 0x47186c72 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x4719112f blk_rq_init +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x47608718 fence_init +EXPORT_SYMBOL vmlinux 0x4760db33 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x476c9fbe kthread_bind +EXPORT_SYMBOL vmlinux 0x4777c64d rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47ad6e7a pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x47bbab19 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x47c6ece7 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x47d069a7 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0x47d4b01d swiotlb_sync_single_for_device +EXPORT_SYMBOL vmlinux 0x47e2229a ppp_unregister_compressor +EXPORT_SYMBOL vmlinux 0x47fc132a sk_capable +EXPORT_SYMBOL vmlinux 0x48054473 nd_btt_probe +EXPORT_SYMBOL vmlinux 0x4816f430 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x481c9a85 srp_rport_put +EXPORT_SYMBOL vmlinux 0x4821fca0 abx500_startup_irq_enabled +EXPORT_SYMBOL vmlinux 0x4829a47e memcpy +EXPORT_SYMBOL vmlinux 0x48404b9a remove_wait_queue +EXPORT_SYMBOL vmlinux 0x4841bdee strnchr +EXPORT_SYMBOL vmlinux 0x484dcef6 ppp_input +EXPORT_SYMBOL vmlinux 0x4859b8bb rtc_year_days +EXPORT_SYMBOL vmlinux 0x4861675e skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x4866eb6b of_cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0x486b32f5 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x4871fb9f buffer_migrate_page +EXPORT_SYMBOL vmlinux 0x4874764a pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0x487fe3ad __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x48858cc5 blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0x48894fd9 neigh_direct_output +EXPORT_SYMBOL vmlinux 0x48b99a13 vme_lm_free +EXPORT_SYMBOL vmlinux 0x48baed1c pcim_enable_device +EXPORT_SYMBOL vmlinux 0x48bbea7d mmc_register_driver +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x491828ea sk_wait_data +EXPORT_SYMBOL vmlinux 0x493ebcfb devfreq_remove_device +EXPORT_SYMBOL vmlinux 0x4952af1c block_write_full_page +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x4960902b qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0x496a83dd agp3_generic_tlbflush +EXPORT_SYMBOL vmlinux 0x496cb1cd dev_printk_emit +EXPORT_SYMBOL vmlinux 0x499a7541 open_exec +EXPORT_SYMBOL vmlinux 0x499bfc6d __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x49a8c529 agp_alloc_bridge +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49b7fd67 md_flush_request +EXPORT_SYMBOL vmlinux 0x49e1b719 nd_integrity_init +EXPORT_SYMBOL vmlinux 0x49ec03b3 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a009b85 dev_uc_add +EXPORT_SYMBOL vmlinux 0x4a1e0ebf pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x4a34c662 lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x4a4f5298 of_get_i2c_adapter_by_node +EXPORT_SYMBOL vmlinux 0x4a53fcd6 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0x4a5e5d52 pm860x_bulk_read +EXPORT_SYMBOL vmlinux 0x4a827318 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0x4a8961f5 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x4a981223 dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0x4a9e1458 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x4aa4a126 down_write +EXPORT_SYMBOL vmlinux 0x4aaeb9f8 pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x4ab7b63c __vio_register_driver +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4acce77f tty_register_device +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad2a57a opal_event_request +EXPORT_SYMBOL vmlinux 0x4ae1a9e0 stop_tty +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b085dbf agp3_generic_configure +EXPORT_SYMBOL vmlinux 0x4b0c88d2 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0x4b2667e4 param_set_uint +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b62e98c inet_listen +EXPORT_SYMBOL vmlinux 0x4b79e482 ab3100_event_unregister +EXPORT_SYMBOL vmlinux 0x4b8326ff ida_remove +EXPORT_SYMBOL vmlinux 0x4baf35a7 vme_master_get +EXPORT_SYMBOL vmlinux 0x4bbc5bfd truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0x4bd531ea mmc_gpiod_request_cd +EXPORT_SYMBOL vmlinux 0x4bed99b3 __percpu_counter_add +EXPORT_SYMBOL vmlinux 0x4c11435a _raw_read_lock_bh +EXPORT_SYMBOL vmlinux 0x4c287ac5 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c5155c1 swiotlb_map_sg_attrs +EXPORT_SYMBOL vmlinux 0x4c558105 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0x4c86617c simple_readpage +EXPORT_SYMBOL vmlinux 0x4c8685c0 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x4c87f04d dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x4c8f9d76 __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0x4ca22c59 inode_set_bytes +EXPORT_SYMBOL vmlinux 0x4ca47957 sk_stop_timer +EXPORT_SYMBOL vmlinux 0x4ca9669f scnprintf +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4d2dde2d of_io_request_and_map +EXPORT_SYMBOL vmlinux 0x4d4ed897 km_state_expired +EXPORT_SYMBOL vmlinux 0x4d627f2e bio_map_kern +EXPORT_SYMBOL vmlinux 0x4d67f15b padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x4d791953 mempool_resize +EXPORT_SYMBOL vmlinux 0x4d875daf update_region +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4da34f5d cfb_copyarea +EXPORT_SYMBOL vmlinux 0x4db81822 security_inode_permission +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e12006a i2c_use_client +EXPORT_SYMBOL vmlinux 0x4e2ca0a2 vc_resize +EXPORT_SYMBOL vmlinux 0x4e31c414 vm_mmap +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6e8ea7 fg_console +EXPORT_SYMBOL vmlinux 0x4e6f057c kill_litter_super +EXPORT_SYMBOL vmlinux 0x4e7466d2 mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x4e767cf0 sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x4e7a8e34 user_path_at_empty +EXPORT_SYMBOL vmlinux 0x4e9dffb5 ip_fast_csum +EXPORT_SYMBOL vmlinux 0x4eb10a90 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0x4eba9226 blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x4ec7dfa7 vfs_symlink +EXPORT_SYMBOL vmlinux 0x4eed928f tcf_em_register +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 0x4f57e387 d_delete +EXPORT_SYMBOL vmlinux 0x4f59d9df netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0x4f61526b tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x4f651009 agp_copy_info +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f6b8b84 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x4f71a3d9 inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve +EXPORT_SYMBOL vmlinux 0x4f979b15 dump_page +EXPORT_SYMBOL vmlinux 0x4fae2dde proto_unregister +EXPORT_SYMBOL vmlinux 0x4fdee897 i8042_command +EXPORT_SYMBOL vmlinux 0x4fe29b11 __sock_create +EXPORT_SYMBOL vmlinux 0x4ff5d6d1 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x4ffb1324 mutex_lock_interruptible +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x50309770 agp_create_memory +EXPORT_SYMBOL vmlinux 0x5031c140 sock_create_lite +EXPORT_SYMBOL vmlinux 0x505f4e2a is_bad_inode +EXPORT_SYMBOL vmlinux 0x5061c4e4 mipi_dsi_dcs_set_display_off +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x50953dd3 nd_region_release_lane +EXPORT_SYMBOL vmlinux 0x50a8fb6b devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x50a90e8d bsearch +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50cc43e9 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x50cfae85 end_page_writeback +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50fc8a05 seq_pad +EXPORT_SYMBOL vmlinux 0x510c390f ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x51164ad9 cmdline_parts_set +EXPORT_SYMBOL vmlinux 0x5118c382 secure_dccp_sequence_number +EXPORT_SYMBOL vmlinux 0x511ae635 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x5136c31f xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x513aefa3 mipi_dsi_dcs_read +EXPORT_SYMBOL vmlinux 0x515a19ba dev_set_allmulti +EXPORT_SYMBOL vmlinux 0x518e2cde mmc_align_data_size +EXPORT_SYMBOL vmlinux 0x519b0da3 finish_wait +EXPORT_SYMBOL vmlinux 0x51d45fd7 agp_generic_alloc_by_type +EXPORT_SYMBOL vmlinux 0x51d504ee ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x51dbcb35 skb_split +EXPORT_SYMBOL vmlinux 0x51f5ab9f blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x51f8a5ff dev_getbyhwaddr_rcu +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 0x52274bd0 i2c_smbus_read_block_data +EXPORT_SYMBOL vmlinux 0x524a4e81 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x525ceb29 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x5262d628 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x527564c6 nvdimm_namespace_common_probe +EXPORT_SYMBOL vmlinux 0x5279a6bb get_super_thawed +EXPORT_SYMBOL vmlinux 0x52983a4f vme_master_write +EXPORT_SYMBOL vmlinux 0x529b9bb6 max8925_reg_read +EXPORT_SYMBOL vmlinux 0x52cb7499 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x52e3ab40 d_set_fallthru +EXPORT_SYMBOL vmlinux 0x530b1154 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x530b1e98 pm_suspend +EXPORT_SYMBOL vmlinux 0x5315aadb skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x5317198e i2c_smbus_write_block_data +EXPORT_SYMBOL vmlinux 0x5323efec tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x534741f8 no_llseek +EXPORT_SYMBOL vmlinux 0x53502d0c fb_set_cmap +EXPORT_SYMBOL vmlinux 0x535c8308 vme_dma_pattern_attribute +EXPORT_SYMBOL vmlinux 0x536cc847 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0x5377e556 hex2bin +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53a29bf2 netlink_set_err +EXPORT_SYMBOL vmlinux 0x53b2c50b bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x53b49102 param_get_invbool +EXPORT_SYMBOL vmlinux 0x53ebab1b _outsl_ns +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x5412c7c7 up +EXPORT_SYMBOL vmlinux 0x541454a3 __mdiobus_register +EXPORT_SYMBOL vmlinux 0x541a1108 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0x541dd67a kfree_skb_list +EXPORT_SYMBOL vmlinux 0x54245b39 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0x5429d859 import_iovec +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x5463589c sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x5479a3e6 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x54a796bc pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54c256e0 vme_check_window +EXPORT_SYMBOL vmlinux 0x54c4bc02 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x54d1e33a vio_unregister_device +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x550047c0 cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x551c070a pnv_cxl_ioda_msi_setup +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x5559b298 uart_suspend_port +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x5568c553 complete +EXPORT_SYMBOL vmlinux 0x5577ef9e udp_table +EXPORT_SYMBOL vmlinux 0x557c2f99 crypto_sha256_update +EXPORT_SYMBOL vmlinux 0x55c4b3fa sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x55d481c9 hdmi_infoframe_unpack +EXPORT_SYMBOL vmlinux 0x55f5019b __kmalloc_node +EXPORT_SYMBOL vmlinux 0x55fe0097 blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x560a46fc write_one_page +EXPORT_SYMBOL vmlinux 0x561524bd dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x56162ba1 elv_add_request +EXPORT_SYMBOL vmlinux 0x56327f20 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x5670a652 of_platform_bus_probe +EXPORT_SYMBOL vmlinux 0x5670b021 blk_init_queue +EXPORT_SYMBOL vmlinux 0x5685aeda scsi_device_set_state +EXPORT_SYMBOL vmlinux 0x568f2f3f put_vaddr_frames +EXPORT_SYMBOL vmlinux 0x56ac11c0 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x56c25450 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x56c2b95b rtas_progress +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56cfe6f2 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x56f6c7de lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x570c1cea simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x5719567e pci_request_region +EXPORT_SYMBOL vmlinux 0x572647d6 get_mce_fault_addr +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5735a4db qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x57575f08 dmaengine_put +EXPORT_SYMBOL vmlinux 0x575ccf1e soft_cursor +EXPORT_SYMBOL vmlinux 0x575fee5b kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x576d1499 generic_file_mmap +EXPORT_SYMBOL vmlinux 0x577d35f3 hdmi_avi_infoframe_pack +EXPORT_SYMBOL vmlinux 0x57829aff nvm_register +EXPORT_SYMBOL vmlinux 0x5792f848 strlcpy +EXPORT_SYMBOL vmlinux 0x579f6603 mach_pseries +EXPORT_SYMBOL vmlinux 0x57a97960 security_path_rmdir +EXPORT_SYMBOL vmlinux 0x57ca745d shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x57cade37 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x57cf7195 textsearch_register +EXPORT_SYMBOL vmlinux 0x57e11f8b pagevec_lookup +EXPORT_SYMBOL vmlinux 0x57e946fb tty_hangup +EXPORT_SYMBOL vmlinux 0x57ec4626 i2c_smbus_read_i2c_block_data +EXPORT_SYMBOL vmlinux 0x57f4bc1c mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x57f4fc54 dmaengine_get_unmap_data +EXPORT_SYMBOL vmlinux 0x580223d7 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0x58073b1e tty_schedule_flip +EXPORT_SYMBOL vmlinux 0x58151f3a get_pci_dma_ops +EXPORT_SYMBOL vmlinux 0x581da059 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5838f6c9 rtc_valid_tm +EXPORT_SYMBOL vmlinux 0x58483df3 cdev_init +EXPORT_SYMBOL vmlinux 0x584a5cb3 dma_find_channel +EXPORT_SYMBOL vmlinux 0x584d4cab truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x58544468 phy_driver_register +EXPORT_SYMBOL vmlinux 0x5857b225 ioread16_rep +EXPORT_SYMBOL vmlinux 0x58657a18 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x5897a51d of_get_next_child +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58b8f2ab gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0x58c486e5 ip6_frag_match +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58eee3ba of_mm_gpiochip_remove +EXPORT_SYMBOL vmlinux 0x58ef70dd pci_dev_get +EXPORT_SYMBOL vmlinux 0x58f3fbcf free_task +EXPORT_SYMBOL vmlinux 0x58fdc5a0 pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x592bbc1f register_md_personality +EXPORT_SYMBOL vmlinux 0x5930f6c2 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x59382723 flush_old_exec +EXPORT_SYMBOL vmlinux 0x594bf15b ioport_map +EXPORT_SYMBOL vmlinux 0x5953524e blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x5957de67 simple_nosetlease +EXPORT_SYMBOL vmlinux 0x595a8218 ata_scsi_cmd_error_handler +EXPORT_SYMBOL vmlinux 0x595aa77f netif_device_attach +EXPORT_SYMBOL vmlinux 0x595d0946 empty_zero_page +EXPORT_SYMBOL vmlinux 0x59613c9f security_mmap_file +EXPORT_SYMBOL vmlinux 0x596a8a54 generic_block_bmap +EXPORT_SYMBOL vmlinux 0x596ff15b seq_open_private +EXPORT_SYMBOL vmlinux 0x59824198 alloc_pages_current +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59aa14cf fence_release +EXPORT_SYMBOL vmlinux 0x59b3378a completion_done +EXPORT_SYMBOL vmlinux 0x59bb4235 genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x59bf0f4c dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x59c60705 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x59eb5aaf __dquot_free_space +EXPORT_SYMBOL vmlinux 0x59fbc0ff get_tz_trend +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 0x5a2c81d7 __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x5a3ad4c1 wireless_send_event +EXPORT_SYMBOL vmlinux 0x5a455359 inet6_release +EXPORT_SYMBOL vmlinux 0x5a599bd4 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0x5a59dd3c mpage_readpage +EXPORT_SYMBOL vmlinux 0x5a5c8092 ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x5a7754e8 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x5a7f7bdd netdev_emerg +EXPORT_SYMBOL vmlinux 0x5a921311 strncmp +EXPORT_SYMBOL vmlinux 0x5a9f1d63 memmove +EXPORT_SYMBOL vmlinux 0x5ac08b3f jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0x5ad3addc generic_end_io_acct +EXPORT_SYMBOL vmlinux 0x5ad6d7f3 compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x5af74e7e bio_reset +EXPORT_SYMBOL vmlinux 0x5aff4177 vme_lm_get +EXPORT_SYMBOL vmlinux 0x5b1124ba pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x5b43f1f1 rtas_service_present +EXPORT_SYMBOL vmlinux 0x5b4a7794 nd_btt_arena_is_valid +EXPORT_SYMBOL vmlinux 0x5b4eea34 of_device_register +EXPORT_SYMBOL vmlinux 0x5b56860c vm_munmap +EXPORT_SYMBOL vmlinux 0x5b5b185e sk_mc_loop +EXPORT_SYMBOL vmlinux 0x5b6eb61e generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x5b7d38a6 try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x5b80f279 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x5b97b0e1 twl6040_clear_bits +EXPORT_SYMBOL vmlinux 0x5b9828c5 dma_spin_lock +EXPORT_SYMBOL vmlinux 0x5ba0fe2f jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x5bae6572 scsi_device_get +EXPORT_SYMBOL vmlinux 0x5bc10524 printk_emit +EXPORT_SYMBOL vmlinux 0x5bc2907b netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0x5bcecc78 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x5be24eee __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x5bffabc0 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x5c09462d page_waitqueue +EXPORT_SYMBOL vmlinux 0x5c11784b dump_skip +EXPORT_SYMBOL vmlinux 0x5c2e57c0 bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x5c332120 ip_do_fragment +EXPORT_SYMBOL vmlinux 0x5c37f319 _raw_spin_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0x5c52a3dc md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x5c698cfa blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x5c8cc638 dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x5c90a58d blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x5c9d7d1e ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x5ca57502 tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x5cc8a392 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0x5ccedd12 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x5cf30e10 __debugger_ipi +EXPORT_SYMBOL vmlinux 0x5cf53ce2 input_free_minor +EXPORT_SYMBOL vmlinux 0x5d3c4b06 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x5d456c86 mmc_start_req +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d770f59 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x5d94284c mipi_dsi_dcs_set_tear_on +EXPORT_SYMBOL vmlinux 0x5db77e81 iget_locked +EXPORT_SYMBOL vmlinux 0x5dee8419 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x5e113b1e vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0x5e336987 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x5e3a8a9c __wake_up +EXPORT_SYMBOL vmlinux 0x5e4b0bdd dst_destroy +EXPORT_SYMBOL vmlinux 0x5e53e8a0 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x5e5600c9 con_is_bound +EXPORT_SYMBOL vmlinux 0x5e5cf2fd __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0x5e6d33f4 __ip_select_ident +EXPORT_SYMBOL vmlinux 0x5e6f9fc7 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea15998 pid_task +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5ebb0062 xattr_full_name +EXPORT_SYMBOL vmlinux 0x5ebfc6fe phy_ethtool_sset +EXPORT_SYMBOL vmlinux 0x5ed040b0 pm_set_vt_switch +EXPORT_SYMBOL vmlinux 0x5eddb914 lockref_put_return +EXPORT_SYMBOL vmlinux 0x5ef11505 phy_ethtool_set_eee +EXPORT_SYMBOL vmlinux 0x5eff7686 of_get_next_available_child +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f04fcfe capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f0f23f9 skb_checksum_help +EXPORT_SYMBOL vmlinux 0x5f196a0d generic_make_request +EXPORT_SYMBOL vmlinux 0x5f1c5c3f security_path_mkdir +EXPORT_SYMBOL vmlinux 0x5f2c302d tcp_seq_open +EXPORT_SYMBOL vmlinux 0x5f357cc5 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x5f4616fa scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x5f732074 devm_ioport_map +EXPORT_SYMBOL vmlinux 0x5f8a2728 isa_io_base +EXPORT_SYMBOL vmlinux 0x5f8d312f kernel_write +EXPORT_SYMBOL vmlinux 0x5f97450d dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0x5faecfff load_nls_default +EXPORT_SYMBOL vmlinux 0x5fd8a316 eeh_dev_release +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fdf5ea5 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0x5fe14776 __devm_release_region +EXPORT_SYMBOL vmlinux 0x5fe15134 md_cluster_ops +EXPORT_SYMBOL vmlinux 0x5ffa64a8 devfreq_interval_update +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 0x60271920 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x60352082 register_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x605e9281 get_agp_version +EXPORT_SYMBOL vmlinux 0x606521e7 fbcon_rotate_ud +EXPORT_SYMBOL vmlinux 0x606a53f1 agp_bridge +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609e92a7 abx500_event_registers_startup_state_get +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60ad1c74 ip_getsockopt +EXPORT_SYMBOL vmlinux 0x60ceb338 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x60d79ae1 i2c_master_recv +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x60ef55bf of_graph_get_remote_port +EXPORT_SYMBOL vmlinux 0x6109f638 flush_dcache_icache_page +EXPORT_SYMBOL vmlinux 0x611a59ab sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x6146221a pci_iounmap +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x6167da4c dev_set_mtu +EXPORT_SYMBOL vmlinux 0x6172483f sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x61830583 get_gendisk +EXPORT_SYMBOL vmlinux 0x618911fc numa_node +EXPORT_SYMBOL vmlinux 0x619cb7dd simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x61ae6c4d wake_up_process +EXPORT_SYMBOL vmlinux 0x61af48b8 trace_print_array_seq +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61bd5e26 vc_cons +EXPORT_SYMBOL vmlinux 0x61d250e6 dev_alloc_name +EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x61d5dfae remap_pfn_range +EXPORT_SYMBOL vmlinux 0x61dd966b generic_perform_write +EXPORT_SYMBOL vmlinux 0x61eef2c9 _insb +EXPORT_SYMBOL vmlinux 0x61ef6170 __tracepoint_fence_emit +EXPORT_SYMBOL vmlinux 0x61ff6d99 skb_free_datagram_locked +EXPORT_SYMBOL vmlinux 0x6207d22a __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x620bde73 __neigh_set_probe_once +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 0x6270cc06 neigh_seq_start +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x6281fbc9 mfd_cell_disable +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x6286acc5 of_mm_gpiochip_add +EXPORT_SYMBOL vmlinux 0x62923b10 bio_flush_dcache_pages +EXPORT_SYMBOL vmlinux 0x62926f11 tcp_check_req +EXPORT_SYMBOL vmlinux 0x62a72d25 d_set_d_op +EXPORT_SYMBOL vmlinux 0x62c0ac33 mmc_release_host +EXPORT_SYMBOL vmlinux 0x62cb0dcd audit_log_task_info +EXPORT_SYMBOL vmlinux 0x62de04a0 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x63396aec __debugger_break_match +EXPORT_SYMBOL vmlinux 0x633a7a81 md_error +EXPORT_SYMBOL vmlinux 0x636470d1 send_sig_info +EXPORT_SYMBOL vmlinux 0x6368c86b get_user_pages_locked +EXPORT_SYMBOL vmlinux 0x63972dde dup_iter +EXPORT_SYMBOL vmlinux 0x63a3684e __break_lease +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ac8552 dma_async_device_register +EXPORT_SYMBOL vmlinux 0x63b43353 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63c5ca0c f_setown +EXPORT_SYMBOL vmlinux 0x63d60c83 module_refcount +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 0x6430ad2c register_cdrom +EXPORT_SYMBOL vmlinux 0x64387de6 compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x6446d509 tty_unthrottle +EXPORT_SYMBOL vmlinux 0x645bf9a2 phy_print_status +EXPORT_SYMBOL vmlinux 0x646845ca md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0x6475c147 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x647653cf bio_chain +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a9a5a5 of_root +EXPORT_SYMBOL vmlinux 0x64ab179d bio_unmap_user +EXPORT_SYMBOL vmlinux 0x64b26d4e drop_super +EXPORT_SYMBOL vmlinux 0x64bb4087 of_graph_get_next_endpoint +EXPORT_SYMBOL vmlinux 0x64bbc288 string_unescape +EXPORT_SYMBOL vmlinux 0x64d7d9c9 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x64eb70e1 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x6501802e lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x650ecbf8 skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x6513a3fa fb_get_color_depth +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x6528e880 serio_reconnect +EXPORT_SYMBOL vmlinux 0x652ce9aa nla_memcmp +EXPORT_SYMBOL vmlinux 0x652d19b1 iov_iter_zero +EXPORT_SYMBOL vmlinux 0x653bfc44 agp_generic_alloc_pages +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x6554e67e sget +EXPORT_SYMBOL vmlinux 0x655be99d delete_from_page_cache +EXPORT_SYMBOL vmlinux 0x655c30c0 path_put +EXPORT_SYMBOL vmlinux 0x6566b3c6 file_ns_capable +EXPORT_SYMBOL vmlinux 0x656c1a0e string_escape_mem +EXPORT_SYMBOL vmlinux 0x65772830 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0x657ce334 nf_register_net_hook +EXPORT_SYMBOL vmlinux 0x65875360 device_get_mac_address +EXPORT_SYMBOL vmlinux 0x6599aba4 seq_file_path +EXPORT_SYMBOL vmlinux 0x65ba7397 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x65bb58a2 _raw_read_trylock +EXPORT_SYMBOL vmlinux 0x65d66331 phy_connect +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 0x65e1a3c6 dquot_release +EXPORT_SYMBOL vmlinux 0x65e26486 devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0x65e934c8 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x65f3ad9a fb_videomode_to_var +EXPORT_SYMBOL vmlinux 0x661f518f __sb_start_write +EXPORT_SYMBOL vmlinux 0x665a70e3 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x667088b4 phy_register_fixup_for_uid +EXPORT_SYMBOL vmlinux 0x66754be3 gen_new_estimator +EXPORT_SYMBOL vmlinux 0x6694f09e get_phy_device +EXPORT_SYMBOL vmlinux 0x66cbb391 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x66cbd461 dev_crit +EXPORT_SYMBOL vmlinux 0x66d505eb blk_sync_queue +EXPORT_SYMBOL vmlinux 0x66e6ef95 __seq_open_private +EXPORT_SYMBOL vmlinux 0x66edc3eb tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x66f108e2 textsearch_prepare +EXPORT_SYMBOL vmlinux 0x67044c5d dentry_path_raw +EXPORT_SYMBOL vmlinux 0x670643d3 phy_device_remove +EXPORT_SYMBOL vmlinux 0x6725cc46 vio_h_cop_sync +EXPORT_SYMBOL vmlinux 0x673c98ff inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0x673f815e agp_bridges +EXPORT_SYMBOL vmlinux 0x6752b7d1 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0x6756d20f netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0x6771ac16 noop_fsync +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x67afbb5a pci_disable_msix +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67f7d352 of_graph_get_endpoint_by_regs +EXPORT_SYMBOL vmlinux 0x67fd3485 fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x680966dd kernel_connect +EXPORT_SYMBOL vmlinux 0x680cfdbe phy_init_hw +EXPORT_SYMBOL vmlinux 0x6826ab96 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x684672b6 devfreq_monitor_suspend +EXPORT_SYMBOL vmlinux 0x685be259 d_find_alias +EXPORT_SYMBOL vmlinux 0x68609857 complete_and_exit +EXPORT_SYMBOL vmlinux 0x687792a9 set_create_files_as +EXPORT_SYMBOL vmlinux 0x687b6a16 kdbgetsymval +EXPORT_SYMBOL vmlinux 0x68921c96 vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x689f370d frame_vector_to_pages +EXPORT_SYMBOL vmlinux 0x68a617f7 blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x68a8b5f8 mmc_gpio_request_ro +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68c34725 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x68d15386 mmc_detect_change +EXPORT_SYMBOL vmlinux 0x68e18130 pcie_get_mps +EXPORT_SYMBOL vmlinux 0x68f29e65 override_creds +EXPORT_SYMBOL vmlinux 0x6916e83a simple_open +EXPORT_SYMBOL vmlinux 0x6963f857 serial8250_do_pm +EXPORT_SYMBOL vmlinux 0x696d3e18 gen_pool_for_each_chunk +EXPORT_SYMBOL vmlinux 0x6971447a rtc_month_days +EXPORT_SYMBOL vmlinux 0x69728852 kfree_put_link +EXPORT_SYMBOL vmlinux 0x6973ad1c mmc_interrupt_hpi +EXPORT_SYMBOL vmlinux 0x69758b92 xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x697ee242 dcache_dir_close +EXPORT_SYMBOL vmlinux 0x69a0ca7d iowrite16be +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69a5380a input_mt_report_slot_state +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b1874d scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0x69bf8dee pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x69c19c8d kernel_getsockname +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a19cfd5 max8925_bulk_write +EXPORT_SYMBOL vmlinux 0x6a267eae security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0x6a501563 udp_sendmsg +EXPORT_SYMBOL vmlinux 0x6a54a64d inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a603a42 get_task_io_context +EXPORT_SYMBOL vmlinux 0x6a7601cd ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a85cced blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0x6a895258 netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0x6a98f342 tcp_prequeue +EXPORT_SYMBOL vmlinux 0x6a9b8f14 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0x6a9dac0b pipe_unlock +EXPORT_SYMBOL vmlinux 0x6ac694db read_cache_page +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6acb973d iowrite32be +EXPORT_SYMBOL vmlinux 0x6acbb989 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0x6ad725d7 ptp_clock_unregister +EXPORT_SYMBOL vmlinux 0x6ad96f8d mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x6ae66706 generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x6aeefac4 zlib_deflateReset +EXPORT_SYMBOL vmlinux 0x6b0469a6 ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b16cc4d jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b1cdb86 lock_fb_info +EXPORT_SYMBOL vmlinux 0x6b1f4c54 of_get_address +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b340dbd pps_register_source +EXPORT_SYMBOL vmlinux 0x6b4e0ad8 proc_set_user +EXPORT_SYMBOL vmlinux 0x6b5dfe73 __debugger_bpt +EXPORT_SYMBOL vmlinux 0x6b640864 nla_strlcpy +EXPORT_SYMBOL vmlinux 0x6b66c889 fence_free +EXPORT_SYMBOL vmlinux 0x6ba101e8 key_revoke +EXPORT_SYMBOL vmlinux 0x6bbcdd68 param_ops_byte +EXPORT_SYMBOL vmlinux 0x6bc1325e fb_find_mode +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bdcfd99 qdisc_class_hash_remove +EXPORT_SYMBOL vmlinux 0x6bfcfa51 uart_get_divisor +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c204d1a blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0x6c25929e simple_lookup +EXPORT_SYMBOL vmlinux 0x6c3b3f2a skb_queue_head +EXPORT_SYMBOL vmlinux 0x6c3b4fb7 blk_start_queue +EXPORT_SYMBOL vmlinux 0x6c3f37a0 i2c_smbus_read_i2c_block_data_or_emulated +EXPORT_SYMBOL vmlinux 0x6c50a182 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c5a9df6 fbcon_rotate_cw +EXPORT_SYMBOL vmlinux 0x6c5cd617 dma_sync_wait +EXPORT_SYMBOL vmlinux 0x6c5e5886 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x6c61ce70 num_registered_fb +EXPORT_SYMBOL vmlinux 0x6c695e36 scsi_block_requests +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6ca59818 nd_device_unregister +EXPORT_SYMBOL vmlinux 0x6cc54da9 ps2_sendbyte +EXPORT_SYMBOL vmlinux 0x6ce8c4ae neigh_changeaddr +EXPORT_SYMBOL vmlinux 0x6d03b818 dst_init +EXPORT_SYMBOL vmlinux 0x6d03f52d skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x6d0ef917 __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d33dbd0 eth_header_parse +EXPORT_SYMBOL vmlinux 0x6d34b3e2 mmc_calc_max_discard +EXPORT_SYMBOL vmlinux 0x6d3900f6 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x6d6f16cb of_iomap +EXPORT_SYMBOL vmlinux 0x6d7d38b5 qdisc_list_add +EXPORT_SYMBOL vmlinux 0x6d84d5f7 iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0x6da1cad2 mipi_dsi_dcs_set_tear_off +EXPORT_SYMBOL vmlinux 0x6da928f4 _insw_ns +EXPORT_SYMBOL vmlinux 0x6db47dd0 vme_slot_num +EXPORT_SYMBOL vmlinux 0x6dd111bb scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x6def2c3f cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6df54595 iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x6e050b60 bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x6e0a09c5 vio_disable_interrupts +EXPORT_SYMBOL vmlinux 0x6e11ac0f pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0x6e1d817e fb_firmware_edid +EXPORT_SYMBOL vmlinux 0x6e1fbccf __put_cred +EXPORT_SYMBOL vmlinux 0x6e6aab5a blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0x6e720ff2 rtnl_unlock +EXPORT_SYMBOL vmlinux 0x6e729a0c splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0x6e73d3ee of_dev_put +EXPORT_SYMBOL vmlinux 0x6e7f0fd2 cmdline_parts_parse +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6eb69db9 scsi_print_command +EXPORT_SYMBOL vmlinux 0x6edd543d dev_remove_pack +EXPORT_SYMBOL vmlinux 0x6eeacd19 fddi_change_mtu +EXPORT_SYMBOL vmlinux 0x6efaed42 dev_warn +EXPORT_SYMBOL vmlinux 0x6f01b48b alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x6f0ed61f __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x6f123e6a proc_create_mount_point +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f288db4 pcim_iounmap +EXPORT_SYMBOL vmlinux 0x6f2b7b18 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x6f391cee dev_printk +EXPORT_SYMBOL vmlinux 0x6f4e9333 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x6f5cb136 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0x6f6eb067 blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x6f88effb hdmi_avi_infoframe_init +EXPORT_SYMBOL vmlinux 0x6f934fff pci_release_regions +EXPORT_SYMBOL vmlinux 0x6fa4f53b tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0x6fb75c51 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x6fbb955e security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fcb87a1 touch_softlockup_watchdog +EXPORT_SYMBOL vmlinux 0x6fd1efbf jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0x6ff2d87b blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x6ff4d563 tcf_exts_dump +EXPORT_SYMBOL vmlinux 0x702f96ef put_disk +EXPORT_SYMBOL vmlinux 0x7036e660 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7054a3e4 request_dma +EXPORT_SYMBOL vmlinux 0x705a93a2 kill_block_super +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x7074dd9c __napi_schedule +EXPORT_SYMBOL vmlinux 0x70757126 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0x707720ad mipi_dsi_dcs_set_column_address +EXPORT_SYMBOL vmlinux 0x707e6c95 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70920f5f vme_bus_error_handler +EXPORT_SYMBOL vmlinux 0x70be1a30 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x70c5192b bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0x70e1c3c9 blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x70eef651 rwsem_wake +EXPORT_SYMBOL vmlinux 0x70f96f88 glob_match +EXPORT_SYMBOL vmlinux 0x7115e783 __netif_schedule +EXPORT_SYMBOL vmlinux 0x71221d69 touch_buffer +EXPORT_SYMBOL vmlinux 0x7128cc7c textsearch_destroy +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x71308f8a csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0x713ce1bd pci_disable_msi +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x71772c93 scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0x718822ae vio_register_device_node +EXPORT_SYMBOL vmlinux 0x718e1ef2 skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x71983449 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71b8b199 sock_alloc_file +EXPORT_SYMBOL vmlinux 0x71c3e996 security_path_link +EXPORT_SYMBOL vmlinux 0x71d04d56 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x71d42f6a bitmap_endwrite +EXPORT_SYMBOL vmlinux 0x7234f78c kernel_getpeername +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x72646de2 ip_defrag +EXPORT_SYMBOL vmlinux 0x7264a55e ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0x72951b2e tcf_hash_search +EXPORT_SYMBOL vmlinux 0x72b243d4 free_dma +EXPORT_SYMBOL vmlinux 0x72b6fa56 fence_wait_timeout +EXPORT_SYMBOL vmlinux 0x72c98139 __arch_hweight64 +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x72efbe35 vm_map_ram +EXPORT_SYMBOL vmlinux 0x72f1f949 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x7315a4e9 twl6030_mmc_card_detect_config +EXPORT_SYMBOL vmlinux 0x731a747a pci_io_base +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x735c27f4 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0x735d8503 add_wait_queue +EXPORT_SYMBOL vmlinux 0x73710a3e dqstats +EXPORT_SYMBOL vmlinux 0x73b65154 devm_free_irq +EXPORT_SYMBOL vmlinux 0x73b85c93 phy_init_eee +EXPORT_SYMBOL vmlinux 0x73b85d37 complete_request_key +EXPORT_SYMBOL vmlinux 0x73b8c301 udp_poll +EXPORT_SYMBOL vmlinux 0x73c4d052 inet_sendpage +EXPORT_SYMBOL vmlinux 0x73d059d2 agp_backend_release +EXPORT_SYMBOL vmlinux 0x73d56a19 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x73e13b56 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x73e3fb84 neigh_for_each +EXPORT_SYMBOL vmlinux 0x73f38140 set_binfmt +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x743fc7c7 tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x747195f0 hdmi_vendor_infoframe_init +EXPORT_SYMBOL vmlinux 0x7476b7a5 blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x7477e355 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0x747ae780 nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x748a0960 default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x74a45a56 generic_write_checks +EXPORT_SYMBOL vmlinux 0x74a728a4 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0x74a9036f udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x74b1edf2 del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74e89f13 padata_start +EXPORT_SYMBOL vmlinux 0x7532588a alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x75331d4f __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0x7538b132 agp_off +EXPORT_SYMBOL vmlinux 0x7540e455 bdi_register +EXPORT_SYMBOL vmlinux 0x754888bc padata_do_serial +EXPORT_SYMBOL vmlinux 0x7557a3df netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0x75698961 scsi_device_put +EXPORT_SYMBOL vmlinux 0x756b35a9 generic_removexattr +EXPORT_SYMBOL vmlinux 0x7574494f agp_put_bridge +EXPORT_SYMBOL vmlinux 0x7592291f __scsi_print_sense +EXPORT_SYMBOL vmlinux 0x75994700 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x75a52577 flow_cache_init +EXPORT_SYMBOL vmlinux 0x75abef47 blkdev_put +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75be6702 register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x75cd03a8 kill_pgrp +EXPORT_SYMBOL vmlinux 0x75d23a6b input_free_device +EXPORT_SYMBOL vmlinux 0x75ee520e seq_dentry +EXPORT_SYMBOL vmlinux 0x75f14ced ibmebus_register_driver +EXPORT_SYMBOL vmlinux 0x75f5e794 genphy_read_status +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x76133cbe sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x76189b65 udp_del_offload +EXPORT_SYMBOL vmlinux 0x7619fa7d PDE_DATA +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 0x766aa21b __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x767279db devfreq_monitor_stop +EXPORT_SYMBOL vmlinux 0x7681843c security_path_symlink +EXPORT_SYMBOL vmlinux 0x7696e1dd writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x76b59b33 cpu_sibling_map +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x77157aee ihold +EXPORT_SYMBOL vmlinux 0x7719c33c dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x772a4cc1 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x7732371b mipi_dsi_dcs_set_display_on +EXPORT_SYMBOL vmlinux 0x77383238 pci_match_id +EXPORT_SYMBOL vmlinux 0x773b9774 blk_get_request +EXPORT_SYMBOL vmlinux 0x773fa409 __kfifo_dma_in_finish_r +EXPORT_SYMBOL vmlinux 0x774696ee fixed_phy_update_state +EXPORT_SYMBOL vmlinux 0x7746bab7 serio_unregister_child_port +EXPORT_SYMBOL vmlinux 0x7760f6f1 file_update_time +EXPORT_SYMBOL vmlinux 0x77792389 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0x777c014b pci_unregister_driver +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77d27e1e kvmppc_hv_find_lock_hpte +EXPORT_SYMBOL vmlinux 0x77d94bd1 phy_find_first +EXPORT_SYMBOL vmlinux 0x77e32a2e __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x77e58e41 sock_efree +EXPORT_SYMBOL vmlinux 0x78104d3f input_handler_for_each_handle +EXPORT_SYMBOL vmlinux 0x7830b04f hvc_put_chars +EXPORT_SYMBOL vmlinux 0x78342ce0 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x783dcb90 vme_irq_generate +EXPORT_SYMBOL vmlinux 0x7846af3e __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x7853f4bd of_find_i2c_device_by_node +EXPORT_SYMBOL vmlinux 0x7870ee27 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x78886853 inet_frag_find +EXPORT_SYMBOL vmlinux 0x7893b001 pci_save_state +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78a9e905 _numa_mem_ +EXPORT_SYMBOL vmlinux 0x78b9ff27 tty_name +EXPORT_SYMBOL vmlinux 0x78c4e664 mipi_dsi_dcs_write +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x791165c3 devm_backlight_device_unregister +EXPORT_SYMBOL vmlinux 0x79153745 neigh_app_ns +EXPORT_SYMBOL vmlinux 0x7929cb0c mipi_dsi_attach +EXPORT_SYMBOL vmlinux 0x79358210 pci_find_bus +EXPORT_SYMBOL vmlinux 0x795c5146 simple_dir_operations +EXPORT_SYMBOL vmlinux 0x795cd78b netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x797d52c7 have_submounts +EXPORT_SYMBOL vmlinux 0x79832a68 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x7984eefc key_update +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x798acc41 eth_change_mtu +EXPORT_SYMBOL vmlinux 0x799e48ab __scm_send +EXPORT_SYMBOL vmlinux 0x79a2a5c1 abx500_register_ops +EXPORT_SYMBOL vmlinux 0x79a33f85 vme_get_size +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79cd8f41 param_ops_bint +EXPORT_SYMBOL vmlinux 0x79d5adea tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x79d9ade2 __sb_end_write +EXPORT_SYMBOL vmlinux 0x79dde80c ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x7a004f73 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0x7a0a881b vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x7a3982f7 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a83ba01 iget_failed +EXPORT_SYMBOL vmlinux 0x7a88a969 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x7a890687 bdget +EXPORT_SYMBOL vmlinux 0x7a9ecb75 vme_unregister_driver +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7aaf4c7f dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ac749b9 register_quota_format +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7adf7021 param_set_int +EXPORT_SYMBOL vmlinux 0x7afdaa83 serio_bus +EXPORT_SYMBOL vmlinux 0x7b036600 dev_queue_xmit +EXPORT_SYMBOL vmlinux 0x7b16235f hdmi_vendor_infoframe_pack +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b294496 prepare_creds +EXPORT_SYMBOL vmlinux 0x7b2aef6c __krealloc +EXPORT_SYMBOL vmlinux 0x7b340021 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0x7b3c7b83 msi_bitmap_free_hwirqs +EXPORT_SYMBOL vmlinux 0x7b3f2e18 nonseekable_open +EXPORT_SYMBOL vmlinux 0x7b653aed replace_mount_options +EXPORT_SYMBOL vmlinux 0x7b69986c pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x7b6dde9b of_find_node_with_property +EXPORT_SYMBOL vmlinux 0x7b7b65b4 __kfree_skb +EXPORT_SYMBOL vmlinux 0x7b812e6c filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x7b8279f3 key_put +EXPORT_SYMBOL vmlinux 0x7bb756cc neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7bdcd998 dma_async_device_unregister +EXPORT_SYMBOL vmlinux 0x7bf32a1a jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x7c003aef _raw_read_lock_irq +EXPORT_SYMBOL vmlinux 0x7c0a0ced seq_path +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c2d098f krealloc +EXPORT_SYMBOL vmlinux 0x7c3fedd7 fb_get_mode +EXPORT_SYMBOL vmlinux 0x7c43bf25 generic_writepages +EXPORT_SYMBOL vmlinux 0x7c46233a cpufreq_quick_get +EXPORT_SYMBOL vmlinux 0x7c509105 inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x7c53dcdf ip_setsockopt +EXPORT_SYMBOL vmlinux 0x7c5998bc blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c6d7fed register_sysctl +EXPORT_SYMBOL vmlinux 0x7c70721a kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0x7c71ee74 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x7c87db07 serial8250_register_8250_port +EXPORT_SYMBOL vmlinux 0x7c977c79 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0x7c98845d twl_i2c_read +EXPORT_SYMBOL vmlinux 0x7ca254c3 udp_seq_open +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cbb8b9b single_release +EXPORT_SYMBOL vmlinux 0x7ce0f9e5 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7cf35220 vme_master_free +EXPORT_SYMBOL vmlinux 0x7d03e9ec agp_generic_alloc_user +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d2f16e4 ppp_register_compressor +EXPORT_SYMBOL vmlinux 0x7d519e6a of_translate_dma_address +EXPORT_SYMBOL vmlinux 0x7d6205d9 vme_dma_list_add +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d7bb7c6 lwtunnel_input +EXPORT_SYMBOL vmlinux 0x7d9514c1 node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0x7da4c88d twl6040_set_bits +EXPORT_SYMBOL vmlinux 0x7dc97879 rtas_get_error_log_max +EXPORT_SYMBOL vmlinux 0x7de1a37d sb_set_blocksize +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7e00a126 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x7e1b52b7 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0x7e1b5e36 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x7e1c3079 uart_register_driver +EXPORT_SYMBOL vmlinux 0x7e34238c inode_init_owner +EXPORT_SYMBOL vmlinux 0x7e474f8e nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0x7e665160 param_get_int +EXPORT_SYMBOL vmlinux 0x7e805720 devm_memunmap +EXPORT_SYMBOL vmlinux 0x7ea45e4e get_disk +EXPORT_SYMBOL vmlinux 0x7eae3a71 __frontswap_test +EXPORT_SYMBOL vmlinux 0x7eb01cea validate_sp +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ef31f81 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x7f00a624 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f063422 __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x7f119efa tcp_sendpage +EXPORT_SYMBOL vmlinux 0x7f248215 posix_lock_file +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263e58 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f296682 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x7f3c907b tty_unregister_device +EXPORT_SYMBOL vmlinux 0x7f3ecc3e vme_new_dma_list +EXPORT_SYMBOL vmlinux 0x7f559697 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f98b132 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x7faa75e8 vme_irq_handler +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 0x7fcbb6be flow_cache_lookup +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 0x8024669d locks_remove_posix +EXPORT_SYMBOL vmlinux 0x80294d9d nf_log_unset +EXPORT_SYMBOL vmlinux 0x805042cb nobh_write_begin +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 0x807a78e8 alloc_disk +EXPORT_SYMBOL vmlinux 0x80855eee component_match_add +EXPORT_SYMBOL vmlinux 0x80a20860 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x80ae68f1 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80e32ed9 pci_request_regions +EXPORT_SYMBOL vmlinux 0x80e3fb3f seq_printf +EXPORT_SYMBOL vmlinux 0x80e77100 input_mt_init_slots +EXPORT_SYMBOL vmlinux 0x80fc5025 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x812867ff ll_rw_block +EXPORT_SYMBOL vmlinux 0x814763e0 bio_init +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815042d7 dev_mc_add +EXPORT_SYMBOL vmlinux 0x81533963 sysfs_format_mac +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816f9a0b lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x81a07f4e _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0x81aaed64 devm_gpiod_get_array_optional +EXPORT_SYMBOL vmlinux 0x81ac8563 reservation_object_add_shared_fence +EXPORT_SYMBOL vmlinux 0x81c0a84f rtas_set_indicator +EXPORT_SYMBOL vmlinux 0x81c5eaeb ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x81ca401b rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81de72ac dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x81e15a1b pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0x82002626 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x822653ae __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x8227fdc2 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x822c5a8c fence_add_callback +EXPORT_SYMBOL vmlinux 0x823ffbe1 dev_add_pack +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x8255a21f sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x82712450 unload_nls +EXPORT_SYMBOL vmlinux 0x82792f6e param_ops_long +EXPORT_SYMBOL vmlinux 0x827eb41e pps_lookup_dev +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x82871b60 dmt_modes +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82ade53b scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0x82c04ef7 request_key +EXPORT_SYMBOL vmlinux 0x82d6b0d0 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x82e5a238 vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x83091fa6 giveup_vsx +EXPORT_SYMBOL vmlinux 0x831b119f unregister_console +EXPORT_SYMBOL vmlinux 0x833771b6 inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x83665ea2 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0x83941022 inet_recvmsg +EXPORT_SYMBOL vmlinux 0x839430b2 __register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x83a2cb20 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x83b009ea xfrm_state_walk_init +EXPORT_SYMBOL vmlinux 0x83bbbf85 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0x83c52fba xfrm4_protocol_init +EXPORT_SYMBOL vmlinux 0x83eb4e84 km_new_mapping +EXPORT_SYMBOL vmlinux 0x8400e997 generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x841f21b8 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0x84208b81 dquot_free_inode +EXPORT_SYMBOL vmlinux 0x84428f88 i2c_transfer +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x84550509 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x845b1999 ether_setup +EXPORT_SYMBOL vmlinux 0x8465bf84 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x84836cfe pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x84a9a423 key_invalidate +EXPORT_SYMBOL vmlinux 0x84bd69bf dq_data_lock +EXPORT_SYMBOL vmlinux 0x84d6ca0a max8998_bulk_write +EXPORT_SYMBOL vmlinux 0x84ea24a6 sock_wake_async +EXPORT_SYMBOL vmlinux 0x84f11cbf nf_register_hook +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x850ebee6 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x85220ba2 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x853a9655 devm_iounmap +EXPORT_SYMBOL vmlinux 0x854513fd dev_deactivate +EXPORT_SYMBOL vmlinux 0x854c784c ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x8554cb38 param_array_ops +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8596454e skb_seq_read +EXPORT_SYMBOL vmlinux 0x8597eb47 plpar_hcall +EXPORT_SYMBOL vmlinux 0x859f606d iget5_locked +EXPORT_SYMBOL vmlinux 0x85b5e625 rfkill_set_states +EXPORT_SYMBOL vmlinux 0x85ca51ea dm_io +EXPORT_SYMBOL vmlinux 0x85cece23 do_splice_to +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e51f82 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x8603d06d dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x86495a50 pci_clear_master +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x865b32c0 devm_gpiod_get_index_optional +EXPORT_SYMBOL vmlinux 0x8664f62e cpufreq_update_policy +EXPORT_SYMBOL vmlinux 0x8676eec7 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0x868593bb inet_put_port +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868bda02 compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86a575f0 posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x86a7dedc dump_emit +EXPORT_SYMBOL vmlinux 0x86b3e1c4 secpath_dup +EXPORT_SYMBOL vmlinux 0x86bb9d4c blk_get_queue +EXPORT_SYMBOL vmlinux 0x86c7f8c3 __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x86db1cbb rtas_flash_term_hook +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x8701c31f tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x8703e88a of_get_ddr_timings +EXPORT_SYMBOL vmlinux 0x870c25d2 __vfs_read +EXPORT_SYMBOL vmlinux 0x870cbec3 mount_single +EXPORT_SYMBOL vmlinux 0x8716198c serial8250_do_set_termios +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x873596fe jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x873a53ea __arch_hweight8 +EXPORT_SYMBOL vmlinux 0x8746a9b7 mmc_read_bkops_status +EXPORT_SYMBOL vmlinux 0x874c5bb6 key_unlink +EXPORT_SYMBOL vmlinux 0x875a3e60 of_phy_register_fixed_link +EXPORT_SYMBOL vmlinux 0x8766ced1 ipv4_specific +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x8792650a tty_port_destroy +EXPORT_SYMBOL vmlinux 0x87975d62 pci_iomap +EXPORT_SYMBOL vmlinux 0x87b804e9 netdev_change_features +EXPORT_SYMBOL vmlinux 0x87c37525 tty_write_room +EXPORT_SYMBOL vmlinux 0x87c65e76 setup_new_exec +EXPORT_SYMBOL vmlinux 0x87e6f397 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x87f67091 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x880e167d max8925_set_bits +EXPORT_SYMBOL vmlinux 0x882db37f neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x883ca42f mutex_lock +EXPORT_SYMBOL vmlinux 0x8849b7cb unregister_quota_format +EXPORT_SYMBOL vmlinux 0x885f115f qdisc_destroy +EXPORT_SYMBOL vmlinux 0x88672b10 dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x88a4ac87 phy_drivers_register +EXPORT_SYMBOL vmlinux 0x88a92032 vme_dma_list_exec +EXPORT_SYMBOL vmlinux 0x88e4f648 ppp_unregister_channel +EXPORT_SYMBOL vmlinux 0x88f99065 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0x890bfda2 i2c_smbus_read_word_data +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x891fbb10 mempool_destroy +EXPORT_SYMBOL vmlinux 0x892e4ccb wait_for_key_construction +EXPORT_SYMBOL vmlinux 0x894f105a filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x895108f3 proc_dostring +EXPORT_SYMBOL vmlinux 0x895577b0 numa_cpu_lookup_table +EXPORT_SYMBOL vmlinux 0x895c22c2 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0x896e493c pci_release_region +EXPORT_SYMBOL vmlinux 0x8971d81f do_truncate +EXPORT_SYMBOL vmlinux 0x89771201 blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x89797060 _raw_read_lock +EXPORT_SYMBOL vmlinux 0x89a3bde7 __kernel_write +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c26335 md_check_recovery +EXPORT_SYMBOL vmlinux 0x89cf0027 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x89d53347 dm_get_device +EXPORT_SYMBOL vmlinux 0x89d5538d fb_pad_aligned_buffer +EXPORT_SYMBOL vmlinux 0x89e60558 fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x8a0971d6 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a271be9 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x8a490c90 rfkill_set_sw_state +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5ab2c4 kill_fasync +EXPORT_SYMBOL vmlinux 0x8a5d36fc key_reject_and_link +EXPORT_SYMBOL vmlinux 0x8a6af65c kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x8a7152d4 keyring_search +EXPORT_SYMBOL vmlinux 0x8a717eb6 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8aaa8906 i2c_clients_command +EXPORT_SYMBOL vmlinux 0x8aaaf8c4 uart_remove_one_port +EXPORT_SYMBOL vmlinux 0x8aaefcd1 bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0x8acb052f pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x8ace53fd nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x8ae2ae47 register_gifconf +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8b296b56 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x8b2fc4b8 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b48da9d generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b7b5a25 vio_unregister_driver +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8bac7e92 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0x8bb2d2db unregister_filesystem +EXPORT_SYMBOL vmlinux 0x8bb43ea5 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x8bc24f67 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0x8bc3d57b sock_i_uid +EXPORT_SYMBOL vmlinux 0x8bcfc0a2 pm860x_reg_write +EXPORT_SYMBOL vmlinux 0x8bdf4c11 nf_log_trace +EXPORT_SYMBOL vmlinux 0x8be23afd tcp_proc_register +EXPORT_SYMBOL vmlinux 0x8bf2ae1f fsl_lbc_addr +EXPORT_SYMBOL vmlinux 0x8c13ee86 of_phy_is_fixed_link +EXPORT_SYMBOL vmlinux 0x8c183cbe iowrite16 +EXPORT_SYMBOL vmlinux 0x8c520119 i2c_smbus_read_byte_data +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c6d7e66 pm_vt_switch_required +EXPORT_SYMBOL vmlinux 0x8c77d31e param_get_long +EXPORT_SYMBOL vmlinux 0x8c820c72 devfreq_resume_device +EXPORT_SYMBOL vmlinux 0x8c98ea33 blk_run_queue +EXPORT_SYMBOL vmlinux 0x8c9cd39f dev_mc_sync +EXPORT_SYMBOL vmlinux 0x8cc79cab iowrite16_rep +EXPORT_SYMBOL vmlinux 0x8cda6858 noop_qdisc +EXPORT_SYMBOL vmlinux 0x8cdde80a fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0x8cef68c7 neigh_lookup +EXPORT_SYMBOL vmlinux 0x8cffbe20 do_splice_from +EXPORT_SYMBOL vmlinux 0x8d011e6d __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x8d015dd4 __bswapdi2 +EXPORT_SYMBOL vmlinux 0x8d0293a0 pnv_cxl_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x8d20621b mipi_dsi_dcs_nop +EXPORT_SYMBOL vmlinux 0x8d2998ba scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x8d4007bf d_obtain_root +EXPORT_SYMBOL vmlinux 0x8d4036b2 try_module_get +EXPORT_SYMBOL vmlinux 0x8d42e329 dput +EXPORT_SYMBOL vmlinux 0x8d54f1d6 netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d944cbb copy_in_user +EXPORT_SYMBOL vmlinux 0x8d9a72ba dev_trans_start +EXPORT_SYMBOL vmlinux 0x8dadcc6a gen_pool_dma_alloc +EXPORT_SYMBOL vmlinux 0x8dae5d05 consume_skb +EXPORT_SYMBOL vmlinux 0x8db308c2 __pagevec_release +EXPORT_SYMBOL vmlinux 0x8db43eb8 dquot_commit +EXPORT_SYMBOL vmlinux 0x8db446e0 start_tty +EXPORT_SYMBOL vmlinux 0x8dca9afd twl6040_set_pll +EXPORT_SYMBOL vmlinux 0x8de0b5ac mempool_create +EXPORT_SYMBOL vmlinux 0x8de6796f sock_recvmsg +EXPORT_SYMBOL vmlinux 0x8df92f66 memchr_inv +EXPORT_SYMBOL vmlinux 0x8dff6a7e blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0x8e0f16f2 lease_modify +EXPORT_SYMBOL vmlinux 0x8e1bfa9f udp_add_offload +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e754b4b neigh_ifdown +EXPORT_SYMBOL vmlinux 0x8e90ed27 dev_add_offload +EXPORT_SYMBOL vmlinux 0x8ec04552 _raw_spin_trylock_bh +EXPORT_SYMBOL vmlinux 0x8ed47b99 bdev_read_only +EXPORT_SYMBOL vmlinux 0x8ee065e7 jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0x8eec392f nvm_end_io +EXPORT_SYMBOL vmlinux 0x8f05473a jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x8f2d73fc ppp_input_error +EXPORT_SYMBOL vmlinux 0x8f75945e i2c_put_adapter +EXPORT_SYMBOL vmlinux 0x8f84a6be __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x8f85f835 prepare_to_wait_exclusive +EXPORT_SYMBOL vmlinux 0x8f935129 jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x8fc15bf6 iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x8fc59f9b rtas_offline_cpus_mask +EXPORT_SYMBOL vmlinux 0x8fe7209d follow_down +EXPORT_SYMBOL vmlinux 0x900d2a1f msi_bitmap_alloc_hwirqs +EXPORT_SYMBOL vmlinux 0x9021979a passthru_features_check +EXPORT_SYMBOL vmlinux 0x9023a30a __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x9041a0ed netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x90572a70 nf_log_register +EXPORT_SYMBOL vmlinux 0x907aa0bb phy_ethtool_gset +EXPORT_SYMBOL vmlinux 0x908c69ec filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0x90ddc99b rtas +EXPORT_SYMBOL vmlinux 0x90f0b880 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x90f59be6 led_blink_set_oneshot +EXPORT_SYMBOL vmlinux 0x91068b67 xfrm_input +EXPORT_SYMBOL vmlinux 0x911f8a17 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x912557ce rtas_busy_delay +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x91592695 scsi_init_io +EXPORT_SYMBOL vmlinux 0x915e1208 tb_ticks_per_usec +EXPORT_SYMBOL vmlinux 0x9166fada strncpy +EXPORT_SYMBOL vmlinux 0x916847e6 of_phy_attach +EXPORT_SYMBOL vmlinux 0x9168c033 rtas_get_sensor +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x918e0074 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0x919d1163 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x91ac822f vscnprintf +EXPORT_SYMBOL vmlinux 0x91b0e6ef clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x91bae33a backlight_device_register +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x91fc25ee netlink_ack +EXPORT_SYMBOL vmlinux 0x922652c4 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0x9234a070 blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0x923b1276 dmaengine_get +EXPORT_SYMBOL vmlinux 0x9253bfb9 inet6_del_protocol +EXPORT_SYMBOL vmlinux 0x926f9e43 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x928ad3ac eth_header_cache +EXPORT_SYMBOL vmlinux 0x9291cd3b memdup_user +EXPORT_SYMBOL vmlinux 0x929fd1f7 mmc_free_host +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92b60bdb simple_transaction_release +EXPORT_SYMBOL vmlinux 0x92b97965 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x92bf5594 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0x92d9df4e blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x92fa5abb vme_lm_detach +EXPORT_SYMBOL vmlinux 0x93022ba6 __scsi_format_command +EXPORT_SYMBOL vmlinux 0x9305f8e6 cpufreq_get +EXPORT_SYMBOL vmlinux 0x930da4ae nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x93128dbb skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0x932b9525 dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0x93352edb xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0x9354fcde ibmebus_free_irq +EXPORT_SYMBOL vmlinux 0x93598dc5 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x938cc855 con_set_default_unimap +EXPORT_SYMBOL vmlinux 0x93a47e4c datagram_poll +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93b8a655 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x93c5c35f vme_master_request +EXPORT_SYMBOL vmlinux 0x93da2538 devm_gen_pool_create +EXPORT_SYMBOL vmlinux 0x93ef26b9 tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x93f18250 read_code +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94257959 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x94317493 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x9436ebb7 netdev_err +EXPORT_SYMBOL vmlinux 0x943f94aa ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x94528fc2 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0x9468ecda pnv_phb_to_cxl_mode +EXPORT_SYMBOL vmlinux 0x94778425 security_inode_readlink +EXPORT_SYMBOL vmlinux 0x9483dedc param_set_long +EXPORT_SYMBOL vmlinux 0x948495be module_put +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x94a167cc get_task_exe_file +EXPORT_SYMBOL vmlinux 0x94c45984 of_scan_pci_bridge +EXPORT_SYMBOL vmlinux 0x94d5959c nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x94f46741 neigh_table_clear +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x950edb34 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x9515a45d vfs_setpos +EXPORT_SYMBOL vmlinux 0x9524b0ae _outsb +EXPORT_SYMBOL vmlinux 0x95399295 of_device_alloc +EXPORT_SYMBOL vmlinux 0x953a1f92 ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x95415883 phy_drivers_unregister +EXPORT_SYMBOL vmlinux 0x9545af6d tasklet_init +EXPORT_SYMBOL vmlinux 0x95463ec3 fb_set_suspend +EXPORT_SYMBOL vmlinux 0x956b5d84 blk_put_queue +EXPORT_SYMBOL vmlinux 0x95768ec8 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x957aaeef do_SAK +EXPORT_SYMBOL vmlinux 0x9587f1fd add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0x959767c1 mipi_dsi_dcs_soft_reset +EXPORT_SYMBOL vmlinux 0x95c33d69 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x95c46e81 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x95e71e4d input_alloc_absinfo +EXPORT_SYMBOL vmlinux 0x95ef781c elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0x95f42021 netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x96244484 clear_nlink +EXPORT_SYMBOL vmlinux 0x9632c5ec iw_handler_get_spy +EXPORT_SYMBOL vmlinux 0x9633f740 current_fs_time +EXPORT_SYMBOL vmlinux 0x9676c230 dev_addr_init +EXPORT_SYMBOL vmlinux 0x968eac72 md_write_end +EXPORT_SYMBOL vmlinux 0x969880aa backlight_force_update +EXPORT_SYMBOL vmlinux 0x969987fc lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x96b29254 strncasecmp +EXPORT_SYMBOL vmlinux 0x96bb569f __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x96c9a6c6 pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x96ca592d unlock_page +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96e67713 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x9716a040 __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x9721394a sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x973a9d12 skb_unlink +EXPORT_SYMBOL vmlinux 0x9741fa6d inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x9748927f _outsw_ns +EXPORT_SYMBOL vmlinux 0x9753b0cf uart_unregister_driver +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97868aef __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x978da8ad unlock_rename +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 0x97c4029f srp_rport_get +EXPORT_SYMBOL vmlinux 0x97e6e88c nd_device_register +EXPORT_SYMBOL vmlinux 0x97e784e3 agp_generic_enable +EXPORT_SYMBOL vmlinux 0x97f03d6f vio_cmo_entitlement_update +EXPORT_SYMBOL vmlinux 0x9807ac13 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x981356a9 xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x9821221f mmc_fixup_device +EXPORT_SYMBOL vmlinux 0x9823402e from_kprojid +EXPORT_SYMBOL vmlinux 0x9829fc11 __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0x982d6f56 xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x983320da fbcon_set_rotate +EXPORT_SYMBOL vmlinux 0x983e65ea skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0x984c7eae iov_iter_init +EXPORT_SYMBOL vmlinux 0x9863c949 proc_remove +EXPORT_SYMBOL vmlinux 0x986888fd vfs_mknod +EXPORT_SYMBOL vmlinux 0x986e6135 fb_pad_unaligned_buffer +EXPORT_SYMBOL vmlinux 0x987fc124 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0x988f3115 __neigh_create +EXPORT_SYMBOL vmlinux 0x98bef5a6 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x98c4cba6 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x98cf60b3 strlen +EXPORT_SYMBOL vmlinux 0x98e83d51 skb_copy_bits +EXPORT_SYMBOL vmlinux 0x98ec669c blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0x98f242f6 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x99131f9c nvm_register_target +EXPORT_SYMBOL vmlinux 0x99195078 vsnprintf +EXPORT_SYMBOL vmlinux 0x9924ed76 fasync_helper +EXPORT_SYMBOL vmlinux 0x9935e4de tcf_hash_create +EXPORT_SYMBOL vmlinux 0x9939eba0 backlight_unregister_notifier +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x9959063d pagecache_get_page +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x996b923e phy_driver_unregister +EXPORT_SYMBOL vmlinux 0x996e21a2 from_kprojid_munged +EXPORT_SYMBOL vmlinux 0x997baa7e dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0x9994c0ca ps2_is_keyboard_id +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99a53c85 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x99a5c60b neigh_update +EXPORT_SYMBOL vmlinux 0x99afe916 _raw_write_unlock_bh +EXPORT_SYMBOL vmlinux 0x99c2d9b0 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99d6b7e8 fb_prepare_logo +EXPORT_SYMBOL vmlinux 0x99d71b2b submit_bh +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a2be20c pps_event +EXPORT_SYMBOL vmlinux 0x9a5162d1 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x9a594b2e ps2_handle_response +EXPORT_SYMBOL vmlinux 0x9a5b4171 blk_delay_queue +EXPORT_SYMBOL vmlinux 0x9a5f276c eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x9ab1e3b0 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x9abfc923 blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0x9ac643d2 ab3100_event_register +EXPORT_SYMBOL vmlinux 0x9ad4aaec pci_bus_get +EXPORT_SYMBOL vmlinux 0x9aeb07e8 vme_lm_attach +EXPORT_SYMBOL vmlinux 0x9aecc0c4 inet_stream_ops +EXPORT_SYMBOL vmlinux 0x9aef0aa0 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x9aff5f83 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0x9b0f7540 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0x9b269951 finish_no_open +EXPORT_SYMBOL vmlinux 0x9b2e1087 cdev_del +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b60b8ee mpage_readpages +EXPORT_SYMBOL vmlinux 0x9b75d7ab should_remove_suid +EXPORT_SYMBOL vmlinux 0x9b7e85a6 gen_pool_alloc +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9b9f9aa0 __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0x9ba6e0d8 of_find_backlight_by_node +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bb782ea scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x9bd343d2 gen_pool_virt_to_phys +EXPORT_SYMBOL vmlinux 0x9bd350fa md_cluster_mod +EXPORT_SYMBOL vmlinux 0x9bde1f9e __bread_gfp +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9bf36e65 mipi_dsi_dcs_set_page_address +EXPORT_SYMBOL vmlinux 0x9c01b055 dquot_initialize +EXPORT_SYMBOL vmlinux 0x9c06c890 kobject_set_name +EXPORT_SYMBOL vmlinux 0x9c2b2382 mutex_trylock +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c512ba7 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x9c593968 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0x9c68ab1d elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x9c9b0ae2 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x9cab34a6 rfkill_set_led_trigger_name +EXPORT_SYMBOL vmlinux 0x9cd044d5 pnv_pci_get_npu_dev +EXPORT_SYMBOL vmlinux 0x9d000751 napi_consume_skb +EXPORT_SYMBOL vmlinux 0x9d01c8d3 pnv_cxl_get_irq_count +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d14983a ppc_enable_pmcs +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d3cd2fb kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0x9d44df8a pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x9d71da02 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x9d7ce8dd _raw_spin_trylock +EXPORT_SYMBOL vmlinux 0x9d9a5908 sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x9d9dfc18 load_fp_state +EXPORT_SYMBOL vmlinux 0x9d9fcf1c skb_queue_tail +EXPORT_SYMBOL vmlinux 0x9da05e10 mipi_dsi_create_packet +EXPORT_SYMBOL vmlinux 0x9da71d75 pci_scan_slot +EXPORT_SYMBOL vmlinux 0x9dc4809a blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0x9df131bd blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e1803a3 dmam_pool_create +EXPORT_SYMBOL vmlinux 0x9e2f8c90 lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x9e310190 input_reset_device +EXPORT_SYMBOL vmlinux 0x9e38f8a7 blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0x9e455c63 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x9e4e26ab dma_async_tx_descriptor_init +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e765483 cdrom_check_events +EXPORT_SYMBOL vmlinux 0x9e97375d rtas_busy_delay_time +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9ebd15fc make_kprojid +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9eccb654 d_drop +EXPORT_SYMBOL vmlinux 0x9ed976ed km_report +EXPORT_SYMBOL vmlinux 0x9f25ae06 of_find_device_by_node +EXPORT_SYMBOL vmlinux 0x9f423728 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0x9f46c8ad udp_push_pending_frames +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f55e9ae i2c_master_send +EXPORT_SYMBOL vmlinux 0x9f5ee120 set_anon_super +EXPORT_SYMBOL vmlinux 0x9f7c1be8 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0x9f911629 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9c9f3e netif_napi_add +EXPORT_SYMBOL vmlinux 0x9fb4252d bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x9fb98e86 blk_free_tags +EXPORT_SYMBOL vmlinux 0x9fbe5e5a proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x9fd7ec54 inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe08815 pci_dev_driver +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa006c103 seq_write +EXPORT_SYMBOL vmlinux 0xa008705f __netlink_dump_start +EXPORT_SYMBOL vmlinux 0xa01644a1 scsi_dma_map +EXPORT_SYMBOL vmlinux 0xa0232e13 netpoll_print_options +EXPORT_SYMBOL vmlinux 0xa0256936 inode_init_always +EXPORT_SYMBOL vmlinux 0xa040ddd9 textsearch_unregister +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa0506976 pcibios_fixup_bus +EXPORT_SYMBOL vmlinux 0xa0571e72 devfreq_add_governor +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 0xa08ca3ac setattr_copy +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0c46057 ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0xa0c60506 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0xa0dad88e netdev_adjacent_get_private +EXPORT_SYMBOL vmlinux 0xa0ebd14c sysctl_tcp_mem +EXPORT_SYMBOL vmlinux 0xa0efa948 mipi_dsi_dcs_get_power_mode +EXPORT_SYMBOL vmlinux 0xa0fbac79 wake_up_bit +EXPORT_SYMBOL vmlinux 0xa0ff74d6 udp_memory_allocated +EXPORT_SYMBOL vmlinux 0xa108061c clocksource_unregister +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa11644a7 fddi_type_trans +EXPORT_SYMBOL vmlinux 0xa118fc22 of_graph_get_remote_port_parent +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1415618 twl6030_interrupt_unmask +EXPORT_SYMBOL vmlinux 0xa1a2f719 agp_unbind_memory +EXPORT_SYMBOL vmlinux 0xa1a9af0b __destroy_inode +EXPORT_SYMBOL vmlinux 0xa1ad1a23 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0xa1b759ce fb_add_videomode +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c99385 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0xa1d0ac52 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xa1d8ad80 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0xa1dee5f1 frame_vector_create +EXPORT_SYMBOL vmlinux 0xa1f8fe75 wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0xa200357d dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xa202a8e5 kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa219d1b5 register_framebuffer +EXPORT_SYMBOL vmlinux 0xa2214708 phy_mii_ioctl +EXPORT_SYMBOL vmlinux 0xa221b7d9 mem_section +EXPORT_SYMBOL vmlinux 0xa22d7059 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xa238f7da uart_write_wakeup +EXPORT_SYMBOL vmlinux 0xa24055b8 vfs_getattr +EXPORT_SYMBOL vmlinux 0xa2589697 scsi_unregister +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa2a335bd vme_alloc_consistent +EXPORT_SYMBOL vmlinux 0xa2bbed37 crash_shutdown_register +EXPORT_SYMBOL vmlinux 0xa2c16212 blk_make_request +EXPORT_SYMBOL vmlinux 0xa2c79351 sock_no_mmap +EXPORT_SYMBOL vmlinux 0xa2cee846 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0xa2d376c8 blk_requeue_request +EXPORT_SYMBOL vmlinux 0xa2fdbcbe fence_default_wait +EXPORT_SYMBOL vmlinux 0xa303d1ff dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0xa31bdf07 vme_master_set +EXPORT_SYMBOL vmlinux 0xa3405eac input_grab_device +EXPORT_SYMBOL vmlinux 0xa34bc8d2 vmap +EXPORT_SYMBOL vmlinux 0xa34e6461 find_inode_nowait +EXPORT_SYMBOL vmlinux 0xa37bf5a5 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xa37e9464 __page_symlink +EXPORT_SYMBOL vmlinux 0xa39b4cf2 udelay +EXPORT_SYMBOL vmlinux 0xa3abc422 abort_exclusive_wait +EXPORT_SYMBOL vmlinux 0xa3ac84e6 of_device_get_match_data +EXPORT_SYMBOL vmlinux 0xa3b9fb8d mark_info_dirty +EXPORT_SYMBOL vmlinux 0xa3c0f811 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xa3cfc1ee pci_get_slot +EXPORT_SYMBOL vmlinux 0xa3da08e0 of_get_min_tck +EXPORT_SYMBOL vmlinux 0xa3daa082 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xa3ff771c netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0xa40c50d5 agp_bind_memory +EXPORT_SYMBOL vmlinux 0xa411c017 phy_mac_interrupt +EXPORT_SYMBOL vmlinux 0xa413ea77 fput +EXPORT_SYMBOL vmlinux 0xa42560c0 block_invalidatepage +EXPORT_SYMBOL vmlinux 0xa429f19a tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xa4317ff4 writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0xa4511467 crc16 +EXPORT_SYMBOL vmlinux 0xa4560bee tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0xa459416d __getblk_slow +EXPORT_SYMBOL vmlinux 0xa45c0612 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0xa464f0bd netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa488f200 d_walk +EXPORT_SYMBOL vmlinux 0xa489018d jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0xa4b33813 rtnl_create_link +EXPORT_SYMBOL vmlinux 0xa4b94fea iowrite8_rep +EXPORT_SYMBOL vmlinux 0xa4d16208 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0xa4d4f0e6 global_cache_flush +EXPORT_SYMBOL vmlinux 0xa4dc17af skb_dequeue +EXPORT_SYMBOL vmlinux 0xa50447ca udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xa52fcc7b kthread_stop +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa5527918 padata_free +EXPORT_SYMBOL vmlinux 0xa55c6830 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xa5627d9a eth_header +EXPORT_SYMBOL vmlinux 0xa598e29c vesa_modes +EXPORT_SYMBOL vmlinux 0xa5a51eee __crc32c_le +EXPORT_SYMBOL vmlinux 0xa5d5052b blk_complete_request +EXPORT_SYMBOL vmlinux 0xa5f290db mmc_set_data_timeout +EXPORT_SYMBOL vmlinux 0xa5f7d3df iw_handler_set_thrspy +EXPORT_SYMBOL vmlinux 0xa5ffe3cc mipi_dsi_generic_write +EXPORT_SYMBOL vmlinux 0xa60994ae agp_generic_free_by_type +EXPORT_SYMBOL vmlinux 0xa60af7bf qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0xa616d4e9 eth_validate_addr +EXPORT_SYMBOL vmlinux 0xa631df8a cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xa63322c6 hdmi_audio_infoframe_pack +EXPORT_SYMBOL vmlinux 0xa63d84e4 flow_cache_fini +EXPORT_SYMBOL vmlinux 0xa63d85ab slhc_remember +EXPORT_SYMBOL vmlinux 0xa65972b8 _memcpy_toio +EXPORT_SYMBOL vmlinux 0xa66e9a1d make_kuid +EXPORT_SYMBOL vmlinux 0xa67246e3 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa67a6f6f ip6_frag_init +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa68344a4 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xa6855373 mipi_dsi_generic_read +EXPORT_SYMBOL vmlinux 0xa693f721 release_firmware +EXPORT_SYMBOL vmlinux 0xa6942d91 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0xa69fce73 gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xa6bbfd38 tty_port_open +EXPORT_SYMBOL vmlinux 0xa6c938a4 sync_filesystem +EXPORT_SYMBOL vmlinux 0xa6cbd930 skb_clone_sk +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa7004435 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xa7028a59 scsi_remove_host +EXPORT_SYMBOL vmlinux 0xa720678c lg_global_lock +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa7382ac9 nf_afinfo +EXPORT_SYMBOL vmlinux 0xa742cfc2 blk_queue_max_hw_sectors +EXPORT_SYMBOL vmlinux 0xa74f4e9b ida_simple_get +EXPORT_SYMBOL vmlinux 0xa79ffdf3 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xa7a0de1a prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0xa7a1a2d7 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xa7a8dd8a __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xa7aa6a70 __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xa7b10219 agp_alloc_page_array +EXPORT_SYMBOL vmlinux 0xa7b8db11 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xa7cdb301 tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xa7d1ee09 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0xa7e816d3 dev_close +EXPORT_SYMBOL vmlinux 0xa7f6ef10 downgrade_write +EXPORT_SYMBOL vmlinux 0xa7fdd1e5 ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xa80a6681 cpufreq_generic_suspend +EXPORT_SYMBOL vmlinux 0xa817725c put_tty_driver +EXPORT_SYMBOL vmlinux 0xa8187d53 vfs_unlink +EXPORT_SYMBOL vmlinux 0xa834557b iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0xa836bec6 migrate_page +EXPORT_SYMBOL vmlinux 0xa83c212d nf_unregister_hook +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa854bf5e netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0xa868ceec generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xa871b95a inet_bind +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa878f4b2 input_set_capability +EXPORT_SYMBOL vmlinux 0xa87dbe55 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0xa88a91b3 pci_map_rom +EXPORT_SYMBOL vmlinux 0xa8a76ea4 to_nd_btt +EXPORT_SYMBOL vmlinux 0xa8bca960 generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xa8d27878 __elv_add_request +EXPORT_SYMBOL vmlinux 0xa8d8f321 vio_enable_interrupts +EXPORT_SYMBOL vmlinux 0xa8dc6ec9 devm_gpiod_get_index +EXPORT_SYMBOL vmlinux 0xa8f292d4 devm_devfreq_register_opp_notifier +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa907176d elv_register_queue +EXPORT_SYMBOL vmlinux 0xa90a89ec compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa916b694 strnlen +EXPORT_SYMBOL vmlinux 0xa91aeba1 __devcgroup_inode_permission +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 0xa93cca81 I_BDEV +EXPORT_SYMBOL vmlinux 0xa94de2ba seq_read +EXPORT_SYMBOL vmlinux 0xa94e765f pps_unregister_source +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa976ba96 of_mdio_find_bus +EXPORT_SYMBOL vmlinux 0xa97bb55f peernet2id_alloc +EXPORT_SYMBOL vmlinux 0xa9831dd8 i2c_release_client +EXPORT_SYMBOL vmlinux 0xa99b39c2 prandom_bytes +EXPORT_SYMBOL vmlinux 0xa9b40715 ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xa9b43c32 release_sock +EXPORT_SYMBOL vmlinux 0xa9c63b69 security_xfrm_policy_free +EXPORT_SYMBOL vmlinux 0xa9d4cc9d dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xa9e8d43d agp_generic_type_to_mask_type +EXPORT_SYMBOL vmlinux 0xa9f5f30c blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xaa026b7c blk_peek_request +EXPORT_SYMBOL vmlinux 0xaa04c7ca i2c_smbus_write_byte +EXPORT_SYMBOL vmlinux 0xaa46e87e lg_local_unlock +EXPORT_SYMBOL vmlinux 0xaa60dab9 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0xaa6e4df5 _raw_write_lock_irqsave +EXPORT_SYMBOL vmlinux 0xaa6f23ad rfkill_get_led_trigger_name +EXPORT_SYMBOL vmlinux 0xaa7d12f1 get_fs_type +EXPORT_SYMBOL vmlinux 0xaa8dbca5 phy_attach_direct +EXPORT_SYMBOL vmlinux 0xaaa01a6c param_get_ullong +EXPORT_SYMBOL vmlinux 0xaac11bda inet_offloads +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaad6d92f rfkill_init_sw_state +EXPORT_SYMBOL vmlinux 0xaad79298 sk_ns_capable +EXPORT_SYMBOL vmlinux 0xaade212d sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xaae89d39 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xaaeee38c dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0xaaf12854 scm_detach_fds +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab0771e0 genphy_soft_reset +EXPORT_SYMBOL vmlinux 0xab0dc4d3 param_ops_uint +EXPORT_SYMBOL vmlinux 0xab117468 neigh_table_init +EXPORT_SYMBOL vmlinux 0xab333b77 block_commit_write +EXPORT_SYMBOL vmlinux 0xab515696 input_register_device +EXPORT_SYMBOL vmlinux 0xab5f9d86 inet6_register_protosw +EXPORT_SYMBOL vmlinux 0xab624481 jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0xab6a74c4 skb_queue_purge +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xab73f3dd pci_pme_active +EXPORT_SYMBOL vmlinux 0xab781570 fb_get_options +EXPORT_SYMBOL vmlinux 0xab8db7e3 bmap +EXPORT_SYMBOL vmlinux 0xab8ef3ee filp_open +EXPORT_SYMBOL vmlinux 0xab997898 tcf_exts_change +EXPORT_SYMBOL vmlinux 0xabc41071 simple_release_fs +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xabdf4236 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0xabf994e6 genphy_setup_forced +EXPORT_SYMBOL vmlinux 0xabfcb5ba netif_receive_skb +EXPORT_SYMBOL vmlinux 0xac053c64 devm_gpiod_get +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac26b820 _raw_write_lock +EXPORT_SYMBOL vmlinux 0xac38a3a2 phy_detach +EXPORT_SYMBOL vmlinux 0xac4c80cc jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0xac4ef57e __lock_buffer +EXPORT_SYMBOL vmlinux 0xac5005c3 seq_putc +EXPORT_SYMBOL vmlinux 0xac6993e9 block_truncate_page +EXPORT_SYMBOL vmlinux 0xac77304e starget_for_each_device +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb53ea0 swiotlb_unmap_sg +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xacc5fdf8 of_phy_find_device +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 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad164875 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xad2af0c8 gen_pool_free +EXPORT_SYMBOL vmlinux 0xad45d075 skb_pad +EXPORT_SYMBOL vmlinux 0xad4c1b51 flex_array_alloc +EXPORT_SYMBOL vmlinux 0xad50cebb i8253_lock +EXPORT_SYMBOL vmlinux 0xad568d4c generic_permission +EXPORT_SYMBOL vmlinux 0xad58f4c2 security_path_chown +EXPORT_SYMBOL vmlinux 0xad5d2ca8 __inode_permission +EXPORT_SYMBOL vmlinux 0xad707dcd frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xad710980 mmc_detect_card_removed +EXPORT_SYMBOL vmlinux 0xad78ec2c security_d_instantiate +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad84f615 sock_no_sendpage +EXPORT_SYMBOL vmlinux 0xad860185 giveup_altivec +EXPORT_SYMBOL vmlinux 0xad961743 __wait_on_bit +EXPORT_SYMBOL vmlinux 0xadbb4969 abx500_mask_and_set_register_interruptible +EXPORT_SYMBOL vmlinux 0xadf2a5de dev_alert +EXPORT_SYMBOL vmlinux 0xadf32ac6 pci_find_hose_for_OF_device +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae061d0b zpool_register_driver +EXPORT_SYMBOL vmlinux 0xae290728 udplite_prot +EXPORT_SYMBOL vmlinux 0xae316730 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xae358236 fence_signal +EXPORT_SYMBOL vmlinux 0xae3f3d8a dqput +EXPORT_SYMBOL vmlinux 0xae4a1bda csum_tcpudp_nofold +EXPORT_SYMBOL vmlinux 0xae4b1c10 sk_reset_timer +EXPORT_SYMBOL vmlinux 0xae4eb2b7 of_find_node_by_name +EXPORT_SYMBOL vmlinux 0xae4ffac6 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0xae545f06 _raw_write_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xae6fc152 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0xae85d5b4 pci_enable_device +EXPORT_SYMBOL vmlinux 0xae9db04f pci_remove_bus +EXPORT_SYMBOL vmlinux 0xaeaf1dd2 jbd2__journal_restart +EXPORT_SYMBOL vmlinux 0xaec35db4 flex_array_free +EXPORT_SYMBOL vmlinux 0xaec6a07b audit_log +EXPORT_SYMBOL vmlinux 0xaed1356a dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xaedad8f5 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xaee4b670 phy_set_max_speed +EXPORT_SYMBOL vmlinux 0xaefa5408 dmam_free_coherent +EXPORT_SYMBOL vmlinux 0xaf063510 _raw_spin_lock_bh +EXPORT_SYMBOL vmlinux 0xaf1b778e dev_notice +EXPORT_SYMBOL vmlinux 0xaf1cc2b4 phy_register_fixup +EXPORT_SYMBOL vmlinux 0xaf224e00 fsync_bdev +EXPORT_SYMBOL vmlinux 0xaf2d872c prepare_to_wait +EXPORT_SYMBOL vmlinux 0xaf3cc965 simple_write_end +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf4a29b3 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0xaf6ae696 kstrndup +EXPORT_SYMBOL vmlinux 0xaf8ae3ad tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xaf9340a7 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0xaf945796 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xaf9875e6 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xafa6f10f ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0xafb0fd09 gen_pool_create +EXPORT_SYMBOL vmlinux 0xafc09950 param_get_bool +EXPORT_SYMBOL vmlinux 0xaffac124 vga_set_legacy_decoding +EXPORT_SYMBOL vmlinux 0xaffbbc61 tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0xafff3d1d mempool_alloc +EXPORT_SYMBOL vmlinux 0xb013d100 __free_pages +EXPORT_SYMBOL vmlinux 0xb02f7589 ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0xb040ebd7 ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0xb04241b4 ida_simple_remove +EXPORT_SYMBOL vmlinux 0xb049ff12 tty_mutex +EXPORT_SYMBOL vmlinux 0xb05c2006 iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb061bf0c __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xb080c3f2 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xb09e85cd tty_register_driver +EXPORT_SYMBOL vmlinux 0xb0a0da0c rational_best_approximation +EXPORT_SYMBOL vmlinux 0xb0b112ff tcp_read_sock +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0e5b1bc sg_miter_next +EXPORT_SYMBOL vmlinux 0xb10646a8 param_ops_ullong +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +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 0xb16402f2 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb165ef45 __irq_regs +EXPORT_SYMBOL vmlinux 0xb1872262 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xb189ae1c blk_queue_make_request +EXPORT_SYMBOL vmlinux 0xb189fc32 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0xb1942b4d cont_write_begin +EXPORT_SYMBOL vmlinux 0xb1b4bff6 dcb_ieee_getapp_mask +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 0xb1ea343c bdget_disk +EXPORT_SYMBOL vmlinux 0xb1f9a2c7 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xb2056e6b bdgrab +EXPORT_SYMBOL vmlinux 0xb20a799a nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xb22c499b d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb297bbfd bio_phys_segments +EXPORT_SYMBOL vmlinux 0xb29893d7 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0xb29e8a1a serio_unregister_port +EXPORT_SYMBOL vmlinux 0xb29f92b1 netif_carrier_on +EXPORT_SYMBOL vmlinux 0xb2be6e92 netdev_stats_to_stats64 +EXPORT_SYMBOL vmlinux 0xb2d993f1 mmc_wait_for_cmd +EXPORT_SYMBOL vmlinux 0xb2ec12d4 nf_setsockopt +EXPORT_SYMBOL vmlinux 0xb2f43524 pci_fixup_device +EXPORT_SYMBOL vmlinux 0xb2f456a1 fb_show_logo +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb30b9434 phy_connect_direct +EXPORT_SYMBOL vmlinux 0xb32e0bb1 agp_generic_insert_memory +EXPORT_SYMBOL vmlinux 0xb3382494 fence_signal_locked +EXPORT_SYMBOL vmlinux 0xb39a2a99 arp_send +EXPORT_SYMBOL vmlinux 0xb39ef9ad register_console +EXPORT_SYMBOL vmlinux 0xb3a3e738 tty_throttle +EXPORT_SYMBOL vmlinux 0xb3d0c7c9 inode_set_flags +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3e86818 copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3fc4187 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xb40749a6 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0xb41f70dd submit_bio_wait +EXPORT_SYMBOL vmlinux 0xb423dba1 console_blanked +EXPORT_SYMBOL vmlinux 0xb42cda86 vmalloc_to_page +EXPORT_SYMBOL vmlinux 0xb469d982 scsi_cmd_get_serial +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 0xb48a7009 get_thermal_instance +EXPORT_SYMBOL vmlinux 0xb4ae4112 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0xb4dd5cf9 agp_backend_acquire +EXPORT_SYMBOL vmlinux 0xb4f1d831 find_lock_entry +EXPORT_SYMBOL vmlinux 0xb4f46ea1 sk_receive_skb +EXPORT_SYMBOL vmlinux 0xb4f70d42 ppp_unit_number +EXPORT_SYMBOL vmlinux 0xb52ad44f arp_xmit +EXPORT_SYMBOL vmlinux 0xb553d1f2 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0xb5625ead ip6_xmit +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb57a9a1f sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xb57ce990 blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5a7f414 inet_del_protocol +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b1a837 done_path_create +EXPORT_SYMBOL vmlinux 0xb5ca1c46 slhc_free +EXPORT_SYMBOL vmlinux 0xb5e58868 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0xb5ef92a1 param_set_charp +EXPORT_SYMBOL vmlinux 0xb5f3b92f pci_get_device +EXPORT_SYMBOL vmlinux 0xb60f8520 devm_ioremap +EXPORT_SYMBOL vmlinux 0xb61857c1 kfree_skb +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb625f120 mmc_can_reset +EXPORT_SYMBOL vmlinux 0xb6420e6c of_mdio_parse_addr +EXPORT_SYMBOL vmlinux 0xb663949f sock_no_connect +EXPORT_SYMBOL vmlinux 0xb66c162c lwtunnel_output +EXPORT_SYMBOL vmlinux 0xb6731456 simple_follow_link +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb68bfa9d node_states +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb69492ec pskb_expand_head +EXPORT_SYMBOL vmlinux 0xb69ee335 ppp_channel_index +EXPORT_SYMBOL vmlinux 0xb6a1c4bb netdev_update_features +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6abb71f unregister_shrinker +EXPORT_SYMBOL vmlinux 0xb6ac5734 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0xb6e0d90e put_io_context +EXPORT_SYMBOL vmlinux 0xb6edd8cf decrementer_clockevent +EXPORT_SYMBOL vmlinux 0xb6f21a6e dm_register_target +EXPORT_SYMBOL vmlinux 0xb6f69ffd input_mt_destroy_slots +EXPORT_SYMBOL vmlinux 0xb70511f2 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xb73be0cf skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb75cb1a0 netpoll_send_udp +EXPORT_SYMBOL vmlinux 0xb75d2b77 build_skb +EXPORT_SYMBOL vmlinux 0xb76c2a1c skb_pull +EXPORT_SYMBOL vmlinux 0xb76fbfc4 unregister_md_personality +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb772b126 proto_register +EXPORT_SYMBOL vmlinux 0xb77932eb flex_array_clear +EXPORT_SYMBOL vmlinux 0xb786f531 twl6040_get_sysclk +EXPORT_SYMBOL vmlinux 0xb788217d hdmi_infoframe_log +EXPORT_SYMBOL vmlinux 0xb7a6f4c1 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xb7b9299c bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0xb7c32d51 update_devfreq +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7cd7d7e pci_set_mwi +EXPORT_SYMBOL vmlinux 0xb7f39d33 padata_stop +EXPORT_SYMBOL vmlinux 0xb80f11ec d_make_root +EXPORT_SYMBOL vmlinux 0xb8106823 sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xb8269c8e gen_pool_destroy +EXPORT_SYMBOL vmlinux 0xb83d26a2 inet_accept +EXPORT_SYMBOL vmlinux 0xb841381b pm8606_osc_disable +EXPORT_SYMBOL vmlinux 0xb849a69a sock_from_file +EXPORT_SYMBOL vmlinux 0xb861a781 netdev_crit +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb88cd801 iw_handler_set_spy +EXPORT_SYMBOL vmlinux 0xb89c6e8f nvm_dev_factory +EXPORT_SYMBOL vmlinux 0xb8af5f2f netif_rx_ni +EXPORT_SYMBOL vmlinux 0xb8b04cf9 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0xb8b53880 from_kgid +EXPORT_SYMBOL vmlinux 0xb8cb5ece nvdimm_revalidate_disk +EXPORT_SYMBOL vmlinux 0xb9056f61 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xb907513f unpoison_memory +EXPORT_SYMBOL vmlinux 0xb910a0ea netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xb93314e1 skb_checksum +EXPORT_SYMBOL vmlinux 0xb94311d2 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0xb96cc081 inet_sendmsg +EXPORT_SYMBOL vmlinux 0xb97140ab pci_reenable_device +EXPORT_SYMBOL vmlinux 0xb9848de9 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xb99ed3b1 vga_con +EXPORT_SYMBOL vmlinux 0xb9a29008 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xb9b07d5a unregister_nls +EXPORT_SYMBOL vmlinux 0xb9b0928a inet_register_protosw +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f5a36a kill_pid +EXPORT_SYMBOL vmlinux 0xb9fb9673 tcp_disconnect +EXPORT_SYMBOL vmlinux 0xb9ff5500 seq_open +EXPORT_SYMBOL vmlinux 0xba085137 register_shrinker +EXPORT_SYMBOL vmlinux 0xba2ffec2 rps_sock_flow_table +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba51a4b9 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0xba615797 __block_write_begin +EXPORT_SYMBOL vmlinux 0xba75ef48 request_firmware +EXPORT_SYMBOL vmlinux 0xba7c555b tty_port_close_start +EXPORT_SYMBOL vmlinux 0xba9f395e mmc_power_save_host +EXPORT_SYMBOL vmlinux 0xbaacdffd mmc_of_parse_voltage +EXPORT_SYMBOL vmlinux 0xbac2966b qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0xbac96634 md_register_thread +EXPORT_SYMBOL vmlinux 0xbad4a7e6 phy_start +EXPORT_SYMBOL vmlinux 0xbaf1836b bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0xbaf2654b remove_arg_zero +EXPORT_SYMBOL vmlinux 0xbaf963d2 scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb11a302 nd_region_acquire_lane +EXPORT_SYMBOL vmlinux 0xbb237e33 input_set_abs_params +EXPORT_SYMBOL vmlinux 0xbb2c472c powerpc_debugfs_root +EXPORT_SYMBOL vmlinux 0xbb325c50 get_empty_filp +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 0xbb7c292a mpage_writepages +EXPORT_SYMBOL vmlinux 0xbb93684a xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xbb962505 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xbb99125c get_default_font +EXPORT_SYMBOL vmlinux 0xbbaeb559 memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0xbbb5b7b8 init_net +EXPORT_SYMBOL vmlinux 0xbbb6b412 unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0xbbd46719 generic_file_fsync +EXPORT_SYMBOL vmlinux 0xbc0098b9 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xbc0e2e3a xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xbc274a1c inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0xbc29fc0e invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0xbc316de4 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0xbc358717 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0xbc3ad9f1 pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0xbc6bd492 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xbc857dd1 napi_complete_done +EXPORT_SYMBOL vmlinux 0xbc982b06 eeh_subsystem_flags +EXPORT_SYMBOL vmlinux 0xbc9efbe5 skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xbca0e598 path_noexec +EXPORT_SYMBOL vmlinux 0xbcafe7f1 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0xbcc308bb strnlen_user +EXPORT_SYMBOL vmlinux 0xbcd9f248 of_get_ibm_chip_id +EXPORT_SYMBOL vmlinux 0xbcf150f9 xor_altivec_5 +EXPORT_SYMBOL vmlinux 0xbd1227f5 in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd199c77 file_remove_privs +EXPORT_SYMBOL vmlinux 0xbd243667 wireless_spy_update +EXPORT_SYMBOL vmlinux 0xbd3c11dd xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0xbd462b55 __kfifo_init +EXPORT_SYMBOL vmlinux 0xbd471750 uart_add_one_port +EXPORT_SYMBOL vmlinux 0xbd48a45c simple_rmdir +EXPORT_SYMBOL vmlinux 0xbd6d79f1 __tracepoint_fence_annotate_wait_on +EXPORT_SYMBOL vmlinux 0xbd728b24 swiotlb_map_sg +EXPORT_SYMBOL vmlinux 0xbd8b377a bio_uncopy_user +EXPORT_SYMBOL vmlinux 0xbd8e1098 tso_count_descs +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdb983fc netlink_unicast +EXPORT_SYMBOL vmlinux 0xbdc0fcaa xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0xbdd00efd key_link +EXPORT_SYMBOL vmlinux 0xbde02def migrate_page_copy +EXPORT_SYMBOL vmlinux 0xbdf2ccaf __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xbdf60d2f dev_uc_sync +EXPORT_SYMBOL vmlinux 0xbdfc3a22 skb_copy +EXPORT_SYMBOL vmlinux 0xbdfda841 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0xbe0d944d ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xbe11a3cd __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe2da6b6 blk_end_request +EXPORT_SYMBOL vmlinux 0xbe2df2d4 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xbe32c9c6 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0xbe498b98 iput +EXPORT_SYMBOL vmlinux 0xbe55f656 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xbe5c5c66 simple_pin_fs +EXPORT_SYMBOL vmlinux 0xbe605940 i2c_add_adapter +EXPORT_SYMBOL vmlinux 0xbe6331a8 md_unregister_thread +EXPORT_SYMBOL vmlinux 0xbe65f6ec ata_link_printk +EXPORT_SYMBOL vmlinux 0xbe6cd53d tcp_prot +EXPORT_SYMBOL vmlinux 0xbea962f9 i2c_smbus_write_word_data +EXPORT_SYMBOL vmlinux 0xbee2c963 __init_rwsem +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbefc6a89 insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0xbf0ef16a mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0xbf20c06e of_find_net_device_by_node +EXPORT_SYMBOL vmlinux 0xbf441508 nvdimm_bus_unlock +EXPORT_SYMBOL vmlinux 0xbf59ccce md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf925c42 idr_init +EXPORT_SYMBOL vmlinux 0xbf9bbbda __i2c_transfer +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfa4dbbe mpage_writepage +EXPORT_SYMBOL vmlinux 0xbfabfe59 __debugger_iabr_match +EXPORT_SYMBOL vmlinux 0xbfac0e3c tcp_child_process +EXPORT_SYMBOL vmlinux 0xbfb8b0b7 _raw_read_lock_irqsave +EXPORT_SYMBOL vmlinux 0xbfb9102b kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xbfc177bc iowrite32_rep +EXPORT_SYMBOL vmlinux 0xbfd3d896 mntget +EXPORT_SYMBOL vmlinux 0xbfe3fedc key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbff5e140 blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0xbff8182c plpar_hcall_norets +EXPORT_SYMBOL vmlinux 0xc01a0c40 register_qdisc +EXPORT_SYMBOL vmlinux 0xc06a5bd5 block_write_begin +EXPORT_SYMBOL vmlinux 0xc0763484 rfkill_blocked +EXPORT_SYMBOL vmlinux 0xc0823e4c twl_i2c_write +EXPORT_SYMBOL vmlinux 0xc09666e1 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0xc098391a dev_get_flags +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0c8765d security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xc0e9de21 poll_initwait +EXPORT_SYMBOL vmlinux 0xc0fba5b9 giveup_fpu +EXPORT_SYMBOL vmlinux 0xc117533e sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xc117cd93 devm_gpio_request +EXPORT_SYMBOL vmlinux 0xc12159e4 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0xc12a7d1b page_readlink +EXPORT_SYMBOL vmlinux 0xc15a44c6 memzero_explicit +EXPORT_SYMBOL vmlinux 0xc15b51c1 mmc_gpiod_request_cd_irq +EXPORT_SYMBOL vmlinux 0xc1799d7d dquot_quota_off +EXPORT_SYMBOL vmlinux 0xc17d7d02 inetdev_by_index +EXPORT_SYMBOL vmlinux 0xc1810279 path_is_under +EXPORT_SYMBOL vmlinux 0xc18a7ea7 free_page_put_link +EXPORT_SYMBOL vmlinux 0xc1a84e0f inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xc1b431a2 pnv_pci_get_gpu_dev +EXPORT_SYMBOL vmlinux 0xc1be3c8f inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xc1c59674 backlight_device_unregister +EXPORT_SYMBOL vmlinux 0xc1cc2542 proc_symlink +EXPORT_SYMBOL vmlinux 0xc1d837f3 generic_fillattr +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1ed9532 __vfs_write +EXPORT_SYMBOL vmlinux 0xc1f60887 input_mt_report_pointer_emulation +EXPORT_SYMBOL vmlinux 0xc209d270 mmc_can_trim +EXPORT_SYMBOL vmlinux 0xc21247d4 input_mt_assign_slots +EXPORT_SYMBOL vmlinux 0xc228a8b1 sock_kmalloc +EXPORT_SYMBOL vmlinux 0xc2424641 agp3_generic_cleanup +EXPORT_SYMBOL vmlinux 0xc2484d92 phy_stop +EXPORT_SYMBOL vmlinux 0xc28673bf kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0xc29bf967 strspn +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2bdee82 security_path_unlink +EXPORT_SYMBOL vmlinux 0xc2d54ba0 param_ops_ushort +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc308ea9d devfreq_unregister_opp_notifier +EXPORT_SYMBOL vmlinux 0xc310b981 strnstr +EXPORT_SYMBOL vmlinux 0xc329eece netif_rx +EXPORT_SYMBOL vmlinux 0xc3396ad8 inet6_ioctl +EXPORT_SYMBOL vmlinux 0xc33a5d19 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0xc34dd699 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0xc3565cd8 key_payload_reserve +EXPORT_SYMBOL vmlinux 0xc35ac358 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xc35c0871 input_inject_event +EXPORT_SYMBOL vmlinux 0xc361baef scsi_is_target_device +EXPORT_SYMBOL vmlinux 0xc36c1d3b ata_port_printk +EXPORT_SYMBOL vmlinux 0xc3792bbf __inet_hash +EXPORT_SYMBOL vmlinux 0xc37d36ec address_space_init_once +EXPORT_SYMBOL vmlinux 0xc37d987f tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0xc3807175 of_create_pci_dev +EXPORT_SYMBOL vmlinux 0xc3b8c828 ip_ct_attach +EXPORT_SYMBOL vmlinux 0xc3ba6d45 gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xc3be5c85 tc_classify +EXPORT_SYMBOL vmlinux 0xc3c2be91 mipi_dsi_packet_format_is_short +EXPORT_SYMBOL vmlinux 0xc3d622b2 ping_prot +EXPORT_SYMBOL vmlinux 0xc3f9515d scsi_register_interface +EXPORT_SYMBOL vmlinux 0xc40650c2 ns_capable +EXPORT_SYMBOL vmlinux 0xc417b7f7 of_parse_phandle +EXPORT_SYMBOL vmlinux 0xc41ea520 flush_dcache_page +EXPORT_SYMBOL vmlinux 0xc42a92bb inet_ioctl +EXPORT_SYMBOL vmlinux 0xc44298b9 simple_dname +EXPORT_SYMBOL vmlinux 0xc45486d3 __nd_driver_register +EXPORT_SYMBOL vmlinux 0xc45ffb17 phy_suspend +EXPORT_SYMBOL vmlinux 0xc47cdf9c _raw_write_lock_bh +EXPORT_SYMBOL vmlinux 0xc47ea113 put_filp +EXPORT_SYMBOL vmlinux 0xc47ef0e9 input_mt_get_slot_by_key +EXPORT_SYMBOL vmlinux 0xc48307db lz4_decompress +EXPORT_SYMBOL vmlinux 0xc48c7c61 sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4a266f4 get_acl +EXPORT_SYMBOL vmlinux 0xc4b58d18 lro_receive_skb +EXPORT_SYMBOL vmlinux 0xc4b9f59e framebuffer_release +EXPORT_SYMBOL vmlinux 0xc4c25cc1 param_get_string +EXPORT_SYMBOL vmlinux 0xc4cb4530 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xc4d29254 copy_from_iter +EXPORT_SYMBOL vmlinux 0xc51031a4 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0xc5240825 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0xc5245310 user_path_create +EXPORT_SYMBOL vmlinux 0xc52c450a unlock_new_inode +EXPORT_SYMBOL vmlinux 0xc543b49d bitmap_close_sync +EXPORT_SYMBOL vmlinux 0xc5534d64 ioread16 +EXPORT_SYMBOL vmlinux 0xc55de23c percpu_counter_set +EXPORT_SYMBOL vmlinux 0xc5690a9c input_close_device +EXPORT_SYMBOL vmlinux 0xc576d684 netif_skb_features +EXPORT_SYMBOL vmlinux 0xc59578d8 tcp_mtup_init +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5cbba7c pcim_iomap +EXPORT_SYMBOL vmlinux 0xc5d0a45a posix_test_lock +EXPORT_SYMBOL vmlinux 0xc5d9c46c agp_try_unsupported_boot +EXPORT_SYMBOL vmlinux 0xc5fdd7ef freezing_slow_path +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc6099ffb udp_proc_unregister +EXPORT_SYMBOL vmlinux 0xc6148edd dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0xc62a226b iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0xc631580a console_unlock +EXPORT_SYMBOL vmlinux 0xc65abeb7 agp3_generic_sizes +EXPORT_SYMBOL vmlinux 0xc663b075 __ioremap +EXPORT_SYMBOL vmlinux 0xc665bb6f __napi_complete +EXPORT_SYMBOL vmlinux 0xc666a132 crc_t10dif +EXPORT_SYMBOL vmlinux 0xc6772da2 radix_tree_lookup_slot +EXPORT_SYMBOL vmlinux 0xc6774da5 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xc69cd65e end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xc6b22c71 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0xc6c657fd pm860x_set_bits +EXPORT_SYMBOL vmlinux 0xc6cb465a __kfifo_max_r +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6d14f68 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0xc6d150b3 try_to_release_page +EXPORT_SYMBOL vmlinux 0xc6d2d7ad km_state_notify +EXPORT_SYMBOL vmlinux 0xc6d76ad7 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xc6e1b530 msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0xc6f70708 vme_dma_list_free +EXPORT_SYMBOL vmlinux 0xc70d9e9e set_page_dirty +EXPORT_SYMBOL vmlinux 0xc7147226 netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xc7208c3a serial8250_resume_port +EXPORT_SYMBOL vmlinux 0xc741a775 generic_listxattr +EXPORT_SYMBOL vmlinux 0xc74b0739 of_parse_phandle_with_fixed_args +EXPORT_SYMBOL vmlinux 0xc7563db8 twl_set_regcache_bypass +EXPORT_SYMBOL vmlinux 0xc7591cf0 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0xc75af332 md_integrity_register +EXPORT_SYMBOL vmlinux 0xc76a0caa cdev_add +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 0xc7c96631 netdev_warn +EXPORT_SYMBOL vmlinux 0xc7de0601 __register_chrdev +EXPORT_SYMBOL vmlinux 0xc7e8855b param_ops_string +EXPORT_SYMBOL vmlinux 0xc7f39b15 irq_stat +EXPORT_SYMBOL vmlinux 0xc7f99892 skb_push +EXPORT_SYMBOL vmlinux 0xc801451d tcf_exts_validate +EXPORT_SYMBOL vmlinux 0xc8295bbf scsi_print_sense +EXPORT_SYMBOL vmlinux 0xc83b4d5b posix_acl_from_mode +EXPORT_SYMBOL vmlinux 0xc83bad03 is_nd_btt +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 0xc862bcdf freeze_super +EXPORT_SYMBOL vmlinux 0xc86bcf02 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0xc86d6928 dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc87c2f65 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0xc881b411 inet6_getname +EXPORT_SYMBOL vmlinux 0xc890c008 zlib_deflateEnd +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b50763 bio_add_page +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8b914ff vme_slave_request +EXPORT_SYMBOL vmlinux 0xc8c3274a blk_queue_io_min +EXPORT_SYMBOL vmlinux 0xc8d99cd1 sock_update_memcg +EXPORT_SYMBOL vmlinux 0xc8ede484 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0xc8ef1622 set_user_nice +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9125d18 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xc929904c dev_mc_unsync +EXPORT_SYMBOL vmlinux 0xc93fbc54 wait_for_completion_io +EXPORT_SYMBOL vmlinux 0xc9602b39 dev_change_carrier +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc978479a xz_dec_run +EXPORT_SYMBOL vmlinux 0xc983d006 fd_install +EXPORT_SYMBOL vmlinux 0xc984e4b0 scmd_printk +EXPORT_SYMBOL vmlinux 0xc993abef __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0xc9988282 seq_hex_dump +EXPORT_SYMBOL vmlinux 0xc99e2a55 twl_rev +EXPORT_SYMBOL vmlinux 0xc9f1fdd5 locks_free_lock +EXPORT_SYMBOL vmlinux 0xc9fa4632 agp_generic_destroy_page +EXPORT_SYMBOL vmlinux 0xc9fbab1a vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0xc9ff5ce2 i2c_smbus_write_i2c_block_data +EXPORT_SYMBOL vmlinux 0xca075a47 sock_setsockopt +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca117abb pm860x_page_reg_write +EXPORT_SYMBOL vmlinux 0xca17245c dst_discard_out +EXPORT_SYMBOL vmlinux 0xca1e5152 of_device_is_compatible +EXPORT_SYMBOL vmlinux 0xca293368 tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0xca2b1cd6 ida_pre_get +EXPORT_SYMBOL vmlinux 0xca315bdb neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xca33b9ec ps2_begin_command +EXPORT_SYMBOL vmlinux 0xca3663d7 ps2_cmd_aborted +EXPORT_SYMBOL vmlinux 0xca3b28c6 store_vr_state +EXPORT_SYMBOL vmlinux 0xca57841d set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0xca5d2e55 phy_ethtool_set_wol +EXPORT_SYMBOL vmlinux 0xca5ee09a vme_free_consistent +EXPORT_SYMBOL vmlinux 0xca766009 ip_check_defrag +EXPORT_SYMBOL vmlinux 0xca832efe kmalloc_order +EXPORT_SYMBOL vmlinux 0xca859641 kobject_del +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xca9808a6 register_netdev +EXPORT_SYMBOL vmlinux 0xcaa3f75a xfrm_init_state +EXPORT_SYMBOL vmlinux 0xcab429e1 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0xcab7b84a mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0xcabffc6c compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xcace6297 idr_is_empty +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb01b252 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xcb0288ea ledtrig_cpu +EXPORT_SYMBOL vmlinux 0xcb28633d agp_free_memory +EXPORT_SYMBOL vmlinux 0xcb59da70 input_mt_report_finger_count +EXPORT_SYMBOL vmlinux 0xcb61e18f load_nls +EXPORT_SYMBOL vmlinux 0xcb6c67a3 kern_unmount +EXPORT_SYMBOL vmlinux 0xcb936989 hdmi_infoframe_pack +EXPORT_SYMBOL vmlinux 0xcb9a5334 register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xcb9d2a6c security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc3b94e eeh_check_failure +EXPORT_SYMBOL vmlinux 0xcbc5c2ff grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbceca9c neigh_xmit +EXPORT_SYMBOL vmlinux 0xcc17504d _raw_read_unlock_irqrestore +EXPORT_SYMBOL vmlinux 0xcc17aac9 blk_init_tags +EXPORT_SYMBOL vmlinux 0xcc1e6009 of_match_node +EXPORT_SYMBOL vmlinux 0xcc215573 flex_array_shrink +EXPORT_SYMBOL vmlinux 0xcc248d26 serial8250_suspend_port +EXPORT_SYMBOL vmlinux 0xcc2568ed d_instantiate +EXPORT_SYMBOL vmlinux 0xcc3cfde5 unlock_buffer +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc5a5823 tty_port_init +EXPORT_SYMBOL vmlinux 0xcc6d147e vme_register_error_handler +EXPORT_SYMBOL vmlinux 0xcc779aef scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0xcc8ba369 set_bh_page +EXPORT_SYMBOL vmlinux 0xcc99c31f xfrm_lookup +EXPORT_SYMBOL vmlinux 0xcca3c1d4 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0xcca6b9b1 __pci_register_driver +EXPORT_SYMBOL vmlinux 0xccaf3e0e search_binary_handler +EXPORT_SYMBOL vmlinux 0xccc21f5e input_get_new_minor +EXPORT_SYMBOL vmlinux 0xccdff804 scsi_execute +EXPORT_SYMBOL vmlinux 0xccf7d4ed ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xcd000b95 tcp_req_err +EXPORT_SYMBOL vmlinux 0xcd0529c7 _raw_spin_lock_irq +EXPORT_SYMBOL vmlinux 0xcd0c7263 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xcd20667a kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0xcd20d3e0 xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd28dd35 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0xcd370a91 cfb_imageblit +EXPORT_SYMBOL vmlinux 0xcd5597ae blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd7ede2a seqno_fence_ops +EXPORT_SYMBOL vmlinux 0xcd86c87f __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xcdac2e49 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc82810 d_alloc +EXPORT_SYMBOL vmlinux 0xce0819fb abx500_remove_ops +EXPORT_SYMBOL vmlinux 0xce0e47a9 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xce134c6b pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce3563c6 page_follow_link_light +EXPORT_SYMBOL vmlinux 0xce3b3f09 profile_pc +EXPORT_SYMBOL vmlinux 0xce3c08db __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0xce427aee __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0xce4e47b6 __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0xce550f38 __secpath_destroy +EXPORT_SYMBOL vmlinux 0xce593cad jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce5f3a32 tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0xce763d19 path_get +EXPORT_SYMBOL vmlinux 0xce7850e1 crc32_le_shift +EXPORT_SYMBOL vmlinux 0xce8033fd blk_init_queue_node +EXPORT_SYMBOL vmlinux 0xce89fb56 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0xce903fb4 inc_nlink +EXPORT_SYMBOL vmlinux 0xcea591da thaw_bdev +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xceb16ce8 of_device_is_available +EXPORT_SYMBOL vmlinux 0xcecce655 unregister_qdisc +EXPORT_SYMBOL vmlinux 0xced777cb proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcefaba24 inet_sock_destruct +EXPORT_SYMBOL vmlinux 0xcefcd99a serial8250_unregister_port +EXPORT_SYMBOL vmlinux 0xcf093473 dqget +EXPORT_SYMBOL vmlinux 0xcf0d1ae1 mdiobus_alloc_size +EXPORT_SYMBOL vmlinux 0xcf1b7497 install_exec_creds +EXPORT_SYMBOL vmlinux 0xcf2152b0 of_platform_device_create +EXPORT_SYMBOL vmlinux 0xcf2e3c0b up_read +EXPORT_SYMBOL vmlinux 0xcf33de42 devm_devfreq_add_device +EXPORT_SYMBOL vmlinux 0xcf43991d lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xcf8404d1 inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0xcf89ac18 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0xcf925b54 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xcf97d673 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xcfb2fc8a generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xcfcbd369 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0xcfd1460f sg_miter_skip +EXPORT_SYMBOL vmlinux 0xd0080a71 __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xd012cbe0 __brelse +EXPORT_SYMBOL vmlinux 0xd0153f9b dev_uc_del +EXPORT_SYMBOL vmlinux 0xd02e5816 inet_frags_init +EXPORT_SYMBOL vmlinux 0xd03024a9 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0xd0674e44 generic_getxattr +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd07543ae xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xd07b1873 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xd08a5067 scsi_register +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 0xd0c74473 pci_iomap_range +EXPORT_SYMBOL vmlinux 0xd0cd3ace netpoll_setup +EXPORT_SYMBOL vmlinux 0xd0d007a9 ilookup5 +EXPORT_SYMBOL vmlinux 0xd0e9e6ba xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xd0ee38b8 schedule_timeout_uninterruptible +EXPORT_SYMBOL vmlinux 0xd0ee99c8 kernel_accept +EXPORT_SYMBOL vmlinux 0xd0f049e6 read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0xd0f34d9e vga_get +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 0xd0ff2de8 vm_insert_page +EXPORT_SYMBOL vmlinux 0xd102c395 locks_copy_lock +EXPORT_SYMBOL vmlinux 0xd10a4d2a add_random_ready_callback +EXPORT_SYMBOL vmlinux 0xd1262886 rtas_data_buf +EXPORT_SYMBOL vmlinux 0xd12fc02f tty_unlock +EXPORT_SYMBOL vmlinux 0xd13937a2 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0xd1469606 poll_freewait +EXPORT_SYMBOL vmlinux 0xd14b7192 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0xd152d7e7 inode_dio_wait +EXPORT_SYMBOL vmlinux 0xd15e3e10 pci_find_capability +EXPORT_SYMBOL vmlinux 0xd163abab nd_dev_to_uuid +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd182c2d4 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xd1835a39 of_parse_phandle_with_args +EXPORT_SYMBOL vmlinux 0xd185c0ee inet_dgram_connect +EXPORT_SYMBOL vmlinux 0xd18d477f inet_add_offload +EXPORT_SYMBOL vmlinux 0xd1a568af netdev_notice +EXPORT_SYMBOL vmlinux 0xd1b7d69e inet_release +EXPORT_SYMBOL vmlinux 0xd1c37514 blk_rq_set_block_pc +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1f03740 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xd20c3937 flex_array_get +EXPORT_SYMBOL vmlinux 0xd213bf7a mmc_unregister_driver +EXPORT_SYMBOL vmlinux 0xd228ce2b twl6040_reg_write +EXPORT_SYMBOL vmlinux 0xd22bef61 fs_bio_set +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd259648b tcp_sync_mss +EXPORT_SYMBOL vmlinux 0xd25d4f74 console_blank_hook +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd2805941 genphy_resume +EXPORT_SYMBOL vmlinux 0xd2980284 prepare_binprm +EXPORT_SYMBOL vmlinux 0xd2ac3221 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0xd2b09ce5 __kmalloc +EXPORT_SYMBOL vmlinux 0xd2d9595f sock_no_socketpair +EXPORT_SYMBOL vmlinux 0xd2da1048 register_netdevice_notifier +EXPORT_SYMBOL vmlinux 0xd2dfe1a8 simple_statfs +EXPORT_SYMBOL vmlinux 0xd2f746c1 vfs_readv +EXPORT_SYMBOL vmlinux 0xd3081f45 kernel_listen +EXPORT_SYMBOL vmlinux 0xd3089b60 swiotlb_dma_mapping_error +EXPORT_SYMBOL vmlinux 0xd31ccb06 of_machine_is_compatible +EXPORT_SYMBOL vmlinux 0xd35103cb tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xd36e3d59 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0xd382f96f xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0xd383727f __nd_iostat_start +EXPORT_SYMBOL vmlinux 0xd39f7ed6 mipi_dsi_host_unregister +EXPORT_SYMBOL vmlinux 0xd3ae97c9 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xd3b93201 nf_log_set +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3ccb4a7 vfs_read +EXPORT_SYMBOL vmlinux 0xd3d046bb scsi_ioctl +EXPORT_SYMBOL vmlinux 0xd3d48050 init_task +EXPORT_SYMBOL vmlinux 0xd42812ab remove_proc_entry +EXPORT_SYMBOL vmlinux 0xd448dab6 mark_page_accessed +EXPORT_SYMBOL vmlinux 0xd44b7e21 to_tm +EXPORT_SYMBOL vmlinux 0xd45c1580 dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xd45cc6ca bin2hex +EXPORT_SYMBOL vmlinux 0xd47ebf44 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0xd48316f9 __register_nls +EXPORT_SYMBOL vmlinux 0xd4879dbd md_done_sync +EXPORT_SYMBOL vmlinux 0xd48eab68 tcf_register_action +EXPORT_SYMBOL vmlinux 0xd48fdeef dql_completed +EXPORT_SYMBOL vmlinux 0xd4a1f1e1 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xd4a43f41 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0xd4c07bab sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xd4d56cdf tcp_release_cb +EXPORT_SYMBOL vmlinux 0xd4fe05c3 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0xd503856f simple_dentry_operations +EXPORT_SYMBOL vmlinux 0xd5182188 tty_port_close +EXPORT_SYMBOL vmlinux 0xd5187bb1 i2c_smbus_write_byte_data +EXPORT_SYMBOL vmlinux 0xd52b45a9 agp_collect_device_status +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd575b737 ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xd594c904 get_vaddr_frames +EXPORT_SYMBOL vmlinux 0xd5d37a63 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0xd5df881f skb_make_writable +EXPORT_SYMBOL vmlinux 0xd5fdf02e elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0xd5fe3ac4 sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0xd6104571 ps2_command +EXPORT_SYMBOL vmlinux 0xd6113e5e scsi_report_opcode +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd63106a5 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0xd648e564 fb_match_mode +EXPORT_SYMBOL vmlinux 0xd662ff27 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0xd668b46a n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xd67dc2d2 netdev_alert +EXPORT_SYMBOL vmlinux 0xd6806d7e blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd68b260e nvdimm_namespace_disk_name +EXPORT_SYMBOL vmlinux 0xd69f2bc8 __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xd6d63e9d lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0xd6ea6ce0 mmc_hw_reset +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd6fd4053 __arch_hweight32 +EXPORT_SYMBOL vmlinux 0xd7049f88 elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xd731a00f i2c_del_driver +EXPORT_SYMBOL vmlinux 0xd731f428 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xd7393bf3 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xd745720f dquot_quota_on +EXPORT_SYMBOL vmlinux 0xd758b884 scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd761a383 ioremap_prot +EXPORT_SYMBOL vmlinux 0xd763a47d elevator_exit +EXPORT_SYMBOL vmlinux 0xd771aecc __frontswap_load +EXPORT_SYMBOL vmlinux 0xd7786295 iw_handler_get_thrspy +EXPORT_SYMBOL vmlinux 0xd77ff1a3 dev_mc_flush +EXPORT_SYMBOL vmlinux 0xd786c0ea plpar_hcall9 +EXPORT_SYMBOL vmlinux 0xd7b233fc security_path_rename +EXPORT_SYMBOL vmlinux 0xd7b9b77e input_allocate_device +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7e786a3 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd7f39323 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0xd7f618ae release_pages +EXPORT_SYMBOL vmlinux 0xd7f8e0b8 kdb_current_task +EXPORT_SYMBOL vmlinux 0xd7fee3e8 tty_kref_put +EXPORT_SYMBOL vmlinux 0xd8282ace sock_kfree_s +EXPORT_SYMBOL vmlinux 0xd868c8ec nf_ct_attach +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a7816c mipi_dsi_driver_register_full +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8ba1ade ip_options_compile +EXPORT_SYMBOL vmlinux 0xd8cd2dbf abx500_get_register_interruptible +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e0aa08 __blk_run_queue +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8e6f36a inet_shutdown +EXPORT_SYMBOL vmlinux 0xd9103a1d of_count_phandle_with_args +EXPORT_SYMBOL vmlinux 0xd91347d1 elevator_init +EXPORT_SYMBOL vmlinux 0xd9147b7d input_get_keycode +EXPORT_SYMBOL vmlinux 0xd923b36d sync_inode +EXPORT_SYMBOL vmlinux 0xd92cd10d dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0xd936fc1c lock_sock_nested +EXPORT_SYMBOL vmlinux 0xd94685d3 iterate_supers_type +EXPORT_SYMBOL vmlinux 0xd97d4865 uart_resume_port +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98795cb vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xd9928d82 may_umount_tree +EXPORT_SYMBOL vmlinux 0xd999330f jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xd9a55d97 read_cache_pages +EXPORT_SYMBOL vmlinux 0xd9b9c3ba cpufreq_global_kobject +EXPORT_SYMBOL vmlinux 0xd9bac924 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e57568 write_inode_now +EXPORT_SYMBOL vmlinux 0xd9e6d244 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xd9e967af d_lookup +EXPORT_SYMBOL vmlinux 0xd9f74f55 vfs_readf +EXPORT_SYMBOL vmlinux 0xd9f75e2a module_layout +EXPORT_SYMBOL vmlinux 0xd9faa915 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xda0c5453 vfs_llseek +EXPORT_SYMBOL vmlinux 0xda102d8f scsi_host_get +EXPORT_SYMBOL vmlinux 0xda18966c posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0xda1a4cb7 __d_drop +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda3fa96d inet6_del_offload +EXPORT_SYMBOL vmlinux 0xda43b3c2 follow_pfn +EXPORT_SYMBOL vmlinux 0xda6336e3 mipi_dsi_dcs_enter_sleep_mode +EXPORT_SYMBOL vmlinux 0xda686b49 param_set_ushort +EXPORT_SYMBOL vmlinux 0xda7ca6cb fb_mode_is_equal +EXPORT_SYMBOL vmlinux 0xda7d7290 of_get_mac_address +EXPORT_SYMBOL vmlinux 0xda8af7ad fb_find_nearest_mode +EXPORT_SYMBOL vmlinux 0xda919421 scsi_host_put +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 0xdadca805 skb_store_bits +EXPORT_SYMBOL vmlinux 0xdaea6e0d mfd_clone_cell +EXPORT_SYMBOL vmlinux 0xdaf7b63c inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0xdafe0a0d force_sig +EXPORT_SYMBOL vmlinux 0xdb01198e fsl_upm_find +EXPORT_SYMBOL vmlinux 0xdb1868a4 pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xdb301a1b proc_mkdir +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb5f6600 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0xdb68bbad rfkill_destroy +EXPORT_SYMBOL vmlinux 0xdb6ca8c8 fifo_set_limit +EXPORT_SYMBOL vmlinux 0xdb6fce39 iter_file_splice_write +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb7cd76d xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xdb8c2d7a __bforget +EXPORT_SYMBOL vmlinux 0xdb9bdd1f dget_parent +EXPORT_SYMBOL vmlinux 0xdbe218ed kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc0db6b9 tcp_filter +EXPORT_SYMBOL vmlinux 0xdc13e1d4 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc176bb2 scsi_device_resume +EXPORT_SYMBOL vmlinux 0xdc214961 fence_wait_any_timeout +EXPORT_SYMBOL vmlinux 0xdc257e7b skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xdc3c41a8 __crypto_memneq +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc512134 backlight_register_notifier +EXPORT_SYMBOL vmlinux 0xdc5fef04 agp_generic_alloc_page +EXPORT_SYMBOL vmlinux 0xdc616eaf bdi_init +EXPORT_SYMBOL vmlinux 0xdc7cf6ac pnv_cxl_release_hwirqs +EXPORT_SYMBOL vmlinux 0xdc9498dd down +EXPORT_SYMBOL vmlinux 0xdca82046 elevator_alloc +EXPORT_SYMBOL vmlinux 0xdca939e2 kernel_bind +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcb764ad memset +EXPORT_SYMBOL vmlinux 0xdce1fa3d set_disk_ro +EXPORT_SYMBOL vmlinux 0xdd0513d5 bioset_create +EXPORT_SYMBOL vmlinux 0xdd39edb7 abx500_get_chip_id +EXPORT_SYMBOL vmlinux 0xdd4b5f5a scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0xdd4ca017 cpufreq_get_policy +EXPORT_SYMBOL vmlinux 0xdd64e639 strscpy +EXPORT_SYMBOL vmlinux 0xdd65246a block_read_full_page +EXPORT_SYMBOL vmlinux 0xdd8a1b50 irq_set_chip +EXPORT_SYMBOL vmlinux 0xdd9030af current_stack_pointer +EXPORT_SYMBOL vmlinux 0xdd955144 __debugger +EXPORT_SYMBOL vmlinux 0xddabae36 cdrom_open +EXPORT_SYMBOL vmlinux 0xddb3769b lockref_mark_dead +EXPORT_SYMBOL vmlinux 0xddb66990 xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xddec5812 jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0xde2a3c94 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xde48b26e filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0xde48e9ca _raw_spin_lock +EXPORT_SYMBOL vmlinux 0xde57895d tcp_md5_hash_header +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 0xde9d3e0d bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xdea591a5 ata_print_version +EXPORT_SYMBOL vmlinux 0xdeb23ff7 default_llseek +EXPORT_SYMBOL vmlinux 0xdeb71e57 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0xdefefcb0 security_inode_init_security +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf370bbd mac_find_mode +EXPORT_SYMBOL vmlinux 0xdf42dfe0 tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf6cedb6 down_write_trylock +EXPORT_SYMBOL vmlinux 0xdf710e87 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0xdf751d00 ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0xdf7f22f3 param_ops_bool +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfad18cb mipi_dsi_dcs_write_buffer +EXPORT_SYMBOL vmlinux 0xdfbd28dc udp_ioctl +EXPORT_SYMBOL vmlinux 0xdfc5169b slhc_init +EXPORT_SYMBOL vmlinux 0xdfcaf539 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0xdfd6b590 mdiobus_write +EXPORT_SYMBOL vmlinux 0xdff905e5 vme_slave_free +EXPORT_SYMBOL vmlinux 0xe0086b1a pm860x_page_bulk_read +EXPORT_SYMBOL vmlinux 0xe0149bb7 __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0xe016ad14 tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xe04f7caa dm_read_arg_group +EXPORT_SYMBOL vmlinux 0xe059cf26 netdev_state_change +EXPORT_SYMBOL vmlinux 0xe06141e9 security_sk_clone +EXPORT_SYMBOL vmlinux 0xe06607fd genlmsg_put +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 0xe0ab70ff block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xe0b13336 argv_free +EXPORT_SYMBOL vmlinux 0xe0bcbbd7 dev_remove_offload +EXPORT_SYMBOL vmlinux 0xe0bf0369 blk_fetch_request +EXPORT_SYMBOL vmlinux 0xe0bf9042 keyring_alloc +EXPORT_SYMBOL vmlinux 0xe0efd6e1 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0xe0fc905b sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xe113bbbc csum_partial +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe1490654 filemap_flush +EXPORT_SYMBOL vmlinux 0xe171d563 fb_class +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe18d9df5 of_get_pci_address +EXPORT_SYMBOL vmlinux 0xe198a347 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0xe1a8ce78 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xe1c78ecf cpufreq_power_cooling_register +EXPORT_SYMBOL vmlinux 0xe1cbce3f sg_miter_stop +EXPORT_SYMBOL vmlinux 0xe1e70850 nvm_submit_io +EXPORT_SYMBOL vmlinux 0xe1ef8ca5 posix_acl_valid +EXPORT_SYMBOL vmlinux 0xe1f0578b udp_proc_register +EXPORT_SYMBOL vmlinux 0xe200f872 secure_dccpv6_sequence_number +EXPORT_SYMBOL vmlinux 0xe2018aba d_splice_alias +EXPORT_SYMBOL vmlinux 0xe20372ae radix_tree_gang_lookup +EXPORT_SYMBOL vmlinux 0xe21133f1 mount_ns +EXPORT_SYMBOL vmlinux 0xe220ceb8 __debugger_sstep +EXPORT_SYMBOL vmlinux 0xe2304303 mac_map_monitor_sense +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe249f124 __mmc_claim_host +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe25d539d xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xe261c526 inet_confirm_addr +EXPORT_SYMBOL vmlinux 0xe272aefc netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b836dc skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xe2be5498 lg_global_unlock +EXPORT_SYMBOL vmlinux 0xe2c045a7 disk_stack_limits +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2dc39b6 pci_disable_device +EXPORT_SYMBOL vmlinux 0xe2e7cfc9 pnv_pci_get_phb_node +EXPORT_SYMBOL vmlinux 0xe2e84453 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe2fd7d39 sget_userns +EXPORT_SYMBOL vmlinux 0xe3035f3c pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xe30806bd blk_start_request +EXPORT_SYMBOL vmlinux 0xe314e8fb cpu_core_map +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe31d258e nobh_write_end +EXPORT_SYMBOL vmlinux 0xe32bf225 xfrm4_rcv +EXPORT_SYMBOL vmlinux 0xe34def3d nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0xe3505316 netdev_info +EXPORT_SYMBOL vmlinux 0xe375dae3 trace_print_symbols_seq +EXPORT_SYMBOL vmlinux 0xe38142c1 mmc_gpio_set_cd_isr +EXPORT_SYMBOL vmlinux 0xe3992cea udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xe3a53f4c sort +EXPORT_SYMBOL vmlinux 0xe3aa7949 __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xe3b1a30b phy_stop_interrupts +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3d6f284 fb_find_mode_cvt +EXPORT_SYMBOL vmlinux 0xe40023ec kern_path +EXPORT_SYMBOL vmlinux 0xe43b418d __vlan_find_dev_deep_rcu +EXPORT_SYMBOL vmlinux 0xe472b43f of_get_property +EXPORT_SYMBOL vmlinux 0xe4758be2 bio_put +EXPORT_SYMBOL vmlinux 0xe484e35f ioread32 +EXPORT_SYMBOL vmlinux 0xe49bdb8c nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0xe4e8078a bitmap_to_u32array +EXPORT_SYMBOL vmlinux 0xe4eaab2e t10_pi_type1_crc +EXPORT_SYMBOL vmlinux 0xe4f7c69f follow_up +EXPORT_SYMBOL vmlinux 0xe4f95499 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0xe4fdc085 nobh_writepage +EXPORT_SYMBOL vmlinux 0xe4fe8ca1 _raw_spin_unlock_bh +EXPORT_SYMBOL vmlinux 0xe517863c arch_free_page +EXPORT_SYMBOL vmlinux 0xe51b96b4 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe55ab8b1 tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xe56aa344 simple_rename +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5828f4d vfs_create +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5907e50 arp_create +EXPORT_SYMBOL vmlinux 0xe592b972 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0xe5c78a99 do_blank_screen +EXPORT_SYMBOL vmlinux 0xe5ce9db4 truncate_setsize +EXPORT_SYMBOL vmlinux 0xe5cf5636 pci_domain_nr +EXPORT_SYMBOL vmlinux 0xe5d86536 loop_backing_file +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe5f167d0 pci_get_class +EXPORT_SYMBOL vmlinux 0xe601f8d2 dst_release +EXPORT_SYMBOL vmlinux 0xe6053878 vme_register_bridge +EXPORT_SYMBOL vmlinux 0xe60810b2 pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0xe65a73d7 ip_tunnel_metadata_cnt +EXPORT_SYMBOL vmlinux 0xe68d97c9 mmc_wait_for_app_cmd +EXPORT_SYMBOL vmlinux 0xe68dc3f2 scsi_scan_target +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe69a9df4 hdmi_spd_infoframe_pack +EXPORT_SYMBOL vmlinux 0xe6afc13f tcp_rcv_established +EXPORT_SYMBOL vmlinux 0xe6dc3fd2 mdiobus_unregister +EXPORT_SYMBOL vmlinux 0xe6e83d07 lro_flush_all +EXPORT_SYMBOL vmlinux 0xe6f5f5a7 rwsem_down_read_failed +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe7013138 vfs_iter_write +EXPORT_SYMBOL vmlinux 0xe709a8d9 neigh_destroy +EXPORT_SYMBOL vmlinux 0xe70a8f59 dma_set_coherent_mask +EXPORT_SYMBOL vmlinux 0xe70ce693 mipi_dsi_dcs_exit_sleep_mode +EXPORT_SYMBOL vmlinux 0xe723ba6a forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xe7276c3d pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0xe72ed3ee abx500_get_register_page_interruptible +EXPORT_SYMBOL vmlinux 0xe7341647 thaw_super +EXPORT_SYMBOL vmlinux 0xe748b91d locks_init_lock +EXPORT_SYMBOL vmlinux 0xe74dedb3 dquot_commit_info +EXPORT_SYMBOL vmlinux 0xe754cb8b d_find_any_alias +EXPORT_SYMBOL vmlinux 0xe7649c68 vfs_mkdir +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe7827d62 __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xe78fb4f0 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0xe790d660 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xe79efb12 to_ndd +EXPORT_SYMBOL vmlinux 0xe7a406ec kmem_cache_size +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7b51d60 generic_file_llseek +EXPORT_SYMBOL vmlinux 0xe7ce7439 _memcpy_fromio +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7efda78 __scm_destroy +EXPORT_SYMBOL vmlinux 0xe80eb90d __dax_fault +EXPORT_SYMBOL vmlinux 0xe812e89a kthread_create_on_node +EXPORT_SYMBOL vmlinux 0xe81ef1dd remove_conflicting_framebuffers +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe82cc752 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0xe82d3201 free_netdev +EXPORT_SYMBOL vmlinux 0xe852e55d tcp_init_sock +EXPORT_SYMBOL vmlinux 0xe8794ce1 slhc_toss +EXPORT_SYMBOL vmlinux 0xe88b45ea neigh_resolve_output +EXPORT_SYMBOL vmlinux 0xe88ecc55 __skb_checksum +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8b0a6a8 blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8c1c5cb tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0xe8c438f3 proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe905d47d simple_transaction_read +EXPORT_SYMBOL vmlinux 0xe9095385 tso_start +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe9378d58 idr_get_next +EXPORT_SYMBOL vmlinux 0xe93c941a __devm_request_region +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95c811c mipi_dsi_dcs_set_pixel_format +EXPORT_SYMBOL vmlinux 0xe971876a on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0xe97e4663 lock_rename +EXPORT_SYMBOL vmlinux 0xe986d486 tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0xe9c92892 blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0xe9ea7b47 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0xe9f39249 input_register_handler +EXPORT_SYMBOL vmlinux 0xe9f7149c zlib_deflate_workspacesize +EXPORT_SYMBOL vmlinux 0xe9fd8bc2 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea10c69f tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xea2580f8 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xea269878 inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea7a729a jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0xea7aeb44 dev_uc_flush +EXPORT_SYMBOL vmlinux 0xea8430ba uart_update_timeout +EXPORT_SYMBOL vmlinux 0xea968c96 ___ratelimit +EXPORT_SYMBOL vmlinux 0xeac7844c clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xeaceb559 __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xead7dc35 key_alloc +EXPORT_SYMBOL vmlinux 0xeadcc308 swiotlb_free_coherent +EXPORT_SYMBOL vmlinux 0xeae2daad __blk_end_request +EXPORT_SYMBOL vmlinux 0xeaeb3ebb __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0xeb062d31 icmpv6_send +EXPORT_SYMBOL vmlinux 0xeb0ed5b4 posix_unblock_lock +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb44339a free_pages_exact +EXPORT_SYMBOL vmlinux 0xeb49bd74 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0xeb5139b0 pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xeb559aff dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0xeb6d43b4 console_stop +EXPORT_SYMBOL vmlinux 0xeb8c7b7b cxl_use_count +EXPORT_SYMBOL vmlinux 0xeba2a1f7 rtas_indicator_present +EXPORT_SYMBOL vmlinux 0xeba8dd72 agp_generic_mask_memory +EXPORT_SYMBOL vmlinux 0xebcab3a6 ppc_pci_io +EXPORT_SYMBOL vmlinux 0xebe90692 blk_execute_rq +EXPORT_SYMBOL vmlinux 0xebf07fd4 alloc_disk_node +EXPORT_SYMBOL vmlinux 0xec018ec3 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0xec08fd0c ibmebus_bus_type +EXPORT_SYMBOL vmlinux 0xec0ca342 mmc_add_host +EXPORT_SYMBOL vmlinux 0xec0ead8a nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xec0fa83e vga_put +EXPORT_SYMBOL vmlinux 0xec150034 sock_wmalloc +EXPORT_SYMBOL vmlinux 0xec34f9cc linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0xec456706 netpoll_cleanup +EXPORT_SYMBOL vmlinux 0xec45c5bb md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0xec614677 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xec714bf6 sock_register +EXPORT_SYMBOL vmlinux 0xec7258af kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0xec862f17 d_move +EXPORT_SYMBOL vmlinux 0xec87c0fb blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xec89679b max8998_read_reg +EXPORT_SYMBOL vmlinux 0xec8da90c pnv_cxl_release_hwirq_ranges +EXPORT_SYMBOL vmlinux 0xecbb926f xor_altivec_3 +EXPORT_SYMBOL vmlinux 0xecc6927c blk_recount_segments +EXPORT_SYMBOL vmlinux 0xeccadf31 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0xecd982a2 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xecda1b3e generic_delete_inode +EXPORT_SYMBOL vmlinux 0xecdc65b3 input_register_handle +EXPORT_SYMBOL vmlinux 0xece223f3 dev_emerg +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xed117cd1 fbcon_rotate_ccw +EXPORT_SYMBOL vmlinux 0xed21abc7 page_put_link +EXPORT_SYMBOL vmlinux 0xed251223 i8042_remove_filter +EXPORT_SYMBOL vmlinux 0xed2ff5d6 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed6624c8 key_validate +EXPORT_SYMBOL vmlinux 0xed8a3553 dev_open +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedb2ced8 __get_user_pages +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedc03953 iounmap +EXPORT_SYMBOL vmlinux 0xedc410d0 udplite_table +EXPORT_SYMBOL vmlinux 0xedc50f4c max8998_bulk_read +EXPORT_SYMBOL vmlinux 0xedd8c1b0 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0xeddbe750 skb_insert +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee039b1c xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee330420 param_set_invbool +EXPORT_SYMBOL vmlinux 0xee4399e4 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0xee52a645 alloc_file +EXPORT_SYMBOL vmlinux 0xee605bca uart_get_baud_rate +EXPORT_SYMBOL vmlinux 0xee86dfea __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xee8a5570 sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0xee8ff4e0 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9a5401 kset_unregister +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeebb9311 __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0xeec15657 unlink_framebuffer +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xef011db5 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0xef0764f0 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xef36fc7c param_set_short +EXPORT_SYMBOL vmlinux 0xef467a7c up_write +EXPORT_SYMBOL vmlinux 0xefb12fa0 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0xefb55407 bio_split +EXPORT_SYMBOL vmlinux 0xefc8c39c bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xefcfe490 __dquot_transfer +EXPORT_SYMBOL vmlinux 0xefd1624a vme_dma_free_attribute +EXPORT_SYMBOL vmlinux 0xefd5cb53 genl_notify +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefde1bbe flush_dcache_range +EXPORT_SYMBOL vmlinux 0xefed1193 __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0xeff62f35 generic_show_options +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf0048134 call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xf0063fd8 vio_find_node +EXPORT_SYMBOL vmlinux 0xf009a0fe phy_ethtool_get_eee +EXPORT_SYMBOL vmlinux 0xf0167bc6 set_device_ro +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf03899bf inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0xf05ffa15 fb_var_to_videomode +EXPORT_SYMBOL vmlinux 0xf0617e46 rtnl_unicast +EXPORT_SYMBOL vmlinux 0xf065f629 ioread16be +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf0751849 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0xf07fe9a0 lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xf084fa18 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf09b4700 elv_rb_find +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 0xf0cf0f86 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xf0d0a923 vme_irq_free +EXPORT_SYMBOL vmlinux 0xf0d3cca8 phy_read_mmd_indirect +EXPORT_SYMBOL vmlinux 0xf0d91512 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0xf0d95c18 blk_stop_queue +EXPORT_SYMBOL vmlinux 0xf0dc428f compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf1048fd0 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf10de535 ioread8 +EXPORT_SYMBOL vmlinux 0xf11cd6ce down_interruptible +EXPORT_SYMBOL vmlinux 0xf1381fa9 pcibus_to_node +EXPORT_SYMBOL vmlinux 0xf147dcb2 hdmi_spd_infoframe_init +EXPORT_SYMBOL vmlinux 0xf1526a1b mmc_of_parse +EXPORT_SYMBOL vmlinux 0xf16519e3 redraw_screen +EXPORT_SYMBOL vmlinux 0xf16bc39e iterate_mounts +EXPORT_SYMBOL vmlinux 0xf183189b __ioremap_at +EXPORT_SYMBOL vmlinux 0xf189e88f cap_mmap_file +EXPORT_SYMBOL vmlinux 0xf18c0017 kobject_init +EXPORT_SYMBOL vmlinux 0xf195c682 fb_invert_cmaps +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a222d3 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xf1c58ef6 sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0xf1c8f0e7 param_get_byte +EXPORT_SYMBOL vmlinux 0xf1d8bcd4 blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1fb627c genphy_restart_aneg +EXPORT_SYMBOL vmlinux 0xf2008c8c tty_devnum +EXPORT_SYMBOL vmlinux 0xf20a4d5e pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf217726d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xf21e1e51 read_dev_sector +EXPORT_SYMBOL vmlinux 0xf21f2c64 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0xf21fb903 sock_create_kern +EXPORT_SYMBOL vmlinux 0xf22881e8 lg_local_lock +EXPORT_SYMBOL vmlinux 0xf23c9071 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf24c8ebb cad_pid +EXPORT_SYMBOL vmlinux 0xf28b10a3 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0xf2a0af8f backlight_device_registered +EXPORT_SYMBOL vmlinux 0xf2a2b163 resource_list_create_entry +EXPORT_SYMBOL vmlinux 0xf2bdd41d km_policy_notify +EXPORT_SYMBOL vmlinux 0xf2c0fce2 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xf2c43f3f zlib_deflate +EXPORT_SYMBOL vmlinux 0xf2f360b3 swiotlb_sync_sg_for_device +EXPORT_SYMBOL vmlinux 0xf2f4e748 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xf30300d7 pneigh_lookup +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf31c8be7 netif_device_detach +EXPORT_SYMBOL vmlinux 0xf322a206 bit_waitqueue +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf34576f6 __module_get +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf34ef256 inet_addr_type +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf354df0a xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0xf357d887 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0xf369ca27 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0xf36cf799 blkdev_fsync +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 0xf39e1ba7 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xf3b201c4 dquot_transfer +EXPORT_SYMBOL vmlinux 0xf3cf39ce inode_newsize_ok +EXPORT_SYMBOL vmlinux 0xf3d0fcd4 devm_gpiod_put +EXPORT_SYMBOL vmlinux 0xf3de9124 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3ecffcb serio_interrupt +EXPORT_SYMBOL vmlinux 0xf3edcfc0 nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0xf4028d02 iov_iter_advance +EXPORT_SYMBOL vmlinux 0xf42d65b9 fb_set_var +EXPORT_SYMBOL vmlinux 0xf441ac43 ioread8_rep +EXPORT_SYMBOL vmlinux 0xf454b4d2 of_get_next_parent +EXPORT_SYMBOL vmlinux 0xf4552566 sk_net_capable +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf479b940 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xf47a9b84 mount_nodev +EXPORT_SYMBOL vmlinux 0xf481036b fb_get_buffer_offset +EXPORT_SYMBOL vmlinux 0xf483d6c0 xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0xf489cd7a block_write_end +EXPORT_SYMBOL vmlinux 0xf4a3e6ca skb_put +EXPORT_SYMBOL vmlinux 0xf4a86a0f dentry_unhash +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f46197 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xf518ecdf twl6040_get_pll +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 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf55b3b3d __arch_hweight16 +EXPORT_SYMBOL vmlinux 0xf57dc805 blk_queue_bounce +EXPORT_SYMBOL vmlinux 0xf5a10e25 vme_slave_set +EXPORT_SYMBOL vmlinux 0xf5a62ecc _memset_io +EXPORT_SYMBOL vmlinux 0xf5b91408 elevator_change +EXPORT_SYMBOL vmlinux 0xf5c2d34d hdmi_audio_infoframe_init +EXPORT_SYMBOL vmlinux 0xf5c5b09d tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xf5e1558d crash_shutdown_unregister +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5ec09b7 sock_edemux +EXPORT_SYMBOL vmlinux 0xf60d42af wait_on_page_bit +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf64bd532 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xf657561a agp_find_bridge +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf68e4ffe of_phy_connect +EXPORT_SYMBOL vmlinux 0xf68f55dd netdev_notify_peers +EXPORT_SYMBOL vmlinux 0xf6911645 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xf6981909 skb_kill_datagram +EXPORT_SYMBOL vmlinux 0xf6af005b scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0xf6b704de ___pskb_trim +EXPORT_SYMBOL vmlinux 0xf6bb4729 color_table +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f160e9 kernel_sendpage +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf7008bf6 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0xf70a55fe pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xf7212703 mount_pseudo +EXPORT_SYMBOL vmlinux 0xf74e7b2e dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xf7584a9c find_font +EXPORT_SYMBOL vmlinux 0xf767b87e put_page +EXPORT_SYMBOL vmlinux 0xf76ecabc mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xf7705ba2 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xf770b7a7 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xf78b1500 napi_disable +EXPORT_SYMBOL vmlinux 0xf7966846 deactivate_super +EXPORT_SYMBOL vmlinux 0xf7ad4864 blk_start_queue_async +EXPORT_SYMBOL vmlinux 0xf7af02e4 dcb_getapp +EXPORT_SYMBOL vmlinux 0xf7c05430 pm860x_bulk_write +EXPORT_SYMBOL vmlinux 0xf80317fb __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xf811e69d scsi_eh_flush_done_q +EXPORT_SYMBOL vmlinux 0xf812cff6 memscan +EXPORT_SYMBOL vmlinux 0xf81956a3 __lock_page +EXPORT_SYMBOL vmlinux 0xf8219074 mdiobus_read_nested +EXPORT_SYMBOL vmlinux 0xf827cb83 free_reserved_area +EXPORT_SYMBOL vmlinux 0xf82abc1d isa_dma_bridge_buggy +EXPORT_SYMBOL vmlinux 0xf82ec573 rb_prev +EXPORT_SYMBOL vmlinux 0xf82f70dc dm_put_table_device +EXPORT_SYMBOL vmlinux 0xf8462d14 vme_unregister_bridge +EXPORT_SYMBOL vmlinux 0xf859b980 mount_bdev +EXPORT_SYMBOL vmlinux 0xf86e9043 genphy_config_aneg +EXPORT_SYMBOL vmlinux 0xf86f49b8 vme_dma_request +EXPORT_SYMBOL vmlinux 0xf86f8068 dump_truncate +EXPORT_SYMBOL vmlinux 0xf8779dad pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xf89bfac2 dev_get_by_name +EXPORT_SYMBOL vmlinux 0xf89ef598 noop_llseek +EXPORT_SYMBOL vmlinux 0xf8a7b869 param_ops_charp +EXPORT_SYMBOL vmlinux 0xf8ae0122 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0xf8d04f09 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xf8d4970f jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0xf8e81e5a vme_irq_request +EXPORT_SYMBOL vmlinux 0xf8ea8bad call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf8f0bd88 __genl_register_family +EXPORT_SYMBOL vmlinux 0xf8f107c3 param_set_bint +EXPORT_SYMBOL vmlinux 0xf8f93288 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0xf8fb8065 softnet_data +EXPORT_SYMBOL vmlinux 0xf9038bcf smp_call_function_many +EXPORT_SYMBOL vmlinux 0xf90a697d lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xf90cc33d inode_permission +EXPORT_SYMBOL vmlinux 0xf91db094 drop_nlink +EXPORT_SYMBOL vmlinux 0xf9281e9b pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0xf92e312a phy_resume +EXPORT_SYMBOL vmlinux 0xf93dd09d dev_mc_init +EXPORT_SYMBOL vmlinux 0xf957dfb4 dev_set_group +EXPORT_SYMBOL vmlinux 0xf9642093 netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0xf9695731 phys_mem_access_prot +EXPORT_SYMBOL vmlinux 0xf972aa8e gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0xf98b2d92 __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xf9a2d5c3 may_umount +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9c0b663 strlcat +EXPORT_SYMBOL vmlinux 0xf9eb8f3c dump_align +EXPORT_SYMBOL vmlinux 0xf9f0bb67 tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0xf9f4c27a xfrm_state_flush +EXPORT_SYMBOL vmlinux 0xf9f7b8d1 of_find_node_opts_by_path +EXPORT_SYMBOL vmlinux 0xf9f7f783 km_is_alive +EXPORT_SYMBOL vmlinux 0xf9f9f729 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0xfa1e985e mapping_tagged +EXPORT_SYMBOL vmlinux 0xfa21cb18 open_check_o_direct +EXPORT_SYMBOL vmlinux 0xfa3db84f lookup_bdev +EXPORT_SYMBOL vmlinux 0xfa3e2cf7 fget_raw +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa70f15c blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xfa755f18 sk_free +EXPORT_SYMBOL vmlinux 0xfaa6b02c vme_bus_num +EXPORT_SYMBOL vmlinux 0xfaabfb2f page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfacc4873 tty_free_termios +EXPORT_SYMBOL vmlinux 0xfacd8e72 vme_dma_vme_attribute +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfb09fece mmc_retune_timer_stop +EXPORT_SYMBOL vmlinux 0xfb576474 sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb87c985 scsi_remove_target +EXPORT_SYMBOL vmlinux 0xfb8e1217 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfb9ebad4 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbb202b5 serio_rescan +EXPORT_SYMBOL vmlinux 0xfbbe014d bdput +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbd7f16d of_gpio_simple_xlate +EXPORT_SYMBOL vmlinux 0xfbdb775f tty_port_tty_set +EXPORT_SYMBOL vmlinux 0xfbdd4c01 cpu_present_mask +EXPORT_SYMBOL vmlinux 0xfbe9f3b7 mmc_start_bkops +EXPORT_SYMBOL vmlinux 0xfc00fdaf serio_close +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc07b616 tcp_connect +EXPORT_SYMBOL vmlinux 0xfc131f50 forget_cached_acl +EXPORT_SYMBOL vmlinux 0xfc164d8d nf_hook_slow +EXPORT_SYMBOL vmlinux 0xfc1c3d33 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0xfc35416d simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xfc39e32f ioport_unmap +EXPORT_SYMBOL vmlinux 0xfc3b160f mempool_create_node +EXPORT_SYMBOL vmlinux 0xfc3c3853 scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xfc3fe05a mmc_get_card +EXPORT_SYMBOL vmlinux 0xfc5e0775 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xfc771d15 nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0xfc9d5bfe ip_queue_xmit +EXPORT_SYMBOL vmlinux 0xfcb926cd kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0xfcbfcfef machine_id +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcc713f6 __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0xfccb137c devfreq_suspend_device +EXPORT_SYMBOL vmlinux 0xfcdc14d6 frame_vector_to_pfns +EXPORT_SYMBOL vmlinux 0xfcdc7632 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf1a7c5 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0xfcf33451 __dev_set_mtu +EXPORT_SYMBOL vmlinux 0xfcf62e7a km_policy_expired +EXPORT_SYMBOL vmlinux 0xfcf8f685 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0xfcfa03ff fb_videomode_to_modelist +EXPORT_SYMBOL vmlinux 0xfd02fad7 mmc_request_done +EXPORT_SYMBOL vmlinux 0xfd0727ff pm_vt_switch_unregister +EXPORT_SYMBOL vmlinux 0xfd081837 cdrom_media_changed +EXPORT_SYMBOL vmlinux 0xfd552cb0 pci_dev_put +EXPORT_SYMBOL vmlinux 0xfd6340d2 tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0xfd7365d5 i2c_smbus_read_byte +EXPORT_SYMBOL vmlinux 0xfd804225 file_path +EXPORT_SYMBOL vmlinux 0xfd953a9b pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdabe446 down_read_trylock +EXPORT_SYMBOL vmlinux 0xfdb6cedc _raw_read_unlock_bh +EXPORT_SYMBOL vmlinux 0xfdb9b629 ioread32be +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdecb44a register_md_cluster_operations +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 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe459b29 tty_check_change +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe6dc91a mmc_stop_bkops +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe916dc6 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0xfea93312 sk_dst_check +EXPORT_SYMBOL vmlinux 0xfeafbcd0 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xfedabb7f devm_gpiod_get_optional +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfeebc7c4 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xff0298ba security_task_getsecid +EXPORT_SYMBOL vmlinux 0xff1765c7 rtas_call +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff3b44e8 input_mt_sync_frame +EXPORT_SYMBOL vmlinux 0xff3d7ff0 dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xff4fbb1a find_get_entry +EXPORT_SYMBOL vmlinux 0xff60c18c save_mount_options +EXPORT_SYMBOL vmlinux 0xff6878cf fb_default_cmap +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff817917 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0xff8dfc1a touch_atime +EXPORT_SYMBOL vmlinux 0xff903b43 frame_vector_destroy +EXPORT_SYMBOL vmlinux 0xff9ca065 fb_edid_to_monspecs +EXPORT_SYMBOL vmlinux 0xffaace1f tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xffab0bbc netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xffc8d982 proc_create_data +EXPORT_SYMBOL vmlinux 0xffcd93ce blk_alloc_queue +EXPORT_SYMBOL vmlinux 0xffceca9b set_groups +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffeb5dbe bdevname +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x024927b3 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x045cf303 kvm_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x07d1e562 kvmppc_core_queue_program +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0b87552e mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0bb44247 kvm_put_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x0db61f93 kvm_clear_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1481e675 kvm_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x16539ed1 kvmppc_pr_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1a103482 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1b0a56c0 kvmppc_core_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1c0c4ea6 kvmppc_core_dequeue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1d4cbdda kvmppc_rtas_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1ea65fc4 kvm_get_dirty_log +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1f21a9c7 kvm_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x1f275e9c kvmppc_book3s_queue_irqprio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20513fcb kvmppc_core_queue_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x259d5d0f kvm_vcpu_kick +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x26ebde49 gfn_to_memslot +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 0x2865f7b9 kvm_write_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2a0a6160 kvm_clear_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x2e77317f kvm_io_bus_write +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x32ea1d4f kvm_release_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x33694b28 kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x33eb913e kvmppc_st +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x354c857c gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x424efc46 kvmppc_ld +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x50692acc gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x5bd59557 kvm_release_page_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x60fe24b9 kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x61135e05 kvm_read_guest_cached +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x669da1fd kvm_set_pfn_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x681e6e7d kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x6d9ba9c5 kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x73fd8fea kvm_read_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7855d8c0 __kvm_set_memory_region +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7b1b4920 kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7c1bd918 kvmppc_handle_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x7c6c4945 kvmppc_prepare_to_enter +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x85a5a4b2 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8ae21812 kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8cc56749 vcpu_put +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x8d4d8e51 kvm_read_guest_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 0x8f32a1f1 kvmppc_load_last_inst +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x92c04595 kvm_vcpu_block +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x944dbe75 gfn_to_pfn_memslot_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x966298f4 kvmppc_kvm_pv +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9713e527 gfn_to_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x9836eff9 vcpu_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0x98b83c91 kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa3cc20da gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa5b2d052 kvmppc_xics_hcall +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa712387d kvm_debugfs_dir +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa7d14ae6 gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa88b278e kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa8e5566b gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xa9006e9f kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xab59d373 kvmppc_free_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xae03335c kvm_get_kvm +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xae083437 kvmppc_h_logical_ci_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xae55e8e0 gfn_to_pfn_prot +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xae6d3ee1 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xb3afcc30 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc1c67964 kvmppc_emulate_mmio +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc558ab8b kvm_is_visible_gfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc70e4b59 kvmppc_claim_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xc8441591 kvmppc_core_pending_dec +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcc44961f kvmppc_alloc_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xcdca973d kvm_unmap_hva +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xce5c469f kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd3c9c02a kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd9ed3428 kvmppc_set_msr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xd9f30e6e kvmppc_hv_ops +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xda0beb4c kvmppc_sanity_check +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xdf9ef2bc kvmppc_gpa_to_pfn +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xe2c00a06 kvmppc_handle_load +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xec484830 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xef11cb35 __tracepoint_kvm_ppc_instr +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xefd40776 kvmppc_h_logical_ci_store +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf0b2a74f kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf1ed895e kvmppc_unfixup_split_real +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf4da3546 kvmppc_init_lpid +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf6c7a012 kvm_vcpu_init +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm 0xf7fd180f kvm_read_guest_atomic +EXPORT_SYMBOL_GPL arch/powerpc/kvm/kvm-pr 0xb95634d3 kvmppc_emulate_instruction +EXPORT_SYMBOL_GPL crypto/af_alg 0x0cca6a90 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x20d7ca17 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x387fdcad af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x46cb8cbc af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x4f4373e9 af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x58716898 af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0x655ef320 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xa3b50cff af_alg_complete +EXPORT_SYMBOL_GPL crypto/af_alg 0xb90df018 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xc09f3525 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xe118377b af_alg_accept +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xc0a035fd async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xa526329c async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xe41527a7 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x1343a968 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xb04202b2 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x3d4390b4 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4baaec0b async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x77a2c8ee __async_tx_find_channel +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0xf91cccad async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x5ed66f52 async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xbd0b0d5b async_xor +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 0x2914158a crypto_chacha20_setkey +EXPORT_SYMBOL_GPL crypto/chacha20_generic 0x3fc7a700 crypto_chacha20_crypt +EXPORT_SYMBOL_GPL crypto/cryptd 0x00c418ac cryptd_alloc_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x181fc101 cryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0x3bf48364 cryptd_free_aead +EXPORT_SYMBOL_GPL crypto/cryptd 0x4ee7ebab cryptd_alloc_ablkcipher +EXPORT_SYMBOL_GPL crypto/cryptd 0x5e107020 cryptd_ablkcipher_child +EXPORT_SYMBOL_GPL crypto/cryptd 0x6c64f25a cryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/cryptd 0x72754f94 cryptd_aead_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xa3629fbf cryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/cryptd 0xdc63123f cryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/cryptd 0xdd322846 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 0xaa6e8a69 lrw_crypt +EXPORT_SYMBOL_GPL crypto/lrw 0xcd074900 lrw_init_table +EXPORT_SYMBOL_GPL crypto/mcryptd 0x4c75e9d4 mcryptd_ahash_child +EXPORT_SYMBOL_GPL crypto/mcryptd 0x65ae1f15 shash_ahash_mcryptd_update +EXPORT_SYMBOL_GPL crypto/mcryptd 0x681c5e27 shash_ahash_mcryptd_finup +EXPORT_SYMBOL_GPL crypto/mcryptd 0x745a9453 mcryptd_alloc_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0x8347667c mcryptd_flusher +EXPORT_SYMBOL_GPL crypto/mcryptd 0x86630486 mcryptd_shash_desc +EXPORT_SYMBOL_GPL crypto/mcryptd 0xc180003e mcryptd_free_ahash +EXPORT_SYMBOL_GPL crypto/mcryptd 0xce36d01d shash_ahash_mcryptd_digest +EXPORT_SYMBOL_GPL crypto/mcryptd 0xf4404bfe shash_ahash_mcryptd_final +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x19cb0a56 crypto_poly1305_init +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x3bd37495 crypto_poly1305_setdesckey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0x6188b715 crypto_poly1305_update +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xc0608f88 crypto_poly1305_setkey +EXPORT_SYMBOL_GPL crypto/poly1305_generic 0xf3e3508e 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 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 0xc2e32dcb xts_crypt +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x01a417e1 ahci_save_initial_config +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x11a5991a ahci_port_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x297e3256 ahci_check_ready +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x3075096a ahci_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x31010b5f ahci_print_info +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x41e68949 ahci_stop_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x4704d0c9 ahci_fill_cmd_slot +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x49b10f5a ahci_kick_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x618e8f9c ahci_pmp_retry_srst_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x62021d2e ahci_qc_issue +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x776cb68c ahci_do_softreset +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x85b0defe ahci_shost_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0x8ba854ac ahci_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa132aac4 ahci_handle_port_intr +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xa5a72a12 ahci_init_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xb7cc55f4 ahci_host_activate +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xd73fc2b6 ahci_start_engine +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xddd04f72 ahci_set_em_messages +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xde4676b9 ahci_reset_em +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe0dd92fb ahci_sdev_attrs +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xe1a9db1d ahci_reset_controller +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xea50dad3 ahci_ignore_sss +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xef69d03f ahci_error_handler +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf45ccc66 ahci_start_fis_rx +EXPORT_SYMBOL_GPL drivers/ata/libahci 0xf68e2f07 ahci_dev_classify +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x2675dfb2 ahci_platform_suspend +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x29f01911 ahci_platform_enable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x364c3181 ahci_platform_disable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x67f3de74 ahci_platform_init_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x6d0737b1 ahci_platform_resume +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x7127d08b ahci_platform_disable_regulators +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x89c9babc ahci_platform_enable_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0x96d86ede ahci_platform_get_resources +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xacdd2c35 ahci_platform_disable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xc1358274 ahci_platform_enable_clks +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xdbe17ed1 ahci_platform_ops +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xe6b23cf3 ahci_platform_resume_host +EXPORT_SYMBOL_GPL drivers/ata/libahci_platform 0xf6210504 ahci_platform_suspend_host +EXPORT_SYMBOL_GPL drivers/ata/pata_platform 0xdc64f006 __pata_platform_probe +EXPORT_SYMBOL_GPL drivers/ata/pata_sis 0xf7765f1c 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 0x75cde695 __devm_regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0x8bfd22dc __regmap_init_spmi_ext +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xa1035117 __devm_regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/base/regmap/regmap-spmi 0xaefd98e7 __regmap_init_spmi_base +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x0bf2e4df bcma_host_pci_down +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x10f69bc1 bcma_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x11b2e882 bcma_chipco_pll_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x22b61a27 bcma_chipco_b_mii_write +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3558c153 bcma_core_pci_power_save +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x3b2a427d bcma_chipco_get_alp_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x428df3ac bcma_find_core_unit +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x45906321 bcma_chipco_gpio_out +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x4dbba930 __bcma_driver_register +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x54888f49 bcma_core_set_clockmode +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x5dbf058d bcma_core_disable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x73b1d202 bcma_chipco_gpio_outen +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x80560f46 bcma_chipco_pll_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x84cc1cbf bcma_chipco_chipctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x99834e6e bcma_pmu_get_bus_clock +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0x9b4b4468 bcma_host_pci_irq_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa5ff2179 bcma_chipco_regctl_maskset +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xa72d0e3f bcma_core_pll_ctl +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xb650f67d bcma_core_is_enabled +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xbc341dca bcma_core_enable +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xd9f87e03 bcma_driver_unregister +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xe2fb0c12 bcma_chipco_gpio_control +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xec9a462c bcma_chipco_pll_read +EXPORT_SYMBOL_GPL drivers/bcma/bcma 0xf2082ca4 bcma_host_pci_up +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x0767c571 btbcm_setup_patchram +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x3ab8871a btbcm_initialize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x6b0f36c3 btbcm_finalize +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x71c2018b btbcm_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0x8339f67c btbcm_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btbcm 0xc2c99d53 btbcm_setup_apple +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x2e0e415a btintel_set_event_mask_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x3e9227a0 btintel_set_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x4aab363f btintel_read_version +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x717b612a btintel_set_diag_mfg +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x732bca79 btintel_set_event_mask +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x7fbf5bf9 btintel_check_bdaddr +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x8aa9e53d btintel_load_ddc_config +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0x96bc3798 btintel_regmap_init +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xbec32701 btintel_version_info +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xc00b4f16 btintel_secure_send +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xd885efa3 btintel_hw_error +EXPORT_SYMBOL_GPL drivers/bluetooth/btintel 0xe4276bc6 btintel_set_diag +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x1294bc7e btmrvl_process_event +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x19c3dad2 btmrvl_enable_ps +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x315fcd3b btmrvl_register_hdev +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x3e0aa733 btmrvl_send_hscfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x50af26cb btmrvl_interrupt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x75e9a44f btmrvl_enable_hs +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x7c451504 btmrvl_pscan_window_reporting +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0x9ed2bc5c btmrvl_check_evtpkt +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xab396572 btmrvl_send_module_cfg_cmd +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xec7acc1b btmrvl_add_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btmrvl 0xf5e3aba2 btmrvl_remove_card +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x08009c42 qca_uart_setup_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btqca 0x9ce69e15 qca_set_bdaddr_rome +EXPORT_SYMBOL_GPL drivers/bluetooth/btrtl 0x46a290b5 btrtl_setup_realtek +EXPORT_SYMBOL_GPL drivers/bluetooth/hci_uart 0x779ff08d 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 0x01858f5f dw_dma_filter +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x4dc28bbf dw_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x5ed941e1 dw_dma_enable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0x8f99fa1c dw_dma_disable +EXPORT_SYMBOL_GPL drivers/dma/dw/dw_dmac_core 0xeb5d2263 dw_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0x00adf7bf hsu_dma_probe +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xb343ec41 hsu_dma_remove +EXPORT_SYMBOL_GPL drivers/dma/hsu/hsu_dma 0xbca5bb12 hsu_dma_irq +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x4c874881 vchan_dma_desc_free_list +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0x4ef8622f vchan_tx_submit +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xb8af8d1f vchan_find_desc +EXPORT_SYMBOL_GPL drivers/dma/virt-dma 0xc2748faa vchan_init +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0c32ff8a edac_pci_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x0d240c23 edac_pci_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x10ddf931 edac_pci_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x19652235 edac_pci_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2384f6a5 edac_device_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x2c8dd6b8 edac_mem_types +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x32d0a417 edac_pci_reset_delay_period +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x34f0a735 edac_device_handle_ce +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3c4b314d edac_mc_free +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x3e299c77 edac_device_handle_ue +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x61af4603 find_mci_by_dev +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6351f731 edac_mc_del_mc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e3ff83a edac_device_alloc_index +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x6e487e3c edac_mc_add_mc_with_groups +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x708bd45c edac_mc_find_csrow_by_page +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x734f11b7 edac_mc_alloc +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x7abaf248 edac_pci_release_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x90370971 edac_pci_del_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0x938f3e3a edac_raw_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa149e021 edac_mc_handle_error +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xa9ee671d edac_pci_create_generic_ctl +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc0dcb59e edac_layer_name +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xc8c0b0b0 edac_pci_handle_pe +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xea13e5f3 edac_device_free_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xee6ce75b edac_device_add_device +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf22cc98a edac_device_alloc_ctl_info +EXPORT_SYMBOL_GPL drivers/edac/edac_core 0xf95db606 edac_pci_handle_npe +EXPORT_SYMBOL_GPL drivers/firewire/firewire-core 0xf4ade51f fw_card_release +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x325d3e69 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xbf7e4330 fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xc83538af fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xd960eb9d fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xe01129a7 fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xf6905e0c fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x1807b951 bgpio_remove +EXPORT_SYMBOL_GPL drivers/gpio/gpio-generic 0x953e4869 bgpio_init +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x564a0fa5 __max730x_probe +EXPORT_SYMBOL_GPL drivers/gpio/gpio-max730x 0x77aab077 __max730x_remove +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x1ac7c461 of_get_drm_display_mode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x230b6ddc drm_class_device_unregister +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x37f642a5 drm_display_mode_from_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0x53276384 drm_display_mode_to_videomode +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xeca4ada7 drm_do_get_edid +EXPORT_SYMBOL_GPL drivers/gpu/drm/drm 0xff44d42e drm_class_device_register +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x0263c266 ttm_dma_populate +EXPORT_SYMBOL_GPL drivers/gpu/drm/ttm/ttm 0x54bcd7bf 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 0x818735ab 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 0x01e59a20 hid_dump_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x05495392 hid_debug +EXPORT_SYMBOL_GPL drivers/hid/hid 0x076f8370 hid_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x08b9fa86 hid_add_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x147d22a2 hid_parse_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x1c01381f hid_open_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x22c969ff hidinput_find_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x22e75847 hid_dump_input +EXPORT_SYMBOL_GPL drivers/hid/hid 0x331765bd hid_allocate_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x36064dec hid_unregister_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x3d26bf37 hid_dump_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4906a967 hid_snto32 +EXPORT_SYMBOL_GPL drivers/hid/hid 0x4ce0089c hidraw_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x537479eb hid_alloc_report_buf +EXPORT_SYMBOL_GPL drivers/hid/hid 0x54019702 hid_debug_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6092bf24 hidraw_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6c296f81 __hid_request +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e2541e2 hid_resolv_usage +EXPORT_SYMBOL_GPL drivers/hid/hid 0x6e6814f5 __hid_register_driver +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7044a156 hid_report_raw_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x715e1830 hidraw_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0x741f9de2 hid_set_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7aea739e hidinput_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7ca23884 hid_dump_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0x7fcd5599 hid_field_extract +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8ccd14ba hid_destroy_device +EXPORT_SYMBOL_GPL drivers/hid/hid 0x8cd2d93d hid_ignore +EXPORT_SYMBOL_GPL drivers/hid/hid 0x93758d63 hidinput_report_event +EXPORT_SYMBOL_GPL drivers/hid/hid 0xa8cd0475 hid_register_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xaa058809 hid_connect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xbe26e59e hid_output_report +EXPORT_SYMBOL_GPL drivers/hid/hid 0xc0c7d88d hid_check_keys_pressed +EXPORT_SYMBOL_GPL drivers/hid/hid 0xd779c26a hidinput_count_leds +EXPORT_SYMBOL_GPL drivers/hid/hid 0xeeec97ea hidinput_disconnect +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf3680531 hid_validate_values +EXPORT_SYMBOL_GPL drivers/hid/hid 0xf883ec7c hidinput_calc_abs_res +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe592bed hidinput_get_led_field +EXPORT_SYMBOL_GPL drivers/hid/hid 0xfe9d19d8 hid_input_report +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 0xa5a3a4b7 roccat_connect +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x34d884fe roccat_common2_send +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x6f985d52 roccat_common2_sysfs_write +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0x7368a828 roccat_common2_device_init_struct +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xa6c395f2 roccat_common2_sysfs_read +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xc3e37d02 roccat_common2_receive +EXPORT_SYMBOL_GPL drivers/hid/hid-roccat-common 0xec48fa3b roccat_common2_send_with_status +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x06e11099 sensor_hub_input_attr_get_raw_value +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x0b90ea42 sensor_hub_set_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x178e27f4 sensor_hub_get_feature +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x40193ab5 sensor_hub_input_get_attribute_info +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0x6d6ab74e sensor_hub_remove_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xcdc5e7b8 sensor_hub_device_open +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xd56a72e5 sensor_hub_register_callback +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdcebdb6e sensor_hub_device_close +EXPORT_SYMBOL_GPL drivers/hid/hid-sensor-hub 0xdfcdc1b1 hid_sensor_get_usage_index +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x01fd453e usbhid_lookup_quirk +EXPORT_SYMBOL_GPL drivers/hid/usbhid/usbhid 0x57f5e2b7 hiddev_hid_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x176b790f hsi_put_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x30b84582 hsi_unregister_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x3badd079 hsi_port_unregister_clients +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x5aa91c51 hsi_alloc_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x66dad9d0 hsi_add_clients_from_dt +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x6c744ec7 hsi_release_port +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x73b2279a hsi_remove_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x77e87481 hsi_async +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x7ceb69ff hsi_free_msg +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0x85dbeb61 hsi_new_client +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xa539de7d hsi_register_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xba410ae3 hsi_alloc_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc3c87994 hsi_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xc4eef66f hsi_register_controller +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe3e790cb hsi_get_channel_id_by_name +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xe4f8dbb6 hsi_register_client_driver +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xf0bf1e2e hsi_unregister_port_event +EXPORT_SYMBOL_GPL drivers/hsi/hsi 0xfea3c4f6 hsi_claim_port +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0x5ef6dea8 adt7x10_dev_pm_ops +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb064d597 adt7x10_remove +EXPORT_SYMBOL_GPL drivers/hwmon/adt7x10 0xb38cedf8 adt7x10_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x06978645 pmbus_write_byte +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x07fc5cd2 pmbus_clear_faults +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x0f8ab421 pmbus_set_page +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x337e3ca7 pmbus_update_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x415ef141 pmbus_clear_cache +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x4a8b3402 pmbus_do_remove +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x556ea8eb pmbus_get_driver_info +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x58f40ae4 pmbus_read_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x787e03d2 pmbus_check_byte_register +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x7ceb3399 pmbus_write_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x8540ece0 pmbus_write_word_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0x998a6e07 pmbus_do_probe +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xbc4cfa10 pmbus_regulator_ops +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xd6ea1009 pmbus_read_byte_data +EXPORT_SYMBOL_GPL drivers/hwmon/pmbus/pmbus_core 0xf05d4f3c pmbus_check_word_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x1c158af3 intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x36408d16 intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x5a785802 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x9f7057dc intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xb592ce0a intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xf40cb3cc intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xfef2cf89 intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1e620050 stm_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x593d9ba5 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x59f99c78 stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x811022a7 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xb5c9da24 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x39d6d3ef i2c_dw_disable_int +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x4be874bb i2c_dw_disable +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0x61794ad7 i2c_dw_probe +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xb3811e5d i2c_dw_read_comp_param +EXPORT_SYMBOL_GPL drivers/i2c/busses/i2c-designware-core 0xd3fe8ccf i2c_dw_init +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0x57095d12 i2c_add_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-mux 0xd133cb15 i2c_del_mux_adapter +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0x1316fdf0 i2c_handle_smbus_alert +EXPORT_SYMBOL_GPL drivers/i2c/i2c-smbus 0xa036cf52 i2c_setup_smbus_alert +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x618fb259 bmc150_accel_core_probe +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0x831b17ca bmc150_accel_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/accel/bmc150-accel-core 0xf5aeea4f bmc150_accel_core_remove +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x10905813 ad_sd_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x35a0ce43 ad_sd_init +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x6ad4de31 ad_sd_validate_trigger +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0x92bbc72f ad_sd_set_comm +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa3d7fa4b ad_sd_write_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xa861667c ad_sd_calibrate_all +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xae200fe7 ad_sigma_delta_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xdbc696d7 ad_sd_read_reg +EXPORT_SYMBOL_GPL drivers/iio/adc/ad_sigma_delta 0xed58b374 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 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 0x99df41d7 iio_channel_cb_get_channels +EXPORT_SYMBOL_GPL drivers/iio/buffer/industrialio-buffer-cb 0xdc17cd16 iio_channel_get_all_cb +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x4729cc26 ad5592r_probe +EXPORT_SYMBOL_GPL drivers/iio/dac/ad5592r-base 0x48d41aa5 ad5592r_remove +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x01e06762 bmg160_core_probe +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0x5155c2cc bmg160_pm_ops +EXPORT_SYMBOL_GPL drivers/iio/gyro/bmg160_core 0xdce38c2c bmg160_core_remove +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x0dd2730f adis_init +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x20a906f0 adis_write_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2eb22af7 adis_cleanup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x2fede3d0 adis_initial_startup +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x41619ab2 adis_read_reg +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x737ef3c8 adis_single_conversion +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0x9c38fd4e adis_remove_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xbf7f29c8 adis_check_status +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe1b00646 adis_reset +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xe4e6495b adis_probe_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xf485c246 adis_setup_buffer_and_trigger +EXPORT_SYMBOL_GPL drivers/iio/imu/adis_lib 0xfd438f21 adis_update_scan_mode +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x016e1ac3 iio_map_array_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x02f0c8f7 iio_buffer_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x26f6b499 iio_str_to_fixpoint +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x292a75b0 iio_enum_available_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x333382ed iio_write_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x350aa45d devm_iio_device_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x41ca6f2c iio_update_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x4595627e devm_iio_trigger_free +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x45cfdbf5 iio_read_channel_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x5af5fa6e iio_channel_get +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x68f9fc27 iio_scan_mask_query +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x73c8e5a7 iio_dealloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x83406057 iio_read_channel_average_raw +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8cdc4621 iio_push_to_buffers +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x8df4fa15 iio_channel_get_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x909cbdec iio_enum_read +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x9160e5b5 iio_buffer_put +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x96119bdc iio_validate_scan_mask_onehot +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x97c2fbb7 devm_iio_trigger_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0x98d447ed iio_channel_release +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xa6dfa960 iio_get_channel_type +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb22abae2 devm_iio_device_unregister +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xb87d2ae9 devm_iio_device_alloc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcbdaedc7 iio_channel_release_all +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcc133618 iio_alloc_pollfunc +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcd5811b6 iio_read_channel_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xcf2f6d08 iio_update_demux +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe1318e76 iio_enum_write +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xe527e371 iio_convert_raw_to_processed +EXPORT_SYMBOL_GPL drivers/iio/industrialio 0xec29b339 devm_iio_device_register +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/infiniband/core/ib_core 0xdbd019c4 ib_wq +EXPORT_SYMBOL_GPL drivers/input/ff-memless 0xcedb1754 input_ff_create_memless +EXPORT_SYMBOL_GPL drivers/input/matrix-keymap 0x60074b11 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 0x94e02cea adxl34x_probe +EXPORT_SYMBOL_GPL drivers/input/misc/adxl34x 0xe4586827 adxl34x_resume +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x4275c3dc cyttsp4_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x440018e7 cyttsp4_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp4_core 0x7db74f0e cyttsp4_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x4e32b4b1 cyttsp_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0x82aa9839 cyttsp_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_core 0xe59ca430 cyttsp_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0x149bbdb0 cyttsp_i2c_write_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/cyttsp_i2c_common 0xe3ad925c cyttsp_i2c_read_block_data +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x42271e19 tsc200x_regmap_config +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0x9961b092 tsc200x_probe +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb474afc4 tsc200x_remove +EXPORT_SYMBOL_GPL drivers/input/touchscreen/tsc200x-core 0xb6c868e6 tsc200x_pm_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x042a5868 wm9712_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x19944532 wm9705_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x3ec98f14 wm97xx_get_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x4db83ea2 wm97xx_config_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x67b59877 wm97xx_register_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x6959ba78 wm97xx_unregister_mach_ops +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x982789e6 wm97xx_reg_read +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0x9df21fd8 wm97xx_read_aux_adc +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xc88058f6 wm9713_codec +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xd01211ca wm97xx_set_gpio +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xe2621faf wm97xx_set_suspend_mode +EXPORT_SYMBOL_GPL drivers/input/touchscreen/wm97xx-ts 0xeb56b9d1 wm97xx_reg_write +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x076a3e79 ipack_device_add +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x25413b20 ipack_get_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9073b1fd ipack_put_device +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9a4041da ipack_bus_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0x9fe3e7d9 ipack_device_del +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xaeefb18b ipack_device_init +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xb6476a46 ipack_driver_unregister +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc4ac2813 ipack_driver_register +EXPORT_SYMBOL_GPL drivers/ipack/ipack 0xc8f1c4f0 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 0x01a40422 gigaset_m10x_send_skb +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x02b58cbc gigaset_isdn_rcv_err +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x09aee2c2 gigaset_shutdown +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1d1a224e gigaset_skb_rcvd +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x1e5b0c92 gigaset_initdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x3346b213 gigaset_fill_inbuf +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x42fbb405 gigaset_blockdriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x454aa44f gigaset_debuglevel +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x6ac1dd7a gigaset_freedriver +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9b4f0810 gigaset_add_event +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0x9e058d8f gigaset_freecs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xa3151853 gigaset_dbg_buffer +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb1e01931 gigaset_if_receive +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xb3004710 gigaset_m10x_input +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xd4191c54 gigaset_stop +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xe73eb98d gigaset_start +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf128c597 gigaset_skb_sent +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf1381440 gigaset_initcs +EXPORT_SYMBOL_GPL drivers/isdn/gigaset/gigaset 0xf7ec7d67 gigaset_handle_modem_response +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x038c8731 led_classdev_flash_register +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0x70c5d758 led_get_flash_fault +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xaf78a1fa led_update_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xb001f9e5 led_set_flash_timeout +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xe58ffe68 led_set_flash_brightness +EXPORT_SYMBOL_GPL drivers/leds/led-class-flash 0xeee42ae0 led_classdev_flash_unregister +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x1dbe3340 lp55xx_deinit_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x3e26572e lp55xx_register_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x463e90d7 lp55xx_init_device +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x6ec347c5 lp55xx_unregister_leds +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x87ecff24 lp55xx_unregister_sysfs +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x910b7771 lp55xx_read +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9727e608 lp55xx_is_extclk_used +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0x9bcafc37 lp55xx_of_populate_pdata +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xaa4b7caa lp55xx_update_bits +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xc0161250 lp55xx_write +EXPORT_SYMBOL_GPL drivers/leds/leds-lp55xx-common 0xcb6bd9be 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/macintosh/windfarm_core 0x0a0527be wf_register_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x263ca949 wf_unregister_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x6398c5b2 wf_register_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x6546b9ba wf_put_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x75147afa wf_set_overtemp +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0x82a6454b wf_put_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xbcace2a5 wf_unregister_client +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc012eb64 wf_get_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc8077a1f wf_register_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xc8225011 wf_unregister_control +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xdcc7260b wf_get_sensor +EXPORT_SYMBOL_GPL drivers/macintosh/windfarm_core 0xed82a14f wf_clear_overtemp +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x07b335a9 mcb_request_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x0a06fb8a mcb_alloc_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x21b3b4a9 mcb_alloc_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x2e4755ad mcb_unregister_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x88f60c1d __mcb_register_driver +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x8bf52ac0 mcb_release_mem +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9744b403 mcb_device_register +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0x9d0a8332 mcb_release_bus +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xafa18e2a mcb_free_dev +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xafd25ea6 mcb_get_irq +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xbdfff256 mcb_bus_put +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xc8836ecf mcb_bus_add_devices +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xced4cb16 mcb_bus_get +EXPORT_SYMBOL_GPL drivers/mcb/mcb 0xe9fa8639 chameleon_parse_cells +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 0x0bb0aaa6 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 0x245012c8 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 0x3b97c32c 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 0x729db18e dm_cell_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x753e20b2 dm_bio_prison_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x92bb6f78 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xa77e98b9 dm_bio_detain +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 0xba9b5169 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xca2e3a88 dm_deferred_entry_inc +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xcabb4fdb dm_get_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xd39f3604 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 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 0x816f5cbc 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 0x508d5006 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x60dc225e dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x70629aa5 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x8e116e5e dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa5f27956 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xa62876f3 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xfda50961 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x37ff6101 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x913ddefe 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 0x11fe4ddc 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 0x45ab972a dm_rh_dec +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x489db10c dm_rh_inc_pending +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x4b33a0a1 dm_region_hash_create +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x630848f6 dm_rh_bio_to_region +EXPORT_SYMBOL_GPL drivers/md/dm-region-hash 0x7425a8a2 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 0x77d22799 dm_rh_dirty_log +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 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 0x022d4d42 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 0x4e9d719f saa7146_vmalloc_build_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x78cd607c saa7146_register_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x78f3e15f saa7146_pgtable_alloc +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x7e4d0e6d saa7146_unregister_extension +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0x806ccda0 saa7146_pgtable_free +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb333ce64 saa7146_pgtable_build_single +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xb9f20bb1 saa7146_i2c_adapter_prepare +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xcf15afe9 saa7146_vfree_destroy_pgtable +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xdd5c1556 saa7146_wait_for_debi_done +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xe3cd9b5c saa7146_debug +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146 0xefda253d saa7146_setgpio +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x0498a420 saa7146_stop_preview +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x141a8fa6 saa7146_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x46a7962b saa7146_set_hps_source_and_sync +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x4998b615 saa7146_vv_init +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0x7e918aa1 saa7146_vv_release +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xa85fe1ae saa7146_register_device +EXPORT_SYMBOL_GPL drivers/media/common/saa7146/saa7146_vv 0xdabf7efc saa7146_start_preview +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x14b95dca sms_board_power +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x16c5ae46 smscore_set_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x1854dad1 smscore_register_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x21e36bf2 smscore_registry_getmode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x28e7f43b smscore_get_device_mode +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x2c7dfc0d sms_board_led_feedback +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37d91069 smsendian_handle_tx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x37e77956 sms_board_setup +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x439fd629 smscore_register_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x45284ae9 smsendian_handle_rx_message +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x56a9b14d smscore_getbuffer +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x612ae50f smscore_onresponse +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x680bf5b5 sms_board_event +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ee9098 sms_board_load_modules +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0x74ff618e smscore_putbuffer +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 0x9d93d252 smscore_unregister_hotplug +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xabee5964 smscore_get_board_id +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb070bc76 smscore_start_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xb09d3854 smscore_unregister_device +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xbbdb5c42 smscore_unregister_client +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xe2dcf99e sms_board_lna_control +EXPORT_SYMBOL_GPL drivers/media/common/siano/smsmdtv 0xeb31b843 smscore_register_device +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/as102_fe 0x1364e5d6 as102_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/cx24117 0xdbfc1838 cx24117_attach +EXPORT_SYMBOL_GPL drivers/media/dvb-frontends/tda18271c2dd 0xacde2c3a tda18271c2dd_attach +EXPORT_SYMBOL_GPL drivers/media/media 0x022561d0 media_entity_cleanup +EXPORT_SYMBOL_GPL drivers/media/media 0x06418a0c media_entity_get +EXPORT_SYMBOL_GPL drivers/media/media 0x0ddcea31 media_entity_graph_walk_next +EXPORT_SYMBOL_GPL drivers/media/media 0x0e03c9e3 media_entity_setup_link +EXPORT_SYMBOL_GPL drivers/media/media 0x1f5e2a53 media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0x2b9fe182 media_entity_graph_walk_start +EXPORT_SYMBOL_GPL drivers/media/media 0x2d29bc31 media_entity_put +EXPORT_SYMBOL_GPL drivers/media/media 0x3ab8e6a3 media_entity_create_link +EXPORT_SYMBOL_GPL drivers/media/media 0x6ec74011 media_device_register_entity +EXPORT_SYMBOL_GPL drivers/media/media 0x8dc9071a media_entity_find_link +EXPORT_SYMBOL_GPL drivers/media/media 0x9e8057bb __media_entity_remove_links +EXPORT_SYMBOL_GPL drivers/media/media 0xa6703ea6 media_device_unregister_entity +EXPORT_SYMBOL_GPL drivers/media/media 0xaad89636 media_entity_pipeline_start +EXPORT_SYMBOL_GPL drivers/media/media 0xbc27a51c media_entity_init +EXPORT_SYMBOL_GPL drivers/media/media 0xd9e74f43 media_device_unregister +EXPORT_SYMBOL_GPL drivers/media/media 0xe3082a2e media_entity_pipeline_stop +EXPORT_SYMBOL_GPL drivers/media/media 0xfd735479 media_entity_remote_pad +EXPORT_SYMBOL_GPL drivers/media/media 0xfe38ef14 __media_device_register +EXPORT_SYMBOL_GPL drivers/media/pci/cx88/cx88xx 0x3dbf1b9b cx88_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x13809fb5 mantis_pci_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x21437360 mantis_get_mac +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x34843a5a mantis_uart_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x36557482 mantis_stream_control +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x707276b5 mantis_input_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x97e1aa45 mantis_i2c_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0x9bacb4a1 mantis_frontend_soft_reset +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xa3d6abf6 mantis_i2c_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xad85a0be mantis_frontend_power +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc8b4502b mantis_dma_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xc940e0a5 mantis_uart_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xd84c5475 mantis_pci_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xdaed7409 mantis_dvb_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xde53127b mantis_ca_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe2e0dff0 mantis_input_exit +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xe9cdf844 mantis_gpio_set_bits +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xebbe0863 mantis_ca_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xeeda75ba mantis_dvb_init +EXPORT_SYMBOL_GPL drivers/media/pci/mantis/mantis_core 0xfc835198 mantis_dma_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x11ffc864 saa7134_vb2_buffer_queue +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x156865ee saa7134_querystd +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x1e965316 saa7134_ts_start_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x32096c3c saa7134_s_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x428658a0 saa7134_s_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x50d39010 saa7134_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x52ffc78f saa7134_g_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x63a9a57a saa7134_s_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x6a5ae908 saa7134_g_frequency +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x722ebf75 saa7134_ts_buffer_prepare +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x7d2953e8 saa7134_ts_queue_setup +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x80fdd983 saa7134_s_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x93a5cb51 saa7134_g_tuner +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0x96b7bd77 saa7134_enum_input +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xa5e58fc8 saa7134_ts_stop_streaming +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xc4699ce0 saa7134_querycap +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe6766bd6 saa7134_g_std +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xe898efcb saa7134_ts_buffer_init +EXPORT_SYMBOL_GPL drivers/media/pci/saa7134/saa7134 0xea4ea3f9 saa7134_ts_qops +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x042bcf49 ttpci_budget_set_video_port +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x4ba1361d ttpci_budget_irq10_handler +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x752e3c3a ttpci_budget_debiread +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x7948c222 budget_debug +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0x8684b49c ttpci_budget_init_hooks +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xb015e0c9 ttpci_budget_init +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xc851de7a ttpci_budget_deinit +EXPORT_SYMBOL_GPL drivers/media/pci/ttpci/budget-core 0xceb257be ttpci_budget_debiwrite +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x03932147 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 0x0dfb2d64 xvip_init_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x0e231c78 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 0x58149fba xvip_clr_or_set +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0x6a820feb xvip_enum_frame_size +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xae3720d8 xvip_cleanup_resources +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-video 0xd94e1541 xvip_enum_mbus_code +EXPORT_SYMBOL_GPL drivers/media/platform/xilinx/xilinx-vtc 0x0ea3c624 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 0x174573cc radio_tea5777_exit +EXPORT_SYMBOL_GPL drivers/media/radio/shark2 0xf103e121 radio_tea5777_init +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03035dd4 rc_register_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x03dc6149 rc_map_register +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1839a605 ir_raw_event_store +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x1e93b85b ir_raw_event_store_with_filter +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x36bcf6b9 rc_free_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x41e5f36a rc_open +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x462b0eeb ir_raw_event_handle +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x46619c1c rc_unregister_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x4e6dd27a 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 0x64c8bc65 rc_keydown_notimeout +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x779bcb00 rc_keydown +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0x879c6325 rc_repeat +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xa8c3d59a rc_map_get +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xafcfa952 rc_g_keycode_from_table +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xbd30b2c8 rc_close +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc60e2e9e rc_map_unregister +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xc8e919cb rc_keyup +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xe5d232c8 rc_allocate_device +EXPORT_SYMBOL_GPL drivers/media/rc/rc-core 0xf684b28c ir_raw_event_store_edge +EXPORT_SYMBOL_GPL drivers/media/tuners/mt2063 0x4d0aab64 mt2063_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mt20xx 0xfa78c6de microtune_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/mxl5007t 0xecc3a7e7 mxl5007t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/r820t 0xdf1ced38 r820t_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda18271 0x7c6896a3 tda18271_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda827x 0x0230f860 tda827x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0x29f55859 tda829x_probe +EXPORT_SYMBOL_GPL drivers/media/tuners/tda8290 0xc3bed7d1 tda829x_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tda9887 0x25a10cec tda9887_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc6719cd0 tea5761_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5761 0xc87da4f5 tea5761_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x2fff368e tea5767_attach +EXPORT_SYMBOL_GPL drivers/media/tuners/tea5767 0x8912ce6f tea5767_autodetection +EXPORT_SYMBOL_GPL drivers/media/tuners/tuner-simple 0x3c0f64e4 simple_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x017ea7c7 cx231xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x05f469c8 cx231xx_capture_start +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x102e75ab cx231xx_send_gpio_cmd +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x1c2525ef is_fw_load +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x22fd2288 cx231xx_uninit_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x23ba0bf8 cx231xx_demod_reset +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x25d5528b cx231xx_send_usb_command +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x38358d8d cx231xx_dev_init +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x471c58b4 cx231xx_enable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x4db50f13 cx231xx_init_bulk +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x5273b334 cx231xx_enable_i2c_port_3 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x56a43d68 cx231xx_dev_uninit +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x6032de61 cx231xx_unmute_audio +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x72be2af9 cx231xx_uninit_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x7aa893e6 cx231xx_set_alt_setting +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x93ba48b0 cx231xx_get_i2c_adap +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0x9b8ca326 cx231xx_uninit_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xbd342e6e cx231xx_init_vbi_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xc8ed5469 cx231xx_disable656 +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xe8121591 cx231xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/cx231xx/cx231xx 0xfd678a32 cx231xx_init_isoc +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-demod 0xab9eb04f mxl111sf_demod_attach +EXPORT_SYMBOL_GPL drivers/media/usb/dvb-usb-v2/mxl111sf-tuner 0x6eac4272 mxl111sf_tuner_attach +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x068ea6f3 em28xx_audio_setup +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x1e0fc58d em28xx_uninit_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x2d8caa4e em28xx_write_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x5266050e em28xx_write_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x615941c8 em28xx_write_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x6d578f78 em28xx_boards +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7338da6c em28xx_find_led +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7d077236 em28xx_init_usb_xfer +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7e74e79b em28xx_gpio_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7eb772f0 em28xx_setup_xc3028 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x7fc8652c em28xx_tuner_callback +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x82321dcd em28xx_toggle_reg_bits +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8fda6047 em28xx_write_regs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x8fdaa032 em28xx_audio_analog_set +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0x96ccf944 em28xx_alloc_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa0433b20 em28xx_set_mode +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xa8cbdd68 em28xx_stop_urbs +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xaa57ba31 em28xx_read_ac97 +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xcd75ef7f em28xx_free_device +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xdaf7275e em28xx_read_reg +EXPORT_SYMBOL_GPL drivers/media/usb/em28xx/em28xx 0xe41c237a em28xx_init_camera +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x2309a6d6 tm6000_xc5000_callback +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x6d2cb6f3 tm6000_set_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x89b611dd tm6000_debug +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0x9b3a5f8a tm6000_get_reg +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xaccbcccd tm6000_set_audio_bitrate +EXPORT_SYMBOL_GPL drivers/media/usb/tm6000/tm6000 0xd0703555 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 0x651efe7e v4l2_spi_subdev_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x6eb1c74f 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 0x842049f5 v4l2_i2c_new_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0x96616de5 v4l2_i2c_subdev_addr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-common 0xae25c984 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-common 0xfb13b65d 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 0x07c7bb0c v4l2_flash_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-flash-led-class 0xf4290fd9 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 0x1814c067 v4l2_m2m_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x43aef46d v4l2_m2m_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x43b9a431 v4l2_m2m_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x468ecf7d v4l2_m2m_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x632fc986 v4l2_m2m_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x67fb4429 v4l2_m2m_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x6c8c83d3 v4l2_m2m_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x79b3546c v4l2_m2m_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x880b92ea v4l2_m2m_ctx_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x89e058b9 v4l2_m2m_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x8bc6d595 v4l2_m2m_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x90b16853 v4l2_m2m_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0x910a02da v4l2_m2m_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaa9f7345 v4l2_m2m_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xabda0b7d v4l2_m2m_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xaebe3d3d v4l2_m2m_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc6fca5ad v4l2_m2m_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xc800ce05 v4l2_m2m_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd247c26c v4l2_m2m_ctx_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xd5fd75b1 v4l2_m2m_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe02ffbbb v4l2_m2m_next_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe6f2c731 v4l2_m2m_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xe77b08a9 v4l2_m2m_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xec1141db v4l2_m2m_try_schedule +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xedebac89 v4l2_m2m_buf_remove +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xef23cefd v4l2_m2m_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf0097e94 v4l2_m2m_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/v4l2-mem2mem 0xf356e610 v4l2_m2m_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0a1c3345 videobuf_mmap_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0b4bc059 videobuf_iolock +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0c740375 __videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x0cb6ce05 videobuf_poll_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x13f03222 videobuf_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x29f68828 videobuf_read_stream +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x2fa35332 videobuf_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x3122725c videobuf_queue_is_busy +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x353b0341 videobuf_next_field +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x532785f7 videobuf_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x586ca50b videobuf_read_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x6207173e videobuf_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x68255ba3 videobuf_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x789d3b0d videobuf_queue_to_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x7e75625d videobuf_mmap_setup +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x8cfc0dc9 videobuf_mmap_mapper +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0x9317d7c0 videobuf_queue_core_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb0113c70 videobuf_alloc_vb +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xb477cb1a videobuf_queue_cancel +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xbb1103c8 videobuf_waiton +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xc9275d3a videobuf_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd0541a07 videobuf_read_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xd4ab5073 videobuf_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-core 0xf2aa6374 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 0x5e0e7c84 videobuf_to_dma +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x63f09bf2 videobuf_dma_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0x927b3b43 videobuf_queue_sg_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-dma-sg 0xde1b95a1 videobuf_dma_unmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x06d873c3 videobuf_vmalloc_free +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0x50ac7bd6 videobuf_queue_vmalloc_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf-vmalloc 0xb1a42862 videobuf_to_vmalloc +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x11d717b0 vb2_plane_vaddr +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x1556d1d7 vb2_core_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x19dea138 vb2_core_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x2d328655 vb2_debug +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x42d33e1e vb2_queue_error +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4fdf903f vb2_discard_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x4fe696bf vb2_wait_for_all_buffers +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x78139681 vb2_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x7acedd54 vb2_core_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0x893ea826 vb2_core_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xaabf41c4 vb2_core_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xab74c39e vb2_core_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb7b06047 vb2_core_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xb961b36c vb2_core_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xcda094b0 vb2_core_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xdebc58ad vb2_plane_cookie +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xe1a56ff5 vb2_core_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xedd30b17 vb2_core_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-core 0xf811081d vb2_buffer_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-contig 0x56278546 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 0xf555a0da vb2_dma_contig_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0x1c16db3b vb2_dma_sg_init_ctx +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-dma-sg 0xaa0816f0 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 0x6c7934b5 vb2_common_vm_ops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x019a4660 vb2_ioctl_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x094e68ee vb2_ops_wait_finish +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0d538f37 vb2_create_bufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x0ed4d227 vb2_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x11b380b8 vb2_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x1edb06ff vb2_ioctl_streamon +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x263b58b7 vb2_ioctl_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x26628a9f vb2_ioctl_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x26cbaa8d vb2_fop_write +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x2d4407d1 vb2_queue_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x31080473 vb2_fop_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x36b9c79c vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x3a8df3b6 vb2_poll +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x48f010e5 vb2_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x4f4de191 vb2_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x50e003c4 vb2_thread_stop +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x516843f2 vb2_ioctl_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x62bf77af vb2_thread_start +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x64f80fe4 vb2_fop_mmap +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x65cc5df1 vb2_queue_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x66fc0918 vb2_ioctl_prepare_buf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x67bd3073 vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x6e69845e _vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x7aca9d88 vb2_reqbufs +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x8ce6de02 vb2_ioctl_querybuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0x9c57219c vb2_ioctl_streamoff +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xa7af9f00 vb2_fop_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xbc646537 vb2_ioctl_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xcf6d5d2b vb2_expbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xd184837e vb2_fop_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe1cd819d vb2_ops_wait_prepare +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-v4l2 0xe79815e2 vb2_read +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videobuf2-vmalloc 0xc4ca8037 vb2_vmalloc_memops +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x063f212a v4l2_event_unsubscribe_all +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0674c47c v4l2_subdev_link_validate_default +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x0f0439c2 v4l2_event_queue_fh +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x128c6c13 v4l2_src_change_event_subdev_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x133adfc4 __tracepoint_vb2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1378a0d9 v4l2_event_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1d70e348 v4l2_src_change_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x1ef3a428 __tracepoint_vb2_v4l2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x207aeee2 v4l2_device_set_name +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x2ab9d732 __tracepoint_vb2_v4l2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x30e98eb3 v4l2_compat_ioctl32 +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x313cb7cb v4l2_subdev_notify_event +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x369d14cb v4l2_fh_release +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x3acc8a43 v4l2_event_dequeue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x40c5bd5f v4l2_fh_exit +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x4e73fa8d __tracepoint_vb2_v4l2_qbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5953c179 v4l2_device_unregister_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x5a6d3503 v4l2_device_unregister +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x64c6c36e v4l2_subdev_link_validate +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x691ad74e v4l2_fh_is_singular +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x71c4dfea v4l2_event_subscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x74a017c5 __tracepoint_vb2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x765e2211 v4l2_event_pending +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0x7bfda7d4 __tracepoint_vb2_v4l2_dqbuf +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa1e5f8d6 v4l2_fh_del +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa77475f8 v4l2_device_put +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xa7c11425 v4l2_fh_add +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xaca2544a __tracepoint_vb2_buf_queue +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xbe07091d v4l2_device_register +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xc6429d8b __tracepoint_vb2_buf_done +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xcf447543 v4l2_device_register_subdev +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd237520b v4l2_event_unsubscribe +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd759edc8 v4l2_fh_init +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xd837910c v4l2_device_register_subdev_nodes +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xe01360d0 v4l2_fh_open +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xfe4a0b22 v4l2_device_disconnect +EXPORT_SYMBOL_GPL drivers/media/v4l2-core/videodev 0xff481edc v4l2_event_subdev_unsubscribe +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x3f9c6832 pm80x_init +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x48aaac30 pm80x_regmap_config +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0x59e7b620 pm80x_pm_ops +EXPORT_SYMBOL_GPL drivers/mfd/88pm80x 0xd99fd720 pm80x_deinit +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x042126a9 da9150_bulk_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2c290c15 da9150_read_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x2d403c91 da9150_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x50f5f80c da9150_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6787500d da9150_write_qif +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x6b404190 da9150_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/da9150-core 0x914f565d da9150_bulk_read +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x2309db5c kempld_read16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x28a40a8b kempld_write8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x3d487153 kempld_read8 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0x433c11b2 kempld_write16 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xafd4d0f6 kempld_read32 +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd335bf31 kempld_get_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xd7c9949e kempld_release_mutex +EXPORT_SYMBOL_GPL drivers/mfd/kempld-core 0xdf626985 kempld_write32 +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0x095220e4 lm3533_read +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xa733be8a lm3533_write +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-core 0xafa239c6 lm3533_update +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x70629031 lm3533_ctrlbank_disable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x9797512b lm3533_ctrlbank_enable +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0x99103c25 lm3533_ctrlbank_get_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xb7921918 lm3533_ctrlbank_set_brightness +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xeb19faaa lm3533_ctrlbank_set_max_current +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf51a5e49 lm3533_ctrlbank_set_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lm3533-ctrlbank 0xf75a0088 lm3533_ctrlbank_get_pwm +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x016f82cb lp3943_write_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0x51343005 lp3943_read_byte +EXPORT_SYMBOL_GPL drivers/mfd/lp3943 0xf08d0bd4 lp3943_update_bits +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x279861a6 mc13xxx_adc_do_conversion +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0x5b74fc00 mc13xxx_common_exit +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xac73630c mc13xxx_variant_mc34708 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xbe7c9664 mc13xxx_variant_mc13783 +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xf9b91599 mc13xxx_common_init +EXPORT_SYMBOL_GPL drivers/mfd/mc13xxx-core 0xfec6dd44 mc13xxx_variant_mc13892 +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x0964360c pcf50633_reg_set_bit_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x1ff602dc pcf50633_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x61f2ad44 pcf50633_irq_unmask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8bfc192a pcf50633_free_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x8e25b754 pcf50633_register_irq +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x97c74853 pcf50633_read_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0x9b5e4a3d pcf50633_reg_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbc8d2908 pcf50633_irq_mask +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xbd17e949 pcf50633_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xd5572efd pcf50633_irq_mask_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633 0xf01a344a pcf50633_write_block +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xda00b77b pcf50633_adc_sync_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-adc 0xdf5007b8 pcf50633_adc_async_read +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x112e90e1 pcf50633_gpio_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0x21ebbdc8 pcf50633_gpio_invert_get +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xab6c07c3 pcf50633_gpio_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb3731df4 pcf50633_gpio_power_supply_set +EXPORT_SYMBOL_GPL drivers/mfd/pcf50633-gpio 0xb3febdd5 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 0x1465c771 rtsx_pci_card_power_off +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x215e21cd rtsx_pci_card_exist +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x343c1fc0 rtsx_pci_dma_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x34568204 rtsx_pci_switch_output_voltage +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3ce7433d rtsx_pci_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x3f3253a6 rtsx_pci_write_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x44fdbe20 rtsx_pci_read_phy_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x5e3732c7 rtsx_pci_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x703ff5b0 rtsx_pci_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x803c72e2 rtsx_pci_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x85a1fdb6 rtsx_pci_card_power_on +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x94152727 rtsx_pci_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0x95d5b754 rtsx_pci_complete_unfinished_transfer +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa4f0d532 rtsx_pci_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xa8174fbf rtsx_pci_dma_unmap_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xae7e1ed3 rtsx_pci_send_cmd_no_wait +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xb6526a51 rtsx_pci_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd08fed2c rtsx_pci_stop_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd2dbebe4 rtsx_pci_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd80dc3ab rtsx_pci_card_pull_ctl_disable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xd82c9503 rtsx_pci_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xea0b83bb rtsx_pci_card_pull_ctl_enable +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xebbd071e rtsx_pci_start_run +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_pci 0xf1d20578 rtsx_pci_dma_map_sg +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x07086796 rtsx_usb_write_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x16e8ddc8 rtsx_usb_ep0_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x1d6f4770 rtsx_usb_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x32a6bb83 rtsx_usb_get_card_status +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7b3765cc rtsx_usb_ep0_read_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x7f9d0a7e rtsx_usb_transfer_data +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x93bb1edf rtsx_usb_read_ppbuf +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0x9fb1cf81 rtsx_usb_get_rsp +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xab03c4df rtsx_usb_send_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xab808f58 rtsx_usb_switch_clock +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xac36ad55 rtsx_usb_write_register +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xb0f93c70 rtsx_usb_add_cmd +EXPORT_SYMBOL_GPL drivers/mfd/rtsx_usb 0xfb4a459a rtsx_usb_card_exclusive_check +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0dbee067 si476x_core_cmd_ic_link_gpo_ctl_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x0dcdefaf si476x_core_cmd_am_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x121f5eeb si476x_core_cmd_fm_phase_div_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x14244fce si476x_core_cmd_intb_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x1c90bc45 si476x_core_cmd_ana_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x209d431a si476x_core_has_am +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x27642fc8 si476x_core_cmd_power_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x2ffe5131 si476x_core_cmd_fm_rds_blockcount +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x30590b11 si476x_core_is_powered_up +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x33754489 si476x_core_cmd_zif_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x34177b4d devm_regmap_init_si476x +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x37c3a001 si476x_core_cmd_agc_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x38c92d0d si476x_core_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3aa49f69 si476x_core_cmd_get_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c6625a2 si476x_core_is_in_am_receiver_mode +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3c90f71e si476x_core_cmd_fm_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x3e8dc2d4 si476x_core_cmd_func_info +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x41d6ba19 si476x_core_cmd_am_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x4b4827d5 si476x_core_cmd_fm_rds_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x59a61d81 si476x_core_is_a_secondary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x5b9825f4 si476x_core_cmd_power_down +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x7283c980 si476x_core_stop +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x73b9ee48 si476x_core_has_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x798832c3 si476x_core_cmd_am_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x84626065 si476x_core_cmd_fm_tune_freq +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x87a21bd1 si476x_core_i2c_xfer +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x8c79c88e si476x_core_cmd_fm_seek_start +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x90ae6b22 si476x_core_cmd_am_acf_status +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0x9448e35b si476x_core_cmd_dig_audio_pin_cfg +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xbec8045d si476x_core_set_power_state +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xcce028dd si476x_core_cmd_fm_phase_diversity +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xdbbfabff si476x_core_cmd_set_property +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xe43e6b6f si476x_core_is_a_primary_tuner +EXPORT_SYMBOL_GPL drivers/mfd/si476x-core 0xf00dd936 si476x_core_cmd_fm_rsq_status +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x0430fa69 sm501_modify_reg +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x77ba35e2 sm501_misc_control +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0x7d2ed136 sm501_find_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xfbb4b752 sm501_set_clock +EXPORT_SYMBOL_GPL drivers/mfd/sm501 0xff98ea74 sm501_unit_power +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x0edd3710 am335x_tsc_se_clr +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x181d6428 am335x_tsc_se_set_once +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0x8ed4bab0 am335x_tsc_se_set_cache +EXPORT_SYMBOL_GPL drivers/mfd/ti_am335x_tscadc 0xcabde1ea am335x_tsc_se_adc_done +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0x8eb72179 tps65218_clear_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xaae1eb24 tps65218_reg_write +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xb4fba7f3 tps65218_set_bits +EXPORT_SYMBOL_GPL drivers/mfd/tps65218 0xe261e4b2 tps65218_reg_read +EXPORT_SYMBOL_GPL drivers/mfd/ucb1400_core 0x6f6aefaf ucb1400_adc_read +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x2de95453 bmp085_remove +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x4789149b bmp085_probe +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0x63b23a6b bmp085_detect +EXPORT_SYMBOL_GPL drivers/misc/bmp085 0xd55ea70b bmp085_regmap_config +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x243bd4dc cb710_pci_update_config_reg +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0x30807de0 cb710_sg_dwiter_read_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xa35a7f38 cb710_sg_dwiter_write_next_block +EXPORT_SYMBOL_GPL drivers/misc/cb710/cb710 0xba2f5da9 cb710_set_irq_handler +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x06175a73 cxl_free_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x08e2f292 cxl_fd_ioctl +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x110f239e cxl_fd_open +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1580a513 cxl_psa_map +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1aec0ea7 cxl_perst_reloads_same_image +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x1d0d2df7 cxl_release_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x425e3612 cxl_unmap_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x43e3ab73 cxl_start_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x5d8a84cd cxl_dev_context_init +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x603e4419 cxl_fd_poll +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x60c5ac41 cxl_fops_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x634b7c09 cxl_get_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x64749bbf cxl_get_fd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x6965954b cxl_read_adapter_vpd +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7584cbc6 cxl_allocate_afu_irqs +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x7bd7f1eb cxl_set_master +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x836b1a87 cxl_pci_to_cfg_record +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x85f1a735 cxl_fd_mmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x8740bc47 cxl_psa_unmap +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x91c87389 cxl_pci_to_afu +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x95c237d4 cxl_map_afu_irq +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0x9c64365f cxl_start_work +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xa34c5443 cxl_afu_reset +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xacd0790d cxl_stop_context +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xae7ddcdb cxl_process_element +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xd6821383 cxl_fd_release +EXPORT_SYMBOL_GPL drivers/misc/cxl/cxl 0xfadf9f60 cxl_fd_read +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 0x17146a49 enclosure_remove_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x408e403b enclosure_component_alloc +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x550363f6 enclosure_component_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x5ae8e147 enclosure_unregister +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x7f65adf4 enclosure_register +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x8840e739 enclosure_add_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0x976cd00e enclosure_for_each_device +EXPORT_SYMBOL_GPL drivers/misc/enclosure 0xbc539cbd enclosure_find +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x0e4c5f58 lis3lv02d_init_dt +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x142c0a40 lis3_dev +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x148fc981 lis3lv02d_init_device +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x3e00648f lis3lv02d_poweron +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x533fc02a lis3lv02d_remove_fs +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0x644d8f70 lis3lv02d_joystick_enable +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xaa5211c8 lis3lv02d_poweroff +EXPORT_SYMBOL_GPL drivers/misc/lis3lv02d/lis3lv02d 0xf9e3f76c lis3lv02d_joystick_disable +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 0x1480c629 sdhci_send_command +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x1c01f777 sdhci_runtime_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x2a415a90 sdhci_set_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x55fd1274 sdhci_alloc_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x5ea18c56 sdhci_suspend_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x67bbfa62 sdhci_runtime_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x67d0d441 sdhci_set_uhs_signaling +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x6a8682bd sdhci_remove_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x7558b74b sdhci_resume_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x860779dd sdhci_free_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0x95947500 sdhci_enable_irq_wakeups +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xaba917b9 sdhci_set_bus_width +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xd96a09eb sdhci_add_host +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci 0xef4005b2 sdhci_reset +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x0a7e1bf1 sdhci_pltfm_register +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x33f1d304 sdhci_pltfm_resume +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x5cb90a28 sdhci_get_of_property +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x6a93ff87 sdhci_pltfm_unregister +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x908223d9 sdhci_pltfm_clk_get_max_clock +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0x986fb663 sdhci_pltfm_free +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xcc95ca23 sdhci_pltfm_suspend +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xd1e53d60 sdhci_pltfm_pmops +EXPORT_SYMBOL_GPL drivers/mmc/host/sdhci-pltfm 0xdc55b562 sdhci_pltfm_init +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0x0018b46d cfi_cmdset_0200 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xc22fb413 cfi_cmdset_0001 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0001 0xfd0691fb cfi_cmdset_0003 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x116bcc89 cfi_cmdset_0701 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0x9cc048df cfi_cmdset_0006 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0002 0xe292030f cfi_cmdset_0002 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_cmdset_0020 0x73556588 cfi_cmdset_0020 +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x5cd7b4a6 cfi_qry_mode_on +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0x8cd2e2cd cfi_qry_present +EXPORT_SYMBOL_GPL drivers/mtd/chips/cfi_util 0xe6c87df0 cfi_qry_mode_off +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x0167297c mtd_lock_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x02c7216a mtd_write_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x046033a4 unregister_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x04e855aa kill_mtd_super +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x1423cc6f mtd_is_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x14d2ac72 __get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x23b85c34 register_mtd_user +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2452df37 mtd_panic_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x24d0c4c7 mtd_kmalloc_up_to +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x26252af1 mtd_block_isbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x2ca60e14 mtd_table_mutex +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x34657e6e mtd_read_user_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x365d4081 mtd_read_oob +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3a263299 mtd_lock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x3aa93f34 mtd_read +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4027d468 mtd_del_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4b377293 mtd_read_fact_prot_reg +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x4bd48224 mtd_erase +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x50fdc6b0 register_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x57a810af __put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x5bf5c863 mtd_write +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6682b19d deregister_mtd_parser +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x68d0bbfd mtd_get_user_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x6e1e5e83 mtd_add_partition +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x79322e00 mtd_block_markbad +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x7c060dd3 mtd_unlock +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0x88a1b06d mount_mtd +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xa178572b mtd_device_unregister +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xaba36750 mtd_get_fact_prot_info +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xae9d961c mtd_block_isreserved +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xb0f071fd __mtd_next_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xbc65539a mtd_point +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc237f28c mtd_is_locked +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xc31730aa mtd_unpoint +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd23350d6 mtd_device_parse_register +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd3fdbd4e get_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd4f004a1 mtd_erase_callback +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd79b05b4 put_mtd_device +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xd92c64fa mtd_get_device_size +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe504d469 mtd_get_unmapped_area +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xe8e38fd5 mtd_writev +EXPORT_SYMBOL_GPL drivers/mtd/mtd 0xf2e60691 get_mtd_device_nm +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x26907c24 add_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x40756d6d register_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0x8c112430 deregister_mtd_blktrans +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xcceac1dd mtd_blktrans_cease_background +EXPORT_SYMBOL_GPL drivers/mtd/mtd_blkdevs 0xebd79cce del_mtd_blktrans_dev +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x29ad4a48 nand_release +EXPORT_SYMBOL_GPL drivers/mtd/nand/nand 0x3faa8a0d nand_wait_ready +EXPORT_SYMBOL_GPL drivers/mtd/nand/sm_common 0x2d15c907 sm_register_device +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x1dfa67f7 onenand_scan +EXPORT_SYMBOL_GPL drivers/mtd/onenand/onenand 0x3b2fccd5 onenand_release +EXPORT_SYMBOL_GPL drivers/mtd/spi-nor/spi-nor 0xd0c1e505 spi_nor_scan +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x0917c551 ubi_leb_erase +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x1c125a2f ubi_leb_write +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x26a066fd ubi_get_volume_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x38e10c1d ubi_flush +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x3adb9a91 ubi_do_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x42801d20 ubi_sync +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x44dbab0e ubi_is_mapped +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x5cfdd22d ubi_get_device_info +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x704b3dee ubi_open_volume_path +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x85a8ee76 ubi_unregister_volume_notifier +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x88dab32b ubi_close_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x8cba0ac1 ubi_leb_map +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x96408359 ubi_leb_unmap +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0x9affff19 ubi_open_volume +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xa5e960c4 ubi_leb_change +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xacf3855a ubi_open_volume_nm +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd8235988 ubi_leb_read_sg +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xd8babfa3 ubi_leb_read +EXPORT_SYMBOL_GPL drivers/mtd/ubi/ubi 0xf5ee9ba8 ubi_register_volume_notifier +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0x8b29e2f3 arcnet_led_event +EXPORT_SYMBOL_GPL drivers/net/arcnet/arcnet 0xdd425f8c devm_arcnet_led_init +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x0fe121cb c_can_power_down +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x1ea3ec59 unregister_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x547db667 c_can_power_up +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x73e058d3 register_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0x93d8ca75 alloc_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/c_can/c_can 0xb7e82110 free_c_can_dev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x01f5aff2 can_led_event +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x0dec99e5 can_change_mtu +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x222c295a can_len2dlc +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x42d76041 alloc_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x48144b73 devm_can_led_init +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x484ef2a4 alloc_canfd_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4c3841a2 open_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x4ec1b0fe alloc_can_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x685d83cd free_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7b0a845c safe_candev_priv +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x7ec11d94 can_free_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x80b2ef8c close_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x82698772 unregister_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0x9ed7f14d register_candev +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb162a43a can_get_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb346573b can_dlc2len +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb49feaa2 alloc_can_err_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xb67a0f77 can_put_echo_skb +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xcdf5e82d can_change_state +EXPORT_SYMBOL_GPL drivers/net/can/can-dev 0xdfa7c4f1 can_bus_off +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x37c3761b alloc_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0x6983a0ed register_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xadc51ad9 unregister_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/cc770/cc770 0xdc257b09 free_cc770dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x215ed89a alloc_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x49ebd0d2 sja1000_interrupt +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0x4e3d06f6 unregister_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xdea36bd5 register_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/can/sja1000/sja1000 0xf5b0e3c7 free_sja1000dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x3802f5ee arc_emac_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/arc/arc_emac 0x5af0cb29 arc_emac_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x024dfdf0 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06912fd4 mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x073a3cb9 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x09430c26 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a759037 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b783b11 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0dcf66e3 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x106f0841 mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10c93d25 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1154416a mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1b055188 mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1d5e5117 mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x213a7e9e mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x21d4f7a1 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x220dd3ea mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x244fc569 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24b2ccbb mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x26a2faa0 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a3accb2 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2a9ea199 __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2b4f9589 mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c9c49e1 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2d763803 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e4b7531 mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3294c50c mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x35842e23 mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4440b05f mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45ccb5c2 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ae53888 mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4d557e83 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4ef49c8b mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x50781a8a mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52370727 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x54be4d76 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5500452b mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x57bed9ab mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58548e45 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5ae48eb0 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5bc781ee mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5f5d5041 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x61633448 mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x639835ec mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64ed7d49 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x65b7fc5a mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6778d893 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x69a99bf1 mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f4095ec mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x71415d5b mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x723f29f9 mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x736a7133 mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x763a07ff mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d6fa25b mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x80898e0a mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x84bad23b mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x856ff509 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x86682b89 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x876694c7 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d789073 mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8e3dc6d2 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91e0ba41 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x91e79418 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x927f6f03 mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x94b7be2b mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x997e57c4 mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9dbd5582 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9e9daefb mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fa44fd8 mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa0f55919 mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa140757b mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa1a53c64 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa43563d4 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa856f07c mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa9228784 mlx4_CLOSE_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xaa4dd66e mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xac0aad68 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xafffe4b0 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb5d7abb9 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7661d7f mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb7f7c8d9 mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb1b38e2 mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb503b1c mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbc1e98a3 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeaf0471 mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbeccac27 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbf939ab3 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1b2f222 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1c245a6 mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc298d6b6 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc3fe9ac3 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc5598885 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6f90545 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc83e7b60 mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9a86632 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb633a33 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcc7fc832 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xccc0ff37 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcd6b99a6 mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xce15f34e mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd127de7f mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd141e553 mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd2929a4e mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd35c9268 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd7de590c mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb1028f4 mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdb7c6b7a mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdeb0d026 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xded2ff79 __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0849840 mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe1958b22 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe19df05c mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2bf2a8a mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe2f135d5 mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe620e4b5 mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe849e8f1 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe857ab1d mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe8677ecb mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb225398 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeb48d66e mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xeca59217 mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xef66a083 mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xefb336ab mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbd2036a mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfd47b441 mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff83f9a6 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x00c51731 mlx5_set_port_proto +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 0x0a1561a0 mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0b5106c3 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14e4af21 mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2a4f0ee8 mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x384cf3d7 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x38f9378a mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3be7d19a mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x41e7f639 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x45fb3807 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x48196dac mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5568345e mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5681a960 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5873af21 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a6951d6 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6bd43cc0 mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6f30ecf6 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x70743a2d mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7175bebd mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x742d7118 mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c2b2aa0 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fa9865d mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x83cd618f mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x88796962 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x93ba5bdf mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x987c861d mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa26d7269 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa559d47c mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8b64286 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbc4c6d42 mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbd390b9f mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc321ed54 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4b5e490 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcca45d65 mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xccf0e20d mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xce1f303d mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcf2648d6 mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdd9f7b42 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xdfb61a95 mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe9052a52 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xea0c83a5 mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xedaef9f4 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0cab1c6 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf429385f mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf7bd2f39 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 0x88c4ba8d 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 0x3185cf18 stmmac_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x571fba93 stmmac_dvr_probe +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x84941d85 stmmac_suspend +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac 0x98245c29 stmmac_dvr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x06dd5565 stmmac_probe_config_dt +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0x41ff5db1 stmmac_pltfr_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xb6ff3a68 stmmac_pltfr_pm_ops +EXPORT_SYMBOL_GPL drivers/net/ethernet/stmicro/stmmac/stmmac-platform 0xe135fbaf stmmac_get_platform_resources +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x019c9acf cpsw_ale_control_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x0293cca1 cpsw_ale_del_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x248f4852 cpsw_ale_set_allmulti +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x3be3b5a6 cpsw_ale_create +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4c7829eb cpsw_ale_control_get +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x4f77ac67 cpsw_ale_stop +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x509159c8 cpsw_ale_add_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x738b5c1e cpsw_ale_destroy +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9a84541d cpsw_ale_add_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0x9bfa8adc cpsw_ale_del_mcast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa0d7b3e6 cpsw_ale_dump +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xa2854640 cpsw_ale_del_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xae8f5463 cpsw_ale_start +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcab4bc50 cpsw_ale_add_ucast +EXPORT_SYMBOL_GPL drivers/net/ethernet/ti/cpsw_ale 0xcadbd395 cpsw_ale_flush_multicast +EXPORT_SYMBOL_GPL drivers/net/geneve 0x8f2ed0d3 geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0x9c8b664d geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x004b3158 macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x494b8d63 macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6a4e8869 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x6c063477 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x27848c65 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x00671dd3 bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x0decbf4e bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x3c0803b1 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x529ef9dc bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x854937b0 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x889a725d bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8e3ac6ed bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xb7d44a1e bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xd86ace30 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xff12f459 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6318757f mdio_mux_uninit +EXPORT_SYMBOL_GPL drivers/net/phy/mdio-mux 0x6a37ab79 mdio_mux_init +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x3cd19dd2 usbnet_cdc_status +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x4c729cdd usbnet_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0x6ea3dff0 usbnet_cdc_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ether 0xb026a1e5 usbnet_generic_cdc_bind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x0216550a cdc_ncm_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x87d0e6bf cdc_ncm_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0x8d6fa05d cdc_ncm_rx_verify_ndp16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xaad76d43 cdc_ncm_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb1f0f196 cdc_ncm_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xb2db3f14 cdc_ncm_select_altsetting +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xe33b9da2 cdc_ncm_rx_verify_nth16 +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xea62cbef cdc_ncm_bind_common +EXPORT_SYMBOL_GPL drivers/net/usb/cdc_ncm 0xeb5ce9c0 cdc_ncm_fill_tx_frame +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2d0893fe generic_rndis_bind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x2fc5471f rndis_command +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x4598ca25 rndis_tx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x7daca55b rndis_unbind +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0x82a6c1ba rndis_rx_fixup +EXPORT_SYMBOL_GPL drivers/net/usb/rndis_host 0xff4895e4 rndis_status +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x04998e1c usbnet_skb_return +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1a271c7a usbnet_pause_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x1f58d727 usbnet_resume_rx +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x212a8a64 usbnet_set_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x25a269a8 usbnet_get_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x2ae29ddb usbnet_get_endpoints +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x3a17bc6f usbnet_probe +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x44da98e7 usbnet_nway_reset +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x53deb8fe usbnet_read_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x56a14905 usbnet_defer_kevent +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x584745ed usbnet_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x62708b9d usbnet_get_msglevel +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x6f478ac7 usbnet_get_link +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x793af425 usbnet_change_mtu +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x7eb35f3c usbnet_write_cmd_nopm +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x88fb2763 usbnet_tx_timeout +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8a25d47b usbnet_resume +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x8bee727f usbnet_read_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x97d32cf7 usbnet_disconnect +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9998eb5f usbnet_suspend +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9da02e62 usbnet_open +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0x9ef0cd4b usbnet_start_xmit +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xa9fdff9b usbnet_status_stop +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb62db675 usbnet_get_ethernet_addr +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xb702c767 usbnet_write_cmd_async +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xba26b179 usbnet_purge_paused_rxq +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xbbb90543 usbnet_set_settings +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc10bcb7b usbnet_get_drvinfo +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xc9608398 usbnet_write_cmd +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xd8e65d3c usbnet_update_max_qlen +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xdcb13ed5 usbnet_unlink_rx_urbs +EXPORT_SYMBOL_GPL drivers/net/usb/usbnet 0xde163cbc usbnet_status_start +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x2ec126fd vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x3cc10cd0 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x0717dea6 i2400m_post_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1b84cbc7 i2400m_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x1ec08bf0 i2400m_netdev_setup +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x2b87d538 i2400m_rx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x349d35aa i2400m_tx_msg_sent +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x3d3047dc i2400m_init +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x494ff68e i2400m_pre_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x57124b05 i2400m_dev_bootstrap +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x66cd0f5c i2400m_cmd_enter_powersave +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x73e64837 i2400m_tx_msg_get +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0x8dcd2d74 i2400m_is_boot_barker +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb00b793c i2400m_bm_cmd_prepare +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xb346065e i2400m_release +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xd0466a89 i2400m_reset +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf1902376 i2400m_dev_reset_handle +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xf88eb8dd i2400m_tx +EXPORT_SYMBOL_GPL drivers/net/wimax/i2400m/i2400m 0xfc83a738 i2400m_error_recovery +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x43567d82 cw1200_irq_handler +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0x44ea7042 cw1200_can_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xdf8a7e17 cw1200_core_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/cw1200/cw1200_core 0xf47bbb5c cw1200_core_release +EXPORT_SYMBOL_GPL drivers/net/wireless/ipw2x00/libipw 0xfa5e208a libipw_rx_any +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x43420c11 il_remove_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x70c5c247 il_mac_tx_last_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x95573516 _il_grab_nic_access +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0x98d6b5a8 il_prep_station +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlegacy/iwlegacy 0xa5f09e06 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 0x08153e79 __iwl_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x09b7ba7d iwl_poll_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x09f774e4 iwl_parse_nvm_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0d556623 iwl_abort_notification_waits +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0e968e41 iwl_write_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x0f48dcb7 iwl_wait_notification +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x1b8a1b66 iwl_parse_eeprom_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x22f8083c iwl_write32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x25a7dde5 iwl_read32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x2e034124 iwl_write_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x3154bbd6 iwl_opmode_register +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x32aadd6e iwl_force_nmi +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x34761bdd 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 0x51b657cd iwlwifi_mod_params +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x58a52c02 iwl_read_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x598725c8 iwl_parse_nvm_mcc_info +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5babefd5 __iwl_warn +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x5c52e109 iwl_opmode_deregister +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x657fdbd0 __iwl_crit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x776221bf iwl_send_phy_db_data +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x78538efb iwl_nvm_check_version +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x802adf81 iwl_read_direct32 +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x898ce53f iwl_set_bits_mask_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0x9d86efb7 iwl_poll_direct_bit +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xa9fc982f iwl_phy_db_set_section +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xad067eee iwl_set_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb26d592a iwl_clear_bits_prph +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb49f1a52 iwl_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xb659248d __iwl_err +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 0xeb06b1d4 __iwl_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5aea4a7 iwl_notification_wait_notify +EXPORT_SYMBOL_GPL drivers/net/wireless/iwlwifi/iwlwifi 0xf5f3b471 iwl_write8 +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1ad4cfc5 lbs_start_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x1d807fcf lbs_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2195ccc6 lbs_get_firmware_async +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x2561a799 lbs_process_rxed_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x388684a7 lbs_host_sleep_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x45a0addf lbs_notify_command_response +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x4c8cd4dd lbs_get_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x5fdf38b8 lbs_disablemesh +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x78436bf2 lbs_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0x8a743b66 lbs_host_to_card_done +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xa1fb6807 lbs_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xb6f864a0 lbs_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xbec0691f lbs_queue_event +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc4673501 __lbs_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xc6fd8b1c lbs_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xce2bdeb2 lbs_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf43053c3 lbs_stop_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas/libertas 0xf64277de lbs_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x04e2a52f lbtf_bcn_sent +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x182985b2 lbtf_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x5174ebbd lbtf_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x64e30059 lbtf_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0x9212240a lbtf_cmd_copyback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa31030a2 lbtf_send_tx_feedback +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xa88faf4b __lbtf_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xb01416c5 lbtf_cmd_response_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/libertas_tf/libertas_tf 0xc85e6899 lbtf_debug +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x00023217 mwifiex_enable_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x02bf84ee mwifiex_disable_auto_ds +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x089ee875 mwifiex_del_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x0ada585d mwifiex_multi_chan_resync +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x141b9373 mwifiex_queue_main_work +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x2d2c35fd mwifiex_add_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x30cbc31f 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 0x5b831a0b mwifiex_drv_info_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x6f3dc902 _mwifiex_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x7a65fb03 mwifiex_main_process +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0x895272af mwifiex_upload_device_dump +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xb0dc86dc mwifiex_add_virtual_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xbf3bdff6 mwifiex_handle_rx_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xc2699509 mwifiex_remove_card +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xca1674b3 mwifiex_init_shutdown_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xdd7bbc43 mwifiex_process_sleep_confirm_resp +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe5fc5cc2 mwifiex_process_hs_config +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xe947b6d0 mwifiex_cancel_hs +EXPORT_SYMBOL_GPL drivers/net/wireless/mwifiex/mwifiex 0xeb239707 mwifiex_write_data_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x104aa2b2 p54_unregister_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x585dc604 p54_parse_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x5f29462a p54_rx +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x769e7dd1 p54_read_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0x88ee8a1e p54_parse_eeprom +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xa0727525 p54_register_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xcfc6e09e p54_init_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xd123e862 p54_free_common +EXPORT_SYMBOL_GPL drivers/net/wireless/p54/p54common 0xeda3d940 p54_free_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x05c677e2 dm_writepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x63d8517e dm_savepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0x79bda36b dm_restorepowerindex +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8192c/rtl8192c-common 0xbb01112f rtl92c_set_p2p_ps_offload_cmd +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x20a38c48 rtl8723_phy_path_a_standby +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x219458e3 rtl8723be_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x2ae7d4ce rtl8723_fw_page_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x32f4a6ae rtl8723_phy_pi_mode_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x59fcef52 rtl8723_phy_init_bb_rf_reg_def +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x5f8fdc2e rtl8723_phy_set_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6235ea94 rtl8723_phy_query_bb_reg +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x64a94b99 rtl8723_dm_init_edca_turbo +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x6e2b4997 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 0x75eaa30a rtl8723_phy_rf_serial_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x820ef80c rtl8723_dm_init_dynamic_txpower +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x82fbfc94 rtl8723_phy_reload_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x8c8bc430 rtl8723ae_firmware_selfreset +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x94cc9055 rtl8723_fw_free_to_go +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0x99ecc4c0 rtl8723_save_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 0xb8ef9c6a rtl8723_dm_init_dynamic_bb_powersaving +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xbd36f7b4 rtl8723_phy_rf_serial_read +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xc6d81c80 rtl8723_phy_path_adda_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xcac6ad3c rtl8723_phy_txpwr_idx_to_dbm +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd008e9b9 rtl8723_fw_block_write +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd072c215 rtl8723_phy_path_a_fill_iqk_matrix +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd3ac69da rtl8723_phy_mac_setting_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xd56c0c0d rtl8723_enable_fw_download +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xe31a2383 rtl8723_write_fw +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xea39756c rtl8723_phy_reload_adda_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xee8a734a rtl8723_phy_save_mac_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtl8723com/rtl8723-common 0xf42bb7e1 rtl8723_cmd_send_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x0d0b6636 rtl_global_var +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1952abd5 rtl_deinit_deferred_work +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x1e14995a read_efuse_byte +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x22539b2f rtl_swlps_beacon +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 0x2cb0cc3a rtl_is_special_data +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x357b4b75 rtl_attribute_group +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x447b612d rtl_ips_nic_on +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x58832150 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 0x6b804b81 rtl_action_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x7acb3f1d rtl_init_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8559c762 rtl_lps_leave +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0x8b4ec687 rtl_p2p_info +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa4edfc36 rtl_tx_mgmt_proc +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xa6a8ca3a rtl_recognize_peer +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbb40eb73 rtl_deinit_core +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xbde6a5bc rtl_dbgp_flag_init +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xcd3376c3 rtl_deinit_rfkill +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xde3b6cb3 rtl_lps_enter +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xe381d152 rtl_ops +EXPORT_SYMBOL_GPL drivers/net/wireless/realtek/rtlwifi/rtlwifi 0xf831b05a rtl_init_rx_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x5cb60a4f rsi_91x_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x63b34b9a rsi_mac80211_detach +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x7201b98a rsi_dbg +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x771c05ce rsi_91x_deinit +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0x836e4189 rsi_read_pkt +EXPORT_SYMBOL_GPL drivers/net/wireless/rsi/rsi_91x 0xdb3ca0e5 rsi_zone_enabled +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0bf87916 rt2800_clear_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x0bfaec2a rt2800_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x144f09ba rt2800_config_ant +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x165cff89 rt2800_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x2bc77c5f rt2800_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3102a2bd rt2800_write_beacon +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x3161d3ed rt2800_check_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x33e237be rt2800_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x41ef7fc7 rt2800_config_erp +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x46bd1c98 rt2800_get_txwi_rxwi_size +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4d6f154b rt2800_gain_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x4f31616a rt2800_config_intf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x526c4f6b rt2800_set_rts_threshold +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x5fe085db rt2800_config_pairwise_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x610366d3 rt2800_disable_wpdma +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x69762e89 rt2800_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x7339d426 rt2800_config_shared_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x757ab727 rt2800_link_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x78dd29c5 rt2800_load_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x8412b776 rt2800_get_survey +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x84719428 rt2800_process_rxwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9549fa4e rt2800_wait_csr_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9c22bee5 rt2800_wait_wpdma_ready +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0x9d9e5b7c rt2800_mcu_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xa1c396b9 rt2800_get_key_seq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xb58aebdf rt2800_probe_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xbfaa2fb0 rt2800_get_tsf +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xca307cc6 rt2800_efuse_detect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcac129e4 rt2800_txdone_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xcac40913 rt2800_reset_tuner +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xd6e829c4 rt2800_config_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xda075d14 rt2800_write_tx_data +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xda92137d rt2800_vco_calibration +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xdcc810ad rt2800_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe3327d3d rt2800_link_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe57d9a4a rt2800_ampdu_action +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xe9f8aac9 rt2800_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800lib 0xfff08650 rt2800_read_eeprom_efuse +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x04d10ff4 rt2800mmio_init_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x05e758cf rt2800mmio_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x0fad1430 rt2800mmio_pretbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x19f70a77 rt2800mmio_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x202f8d75 rt2800mmio_enable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x2505789d rt2800mmio_tbtt_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x30ea95f3 rt2800mmio_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x48ee03af rt2800mmio_get_entry_state +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5bb1bbe4 rt2800mmio_write_tx_desc +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x5fa4db64 rt2800mmio_interrupt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x6745bdc7 rt2800mmio_queue_init +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x806b85c1 rt2800mmio_get_txwi +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x92c0bcd1 rt2800mmio_rxdone_tasklet +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0x9582e83c rt2800mmio_init_registers +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xc0866a27 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/rt2800mmio 0xe8ab42d7 rt2800mmio_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2800mmio 0xf5199ff7 rt2800mmio_toggle_irq +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x08d8a656 rt2x00lib_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x13095682 rt2x00mac_config +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1319b827 rt2x00mac_set_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x16743e2b rt2x00queue_flush_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x178e0ba8 rt2x00queue_unpause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x1bb6e067 rt2x00mac_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x24a3ca9d rt2x00queue_stop_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x2a65d143 rt2x00lib_probe_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x372290c2 rt2x00mac_sta_add +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x3bdf0cfa rt2x00mac_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x4ff413ae rt2x00mac_rfkill_poll +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x510e1b51 rt2x00mac_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x53b51309 rt2x00queue_for_each_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5a4c04c6 rt2x00queue_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5acb20d4 rt2x00queue_stop_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5d8a1e42 rt2x00mac_get_stats +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x5fa429e6 rt2x00lib_pretbtt +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x612ac872 rt2x00mac_sw_scan_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x656a464c rt2x00queue_pause_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6a1d7381 rt2x00lib_remove_dev +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x6bae505a rt2x00mac_configure_filter +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x89ada333 rt2x00lib_dmadone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x92951c31 rt2x00lib_dmastart +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9a11dd0e rt2x00lib_txdone_noinfo +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9ced0672 rt2x00mac_tx_frames_pending +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0x9f1fe44e rt2x00queue_unmap_skb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa1cc74e5 rt2x00mac_stop +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa2a50a46 rt2x00mac_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa65e19ae rt2x00mac_add_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xa7378caf rt2x00queue_start_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xb4b194ff rt2x00mac_bss_info_changed +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xbc613332 rt2x00lib_txdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc2cc40b6 rt2x00lib_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc64a8196 rt2x00lib_get_bssidx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xc848b079 rt2x00queue_get_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xd63ede9a rt2x00mac_get_antenna +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xdd1c85dc rt2x00mac_set_tim +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe00013bc rt2x00mac_conf_tx +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe05f40ed rt2x00mac_sw_scan_start +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe294014a rt2x00lib_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe3899e85 rt2x00queue_start_queues +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xe50fd235 rt2x00queue_map_txskb +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xea0efd61 rt2x00lib_beacondone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xefe63e68 rt2x00mac_remove_interface +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfd5c8719 rt2x00mac_sta_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00lib 0xfe7bc6b8 rt2x00mac_get_ringparam +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x02c8f394 rt2x00mmio_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0x4e24d66c rt2x00mmio_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xaf5252c1 rt2x00mmio_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xcbda6df1 rt2x00mmio_rxdone +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00mmio 0xe201b3a4 rt2x00mmio_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x0c613403 rt2x00pci_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x257f943c rt2x00pci_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0x26c9ba90 rt2x00pci_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00pci 0xc90b88fb rt2x00pci_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x02d303a7 rt2x00usb_register_read_async +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x631105ef rt2x00usb_vendor_req_buff_lock +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x6e425a20 rt2x00usb_uninitialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x7965b739 rt2x00usb_resume +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x81c1200d rt2x00usb_clear_entry +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x859fce96 rt2x00usb_vendor_request_buff +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8f4f303b rt2x00usb_flush_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x8f92d3e4 rt2x00usb_initialize +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0x92337b60 rt2x00usb_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xb721bea8 rt2x00usb_watchdog +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xcf1e8737 rt2x00usb_disable_radio +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdbd63ab1 rt2x00usb_kick_queue +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xdf243b9c rt2x00usb_regbusy_read +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xe7dc64c2 rt2x00usb_vendor_request +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xed56a7a5 rt2x00usb_disconnect +EXPORT_SYMBOL_GPL drivers/net/wireless/rt2x00/rt2x00usb 0xf623bb01 rt2x00usb_suspend +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0x5a8d432d wl1251_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xafaf3cf7 wl1251_init_ieee80211 +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wl1251/wl1251 0xc2265967 wl1251_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x04b39a38 wlcore_enable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x056ac3f3 wl1271_acx_init_mem_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x0fdcfcb5 wlcore_boot_upload_nvs +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x149777c9 wl1271_ps_elp_sleep +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x182c3c6b wlcore_event_rssi_trigger +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2405c2a9 wlcore_event_dummy_packet +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x27b41193 wl1271_ps_elp_wakeup +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2dfa2730 wlcore_event_channel_switch +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x2ed3bbbf wlcore_remove +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x33a3dbb6 wlcore_synchronize_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x397f3e3a wlcore_event_beacon_loss +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3a05a913 wl1271_cmd_data_path +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x3e59db92 wlcore_event_soft_gemini_sense +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x49ab4586 wlcore_event_max_tx_failure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x505b74b8 wl1271_acx_sleep_auth +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x512cd0b7 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 0x5815bd06 wlcore_disable_interrupts +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x5b0f9529 wlcore_boot_upload_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x76ceb58e 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 0x7cac27ea wlcore_event_sched_scan_completed +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x7f002eee wlcore_event_inactive_sta +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x921aaed6 wlcore_boot_run_firmware +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9a585433 wlcore_event_roc_complete +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0x9bed0d25 wl1271_tx_min_rate_get +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa1d1cbf5 wl1271_acx_pm_config +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa494f4e8 wlcore_set_partition +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa5b17541 wlcore_cmd_wait_for_event_or_timeout +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xa97db48e wl1271_cmd_configure +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xacba52d0 wlcore_set_key +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaeb17f98 wl1271_cmd_test +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf796adf wlcore_scan_sched_scan_results +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xaf838a05 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 0xbb654c9d wlcore_probe +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc283697c wl1271_tx_flush +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc334aeb7 wlcore_translate_addr +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xc98c89ff wl12xx_cmd_build_probe_req +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xcff4e02c wlcore_free_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd0a1c1c1 wlcore_set_scan_chan_params +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xd99707f4 wlcore_alloc_hw +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe46f67ef wlcore_disable_interrupts_nosync +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe7081ff9 wl1271_acx_set_ht_capabilities +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe866eab3 wl1271_cmd_send +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xe97446a1 wl12xx_acx_mem_cfg +EXPORT_SYMBOL_GPL drivers/net/wireless/ti/wlcore/wlcore 0xfe634136 wlcore_cmd_generic_cfg +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0x73aaed62 nfcmrvl_nci_recv_frame +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xab75912b nfcmrvl_nci_register_dev +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xb9e0920c nfcmrvl_parse_dt +EXPORT_SYMBOL_GPL drivers/nfc/nfcmrvl/nfcmrvl 0xd22ab1bb nfcmrvl_nci_unregister_dev +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x12b1e987 st_nci_discover_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x1feae62d st_nci_remove +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x6e0ec4cb st_nci_hci_event_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0x95d77a5b st_nci_probe +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xaf1c7103 st_nci_enable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc567e80f st_nci_hci_cmd_received +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xc6559514 st_nci_disable_se +EXPORT_SYMBOL_GPL drivers/nfc/st-nci/st-nci 0xeb9eacf0 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 0x3842929e ntb_transport_unregister_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x3d54dbfc ntb_transport_tx_enqueue +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x42c9d502 ntb_transport_register_client +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x436098aa ntb_transport_link_down +EXPORT_SYMBOL_GPL drivers/ntb/ntb_transport 0x639c6c7b 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 0x143b874c devm_nvmem_device_put +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x171dc38f 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 0x48339a7a of_nvmem_cell_get +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 0x8d5fe987 nvmem_register +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x99f018c4 nvmem_cell_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0x9fde26bd devm_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xa2a64039 devm_nvmem_cell_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xc697b0f7 nvmem_device_read +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe7c3f91b of_nvmem_device_get +EXPORT_SYMBOL_GPL drivers/nvmem/nvmem_core 0xe88271d8 nvmem_device_get +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x01cc7086 rpaphp_slot_head +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x33bb7cce rpaphp_get_drc_props +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0x7abe738d rpaphp_deregister_slot +EXPORT_SYMBOL_GPL drivers/pci/hotplug/rpaphp 0xa33f9607 rpaphp_add_slot +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x066d4ab5 pcf50633_mbc_get_status +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0x8ca581a6 pcf50633_mbc_usb_curlim_set +EXPORT_SYMBOL_GPL drivers/power/pcf50633-charger 0xb817c846 pcf50633_mbc_get_usb_online_status +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x06f7f7a8 mc13xxx_parse_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x33ca290e mc13xxx_fixed_regulator_set_voltage +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0x9dbb9e5d mc13xxx_get_num_regulators_dt +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xa036e404 mc13xxx_fixed_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/mc13xxx-regulator-core 0xbce60dce mc13xxx_regulator_ops +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x09215487 wm8350_dcdc25_set_mode +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x0e206966 wm8350_register_led +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x2f3f1aba wm8350_ldo_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x43840f36 wm8350_isink_set_flash +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x47ee2078 wm8350_register_regulator +EXPORT_SYMBOL_GPL drivers/regulator/wm8350-regulator 0x805d335a wm8350_dcdc_set_slot +EXPORT_SYMBOL_GPL drivers/regulator/wm8400-regulator 0xbda960ce wm8400_register_regulator +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x01def49c cxgbi_get_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0c41296b cxgbi_sock_skb_entail +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x0d281604 cxgbi_set_host_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x14b8fd25 cxgbi_ddp_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x19b75ea4 cxgbi_device_unregister +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x1c0b3972 cxgbi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x22991bf9 cxgbi_sock_act_open_req_arp_failure +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x26d3fb3a cxgbi_device_find_by_netdev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x2c6c1354 cxgbi_parse_pdu_itt +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x33a53b5f cxgbi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x3472cc01 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 0x3eb1a8e7 cxgbi_hbas_add +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x4218644c cxgbi_sock_rcv_abort_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x45cef563 cxgbi_set_conn_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x59991839 cxgbi_device_portmap_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x5c6a9783 cxgbi_ddp_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x613e942b cxgbi_bind_conn +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x61644d81 cxgbi_device_find_by_netdev_rcu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x68b7cc84 cxgbi_get_ep_param +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x72e91339 cxgbi_conn_tx_open +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x7fdb6004 cxgbi_device_unregister_all +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x84ea79e3 cxgbi_ep_connect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8530944c cxgbi_ep_disconnect +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x86687cc7 cxgbi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x87f69655 cxgbi_device_portmap_create +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x8c2ba369 cxgbi_ddp_ppod_clear +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x90afd6e6 cxgbi_sock_select_mss +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x91520b91 cxgbi_sock_check_wr_invariants +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0x9e460da6 cxgbi_sock_rcv_close_conn_rpl +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa01c4614 cxgbi_sock_rcv_peer_close +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa7459032 cxgbi_iscsi_cleanup +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa8c70d82 cxgbi_sock_closed +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xa9be3fd8 cxgbi_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xabc6437c cxgbi_ep_poll +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb2517c13 cxgbi_sock_free_cpl_skbs +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb3060fb9 cxgbi_ddp_ppod_set +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb902cf5c cxgbi_sock_purge_wr_queue +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xb96c0bfb cxgbi_iscsi_init +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd4a37c14 cxgbi_device_register +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd6f2fa85 cxgbi_conn_pdu_ready +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xd839b4ee cxgbi_hbas_remove +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdb020d56 cxgbi_device_find_by_lldev +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xdbd4e5c9 cxgbi_get_conn_stats +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xeb9e376a cxgbi_sock_rcv_wr_ack +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xef346615 cxgbi_attr_is_visible +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf196914f cxgbi_conn_alloc_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf6393275 cxgbi_conn_xmit_pdu +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8d32354 cxgbi_sock_established +EXPORT_SYMBOL_GPL drivers/scsi/cxgbi/libcxgbi 0xf8e1626a cxgbi_conn_init_pdu +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x0fb51275 fcoe_queue_timer +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x11668944 fcoe_libfc_config +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x258256ec fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x374c1e1c fcoe_wwn_from_mac +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x3c43259b fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x43dcbe8b fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4cf9c51e fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4f287e14 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x767c38e9 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7b81d9b7 fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xab718a54 fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb4011bda fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbfc47b2f fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc88d2856 fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd1fd7f63 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd3b41c30 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xd3ba4edc fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xf7334e7c fcoe_ctlr_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 0x04fdbfea iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0814adfe iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x0c4c4e1b iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x103b9997 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x14a6885c iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1e56d10f __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x204856f8 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x262af935 iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2a99ec14 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x362f5108 iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c5aa04f __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3cd1d189 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3f53bb86 iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x438d939a iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x43c9dddc iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x45d3366b iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4665d206 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4fcbd662 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x51c9e4c3 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5711e12e iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x57de8af1 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5fcb226e iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x601a7337 iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x69b942b2 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6e398760 iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d014859 iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f70958c iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9fa7063e iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa2c54527 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa5212765 iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa7039551 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xab95a228 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb4c2bfdc iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc68517a2 iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc80f3a5b iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc949daa8 iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xda5d7caf iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xe6ad2873 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf008416e iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf21602d2 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf5c626cf iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xfd1fdabf iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x35aa3775 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x41011aff iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4f3a19db iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5e64d93a iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x65e0f917 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6f14bf79 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x78887785 iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa34c52d2 iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa352d13e iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb170bdd0 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xbfcbb5b4 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc3875b36 iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xc9e3cfbb iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xdaa17422 iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe13f0a9a iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe54a80ef iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xf1a620c4 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x078dce27 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x14a48570 sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x16ad723f sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x24161777 sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2b928045 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3392ce24 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x41e98296 sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x56f84211 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5e6c0b39 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x634d4d3e sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x67c853c4 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6846fdaa sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x71f94bb1 sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x729f7b19 sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x770c47e2 sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7a73c617 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x7d6016e9 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x9c4dfa8a sas_ata_schedule_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa208c8ce sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa3c795ad sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xa4b766a2 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xcaa47c4e sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd941d93b sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xde45c1d1 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x034e7efb iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11989c00 iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x11dc5364 iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x12012690 iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1a27e709 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x24beea14 iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2cf42088 iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x2f36b44f iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x43b0047c iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x4441c169 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x46903014 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x49973e65 iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5040d2bb iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x61c14042 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a824980 iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6ad41b7e iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7277a26e iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x8403b238 iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x84a005f1 iscsi_get_router_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x87455117 iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x90338636 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9219d7de iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9c5ebb62 iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9d9f5904 iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9f60b836 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae02170e iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbb72f1d3 iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc16dd182 iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc231b2ae iscsi_destroy_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc3997b50 iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc660cafb iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xc8880563 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xcf05a085 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd99ec2c2 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe16650e6 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe21255f9 iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe27f1ecb iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe8d3c5d8 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf10d4042 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf326fdf3 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xf6d4b178 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x0ab608c6 sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x66878764 sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x8dbdd518 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xd84177a3 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 0xcb51eac7 spi_populate_tag_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0xcffa2aff spi_populate_width_msg +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x52db109a ufshcd_dme_set_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x5c709d74 ufshcd_remove +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x625b314e ufshcd_hold +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0x7e723265 ufshcd_dealloc_host +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa163c4bd ufshcd_dme_get_attr +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xa6a8d995 ufshcd_init +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd 0xb5f8dbed ufshcd_release +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x06d297d2 ufshcd_pltfrm_runtime_idle +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x1f617733 ufshcd_pltfrm_runtime_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7a1c7452 ufshcd_pltfrm_runtime_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0x7d62209b ufshcd_pltfrm_suspend +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xa456030e ufshcd_pltfrm_resume +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xc8e4825d ufshcd_pltfrm_shutdown +EXPORT_SYMBOL_GPL drivers/scsi/ufs/ufshcd-pltfrm 0xe8f98ef1 ufshcd_pltfrm_init +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x12134cf7 spi_bitbang_stop +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x2d637d77 spi_bitbang_cleanup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x74bfbcdc spi_bitbang_start +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0x9382491e spi_bitbang_setup +EXPORT_SYMBOL_GPL drivers/spi/spi-bitbang 0xcfb46cc9 spi_bitbang_setup_transfer +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x78afc301 dw_spi_add_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0x87b2087e dw_spi_resume_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xe8bf570d dw_spi_remove_host +EXPORT_SYMBOL_GPL drivers/spi/spi-dw 0xee216282 dw_spi_suspend_host +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x05612b47 spmi_ext_register_readl +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x13f5982a spmi_ext_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x142f7d00 spmi_ext_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x16e40ac5 spmi_controller_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x1e66f13c spmi_device_remove +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x257f2e4b spmi_command_wakeup +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x3d362a34 spmi_device_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x41b51877 spmi_register_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x4596a501 spmi_command_reset +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x5495b024 spmi_controller_alloc +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x57b52f1c spmi_device_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0x6b8858d4 spmi_register_read +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xa45fc170 __spmi_driver_register +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xaa589981 spmi_controller_add +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xb88f5107 spmi_register_zero_write +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xc715e12b spmi_ext_register_writel +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xde8f0142 spmi_command_shutdown +EXPORT_SYMBOL_GPL drivers/spmi/spmi 0xea9fbcc3 spmi_command_sleep +EXPORT_SYMBOL_GPL drivers/ssb/ssb 0x81552a64 ssb_pmu_spuravoid_pllupdate +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x047f4777 comedi_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x0737e23b comedi_check_chanlist +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x09ce2c83 comedi_alloc_subdev_readback +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 0x137a2e2c comedi_readback_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x20ca7b0e comedi_buf_read_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x21102f87 range_0_32mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x25b3b1b2 comedi_alloc_spriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2a31b04d comedi_is_subdevice_running +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x2f0ad9d3 range_bipolar5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x328ea3d9 comedi_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x3afd1d21 comedi_inc_scan_progress +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4236eaaf range_4_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x480cc265 comedi_alloc_subdevices +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x4fe634f3 range_bipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x54aef34f comedi_dio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x564609a3 comedi_dev_get_from_minor +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x5f5703aa comedi_dev_put +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x62eee33c comedi_buf_read_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x69cbf239 comedi_set_hw_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6c13f03b comedi_buf_read_n_available +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x6cc4441c comedi_alloc_devpriv +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x809a813e comedi_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8113872c range_unipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8d1dff5d __comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0x8fbe3437 comedi_buf_write_samples +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa6577714 comedi_nscans_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xa970cf39 comedi_buf_write_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xaeb2f356 comedi_event +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb679cebc range_0_20mA +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xb74530c2 comedi_legacy_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbb52fc7f range_bipolar10 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbc381a9f comedi_nsamples_left +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xbdbe75c6 range_unipolar2_5 +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc07f4c01 comedi_timeout +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xc97a0535 comedi_dio_update_state +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xcab43976 comedi_request_region +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd0cd1af7 comedi_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xd394184c comedi_load_firmware +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 0xe8e63d3d comedi_handle_events +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf3a9d550 comedi_set_spriv_auto_free +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi 0xf69cfe01 comedi_bytes_per_scan +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x133bbca1 comedi_pci_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x1bffed14 comedi_to_pci_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x41fa4bc9 comedi_pci_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5a61e65c comedi_pci_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0x5ae057a7 comedi_pci_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xc1191a7f comedi_pci_driver_unregister +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xcc74868c comedi_pci_disable +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_pci 0xe56cf157 comedi_pci_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x54dd6f55 comedi_usb_driver_register +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x5fe8047b comedi_to_usb_dev +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x8693fb00 comedi_usb_auto_unconfig +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0x9d538cfe comedi_usb_auto_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xa8926ecd comedi_to_usb_interface +EXPORT_SYMBOL_GPL drivers/staging/comedi/comedi_usb 0xce43dcd4 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 0x91718200 addi_watchdog_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0x5f8e3604 amplc_dio200_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_dio200_common 0xd8f6776c amplc_dio200_set_enhance +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/amplc_pc236_common 0x104876df amplc_pc236_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x0bc016c2 comedi_8254_cascade_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x1c5aa0fd comedi_8254_update_divisors +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2184495a comedi_8254_ns_to_timer +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x245cff0b comedi_8254_set_mode +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x2c3ff169 comedi_8254_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0x919f426a comedi_8254_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xa36c6089 comedi_8254_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xaa1a26c5 comedi_8254_set_busy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xaddc569d comedi_8254_subdevice_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xb41b93bf comedi_8254_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xc00ba443 comedi_8254_load +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe14ed78c comedi_8254_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8254 0xe9733c65 comedi_8254_pacer_enable +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0x96a09d16 subdev_8255_regbase +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf2791213 subdev_8255_mm_init +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/comedi_8255 0xf51ee7e9 subdev_8255_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 0xb39d8811 comedi_isadma_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/das08 0x8242dbab das08_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x37a2d63e mite_release_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x419163db mite_alloc_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x465882a4 mite_bytes_written_to_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x4c8b1a9f mite_request_channel_in_range +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5ba29887 mite_dma_tcr +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x5d2ff5fc mite_bytes_read_from_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7285ca97 mite_sync_output_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x7ce80578 mite_setup2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x810728c2 mite_bytes_written_to_memory_lb +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x8802bced mite_get_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0x9a705f9a mite_bytes_read_from_memory_ub +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xa6ddfc86 mite_buf_change +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb7ff9432 mite_bytes_in_transit +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xb9626956 mite_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc23b6b27 mite_dma_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc372298a mite_done +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xc7233fc5 mite_sync_input_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xce4ec5be mite_alloc +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd0b81392 mite_prep_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xd94ac669 mite_free_ring +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/mite 0xff418693 mite_dma_disarm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0x4b9ec660 labpc_common_attach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_common 0xc83c4ecb labpc_common_detach +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x0580ce5b labpc_free_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x1b739a6a labpc_handle_dma_status +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0x6a3c9ddb labpc_init_dma_chan +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xc2af8824 labpc_drain_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_labpc_isadma 0xdd40f87d labpc_setup_dma +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x2066caf3 ni_gpct_device_destroy +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x327a1f42 ni_tio_set_gate_src +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x473c028b ni_tio_insn_read +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x55ad501b ni_gpct_device_construct +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x64561153 ni_tio_init_counter +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x7595ef97 ni_tio_arm +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0x8eda8754 ni_tio_insn_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tio 0xd8d2e077 ni_tio_insn_write +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x057967fc ni_tio_set_mite_channel +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0x8feb4127 ni_tio_cmdtest +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xac73d5b8 ni_tio_handle_interrupt +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xb6fdc66b ni_tio_cmd +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xdb503558 ni_tio_acknowledge +EXPORT_SYMBOL_GPL drivers/staging/comedi/drivers/ni_tiocmd 0xfe238db8 ni_tio_cancel +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x6c55f2d3 comedi_get_n_channels +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0x77f33754 comedi_dio_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xbdf76ef8 comedi_find_subdevice_by_type +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xd97b0ce5 comedi_dio_get_config +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe54f3a6c comedi_dio_bitfield2 +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe5e1b324 comedi_open +EXPORT_SYMBOL_GPL drivers/staging/comedi/kcomedilib/kcomedilib 0xe8779dfe comedi_close +EXPORT_SYMBOL_GPL drivers/staging/iio/addac/adt7316 0x5ace245d adt7316_pm_ops +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x01635cd0 most_get_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x18772a81 most_put_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x420c810f most_stop_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x931b2216 most_register_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0x98dc9a49 channel_has_mbo +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xa3280d96 most_resume_enqueue +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc24e7f94 most_stop_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xc4ed335b most_register_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xcc566be3 most_deregister_aim +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xdc15b384 most_deregister_interface +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf18ed51e most_start_channel +EXPORT_SYMBOL_GPL drivers/staging/most/mostcore/mostcore 0xf6631afe 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 0x22b7b771 spk_var_show +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x33b0a037 spk_serial_synth_probe +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x39dcdd07 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 0x4d2132b2 synth_remove +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x516b067a spk_synth_immediate +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0x761fc2c8 synth_add +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 0xb7bc5357 spk_synth_is_alive_nop +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbbd15a51 speakup_start_ttys +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xbc81ad4b spk_var_store +EXPORT_SYMBOL_GPL drivers/staging/speakup/speakup 0xc5a5f12f spk_synth_flush +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 0xf02e50f1 spk_do_catch_up +EXPORT_SYMBOL_GPL drivers/tty/n_tracesink 0x585ebaac n_tracesink_datadrain +EXPORT_SYMBOL_GPL drivers/uio/uio 0xc52e06b0 uio_event_notify +EXPORT_SYMBOL_GPL drivers/uio/uio 0xdf6792a1 uio_unregister_device +EXPORT_SYMBOL_GPL drivers/uio/uio 0xec723edb __uio_register_device +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0x4efe66e5 usbatm_usb_probe +EXPORT_SYMBOL_GPL drivers/usb/atm/usbatm 0xf0cfd3c8 usbatm_usb_disconnect +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0x55a0038f ci_hdrc_add_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/ci_hdrc 0xec34e8ff ci_hdrc_remove_device +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0x9bbf2ce9 imx_usbmisc_set_wakeup +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xbd11b1c8 imx_usbmisc_init_post +EXPORT_SYMBOL_GPL drivers/usb/chipidea/usbmisc_imx 0xe14c62bc imx_usbmisc_init +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x0f69a21f ulpi_register_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x15784e37 ulpi_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x1ef1810c ulpi_register_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x4cfd8ebe ulpi_unregister_interface +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0x8efa6578 ulpi_write +EXPORT_SYMBOL_GPL drivers/usb/common/ulpi 0xc73fbc19 ulpi_read +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x1ecb6b70 gether_get_ifname +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x29c34db3 gether_get_host_addr_cdc +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x2e6ccb41 gether_register_netdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x413bfba0 gether_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x428c4164 gether_get_host_addr_u8 +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x441bc334 gether_set_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x498a5f41 gether_get_host_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x49c6c5ed gether_get_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x5a9d7bc6 gether_setup_name_default +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7948032c gether_set_gadget +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x7e98feca gether_setup_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8878cfa6 gether_cleanup +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0x8cea4fa4 gether_set_dev_addr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xb4499b8f gether_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xc45f4d53 gether_set_qmult +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_ether 0xfb7ee2f5 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 0x6a96a070 gserial_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0x89ca818c gs_alloc_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/u_serial 0xb02d17bf 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 0x2014d55b ffs_name_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xce4e3dac ffs_lock +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_fs 0xf8af5464 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 0x398778e1 fsg_ss_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3a2fba9d fsg_common_remove_lun +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x3abf62d9 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 0x4bd73946 fsg_common_set_cdev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x5210371c 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 0x595322ac fsg_lun_close +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0x681054f5 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 0x8933e38b 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 0xa6d423c9 fsg_show_file +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xad1135fe 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 0xbd5938a9 fsg_lun_open +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc2936221 fsg_show_removable +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xc9d65f4c 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 0xd9cf20e5 fsg_show_cdrom +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xddeddff8 fsg_lun_fsync_sub +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_mass_storage 0xee3a0609 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_rndis 0x0f9f9e93 rndis_set_host_mac +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x11d23363 rndis_signal_disconnect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x1acf83fc rndis_set_param_vendor +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x26b45e0c rndis_signal_connect +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x3a542b46 rndis_msg_parser +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x592cf539 rndis_set_param_dev +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x6e39150b rndis_deregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x806ae996 rndis_set_param_medium +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0x935f009e rndis_get_next_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa5b0c120 rndis_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xa5d46340 rndis_rm_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xaa7bed94 rndis_add_hdr +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd33e7d3d rndis_uninit +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xd54bbaac rndis_free_response +EXPORT_SYMBOL_GPL drivers/usb/gadget/function/usb_f_rndis 0xf836b92c rndis_borrow_net +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x04176205 usb_function_register +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x061841b2 usb_get_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x0f8fd5b2 usb_otg_descriptor_alloc +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x1533fb62 usb_free_all_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x263dbec9 usb_string_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2c61ca71 usb_remove_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x2e09263f usb_copy_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x3ff6520b usb_composite_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x459ba287 usb_ep_autoconfig_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x48245b53 usb_gstrings_attach +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x5d4b740a usb_function_unregister +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x68494784 alloc_ep_req +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x685dc6f6 usb_ep_autoconfig +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6dc2834a unregister_gadget_item +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x6eb29f90 usb_otg_descriptor_init +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x724087e3 usb_put_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x73b1f1ef usb_interface_id +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x7d2d8790 usb_ep_autoconfig_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x80a7bb28 usb_add_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8b9ea031 usb_composite_setup_continue +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x8c03a24b usb_function_activate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x94d7075a usb_gadget_get_string +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9822b58f usb_string_ids_tab +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0x9eee0d2c usb_get_function_instance +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xad042e11 usb_function_deactivate +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xb57227c2 config_ep_by_speed +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc1d2289a usb_composite_overwrite_options +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc3f694a6 usb_composite_probe +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xc74a49da usb_assign_descriptors +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2c56d63 usb_put_function +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd2ea2134 usb_descriptor_fillbuf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xd83f563e usb_add_config +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xed40f998 usb_add_config_only +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xf474a207 usb_gadget_config_buf +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xff97cca4 usb_string_ids_n +EXPORT_SYMBOL_GPL drivers/usb/gadget/libcomposite 0xffdfaae4 usb_ep_autoconfig_ss +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x0bfe0745 usb_gadget_udc_reset +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x1201a05c usb_gadget_unregister_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x3fc662f4 usb_gadget_ep_match_desc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x48b7155e usb_udc_vbus_handler +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x6daecea2 usb_add_gadget_udc +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x752e5cdb gadget_find_ep_by_name +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x788ef860 usb_udc_attach_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0x81668840 usb_gadget_unmap_request +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xa023addd 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 0xac100a18 usb_gadget_probe_driver +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xcfd5ea65 usb_add_gadget_udc_release +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xdfebad4b usb_gadget_set_state +EXPORT_SYMBOL_GPL drivers/usb/gadget/udc/udc-core 0xf7f91b17 usb_gadget_map_request +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0x05af95cf ezusb_fx1_set_reset +EXPORT_SYMBOL_GPL drivers/usb/misc/ezusb 0xded68031 ezusb_fx1_ihex_firmware_download +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x0fd34859 usb_ftdi_elan_edset_setup +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x25ca4cf3 usb_ftdi_elan_read_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x3fa56be1 usb_ftdi_elan_edset_input +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x5f5820f8 usb_ftdi_elan_edset_single +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x809c81df usb_ftdi_elan_edset_empty +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0x94ecff72 ftdi_elan_gone_away +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xb89a01ea usb_ftdi_elan_write_pcimem +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xc439a67e usb_ftdi_elan_edset_flush +EXPORT_SYMBOL_GPL drivers/usb/misc/ftdi-elan 0xdf9c78df 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 0xb584d36b musb_interrupt +EXPORT_SYMBOL_GPL drivers/usb/musb/musb_hdrc 0xcb32cb36 musb_writeb +EXPORT_SYMBOL_GPL drivers/usb/phy/phy-isp1301 0x23088b8b isp1301_get_client +EXPORT_SYMBOL_GPL drivers/usb/serial/usb_wwan 0xe1a08229 usb_wwan_port_probe +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x1c4b8684 usb_serial_generic_chars_in_buffer +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x3185a48b usb_serial_register_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x35e1fbe2 usb_serial_generic_read_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x5cbb2f30 usb_serial_generic_unthrottle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x612bcf45 usb_serial_generic_write_bulk_callback +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x7a6117a4 usb_serial_generic_tiocmiwait +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x822c6714 usb_serial_handle_sysrq_char +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x8c8451c8 usb_serial_generic_submit_read_urbs +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9862096f usb_serial_generic_write +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9dd90189 usb_serial_generic_resume +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0x9fac97b8 usb_serial_generic_open +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xa86e65ce usb_serial_generic_wait_until_sent +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb38e0184 usb_serial_generic_throttle +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xb7edad82 usb_serial_generic_write_start +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbd5ea49b usb_serial_handle_break +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xbe362c3b usb_serial_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc1736e04 usb_serial_generic_close +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xc5250412 usb_serial_deregister_drivers +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xe65aedfe usb_serial_generic_get_icount +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xf66b8f9f usb_serial_port_softint +EXPORT_SYMBOL_GPL drivers/usb/serial/usbserial 0xfaad9812 usb_serial_generic_process_read_urb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x00d5682a usb_stor_ctrl_transfer +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x07009dee usb_stor_clear_halt +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x08f90c2f usb_stor_bulk_transfer_sg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x1b7edd02 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 0x1cd0f6a5 usb_stor_Bulk_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x22be1743 usb_stor_host_template_init +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x253eb5ef usb_stor_pre_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3d080d84 usb_stor_reset_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x3d7ee29c usb_stor_CB_transport +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x5201fac5 usb_stor_CB_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6c96e13f usb_stor_Bulk_reset +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x6f09de0d usb_stor_probe2 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x74a5004b usb_stor_suspend +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8a67d19a usb_stor_disconnect +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8b3c3c69 usb_stor_resume +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x8b86e24d fill_inquiry_response +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x909fe097 usb_stor_adjust_quirks +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x93c186b0 usb_stor_set_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0x984479a9 usb_stor_access_xfer_buf +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xc72857c3 usb_stor_probe1 +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xdadcc9bf usb_stor_transparent_scsi_command +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xe81d43be usb_stor_bulk_srb +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf8ad7e70 usb_stor_control_msg +EXPORT_SYMBOL_GPL drivers/usb/storage/usb-storage 0xf9d3bafa usb_stor_post_reset +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x02886774 usbip_pack_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x07fb3f13 usbip_pad_iso +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x244bdb23 usbip_event_add +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x2f242586 usbip_stop_eh +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x47af4c1c usbip_alloc_iso_desc_pdu +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x64d44b6d dev_attr_usbip_debug +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x78b72f44 usbip_debug_flag +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0x9480df2d usbip_event_happened +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xb29d9b6b usbip_dump_urb +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc106ec67 usbip_recv +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xc80e19be usbip_recv_xbuff +EXPORT_SYMBOL_GPL drivers/usb/usbip/usbip-core 0xcddea006 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/usbip/usbip-core 0xf79e0d02 usbip_start_eh +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x098ddcd9 rpipe_ep_disable +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 0x13666e83 rpipe_clear_feature_stalled +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x1e32e96d wa_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x32fe27c8 wa_urb_enqueue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0x5dc3ae1b __wa_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xcb55ad58 rpipe_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xd0633c6f wa_urb_dequeue +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusb-wa 0xfd8e5425 wa_dti_start +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0aa6abca wusbhc_mmcie_rm +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x0bb6bf5e wusb_cluster_id_get +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x13dcef04 wusbhc_rh_control +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x22bfc624 wusbhc_b_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7e4671a1 wusbhc_handle_dn +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x7f0b7631 wusb_dev_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0x9faa4996 wusbhc_rh_start_port_reset +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa66d95da wusbhc_mmcie_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xa92c907e wusbhc_giveback_urb +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xb725d128 wusb_cluster_id_put +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xbca40530 __wusb_dev_get_by_usb_dev +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc4ab27f7 wusbhc_destroy +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xc858bacd wusbhc_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xd8a81497 wusbhc_chid_set +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xdf181e3a wusbhc_b_create +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf58787b2 wusbhc_reset_all +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xf770a6b4 wusbd +EXPORT_SYMBOL_GPL drivers/usb/wusbcore/wusbcore 0xfc442d06 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 0x53ae88e6 i1480_rceb_check +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0x89a599b8 i1480_fw_upload +EXPORT_SYMBOL_GPL drivers/uwb/i1480/dfu/i1480-dfu-usb 0xd415918c i1480_cmd +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x0ac9b4c2 umc_match_pci_id +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x2f69c319 umc_controller_reset +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x42da15b2 umc_device_create +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x47c8b51e __umc_driver_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x54030cb2 umc_bus_type +EXPORT_SYMBOL_GPL drivers/uwb/umc 0x662d1536 umc_device_register +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xdd729d2c umc_driver_unregister +EXPORT_SYMBOL_GPL drivers/uwb/umc 0xf07c873d umc_device_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x0051a129 uwb_rc_mac_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x00924dc1 uwb_rc_post_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x04853860 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 0x18caeba0 uwb_rc_get_by_grandpa +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x1faa43cd uwb_rc_cmd_async +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x298f5521 uwb_rc_get_by_dev +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2a8fbd4f uwb_rc_dev_addr_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x2aea98a3 uwb_rsv_accept +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x36cb18e6 uwb_radio_stop +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x43b6db72 uwb_rsv_terminate +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d57ae3c uwb_rsv_type_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x4d6a1ce7 uwb_rsv_establish +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5bc7f4bd uwb_dev_for_each +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x5e6290d8 uwb_pal_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x60a358cf uwb_est_find_size +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x621c0de1 uwb_rsv_modify +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x658f2194 uwb_rc_pre_reset +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x6a7a7031 uwb_rsv_create +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x751ab7e5 uwb_rc_ie_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x79a9a7ca uwb_rc_cmd +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x7d85c580 uwb_rc_reset_all +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x816b9e92 uwb_est_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x87756b55 __uwb_rc_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x890b2084 uwb_rc_ie_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9021203f uwb_rc_alloc +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x98413234 uwb_rsv_state_str +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9c168e04 uwb_pal_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0x9fd50cfa uwb_rc_rm +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xac97316b uwb_ie_next +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb08d1f1b uwb_rc_init +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xb46ed6b3 uwb_rsv_destroy +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbaa900a9 uwb_notifs_deregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbafe1cc6 uwb_rsv_get_usable_mas +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd476fc8 uwb_radio_start +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbd93e50a uwb_rc_put +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xbe13a471 uwb_rc_add +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xc275f601 uwb_pal_unregister +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe4870b65 uwb_notifs_register +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xe550be7e uwb_dev_try_get +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xedae8697 uwb_rc_neh_error +EXPORT_SYMBOL_GPL drivers/uwb/uwb 0xfa90da43 uwb_rc_neh_grok +EXPORT_SYMBOL_GPL drivers/uwb/whci 0x4dbea74b whci_wait_for +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x269f7a09 vhost_dev_reset_owner_prepare +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x33a93228 vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x35009dbd vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x3c816a1a vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4b9c001f vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4f23dbdf vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x60ba57b9 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x611aff40 vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x646d5e5b vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x692e93b9 vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x77ce1a22 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x78858558 vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x7c7b6167 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x868e22ad vhost_init_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x92b739f5 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9ec24663 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa36d0d71 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0f81e37 vhost_work_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb281bf4d vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb2e03247 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb2f6e295 vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb4abbf39 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb957eb6b vhost_work_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbda4ae54 vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc113eb77 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc3deaf2a vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc5512a98 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd6f68cd9 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xde8aab05 vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xdfc44bb0 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2347934 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x10ae2a8e ili9320_shutdown +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x15a4f069 ili9320_suspend +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x1ac473a9 ili9320_remove +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x6e47cc48 ili9320_probe_spi +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0x80d26fad ili9320_write_regs +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xb0140e70 ili9320_write +EXPORT_SYMBOL_GPL drivers/video/backlight/ili9320 0xe49da435 ili9320_resume +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x04ee8faa auok190x_send_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x19c6d180 auok190x_common_remove +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x25ebbdb5 auok190x_send_command_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x280fa4a8 auok190x_common_probe +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0x94c34db8 auok190x_pm +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xb60e1d01 auok190x_send_command +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xc9fb6e36 auok190x_send_cmdargs_pixels_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xd2db6e34 auok190x_read_cmdargs +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xdc25b791 auok190x_send_cmdargs_pixels +EXPORT_SYMBOL_GPL drivers/video/fbdev/auo_k190x 0xea272657 auok190x_send_cmdargs_nowait +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_ddc 0x21aa966a fb_ddc_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0x87ad45af fb_sys_write +EXPORT_SYMBOL_GPL drivers/video/fbdev/core/fb_sys_fops 0xaf56ce5f fb_sys_read +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x129d45db sis_free_new +EXPORT_SYMBOL_GPL drivers/video/fbdev/sis/sisfb 0x6d39d886 sis_malloc_new +EXPORT_SYMBOL_GPL drivers/w1/wire 0x0b085add w1_touch_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0x7c2f2afb w1_calc_crc8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x92676ac4 w1_write_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0x9e637d75 w1_reset_bus +EXPORT_SYMBOL_GPL drivers/w1/wire 0xa9e70f33 w1_reset_select_slave +EXPORT_SYMBOL_GPL drivers/w1/wire 0xbd6a4a21 w1_read_block +EXPORT_SYMBOL_GPL drivers/w1/wire 0xc2f8cffa w1_read_8 +EXPORT_SYMBOL_GPL drivers/w1/wire 0xcbb97854 w1_next_pullup +EXPORT_SYMBOL_GPL drivers/w1/wire 0xd3125b7c w1_reset_resume_command +EXPORT_SYMBOL_GPL drivers/w1/wire 0xe4f80627 w1_write_block +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x3e67745e dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x9321df95 dlm_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xa1943555 dlm_posix_get +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc6dc8c2f dlm_new_lockspace +EXPORT_SYMBOL_GPL fs/dlm/dlm 0xc760be36 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 0x38b3c870 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5d5f073b nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x5eb48eb0 nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x87822c70 lockd_down +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x9074252a nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xbd437b04 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xf6b76d2c nlmclnt_proc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x044ae152 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x06b15863 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0725c581 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07bd210e nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x08adf126 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x09b67c4b nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0a6d86ba nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c2b656e nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0fbd2515 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1116029a nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x119b42ad nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x16fc605f nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1737b513 nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x194dda10 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a1b13b8 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4f6ce7 nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1cd84075 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1e26a945 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1ea4093e nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2031ba65 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x21dcd30a nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x22dd7311 nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2306975d nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x240b3572 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x27ed1116 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2959c979 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c6fbb67 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x348c80fe nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a4b12ca nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ab2963e nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3bdc9eb9 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c439d30 nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3ca31f35 nfs_net_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3e641975 nfs_wait_client_init_complete +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 0x426d5395 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x454b73d3 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x487acc15 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x49bc347f nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4af09bb7 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c0824b6 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4c96e0e0 nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4e879cb1 get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4f9aa2bd nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x50473b1d nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53c8a131 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53e94ba1 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5547bd8d nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x55df98cc nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584a4516 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58d099b9 nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a068530 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5a0aa0f0 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5e292912 put_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x605e6a03 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61d3012d nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x62061cbd nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6382ccf3 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x63e3eb51 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64038e2c nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6811fb0b nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68989b6a nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x69bc721f alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6ae7a522 nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d63922a unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f01580a nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6f6be75c nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71a6b550 nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x71b55092 nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x799d9eba __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c7fe5ee nfs_show_stats +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c9722ba nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7f7eadc4 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x80fc6f0b nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x83791748 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x869a4e3f register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87fc6fe3 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d1000fe nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d1a1773 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d706121 nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8d9a54f7 nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90a5530f nfsiod_workqueue +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x90bde9cd nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91927f61 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x91d1fe52 max_session_slots +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x959d6c42 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x990f06d8 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9b45e72f nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9d4308ed nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa129ff05 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa49454f6 nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa585af81 nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa82b2731 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa84e3509 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa94a03d2 nfs_file_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab8434ac nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb000fb76 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb032bceb nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb639b0be nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8a6f0c8 nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc59c219 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbc783f5b nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc311e17e nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc32d07d6 nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc4f8314f nfs_pgio_data_destroy +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 0xca8f5bea nfs_lock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcb9f4f01 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcd1a9949 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xceae3abe nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd13b1826 nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2551ccd nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2670efb nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd64c8f77 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd98c3f81 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdbad0f6f nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe24fa1eb nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe31e92c0 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7ee2818 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8ab0726 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8b1ff81 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xead384b4 nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xed40fdcc nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf00ffba1 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf0fce16d nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf2d6cbee nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf63a9a4a nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf87f2cf9 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf8882603 nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb7ee006 nfs_alloc_fattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfbe04801 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfc619abd _nfs_display_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff3437cf nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0x291503f2 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x014917cf nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x02d2aac3 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x07d9e067 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09398a6f pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0d7b40da nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0ee81c16 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x10762226 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1093b108 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x12cd2b2f pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x217dca6a pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27f792cf nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2906a997 nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x2dd0b58f pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3089376e pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x30feecd4 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3535e0e6 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x411ec8fd nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x41266852 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x43515d18 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x481b4c3e pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4a6b39d7 pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4cc39e87 pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4fa651c7 pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5a571cc3 pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x5af7b477 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6085edbd nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x63b684a3 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x72cd0470 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x74ca9867 pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7916cfef nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7ee1d277 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x97604d78 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9990ac18 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d6d667f nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9e56db6d nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa121634b nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa409ba0f pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa6178a34 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xa8c4525a nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xab45bb7a nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xac1fea3b pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad2e2a10 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaedf2202 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb0480ef3 __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb1949743 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb55ba641 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb9b324e3 pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbf5c8948 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3af4065 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc5f4f670 pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcc483c48 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcdf716ae pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd093da0e nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd0b5b7dc __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1188c10 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd17dc0f2 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd71cecb6 pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdad9b92b pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdeae0f52 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe6dfeaf6 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xec1052eb nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf84c1f04 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x03ff04eb locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x2b2317c8 locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x50a59e9c opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0x6fa01322 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe524920e 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 0x26788917 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 0x3783a0bb o2hb_unregister_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x452e0fd8 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 0x81a17396 mlog_and_bits +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x8f4bfcd2 o2hb_setup_callback +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0xa186cfdb 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 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 0xe140877b 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/cluster/ocfs2_nodemanager 0xfb883f45 o2nm_get_node_by_num +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5e359924 dlm_unregister_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x664284fd 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 0x8387a7c9 dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x934c25d0 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xb3e534e1 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0xd7b7e3c3 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 0x43f88698 ocfs2_stack_glue_unregister +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x47a57d4f ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x4af23f39 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 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 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 0x1f7bb34e notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0xe5e445fd 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 0x9332eb97 lowpan_header_decompress +EXPORT_SYMBOL_GPL net/6lowpan/6lowpan 0xea007a24 lowpan_header_compress +EXPORT_SYMBOL_GPL net/802/garp 0x3e0ecbfd garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x59d7a504 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x711d9a29 garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x861bfe34 garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0xbdd2dc24 garp_request_leave +EXPORT_SYMBOL_GPL net/802/garp 0xcfa84498 garp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x5167bb32 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7676d099 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0x7a285847 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xa8033688 mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xc24b96d9 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xf3e19755 mrp_request_join +EXPORT_SYMBOL_GPL net/802/stp 0xb89482b3 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xf8519a54 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x14c0479b p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/9p/9pnet 0xdfabbb52 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 0x5e270de2 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 0x0362930b l2cap_chan_set_defaults +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x2b5d66ce l2cap_chan_create +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x3ac44702 l2cap_chan_connect +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0x61a3eec4 l2cap_chan_send +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xc872c7be bt_debugfs +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xdd95bd71 l2cap_chan_put +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xe7686660 l2cap_add_psm +EXPORT_SYMBOL_GPL net/bluetooth/bluetooth 0xf48e6b47 l2cap_chan_del +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x0d3bd47e br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0x11281456 br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0x5aa35895 br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x64a59814 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xcf5938e6 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd0f3ef6f nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd9b90c26 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0xea0282b5 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x6a4f9cae nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xdfcb8506 nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x134d64df dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x14bd2784 dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x162738d9 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1dba9421 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0x28e5dc48 dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x2b8ef0f8 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x34a14297 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3ee34f04 dccp_reqsk_init +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 0x53823867 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5a9014d2 dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6fb32f9a dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0x743a74b3 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7730e97e dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0x7ddb29f8 compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86b8e915 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8a1496f4 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9d393da4 dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9dad6e6b dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa40e4206 dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa6bbe317 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa9d0c805 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaafa640d dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xaee03f5d dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb9ddab7d dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbc9293db dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc0b7b890 dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xcff8d010 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xdb2ca6f7 dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe319cca7 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe3764040 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe5256155 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf2b489e6 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf5e63387 dccp_child_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfae6e14e dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfaf99d1e dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfcc67304 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0039420d dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x0e1270c2 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x2173e69d dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x5f5b5d2b dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x830c5640 dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xa9dae2a4 dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x31a886a3 ieee802154_hdr_peek_addrs +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x4d7aef69 ieee802154_max_payload +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x70ec92a4 ieee802154_hdr_pull +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0x86f5de9b ieee802154_hdr_push +EXPORT_SYMBOL_GPL net/ieee802154/ieee802154 0xcd2595f9 ieee802154_hdr_peek +EXPORT_SYMBOL_GPL net/ipv4/gre 0xd26b29f9 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0xde37943a gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x261426a1 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x5abcce7f inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x740b0ae6 inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xb5fdd80b inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xc01cbd5d inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0xd394b021 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0x5daae78d gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x0c262b44 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4c8c57a0 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x5eaec6f1 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x602db17f __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x60da758d ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x762220f1 ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa002572a ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xa6078f17 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbda48a83 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xbfe769c5 ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xcd5cfea1 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe28b292f ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe40a2858 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xef54f2c1 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf9f71c8e ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x8269491c arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x16311e3a 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 0x67747fbc nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x0681bedc nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x10208407 nf_nat_icmp_reply_translation +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9f0d2160 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xaa155682 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xea27929f 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 0x50c415c3 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 0x2ad67941 nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x6a907799 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x86d6ecb5 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xba64b148 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xc9af7fd3 nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0x844b0013 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x60e7d443 tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7887a927 tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x8a39abbd tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x9f543c84 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xffab22d4 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x867eb99a udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x9f7a24c6 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xad99fc5d udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xf71c718a udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x0e519cb5 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1912cf81 ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x216794b6 ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x310b8017 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x53ecb870 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xa5f70485 ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xc77728a0 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x011c5638 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x14ab3c02 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x74587b3a 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 0xf405d6eb nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0xf4b0c483 nf_ct_frag6_consume_orig +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x6b303d85 nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x1d6ce268 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xa1ae8a0f nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xbf949af9 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xc60700b7 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf97897fc 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 0x3b02adab nf_nat_masquerade_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x1923f2d9 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x46728eb8 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa4353ed1 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xc3946c11 nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xde8467d3 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0x4770cb2c nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x0ca27f1d __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x1c93635f l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2a9730a2 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3ab6b39e l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4905e688 l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x587354a1 l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8e9240b4 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x953d9c3c l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa00418bb l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa5afb3ca l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xa682c974 l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xb15cb81f l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xc0daf712 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xd03ad65b l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf7eb7f45 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xf8739de4 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x3083cb0b l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x05688aa8 ieee80211_iterate_active_interfaces_rtnl +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x11e1f72f ieee80211_set_key_rx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x19df1212 ieee80211_request_smps +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x1f216d2c ieee80211_set_key_tx_seq +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x2359b4da ieee80211_ready_on_channel +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x33895860 ieee80211_iter_chan_contexts_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x58a151ae ieee80211_remove_key +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x5a0279cc ieee80211_iterate_active_interfaces_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0x6b5b71d8 ieee80211_vif_to_wdev +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xbb7d0bbc ieee80211_resume_disconnect +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xd5d182eb ieee80211_gtk_rekey_add +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xdc5feed0 ieee80211_ave_rssi +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xe08e028b ieee80211_find_sta_by_ifaddr +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xecf7dc19 ieee80211_iterate_stations_atomic +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xed73bace ieee80211_iterate_interfaces +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xeec44801 wdev_to_ieee80211_vif +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf021e82b ieee80211_remain_on_channel_expired +EXPORT_SYMBOL_GPL net/mac80211/mac80211 0xf6f91286 ieee80211_gtk_rekey_notify +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x5d55b5eb mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x83640c61 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x85f4d054 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf8f430d2 nla_put_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x007331a1 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x09ad9c2d ip_set_put_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x23f9f9c6 ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x2ef9ab0b 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 0x57c15c96 ip_set_get_byname +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x5c103d26 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x644e0073 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 0x7a483adc ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x81fff2d1 ip_set_netmask_map +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x88f54d8c ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x89657608 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x94cd83f9 ip_set_type_register +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 0xbaaaab88 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xbbacc851 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcff2e6ef ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xd21ffe3a ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xf3b4d4ae ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xffbb087d ip_set_put_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x36a01923 unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x39fa0a53 register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x7b3ceeb2 ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xef80e992 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x02f893d5 nf_ct_helper_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03ed2e8d nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03ed599c nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x099ab16e nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x09bd6741 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0a531e8d nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x142538bd nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x157b8aec nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1634bdd3 nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x166704a6 nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x16c5a1ce nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x191defdb nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2283f4e7 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x23ccbd67 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x257b6a21 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2b7cc94a nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x35807091 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37b020bd __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3c37ee0c nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3d4de278 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3dc215a3 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x505348d1 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x57a1436e nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x58167a23 nf_ct_l4proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5978d198 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5a3c690d nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5b456bb1 nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5d895862 nf_ct_helper_expectfn_find_by_name +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x5f3f34ee nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x60d555ae nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6177c260 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62818001 nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x64e0f336 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x680a0b8f nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6cad7749 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6f58e58f nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x73fcab53 nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x74bca3e1 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7680d894 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76ace9a7 nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7df2ea56 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7ea7b60a nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8067fc54 nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8554fa4d nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x86629efa nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88149c57 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8906bce2 nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a66c4fc nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8dbc8f08 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8f834497 nf_conntrack_tuple_taken +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 0x9a8da290 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9becaa3d nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9edb31fd nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa0a3125f __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa65a89e3 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa852dae5 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa8bbc012 nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xab3d1f95 nf_ct_untracked_status_or +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xac9d8247 nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xad1bb027 nf_ct_free_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xadf8e75d nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb06ad3c2 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0760b74 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb602c57e nf_ct_l3proto_module_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbf7b0068 nf_ct_unexpect_related +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 0xc6528e89 __nf_conntrack_confirm +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc9f71232 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb1874f5 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb8a9185 nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcf574363 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcfd10bed __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd3dbd822 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdb01350d nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdd296b5b nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe4951b18 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe73fd963 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe7d43190 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe98ed83b nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf32df657 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa1775e4 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfb43634e nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfebd983f nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xff40b965 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0xd588d897 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0xce99a593 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x6cc944f6 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x007b8a6b set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x22fe1e98 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2f671141 nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x39a6654b set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x45628b03 get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x4a994540 set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x57b41b79 nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x9c706734 nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xdbe05eab nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xeae689b9 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x9499f185 nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x300ab149 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x3ec201c1 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xdff2f50c nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xfb88e572 nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x602aa2ed nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0xea4852a6 nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x02e3f085 ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x0d002ee6 ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x29189028 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2f37dcfe ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x43559100 ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x489cbfc1 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x91653488 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x8aed695d nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xcc05da23 nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x3120d8ed nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xb257dc1e nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xbc34ee84 nf_log_dump_tcp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xeacbf9ea 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 0x17ba5726 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2257cf81 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x2a1625f6 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x48749a6b nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x7d9fb224 nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x8fdf9ebe nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x97da5a7a nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xbd2de21d nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xff6b7edc nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0x791f4584 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xd75753de 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 0x6c66b9e5 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x8841d39b synproxy_build_options +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x9020580e 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 0x107cca53 nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x10cf8c7b nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x22e9b33b nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x25c8e6da nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x2f4a2c89 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x32cb52ae nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x38a0ed91 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x3cb766ea nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5211bc58 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x546007ee nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x5778f241 nft_chain_validate_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x613d5058 nft_unregister_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x68088bee nft_data_uninit +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x805c0989 nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x82ae0dca nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x9b1259a8 nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xa3935dc1 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbdf51333 nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf7e9888 nft_register_set +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 0x16f73050 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x36cef464 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3b36226a nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x69363efb nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xbc24c1a2 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xc451a597 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xfa741f80 nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x269468f3 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x5acb14b3 nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xcc623833 nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0xe356c0bd nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x4598cc41 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xa1bc4d36 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xf37cb6a8 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x1b6434e3 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x27fc2860 nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x297112ee nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x5574d102 nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb9abebb8 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xd27cc576 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x44d08797 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6e1c6f5c nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xcdb36fed nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x913d6672 nft_reject_init +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x92cb96a9 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 0x09712ffc xt_table_unlock +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 0x2e53d5b8 xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3b471e2a xt_request_find_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4039bd35 xt_compat_match_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4208ab63 xt_proto_init +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 0x6b00823e xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x6fb705a0 xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x73cee41e xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7b42a440 xt_hook_unlink +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x909ec225 xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa5c8487e xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb249bbdc xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb2ac7086 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xc06e4ed5 xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xd5efa28f xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdcad9788 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdce20b76 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xdf093dff xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xe0b4971b xt_compat_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xeb085ec4 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xec24fd82 xt_compat_add_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xfcb7cf1e xt_proto_fini +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 0x6a883373 nci_spi_allocate_spi +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0x72e9f1cb nci_spi_send +EXPORT_SYMBOL_GPL net/nfc/nci/nci_spi 0xc7488872 nci_spi_read +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0x33a82e86 nci_uart_unregister +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xb81fbd51 nci_uart_register +EXPORT_SYMBOL_GPL net/nfc/nci/nci_uart 0xd99b9bd0 nci_uart_set_config +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x197732bd ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5ab44ea8 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x7ada4c63 ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8d08c68d ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x8ebd3e06 ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x90ffb370 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb49ad951 ovs_netdev_link +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xba22c237 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xc81d0458 __ovs_vport_ops_register +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 0x04202f31 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0x23982473 rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x28181577 rds_send_drop_acked +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 0x42495f1a rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x4a55f164 rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x4bcfdc1e rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x4ffeaaaf rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x50cbe7b3 rds_stats +EXPORT_SYMBOL_GPL net/rds/rds 0x5542ee1d rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0x62c6eff3 rds_cong_map_updated +EXPORT_SYMBOL_GPL net/rds/rds 0x63f8c115 rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x661b278b rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0x6980f22a rds_recv_incoming +EXPORT_SYMBOL_GPL net/rds/rds 0x70aa5a01 rds_inc_init +EXPORT_SYMBOL_GPL net/rds/rds 0x72fc80af rds_message_unmapped +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 0x7e5a9964 rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x8c0f4800 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0x94ab5086 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0xa583d36e rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xb3bb387c rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0xc2dab779 rds_info_copy +EXPORT_SYMBOL_GPL net/rds/rds 0xdba6d432 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0xe009a079 rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xe35865f6 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0xed1cfd1b rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0xf752a4d1 rds_message_addref +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x2eb26197 rxrpc_unregister_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xcf33c637 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 0x376e0562 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x38722fbc gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x41955ff6 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 0x01dd0cde rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x02b21960 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x032a08f6 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03bd0529 xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x03bdc047 svcauth_unix_purge +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 0x06d4996a xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a17dcb3 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0cca09d9 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0da06165 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0e941bd9 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x10745486 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x11e14f56 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1221e7e9 xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1233ce5b rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x123f8e78 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12ebe0f6 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x15386cf7 rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x159cabab rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x177c01ec rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1890bb54 rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1a08a6d5 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1adcbe94 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1b390210 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d1e22d2 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1d37bb13 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1ef0bad1 rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a9970 rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f5248ac xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2144c8c6 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2207b3df xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2579d504 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x275d71cc cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x27c70bfe xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2924cb43 rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2afbd17d rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2bff4d4e rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2e9cabd2 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2ed39ab9 cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f636e87 rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3123f4d8 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32958435 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x32df124a rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x340a8fc1 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x361dca85 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x363c81d7 xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x36c974be rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3854ff4c svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x38e80b3b rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c4f11bd svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3c704f26 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3cc3dd86 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3d5451a7 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x40c7ad58 rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x430be3fb rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x43adbca3 sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x472e013f rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47398b56 rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4853d8b4 sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x492abbb8 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4b726c61 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e19ec53 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4e2114ac auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50999f8e rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5312d965 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5489a4e7 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x58f7ff64 cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x59dfb887 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5cf10c9b xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d898349 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f32fe24 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5f7d1ece rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60553d0f xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60d67a81 rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x60dbfe70 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x62e7c932 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x648d09bd rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x669eb05e svc_exit_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x66d869fd rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6739f8cf rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x68df6270 rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x694946fe write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6ef4406a svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f58776a rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x710f9292 rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71ccee12 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71cfdc5f xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7210539f rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7224b1f9 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75a589c2 xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x76d8605a cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x770ce7f7 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x77d95228 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ad75213 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de49bd3 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7def2081 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fd5c24a csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ff755a1 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x808d3a2a xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x822dc5b7 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x82e622c7 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8434702c read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x845889b5 svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8481d18d rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x867bc35d rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x86ceaa8c rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x89377186 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8a8d2cfc rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bf893cd cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8c669090 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e62d52a sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x97d2dcf1 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98514841 rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98e080d6 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a739e0e sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9a8f220e rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9b0f1559 svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e03bbb0 rpc_pipe_generic_upcall +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 0xa31faff5 svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa3594109 rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa40f3bb5 rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa4df5767 xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa8b6c438 svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa63bee9 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacd8bf82 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xacffe9eb xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaed011cd svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf99656b svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb0ab3354 svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb28f3a2f sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb30e9d01 rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb436673a svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6d17899 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb834806f xprt_reserve_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb88283f6 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8f323c4 svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb96a1eea svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb990bb93 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb9a04066 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xba268c8f __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbbcef380 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc10d8fd rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc25b99e rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbc56c884 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcb25fec xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf48a527 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbffc84dc rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0668712 rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2322cea svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc2918ce8 rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc58fb08c rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc9b75017 rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca4ce315 rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb3ad8b9 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc275c8f rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce4734be xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd0b339f1 svc_rpcb_setup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2552a40 rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd3389faa xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd4cff173 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd52397cc rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd623204b svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd640ad80 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7b70662 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd7f3c3a8 rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd87347c7 xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd8d7db8b xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9d666c1 rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdd6b720e rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdef67da8 xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdfb28e71 svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1f3d5c4 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe288b5da svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4036f7c svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe49cd92f svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe4c94062 xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5919cb1 xdr_encode_opaque +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe5b9ad97 svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe8acd619 rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe911537e xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe97f4ce5 qword_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea042afb rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xea093cd9 cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeb997a72 xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xecaf5e71 rpc_add_pipe_dir_object +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 0xeef72f5e xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xef0c21e4 rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xefe2bcd8 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf11ccf75 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf1b6a2c5 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf32cef36 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3d6959c xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3fa3209 rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf459f2f3 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7f88c7d bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf7fbbed7 svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf93dd001 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf94ac407 xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc78e150 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfd2d3217 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xffb06193 svc_recv +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 0x299de4c4 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3876c96d vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3e1140ad vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x4b66e0cb vsock_enqueue_accept +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 0x78dc0098 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8710c3ad __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8a22bdb6 vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x8afe580e vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x970b77bc vsock_pending_work +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x9a8047c3 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xaa318d81 vsock_add_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 0xe0d93487 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xe8ad4b4d vsock_for_each_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xeb3f4b88 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x00bf80ac wimax_state_get +EXPORT_SYMBOL_GPL net/wimax/wimax 0x0c43c176 wimax_msg_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x2572a50a wimax_dev_init +EXPORT_SYMBOL_GPL net/wimax/wimax 0x50a6c34d wimax_report_rfkill_sw +EXPORT_SYMBOL_GPL net/wimax/wimax 0x5c43281f wimax_msg_alloc +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8afc7cf4 wimax_msg_data +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8c785298 wimax_msg_data_len +EXPORT_SYMBOL_GPL net/wimax/wimax 0x8f9923ef wimax_dev_rm +EXPORT_SYMBOL_GPL net/wimax/wimax 0x99783429 wimax_report_rfkill_hw +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa1f03eac wimax_dev_add +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa277ccb3 wimax_state_change +EXPORT_SYMBOL_GPL net/wimax/wimax 0xa4caa9df wimax_msg +EXPORT_SYMBOL_GPL net/wimax/wimax 0xc1eb1848 wimax_msg_send +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x1b30f34d cfg80211_wext_giwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x2ae6f334 cfg80211_wext_giwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x4c77f13c cfg80211_shutdown_all_interfaces +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x65fa7847 cfg80211_wext_giwrange +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x8eb0c02c cfg80211_wext_giwfrag +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x941bcd0c cfg80211_wext_giwname +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0x97a87559 cfg80211_wext_giwretry +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xa6035944 cfg80211_wext_siwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb2063768 cfg80211_wext_siwmode +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb3dc36c1 cfg80211_wext_giwscan +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xb8b802d6 cfg80211_vendor_cmd_reply +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xde933cda cfg80211_wext_siwrts +EXPORT_SYMBOL_GPL net/wireless/cfg80211 0xe01e6504 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 0x08b3b4e5 ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x31bd9e3c ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x7e622b12 ipcomp_destroy +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x8e7190e2 ipcomp_init_state +EXPORT_SYMBOL_GPL sound/ac97_bus 0xd9f9f44e snd_ac97_reset +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x7ec5dc93 snd_seq_driver_unregister +EXPORT_SYMBOL_GPL sound/core/seq/snd-seq-device 0x8b45aad0 __snd_seq_driver_register +EXPORT_SYMBOL_GPL sound/core/snd 0x16649e6b snd_ctl_get_preferred_subdevice +EXPORT_SYMBOL_GPL sound/core/snd 0x42c9066a snd_device_initialize +EXPORT_SYMBOL_GPL sound/core/snd 0x479841de snd_card_add_dev_attr +EXPORT_SYMBOL_GPL sound/core/snd 0x47ae4ab4 snd_ctl_activate_id +EXPORT_SYMBOL_GPL sound/core/snd 0xb5fe262e snd_device_disconnect +EXPORT_SYMBOL_GPL sound/core/snd 0xb7f4709c snd_ctl_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/core/snd 0xceb75f81 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 0x3df154fe snd_pcm_stream_unlock_irqrestore +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x462b1cac snd_pcm_lib_default_mmap +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x67a6a8d3 snd_pcm_stream_lock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0x8230b9da snd_pcm_add_chmap_ctls +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xa286a234 snd_pcm_format_name +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xaa0eca6f snd_pcm_stream_unlock_irq +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xab8bc1a2 snd_pcm_rate_mask_intersect +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xbd69619f snd_pcm_stream_unlock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc2c80603 snd_pcm_stream_lock +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc3589812 snd_pcm_stop_xrun +EXPORT_SYMBOL_GPL sound/core/snd-pcm 0xc944f1f7 _snd_pcm_stream_lock_irqsave +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x0c35bbb5 snd_dmaengine_pcm_get_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x2224e13b snd_hwparams_to_dma_slave_config +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x5ca7a8c8 snd_dmaengine_pcm_open_request_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0x79614fb6 snd_dmaengine_pcm_trigger +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xa2d748e3 snd_dmaengine_pcm_close_release_chan +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xac514520 snd_dmaengine_pcm_pointer +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xcccf6469 snd_dmaengine_pcm_close +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe26bc293 snd_dmaengine_pcm_set_config_from_dai_data +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe3b569e6 snd_dmaengine_pcm_pointer_no_residue +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe4d1df61 snd_dmaengine_pcm_open +EXPORT_SYMBOL_GPL sound/core/snd-pcm-dmaengine 0xe9e4c317 snd_dmaengine_pcm_request_channel +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x0143b8aa amdtp_am824_set_parameters +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x201bf09a amdtp_am824_init +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x2cf08c0d amdtp_am824_midi_trigger +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x5140175e amdtp_am824_set_pcm_format +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9a4d0d0e amdtp_am824_add_pcm_hw_constraints +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0x9cb00c0f amdtp_am824_set_pcm_position +EXPORT_SYMBOL_GPL sound/firewire/snd-firewire-lib 0xa04f9750 amdtp_am824_set_midi_position +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x02ebc098 snd_hdac_dsp_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x060bbf48 snd_hdac_bus_update_rirb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x07585e30 snd_hdac_override_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x0850f81b snd_hdac_regmap_add_vendor_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x135c5bb0 snd_hdac_device_unregister +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16c6ca10 snd_hdac_regmap_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x16dc796a snd_hdac_bus_exit_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1aff36de snd_hdac_refresh_widgets +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x1d3fc7aa snd_hdac_get_stream +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x205f8d4a snd_hdac_bus_add_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2184d184 snd_hdac_stream_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x250baf88 snd_hdac_device_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2595f220 snd_hdac_codec_modalias +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x270a514d snd_hdac_bus_init_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2876d018 snd_hdac_regmap_update_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2a609107 snd_hdac_dsp_prepare +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2abccf3c snd_hdac_stream_setup_periods +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x2ba82d03 snd_hdac_get_sub_nodes +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x333ed496 snd_hdac_refresh_widget_sysfs +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x375402a8 snd_hdac_stream_clear +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x39b97d88 snd_hdac_stream_sync +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3b2c72af snd_hdac_check_power_state +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3c7ebc6c snd_hdac_stream_set_params +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x3ed9df0a snd_hdac_regmap_read_raw +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x49bdeb7b snd_hdac_codec_write +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4c53818d snd_hdac_bus_remove_device +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4e774a0a snd_hdac_device_set_chip_name +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x4fcf15a7 snd_hdac_bus_queue_event +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5e83679b snd_hdac_bus_stop_chip +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5ea8545c snd_hdac_stream_assign +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x5f89e6ea snd_hdac_stream_sync_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x68980ddb snd_hdac_bus_exec_verb +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6b33028c snd_hdac_bus_get_response +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x6d739615 snd_hdac_bus_handle_stream_irq +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x71ae3e4d snd_hdac_bus_init_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x756462a2 snd_hda_bus_type +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x79ce0d4e snd_hdac_bus_alloc_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ebd3c84 snd_hdac_bus_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x7ff001b2 snd_hdac_stream_stop +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x867eb0a5 snd_hdac_stream_cleanup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x8a6a1058 snd_hdac_bus_exec_verb_unlocked +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x918acc70 snd_hdac_get_connections +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x94c491a8 snd_hdac_stream_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x9624fefa snd_hdac_bus_stop_cmd_io +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0x985d5f90 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 0xa2f50478 snd_hdac_bus_free_stream_pages +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa519123c snd_hdac_read_parm_uncached +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xa7b8016a snd_hdac_query_supported_pcm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab901f7a snd_hdac_dsp_trigger +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xab9e8d4c snd_hdac_bus_send_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xada2cd96 snd_hdac_stream_timecounter_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb1661e19 snd_hdac_is_supported_format +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb6ce0169 snd_hdac_make_cmd +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xb7436027 snd_hdac_bus_enter_link_reset +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbb736071 snd_hdac_device_register +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbce80394 hdac_get_device_id +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xbe48e138 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 0xc0827226 snd_hdac_power_up +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xc237f0a4 _snd_hdac_read_parm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xd0c18cf3 snd_hdac_device_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xdc28ba89 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 0xde4e6399 snd_hdac_stream_setup +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe27ae6bf snd_hdac_power_down +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xe77907f1 snd_hdac_regmap_exit +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xeac15755 snd_hdac_power_down_pm +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xedbc8706 snd_hdac_bus_init +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf0d1d893 snd_hdac_link_power +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf149bea1 snd_hdac_stream_release +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf47ab208 snd_hdac_read +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xf4c0bea1 snd_hdac_stream_start +EXPORT_SYMBOL_GPL sound/hda/snd-hda-core 0xfbbb7065 snd_hdac_codec_read +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x07897cbd snd_ak4113_create +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x65071a74 snd_ak4113_external_rate +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7844daf5 snd_ak4113_reinit +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0x7926c5a6 snd_ak4113_reg_write +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xe4252d1a snd_ak4113_build +EXPORT_SYMBOL_GPL sound/i2c/other/snd-ak4113 0xebb17cde snd_ak4113_check_rate_and_errors +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x005c1a07 hda_get_autocfg_input_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0267ab07 snd_hda_mixer_bind_ctls_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05beabfe snd_hda_find_mixer_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x05fa1652 snd_hda_codec_amp_stereo +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 0x0a7d8e10 snd_hda_mixer_amp_switch_put_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0cf1326a snd_hda_set_vmaster_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0d950e68 snd_hda_detach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x0f71387a snd_hda_unlock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1029984c snd_hda_load_patch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14a2d30b hda_codec_driver_unregister +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x14e48037 snd_hda_get_bool_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x15b3ca93 snd_hda_add_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1707561e snd_hda_codec_load_dsp_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x1bbb3508 snd_hda_codec_pcm_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x26854223 azx_init_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x275d647c snd_hda_mixer_bind_ctls_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x27fe39a9 snd_hda_spdif_out_of_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x2eb05562 snd_hda_get_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 0x38b316ae snd_hda_codec_set_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x38ce402b azx_interrupt +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x390bb073 snd_hda_jack_set_dirty_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3a2df17c snd_hda_attach_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3aadbaf4 snd_hda_codec_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3b3fc776 snd_hda_codec_load_dsp_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3bfb7c1c snd_hda_pick_pin_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3cc96c9d snd_hda_codec_amp_init_stereo +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d70232a snd_hda_parse_pin_defcfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3d985c68 snd_hda_codec_set_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x3fd4887a snd_hda_pick_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4285f363 snd_hda_multi_out_analog_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4598368e snd_hda_jack_detect_enable_callback +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x45d5266d snd_hda_apply_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x46db897f snd_hda_jack_add_kctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x493182d9 snd_hda_enum_helper_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x49f2e87d snd_hda_multi_out_analog_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4bd14108 snd_hda_codec_get_pin_target +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4d3107c4 snd_hda_bind_vol +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x4efd02ee snd_hda_codec_update_widgets +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x51ff152d azx_stop_all_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x53d24a3a query_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5699b20c snd_hda_codec_load_dsp_trigger +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5855f243 snd_hda_override_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5c69c5cf snd_hda_sequence_write +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5d8cc420 snd_hda_codec_get_pincfg +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x5fa1e9dc snd_hda_add_verbs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x60d9e9cb __snd_hda_add_vmaster +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x621de981 snd_hda_jack_detect_state +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x630561b8 snd_hda_create_spdif_share_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x63da0f12 azx_stop_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x644adddc snd_hda_mixer_bind_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6536157d snd_hda_enable_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x67fdc009 snd_hda_override_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x69371242 snd_hda_apply_fixup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b6d22cf azx_get_pos_lpib +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x6b7b02ce snd_hda_mixer_amp_tlv +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72243a21 snd_hda_lock_devices +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x72a77776 snd_hda_mixer_bind_ctls_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x73691d26 snd_hda_jack_unsol_event +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x75430f78 snd_hda_multi_out_dig_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77b6bb6f snd_hda_bind_sw +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x77eab24f snd_hda_codec_set_name +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7c833e1a snd_hda_mixer_amp_switch_get_beep +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x7e902841 _snd_hda_set_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x841f49e6 snd_hda_jack_set_gating_jack +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x848fdf6c snd_hda_jack_detect_enable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x85103009 snd_hda_spdif_ctls_unassign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x877299ce snd_hda_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8895aa6e snd_hda_mixer_amp_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8a7bb779 snd_hda_ctl_add +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8b82fcc5 snd_hda_get_conn_index +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x8d3d433c snd_hda_apply_pincfgs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x90ea0552 snd_hda_codec_setup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x913bddc5 snd_hda_multi_out_analog_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x916d77a2 azx_free_streams +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x941b4ac2 azx_probe_codecs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x94edabc1 snd_hda_get_default_vref +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95b6dba7 snd_hda_jack_poll_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x95bb485d snd_hda_mixer_amp_volume_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x964eae9e snd_hda_codec_set_power_to_all +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x99147f32 __hda_codec_driver_register +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0x9c94db98 snd_hda_multi_out_dig_close +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa289f92e snd_hda_input_mux_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa52dc094 snd_hda_jack_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa680e2c6 snd_hda_spdif_ctls_assign +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa78d5b32 snd_hda_jack_tbl_get_from_tag +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xa8982791 snd_hda_correct_pin_ctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb2a98d76 snd_hda_get_conn_list +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb41714ca azx_get_position +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb56124ef snd_hda_sync_vmaster_hook +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb8dd87a7 snd_hda_multi_out_dig_cleanup +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xb9b38c27 snd_hda_mixer_bind_switch_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xba61521c snd_hda_check_amp_list_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbc805e4d snd_hda_get_connections +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xbdb148fc snd_hda_register_beep_device +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc0415b57 snd_hda_mixer_amp_volume_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc07aecbe azx_init_chip +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc091a2d0 snd_hda_codec_eapd_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc15d8c77 snd_hda_get_int_hint +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc197c94b snd_hda_codec_amp_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc3bcc3f8 snd_hda_codec_prepare +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6e128ad is_jack_detectable +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc6f9d054 snd_hda_add_imux_item +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xc7610bcc snd_hda_multi_out_dig_open +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xcc4072f0 snd_hda_check_amp_caps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xce6fb9cc snd_hda_jack_report_sync +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd254dce4 __snd_hda_codec_cleanup_stream +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd5f5d3fc snd_hda_codec_amp_update +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd64b3479 snd_hda_create_dig_out_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xd9e0b5f8 azx_bus_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdd6fb964 snd_hda_mixer_amp_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xdfd4d132 snd_hda_shutup_pins +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe118de5d snd_pcm_2_1_chmaps +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe1e5be3d snd_hda_get_pin_label +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe2b576d9 snd_hda_add_new_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe4096baa snd_hda_create_spdif_in_ctls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe57b942c snd_hda_mixer_amp_volume_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe6d14d73 azx_codec_configure +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe98b1f65 snd_hda_add_nid +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xe98f1680 azx_get_pos_posbuf +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec350007 snd_hda_codec_pcm_put +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xec499f2d snd_hda_mixer_bind_switch_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xeda3a721 snd_print_pcm_bits +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xefe2acf1 snd_hda_set_power_save +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf20a8f00 snd_hda_codec_new +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf759535e snd_hda_pin_sense +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf855761f snd_hda_mixer_amp_switch_info +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec 0xf929fee2 snd_hda_jack_tbl_get +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x01c034d3 snd_hda_add_new_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0a7f3f84 snd_hda_gen_spec_init +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x0e9ddbb9 snd_hda_parse_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x1229cb9c snd_hda_gen_build_controls +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x2f73ff1a snd_hda_get_path_idx +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x39ce360e snd_hda_gen_stream_pm +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x3a6df853 snd_hda_gen_parse_auto_config +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x489f3918 snd_hda_gen_check_power_status +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x553524b2 snd_hda_gen_build_pcms +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x56f33356 snd_hda_gen_fix_pin_power +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x574e3b11 snd_hda_gen_line_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x64e4cd9b snd_hda_gen_hp_automute +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x6644b481 snd_hda_gen_path_power_filter +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0x68a2b4d1 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 0xb50f1242 snd_hda_gen_free +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xc538cf1f snd_hda_gen_update_outputs +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xcaa08b0c snd_hda_get_nid_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xddcd0509 snd_hda_gen_mic_autoswitch +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xde465f3b snd_hda_gen_add_kctl +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xf523aec1 snd_hda_activate_path +EXPORT_SYMBOL_GPL sound/pci/hda/snd-hda-codec-generic 0xfc650642 snd_hda_gen_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x088f6321 cs4271_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0x7d05786f cs4271_dt_ids +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs4271 0xff45ada2 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 0x632b0704 cs42l51_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42l51 0xb7fdb983 cs42l51_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x0245c4f2 cs42xx8_of_match +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x043bea34 cs42xx8_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x79681eb9 cs42xx8_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x7cac7292 cs42888_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0x89605114 cs42xx8_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-cs42xx8 0xcd3794c9 cs42448_data +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x2f36ecb0 es8328_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-es8328 0x81835194 es8328_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x0702a645 pcm512x_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x72e0fc2c pcm512x_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x89c6244e pcm512x_regmap +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-pcm512x 0x931424ef pcm512x_pm_ops +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x5d2c3a9c sigmadsp_restrict_params +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x731e1a5e sigmadsp_setup +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x82ecbb95 sigmadsp_reset +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0x919aa632 devm_sigmadsp_init +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp 0xab7abac2 sigmadsp_attach +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-sigmadsp-i2c 0xee9fa6d0 devm_sigmadsp_init_i2c +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x3be7d200 ssm2602_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ssm2602 0x6c0bb41d ssm2602_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xa3349f49 tpa6130a2_stereo_enable +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-tpa6130a2 0xbfcfdc92 tpa6130a2_add_controls +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-ts3a227e 0x3511bf2d ts3a227e_enable_jack_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x1ebd3d60 wm8804_pm +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0x6894e15c wm8804_remove +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf4ff78f3 wm8804_probe +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8804 0xf7e12f02 wm8804_regmap_config +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8903 0x8398ecaa wm8903_mic_detect +EXPORT_SYMBOL_GPL sound/soc/codecs/snd-soc-wm8962 0x12bb1f51 wm8962_mic_detect +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0x2bfe1fab fsl_asrc_platform +EXPORT_SYMBOL_GPL sound/soc/fsl/snd-soc-fsl-asrc 0xb51c0f31 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 0x00763236 snd_soc_component_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x01cb9973 snd_soc_dapm_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x05cd62e8 snd_soc_jack_free_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x060f423e snd_soc_component_update_bits_async +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x06c3a31c snd_soc_free_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x123d733f snd_soc_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1418fbfe snd_soc_dapm_put_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x18bb2c30 snd_soc_dpcm_be_get_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1eee2654 snd_soc_dapm_nc_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f8ad94b snd_soc_dai_set_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x1f8d45c8 snd_soc_put_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x206d3748 snd_soc_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x230c07d5 snd_soc_new_ac97_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2380849a snd_soc_of_parse_audio_prefix +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2541a979 snd_soc_calc_frame_size +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x263b1a18 snd_soc_dapm_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2a7ffc81 snd_soc_debugfs_root +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x2d213872 snd_soc_dapm_mux_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x30f87082 snd_soc_put_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x31f8d688 snd_soc_get_pcm_runtime +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x328c3cef snd_soc_dai_set_channel_map +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x38b9f0a0 snd_soc_platform_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3aec67ba soc_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3bc0183e snd_soc_info_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3dffafab snd_soc_dai_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f1da2fa snd_soc_set_ac97_ops_of_reset +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x3f49f9be snd_soc_card_jack_new +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x420163c9 snd_soc_jack_add_gpios +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x441446b5 snd_soc_dapm_new_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x444461c2 snd_soc_get_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x44b8e300 snd_soc_add_component_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x455a4e76 snd_soc_dapm_nc_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49042a77 snd_soc_of_parse_card_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x49ff7556 snd_soc_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4ade8a70 snd_soc_codec_set_sysclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4b77e328 snd_soc_dpcm_be_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bd41753 devm_snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bf032ae snd_soc_resume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4bfa27ea snd_soc_limit_volume +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4cd7238f snd_soc_jack_add_gpiods +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x4d78e525 dapm_mark_endpoints_dirty +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x53459d3f snd_soc_put_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x54f9998f dapm_kcontrol_get_value +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x56324993 snd_soc_get_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x59ef6ee9 snd_soc_poweroff +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5b935075 snd_soc_dapm_get_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5ce09b5b snd_soc_dai_set_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x5f4c86b8 devm_snd_soc_register_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x62fde5dd snd_soc_unregister_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x63cbbf29 devm_snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x643affa6 snd_soc_unregister_card +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6bda810e snd_soc_dapm_del_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6c231577 snd_soc_dapm_weak_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6d72a5ec snd_soc_dapm_kcontrol_widget +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x6eb13921 snd_soc_add_dai_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x706e1b4a snd_soc_add_card_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x73d26e6d snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x754d9efd snd_dmaengine_pcm_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7630752c snd_soc_dapm_get_pin_status +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x79223e86 snd_soc_jack_report +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e3cc728 dpcm_be_dai_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x7e606130 snd_soc_calc_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8008ee0a snd_soc_of_parse_daifmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8022af41 snd_soc_dapm_add_routes +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x83cdcb98 snd_soc_dai_set_bclk_ratio +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x844ecbf2 snd_soc_info_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x870bf9ce snd_soc_add_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x874e7ac9 snd_soc_dapm_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8db0887d snd_soc_register_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x8e665ff3 snd_soc_dpcm_can_be_params +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x91cc2cbe snd_soc_info_xr_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9499b4c1 snd_soc_dapm_force_bias_level +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x94e4cf3d snd_soc_dapm_mixer_update_power +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95087fcd snd_soc_dapm_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9543c28c snd_soc_component_async_complete +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95852ae6 snd_soc_dapm_ignore_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x95db4bc4 snd_soc_of_get_dai_link_codecs +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96c66fa2 snd_soc_register_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x96d44ab8 snd_soc_bytes_get +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0x9a13824b snd_soc_jack_add_pins +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa52452c8 snd_soc_runtime_set_dai_fmt +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xa9395620 snd_soc_dpcm_get_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xab5ff26c snd_soc_set_runtime_hwparams +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac015474 snd_soc_dai_set_tristate +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xac0fd56a snd_soc_dapm_disable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xacfbfff2 snd_soc_add_codec_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xaf447c52 snd_soc_dapm_sync +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb06082dc snd_soc_dpcm_can_be_free_stop +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb1e0bb61 snd_soc_unregister_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb2debb60 snd_soc_card_get_kcontrol +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb328911e snd_soc_bytes_tlv_callback +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb3ee85c3 snd_soc_bytes_info +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb54aa452 snd_soc_suspend +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xb56c5d46 snd_soc_of_get_dai_name +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xba4703f5 snd_soc_jack_notifier_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb20c687 snd_soc_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbb889b52 snd_soc_remove_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbe57122b snd_soc_put_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbea94500 dapm_regulator_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xbf132147 snd_soc_put_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc0d3d0c8 snd_soc_of_parse_audio_simple_widgets +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1778c98 snd_dmaengine_pcm_prepare_slave_config +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc1ce7132 dapm_clock_event +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc29c86c5 snd_soc_get_dai_substream +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc2e5658a snd_soc_get_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc32e59b2 snd_soc_bytes_put +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xc574674f 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 0xcb6121c3 snd_soc_bytes_info_ext +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcc54cea3 snd_soc_jack_notifier_register +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xce522ce0 snd_dmaengine_pcm_unregister +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xcf3b8f54 devm_snd_soc_register_component +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd047402f snd_soc_component_write +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd09a46ce snd_soc_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0bfdd7d snd_soc_dai_digital_mute +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0d5f60d snd_soc_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd0d6ff21 snd_soc_dpcm_be_set_state +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd13a9654 snd_soc_info_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd24092a3 snd_soc_component_test_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd2571bcf snd_soc_pm_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd5286302 snd_soc_dapm_force_enable_pin_unlocked +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd903685c snd_soc_dapm_disable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xd9c91fe8 snd_soc_info_volsw_sx +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdcd46506 snd_soc_component_update_bits +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde103b94 snd_soc_platform_trigger +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde6737e3 snd_soc_dapm_force_enable_pin +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xde937205 snd_soc_set_ac97_ops +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xdf43a906 snd_soc_dapm_get_volsw +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe117d90c snd_soc_lookup_platform +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe362fecf snd_soc_dapm_info_pin_switch +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe61c44a2 snd_soc_dai_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe83a4c1a snd_soc_add_platform_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe8f7102b snd_soc_jack_get_type +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xe9a943fa snd_soc_component_init_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeaf2e17a snd_soc_jack_add_zones +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeb711ae7 snd_soc_params_to_bclk +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xec00dc50 snd_soc_of_parse_tdm_slot +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee2eecb8 snd_soc_dapm_new_controls +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xee90b1cc snd_soc_dai_set_clkdiv +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xeef9a74f snd_soc_dpcm_fe_can_update +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef2daece snd_soc_dapm_put_enum_double +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xef9de895 snd_soc_get_strobe +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf1fddf29 snd_soc_cnew +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf456d5f3 snd_soc_codec_set_pll +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf526c8ab snd_soc_platform_read +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf7f11a3c snd_soc_component_exit_regmap +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xf98c376a snd_soc_unregister_codec +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfc8f167a snd_soc_of_parse_audio_routing +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd05170a snd_soc_get_volsw_range +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfd67817d snd_soc_dapm_free +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe415909 snd_soc_dapm_kcontrol_dapm +EXPORT_SYMBOL_GPL sound/soc/snd-soc-core 0xfe46046d snd_soc_register_card +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x0fe05f02 line6_version_request_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1575e847 line6_send_raw_message_async +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x1eb8946b 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 0x30003676 line6_init_midi +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3186bc98 line6_pcm_acquire +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x3c173392 line6_resume +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x7ef1f7f8 line6_read_serial_number +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8c44989f line6_send_sysex_message +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8ec973cd line6_start_timer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x8fec19bd line6_init_pcm +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0x9dbffa2b line6_read_data +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xb8806a29 line6_suspend +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xc0ffe4b5 line6_disconnect +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xcdb6f6ad line6_probe +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xdc58ca5a line6_alloc_sysex_buffer +EXPORT_SYMBOL_GPL sound/usb/line6/snd-usb-line6 0xfc8741ee line6_write_data +EXPORT_SYMBOL_GPL vmlinux 0x000649c2 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x004f6c41 regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x0051a8ea tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x0090b1f2 crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x009304b6 ata_tf_from_fis +EXPORT_SYMBOL_GPL vmlinux 0x009672ef of_platform_populate +EXPORT_SYMBOL_GPL vmlinux 0x00970927 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x009f4fa8 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0x00ae9748 ata_slave_link_init +EXPORT_SYMBOL_GPL vmlinux 0x00b29b1a virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x00c0cc7e nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x00c798b8 securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x00d62abf rtc_read_alarm +EXPORT_SYMBOL_GPL vmlinux 0x00d97d65 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x00e157b4 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x00ebcb5d ata_id_string +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x010c699a unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x011cf028 regulator_suspend_finish +EXPORT_SYMBOL_GPL vmlinux 0x0126bd60 fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0x01304473 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x013cf8cf serial8250_do_startup +EXPORT_SYMBOL_GPL vmlinux 0x018b3aed blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x018d4101 wm5110_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x01aad0a4 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x01b9235d rio_mport_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x01c0931d led_trigger_blink +EXPORT_SYMBOL_GPL vmlinux 0x01def903 regulator_enable_regmap +EXPORT_SYMBOL_GPL vmlinux 0x01e1a8de kgdb_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x02078d0a usb_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x020971df sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x021ebfda btree_update +EXPORT_SYMBOL_GPL vmlinux 0x0258d231 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0x026211e2 memory_failure_queue +EXPORT_SYMBOL_GPL vmlinux 0x0274b8ea nd_blk_region_to_dimm +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 0x03140bd3 of_property_read_u32_array +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 0x0368f1eb irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0x037da8c0 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0x0380978e sdio_f0_writeb +EXPORT_SYMBOL_GPL vmlinux 0x039fd867 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x03c229d3 posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0x03cf30c2 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x03d3fbbe iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x03ddd340 rtc_irq_unregister +EXPORT_SYMBOL_GPL vmlinux 0x03e3624a adp5520_read +EXPORT_SYMBOL_GPL vmlinux 0x03e3686c ata_timing_cycle2mode +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04358444 ata_sas_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x043b935f __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x044a8a00 __online_page_set_limits +EXPORT_SYMBOL_GPL vmlinux 0x04622fb0 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x0465a073 regmap_reg_in_ranges +EXPORT_SYMBOL_GPL vmlinux 0x046d3f5a arizona_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x048b5f8d twl4030_audio_get_mclk +EXPORT_SYMBOL_GPL vmlinux 0x04901a3d regulator_count_voltages +EXPORT_SYMBOL_GPL vmlinux 0x04a79848 zs_create_pool +EXPORT_SYMBOL_GPL vmlinux 0x04b9844a scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x04c4f603 mpi_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x04c7645a cpu_add_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x04d33a5f regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x04df8fbc lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x050c4156 thermal_zone_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x053494cb tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x0536daba netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x05612c91 bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0x057276c3 __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x058b582a vt_get_leds +EXPORT_SYMBOL_GPL vmlinux 0x05c65e21 __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x05db6160 extcon_set_cable_state +EXPORT_SYMBOL_GPL vmlinux 0x05e217f7 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0x05f99c3e __regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x06131844 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x061affca agp_remove_bridge +EXPORT_SYMBOL_GPL vmlinux 0x061dee59 btree_remove +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x06252f42 regulator_bulk_disable +EXPORT_SYMBOL_GPL vmlinux 0x0626da5f od_unregister_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0657ddc6 xhci_dbg_trace +EXPORT_SYMBOL_GPL vmlinux 0x06666ab4 regulator_map_voltage_iterate +EXPORT_SYMBOL_GPL vmlinux 0x0666bf07 disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x067825c3 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x0679aa6a __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x06807551 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x0684a67e hwmon_device_register +EXPORT_SYMBOL_GPL vmlinux 0x068e58d2 sdio_enable_func +EXPORT_SYMBOL_GPL vmlinux 0x06a57a57 wm8350_block_write +EXPORT_SYMBOL_GPL vmlinux 0x06f1d8b7 ohci_hub_status_data +EXPORT_SYMBOL_GPL vmlinux 0x074d703f tps6586x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x075c964d get_net_ns_by_pid +EXPORT_SYMBOL_GPL vmlinux 0x0762403c edac_put_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0x07757cb7 __devm_regmap_init +EXPORT_SYMBOL_GPL vmlinux 0x077eedf8 __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x07a331ca blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x07b21f85 kdb_get_kbd_char +EXPORT_SYMBOL_GPL vmlinux 0x07b3c256 regmap_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07c60b6a rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x07cc0d7d gen_pool_size +EXPORT_SYMBOL_GPL vmlinux 0x07cdc7e1 ata_std_qc_defer +EXPORT_SYMBOL_GPL vmlinux 0x07d0b56e devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x07e27927 ata_scsi_slave_destroy +EXPORT_SYMBOL_GPL vmlinux 0x0813163b arizona_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0842aa74 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x0856bf6e blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x08656237 regmap_field_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x087d67a3 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x08851928 nd_cmd_out_size +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x089c9aa4 pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x08a8ad30 spi_sync_locked +EXPORT_SYMBOL_GPL vmlinux 0x08b424d4 bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08bc7e2d devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0x08d91c22 mm_iommu_put +EXPORT_SYMBOL_GPL vmlinux 0x08f5f4a0 spi_async_locked +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 0x0991996d aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x09ad374b gpiod_get_index_optional +EXPORT_SYMBOL_GPL vmlinux 0x09ad6352 xhci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x09d128b2 devm_devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x09daecf7 iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x09dc54e5 ata_msleep +EXPORT_SYMBOL_GPL vmlinux 0x09f384b7 regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x0a0ec091 rio_mport_get_efb +EXPORT_SYMBOL_GPL vmlinux 0x0a51ae5b virq_to_hw +EXPORT_SYMBOL_GPL vmlinux 0x0a534ce7 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x0a821d98 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0a8280d1 __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x0a86efd4 spi_busnum_to_master +EXPORT_SYMBOL_GPL vmlinux 0x0a89bdbf usb_enable_intel_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x0a958281 of_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x0ace49da thermal_of_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0x0ad179e7 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x0ae6876e pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x0ae71bae iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0x0ae8f942 register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0e6c3b debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x0b1ef455 regulator_get_linear_step +EXPORT_SYMBOL_GPL vmlinux 0x0b65d2d7 mmc_app_cmd +EXPORT_SYMBOL_GPL vmlinux 0x0bae2556 syscon_regmap_lookup_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x0bbfde69 inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x0bcc17ba perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0x0bd8bb6c do_take_over_console +EXPORT_SYMBOL_GPL vmlinux 0x0bddfc3c usb_match_one_id +EXPORT_SYMBOL_GPL vmlinux 0x0be0bfd7 regmap_attach_dev +EXPORT_SYMBOL_GPL vmlinux 0x0be8bf74 power_supply_set_property +EXPORT_SYMBOL_GPL vmlinux 0x0bfa3a19 rcu_idle_exit +EXPORT_SYMBOL_GPL vmlinux 0x0bfdd4e6 crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x0bfe8235 regulator_put +EXPORT_SYMBOL_GPL vmlinux 0x0c0c015e ring_buffer_swap_cpu +EXPORT_SYMBOL_GPL vmlinux 0x0c11a3f6 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0x0c254dbf spi_async +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c4addb8 serial8250_do_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x0c61d019 __regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0x0c7ecbbf serial8250_modem_status +EXPORT_SYMBOL_GPL vmlinux 0x0c9061e4 __rio_local_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0x0c9d005c wm831x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x0caf75d9 opal_flash_erase +EXPORT_SYMBOL_GPL vmlinux 0x0cb1eb6d vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0x0cb90458 regmap_field_read +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0ce0115d locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0x0ce3ee5a mmu_kernel_ssize +EXPORT_SYMBOL_GPL vmlinux 0x0ceb5a84 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x0d0025db pci_disable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x0d25bea7 vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +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 0x0dcd890a led_stop_software_blink +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0de06988 cpu_first_thread_of_core +EXPORT_SYMBOL_GPL vmlinux 0x0e0ff49f srp_release_transport +EXPORT_SYMBOL_GPL vmlinux 0x0e28df7c pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x0e420b08 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0x0e5be6ad copro_handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x0e61ecaa srp_remove_host +EXPORT_SYMBOL_GPL vmlinux 0x0e6efe2b to_nvdimm +EXPORT_SYMBOL_GPL vmlinux 0x0e7a5c77 debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x0e7db9e2 of_get_dma_window +EXPORT_SYMBOL_GPL vmlinux 0x0e8afa7f virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x0e906225 tc3589x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x0ea3419d __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x0ea3d181 gpiod_direction_output +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0ecf823a static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x0f012044 __tracepoint_detach_device_from_domain +EXPORT_SYMBOL_GPL vmlinux 0x0f1646c0 reset_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x0f1d7a87 dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x0f2091eb stmpe_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x0f312e86 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f4967d7 regulator_list_hardware_vsel +EXPORT_SYMBOL_GPL vmlinux 0x0f49fc49 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x0f57a256 unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0x0f751aea input_event_from_user +EXPORT_SYMBOL_GPL vmlinux 0x0fc741ea user_describe +EXPORT_SYMBOL_GPL vmlinux 0x0ff89b93 pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x1017245d ata_sas_slave_configure +EXPORT_SYMBOL_GPL vmlinux 0x102013bd crypto_unregister_instance +EXPORT_SYMBOL_GPL vmlinux 0x102f567f ata_sff_hsm_move +EXPORT_SYMBOL_GPL vmlinux 0x10343baf pwm_set_polarity +EXPORT_SYMBOL_GPL vmlinux 0x105175de usb_hcd_giveback_urb +EXPORT_SYMBOL_GPL vmlinux 0x107e6901 fb_deferred_io_init +EXPORT_SYMBOL_GPL vmlinux 0x108f23c0 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0x10da54d2 devm_extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0x10ecc52c usb_amd_quirk_pll_enable +EXPORT_SYMBOL_GPL vmlinux 0x1114011d threads_shift +EXPORT_SYMBOL_GPL vmlinux 0x111a01d5 cpufreq_frequency_table_target +EXPORT_SYMBOL_GPL vmlinux 0x112579e1 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0x112be017 spi_bus_lock +EXPORT_SYMBOL_GPL vmlinux 0x113066db pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x11385db2 ata_pci_device_do_suspend +EXPORT_SYMBOL_GPL vmlinux 0x114fb8e3 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x1171f206 alarmtimer_get_rtcdev +EXPORT_SYMBOL_GPL vmlinux 0x1172ce54 rtc_ktime_to_tm +EXPORT_SYMBOL_GPL vmlinux 0x1174f16f pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x117c7305 hwpoison_filter_dev_major +EXPORT_SYMBOL_GPL vmlinux 0x117f3582 devfreq_event_reset_event +EXPORT_SYMBOL_GPL vmlinux 0x11be6626 regcache_sync +EXPORT_SYMBOL_GPL vmlinux 0x11d7ea7b component_del +EXPORT_SYMBOL_GPL vmlinux 0x12134788 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x121595f2 platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1220ec7e cpufreq_governor_dbs +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x125df5fe usb_alloc_streams +EXPORT_SYMBOL_GPL vmlinux 0x12618f89 __percpu_ida_init +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12b7f5eb usb_string +EXPORT_SYMBOL_GPL vmlinux 0x12ba62b4 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x12fdceea devfreq_event_remove_edev +EXPORT_SYMBOL_GPL vmlinux 0x13041298 of_prop_next_u32 +EXPORT_SYMBOL_GPL vmlinux 0x13055811 simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x1318d2c7 wm8350_read_auxadc +EXPORT_SYMBOL_GPL vmlinux 0x131a5ed7 regmap_del_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132ffc06 rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0x133886ab bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x134319b0 dma_buf_vunmap +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 0x13756a41 scom_controller +EXPORT_SYMBOL_GPL vmlinux 0x1389da84 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x139aef2d devfreq_event_get_edev_count +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13cab883 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x13cbbe3f crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x13ce87e8 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0x13db4d6e dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x13e5ea13 __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x14448d5d __dma_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x1450fe14 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x145256a9 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x145dd195 fwnode_get_named_gpiod +EXPORT_SYMBOL_GPL vmlinux 0x1465c513 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x147e1f0b irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0x147f6da3 of_pci_msi_chip_remove +EXPORT_SYMBOL_GPL vmlinux 0x14809a06 of_pci_find_msi_chip_by_node +EXPORT_SYMBOL_GPL vmlinux 0x14c6121f driver_register +EXPORT_SYMBOL_GPL vmlinux 0x14e3d1ea kick_process +EXPORT_SYMBOL_GPL vmlinux 0x14eefd51 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x14f5d8b0 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x14f8c74f usb_get_from_anchor +EXPORT_SYMBOL_GPL vmlinux 0x152787c4 cpuidle_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x153d0fe1 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x153d6f16 mbox_client_txdone +EXPORT_SYMBOL_GPL vmlinux 0x15782407 regmap_write_bits +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x15958e42 syscon_node_to_regmap +EXPORT_SYMBOL_GPL vmlinux 0x159cc072 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x15a14ad2 proc_get_parent_data +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 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x16093b24 __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x160d320d __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x163550af crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x164bcad5 powercap_unregister_zone +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165736a7 power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0x166d5671 skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x169808f4 kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x16ca5089 devfreq_event_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x16d6b646 devm_regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x16dab584 gpiod_set_raw_array_value +EXPORT_SYMBOL_GPL vmlinux 0x16dbb902 serial8250_rpm_put +EXPORT_SYMBOL_GPL vmlinux 0x16e51cd8 ohci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x16edbf19 pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x16fd5f34 pci_enable_pasid +EXPORT_SYMBOL_GPL vmlinux 0x1725ea17 vfio_external_group_match_file +EXPORT_SYMBOL_GPL vmlinux 0x1734d6d3 __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x17383238 __mmu_notifier_invalidate_range_start +EXPORT_SYMBOL_GPL vmlinux 0x173904fb transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x175d077e usb_store_new_id +EXPORT_SYMBOL_GPL vmlinux 0x177c338d twl_get_version +EXPORT_SYMBOL_GPL vmlinux 0x17973f46 ata_sff_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17b0f08a usb_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x17ef5236 dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x18015993 regulator_list_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0x1829b9ed hwpoison_filter_memcg +EXPORT_SYMBOL_GPL vmlinux 0x182c2a65 ata_dev_next +EXPORT_SYMBOL_GPL vmlinux 0x182d4602 sdio_readw +EXPORT_SYMBOL_GPL vmlinux 0x183008d7 do_unregister_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x184edc7b rtc_alarm_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0x1853653c btree_alloc +EXPORT_SYMBOL_GPL vmlinux 0x1858369d tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x185e2920 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x186661ba devm_mdiobus_free +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 0x187a80f5 rio_release_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1882aef9 cpufreq_freq_transition_end +EXPORT_SYMBOL_GPL vmlinux 0x18872b6f inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x189bd422 input_ff_erase +EXPORT_SYMBOL_GPL vmlinux 0x189f874d powernv_get_random_long +EXPORT_SYMBOL_GPL vmlinux 0x18be3f34 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0x18d5c7db __giveup_vsx +EXPORT_SYMBOL_GPL vmlinux 0x18eb5da7 pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x19119803 __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x194e1e06 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0x19974b2c iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x19a304ba usb_disabled +EXPORT_SYMBOL_GPL vmlinux 0x19b7e0f8 msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0x19c1ea1e perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x19c54a69 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x19d125c4 sata_link_scr_lpm +EXPORT_SYMBOL_GPL vmlinux 0x19d2090d device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x19e135c2 lp8788_write_byte +EXPORT_SYMBOL_GPL vmlinux 0x19e69bd2 regulator_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1a0884e6 thermal_zone_get_temp +EXPORT_SYMBOL_GPL vmlinux 0x1a267db3 crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1a2fa2c0 serial8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x1a4645ef rtc_set_time +EXPORT_SYMBOL_GPL vmlinux 0x1a4d33d6 power_supply_am_i_supplied +EXPORT_SYMBOL_GPL vmlinux 0x1a6a925a devm_of_phy_get_by_index +EXPORT_SYMBOL_GPL vmlinux 0x1a8c5907 btree_insert +EXPORT_SYMBOL_GPL vmlinux 0x1a967885 cpufreq_frequency_get_table +EXPORT_SYMBOL_GPL vmlinux 0x1aa65434 reservation_object_get_fences_rcu +EXPORT_SYMBOL_GPL vmlinux 0x1aa8d6da __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x1ab4576b rdev_get_id +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ae07dce max8997_read_reg +EXPORT_SYMBOL_GPL vmlinux 0x1aecaccc dma_buf_vmap +EXPORT_SYMBOL_GPL vmlinux 0x1af05fc3 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x1b317551 napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x1b43f665 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x1b9664d1 __destroy_context +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1baa3ba6 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x1baca51e led_trigger_set_default +EXPORT_SYMBOL_GPL vmlinux 0x1bb0a6a0 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0x1bcaddb1 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x1bcf60f3 trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0x1c098b59 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x1c1215bd threads_core_mask +EXPORT_SYMBOL_GPL vmlinux 0x1c2ad10a srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x1c38912d crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x1c4f4f11 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x1c5541bd cpufreq_boost_enabled +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c5c8d0a da9052_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0x1c70086a crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0x1c71b5f0 gpiod_get_optional +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 0x1c9058c4 pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0x1c926e06 rio_release_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x1ca71b4a crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x1cb21b2d ata_noop_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x1cbb978f of_irq_parse_and_map_pci +EXPORT_SYMBOL_GPL vmlinux 0x1cc8c4c4 pstore_register +EXPORT_SYMBOL_GPL vmlinux 0x1cd36641 usb_free_streams +EXPORT_SYMBOL_GPL vmlinux 0x1cd7bdab __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x1cdb2147 zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x1ce38eed powercap_register_control_type +EXPORT_SYMBOL_GPL vmlinux 0x1cf82066 tcp_orphan_count +EXPORT_SYMBOL_GPL vmlinux 0x1cfc7054 thermal_zone_device_register +EXPORT_SYMBOL_GPL vmlinux 0x1d0fe33a eeh_dev_check_failure +EXPORT_SYMBOL_GPL vmlinux 0x1d20af1a ata_wait_register +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d2f4a8f i2c_adapter_type +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 0x1d89bc56 rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x1d94b208 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x1d9d0b8c sata_link_debounce +EXPORT_SYMBOL_GPL vmlinux 0x1da30ff7 ata_std_sched_eh +EXPORT_SYMBOL_GPL vmlinux 0x1dbd1cf7 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x1df21d68 regmap_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x1df22208 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x1df5e374 dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0x1dfe9fcd show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x1e000879 hwpoison_filter_enable +EXPORT_SYMBOL_GPL vmlinux 0x1e1ca05c inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x1e2d5061 of_dma_configure +EXPORT_SYMBOL_GPL vmlinux 0x1e3e6cc2 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0x1e42cd08 posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x1e463cfe regmap_get_val_endian +EXPORT_SYMBOL_GPL vmlinux 0x1e4c2f99 md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0x1e55d831 mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +EXPORT_SYMBOL_GPL vmlinux 0x1e89e1f7 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0x1e8de348 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x1e8fac8e wireless_nlevent_flush +EXPORT_SYMBOL_GPL vmlinux 0x1e969fbf dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0x1eb9516e round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x1ebac2bd getboottime64 +EXPORT_SYMBOL_GPL vmlinux 0x1ebb1f9d kobject_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x1ebf6c2a pci_power_names +EXPORT_SYMBOL_GPL vmlinux 0x1ec4e3c3 early_find_capability +EXPORT_SYMBOL_GPL vmlinux 0x1ecc368a cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x1edc21cb hwpoison_filter_flags_mask +EXPORT_SYMBOL_GPL vmlinux 0x1efa501c virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0x1f17778c sdio_writesb +EXPORT_SYMBOL_GPL vmlinux 0x1f1988f7 hwpoison_filter_flags_value +EXPORT_SYMBOL_GPL vmlinux 0x1f5509fd pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x1f758338 spi_setup +EXPORT_SYMBOL_GPL vmlinux 0x1f80bbbf platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1fcc0649 stmpe_block_write +EXPORT_SYMBOL_GPL vmlinux 0x2000a20f blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x2004f6bc pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x2025ac89 unregister_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x202a9311 arizona_clk32k_enable +EXPORT_SYMBOL_GPL vmlinux 0x203e8e05 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x20620665 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x20aa6f51 cpuidle_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x20c13f46 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0x20c38f96 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x20d29169 kvmppc_do_h_remove +EXPORT_SYMBOL_GPL vmlinux 0x20e369f1 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x20fc4385 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x2116217e nd_region_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x211850f5 htab_hash_mask +EXPORT_SYMBOL_GPL vmlinux 0x211d9041 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0x2131cd19 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0x213abbe6 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x215e708e pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0x216b6fea fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x2179d9a1 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x219ee108 xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x21a28002 rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0x21aa5cdb ata_scsi_unlock_native_capacity +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21cb51ba fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21cda9f8 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0x2214479f __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x2224c3fb mbox_request_channel +EXPORT_SYMBOL_GPL vmlinux 0x2237780b inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x2270fa09 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x228044cb pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x228b0232 subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x2292d97c extcon_register_interest +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x22cad5ef of_get_nand_ecc_step_size +EXPORT_SYMBOL_GPL vmlinux 0x22e66a23 eeh_iommu_group_to_pe +EXPORT_SYMBOL_GPL vmlinux 0x22fe32f4 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0x22ffaaa7 regmap_parse_val +EXPORT_SYMBOL_GPL vmlinux 0x234800b9 of_fdt_unflatten_tree +EXPORT_SYMBOL_GPL vmlinux 0x236247af init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x23766314 devm_rtc_device_register +EXPORT_SYMBOL_GPL vmlinux 0x23864ce7 cpuset_mem_spread_node +EXPORT_SYMBOL_GPL vmlinux 0x239fd215 swiotlb_unmap_page +EXPORT_SYMBOL_GPL vmlinux 0x23af271c usb_add_hcd +EXPORT_SYMBOL_GPL vmlinux 0x23c252ed subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x23d3da8f blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x23df16fe transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23f6b996 regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x24011e14 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0x241a49d0 __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2450b398 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x24765f38 devres_add +EXPORT_SYMBOL_GPL vmlinux 0x247ef831 kdb_unregister +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24d4f9a9 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0x24da4d27 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0x24e83337 irq_domain_add_legacy +EXPORT_SYMBOL_GPL vmlinux 0x24eb7e32 leds_list +EXPORT_SYMBOL_GPL vmlinux 0x24f07465 devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x24f39c39 reset_control_reset +EXPORT_SYMBOL_GPL vmlinux 0x25041f01 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x250e801c usb_debug_root +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x256ace6c splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0x25741eea irq_gc_mask_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x25b6d964 device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x25c31ac5 usb_phy_set_event +EXPORT_SYMBOL_GPL vmlinux 0x25e1a64d cpufreq_freq_transition_begin +EXPORT_SYMBOL_GPL vmlinux 0x25eefe9e virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0x25fb2533 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0x2611a635 usb_autopm_put_interface_async +EXPORT_SYMBOL_GPL vmlinux 0x262f20a8 local_clock +EXPORT_SYMBOL_GPL vmlinux 0x26520970 vm_memory_committed +EXPORT_SYMBOL_GPL vmlinux 0x266b3783 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x266b7638 interval_tree_remove +EXPORT_SYMBOL_GPL vmlinux 0x2674c857 i2c_lock_adapter +EXPORT_SYMBOL_GPL vmlinux 0x2688397e __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x26a27019 devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26ca9a85 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x26dbcef1 i2c_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x26df9b96 bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x26e99692 device_rename +EXPORT_SYMBOL_GPL vmlinux 0x26f6c829 __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x26fc12e6 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0x2710a810 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0x272645f3 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x2752ee93 kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0x27652b03 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2778a21b rio_mport_get_physefb +EXPORT_SYMBOL_GPL vmlinux 0x279c7549 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x27a2d3ef ata_sg_init +EXPORT_SYMBOL_GPL vmlinux 0x27c0c4be eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x27c1e63f usb_amd_find_chipset_info +EXPORT_SYMBOL_GPL vmlinux 0x27e8ace1 usb_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x27f1e899 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x28048138 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0x2805469b ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x28093680 con_debug_enter +EXPORT_SYMBOL_GPL vmlinux 0x280c5c87 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x280d5412 adp5520_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x28209cd4 gpiochip_add +EXPORT_SYMBOL_GPL vmlinux 0x2820ddf3 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0x28254b02 regulator_is_supported_voltage +EXPORT_SYMBOL_GPL vmlinux 0x282cdabc usb_led_activity +EXPORT_SYMBOL_GPL vmlinux 0x28353b88 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x2897c0f4 pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x28de4eba usb_hub_release_port +EXPORT_SYMBOL_GPL vmlinux 0x28fa172f sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0x28ff99a9 opal_prd_msg +EXPORT_SYMBOL_GPL vmlinux 0x2906446e fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x2945f70f copro_flush_all_slbs +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29a90e49 kvm_alloc_hpt +EXPORT_SYMBOL_GPL vmlinux 0x29e10be3 usb_reset_configuration +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a21f906 sdio_writew +EXPORT_SYMBOL_GPL vmlinux 0x2a261b02 xhci_resume +EXPORT_SYMBOL_GPL vmlinux 0x2a2cb3c6 dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x2a2ceba6 fb_bl_default_curve +EXPORT_SYMBOL_GPL vmlinux 0x2a4da1d3 ata_sff_pause +EXPORT_SYMBOL_GPL vmlinux 0x2a4f81f3 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0x2a5306c3 usb_hcd_unlink_urb_from_ep +EXPORT_SYMBOL_GPL vmlinux 0x2a59b504 usb_match_id +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6f9ea2 phy_power_off +EXPORT_SYMBOL_GPL vmlinux 0x2a74f248 pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x2a9e8d33 usb_driver_release_interface +EXPORT_SYMBOL_GPL vmlinux 0x2aabc565 eeh_pe_inject_err +EXPORT_SYMBOL_GPL vmlinux 0x2ae13c2c find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0x2afc83d8 phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2b0a649b pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x2b0f37ab blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x2b116fc8 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0x2b22de09 rtc_read_time +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b4147ed kvmppc_hcall_impl_hv_realmode +EXPORT_SYMBOL_GPL vmlinux 0x2b517db0 dma_buf_put +EXPORT_SYMBOL_GPL vmlinux 0x2b5c303b smp_send_reschedule +EXPORT_SYMBOL_GPL vmlinux 0x2b5df1ec devm_regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2b6a7221 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x2b6b56c0 ehci_setup +EXPORT_SYMBOL_GPL vmlinux 0x2ba6b8ce inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x2bb95031 usb_get_dr_mode +EXPORT_SYMBOL_GPL vmlinux 0x2bc24434 ata_sff_wait_ready +EXPORT_SYMBOL_GPL vmlinux 0x2be624c7 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0x2bf95fce pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x2bfa985e nd_cmd_dimm_desc +EXPORT_SYMBOL_GPL vmlinux 0x2c17ebd8 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x2c208607 power_supply_is_system_supplied +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c48a4ed nd_blk_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x2c55a7b2 wm8350_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x2c593b93 crypto_shash_digest +EXPORT_SYMBOL_GPL vmlinux 0x2c7ca05d regulator_sync_voltage +EXPORT_SYMBOL_GPL vmlinux 0x2c7db649 irq_dispose_mapping +EXPORT_SYMBOL_GPL vmlinux 0x2c8917d5 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x2c97f8a2 of_reconfig_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x2c9ac3bb pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x2c9bbfa4 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0x2ca71390 ata_dummy_port_info +EXPORT_SYMBOL_GPL vmlinux 0x2cd0b218 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0x2cd88f51 kvm_hv_vm_deactivated +EXPORT_SYMBOL_GPL vmlinux 0x2cd9abe9 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x2ce43dcc blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x2ce83ea5 blkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0x2ce98559 kcrypto_wq +EXPORT_SYMBOL_GPL vmlinux 0x2cea32ee unregister_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0x2cee6ca2 of_modalias_node +EXPORT_SYMBOL_GPL vmlinux 0x2d06ed37 rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1bedd6 get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0x2d2157f9 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x2d218a44 ata_scsi_simulate +EXPORT_SYMBOL_GPL vmlinux 0x2d2540f5 clockevents_config_and_register +EXPORT_SYMBOL_GPL vmlinux 0x2d33d950 of_dma_request_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d59c954 edac_handlers +EXPORT_SYMBOL_GPL vmlinux 0x2d5b5b42 devm_pwm_put +EXPORT_SYMBOL_GPL vmlinux 0x2d5b693c pcibios_finish_adding_to_bus +EXPORT_SYMBOL_GPL vmlinux 0x2d81430b crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0x2d9d1599 ata_host_resume +EXPORT_SYMBOL_GPL vmlinux 0x2da7022e lp8788_read_multi_bytes +EXPORT_SYMBOL_GPL vmlinux 0x2dc5a6d1 btree_last +EXPORT_SYMBOL_GPL vmlinux 0x2dc98731 gpiod_set_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x2de818fa inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x2e0a4852 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x2e0d8b3d __sk_detach_filter +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 0x2e376465 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0x2e39b1d5 __devm_regmap_init_spi +EXPORT_SYMBOL_GPL vmlinux 0x2e3eef30 usb_hcd_map_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x2e755949 bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0x2e7f90cd rio_register_mport +EXPORT_SYMBOL_GPL vmlinux 0x2e89a941 gpiod_get_array +EXPORT_SYMBOL_GPL vmlinux 0x2e94e15d pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x2eaed21f trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0x2eb02428 tps80031_ext_power_req_config +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ebe8fde wm831x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x2edb4fe0 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0x2ee7764d of_dma_xlate_by_chan_id +EXPORT_SYMBOL_GPL vmlinux 0x2f0a6ae5 gpiod_count +EXPORT_SYMBOL_GPL vmlinux 0x2f0d9053 usb_otg_state_string +EXPORT_SYMBOL_GPL vmlinux 0x2f15fa3b crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x2f19148a __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x2f3592ce nd_device_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x2f3b9c53 relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f60039c tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f7bf70d inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x2f994873 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0x2f9c66be regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0x2fb43da0 fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x2fd8cba9 freeze_wake +EXPORT_SYMBOL_GPL vmlinux 0x2ffb5ff7 btree_get_prev +EXPORT_SYMBOL_GPL vmlinux 0x30082d5f subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0x301832fb opal_async_get_token_interruptible +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x307be393 fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x30c0c745 nvdimm_volatile_region_create +EXPORT_SYMBOL_GPL vmlinux 0x30c9cbab devm_devfreq_event_add_edev +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30dd6170 mbox_chan_received_data +EXPORT_SYMBOL_GPL vmlinux 0x30e8c913 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0x310045b7 tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0x31055eee sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x31057418 irq_domain_xlate_onecell +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x311efb6f extcon_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x31266931 con_debug_leave +EXPORT_SYMBOL_GPL vmlinux 0x31509bf5 srp_rport_del +EXPORT_SYMBOL_GPL vmlinux 0x31669b8d gpiod_direction_output_raw +EXPORT_SYMBOL_GPL vmlinux 0x317836b6 pm_runtime_autosuspend_expiration +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 0x31d779a6 irq_domain_associate_many +EXPORT_SYMBOL_GPL vmlinux 0x31f39962 pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0x31feb1fd blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x32259ccc pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x3272b5be pci_enable_pri +EXPORT_SYMBOL_GPL vmlinux 0x328443bf __rio_local_write_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +EXPORT_SYMBOL_GPL vmlinux 0x32920ed3 screen_glyph +EXPORT_SYMBOL_GPL vmlinux 0x329341a3 aead_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x32bc0fcf preempt_notifier_dec +EXPORT_SYMBOL_GPL vmlinux 0x32c3cb4e class_compat_register +EXPORT_SYMBOL_GPL vmlinux 0x32d8a5e7 wm8350_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x32e0694c of_pci_msi_chip_add +EXPORT_SYMBOL_GPL vmlinux 0x32f46497 usb_kill_urb +EXPORT_SYMBOL_GPL vmlinux 0x32fbd564 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0x3300e5bf devm_regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x330553ab fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x330a8376 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x330db8e2 blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0x33279f98 ata_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x33398de6 mmu_psize_defs +EXPORT_SYMBOL_GPL vmlinux 0x333afaea __of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x334b97f5 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x3358647c pm_runtime_barrier +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 0x338ab87a tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0x339c788c dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x33a1a0a7 mddev_resume +EXPORT_SYMBOL_GPL vmlinux 0x33ee9bce sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x342238f0 mm_iommu_get +EXPORT_SYMBOL_GPL vmlinux 0x3424abe1 usb_alloc_urb +EXPORT_SYMBOL_GPL vmlinux 0x34766053 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a10b61 devm_usb_get_phy_by_phandle +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 0x34dca529 regulator_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x34eaf053 usb_put_dev +EXPORT_SYMBOL_GPL vmlinux 0x34eec871 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x34f69b2c rio_attach_device +EXPORT_SYMBOL_GPL vmlinux 0x34fa527d cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0x35094b50 preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x351b8d0f nd_mapping_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x352677fa wm8350_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x3535ee10 regulator_get_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0x3546d784 debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x3546f519 elv_register +EXPORT_SYMBOL_GPL vmlinux 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL vmlinux 0x3578b712 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x35791b2b component_add +EXPORT_SYMBOL_GPL vmlinux 0x3585d74b pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x358ff60f twl_get_hfclk_rate +EXPORT_SYMBOL_GPL vmlinux 0x35a2bd9b ata_port_pbar_desc +EXPORT_SYMBOL_GPL vmlinux 0x35a2ccd1 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x35ae25d4 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x35bf2acd nd_fletcher64 +EXPORT_SYMBOL_GPL vmlinux 0x35cc4436 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x35d5e431 thermal_zone_unbind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x36014f8c regulator_set_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x3628fe87 register_wide_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x362fca56 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x364d9956 usb_deregister_dev +EXPORT_SYMBOL_GPL vmlinux 0x36584580 hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x36629275 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x366c1dca dma_buf_get +EXPORT_SYMBOL_GPL vmlinux 0x368f1fea static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x36950816 regmap_reinit_cache +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36a17af9 usb_hcd_link_urb_to_ep +EXPORT_SYMBOL_GPL vmlinux 0x36b8db06 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x36bbba37 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0x36bda7b0 cpuidle_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x36dab97f trace_clock_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x36e1707e of_property_read_string_helper +EXPORT_SYMBOL_GPL vmlinux 0x36fa4a52 tps65217_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x36fdc8cd rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0x370e9fee md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0x37233e44 register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x3728eedf usb_interrupt_msg +EXPORT_SYMBOL_GPL vmlinux 0x37295c7a pwmchip_add_with_polarity +EXPORT_SYMBOL_GPL vmlinux 0x375d653f __nvdimm_bus_register +EXPORT_SYMBOL_GPL vmlinux 0x379625e7 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x37b1ca08 devm_extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x37b6e33b page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x37b77dc2 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x37d78971 ata_pci_bmdma_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x37e689b1 attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0x37ef4a9d __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0x3810d74e regulator_get_mode +EXPORT_SYMBOL_GPL vmlinux 0x3837af69 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x38639300 of_overlay_destroy +EXPORT_SYMBOL_GPL vmlinux 0x38ab32e7 pnv_get_supported_cpuidle_states +EXPORT_SYMBOL_GPL vmlinux 0x38b6b1ac pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x38e9aa76 sata_async_notification +EXPORT_SYMBOL_GPL vmlinux 0x38ea5d1a clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x38f5b7ed xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0x3904944e register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x390f1021 irq_domain_remove +EXPORT_SYMBOL_GPL vmlinux 0x391f2468 uart_console_write +EXPORT_SYMBOL_GPL vmlinux 0x392840d6 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x392fe739 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0x3948261d unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x39597d25 cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x395cf1dc device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0x398fcb0f extcon_unregister_interest +EXPORT_SYMBOL_GPL vmlinux 0x39c239db of_usb_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x39ca07cc maxim_charger_calc_reg_current +EXPORT_SYMBOL_GPL vmlinux 0x39cffee0 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0x39d75f02 input_ff_event +EXPORT_SYMBOL_GPL vmlinux 0x39daa58f ehci_adjust_port_wakeup_flags +EXPORT_SYMBOL_GPL vmlinux 0x39db1b2f __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x39e2a3c1 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a097481 rtnl_put_cacheinfo +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 0x3a3948f7 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x3a4f6a32 ata_sff_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a6b7d03 ata_timing_compute +EXPORT_SYMBOL_GPL vmlinux 0x3a71f4af sdio_claim_irq +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3abf7b6f tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x3ac9d886 rio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x3acdf325 twl4030_audio_enable_resource +EXPORT_SYMBOL_GPL vmlinux 0x3ad0e201 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x3ad2d2aa device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0x3b4261c4 raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x3b58a29c usb_bus_list_lock +EXPORT_SYMBOL_GPL vmlinux 0x3b816f87 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0x3b891cc5 rio_get_comptag +EXPORT_SYMBOL_GPL vmlinux 0x3b8f271b net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x3b908293 find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x3b92b1eb tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0x3ba62e6f blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3be88570 pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x3c008726 devm_usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0x3c12c7d6 serial8250_init_port +EXPORT_SYMBOL_GPL vmlinux 0x3c3b38c4 iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x3c3df94f trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x3c51ea7c opal_leds_get_ind +EXPORT_SYMBOL_GPL vmlinux 0x3c5e65bf sata_lpm_ignore_phy_events +EXPORT_SYMBOL_GPL vmlinux 0x3c614943 usb_find_alt_setting +EXPORT_SYMBOL_GPL vmlinux 0x3c6e59b8 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3c74c3c7 of_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x3c7a8d48 memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x3c922f61 sata_link_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3c9ee538 devm_regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3cc53be8 user_read +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3cd48df8 irq_map_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0x3cdf0c35 rio_request_outb_mbox +EXPORT_SYMBOL_GPL vmlinux 0x3cf69baf slice_get_unmapped_area +EXPORT_SYMBOL_GPL vmlinux 0x3d0c0b95 usb_init_urb +EXPORT_SYMBOL_GPL vmlinux 0x3d105bbb ata_port_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x3d339e96 security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0x3d345e35 ata_sas_async_probe +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d58829b rio_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x3d5c16e3 regulator_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x3d612305 iommu_direction_to_tce_perm +EXPORT_SYMBOL_GPL vmlinux 0x3d669383 spi_get_next_queued_message +EXPORT_SYMBOL_GPL vmlinux 0x3d6c94b4 of_irq_to_resource_table +EXPORT_SYMBOL_GPL vmlinux 0x3d72fbee crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x3d7dbb81 usb_autopm_put_interface_no_suspend +EXPORT_SYMBOL_GPL vmlinux 0x3d996ce5 trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x3da1bc5c spi_add_device +EXPORT_SYMBOL_GPL vmlinux 0x3da67a23 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x3dbe975d ata_bmdma_qc_issue +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 0x3de3a74f securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x3de9cae1 crypto_remove_final +EXPORT_SYMBOL_GPL vmlinux 0x3df97a9b of_property_read_u32_index +EXPORT_SYMBOL_GPL vmlinux 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e0c492c thermal_generate_netlink_event +EXPORT_SYMBOL_GPL vmlinux 0x3e238886 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x3e259239 smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x3e47bb96 regmap_fields_force_write +EXPORT_SYMBOL_GPL vmlinux 0x3e5e1937 rcu_batches_started_sched +EXPORT_SYMBOL_GPL vmlinux 0x3e61df59 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e7080cb mpi_read_from_buffer +EXPORT_SYMBOL_GPL vmlinux 0x3e858177 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x3eb0f1a9 __devm_of_phy_provider_register +EXPORT_SYMBOL_GPL vmlinux 0x3ec0c7d8 unregister_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x3ed7ae85 stmpe_block_read +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f07c32f crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x3f0f0163 reset_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x3f1cb321 alarm_start +EXPORT_SYMBOL_GPL vmlinux 0x3f346bf6 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x3f3bc800 device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x3f4ffcf1 ata_host_init +EXPORT_SYMBOL_GPL vmlinux 0x3f58ccad xhci_run +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 0x3fb48546 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x3fda528e dma_buf_kunmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0x3fe34ae2 raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x3fe35aea irq_bypass_unregister_consumer +EXPORT_SYMBOL_GPL vmlinux 0x3fef7431 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x400dcf02 fsl8250_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x40220411 of_dma_get_range +EXPORT_SYMBOL_GPL vmlinux 0x4035da53 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x403f9529 gpio_request_one +EXPORT_SYMBOL_GPL vmlinux 0x40410aac spi_new_device +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x40471fd6 usb_put_hcd +EXPORT_SYMBOL_GPL vmlinux 0x404aaabb usb_sg_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4052566d blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x405fb3b7 of_reserved_mem_device_release +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x407b4ff7 led_trigger_store +EXPORT_SYMBOL_GPL vmlinux 0x4089c0de user_update +EXPORT_SYMBOL_GPL vmlinux 0x40a9c158 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0x40af0dec ata_xfer_mode2mask +EXPORT_SYMBOL_GPL vmlinux 0x40c6959e device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x40ce404d tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40d647cc __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0x40e34fe0 dma_buf_detach +EXPORT_SYMBOL_GPL vmlinux 0x40f0683e reset_control_put +EXPORT_SYMBOL_GPL vmlinux 0x4124ca4f crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x413c46ad swiotlb_map_page +EXPORT_SYMBOL_GPL vmlinux 0x4153fb61 regulator_list_voltage +EXPORT_SYMBOL_GPL vmlinux 0x416ecbfc blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x418873cc irq_bypass_register_producer +EXPORT_SYMBOL_GPL vmlinux 0x41915f75 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x41944c33 sata_scr_write +EXPORT_SYMBOL_GPL vmlinux 0x41987f13 mpc8xxx_spi_rx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0x41c9111d nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x41d37534 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x41f7b1c8 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0x42224aea debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x425b671c pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x425ccf19 __spin_yield +EXPORT_SYMBOL_GPL vmlinux 0x42633076 ata_port_freeze +EXPORT_SYMBOL_GPL vmlinux 0x42635d55 pm_suspend_global_flags +EXPORT_SYMBOL_GPL vmlinux 0x426b2c92 list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0x426e895a pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x427de547 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x42aff6dc phy_pm_runtime_get +EXPORT_SYMBOL_GPL vmlinux 0x42b5804d wm5110_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0x42b919e6 ata_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0x42cabf37 ata_sas_port_init +EXPORT_SYMBOL_GPL vmlinux 0x42e6b2e9 dma_get_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x431e32f4 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x43205bc5 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x432702e6 mm_iommu_mapped_inc +EXPORT_SYMBOL_GPL vmlinux 0x433373c1 ata_sff_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x433e5432 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x4350ad50 inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x435bea20 tps65217_reg_read +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x438ab229 of_irq_parse_raw +EXPORT_SYMBOL_GPL vmlinux 0x4395a15d bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0x43a53735 __alloc_workqueue_key +EXPORT_SYMBOL_GPL vmlinux 0x43a76873 dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0x43ac5725 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x43d01fc1 fixed_phy_add +EXPORT_SYMBOL_GPL vmlinux 0x43d2330d arizona_dev_exit +EXPORT_SYMBOL_GPL vmlinux 0x43dbb6f4 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x43f56e82 ata_xfer_mode2shift +EXPORT_SYMBOL_GPL vmlinux 0x440190e4 pwmchip_add +EXPORT_SYMBOL_GPL vmlinux 0x4413186a gpiod_get_array_optional +EXPORT_SYMBOL_GPL vmlinux 0x44149946 edac_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4427cddd device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x44361c27 pwmchip_remove +EXPORT_SYMBOL_GPL vmlinux 0x446e3c47 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x447f8006 mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x449dd0f9 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44e667a2 flush_fp_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x44e7d6e1 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x44f32722 wm8350_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0x44fd003e of_pci_parse_bus_range +EXPORT_SYMBOL_GPL vmlinux 0x450662fd usb_phy_gen_create_phy +EXPORT_SYMBOL_GPL vmlinux 0x450fb522 kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0x451b32a8 tps65912_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x452729a7 irq_set_default_host +EXPORT_SYMBOL_GPL vmlinux 0x4528f634 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x45730c05 devres_release +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x457b1b99 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x4583db3d device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x458eaa2f call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x45b22ce2 cxl_update_properties +EXPORT_SYMBOL_GPL vmlinux 0x45be6537 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45d04ee5 rio_get_device +EXPORT_SYMBOL_GPL vmlinux 0x45e321da regulator_disable +EXPORT_SYMBOL_GPL vmlinux 0x45ec946e tcp_done +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460b703b usb_altnum_to_altsetting +EXPORT_SYMBOL_GPL vmlinux 0x46188a1e tps65217_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x46356b6c task_cgroup_path +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4663990c __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0x4680b46f wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x4688c96a usb_scuttle_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x46d6dac8 dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x46d7a3e4 regmap_write_async +EXPORT_SYMBOL_GPL vmlinux 0x46f5421b isa_bridge_pcidev +EXPORT_SYMBOL_GPL vmlinux 0x472012dc pci_reset_pri +EXPORT_SYMBOL_GPL vmlinux 0x47229b5c gpio_request +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47801d7e ping_err +EXPORT_SYMBOL_GPL vmlinux 0x4782203f irq_generic_chip_ops +EXPORT_SYMBOL_GPL vmlinux 0x4786298d of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47954379 crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x47aad3b9 have_governor_per_policy +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47c73d1c of_cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0x47c8baff pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x47ca5df3 devfreq_event_get_event +EXPORT_SYMBOL_GPL vmlinux 0x47daf03d module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x47e1c851 rio_release_dma +EXPORT_SYMBOL_GPL vmlinux 0x4802c387 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x480a16b1 rio_route_clr_table +EXPORT_SYMBOL_GPL vmlinux 0x480a81d1 adp5520_write +EXPORT_SYMBOL_GPL vmlinux 0x483424b9 reservation_object_test_signaled_rcu +EXPORT_SYMBOL_GPL vmlinux 0x483655ea tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x487931fc inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x48797f7d mbox_free_channel +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x4880ed4b regmap_fields_read +EXPORT_SYMBOL_GPL vmlinux 0x48b787e1 dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x48e1d28d ata_bmdma_stop +EXPORT_SYMBOL_GPL vmlinux 0x48e702c6 spi_sync +EXPORT_SYMBOL_GPL vmlinux 0x48ec2bd7 of_scan_bus +EXPORT_SYMBOL_GPL vmlinux 0x48f66ad9 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x492c675a __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x4933bdd0 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x4955490b tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x495c7b1c dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0x4968c986 sdio_f0_readb +EXPORT_SYMBOL_GPL vmlinux 0x497dc424 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49e688bd da9052_free_irq +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4a026413 mm_iommu_mapped_dec +EXPORT_SYMBOL_GPL vmlinux 0x4a07ee52 is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x4a1aea26 regulator_set_voltage_time +EXPORT_SYMBOL_GPL vmlinux 0x4a47e26a wm8350_block_read +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a4d1ea6 transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x4a50edf2 mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0x4a58d4f8 to_of_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x4a5d6aae blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x4a90160e bprintf +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4ad4c5bc arizona_of_get_named_gpio +EXPORT_SYMBOL_GPL vmlinux 0x4b02360a blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x4b0a45e7 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0x4b0a4b99 power_supply_property_is_writeable +EXPORT_SYMBOL_GPL vmlinux 0x4b1d3eff uart_set_options +EXPORT_SYMBOL_GPL vmlinux 0x4b3edaff inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x4b5185a8 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0x4b6c5fb8 device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4b7124cb aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x4b96125d sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0x4bd9602a skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0x4bef9b33 da9052_adc_manual_read +EXPORT_SYMBOL_GPL vmlinux 0x4bf4dd25 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x4bf7e88d invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x4c1dba9f __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x4c1f9105 of_get_regulator_init_data +EXPORT_SYMBOL_GPL vmlinux 0x4c253061 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0x4c4353d8 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4c5a87a2 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4c5adab6 usb_disable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x4c5edf7a gpiod_to_chip +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c645f9e static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x4c7029b9 mpic_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4cab2d48 platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x4cb1e006 bus_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4cbbeb09 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x4cf78094 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x4cf939fe trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d0d2594 regmap_multi_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x4d3f77d3 wm8350_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x4d79dd85 irq_of_parse_and_map +EXPORT_SYMBOL_GPL vmlinux 0x4d91af26 xhci_gen_setup +EXPORT_SYMBOL_GPL vmlinux 0x4dabfe7a ohci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0x4de17ab3 usb_state_string +EXPORT_SYMBOL_GPL vmlinux 0x4df83514 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x4dfeee39 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0x4e02011e devm_usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0x4e0555c3 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x4e0a1021 tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x4e0e5f4f fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e242f5f pstore_cannot_block_path +EXPORT_SYMBOL_GPL vmlinux 0x4e3402a0 usb_alloc_coherent +EXPORT_SYMBOL_GPL vmlinux 0x4e447b83 crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0x4e5f3efa pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4e6f8489 device_reset +EXPORT_SYMBOL_GPL vmlinux 0x4e7da0dc ata_sas_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x4e8901b8 devm_extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x4e8bb21b ata_scsi_port_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x4e95ac3b regmap_can_raw_write +EXPORT_SYMBOL_GPL vmlinux 0x4e9dae93 ata_sff_tf_read +EXPORT_SYMBOL_GPL vmlinux 0x4ea60c5e virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x4eac4824 clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4eac55ed dma_request_slave_channel_reason +EXPORT_SYMBOL_GPL vmlinux 0x4eafcd95 rio_request_mport_dma +EXPORT_SYMBOL_GPL vmlinux 0x4ee1f437 wm831x_auxadc_read_uv +EXPORT_SYMBOL_GPL vmlinux 0x4ee7fd99 nd_blk_region_set_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x4eea2b6e pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x4ef5bcf4 perf_swevent_get_recursion_context +EXPORT_SYMBOL_GPL vmlinux 0x4ef73a3b usb_anchor_urb +EXPORT_SYMBOL_GPL vmlinux 0x4f05925c devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x4f1c1164 led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x4f1c2842 kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x4f1ffd65 usb_disable_xhci_ports +EXPORT_SYMBOL_GPL vmlinux 0x4f30b379 hash_digest_size +EXPORT_SYMBOL_GPL vmlinux 0x4f3d2f05 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x4f6a07fe show_rcu_gp_kthreads +EXPORT_SYMBOL_GPL vmlinux 0x4f7b193b gpio_to_desc +EXPORT_SYMBOL_GPL vmlinux 0x4f866155 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0x4fccd04a split_page +EXPORT_SYMBOL_GPL vmlinux 0x4fdc945d sata_deb_timing_normal +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4ffa9523 led_trigger_blink_oneshot +EXPORT_SYMBOL_GPL vmlinux 0x5038e86f sdio_run_irqs +EXPORT_SYMBOL_GPL vmlinux 0x5039c4ab percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x507596d8 hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x507de8c6 add_memory +EXPORT_SYMBOL_GPL vmlinux 0x50825f41 gpiod_set_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x5086ac3a alg_test +EXPORT_SYMBOL_GPL vmlinux 0x508a4117 sb800_prefetch +EXPORT_SYMBOL_GPL vmlinux 0x5091b823 ring_buffer_read_start +EXPORT_SYMBOL_GPL vmlinux 0x50a383ad __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0x50d419d5 usb_hcd_start_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x50d4ec9a ata_std_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x50e7193a __i2c_first_dynamic_bus_num +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x51067009 rio_dma_prep_slave_sg +EXPORT_SYMBOL_GPL vmlinux 0x510e1c71 mm_iommu_lookup +EXPORT_SYMBOL_GPL vmlinux 0x511a458d wm831x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x512750d0 pwm_set_chip_data +EXPORT_SYMBOL_GPL vmlinux 0x51330117 udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0x51467922 alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x51477125 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x515056eb ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x515f4020 wm8400_block_read +EXPORT_SYMBOL_GPL vmlinux 0x5173d8fe crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x51785941 spi_write_then_read +EXPORT_SYMBOL_GPL vmlinux 0x518d65e1 trace_seq_puts +EXPORT_SYMBOL_GPL vmlinux 0x519d9a13 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0x51a06e98 usb_hub_clear_tt_buffer +EXPORT_SYMBOL_GPL vmlinux 0x51b65a26 rtc_lock +EXPORT_SYMBOL_GPL vmlinux 0x5205e64d disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x5210a5bf hsi_board_list +EXPORT_SYMBOL_GPL vmlinux 0x522a47db fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x522f538b tpm_send +EXPORT_SYMBOL_GPL vmlinux 0x5235439a skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x523aab0b __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x523ce5b7 fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0x526429ba ata_std_bios_param +EXPORT_SYMBOL_GPL vmlinux 0x5272d8bc __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0x5280c8ad blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x52a3c64c devm_regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x52a41251 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x52ad3437 rio_release_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x52af6e18 usb_remove_hcd +EXPORT_SYMBOL_GPL vmlinux 0x52b27121 regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x52bf555d wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x52bf682d sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x52e65c59 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0x52efbd6c gpiod_put +EXPORT_SYMBOL_GPL vmlinux 0x52fbeb17 ata_port_abort +EXPORT_SYMBOL_GPL vmlinux 0x52fea6cd xfrm_audit_state_notfound_simple +EXPORT_SYMBOL_GPL vmlinux 0x53030a57 spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x5312d0f3 nvdimm_bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5318b850 rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x53200f2f ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x5335dd11 atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x533a41d2 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x53440a40 firmware_kobj +EXPORT_SYMBOL_GPL vmlinux 0x5358fc36 ring_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0x53614269 get_cpu_idle_time_us +EXPORT_SYMBOL_GPL vmlinux 0x538fdff1 spi_alloc_master +EXPORT_SYMBOL_GPL vmlinux 0x53a45612 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x53c4ab1f of_overlay_create +EXPORT_SYMBOL_GPL vmlinux 0x53db7b2f pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x53ecb4a7 bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x53ee0227 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x53fea784 of_pci_get_devfn +EXPORT_SYMBOL_GPL vmlinux 0x5418179d regulator_get_init_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x541bf5fa vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0x541e5043 pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x5420aad3 mbox_controller_register +EXPORT_SYMBOL_GPL vmlinux 0x54215db5 visitor64 +EXPORT_SYMBOL_GPL vmlinux 0x5433553d ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0x5455a781 device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x5456317f dev_pm_qos_update_request +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 0x548eba82 cpu_remove_dev_attr +EXPORT_SYMBOL_GPL vmlinux 0x549412e1 usb_root_hub_lost_power +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54b2f19e dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x54d46690 uart_parse_earlycon +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 0x5593724f ehci_suspend +EXPORT_SYMBOL_GPL vmlinux 0x55a35912 rio_register_scan +EXPORT_SYMBOL_GPL vmlinux 0x55a3a577 spi_finalize_current_transfer +EXPORT_SYMBOL_GPL vmlinux 0x55a59826 regulator_set_voltage +EXPORT_SYMBOL_GPL vmlinux 0x55d43687 led_trigger_unregister_simple +EXPORT_SYMBOL_GPL vmlinux 0x55e97123 policy_has_boost_freq +EXPORT_SYMBOL_GPL vmlinux 0x55eecff4 bit_wait_io_timeout +EXPORT_SYMBOL_GPL vmlinux 0x55f51ef3 alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x56087d09 usb_hcd_unmap_urb_for_dma +EXPORT_SYMBOL_GPL vmlinux 0x560aa1db opal_tpo_write +EXPORT_SYMBOL_GPL vmlinux 0x560d797f mmc_regulator_set_ocr +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x56285bba cpuidle_get_driver +EXPORT_SYMBOL_GPL vmlinux 0x562def8a device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0x562dfba4 of_property_count_elems_of_size +EXPORT_SYMBOL_GPL vmlinux 0x56310925 regulator_mode_to_status +EXPORT_SYMBOL_GPL vmlinux 0x56381eed skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x56503b16 gpiod_get_raw_value +EXPORT_SYMBOL_GPL vmlinux 0x56550f31 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0x565b6892 uuid_le_gen +EXPORT_SYMBOL_GPL vmlinux 0x56724f3c get_governor_parent_kobj +EXPORT_SYMBOL_GPL vmlinux 0x568526e4 pci_max_pasids +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56a7ebec init_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56d7e1fc to_nd_blk_region +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x56e985e7 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x570dfe4b class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x571221df debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x5723ffbc tc3589x_block_read +EXPORT_SYMBOL_GPL vmlinux 0x572a90fd tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5737d586 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0x57520576 device_create +EXPORT_SYMBOL_GPL vmlinux 0x575b35b6 percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x575d637e ping_close +EXPORT_SYMBOL_GPL vmlinux 0x57613f8c mbox_client_peek_data +EXPORT_SYMBOL_GPL vmlinux 0x57646f05 wm8400_reset_codec_reg_cache +EXPORT_SYMBOL_GPL vmlinux 0x576a3ca3 cpuidle_unregister +EXPORT_SYMBOL_GPL vmlinux 0x576e49a0 ata_sff_queue_pio_task +EXPORT_SYMBOL_GPL vmlinux 0x576f91da debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x577bf737 wm831x_reg_lock +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x579fdd15 regcache_mark_dirty +EXPORT_SYMBOL_GPL vmlinux 0x57a52158 __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x57abf9ab to_nd_region +EXPORT_SYMBOL_GPL vmlinux 0x57b02547 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x57c39727 kdb_register_flags +EXPORT_SYMBOL_GPL vmlinux 0x57e17f6d tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x57f01c12 kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0x57f328d1 posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x58058f2c blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x58110346 fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x5862250f balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0x586738cb __regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0x5892f832 release_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5897fafc tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x589e4569 syscon_regmap_lookup_by_pdevname +EXPORT_SYMBOL_GPL vmlinux 0x58ad242f irq_create_of_mapping +EXPORT_SYMBOL_GPL vmlinux 0x58c3bb5a blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x58d9c495 dma_buf_unmap_attachment +EXPORT_SYMBOL_GPL vmlinux 0x58e30735 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x58e739f9 public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x58fe9409 rio_inb_pwrite_handler +EXPORT_SYMBOL_GPL vmlinux 0x590b533d inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5913338e aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x591ef44c tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x5955e903 led_sysfs_disable +EXPORT_SYMBOL_GPL vmlinux 0x59685b7f dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x596f76bc led_trigger_set +EXPORT_SYMBOL_GPL vmlinux 0x597bd5a8 pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x599e6cd2 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0x59afd87d tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x59b2adbf input_ff_effect_from_user +EXPORT_SYMBOL_GPL vmlinux 0x59b4882f fs_kobj +EXPORT_SYMBOL_GPL vmlinux 0x59cee309 power_supply_external_power_changed +EXPORT_SYMBOL_GPL vmlinux 0x59dce743 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x59f9dab2 ehci_hub_control +EXPORT_SYMBOL_GPL vmlinux 0x5a024ecd percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5a303a2b of_node_to_nid +EXPORT_SYMBOL_GPL vmlinux 0x5a30682f inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x5a3f02cb inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x5a74a80c wm5110_revd_irq +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5a8abb62 ata_sff_prereset +EXPORT_SYMBOL_GPL vmlinux 0x5a8f1042 wm831x_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x5acfaa63 rtc_class_close +EXPORT_SYMBOL_GPL vmlinux 0x5af41cee generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0x5afa99e8 device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x5b5d32eb __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x5b612c9e da903x_write +EXPORT_SYMBOL_GPL vmlinux 0x5b77e619 of_pci_find_child_device +EXPORT_SYMBOL_GPL vmlinux 0x5b965d6f devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x5ba07c5a bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0x5bae4adb ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0x5bc7b3b5 tps6586x_irq_get_virq +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5bee4705 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x5c193dca usb_gen_phy_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x5c573006 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0x5c5a1b16 tick_broadcast_control +EXPORT_SYMBOL_GPL vmlinux 0x5c6df862 get_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x5c7a762c pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x5c92e72c eeh_pe_reset +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5cd8f5d9 spi_alloc_device +EXPORT_SYMBOL_GPL vmlinux 0x5cf20a81 virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0x5d053b3f balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0x5d09ae8b crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x5d12e48f input_event_to_user +EXPORT_SYMBOL_GPL vmlinux 0x5d202fb5 ata_bmdma_setup +EXPORT_SYMBOL_GPL vmlinux 0x5d2eed18 led_trigger_event +EXPORT_SYMBOL_GPL vmlinux 0x5d327af1 bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x5d76764d blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x5d7a1c3b blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5dbdc760 ata_host_alloc +EXPORT_SYMBOL_GPL vmlinux 0x5dca6f4c ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x5dd12b20 of_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x5de4ad8c tps6586x_reads +EXPORT_SYMBOL_GPL vmlinux 0x5e164c85 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x5e30dca2 crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x5e310f2b rio_local_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x5e4c483f put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x5e51cd74 swiotlb_nr_tbl +EXPORT_SYMBOL_GPL vmlinux 0x5e56ab8e regmap_add_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x5e79a99c device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x5e862237 da9052_request_irq +EXPORT_SYMBOL_GPL vmlinux 0x5ee7542e reserve_pmc_hardware +EXPORT_SYMBOL_GPL vmlinux 0x5f097b56 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x5f1f60a7 adp5520_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f2a42d9 crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x5f3283f7 dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x5f3d242e sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x5f6f3b74 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x5f912de4 regmap_exit +EXPORT_SYMBOL_GPL vmlinux 0x5f9b082d flush_vsx_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x5fca1c9d extcon_get_extcon_dev +EXPORT_SYMBOL_GPL vmlinux 0x5fe51a54 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x5ff74e65 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x5ffa8923 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6001c95d iommu_add_device +EXPORT_SYMBOL_GPL vmlinux 0x60092b30 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0x60411ff9 dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0x60467b06 btree_grim_visitor +EXPORT_SYMBOL_GPL vmlinux 0x604ea330 nd_numa_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x6065d061 usb_driver_set_configuration +EXPORT_SYMBOL_GPL vmlinux 0x60765e06 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x608b8cf5 uhci_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0x60a13e90 rcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x60a32ea9 pm_power_off +EXPORT_SYMBOL_GPL vmlinux 0x60b2bbb8 usb_add_phy +EXPORT_SYMBOL_GPL vmlinux 0x60cb3135 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0x60cca309 __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x60deb6c0 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x60e09568 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x60e9a5f0 wm8997_irq +EXPORT_SYMBOL_GPL vmlinux 0x60eef9a2 rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x61104d3b ata_host_detach +EXPORT_SYMBOL_GPL vmlinux 0x6113c487 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6122e9a9 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0x612dc8ce regmap_read +EXPORT_SYMBOL_GPL vmlinux 0x61506eca ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x6154c1bb of_gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0x6158f9f3 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x616d94f3 __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x617e2c03 ata_sas_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x6185192d pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x618727e4 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0x61a2cabc da9052_adc_read_temp +EXPORT_SYMBOL_GPL vmlinux 0x61a90c54 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0x61b471b6 xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x61cfb299 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x61ebe64d ata_platform_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x62059444 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x6214b16c pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x621f8125 rio_mport_chk_dev_access +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x62339e1f get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x62510129 usb_mon_register +EXPORT_SYMBOL_GPL vmlinux 0x62639457 ata_pci_bmdma_init +EXPORT_SYMBOL_GPL vmlinux 0x628547d1 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0x62a8b6c7 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x62bd5a6d __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0x62bf2801 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x62d4e44f regulator_unregister +EXPORT_SYMBOL_GPL vmlinux 0x62db11bd pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0x62db9d43 rio_mport_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x62e845ae devm_power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0x62ed65b7 debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x6319df3b rio_release_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0x632afc66 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0x63997633 sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x63dcf511 of_irq_parse_pci +EXPORT_SYMBOL_GPL vmlinux 0x63e7e80e tps6586x_writes +EXPORT_SYMBOL_GPL vmlinux 0x63f094e7 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x63f14ebe io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x640da402 led_trigger_show +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x644d54a5 uart_handle_cts_change +EXPORT_SYMBOL_GPL vmlinux 0x645137a4 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x64661c8a eeh_add_device_tree_early +EXPORT_SYMBOL_GPL vmlinux 0x6495278c ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x64989078 sata_std_hardreset +EXPORT_SYMBOL_GPL vmlinux 0x649e1cbe relay_open +EXPORT_SYMBOL_GPL vmlinux 0x64b7c2d9 sata_scr_write_flush +EXPORT_SYMBOL_GPL vmlinux 0x64cb9b48 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x64dbf5db __rio_local_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x64e80dfb freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x64ed0e71 mmu_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x651d9353 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x652f486e of_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x654dc472 regulator_set_current_limit +EXPORT_SYMBOL_GPL vmlinux 0x654e356d sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x658c4eb4 pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x65b5c4e4 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65cf9931 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x65da5dad xfrm_audit_state_icvfail +EXPORT_SYMBOL_GPL vmlinux 0x65e3c096 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0x65eb31b6 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x65fa2a17 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x66050325 of_dma_is_coherent +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6621e8f6 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x66291395 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x66496509 dev_attr_link_power_management_policy +EXPORT_SYMBOL_GPL vmlinux 0x666f1040 irq_domain_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x6678eb57 crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x668402aa crypto_put_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x66af74a6 rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x66afb53b unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x66b16da5 ata_pci_remove_one +EXPORT_SYMBOL_GPL vmlinux 0x66c6b8a7 tcp_ca_get_name_by_key +EXPORT_SYMBOL_GPL vmlinux 0x66d071ab get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66dae42d evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x671ab613 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x67243755 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x6738ccf7 sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x673cc0e4 of_reserved_mem_device_init +EXPORT_SYMBOL_GPL vmlinux 0x6741c025 thermal_zone_device_update +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x678a4105 synchronize_srcu_expedited +EXPORT_SYMBOL_GPL vmlinux 0x678cee6a kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x679a5df7 blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x679bd598 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0x67bae0bd cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0x67beeaf3 __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0x67d226e3 usb_alloc_dev +EXPORT_SYMBOL_GPL vmlinux 0x681b0ef1 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0x6853f66e class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x68620f5c pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x68850e98 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x6895e612 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x68962b7d xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0x68a775b7 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x68db2db8 replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x68e8d4c0 usb_create_hcd +EXPORT_SYMBOL_GPL vmlinux 0x690c9557 led_sysfs_enable +EXPORT_SYMBOL_GPL vmlinux 0x691ae123 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x69256c6d handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x69314c82 cm_notify_event +EXPORT_SYMBOL_GPL vmlinux 0x6938de5b crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x69464646 ata_host_register +EXPORT_SYMBOL_GPL vmlinux 0x6946d33d device_move +EXPORT_SYMBOL_GPL vmlinux 0x6964ba01 gpiod_direction_input +EXPORT_SYMBOL_GPL vmlinux 0x69790ef6 __init_new_context +EXPORT_SYMBOL_GPL vmlinux 0x6979c174 platform_device_add_data +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 0x698ff1c5 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x69af755e trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x69b68186 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x69c8eb0b vfio_spapr_pci_eeh_release +EXPORT_SYMBOL_GPL vmlinux 0x69cdb2b1 regulator_can_change_voltage +EXPORT_SYMBOL_GPL vmlinux 0x69e577e7 filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x69f532ef devm_regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x6a0d0fcf security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a2428ff perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0x6a367b74 cpufreq_freq_attr_scaling_available_freqs +EXPORT_SYMBOL_GPL vmlinux 0x6a37285e perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x6a437ee5 dma_buf_fd +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a5aae0b pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a6cafd2 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x6a781bb9 device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x6a7b39fe unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a7d0019 unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a936feb system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x6a9544cf cpufreq_cooling_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6aa90f43 skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x6ab8617e bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x6ac138fb do_unbind_con_driver +EXPORT_SYMBOL_GPL vmlinux 0x6ac3fae8 usb_sg_wait +EXPORT_SYMBOL_GPL vmlinux 0x6acb8d84 ppc64_caches +EXPORT_SYMBOL_GPL vmlinux 0x6af8b36e device_initialize +EXPORT_SYMBOL_GPL vmlinux 0x6afc5f9e relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0x6b120561 sdio_set_host_pm_flags +EXPORT_SYMBOL_GPL vmlinux 0x6b28b2b0 regulator_map_voltage_ascend +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b2de915 regulator_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0x6b5d826f sdio_release_irq +EXPORT_SYMBOL_GPL vmlinux 0x6b5e74b7 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0x6b6bea8c kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0x6b81c38b power_supply_unreg_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6b841781 i2c_new_device +EXPORT_SYMBOL_GPL vmlinux 0x6b9cf9e7 nd_region_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x6bbcd0f8 ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x6bd3e05d rio_mport_read_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x6bde476e regulator_list_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x6bfa82a2 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x6bfbaf99 fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x6c049e98 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c45da20 __irq_domain_add +EXPORT_SYMBOL_GPL vmlinux 0x6c4b6684 reset_control_assert +EXPORT_SYMBOL_GPL vmlinux 0x6c8009d4 dev_attr_unload_heads +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c9ed9e6 phy_power_on +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6ca927cd wm5110_irq +EXPORT_SYMBOL_GPL vmlinux 0x6cba628a phy_pm_runtime_put_sync +EXPORT_SYMBOL_GPL vmlinux 0x6cc2fb2c opal_message_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6cd21997 ata_tf_to_fis +EXPORT_SYMBOL_GPL vmlinux 0x6ceaa65d crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0x6d2b3f2a sdio_readb +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d4313ac scom_map_device +EXPORT_SYMBOL_GPL vmlinux 0x6d481c69 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0x6d69cc84 __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x6d6d1e35 of_reconfig_get_state_change +EXPORT_SYMBOL_GPL vmlinux 0x6d6d2409 of_dma_router_register +EXPORT_SYMBOL_GPL vmlinux 0x6d74237c __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0x6d7d730e srp_rport_add +EXPORT_SYMBOL_GPL vmlinux 0x6dbaf89a ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6dc53628 blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x6e04a077 usb_bind_phy +EXPORT_SYMBOL_GPL vmlinux 0x6e08da15 ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x6e158aae ata_sff_postreset +EXPORT_SYMBOL_GPL vmlinux 0x6e379526 kernstart_addr +EXPORT_SYMBOL_GPL vmlinux 0x6e68e217 usb_hcd_pci_remove +EXPORT_SYMBOL_GPL vmlinux 0x6e7564b6 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e89a560 regmap_irq_chip_get_base +EXPORT_SYMBOL_GPL vmlinux 0x6e9512b9 arizona_clk32k_disable +EXPORT_SYMBOL_GPL vmlinux 0x6eafcea4 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0x6eb00db5 usb_get_urb +EXPORT_SYMBOL_GPL vmlinux 0x6efec980 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0x6effd2bd sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x6f0a0f47 tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x6f0dffbd led_trigger_rename_static +EXPORT_SYMBOL_GPL vmlinux 0x6f0f481d ip_tunnel_get_stats64 +EXPORT_SYMBOL_GPL vmlinux 0x6f13b020 simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0x6f1ee69e kgdb_unregister_io_module +EXPORT_SYMBOL_GPL vmlinux 0x6f1ff57d power_supply_set_battery_charged +EXPORT_SYMBOL_GPL vmlinux 0x6f394e1d of_console_check +EXPORT_SYMBOL_GPL vmlinux 0x6f4d286b fat_detach +EXPORT_SYMBOL_GPL vmlinux 0x6f78a5cc led_trigger_register_simple +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f912ecb crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x6f973687 power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x6fcacdda uart_insert_char +EXPORT_SYMBOL_GPL vmlinux 0x6fd3a5c3 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6fe44a00 kvmppc_do_h_enter +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x6ff6faad pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x70055a0e pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x70105741 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x703ac9d8 unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x7044a2a7 cpufreq_frequency_table_cpuinfo +EXPORT_SYMBOL_GPL vmlinux 0x70670d0f skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x70742b84 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x707ff1bb ata_xfer_mask2mode +EXPORT_SYMBOL_GPL vmlinux 0x708a0d0c crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x70a789a2 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x70b06a2a gpiod_get_index +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70cf032f usb_hcd_irq +EXPORT_SYMBOL_GPL vmlinux 0x70f8c2ff irq_domain_simple_ops +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x711027ba gpiod_set_value +EXPORT_SYMBOL_GPL vmlinux 0x71114f58 ata_cable_sata +EXPORT_SYMBOL_GPL vmlinux 0x7111da8d tps65912_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0x7121c877 inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7129bfcb __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x714f4347 spi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x715f5217 crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0x715f8e92 ata_std_prereset +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x7167604b ata_sff_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x7177861d stmpe_disable +EXPORT_SYMBOL_GPL vmlinux 0x7178a39d usb_hcd_amd_remote_wakeup_quirk +EXPORT_SYMBOL_GPL vmlinux 0x71ceb46d regmap_update_bits_async +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71ea9bb9 da903x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0x72073d57 crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x720fdb3e uart_handle_dcd_change +EXPORT_SYMBOL_GPL vmlinux 0x7265a25d devm_led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x729cac67 gov_queue_work +EXPORT_SYMBOL_GPL vmlinux 0x72b92943 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x72dbf526 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x73026bab cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x731248fb skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0x7346c9d7 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x7373389c device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0x73a48b4a ata_sff_std_ports +EXPORT_SYMBOL_GPL vmlinux 0x73a6712d pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x73c2554f __iowrite64_copy +EXPORT_SYMBOL_GPL vmlinux 0x73c832f2 ata_dev_classify +EXPORT_SYMBOL_GPL vmlinux 0x73cd241c raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73e033b0 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0x73e7c4cf init_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0x741d86c2 __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x743a165e ata_pack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0x743bc342 adp5520_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x746362b9 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x747f558c fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x748d801a pcap_adc_sync +EXPORT_SYMBOL_GPL vmlinux 0x748e67e4 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74c6ab8b debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x750281bc handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x7504d71c find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0x750d97e0 pwm_free +EXPORT_SYMBOL_GPL vmlinux 0x75133f6e visitor128 +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x752a7f61 usb_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x75300ce7 __rio_local_write_config_16 +EXPORT_SYMBOL_GPL vmlinux 0x75312301 phy_pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0x75329035 inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0x7561c25a eeh_add_sysfs_files +EXPORT_SYMBOL_GPL vmlinux 0x757022dd device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x7570de8f crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x757aad53 crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x757b49d2 kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759065a7 extcon_set_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0x759139cb of_pci_check_probe_only +EXPORT_SYMBOL_GPL vmlinux 0x759e929d tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x75c9d8c3 hrtimer_cancel +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75d3700c rtc_set_alarm +EXPORT_SYMBOL_GPL vmlinux 0x75f2a044 usb_wait_anchor_empty_timeout +EXPORT_SYMBOL_GPL vmlinux 0x760c1f91 eeh_dev_open +EXPORT_SYMBOL_GPL vmlinux 0x761ed6ec hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x7623e8cb regmap_field_write +EXPORT_SYMBOL_GPL vmlinux 0x762c0858 klist_prev +EXPORT_SYMBOL_GPL vmlinux 0x7636f688 pci_iomap_wc +EXPORT_SYMBOL_GPL vmlinux 0x764541b3 da903x_update +EXPORT_SYMBOL_GPL vmlinux 0x765f9a0d shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x76719ae1 of_thermal_is_trip_valid +EXPORT_SYMBOL_GPL vmlinux 0x76745acc crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x769fb99e regulator_is_enabled_regmap +EXPORT_SYMBOL_GPL vmlinux 0x76fc3598 crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x77184c03 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x771d76bf ata_bmdma_irq_clear +EXPORT_SYMBOL_GPL vmlinux 0x77214526 dma_run_dependencies +EXPORT_SYMBOL_GPL vmlinux 0x77253a60 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x77432693 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0x7753cdb5 usb_submit_urb +EXPORT_SYMBOL_GPL vmlinux 0x77549f8f of_css +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x775ad991 usb_hcd_check_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0x77729d4f ata_sas_port_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7785d003 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0x778e5ea8 scom_find_parent +EXPORT_SYMBOL_GPL vmlinux 0x77ae495d usb_speed_string +EXPORT_SYMBOL_GPL vmlinux 0x77b455e3 cpufreq_freq_attr_scaling_boost_freqs +EXPORT_SYMBOL_GPL vmlinux 0x77dca42f fb_deferred_io_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x77f2b8f7 phy_exit +EXPORT_SYMBOL_GPL vmlinux 0x7801efc9 gpiochip_lock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x783b04ea spi_get_device_id +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x78767709 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0x7878abb5 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x787c882b lzo1x_1_compress +EXPORT_SYMBOL_GPL vmlinux 0x78951ba3 usb_phy_generic_register +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78cc5bec hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x78cee142 devm_of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x78ecc511 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x78f19d05 i2c_new_dummy +EXPORT_SYMBOL_GPL vmlinux 0x79189c30 fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x791b84f0 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0x7937dc88 ata_bmdma_port_start32 +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 0x795e4296 iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x7963592e percpu_down_write +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x79757fc5 ehci_handshake +EXPORT_SYMBOL_GPL vmlinux 0x797686f0 usb_hcd_end_port_resume +EXPORT_SYMBOL_GPL vmlinux 0x79943d5b ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x7999b253 find_module +EXPORT_SYMBOL_GPL vmlinux 0x7999bc4e regmap_multi_reg_write_bypassed +EXPORT_SYMBOL_GPL vmlinux 0x79bb477a kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79e387a7 rio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0x79e3a16e devm_phy_put +EXPORT_SYMBOL_GPL vmlinux 0x7a2c2f14 mm_iommu_find +EXPORT_SYMBOL_GPL vmlinux 0x7a2e4b44 ezx_pcap_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x7a687a8b extcon_dev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7a8671f6 shmem_file_setup +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7ac2c883 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0x7ac7c5b0 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x7ada299e tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x7aea8da8 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x7af061a2 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x7b0219ac ata_scsi_queuecmd +EXPORT_SYMBOL_GPL vmlinux 0x7b096397 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b1d544d edac_handler_set +EXPORT_SYMBOL_GPL vmlinux 0x7b45cc62 rio_unmap_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x7b68af4e ata_sff_lost_interrupt +EXPORT_SYMBOL_GPL vmlinux 0x7b6ed9f3 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b99f2ab devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL vmlinux 0x7ba0ee76 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x7bb658aa gpiod_get_raw_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x7bde5900 register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x7be4f268 pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0x7c004e17 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0x7c046116 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x7c1722f6 x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x7c37bc89 pseries_ioei_notifier_list +EXPORT_SYMBOL_GPL vmlinux 0x7c3b8e94 devm_regulator_bulk_unregister_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0x7c44c3cb spi_bus_unlock +EXPORT_SYMBOL_GPL vmlinux 0x7c639fae init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0x7c677080 i2c_probe_func_quick_read +EXPORT_SYMBOL_GPL vmlinux 0x7ca252cf bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x7cd6f042 cpufreq_get_current_driver +EXPORT_SYMBOL_GPL vmlinux 0x7cdb962e md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cedf677 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x7cf28f0c arizona_set_irq_wake +EXPORT_SYMBOL_GPL vmlinux 0x7d00c65b nd_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x7d02b7d1 rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x7d05e6e3 palmas_ext_control_req_config +EXPORT_SYMBOL_GPL vmlinux 0x7d0b6606 pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0x7d100621 dev_coredumpm +EXPORT_SYMBOL_GPL vmlinux 0x7d122093 regmap_check_range_table +EXPORT_SYMBOL_GPL vmlinux 0x7d244184 of_irq_parse_one +EXPORT_SYMBOL_GPL vmlinux 0x7d28fd08 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x7d341ddb component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d635dee sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x7d65054d rio_add_device +EXPORT_SYMBOL_GPL vmlinux 0x7d86f978 inverse_translate +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 0x7dea1c56 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x7e093440 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x7e10b988 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x7e17ba7b klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x7e213cb2 sdio_claim_host +EXPORT_SYMBOL_GPL vmlinux 0x7e541288 regulator_bulk_get +EXPORT_SYMBOL_GPL vmlinux 0x7e59df2c __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x7e64181d usb_calc_bus_time +EXPORT_SYMBOL_GPL vmlinux 0x7e8b1b04 generic_access_phys +EXPORT_SYMBOL_GPL vmlinux 0x7e8db9a0 srp_attach_transport +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7ea1a2bc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0x7ebb2ef8 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0x7ec175af iommu_get_domain_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x7ec36ad7 __i2c_board_lock +EXPORT_SYMBOL_GPL vmlinux 0x7ed91ead regulator_set_voltage_time_sel +EXPORT_SYMBOL_GPL vmlinux 0x7edebeff hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x7ef1a78d dma_wait_for_async_tx +EXPORT_SYMBOL_GPL vmlinux 0x7f008202 btree_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f18fb89 usb_control_msg +EXPORT_SYMBOL_GPL vmlinux 0x7f1999fb led_classdev_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f260744 regmap_get_raw_write_max +EXPORT_SYMBOL_GPL vmlinux 0x7f375613 flush_altivec_to_thread +EXPORT_SYMBOL_GPL vmlinux 0x7f3a6f3f __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x7f674278 regmap_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x7f6bc9b3 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7f6c20fb sata_pmp_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x7f7bc710 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f8a1ea2 regulator_bulk_force_disable +EXPORT_SYMBOL_GPL vmlinux 0x7fb0d6df nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fce2abd ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x7fee0632 rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7ff09703 usb_unlocked_disable_lpm +EXPORT_SYMBOL_GPL vmlinux 0x800ab1f8 usb_set_device_state +EXPORT_SYMBOL_GPL vmlinux 0x8014d11a blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x80152121 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x802ff2f2 usb_block_urb +EXPORT_SYMBOL_GPL vmlinux 0x8045bc37 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0x804ea02d __find_linux_pte_or_hugepte +EXPORT_SYMBOL_GPL vmlinux 0x805213e1 set_primary_fwnode +EXPORT_SYMBOL_GPL vmlinux 0x80653fa4 phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x807670bd trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x807dc9d9 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x8081aa13 regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80c15078 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0x80c68137 nf_log_buf_close +EXPORT_SYMBOL_GPL vmlinux 0x80d5e57a mpi_free +EXPORT_SYMBOL_GPL vmlinux 0x80e61ccc ahash_attr_alg +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 0x813f983c kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x8149ea54 ata_timing_find_mode +EXPORT_SYMBOL_GPL vmlinux 0x8152e111 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x815dd872 ata_common_sdev_attrs +EXPORT_SYMBOL_GPL vmlinux 0x8160edef spi_statistics_add_transfer_stats +EXPORT_SYMBOL_GPL vmlinux 0x8166d68b crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x816fe631 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x817f049e regmap_update_bits_check +EXPORT_SYMBOL_GPL vmlinux 0x817fd2da iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x81955730 pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x81a6de1c usb_enable_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x81b0a66a ata_do_eh +EXPORT_SYMBOL_GPL vmlinux 0x81d14bec device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x81e5fdeb device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x823b5970 regulator_disable_deferred +EXPORT_SYMBOL_GPL vmlinux 0x82471379 rio_request_dma +EXPORT_SYMBOL_GPL vmlinux 0x824f36c9 rio_request_inb_pwrite +EXPORT_SYMBOL_GPL vmlinux 0x8256d0e4 of_pci_get_host_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x825c1d5d regmap_async_complete +EXPORT_SYMBOL_GPL vmlinux 0x826b939c irq_gc_ack_set_bit +EXPORT_SYMBOL_GPL vmlinux 0x8271a55c to_nvdimm_bus +EXPORT_SYMBOL_GPL vmlinux 0x82ae21ec mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0x82b0e964 vfio_spapr_pci_eeh_open +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x83454c0f _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0x83557992 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0x836d61d0 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x837af43c device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x838d5e03 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x839e328e class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x83d60aa3 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x83e3610d pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x840f6314 of_usb_update_otg_caps +EXPORT_SYMBOL_GPL vmlinux 0x841fdbaa platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x84342d31 max8997_bulk_read +EXPORT_SYMBOL_GPL vmlinux 0x84368bed __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x8471fe4f pcibios_scan_phb +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84a09075 regmap_fields_update_bits +EXPORT_SYMBOL_GPL vmlinux 0x84a372fa phy_get +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84b57a22 dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x84c2d0d5 usb_remove_phy +EXPORT_SYMBOL_GPL vmlinux 0x84deb107 power_supply_put +EXPORT_SYMBOL_GPL vmlinux 0x84dfe658 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x850d326c irq_domain_xlate_onetwocell +EXPORT_SYMBOL_GPL vmlinux 0x85216155 ezx_pcap_read +EXPORT_SYMBOL_GPL vmlinux 0x854f00fe usb_find_interface +EXPORT_SYMBOL_GPL vmlinux 0x857b4b97 devm_led_classdev_register +EXPORT_SYMBOL_GPL vmlinux 0x8583bf22 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x85850c3d n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x8586b3ce transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x85ba9751 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85f1a5ae scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0x85ffd617 ata_bmdma_port_intr +EXPORT_SYMBOL_GPL vmlinux 0x86165b28 wm8997_aod +EXPORT_SYMBOL_GPL vmlinux 0x8623940a __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x86355b50 blk_mq_freeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x864b28ff __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x8656fc44 blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x866598cc pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x8666a7c5 fwnode_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x866ebee9 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x8680357f netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +EXPORT_SYMBOL_GPL vmlinux 0x86d9731e scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x86d9c3d4 of_prop_next_string +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 0x8707eba6 cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0x8724a099 ata_sff_qc_issue +EXPORT_SYMBOL_GPL vmlinux 0x87265065 iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x873fbaea edac_atomic_assert_error +EXPORT_SYMBOL_GPL vmlinux 0x874367ec crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x87a63b80 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0x87abb176 ata_do_set_mode +EXPORT_SYMBOL_GPL vmlinux 0x87b6e71a smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x87c80b28 ata_host_alloc_pinfo +EXPORT_SYMBOL_GPL vmlinux 0x87fe1a18 usb_enable_ltm +EXPORT_SYMBOL_GPL vmlinux 0x8804af3d usb_anchor_suspend_wakeups +EXPORT_SYMBOL_GPL vmlinux 0x880a538e fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x883c2740 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x88653d32 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x886bb62e shake_page +EXPORT_SYMBOL_GPL vmlinux 0x887a71fb xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0x888c5be5 irq_bypass_register_consumer +EXPORT_SYMBOL_GPL vmlinux 0x88922b22 bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x88a43b8b pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x88ab17c8 __ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0x88ab6fe3 kgdb_active +EXPORT_SYMBOL_GPL vmlinux 0x88b5647c trace_clock_local +EXPORT_SYMBOL_GPL vmlinux 0x88ce57a9 rio_unlock_device +EXPORT_SYMBOL_GPL vmlinux 0x88daf895 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x88dd5086 md_run +EXPORT_SYMBOL_GPL vmlinux 0x88ea81fa unregister_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x8913162d da903x_set_bits +EXPORT_SYMBOL_GPL vmlinux 0x89156107 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x8964d7b1 wm8997_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0x896bdde6 raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x896edaf0 set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x898686de anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0x8990f95e usb_hcd_pci_pm_ops +EXPORT_SYMBOL_GPL vmlinux 0x89b62fd6 ata_pci_bmdma_init_one +EXPORT_SYMBOL_GPL vmlinux 0x89bbafc6 usb_register_notify +EXPORT_SYMBOL_GPL vmlinux 0x89c72f6c crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0x89cc5f39 iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x89e2be0a ata_pci_bmdma_clear_simplex +EXPORT_SYMBOL_GPL vmlinux 0x89e8fd64 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x89fe8557 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8a0135f1 tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x8a242fc9 sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0x8a2e35b2 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x8a3067ab blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0x8a34a3fd devm_power_supply_get_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0x8a554a36 mpc8xxx_spi_strmode +EXPORT_SYMBOL_GPL vmlinux 0x8a56d915 wm5110_aod +EXPORT_SYMBOL_GPL vmlinux 0x8a8edf1b inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x8aa4cba6 sata_set_spd +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac5c07a stmpe_reg_write +EXPORT_SYMBOL_GPL vmlinux 0x8b03c71a __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0x8b070aa0 regulator_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0x8b1d97fb rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x8b3a6281 regmap_get_raw_read_max +EXPORT_SYMBOL_GPL vmlinux 0x8b3bf416 regulator_bulk_free +EXPORT_SYMBOL_GPL vmlinux 0x8b3cdb4b sysfs_add_device_to_node +EXPORT_SYMBOL_GPL vmlinux 0x8b70e8ea __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8b7b4d47 of_phy_provider_unregister +EXPORT_SYMBOL_GPL vmlinux 0x8b813f2d irq_create_fwspec_mapping +EXPORT_SYMBOL_GPL vmlinux 0x8b8db281 irq_create_strict_mappings +EXPORT_SYMBOL_GPL vmlinux 0x8b990227 da903x_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8bb64f9c __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x8bfd7234 list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c2f27ab ata_sff_data_xfer +EXPORT_SYMBOL_GPL vmlinux 0x8c345df5 gpiochip_line_is_irq +EXPORT_SYMBOL_GPL vmlinux 0x8c3aae52 ata_pci_sff_prepare_host +EXPORT_SYMBOL_GPL vmlinux 0x8c5d39de power_supply_changed +EXPORT_SYMBOL_GPL vmlinux 0x8c5e4a07 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x8c646600 edac_report_status +EXPORT_SYMBOL_GPL vmlinux 0x8c743fb6 reset_control_status +EXPORT_SYMBOL_GPL vmlinux 0x8c7a4798 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x8c7df4b1 power_supply_get_by_name +EXPORT_SYMBOL_GPL vmlinux 0x8c9433ca debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x8c999eb3 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x8cac7f2c disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8cae54b5 freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x8cc0b89b hwpoison_filter +EXPORT_SYMBOL_GPL vmlinux 0x8cd2691b serial8250_set_defaults +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8cdfeb59 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x8ce0cd73 dma_get_any_slave_channel +EXPORT_SYMBOL_GPL vmlinux 0x8cea765f memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0x8cfdcfb6 ata_host_start +EXPORT_SYMBOL_GPL vmlinux 0x8d14d604 usb_put_intf +EXPORT_SYMBOL_GPL vmlinux 0x8d219fb1 gpiod_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x8d2205fb pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d3f845a pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0x8d4b10c4 dev_attr_sw_activity +EXPORT_SYMBOL_GPL vmlinux 0x8d52cd3e thermal_zone_bind_cooling_device +EXPORT_SYMBOL_GPL vmlinux 0x8d5d341b regulator_set_load +EXPORT_SYMBOL_GPL vmlinux 0x8d6d25ca md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8d771098 ata_pci_sff_activate_host +EXPORT_SYMBOL_GPL vmlinux 0x8d785105 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x8d836814 nvdimm_blk_region_create +EXPORT_SYMBOL_GPL vmlinux 0x8d920bfb dmaengine_unmap_put +EXPORT_SYMBOL_GPL vmlinux 0x8d9644af regcache_drop_region +EXPORT_SYMBOL_GPL vmlinux 0x8dab4462 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x8dafcdc9 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x8dbf5a20 kvmppc_hv_entry_trampoline +EXPORT_SYMBOL_GPL vmlinux 0x8dc4372c pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0x8dcfb24e hwmon_device_register_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x8e1175af pcibios_alloc_controller +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 0x8e54634b cpuidle_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0x8e86be64 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x8ea0ef97 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8ea83ea3 usb_register_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x8eafa29b dma_buf_end_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0x8eb319d5 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x8ecf6e72 unregister_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0x8edc2ca9 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0x8edcd382 register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x8ee237c5 of_property_read_u64 +EXPORT_SYMBOL_GPL vmlinux 0x8ef460ff cpufreq_table_validate_and_show +EXPORT_SYMBOL_GPL vmlinux 0x8f01bad3 rio_lock_device +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f0a6b33 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x8f346149 tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x8f41aa57 __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x8f4cb2bc evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x8f6d89df iommu_domain_free +EXPORT_SYMBOL_GPL vmlinux 0x8fcdca5f gpiod_get +EXPORT_SYMBOL_GPL vmlinux 0x8fced602 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x8fd70265 ata_sff_error_handler +EXPORT_SYMBOL_GPL vmlinux 0x8fd9420c ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0x8fd96db5 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x8febfcc0 power_supply_powers +EXPORT_SYMBOL_GPL vmlinux 0x900aaa4f inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0x9028ba89 pci_iomap_wc_range +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x90491a84 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x904c293b ata_bmdma_start +EXPORT_SYMBOL_GPL vmlinux 0x904f3602 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x905bb077 dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x907080f2 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x90735402 usb_deregister_device_driver +EXPORT_SYMBOL_GPL vmlinux 0x9077d5ea usb_kill_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0x9097527b devfreq_event_set_event +EXPORT_SYMBOL_GPL vmlinux 0x9097dcb1 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90b020b5 input_ff_destroy +EXPORT_SYMBOL_GPL vmlinux 0x90b25695 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x90b8a0cb usb_create_shared_hcd +EXPORT_SYMBOL_GPL vmlinux 0x90d64bcd gpiochip_request_own_desc +EXPORT_SYMBOL_GPL vmlinux 0x90fa58d7 spi_master_resume +EXPORT_SYMBOL_GPL vmlinux 0x90fa7dda regmap_field_alloc +EXPORT_SYMBOL_GPL vmlinux 0x910e5d94 pcibios_free_controller_deferred +EXPORT_SYMBOL_GPL vmlinux 0x91150f4a cpufreq_unregister_governor +EXPORT_SYMBOL_GPL vmlinux 0x911b804c scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0x912331be __module_address +EXPORT_SYMBOL_GPL vmlinux 0x9141eab7 l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0x9147a196 pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x914d64f6 gpiochip_set_chained_irqchip +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91937506 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x9198b600 sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x91a43d65 fuse_get_req_for_background +EXPORT_SYMBOL_GPL vmlinux 0x91b588de pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0x91c6e5b0 pcap_to_irq +EXPORT_SYMBOL_GPL vmlinux 0x91ca6aed device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0x91ee992d crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x91f0c992 __tracepoint_napi_poll +EXPORT_SYMBOL_GPL vmlinux 0x91f42843 usb_autopm_get_interface +EXPORT_SYMBOL_GPL vmlinux 0x91f8d4b3 key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0x920cc389 visitorl +EXPORT_SYMBOL_GPL vmlinux 0x921e3576 irq_create_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9249f44a ata_sff_exec_command +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924f585e modify_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x92555774 reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0x9258663f crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x925abb33 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x92610aac virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x92ced36d free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x92db8f68 do_trace_rcu_torture_read +EXPORT_SYMBOL_GPL vmlinux 0x92eda10d __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x931f05d3 ktime_get_raw +EXPORT_SYMBOL_GPL vmlinux 0x93311080 opal_flash_read +EXPORT_SYMBOL_GPL vmlinux 0x93424be8 bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x934b226b rio_mport_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0x935dd6e6 devm_regulator_get +EXPORT_SYMBOL_GPL vmlinux 0x9368a3d1 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0x9391f60f sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0x93959d34 register_user_hw_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0x93bcb132 sdio_writel +EXPORT_SYMBOL_GPL vmlinux 0x93e5f7a1 wm8350_device_init +EXPORT_SYMBOL_GPL vmlinux 0x93eb3636 pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x93f5d7a7 pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0x93fd9100 nvdimm_pmem_region_create +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x9498cb2d usb_phy_generic_unregister +EXPORT_SYMBOL_GPL vmlinux 0x949f7342 __alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x94b19530 spi_unregister_master +EXPORT_SYMBOL_GPL vmlinux 0x94b53cbb usb_set_interface +EXPORT_SYMBOL_GPL vmlinux 0x94cda9c9 tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0x94d972b7 unregister_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x94e667a8 extcon_update_state +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f98a84 rio_mport_get_feature +EXPORT_SYMBOL_GPL vmlinux 0x9504df26 irq_wake_thread +EXPORT_SYMBOL_GPL vmlinux 0x95107a54 relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x95258207 vfio_device_data +EXPORT_SYMBOL_GPL vmlinux 0x952664c5 do_exit +EXPORT_SYMBOL_GPL vmlinux 0x95395c03 gpiod_set_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x953e1b9e ktime_get_real_seconds +EXPORT_SYMBOL_GPL vmlinux 0x954b4c07 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x954cc060 pcibios_free_controller +EXPORT_SYMBOL_GPL vmlinux 0x955b0e2e kthread_worker_fn +EXPORT_SYMBOL_GPL vmlinux 0x958df3ac zs_free +EXPORT_SYMBOL_GPL vmlinux 0x95978f2d devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x95a4f8aa usb_get_intf +EXPORT_SYMBOL_GPL vmlinux 0x95a7cdf1 apply_to_page_range +EXPORT_SYMBOL_GPL vmlinux 0x95a866ff tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x95ab6838 devm_phy_optional_get +EXPORT_SYMBOL_GPL vmlinux 0x95bc9078 btree_free +EXPORT_SYMBOL_GPL vmlinux 0x95c578fd devm_regulator_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x95e005d4 sata_port_ops +EXPORT_SYMBOL_GPL vmlinux 0x95fefc3b mbox_controller_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96137599 usb_clear_halt +EXPORT_SYMBOL_GPL vmlinux 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96281fdd ohci_setup +EXPORT_SYMBOL_GPL vmlinux 0x9635bb25 ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x9645cfe2 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x964be16d __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x96554810 register_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x967b48e2 srp_stop_rport_timers +EXPORT_SYMBOL_GPL vmlinux 0x968a3a66 ata_bmdma_status +EXPORT_SYMBOL_GPL vmlinux 0x969c73d9 vfio_device_put +EXPORT_SYMBOL_GPL vmlinux 0x96cb991b led_trigger_unregister +EXPORT_SYMBOL_GPL vmlinux 0x96e5daea ata_eh_analyze_ncq_error +EXPORT_SYMBOL_GPL vmlinux 0x97004877 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x9702e392 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x97039afd devm_phy_destroy +EXPORT_SYMBOL_GPL vmlinux 0x97213069 __cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x9722644f pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0x972b31f1 kvmppc_h_put_tce +EXPORT_SYMBOL_GPL vmlinux 0x972c36c3 stmpe_set_altfunc +EXPORT_SYMBOL_GPL vmlinux 0x9735f061 register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x9753f3de cpufreq_driver_target +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x9772700e dev_coredumpv +EXPORT_SYMBOL_GPL vmlinux 0x9773dda9 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0x9780c464 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0x97868aab pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0x97998027 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x979fcb60 nvdimm_provider_data +EXPORT_SYMBOL_GPL vmlinux 0x97a01819 iommu_tce_clear_param_check +EXPORT_SYMBOL_GPL vmlinux 0x97c4ef65 dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x980e70e6 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x98141823 gpiod_cansleep +EXPORT_SYMBOL_GPL vmlinux 0x98314fd2 tcp_ca_get_key_by_name +EXPORT_SYMBOL_GPL vmlinux 0x9832ff35 usb_reset_device +EXPORT_SYMBOL_GPL vmlinux 0x9833bc0c hvc_kick +EXPORT_SYMBOL_GPL vmlinux 0x9840bd8b ata_pci_device_do_resume +EXPORT_SYMBOL_GPL vmlinux 0x98503a63 mpi_alloc +EXPORT_SYMBOL_GPL vmlinux 0x98549990 ata_link_next +EXPORT_SYMBOL_GPL vmlinux 0x986330a1 ata_do_dev_read_id +EXPORT_SYMBOL_GPL vmlinux 0x9864cfa2 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x9867267c xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0x986dbe54 mbox_send_message +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98844023 ref_module +EXPORT_SYMBOL_GPL vmlinux 0x98966364 mmc_switch +EXPORT_SYMBOL_GPL vmlinux 0x98a02a70 register_jprobe +EXPORT_SYMBOL_GPL vmlinux 0x98aaf75d blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x98b63ea0 dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x98be6cb6 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0x98e59ba1 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x98ef694e tps6586x_update +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 0x9900e7a8 skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0x990f4c86 simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x9924c496 __usb_get_extra_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x99368d65 kvmppc_update_rmap_change +EXPORT_SYMBOL_GPL vmlinux 0x993aeb6b ata_bmdma_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x995ec643 usb_get_descriptor +EXPORT_SYMBOL_GPL vmlinux 0x9973add9 __cookie_v6_check +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x998187b0 gpiochip_find +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 0x99a81f80 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x99a9ff9a cpuidle_register_device +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99e9573c devm_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0x99ff8d08 opal_invalid_call +EXPORT_SYMBOL_GPL vmlinux 0x9a11a0fc crypto_attr_alg_name +EXPORT_SYMBOL_GPL vmlinux 0x9a2452d1 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x9a2e59e2 phy_pm_runtime_get_sync +EXPORT_SYMBOL_GPL vmlinux 0x9a37cb04 regmap_update_bits_check_async +EXPORT_SYMBOL_GPL vmlinux 0x9a49d937 __wake_up_locked_key +EXPORT_SYMBOL_GPL vmlinux 0x9a7e3bc4 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9aab77ce da903x_reads +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 0x9ac194b9 skb_segment +EXPORT_SYMBOL_GPL vmlinux 0x9adf08c3 mmu_linear_psize +EXPORT_SYMBOL_GPL vmlinux 0x9adf2558 gpiochip_unlock_as_irq +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9b24cc0d dummy_con +EXPORT_SYMBOL_GPL vmlinux 0x9b76fd2f phy_init +EXPORT_SYMBOL_GPL vmlinux 0x9b7f9cd4 irq_create_direct_mapping +EXPORT_SYMBOL_GPL vmlinux 0x9ba2bb2b gpio_request_array +EXPORT_SYMBOL_GPL vmlinux 0x9ba59b34 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0x9bca03ca ata_sff_queue_delayed_work +EXPORT_SYMBOL_GPL vmlinux 0x9bdfb760 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x9be6db2a cpufreq_register_governor +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c0d6a2f devm_regulator_get_optional +EXPORT_SYMBOL_GPL vmlinux 0x9c89b644 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9ca090c5 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0x9ca414bd dev_get_regmap +EXPORT_SYMBOL_GPL vmlinux 0x9ca5425a rio_map_inb_region +EXPORT_SYMBOL_GPL vmlinux 0x9cb0df4b trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0x9cc125d0 device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ce5d161 ata_pci_sff_init_one +EXPORT_SYMBOL_GPL vmlinux 0x9cf0f8fe put_hwpoison_page +EXPORT_SYMBOL_GPL vmlinux 0x9d1dbd88 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x9d205a1f pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x9d2f47f4 rio_set_port_lockout +EXPORT_SYMBOL_GPL vmlinux 0x9d32c2b6 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0x9d378314 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x9d3ed2a7 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x9d4a49a2 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x9d4d75cc ata_cable_40wire +EXPORT_SYMBOL_GPL vmlinux 0x9d4fe4c5 ohci_restart +EXPORT_SYMBOL_GPL vmlinux 0x9d62c6ec dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x9d6c84e4 usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0x9d6eef50 regmap_async_complete_cb +EXPORT_SYMBOL_GPL vmlinux 0x9d80e5bb pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x9d831900 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x9d954109 regulator_map_voltage_linear +EXPORT_SYMBOL_GPL vmlinux 0x9dadbb88 cpufreq_boost_supported +EXPORT_SYMBOL_GPL vmlinux 0x9dc5ca3d iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x9df59dd3 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x9df7e540 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x9df830dc pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x9e075ce2 sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0x9e07d7de devm_spi_register_master +EXPORT_SYMBOL_GPL vmlinux 0x9e0c178d usb_poison_urb +EXPORT_SYMBOL_GPL vmlinux 0x9e16072c task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0x9e1b80b1 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x9e1de7cc pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x9e215204 ata_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0x9e379b6b eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e788710 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x9e9ceb73 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x9ec3e1a3 of_platform_depopulate +EXPORT_SYMBOL_GPL vmlinux 0x9ecc13a7 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0x9ed554b3 unregister_keyboard_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9ede3214 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0x9ef5c639 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9fc94666 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0x9ff82594 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa0298b62 regmap_fields_write +EXPORT_SYMBOL_GPL vmlinux 0xa02d8d81 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0xa03e1177 wm831x_auxadc_read +EXPORT_SYMBOL_GPL vmlinux 0xa04998d6 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xa0603cc5 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0xa071e996 list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0xa08d44aa pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0xa08facdd xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xa091f81e of_device_get_modalias +EXPORT_SYMBOL_GPL vmlinux 0xa0920355 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0xa096b84c md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xa0987b54 dev_pm_clear_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xa09ab411 sdio_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xa0a1ec4d vfio_virqfd_disable +EXPORT_SYMBOL_GPL vmlinux 0xa0a27fff pci_address_to_pio +EXPORT_SYMBOL_GPL vmlinux 0xa0f658ce sdio_readsb +EXPORT_SYMBOL_GPL vmlinux 0xa0fadf92 unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0xa11b00f1 sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xa11b0bd0 device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0xa13c1640 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa1498221 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0xa15af805 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0xa1751e49 ohci_resume +EXPORT_SYMBOL_GPL vmlinux 0xa18b31a8 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa1cb969f ata_sas_port_stop +EXPORT_SYMBOL_GPL vmlinux 0xa1d95a90 device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xa1ed9c8b add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xa21057d6 virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0xa2426d90 devm_hwmon_device_register_with_groups +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 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2ce793f __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa2e76a20 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0xa3005c79 securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xa3020f69 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0xa30aaa93 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xa30d9142 irq_setup_alt_chip +EXPORT_SYMBOL_GPL vmlinux 0xa31ca85a ata_sff_busy_sleep +EXPORT_SYMBOL_GPL vmlinux 0xa321940d devm_extcon_dev_allocate +EXPORT_SYMBOL_GPL vmlinux 0xa3387638 regulator_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xa33ef1a9 alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xa367b18b __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xa3802283 pm_generic_suspend +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 0xa38a7967 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0xa39c6d8b sk_setup_caps +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 0xa3c4aa43 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0xa3dbd6e8 iommu_del_device +EXPORT_SYMBOL_GPL vmlinux 0xa3e16693 gen_pool_avail +EXPORT_SYMBOL_GPL vmlinux 0xa3e49026 rio_mport_send_doorbell +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa3ff43a0 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0xa440376e rio_mport_class +EXPORT_SYMBOL_GPL vmlinux 0xa442d60c skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0xa4566a91 extcon_dev_register +EXPORT_SYMBOL_GPL vmlinux 0xa46279ef extcon_set_state +EXPORT_SYMBOL_GPL vmlinux 0xa48196c8 kdb_poll_idx +EXPORT_SYMBOL_GPL vmlinux 0xa4d08ae7 get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0xa4e89349 power_supply_class +EXPORT_SYMBOL_GPL vmlinux 0xa506613d blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa5288002 __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0xa543ac9f devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa55e3f48 serial8250_rpm_get +EXPORT_SYMBOL_GPL vmlinux 0xa564db8e i2c_add_numbered_adapter +EXPORT_SYMBOL_GPL vmlinux 0xa56b262f ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0xa5b00659 ppc_proc_freq +EXPORT_SYMBOL_GPL vmlinux 0xa5d3d5e4 regulator_get_current_limit +EXPORT_SYMBOL_GPL vmlinux 0xa5d821bd reservation_object_wait_timeout_rcu +EXPORT_SYMBOL_GPL vmlinux 0xa5de5067 regulator_disable_regmap +EXPORT_SYMBOL_GPL vmlinux 0xa5e4223d blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0xa5efbf4c async_synchronize_full +EXPORT_SYMBOL_GPL vmlinux 0xa5efe460 usb_anchor_resume_wakeups +EXPORT_SYMBOL_GPL vmlinux 0xa5fe051f class_compat_remove_link +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 0xa636a3d0 devm_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xa6474c5b cpufreq_generic_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xa6647139 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa67e1306 sdio_align_size +EXPORT_SYMBOL_GPL vmlinux 0xa684a10d rio_route_add_entry +EXPORT_SYMBOL_GPL vmlinux 0xa68614e1 swiotlb_tbl_sync_single +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6bf9e86 usb_bulk_msg +EXPORT_SYMBOL_GPL vmlinux 0xa6d838c6 wm831x_reg_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa6d8f1e5 sata_link_resume +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6eded6c opal_xscom_read +EXPORT_SYMBOL_GPL vmlinux 0xa7138bdc ehci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xa721bc3f opal_rtc_write +EXPORT_SYMBOL_GPL vmlinux 0xa7236cdd nd_cmd_in_size +EXPORT_SYMBOL_GPL vmlinux 0xa7271399 mpc8xxx_spi_rx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xa72adeae dbs_check_cpu +EXPORT_SYMBOL_GPL vmlinux 0xa72f8cf1 led_classdev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xa739ad1d crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0xa748defa of_get_fb_videomode +EXPORT_SYMBOL_GPL vmlinux 0xa758833b crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xa7842198 regmap_write +EXPORT_SYMBOL_GPL vmlinux 0xa797545e ata_pci_sff_init_host +EXPORT_SYMBOL_GPL vmlinux 0xa7abd970 _gpiochip_irqchip_add +EXPORT_SYMBOL_GPL vmlinux 0xa7c05aff perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa7cdfc6c platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xa7e6ed33 adp5520_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xa7f4beae single_open_net +EXPORT_SYMBOL_GPL vmlinux 0xa81641b4 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa81aceee sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa85205ea pci_enable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xa8806aa8 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0xa8855815 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0xa88ef5b1 power_supply_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xa8942dea subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0xa899b914 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0xa89df037 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0xa8ac3c56 irq_find_mapping +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8beb663 scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xa8c4ed36 rtc_update_irq_enable +EXPORT_SYMBOL_GPL vmlinux 0xa8c53f6f digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0xa8cbaa56 usb_asmedia_modifyflowcontrol +EXPORT_SYMBOL_GPL vmlinux 0xa8d88142 __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xa8e9fef0 phy_put +EXPORT_SYMBOL_GPL vmlinux 0xa91e327a usb_deregister +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa9519387 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xa96120c7 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0xa987f900 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xa999b93c blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0xa99bea8f __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0xa9a9f98a eeh_pe_set_option +EXPORT_SYMBOL_GPL vmlinux 0xa9aa1b00 opal_poll_events +EXPORT_SYMBOL_GPL vmlinux 0xa9ce341e usb_show_dynids +EXPORT_SYMBOL_GPL vmlinux 0xa9d3da7c regmap_get_reg_stride +EXPORT_SYMBOL_GPL vmlinux 0xa9d4fd19 watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9ee23ee bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0xaa07e6ed platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0xaa099208 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0xaa22ca96 fb_deferred_io_fsync +EXPORT_SYMBOL_GPL vmlinux 0xaa43b82f crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0xaa547baf skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xaa658d1d crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xaa79fe14 rtc_update_irq +EXPORT_SYMBOL_GPL vmlinux 0xaa871f06 dma_buf_kmap_atomic +EXPORT_SYMBOL_GPL vmlinux 0xaa895242 blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaaa98e92 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xaaa9d0cb of_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0xaaadff01 gpiod_put_array +EXPORT_SYMBOL_GPL vmlinux 0xaabb2365 vfio_group_get_external_user +EXPORT_SYMBOL_GPL vmlinux 0xaabec701 ata_ehi_push_desc +EXPORT_SYMBOL_GPL vmlinux 0xaac58673 bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0xaaccdd5f mbox_chan_txdone +EXPORT_SYMBOL_GPL vmlinux 0xaad8cdcf gpiod_unexport +EXPORT_SYMBOL_GPL vmlinux 0xaaf1ba0f gen_pool_get +EXPORT_SYMBOL_GPL vmlinux 0xab0a3e85 extcon_get_edev_by_phandle +EXPORT_SYMBOL_GPL vmlinux 0xab1d3cd4 usb_sg_init +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 0xab63c08a inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab960a95 devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0xaba7349e rio_request_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xabb2e890 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0xabb95073 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xabb9f93c dma_buf_begin_cpu_access +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabd1f11f handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0xabd3d40c list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0xabdff365 ata_link_abort +EXPORT_SYMBOL_GPL vmlinux 0xabfccde6 gpiod_get_value +EXPORT_SYMBOL_GPL vmlinux 0xac0624b4 vfio_spapr_iommu_eeh_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xac09bed0 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0xac0a9dc0 ata_link_online +EXPORT_SYMBOL_GPL vmlinux 0xac2f35f0 input_ff_create +EXPORT_SYMBOL_GPL vmlinux 0xac3678fd platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0xac51f620 copro_calculate_slb +EXPORT_SYMBOL_GPL vmlinux 0xac579525 devm_regmap_field_free +EXPORT_SYMBOL_GPL vmlinux 0xac5a46b7 stmpe_set_bits +EXPORT_SYMBOL_GPL vmlinux 0xac5d86ff pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0xac6d510c pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0xacbae397 ata_sas_sync_probe +EXPORT_SYMBOL_GPL vmlinux 0xacd5d42b ehci_reset +EXPORT_SYMBOL_GPL vmlinux 0xacdba253 tps6586x_get_version +EXPORT_SYMBOL_GPL vmlinux 0xacdf38f8 usb_ifnum_to_if +EXPORT_SYMBOL_GPL vmlinux 0xace5c0fc usb_bus_list +EXPORT_SYMBOL_GPL vmlinux 0xacfe997e powerpc_firmware_features +EXPORT_SYMBOL_GPL vmlinux 0xad3563ba perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xad39943d bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0xad4d4fd1 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0xad70e8ff dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0xad8d2717 cpufreq_show_cpus +EXPORT_SYMBOL_GPL vmlinux 0xada60ca3 sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xada8ef10 pcibios_unmap_io_space +EXPORT_SYMBOL_GPL vmlinux 0xadbb8481 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xadc785ec kgdb_register_io_module +EXPORT_SYMBOL_GPL vmlinux 0xadd6b17d tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xadd90831 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0xade7a043 blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0xaded9da1 perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xadf88699 regmap_irq_get_domain +EXPORT_SYMBOL_GPL vmlinux 0xadf8d471 scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xae140284 wm8998_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xae58f537 i2c_new_probed_device +EXPORT_SYMBOL_GPL vmlinux 0xae69b1c1 usermodehelper_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xae6eaf93 hwpoison_filter_dev_minor +EXPORT_SYMBOL_GPL vmlinux 0xae76a4d0 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xae7c231d mpi_cmp +EXPORT_SYMBOL_GPL vmlinux 0xae81922b of_overlay_destroy_all +EXPORT_SYMBOL_GPL vmlinux 0xae88e114 gpiod_is_active_low +EXPORT_SYMBOL_GPL vmlinux 0xae8d2d94 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0xae937a0c device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xae990283 __pm_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xaec7de00 device_register +EXPORT_SYMBOL_GPL vmlinux 0xaec9921f hash_page +EXPORT_SYMBOL_GPL vmlinux 0xaeefea33 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xaf272dec subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xaf279112 opal_leds_set_ind +EXPORT_SYMBOL_GPL vmlinux 0xaf392b3c serial8250_tx_chars +EXPORT_SYMBOL_GPL vmlinux 0xaf3fd6d2 gpiod_set_raw_value +EXPORT_SYMBOL_GPL vmlinux 0xaf9f4b28 get_slice_psize +EXPORT_SYMBOL_GPL vmlinux 0xafbe6c9e kvmppc_hwrng_present +EXPORT_SYMBOL_GPL vmlinux 0xaffc0e70 blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xb000541f eeh_add_device_tree_late +EXPORT_SYMBOL_GPL vmlinux 0xb00b833e pkcs7_get_content_data +EXPORT_SYMBOL_GPL vmlinux 0xb01c299c of_phy_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb040bc5e ata_bmdma32_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xb04db36b nvdimm_name +EXPORT_SYMBOL_GPL vmlinux 0xb067bcb7 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xb06d769c debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0xb0861af9 regmap_get_device +EXPORT_SYMBOL_GPL vmlinux 0xb09565fa wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xb099ba78 l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0xb0a0c3dc ata_bmdma_dumb_qc_prep +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0b8fd48 devm_of_pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb0cdf3dd ata_port_desc +EXPORT_SYMBOL_GPL vmlinux 0xb0d1656c gpio_free_array +EXPORT_SYMBOL_GPL vmlinux 0xb10228b8 sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0xb10a3302 of_alias_get_id +EXPORT_SYMBOL_GPL vmlinux 0xb10ea386 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0xb11734a4 sdio_disable_func +EXPORT_SYMBOL_GPL vmlinux 0xb1377ef0 sdio_writeb +EXPORT_SYMBOL_GPL vmlinux 0xb140d14c ring_buffer_read +EXPORT_SYMBOL_GPL vmlinux 0xb1425b32 dm_table_add_target_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb1563042 cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xb17dfa1b device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0xb18429eb suspend_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0xb1a2ca69 __put_net +EXPORT_SYMBOL_GPL vmlinux 0xb1acbcce rcu_barrier_sched +EXPORT_SYMBOL_GPL vmlinux 0xb1b370bd __tracepoint_block_rq_remap +EXPORT_SYMBOL_GPL vmlinux 0xb1b83d3c ata_sff_dev_select +EXPORT_SYMBOL_GPL vmlinux 0xb1bb1208 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0xb1bed25d dpm_resume_start +EXPORT_SYMBOL_GPL vmlinux 0xb1c0c1c2 async_schedule_domain +EXPORT_SYMBOL_GPL vmlinux 0xb1d1cca4 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xb1d545a0 __class_register +EXPORT_SYMBOL_GPL vmlinux 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb1ed54ea devm_regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xb1f6e38f sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xb2210d64 reset_control_deassert +EXPORT_SYMBOL_GPL vmlinux 0xb22347f5 ata_sff_freeze +EXPORT_SYMBOL_GPL vmlinux 0xb25860ec blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb29a9d1c ata_scsi_slave_config +EXPORT_SYMBOL_GPL vmlinux 0xb2a6614a platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0xb2d7219d da9052_disable_irq +EXPORT_SYMBOL_GPL vmlinux 0xb2e00789 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xb2e764e8 suspend_valid_only_mem +EXPORT_SYMBOL_GPL vmlinux 0xb2f70821 device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xb301d972 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xb3087fad irq_gc_mask_clr_bit +EXPORT_SYMBOL_GPL vmlinux 0xb33e1353 usb_hcd_pci_probe +EXPORT_SYMBOL_GPL vmlinux 0xb3452277 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb34f9729 crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0xb3765f4a trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0xb37bf3a3 pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0xb37d7030 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xb38965af key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xb3b677f2 ata_bmdma_port_start +EXPORT_SYMBOL_GPL vmlinux 0xb3bc0420 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0xb3fb8771 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0xb4304984 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0xb4477e39 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0xb47750e6 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xb488588e tb_to_ns +EXPORT_SYMBOL_GPL vmlinux 0xb495aced of_irq_get +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4ea7cf7 kgdb_connected +EXPORT_SYMBOL_GPL vmlinux 0xb4ebf377 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0xb4f24427 regmap_get_max_register +EXPORT_SYMBOL_GPL vmlinux 0xb50db869 ata_ehi_clear_desc +EXPORT_SYMBOL_GPL vmlinux 0xb51fbd64 edac_op_state +EXPORT_SYMBOL_GPL vmlinux 0xb522750f mpc8xxx_spi_rx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xb522cf47 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL vmlinux 0xb52c963c crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xb53051c4 thermal_notify_framework +EXPORT_SYMBOL_GPL vmlinux 0xb5351896 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5513e81 i2c_generic_gpio_recovery +EXPORT_SYMBOL_GPL vmlinux 0xb56674a9 crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xb5848bae __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb58f225e fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5a12555 pwm_request_from_chip +EXPORT_SYMBOL_GPL vmlinux 0xb5a7fc31 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0xb5aa10af atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb5c09c5b usb_unpoison_urb +EXPORT_SYMBOL_GPL vmlinux 0xb5c8edf4 btree_init_mempool +EXPORT_SYMBOL_GPL vmlinux 0xb5d34e13 pwm_get +EXPORT_SYMBOL_GPL vmlinux 0xb5ed13cb kvmppc_h_get_tce +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb60ad49a of_pci_range_parser_one +EXPORT_SYMBOL_GPL vmlinux 0xb60b5707 of_i8042_aux_irq +EXPORT_SYMBOL_GPL vmlinux 0xb60b8b1d __devm_regmap_init_i2c +EXPORT_SYMBOL_GPL vmlinux 0xb60edb7d of_dma_controller_register +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb6391221 da903x_read +EXPORT_SYMBOL_GPL vmlinux 0xb643c250 xics_wake_cpu +EXPORT_SYMBOL_GPL vmlinux 0xb648855b regcache_cache_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb648c2f8 virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xb649cdeb vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0xb656187b dm_set_target_max_io_len +EXPORT_SYMBOL_GPL vmlinux 0xb66faf98 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xb67dd512 crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xb6ae0c56 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0xb6aeb661 ata_id_c_string +EXPORT_SYMBOL_GPL vmlinux 0xb6c2c86b fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0xb70e3566 scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xb712f52a of_mpc8xxx_spi_probe +EXPORT_SYMBOL_GPL vmlinux 0xb71510fe powercap_register_zone +EXPORT_SYMBOL_GPL vmlinux 0xb7226bfe regmap_raw_read +EXPORT_SYMBOL_GPL vmlinux 0xb75cd508 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0xb76f90ea devfreq_event_disable_edev +EXPORT_SYMBOL_GPL vmlinux 0xb7976f40 regulator_allow_bypass +EXPORT_SYMBOL_GPL vmlinux 0xb79a4a2f pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xb79b66cc device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xb7a5eef0 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xb7ae7809 cpufreq_frequency_table_get_index +EXPORT_SYMBOL_GPL vmlinux 0xb7b6b5b7 serial8250_request_dma +EXPORT_SYMBOL_GPL vmlinux 0xb7e57bea dma_release_channel +EXPORT_SYMBOL_GPL vmlinux 0xb7f2e02c powercap_unregister_control_type +EXPORT_SYMBOL_GPL vmlinux 0xb7f77027 rtc_tm_to_ktime +EXPORT_SYMBOL_GPL vmlinux 0xb81d81f3 virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0xb869d098 devm_power_supply_register +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb89ee3e3 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0xb8b51515 ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0xb8b6692c kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0xb8c0e7d4 power_supply_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8d9813b sata_scr_valid +EXPORT_SYMBOL_GPL vmlinux 0xb8db2355 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0xb8e466ec class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xb8ea7012 ata_cable_ignore +EXPORT_SYMBOL_GPL vmlinux 0xb8f010e3 scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xb8fa5fb1 vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb90f4bf7 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0xb919071e of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xb945ace8 __tracepoint_remove_device_from_group +EXPORT_SYMBOL_GPL vmlinux 0xb94c7699 bus_register +EXPORT_SYMBOL_GPL vmlinux 0xb9549d0f bio_trim +EXPORT_SYMBOL_GPL vmlinux 0xb95ef600 pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb970bee4 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xb982f0e6 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xb9957b17 sdio_get_host_pm_caps +EXPORT_SYMBOL_GPL vmlinux 0xb9a5b789 cpu_add_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xb9b9df41 usb_amd_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xb9c2fad2 serial8250_rx_chars +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9cc0113 pci_disable_pri +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9dcf622 usb_hcd_pci_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xb9e8c23a ata_sas_port_start +EXPORT_SYMBOL_GPL vmlinux 0xba14df2c ata_sff_check_status +EXPORT_SYMBOL_GPL vmlinux 0xba158769 rtas_cancel_event_scan +EXPORT_SYMBOL_GPL vmlinux 0xba1ef43f i2c_generic_scl_recovery +EXPORT_SYMBOL_GPL vmlinux 0xba2b7f64 cpufreq_generic_get +EXPORT_SYMBOL_GPL vmlinux 0xba434317 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0xba49fa76 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0xba6c2681 rhashtable_init +EXPORT_SYMBOL_GPL vmlinux 0xba78e6eb devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xba915b87 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xba96713d pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xbab9a9f0 maxim_charger_currents +EXPORT_SYMBOL_GPL vmlinux 0xbaf6d630 mpi_read_raw_from_sgl +EXPORT_SYMBOL_GPL vmlinux 0xbafe604d trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xbb038ce4 perf_unregister_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xbb090865 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xbb0ab47b debug_locks +EXPORT_SYMBOL_GPL vmlinux 0xbb328431 usb_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xbb6f025a asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0xbb8758c9 phy_pm_runtime_put +EXPORT_SYMBOL_GPL vmlinux 0xbb9ce501 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0xbba15669 iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xbbacd3da usb_wakeup_notification +EXPORT_SYMBOL_GPL vmlinux 0xbbae28a2 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xbbc5213b irq_alloc_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xbbc8aa51 input_ff_upload +EXPORT_SYMBOL_GPL vmlinux 0xbbcdf4be virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0xbbd3aa67 ata_cable_80wire +EXPORT_SYMBOL_GPL vmlinux 0xbc0fab60 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0xbc12dbc4 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc1512c4 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xbc1afd71 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0xbc310e41 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xbc46a095 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0xbc57e4a8 nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc935ec9 cpuidle_get_cpu_driver +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcc6350c platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xbccfd4d8 register_oldmem_pfn_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xbcd7098e crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0xbcdd5b99 iommu_group_set_name +EXPORT_SYMBOL_GPL vmlinux 0xbce6f877 disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xbcf5452b ata_sff_qc_fill_rtf +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd59f9fc posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd671048 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0xbd7b58c6 usb_gen_phy_init +EXPORT_SYMBOL_GPL vmlinux 0xbd8f2888 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xbdc61f07 skb_partial_csum_set +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 0xbdde0d75 rtc_irq_set_freq +EXPORT_SYMBOL_GPL vmlinux 0xbde8dc00 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0xbe185655 extcon_get_cable_state_ +EXPORT_SYMBOL_GPL vmlinux 0xbe1887e4 ata_unpack_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xbe19ca6a blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0xbe3ae03f ata_bmdma_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xbe471cdf opal_rtc_read +EXPORT_SYMBOL_GPL vmlinux 0xbe5a271a tps65912_reg_write +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 0xbea90385 device_add +EXPORT_SYMBOL_GPL vmlinux 0xbeb176fb desc_to_gpio +EXPORT_SYMBOL_GPL vmlinux 0xbebcd541 perf_event_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xbec8d1c8 analyse_instr +EXPORT_SYMBOL_GPL vmlinux 0xbecd7f57 key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0xbee21107 dm_internal_suspend_noflush +EXPORT_SYMBOL_GPL vmlinux 0xbeeffc2d pci_test_config_bits +EXPORT_SYMBOL_GPL vmlinux 0xbef3f67e bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0xbf041102 register_vt_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbf11f0f6 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xbf19e520 i2c_recover_bus +EXPORT_SYMBOL_GPL vmlinux 0xbf1cc04b tty_termios_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0xbf6187ba exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xbf6e768a user_destroy +EXPORT_SYMBOL_GPL vmlinux 0xbf7fec7b usb_unanchor_urb +EXPORT_SYMBOL_GPL vmlinux 0xbfac4932 dev_attr_em_message +EXPORT_SYMBOL_GPL vmlinux 0xbfbc5434 pciserial_resume_ports +EXPORT_SYMBOL_GPL vmlinux 0xbfc9635a devm_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xbfcb312e cpufreq_generic_attr +EXPORT_SYMBOL_GPL vmlinux 0xbfd66dbd hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbfe6d470 wm5102_spi_regmap +EXPORT_SYMBOL_GPL vmlinux 0xbff39bb6 pwm_get_chip_data +EXPORT_SYMBOL_GPL vmlinux 0xbff9953b thermal_cooling_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbffa82bc param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xc00527f6 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0xc009b0af dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xc0105ad7 yield_to +EXPORT_SYMBOL_GPL vmlinux 0xc02bec3c usb_unlink_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc0419d60 ata_qc_complete_multiple +EXPORT_SYMBOL_GPL vmlinux 0xc0594e35 ata_link_offline +EXPORT_SYMBOL_GPL vmlinux 0xc065a455 cpu_core_index_of_thread +EXPORT_SYMBOL_GPL vmlinux 0xc0696b63 of_regulator_match +EXPORT_SYMBOL_GPL vmlinux 0xc0860e9f led_trigger_remove +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc08c7ea9 vfio_unregister_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0xc091ef3f __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0xc0a94095 cpufreq_cooling_register +EXPORT_SYMBOL_GPL vmlinux 0xc0a96e14 rcu_gp_is_expedited +EXPORT_SYMBOL_GPL vmlinux 0xc0afa2f1 devm_usb_get_phy_by_node +EXPORT_SYMBOL_GPL vmlinux 0xc0d26387 kmsg_dump_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc0df8865 timerqueue_add +EXPORT_SYMBOL_GPL vmlinux 0xc0eb3582 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0xc0ebff69 component_master_del +EXPORT_SYMBOL_GPL vmlinux 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc12ac133 map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xc12e66b8 get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xc13de2bc lp8788_update_bits +EXPORT_SYMBOL_GPL vmlinux 0xc147efb8 hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc17515d7 usb_hcds_loaded +EXPORT_SYMBOL_GPL vmlinux 0xc18bb140 of_pwm_xlate_with_flags +EXPORT_SYMBOL_GPL vmlinux 0xc1b68f93 trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xc1bf6b9c sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xc1c73ede usb_queue_reset_device +EXPORT_SYMBOL_GPL vmlinux 0xc1d989c5 vfio_external_check_extension +EXPORT_SYMBOL_GPL vmlinux 0xc1e01517 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0xc1e09412 rio_enable_rx_tx_port +EXPORT_SYMBOL_GPL vmlinux 0xc202acdf napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0xc229e0ad max8997_update_reg +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc241dd2a pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0xc25aed37 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0xc275eb8e devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xc280fb46 kdb_register +EXPORT_SYMBOL_GPL vmlinux 0xc28b70d5 pwm_request +EXPORT_SYMBOL_GPL vmlinux 0xc2a3fada regulator_get_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xc2bac1f7 virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0xc2bc92c7 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xc2c25342 usb_poison_anchored_urbs +EXPORT_SYMBOL_GPL vmlinux 0xc2dd1aca ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xc2f6dbeb usb_hub_claim_port +EXPORT_SYMBOL_GPL vmlinux 0xc3064eaa of_device_uevent_modalias +EXPORT_SYMBOL_GPL vmlinux 0xc31d9683 ehci_cf_port_reset_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc34e1fde tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc358c816 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc38f36d9 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xc39cdd03 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0xc3a04506 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xc3b3a2f9 device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xc3dfdaf4 of_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xc3e75fc2 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0xc3f6710b cpufreq_unregister_driver +EXPORT_SYMBOL_GPL vmlinux 0xc425bb9c init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0xc428068d sata_deb_timing_long +EXPORT_SYMBOL_GPL vmlinux 0xc42eb099 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc454fc7b twl_get_type +EXPORT_SYMBOL_GPL vmlinux 0xc469d1b6 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xc4702782 vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0xc471c67a twl4030_audio_disable_resource +EXPORT_SYMBOL_GPL vmlinux 0xc471d770 thermal_cooling_device_register +EXPORT_SYMBOL_GPL vmlinux 0xc48b7ccf ata_mode_string +EXPORT_SYMBOL_GPL vmlinux 0xc4913442 vfio_group_put_external_user +EXPORT_SYMBOL_GPL vmlinux 0xc495602f power_supply_get_property +EXPORT_SYMBOL_GPL vmlinux 0xc4a16a61 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xc4ac9ef3 fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0xc4be95ba invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0xc4bf967f skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xc4c9156a get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e3c457 pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xc5056e17 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0xc50a38da rtc_irq_register +EXPORT_SYMBOL_GPL vmlinux 0xc50af3e1 crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xc5189ea1 regmap_register_patch +EXPORT_SYMBOL_GPL vmlinux 0xc538c398 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0xc541991b sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc5486ebb tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0xc55b5a35 realmode_pfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xc5652a1f pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc58a1687 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xc58d381e sata_scr_read +EXPORT_SYMBOL_GPL vmlinux 0xc58e66c7 edac_get_sysfs_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc5a2c19f idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0xc5dcafc9 gpiochip_generic_request +EXPORT_SYMBOL_GPL vmlinux 0xc6066e3e fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0xc606cd3c boot_cpuid +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6230146 gpiod_set_debounce +EXPORT_SYMBOL_GPL vmlinux 0xc623a88b transport_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc627431a alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0xc62891a2 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xc6363ab3 vfio_del_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xc63e7d93 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0xc6433640 device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xc64e2431 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0xc65d3eed ring_buffer_entries_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc66b77b1 iommu_group_set_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xc679741d cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0xc67a94a7 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0xc687b626 regulator_get_voltage +EXPORT_SYMBOL_GPL vmlinux 0xc68aa252 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xc68d64ce ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xc692b990 sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc6a62ead ata_bmdma_error_handler +EXPORT_SYMBOL_GPL vmlinux 0xc6c0ab07 extcon_get_cable_state +EXPORT_SYMBOL_GPL vmlinux 0xc6c69a8f opal_flash_write +EXPORT_SYMBOL_GPL vmlinux 0xc6da7a0a __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0xc6de2a09 fixed_phy_set_link_update +EXPORT_SYMBOL_GPL vmlinux 0xc6de4d74 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0xc6f3b740 usb_autopm_get_interface_async +EXPORT_SYMBOL_GPL vmlinux 0xc713d6dc ata_port_wait_eh +EXPORT_SYMBOL_GPL vmlinux 0xc724a799 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc72f7167 sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xc738247a ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xc7592fbe nvdimm_bus_check_dimm_count +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7dc8767 lp8788_read_byte +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc800cb5c pciserial_init_ports +EXPORT_SYMBOL_GPL vmlinux 0xc86e6470 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc89542e2 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc8adce12 irq_domain_add_simple +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8ae2f62 dma_buf_kmap +EXPORT_SYMBOL_GPL vmlinux 0xc8d63cab bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8e11ea1 pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0xc91277a1 kgdb_schedule_breakpoint +EXPORT_SYMBOL_GPL vmlinux 0xc92c9b70 gpiod_set_array_value +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 0xc9a7e085 max8997_write_reg +EXPORT_SYMBOL_GPL vmlinux 0xc9c740aa usb_driver_claim_interface +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca373975 gpiochip_generic_free +EXPORT_SYMBOL_GPL vmlinux 0xca53ccd6 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xca5a69a8 da9052_disable_irq_nosync +EXPORT_SYMBOL_GPL vmlinux 0xca7135c4 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xcabe04de cpuidle_resume_and_unlock +EXPORT_SYMBOL_GPL vmlinux 0xcac92600 ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xcad8f395 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xcb15eee9 sdhci_pci_get_data +EXPORT_SYMBOL_GPL vmlinux 0xcb1c410e aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcb27d5f6 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb5ee621 hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0xcb74c0bd kvmppc_add_revmap_chain +EXPORT_SYMBOL_GPL vmlinux 0xcb7d86fe ata_sff_wait_after_reset +EXPORT_SYMBOL_GPL vmlinux 0xcb91a35f debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xcb9939e1 clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xcbaeabf7 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0xcbcf30a3 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xcbda417e __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0xcbddc9f3 skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0xcbe56bc2 zs_get_total_pages +EXPORT_SYMBOL_GPL vmlinux 0xcbee20b2 get_cpu_iowait_time_us +EXPORT_SYMBOL_GPL vmlinux 0xcbee8ca4 of_dma_simple_xlate +EXPORT_SYMBOL_GPL vmlinux 0xcbf29f6a shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xcbfb6b27 cpu_remove_dev_attr_group +EXPORT_SYMBOL_GPL vmlinux 0xcc015a7d regulator_list_voltage_table +EXPORT_SYMBOL_GPL vmlinux 0xcc0f1009 power_supply_notifier +EXPORT_SYMBOL_GPL vmlinux 0xcc22f87a rio_mport_read_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xcc2ea42e cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xcc3d37c8 dax_fault +EXPORT_SYMBOL_GPL vmlinux 0xcc4181ad __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xcc43b201 tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xcc6fface udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8852a0 pwm_can_sleep +EXPORT_SYMBOL_GPL vmlinux 0xccac3b1c ata_cable_unknown +EXPORT_SYMBOL_GPL vmlinux 0xccb1634b dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xccba7751 thermal_zone_get_zone_by_name +EXPORT_SYMBOL_GPL vmlinux 0xcccfb2fa sata_deb_timing_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xccfac56d eeh_pe_configure +EXPORT_SYMBOL_GPL vmlinux 0xcd14ad91 arizona_dev_init +EXPORT_SYMBOL_GPL vmlinux 0xcd2935b7 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xcd45026d i2c_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xcd45e62b rtc_initialize_alarm +EXPORT_SYMBOL_GPL vmlinux 0xcd7365c8 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0xcd91b127 system_highpri_wq +EXPORT_SYMBOL_GPL vmlinux 0xcd959743 debugfs_create_u32_array +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 0xcdc7e3ff ata_base_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xcdca3691 nr_irqs +EXPORT_SYMBOL_GPL vmlinux 0xcde34ce3 add_memory_resource +EXPORT_SYMBOL_GPL vmlinux 0xcde42337 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0xcdf6443e serial8250_clear_and_reinit_fifos +EXPORT_SYMBOL_GPL vmlinux 0xce0fd120 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xce151a36 for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xce1d6dc2 pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0xce2e34e5 ata_sff_tf_load +EXPORT_SYMBOL_GPL vmlinux 0xce394103 iommu_tce_put_param_check +EXPORT_SYMBOL_GPL vmlinux 0xce42b512 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xce5e1239 regulator_enable +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce7a58e5 rio_unregister_scan +EXPORT_SYMBOL_GPL vmlinux 0xce8e68f1 cpuidle_register +EXPORT_SYMBOL_GPL vmlinux 0xceb1f126 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xcec41163 sdio_release_host +EXPORT_SYMBOL_GPL vmlinux 0xceda4332 irq_find_matching_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xcedc4427 pci_hp_remove_module_link +EXPORT_SYMBOL_GPL vmlinux 0xcee1641c kgdb_unregister_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf6fc576 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xcfc93173 uhci_check_and_reset_hc +EXPORT_SYMBOL_GPL vmlinux 0xcfd7f990 cpufreq_cpu_get +EXPORT_SYMBOL_GPL vmlinux 0xcfda5da7 sdio_writeb_readb +EXPORT_SYMBOL_GPL vmlinux 0xcfe327b0 xhci_init_driver +EXPORT_SYMBOL_GPL vmlinux 0xcfee8531 __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xcff7f6a6 spi_finalize_current_message +EXPORT_SYMBOL_GPL vmlinux 0xd01afd3f opal_tpo_read +EXPORT_SYMBOL_GPL vmlinux 0xd0212740 __spi_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd0442351 max8997_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd091c9a5 devm_hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd09fdb0e xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0d33b40 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0xd0e99ae6 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0xd0f8cb87 device_del +EXPORT_SYMBOL_GPL vmlinux 0xd126c121 debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xd14c96c5 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd16a7c07 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0xd196cd88 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd1b0e90a crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd1e4a98f ata_std_postreset +EXPORT_SYMBOL_GPL vmlinux 0xd1ece142 regulator_bulk_enable +EXPORT_SYMBOL_GPL vmlinux 0xd1f02c4f regulator_map_voltage_linear_range +EXPORT_SYMBOL_GPL vmlinux 0xd1f2eee2 nf_logger_find_get +EXPORT_SYMBOL_GPL vmlinux 0xd1fcdd27 usb_add_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xd2003499 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd20284f4 inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xd20bf6ba dcookie_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd217e9e6 trace_set_clr_event +EXPORT_SYMBOL_GPL vmlinux 0xd222ff04 sdio_readl +EXPORT_SYMBOL_GPL vmlinux 0xd229da16 kvm_release_hpt +EXPORT_SYMBOL_GPL vmlinux 0xd23ea80e pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0xd25205ed hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd278fb00 irq_setup_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xd2817892 __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0xd2829a33 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0xd2964819 pci_pasid_features +EXPORT_SYMBOL_GPL vmlinux 0xd29f34dc __ata_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xd2b19a93 ata_bmdma_post_internal_cmd +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd2e2ad09 hwmon_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd2edf4b7 ata_get_cmd_descript +EXPORT_SYMBOL_GPL vmlinux 0xd30c64f5 usb_hcd_platform_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xd32897af gpiochip_is_requested +EXPORT_SYMBOL_GPL vmlinux 0xd33df65c vga_default_device +EXPORT_SYMBOL_GPL vmlinux 0xd39e1716 dma_buf_export +EXPORT_SYMBOL_GPL vmlinux 0xd3a15a96 virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3b3fe28 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xd3b6fe45 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0xd3df9dd8 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd403a278 gpiod_export +EXPORT_SYMBOL_GPL vmlinux 0xd404a937 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd40b922a ata_host_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd42bf496 serial8250_get_port +EXPORT_SYMBOL_GPL vmlinux 0xd4487fd5 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xd4493b2b ping_bind +EXPORT_SYMBOL_GPL vmlinux 0xd44a5eac kgdb_register_nmi_console +EXPORT_SYMBOL_GPL vmlinux 0xd44d4cbf anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0xd47677a3 regulator_get_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xd4b629c0 pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0xd4bd66a0 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd4c4ab59 stmpe_enable +EXPORT_SYMBOL_GPL vmlinux 0xd4d74877 rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0xd4f2667c ata_sff_drain_fifo +EXPORT_SYMBOL_GPL vmlinux 0xd5056194 shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0xd50b24a2 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd5254925 regulator_set_voltage_sel_regmap +EXPORT_SYMBOL_GPL vmlinux 0xd54ab7a1 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xd54dfd7c pcibios_remove_pci_devices +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 0xd5777002 vfio_register_iommu_driver +EXPORT_SYMBOL_GPL vmlinux 0xd5886d52 pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xd5a303b2 wm8350_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xd5af7c76 dma_buf_attach +EXPORT_SYMBOL_GPL vmlinux 0xd5b15bdd fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5c62b91 usb_hcd_poll_rh_status +EXPORT_SYMBOL_GPL vmlinux 0xd5c84849 ping_hash +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd61326a9 spi_master_suspend +EXPORT_SYMBOL_GPL vmlinux 0xd63f7107 tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0xd654727d debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0xd65916b7 ata_sff_irq_on +EXPORT_SYMBOL_GPL vmlinux 0xd6597313 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd6a43677 opal_async_release_token +EXPORT_SYMBOL_GPL vmlinux 0xd6d9c42e pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd6e5a159 shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xd6feefa5 agp_num_entries +EXPORT_SYMBOL_GPL vmlinux 0xd703be49 rio_dev_get +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd725c420 register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xd737b530 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xd762b078 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xd768e985 regulator_has_full_constraints +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd78da0b5 dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xd79c2169 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xd7cd77c7 rio_request_inb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xd7d41483 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0xd7d79132 put_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0xd7e4449e srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0xd7f18574 event_triggers_post_call +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 0xd8263870 mmu_slb_size +EXPORT_SYMBOL_GPL vmlinux 0xd828a786 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xd82e08c1 led_trigger_register +EXPORT_SYMBOL_GPL vmlinux 0xd831f2f9 irq_domain_associate +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd87fc0a0 usb_amd_prefetch_quirk +EXPORT_SYMBOL_GPL vmlinux 0xd88f90bb ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd8a1de99 cpufreq_cpu_put +EXPORT_SYMBOL_GPL vmlinux 0xd8a43d26 of_get_nand_bus_width +EXPORT_SYMBOL_GPL vmlinux 0xd8b25167 wm5110_patch +EXPORT_SYMBOL_GPL vmlinux 0xd8c94458 ata_eh_qc_complete +EXPORT_SYMBOL_GPL vmlinux 0xd8cc6634 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xd906582e devm_usb_put_phy +EXPORT_SYMBOL_GPL vmlinux 0xd90edb5f ata_eh_qc_retry +EXPORT_SYMBOL_GPL vmlinux 0xd9107c66 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0xd9300d93 devres_find +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 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd97878a7 mm_iommu_preregistered +EXPORT_SYMBOL_GPL vmlinux 0xd9aafca7 of_get_nand_ecc_mode +EXPORT_SYMBOL_GPL vmlinux 0xd9d6619c wm8350_device_exit +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda064dac usb_ep0_reinit +EXPORT_SYMBOL_GPL vmlinux 0xda15ebb2 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0xda7511da rio_route_get_entry +EXPORT_SYMBOL_GPL vmlinux 0xda7e2759 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xda81ea9d wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0xdab753cd __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xdae3b117 fsstack_copy_inode_size +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 0xdb16b0ae get_device +EXPORT_SYMBOL_GPL vmlinux 0xdb22aecc tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xdb25ba3b bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0xdb32b015 arizona_free_irq +EXPORT_SYMBOL_GPL vmlinux 0xdb3cd8ec mbox_request_channel_byname +EXPORT_SYMBOL_GPL vmlinux 0xdb44917a irq_domain_free_fwnode +EXPORT_SYMBOL_GPL vmlinux 0xdb5c5fb7 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0xdb67b703 inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0xdb6c741d scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xdb82519f devm_regulator_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdb91e05c tracepoint_probe_register +EXPORT_SYMBOL_GPL vmlinux 0xdbbb627f phy_pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xdbbf0761 sdio_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xdbd2cb72 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0xdbd42692 of_reset_control_get +EXPORT_SYMBOL_GPL vmlinux 0xdbdebaab sdio_memcpy_toio +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdc30806c gpiochip_free_own_desc +EXPORT_SYMBOL_GPL vmlinux 0xdc7b28ab nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0xdc825d6c usb_amd_quirk_pll_disable +EXPORT_SYMBOL_GPL vmlinux 0xdc859e77 clockevents_unbind_device +EXPORT_SYMBOL_GPL vmlinux 0xdc90c707 wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdcc2bc3e remove_irq +EXPORT_SYMBOL_GPL vmlinux 0xdcd17cf3 usb_get_status +EXPORT_SYMBOL_GPL vmlinux 0xdce36286 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0xdce4c674 da903x_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xdce89ed7 ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xdd0ecf5d irq_remove_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xdd17ffec trace_clock +EXPORT_SYMBOL_GPL vmlinux 0xdd1a1a81 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0xdd1d6538 rtc_irq_set_state +EXPORT_SYMBOL_GPL vmlinux 0xdd1d920b cpufreq_frequency_table_verify +EXPORT_SYMBOL_GPL vmlinux 0xdd2efc0f ring_buffer_reset_cpu +EXPORT_SYMBOL_GPL vmlinux 0xdd327458 regulator_set_bypass_regmap +EXPORT_SYMBOL_GPL vmlinux 0xdd362047 crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xdd391eff profile_event_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdd4f7c92 pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0xdd57e2b5 percpu_ref_exit +EXPORT_SYMBOL_GPL vmlinux 0xdd5e37d8 wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xdd6bab02 debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xdd729424 usb_anchor_empty +EXPORT_SYMBOL_GPL vmlinux 0xdd78a41b sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0xdda589e0 bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0xddaa2354 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xdde9d71f vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xddf15f6b usb_get_phy +EXPORT_SYMBOL_GPL vmlinux 0xddf4cca6 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xde0ad5b4 rio_request_inb_mbox +EXPORT_SYMBOL_GPL vmlinux 0xde1de2c3 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xde1ee0f6 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0xde3f2f4e usb_hub_find_child +EXPORT_SYMBOL_GPL vmlinux 0xde49a0e2 of_irq_find_parent +EXPORT_SYMBOL_GPL vmlinux 0xde64d28e regulator_register +EXPORT_SYMBOL_GPL vmlinux 0xde7a8990 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xde81c8db eeh_pe_get_state +EXPORT_SYMBOL_GPL vmlinux 0xde9109f7 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0xde9becdb devm_rtc_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xde9e2403 memory_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xdea6d042 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xdeb2c236 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xdebfd1bc pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0xded96ca2 percpu_up_write +EXPORT_SYMBOL_GPL vmlinux 0xdedad3a4 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0xdf0c3252 list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf6a03c5 relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xdf748231 rq_flush_dcache_pages +EXPORT_SYMBOL_GPL vmlinux 0xdf848cd0 virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0xdf9a26e7 nvdimm_create +EXPORT_SYMBOL_GPL vmlinux 0xdfe4dc48 dev_attr_em_message_type +EXPORT_SYMBOL_GPL vmlinux 0xdff0d15f tty_find_polling_driver +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe009f496 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xe0268214 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe0334783 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0xe059b7ff vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe089cfcc agp_memory_reserved +EXPORT_SYMBOL_GPL vmlinux 0xe09336e7 cpufreq_register_driver +EXPORT_SYMBOL_GPL vmlinux 0xe09ca6d7 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0xe09e3183 smpboot_unregister_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0xe0ad4985 usb_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xe0e046f1 ata_sas_port_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe0fa6e5e of_get_nand_ecc_strength +EXPORT_SYMBOL_GPL vmlinux 0xe105b188 __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0xe139a46a usb_choose_configuration +EXPORT_SYMBOL_GPL vmlinux 0xe13d2468 devm_regulator_put +EXPORT_SYMBOL_GPL vmlinux 0xe14920f1 i2c_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0xe1543f51 put_device +EXPORT_SYMBOL_GPL vmlinux 0xe159b332 dma_get_slave_caps +EXPORT_SYMBOL_GPL vmlinux 0xe1754029 tc3589x_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1997c55 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0xe1a5757f da9055_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xe1bd6c99 rio_init_mports +EXPORT_SYMBOL_GPL vmlinux 0xe1c0aa11 rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xe1c8b424 skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0xe1ed1887 pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xe1ff1b8d PageHuge +EXPORT_SYMBOL_GPL vmlinux 0xe23b6342 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0xe24ea557 rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0xe250242e fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0xe28a1d1a sdhci_pci_spt_drive_strength +EXPORT_SYMBOL_GPL vmlinux 0xe2a6a1db phy_create +EXPORT_SYMBOL_GPL vmlinux 0xe2a843a2 of_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xe2ac096c dma_buf_map_attachment +EXPORT_SYMBOL_GPL vmlinux 0xe2b9577d blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xe2c9c189 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe32630f2 usb_unlink_urb +EXPORT_SYMBOL_GPL vmlinux 0xe339d1bb da9052_enable_irq +EXPORT_SYMBOL_GPL vmlinux 0xe34b829f crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0xe3517edf ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0xe3523faa __inet_twsk_schedule +EXPORT_SYMBOL_GPL vmlinux 0xe3a1000b ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xe3cad45e remove_phb_dynamic +EXPORT_SYMBOL_GPL vmlinux 0xe3cf8995 get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0xe3d7750e btree_visitor +EXPORT_SYMBOL_GPL vmlinux 0xe3f6497d dma_buf_mmap +EXPORT_SYMBOL_GPL vmlinux 0xe3f9a218 cpufreq_generic_init +EXPORT_SYMBOL_GPL vmlinux 0xe402df3a mmc_regulator_set_vqmmc +EXPORT_SYMBOL_GPL vmlinux 0xe40b9caa inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe41d066c blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49f4fa8 crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xe4b48f16 led_init_core +EXPORT_SYMBOL_GPL vmlinux 0xe4c031f8 btree_merge +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4c759d3 phy_remove_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe4d1939f of_usb_host_tpl_support +EXPORT_SYMBOL_GPL vmlinux 0xe4da60ee gpiod_get_direction +EXPORT_SYMBOL_GPL vmlinux 0xe4e38a7f sata_sff_hardreset +EXPORT_SYMBOL_GPL vmlinux 0xe4e544ff blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xe51c040f register_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe53b5b39 mmc_regulator_get_supply +EXPORT_SYMBOL_GPL vmlinux 0xe53d3f3e srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe542ce78 mpc8xxx_spi_tx_buf_u16 +EXPORT_SYMBOL_GPL vmlinux 0xe5540302 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0xe5663cb1 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe59c49f7 bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xe5f7a484 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xe606d6c1 md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0xe6192071 pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe64583bf driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe648868c xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe69273d9 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe69b9c27 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6c84ac2 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0xe6dde13c pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6e3facd i2c_unlock_adapter +EXPORT_SYMBOL_GPL vmlinux 0xe6ea53e1 usb_get_phy_dev +EXPORT_SYMBOL_GPL vmlinux 0xe6ee0577 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe7024d4c nvdimm_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xe7272231 ipv6_opt_accepted +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 0xe791976a regcache_sync_region +EXPORT_SYMBOL_GPL vmlinux 0xe791c39c device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xe7960909 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0xe79f1ca5 extcon_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe7a232e0 __rio_local_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xe7c679f2 page_endio +EXPORT_SYMBOL_GPL vmlinux 0xe7e14086 regulator_get_hardware_vsel_register +EXPORT_SYMBOL_GPL vmlinux 0xe7f18b3c threads_per_subcore +EXPORT_SYMBOL_GPL vmlinux 0xe7f38b91 crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe80bede0 tc3589x_block_write +EXPORT_SYMBOL_GPL vmlinux 0xe818b32b ata_bmdma_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe833198a crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0xe838990e debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0xe83a420a swiotlb_tbl_map_single +EXPORT_SYMBOL_GPL vmlinux 0xe845290b debugfs_create_x16 +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 0xe86ca1b3 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xe874d2a3 use_mm +EXPORT_SYMBOL_GPL vmlinux 0xe8752592 serial8250_do_set_mctrl +EXPORT_SYMBOL_GPL vmlinux 0xe876e0c6 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0xe89bd243 ata_sff_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xe8a55f05 irq_domain_xlate_twocell +EXPORT_SYMBOL_GPL vmlinux 0xe8b263d0 mmc_get_ext_csd +EXPORT_SYMBOL_GPL vmlinux 0xe8d3a2de iommu_take_ownership +EXPORT_SYMBOL_GPL vmlinux 0xe8e5fb99 blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0xe8f46963 __tracepoint_rpm_idle +EXPORT_SYMBOL_GPL vmlinux 0xe9080c42 wm8997_patch +EXPORT_SYMBOL_GPL vmlinux 0xe915cc0b crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xe921dded iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0xe93a5473 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xe93bc79f __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe94998de blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0xe9506579 iommu_tce_direction +EXPORT_SYMBOL_GPL vmlinux 0xe962060d usb_get_current_frame_number +EXPORT_SYMBOL_GPL vmlinux 0xe96f12fa usb_reset_endpoint +EXPORT_SYMBOL_GPL vmlinux 0xe971b9fd sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xe979439d tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xe9a01bb6 sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xe9d1b7cf irq_to_pcap +EXPORT_SYMBOL_GPL vmlinux 0xe9d57c6a uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe9dcb02e hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea3b912b tps6586x_read +EXPORT_SYMBOL_GPL vmlinux 0xea418e0f atapi_cmd_type +EXPORT_SYMBOL_GPL vmlinux 0xea628c20 bstr_printf +EXPORT_SYMBOL_GPL vmlinux 0xea882225 tps6586x_write +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea90ee77 kvmppc_invalidate_hpte +EXPORT_SYMBOL_GPL vmlinux 0xea9cdc4f fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0xeaf1b673 extcon_dev_free +EXPORT_SYMBOL_GPL vmlinux 0xeaff6623 of_get_display_timing +EXPORT_SYMBOL_GPL vmlinux 0xeb14afe2 devm_regulator_bulk_register_supply_alias +EXPORT_SYMBOL_GPL vmlinux 0xeb193398 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xeb218cb2 ata_pci_device_suspend +EXPORT_SYMBOL_GPL vmlinux 0xeb2552a3 default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xeb34f353 mmu_notifier_unregister_no_release +EXPORT_SYMBOL_GPL vmlinux 0xeb52c456 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0xeb577380 pcibios_claim_one_bus +EXPORT_SYMBOL_GPL vmlinux 0xeb6b36d4 dma_buf_kunmap +EXPORT_SYMBOL_GPL vmlinux 0xeb6d9908 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xeb6dca49 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0xeb7d183e jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeb8a6c5b dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xeb8ae736 klist_init +EXPORT_SYMBOL_GPL vmlinux 0xebe1017e fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xebf7be79 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xebff3367 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0xec08a406 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xec1b043e regulator_suspend_prepare +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec27db8f wm831x_device_shutdown +EXPORT_SYMBOL_GPL vmlinux 0xec474065 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xec7c6d06 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0xec864236 percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xec88281c ata_sff_thaw +EXPORT_SYMBOL_GPL vmlinux 0xecc79ea8 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0xed118806 pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0xed2287d0 of_platform_default_populate +EXPORT_SYMBOL_GPL vmlinux 0xed2f4d1d tc3589x_reg_write +EXPORT_SYMBOL_GPL vmlinux 0xed7961e0 ohci_suspend +EXPORT_SYMBOL_GPL vmlinux 0xed81daf9 usb_hcd_is_primary_hcd +EXPORT_SYMBOL_GPL vmlinux 0xed981a16 cpu_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xeda9b172 ata_eh_freeze_port +EXPORT_SYMBOL_GPL vmlinux 0xedac0c07 unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xedc56073 kvmppc_clear_ref_hpte +EXPORT_SYMBOL_GPL vmlinux 0xedf30c10 kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0xedf779cf find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xee06af82 agp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0xee09f249 driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xee0d918b sysfs_remove_device_from_node +EXPORT_SYMBOL_GPL vmlinux 0xee34f80a of_thermal_get_trip_points +EXPORT_SYMBOL_GPL vmlinux 0xee4e7388 usb_lock_device_for_reset +EXPORT_SYMBOL_GPL vmlinux 0xee540dac crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0xee63c810 device_show_int +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 0xee98e418 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0xeea6cd1c shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0xeeaf073a console_drivers +EXPORT_SYMBOL_GPL vmlinux 0xeec20e54 of_pci_address_to_resource +EXPORT_SYMBOL_GPL vmlinux 0xeee22cb8 io_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeee40260 tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0xeee9c4da gpiod_set_raw_array_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xef256b4e wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0xef2edca3 register_cxl_calls +EXPORT_SYMBOL_GPL vmlinux 0xef646d6a cpufreq_cpu_get_raw +EXPORT_SYMBOL_GPL vmlinux 0xef64f1ac bus_get_kset +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 0xef928b39 usb_hcd_unmap_urb_setup_for_dma +EXPORT_SYMBOL_GPL vmlinux 0xefa2c27d register_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0xefa6b855 ata_sas_port_alloc +EXPORT_SYMBOL_GPL vmlinux 0xefb2e386 crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xefdfeca2 ata_pci_device_resume +EXPORT_SYMBOL_GPL vmlinux 0xefe0e46e pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0xf00886fc sdio_memcpy_fromio +EXPORT_SYMBOL_GPL vmlinux 0xf00aa63e shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xf00e9002 register_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xf01e4b23 __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0xf036a061 __regmap_init +EXPORT_SYMBOL_GPL vmlinux 0xf03b3569 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0446c24 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xf044fe78 perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xf05db61a rio_dma_prep_xfer +EXPORT_SYMBOL_GPL vmlinux 0xf06f6fdc pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf07214ce md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0d3e873 usb_disable_ltm +EXPORT_SYMBOL_GPL vmlinux 0xf0da3932 __rio_local_read_config_32 +EXPORT_SYMBOL_GPL vmlinux 0xf0ebd4eb usb_unlocked_enable_lpm +EXPORT_SYMBOL_GPL vmlinux 0xf0f5a20e ata_pio_need_iordy +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf1219695 usb_autopm_get_interface_no_resume +EXPORT_SYMBOL_GPL vmlinux 0xf129cd4a ata_sff_data_xfer32 +EXPORT_SYMBOL_GPL vmlinux 0xf14e4d24 __tracepoint_kfree_skb +EXPORT_SYMBOL_GPL vmlinux 0xf158f170 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xf15c865c unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xf182f9b1 usb_free_coherent +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +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 0xf1d83aa5 key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0xf1f37149 devm_phy_create +EXPORT_SYMBOL_GPL vmlinux 0xf1fde4dd hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf1ffb152 regcache_cache_only +EXPORT_SYMBOL_GPL vmlinux 0xf20f5f89 sdio_set_block_size +EXPORT_SYMBOL_GPL vmlinux 0xf2114c9e crypto_aes_set_key +EXPORT_SYMBOL_GPL vmlinux 0xf21c511c __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf23a1055 tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xf23ad2fd crypto_unregister_alg +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf288d091 ata_dummy_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xf2a3d058 input_class +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2b74223 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0xf2c3b611 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xf2cf203b blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0xf2f62a46 crypto_register_akcipher +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 0xf331236f btree_geo32 +EXPORT_SYMBOL_GPL vmlinux 0xf33dc43c sprint_OID +EXPORT_SYMBOL_GPL vmlinux 0xf3423d51 power_supply_register_no_ws +EXPORT_SYMBOL_GPL vmlinux 0xf358a3f5 kthread_park +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf38d0b50 virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0xf39146d3 usb_free_urb +EXPORT_SYMBOL_GPL vmlinux 0xf3b451ca kdb_poll_funcs +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3cdd636 ata_sff_data_xfer_noirq +EXPORT_SYMBOL_GPL vmlinux 0xf3d872a3 usb_hc_died +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf3f51b59 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xf3f5263c regmap_get_val_bytes +EXPORT_SYMBOL_GPL vmlinux 0xf4504dd6 __lock_page_killable +EXPORT_SYMBOL_GPL vmlinux 0xf464dcd4 rtc_class_open +EXPORT_SYMBOL_GPL vmlinux 0xf4948dbb rdev_get_drvdata +EXPORT_SYMBOL_GPL vmlinux 0xf494f618 mmc_regulator_get_ocrmask +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf49b316f pwm_disable +EXPORT_SYMBOL_GPL vmlinux 0xf4a930d0 ata_eh_thaw_port +EXPORT_SYMBOL_GPL vmlinux 0xf4ab6547 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf4ae20f7 regulator_set_mode +EXPORT_SYMBOL_GPL vmlinux 0xf4c6a0b0 register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0xf4cc07d4 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0xf4e12ff0 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xf4faa239 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf50b6364 pcibios_find_pci_bus +EXPORT_SYMBOL_GPL vmlinux 0xf50ce00a of_dma_controller_free +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf517d2cf usb_autopm_put_interface +EXPORT_SYMBOL_GPL vmlinux 0xf5379771 net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xf53d32ee ata_sff_softreset +EXPORT_SYMBOL_GPL vmlinux 0xf541ae90 dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0xf5425650 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf553318d cpuidle_pause_and_lock +EXPORT_SYMBOL_GPL vmlinux 0xf58b9716 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf58d30c2 kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xf59e01f0 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5b9332d fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xf5e64a4b unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xf5e75926 disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xf5e86e1a devfreq_event_enable_edev +EXPORT_SYMBOL_GPL vmlinux 0xf5fda7b9 devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0xf685b43a dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xf6a2d95b led_classdev_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6b8d3f4 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0xf6c03ba0 vfio_virqfd_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6c3be7e ehci_resume +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +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 0xf706dbc5 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xf71141f8 fixed_phy_register +EXPORT_SYMBOL_GPL vmlinux 0xf7365d8b usb_hcd_resume_root_hub +EXPORT_SYMBOL_GPL vmlinux 0xf7384bd8 mpc8xxx_spi_tx_buf_u32 +EXPORT_SYMBOL_GPL vmlinux 0xf780c3ff __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0xf7a2de26 fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf7f58fe7 arizona_of_get_type +EXPORT_SYMBOL_GPL vmlinux 0xf80a503f platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf82f3657 work_on_cpu +EXPORT_SYMBOL_GPL vmlinux 0xf837e0eb unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf84ad0e5 ata_dev_pair +EXPORT_SYMBOL_GPL vmlinux 0xf84cd04e add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xf85d15af xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0xf8802492 print_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xf8817929 wm8350_gpio_config +EXPORT_SYMBOL_GPL vmlinux 0xf88633ce usb_get_maximum_speed +EXPORT_SYMBOL_GPL vmlinux 0xf88a4743 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0xf88c07d6 fwnode_handle_put +EXPORT_SYMBOL_GPL vmlinux 0xf89de47f crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0xf8a1f486 rio_release_outb_dbell +EXPORT_SYMBOL_GPL vmlinux 0xf8a206db devfreq_event_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xf8a53d88 of_irq_get_byname +EXPORT_SYMBOL_GPL vmlinux 0xf8bd6af0 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0xf8d12818 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xf8d12cb0 tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0xf8e18c00 tty_port_install +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 0xf9290669 tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0xf92ce956 kdb_printf +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf9379913 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf9780999 ata_dev_set_feature +EXPORT_SYMBOL_GPL vmlinux 0xf9833a6f irq_get_domain_generic_chip +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf995827b crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xf9962bca __add_pages +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b140ad devm_of_phy_get +EXPORT_SYMBOL_GPL vmlinux 0xf9ca3160 ata_id_xfermask +EXPORT_SYMBOL_GPL vmlinux 0xf9d2ae4c sata_pmp_qc_defer_cmd_switch +EXPORT_SYMBOL_GPL vmlinux 0xf9e9f156 usb_register_dev +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xf9f5d2f3 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0xf9fb8e1a dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xfa027b88 add_to_page_cache_lru +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa6065bf ata_scsi_change_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0xfa60a221 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0xfa721ff5 wm8400_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9264d7 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0xfaa0da0f leds_list_lock +EXPORT_SYMBOL_GPL vmlinux 0xfab60503 klist_iter_init_node +EXPORT_SYMBOL_GPL vmlinux 0xfae08e67 ata_host_activate +EXPORT_SYMBOL_GPL vmlinux 0xfafc4056 platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0xfb0047f6 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0xfb12efd6 pwm_config +EXPORT_SYMBOL_GPL vmlinux 0xfb16fd54 pcibios_map_io_space +EXPORT_SYMBOL_GPL vmlinux 0xfb23829f bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb342e73 wm831x_regmap_config +EXPORT_SYMBOL_GPL vmlinux 0xfb44a7a1 opal_ipmi_recv +EXPORT_SYMBOL_GPL vmlinux 0xfb52b77d __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xfb5df19c mmput +EXPORT_SYMBOL_GPL vmlinux 0xfb615010 tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7cf2c3 pcibios_add_pci_devices +EXPORT_SYMBOL_GPL vmlinux 0xfb9b5cff pwm_enable +EXPORT_SYMBOL_GPL vmlinux 0xfba9a1b5 of_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xfbad75f3 ata_dev_disable +EXPORT_SYMBOL_GPL vmlinux 0xfbbb78c1 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbd3a24d opal_message_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0xfbd4e7f5 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xfbd9c7f8 fb_deferred_io_open +EXPORT_SYMBOL_GPL vmlinux 0xfbdf0345 devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xfbf28768 da903x_writes +EXPORT_SYMBOL_GPL vmlinux 0xfbf9fd35 gpiochip_remove +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc158274 __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0xfc1720ef br_fdb_test_addr_hook +EXPORT_SYMBOL_GPL vmlinux 0xfc201b66 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0xfc2f1085 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xfc3da944 __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0xfc768ddc fat_scan +EXPORT_SYMBOL_GPL vmlinux 0xfc8e21b8 hash_page_mm +EXPORT_SYMBOL_GPL vmlinux 0xfcb5ed0d __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xfcb9366b od_register_powersave_bias_handler +EXPORT_SYMBOL_GPL vmlinux 0xfcdc2ccd pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xfcde153c wm5102_i2c_regmap +EXPORT_SYMBOL_GPL vmlinux 0xfd1649ad device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0xfd28640f rio_dev_put +EXPORT_SYMBOL_GPL vmlinux 0xfd3553d9 gpiod_export_link +EXPORT_SYMBOL_GPL vmlinux 0xfd39143f __devm_regmap_init_mmio_clk +EXPORT_SYMBOL_GPL vmlinux 0xfd3a7e45 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0xfd3ccfb2 of_get_pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0xfd433520 gpiod_get_value_cansleep +EXPORT_SYMBOL_GPL vmlinux 0xfd44e705 blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd94fd64 mpc8xxx_spi_tx_buf_u8 +EXPORT_SYMBOL_GPL vmlinux 0xfdb8c20e pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0xfddd285f mm_iommu_ua_to_hpa +EXPORT_SYMBOL_GPL vmlinux 0xfdf3e9b4 regmap_bulk_write +EXPORT_SYMBOL_GPL vmlinux 0xfdf67069 sata_pmp_port_ops +EXPORT_SYMBOL_GPL vmlinux 0xfe125dca zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0xfe1a8a6f iommu_release_ownership +EXPORT_SYMBOL_GPL vmlinux 0xfe54f332 __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0xfe67dbe7 mmc_send_tuning +EXPORT_SYMBOL_GPL vmlinux 0xfe845413 to_nd_desc +EXPORT_SYMBOL_GPL vmlinux 0xfe87ac5b tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0xfe990052 gpio_free +EXPORT_SYMBOL_GPL vmlinux 0xfeb3d944 swiotlb_tbl_unmap_single +EXPORT_SYMBOL_GPL vmlinux 0xfec3e436 vfio_add_group_dev +EXPORT_SYMBOL_GPL vmlinux 0xfed11ed1 usb_mon_deregister +EXPORT_SYMBOL_GPL vmlinux 0xfee13c6e tps65912_reg_read +EXPORT_SYMBOL_GPL vmlinux 0xfee9d13f relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xfeecfd3e ata_sff_dma_pause +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 0xff130f95 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0xff1be8d3 rdev_get_dev +EXPORT_SYMBOL_GPL vmlinux 0xff2fa3e2 tps65217_clear_bits +EXPORT_SYMBOL_GPL vmlinux 0xff2fc1b8 rio_mport_write_config_8 +EXPORT_SYMBOL_GPL vmlinux 0xff341987 nvdimm_bus_attribute_group +EXPORT_SYMBOL_GPL vmlinux 0xff3c4504 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0xff4d9fc6 phy_create_lookup +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff664101 rio_get_asm +EXPORT_SYMBOL_GPL vmlinux 0xff6ba215 serial8250_release_dma +EXPORT_SYMBOL_GPL vmlinux 0xff705358 usb_get_hcd +EXPORT_SYMBOL_GPL vmlinux 0xff87d6e8 fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0xffb4fdab tps6586x_clr_bits +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst +EXPORT_SYMBOL_GPL vmlinux 0xffbe78f3 bsg_register_queue +EXPORT_SYMBOL_GPL vmlinux 0xffbfa224 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0xffcaedd7 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0xffdcd697 md_stop +EXPORT_SYMBOL_GPL vmlinux 0xffe0e2bc regmap_raw_write_async only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/ppc64el/generic.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/ppc64el/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu/IBM 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/ppc64el/generic.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/ppc64el/generic.modules @@ -0,0 +1,4255 @@ +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 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/s390x/generic +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/s390x/generic @@ -0,0 +1,8998 @@ +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 0x1f1ed4c3 rdma_resolve_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x3378075e rdma_addr_find_dmac_by_grh +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x4dbf50fc rdma_copy_addr +EXPORT_SYMBOL drivers/infiniband/core/ib_addr 0x6b968791 rdma_addr_cancel +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 0xe8bce817 rdma_translate_ip +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x16875a59 ib_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x17cc290c ib_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x47093457 ib_send_cm_apr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x4860b5a9 ib_send_cm_dreq +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x59c75f42 ib_send_cm_sidr_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x6ad6b439 ib_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x73c5183e ib_cm_notify +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x78b29c73 ib_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x7df9db47 ib_send_cm_rtu +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x895f0df6 ib_send_cm_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0x8f7d58e3 ib_send_cm_drep +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xa0f0fdd7 ib_send_cm_rej +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xae278943 ib_cm_insert_listen +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xbbf01ea9 ib_send_cm_req +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd012650a ib_send_cm_mra +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xd69cac31 cm_class +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe68c66e2 ib_send_cm_lap +EXPORT_SYMBOL drivers/infiniband/core/ib_cm 0xe9c53d9c ib_send_cm_sidr_rep +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x01619604 ib_map_mr_sg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x049a50b2 ib_open_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x06830b9a ib_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x08d791e6 ib_attach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b429565 ib_register_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0b5959b0 ib_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c1b9ac1 ib_ud_header_unpack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0c5f58dc ib_get_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0d7f03f0 ibnl_multicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x0e6c09ff ib_fmr_pool_map_phys +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x15278d94 ib_query_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1a76fbed ib_register_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1bdc8428 ib_umem_page_count +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1c376384 ib_alloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x1e491a04 ib_unmap_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x26202c87 ib_find_gid_by_filter +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2d5cac48 ib_unregister_event_handler +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2e3e0379 ib_query_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ebbf2af ib_get_dma_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x2ed6e386 ib_ud_header_pack +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x33fa73ee ibnl_put_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x364ec87b ib_find_cached_gid_by_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3bfd014c ib_query_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x3c1a491f ib_get_net_dev_by_params +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4189914c ib_modify_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x42940380 ib_sg_to_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x43505c8d ib_query_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x437516da ib_create_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x4dda5740 ib_umem_odp_unmap_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50aec24b ib_find_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x50dbc447 ib_flush_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x51bdc45c ib_resolve_eth_dmac +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x52131b39 ib_dealloc_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 0x58998cb4 ib_unregister_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5ab482bd ib_fmr_pool_unmap +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5c9d5b66 ib_create_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x5f2d9941 ib_resize_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x63bcaf27 ib_dispatch_event +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x64ad424b ib_alloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x671cb794 ib_alloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x6c61efbd ib_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x70df2d56 ib_dealloc_mw +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x725c897a ib_create_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7857e406 ib_destroy_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x78ff38c4 ib_query_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7aa73568 ib_get_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7ae64cc9 zgid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x7d918baa ib_check_mr_status +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x82721509 ib_query_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8640429d ib_destroy_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x86c3437f ib_detach_mcast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x871ab7e6 ib_dealloc_fmr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ce99117 ibnl_add_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8d604d72 ib_alloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x8ef79ced ib_create_flow +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x92a05358 ib_get_cached_lmc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x93f27df9 ib_find_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x990583fc ib_init_ah_from_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x99bc7c89 ib_umem_release +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9a300e08 ib_modify_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0x9bb7ff93 ib_query_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa0322e08 ib_set_client_data +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa6f8108c ibnl_chk_listeners +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xa88e0c8e ib_umem_copy_from +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab0a3467 mult_to_ib_rate +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xab6914ad ib_alloc_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xacd3777b ib_umem_get +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb017c607 ib_find_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb54da738 ib_find_exact_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xb93a52b0 ib_rate_to_mbps +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xba12771e ib_create_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbadd8259 ib_rate_to_mult +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbb93314d ib_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xbcd5d170 ibnl_unicast +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc32b59ff ib_destroy_fmr_pool +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc5bd71f6 ib_destroy_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc610740a ib_create_cq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc67f14a5 ibnl_remove_client +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xc918146a ib_find_cached_pkey +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcce13a1d ib_modify_device +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xce5ab28a ibnl_put_attr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xcfa2a09f ib_event_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd1c41cb8 ib_close_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd2506c0a ib_dealloc_pd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd542384e ib_query_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd75e40e2 ib_create_srq +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd86fe6a0 ib_modify_ah +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xd9b537d2 ib_modify_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xdea42124 ib_dealloc_xrcd +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe20019d3 ib_alloc_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5173392 ib_umem_odp_map_dma_pages +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xe5840ec6 ib_wc_status_msg +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xea172785 ib_modify_port +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xeab7ecac ib_get_cached_gid +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xed42de56 ib_dereg_mr +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xef64ecc6 rdma_port_get_link_layer +EXPORT_SYMBOL drivers/infiniband/core/ib_core 0xf822bc73 ib_destroy_cq +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 0x2f0ea69e ib_response_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x31633e0a ib_free_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x42b83170 ib_process_mad_wc +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x4cdd3d40 ib_get_rmpp_segment +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x533155ec ib_mad_kernel_rmpp_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x622c611c 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 0x8334ba55 ib_register_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x8fcd4311 ib_redirect_mad_qp +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0x921fd6af ib_post_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xaae74ec6 ib_create_send_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xb969be03 ib_modify_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xbf792bdc ib_register_mad_snoop +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xcb640342 ib_unregister_mad_agent +EXPORT_SYMBOL drivers/infiniband/core/ib_mad 0xeec8090d ib_cancel_mad +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x052c116a ib_sa_get_mcmember_rec +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x2574529a ib_init_ah_from_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x27afd6fc ib_sa_register_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x6ba886d7 ib_sa_pack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x80932c95 ib_init_ah_from_mcmember +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x88523123 ib_sa_unpack_path +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x88853512 ib_sa_path_rec_get +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0x90d71867 ib_sa_guid_info_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xab400342 ib_sa_service_rec_query +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xb088d5e9 ib_sa_unregister_client +EXPORT_SYMBOL drivers/infiniband/core/ib_sa 0xc59c138f ib_sa_join_multicast +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 0x0a4b7cc3 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 0x9eb11d07 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 0x02eec8a0 iwpm_ack_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x0ff9f042 iwpm_remove_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x12d1bdd2 iw_destroy_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x1a63bcba iw_create_cm_id +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x38ba1feb iw_cm_disconnect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x3d0acc48 iwpm_add_and_query_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x4f859b69 iw_cm_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x5da59312 iwpm_register_pid +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x664c7010 iwpm_register_pid_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 0x7e3bbc2b iw_cm_reject +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0x7f46f072 iwpm_mapping_error_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 0xa0fed9e6 iwpm_add_mapping_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xa2f70a42 iw_cm_accept +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xd447b24a iwpm_create_mapinfo +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xe21864a5 iw_cm_listen +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xef73c935 iw_cm_connect +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf380aa0f iwpm_add_and_query_mapping +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf5405f35 iwpm_mapping_info_cb +EXPORT_SYMBOL drivers/infiniband/core/iw_cm 0xf96cea75 iwpm_remote_info_cb +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0760f13b rdma_resolve_route +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x0b4823e5 rdma_set_afonly +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x1f2c8966 rdma_resolve_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x2892bbad rdma_destroy_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x3cf50528 rdma_set_ib_paths +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x418c86e6 rdma_leave_multicast +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x47a653a4 rdma_destroy_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x48f74448 rdma_listen +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x51fe30a6 rdma_init_qp_attr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x545a2cf6 rdma_create_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x7fa15a41 rdma_connect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x8c4f5848 rdma_bind_addr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x907df803 rdma_event_msg +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x90c9bc9f rdma_reject +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0x9b99c245 rdma_disconnect +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xa5597d6e rdma_accept +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xad778d07 rdma_set_service_type +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xd0da7f39 rdma_get_service_id +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xe84bfd23 rdma_set_reuseaddr +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf119fd23 rdma_create_qp +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf45f4855 rdma_notify +EXPORT_SYMBOL drivers/infiniband/core/rdma_cm 0xf6dda28e rdma_join_multicast +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 0x136c898c closure_sub +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 0x3972d8f1 closure_wait +EXPORT_SYMBOL drivers/md/bcache/bcache 0x3b42669b bch_bkey_try_merge +EXPORT_SYMBOL drivers/md/bcache/bcache 0x58510c73 closure_put +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 0xbbf73b16 bch_btree_keys_free +EXPORT_SYMBOL drivers/md/bcache/bcache 0xcb47df76 bch_btree_iter_init +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 0xfa312439 closure_sync +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 0x273f7b4a dm_dirty_log_destroy +EXPORT_SYMBOL drivers/md/dm-log 0x7641a93b dm_dirty_log_create +EXPORT_SYMBOL drivers/md/dm-log 0xe50a5834 dm_dirty_log_type_register +EXPORT_SYMBOL drivers/md/dm-log 0xfe1108c4 dm_dirty_log_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0x2ac52d5e dm_snap_cow +EXPORT_SYMBOL drivers/md/dm-snapshot 0x5732f5b1 dm_exception_store_destroy +EXPORT_SYMBOL drivers/md/dm-snapshot 0xac07a54e dm_snap_origin +EXPORT_SYMBOL drivers/md/dm-snapshot 0xdc6559c7 dm_exception_store_type_unregister +EXPORT_SYMBOL drivers/md/dm-snapshot 0xee44d78e dm_exception_store_type_register +EXPORT_SYMBOL drivers/md/dm-snapshot 0xf348e99f dm_exception_store_create +EXPORT_SYMBOL drivers/md/raid456 0xc1a0dc5d raid5_set_cache_size +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x00d19e5b mlx4_gen_pkey_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03289d62 mlx4_is_slave_active +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d0fb56a mlx4_release_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0fe78cba mlx4_gen_guid_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x10fb4efb mlx4_SET_PORT_qpn_calc +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x12d04a98 set_and_calc_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1f4baaac mlx4_gen_port_state_change_eqe +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x208e340b mlx4_assign_eq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2e5bf4be mlx4_put_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x313fa42e mlx4_get_parav_qkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f37487f mlx4_get_slave_pkey_gid_tbl_len +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b5a81ad mlx4_ALLOCATE_VPP_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x53a5ffc5 mlx4_get_roce_gid_from_slave +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55c931d8 mlx4_is_eq_vector_valid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x55f563dd get_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x591a06cb mlx4_SET_PORT_fcs_check +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5a543b01 mlx4_SET_MCAST_FLTR +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6392f686 mlx4_SET_VPORT_QOS_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x640c993c mlx4_SET_PORT_general +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6bf5372f mlx4_ALLOCATE_VPP_get +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6f5d358a mlx4_SET_PORT_SCHEDULER +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6fe6b4f1 mlx4_SET_PORT_PRIO2TC +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x74eb35a3 mlx4_eq_get_irq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b0282ce mlx4_is_eq_shared +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7cdaefe3 mlx4_tunnel_steer_add +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7d39f293 mlx4_get_slave_node_guid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fd19313 mlx4_get_slave_port_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x960adf3b mlx4_get_cpu_rmap +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb55a034d mlx4_get_module_info +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb61ac3fe mlx4_SET_VPORT_QOS_set +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1888e3f mlx4_SET_PORT_BEACON +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc1b788f3 mlx4_get_slave_from_roce_gid +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc9c91019 mlx4_get_eqs_per_port +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xca47b494 mlx4_SET_PORT_VXLAN +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe762e388 mlx4_test_interrupts +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe805447a set_phv_bit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe9cd3b1a mlx4_gen_slaves_port_mgt_ev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf90f146a mlx4_sync_pkey_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 0x08e84761 mlx5_core_destroy_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x09130a0e mlx5_debugfs_root +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x0db0f1de 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 0x17fab78e mlx5_core_create_psv +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2433cb4c mlx5_unregister_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x282c487e mlx5_query_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c5da664 mlx5_core_query_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2c8a5058 mlx5_core_destroy_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x35a0b5f3 mlx5_cmd_init +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x46caf7c3 mlx5_core_modify_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5a2bdbd0 mlx5_core_query_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5c260f57 mlx5_cmd_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x71c50b2f mlx5_cmd_alloc_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x79d69135 mlx5_core_attach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7f326b19 mlx5_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x99f26996 mlx5_modify_vport_admin_state +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b118bca mlx5_cmd_cleanup +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9b1b865c mlx5_core_create_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9cf0443c mlx5_cmd_exec_cb +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9eece41e mlx5_modify_nic_vport_mac_address +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa25c9aa4 mlx5_core_dealloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa455dc9a mlx5_core_query_vendor_id +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa83faa83 mlx5_vector2eqn +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb83686d6 mlx5_core_destroy_cq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb8c47722 mlx5_core_detach_mcg +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xba8d941a mlx5_alloc_map_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc4406326 mlx5_core_alloc_pd +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xcd311653 mlx5_core_query_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd0657308 mlx5_create_flow_table +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4a89c7a mlx5_unmap_free_uar +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd4e658f1 mlx5_core_destroy_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd8babbda mlx5_core_create_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 0xeba8ed3d mlx5_core_dump_fill_mkey +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0461afd mlx5_cmd_comp_handler +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf07e5eb7 mlx5_register_interface +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf2bd480d mlx5_get_protocol_dev +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf64605ad mlx5_core_get_srq +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf874a03e mlx5_core_create_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 0x048b26b7 mlxsw_core_skb_transmit +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x2360a424 mlxsw_cmd_exec +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x33e74f81 mlxsw_core_skb_receive +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3bb6e339 mlxsw_core_driver_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x3d6e6489 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 0x62e9bb96 mlxsw_core_driver_unregister +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0x6343d0c9 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 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 0xf1f5d71b mlxsw_core_bus_device_register +EXPORT_SYMBOL drivers/net/ethernet/mellanox/mlxsw/mlxsw_core 0xfdd89c3a mlxsw_core_event_listener_register +EXPORT_SYMBOL drivers/net/phy/fixed_phy 0x378e72ab fixed_phy_update_state +EXPORT_SYMBOL drivers/net/phy/libphy 0x04ee67d4 phy_ethtool_gset +EXPORT_SYMBOL drivers/net/phy/libphy 0x05419ed8 phy_attach +EXPORT_SYMBOL drivers/net/phy/libphy 0x07812818 phy_detach +EXPORT_SYMBOL drivers/net/phy/libphy 0x084a35f0 genphy_soft_reset +EXPORT_SYMBOL drivers/net/phy/libphy 0x0a72afe0 genphy_config_init +EXPORT_SYMBOL drivers/net/phy/libphy 0x0a9ef973 phy_connect +EXPORT_SYMBOL drivers/net/phy/libphy 0x0c17abc1 phy_print_status +EXPORT_SYMBOL drivers/net/phy/libphy 0x0d7d13ef phy_drivers_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x118f1c86 mdiobus_free +EXPORT_SYMBOL drivers/net/phy/libphy 0x13af7d45 get_phy_device +EXPORT_SYMBOL drivers/net/phy/libphy 0x1cc44ab6 phy_driver_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x1cc88d73 phy_ethtool_set_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0x24a87870 phy_start_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x277de643 phy_register_fixup_for_uid +EXPORT_SYMBOL drivers/net/phy/libphy 0x2b253fb0 phy_init_hw +EXPORT_SYMBOL drivers/net/phy/libphy 0x2e4702e1 phy_connect_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0x3630d60e phy_ethtool_get_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x4754a6da phy_device_remove +EXPORT_SYMBOL drivers/net/phy/libphy 0x4ef283e9 phy_ethtool_get_wol +EXPORT_SYMBOL drivers/net/phy/libphy 0x5c1e311e phy_device_register +EXPORT_SYMBOL drivers/net/phy/libphy 0x5ffd369f phy_attach_direct +EXPORT_SYMBOL drivers/net/phy/libphy 0x613080dd phy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x66e7255b mdiobus_alloc_size +EXPORT_SYMBOL drivers/net/phy/libphy 0x67f32b5b mdiobus_read +EXPORT_SYMBOL drivers/net/phy/libphy 0x696406dd phy_driver_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x6b4364c9 phy_get_eee_err +EXPORT_SYMBOL drivers/net/phy/libphy 0x6e147479 genphy_suspend +EXPORT_SYMBOL drivers/net/phy/libphy 0x6e2becd7 phy_ethtool_set_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x75f4bb01 phy_read_mmd_indirect +EXPORT_SYMBOL drivers/net/phy/libphy 0x77dce6d5 mdiobus_unregister +EXPORT_SYMBOL drivers/net/phy/libphy 0x789706a8 phy_mac_interrupt +EXPORT_SYMBOL drivers/net/phy/libphy 0x7956bb63 genphy_config_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0x7cf94ede phy_init_eee +EXPORT_SYMBOL drivers/net/phy/libphy 0x7f19f891 genphy_setup_forced +EXPORT_SYMBOL drivers/net/phy/libphy 0x80f2bd94 phy_start_interrupts +EXPORT_SYMBOL drivers/net/phy/libphy 0x88e3791e phy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0x8a23763c mdiobus_write +EXPORT_SYMBOL drivers/net/phy/libphy 0x8e8c9be2 phy_set_max_speed +EXPORT_SYMBOL drivers/net/phy/libphy 0x910424d8 mdiobus_write_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0x93ea2bbf phy_write_mmd_indirect +EXPORT_SYMBOL drivers/net/phy/libphy 0x9e528557 mdiobus_read_nested +EXPORT_SYMBOL drivers/net/phy/libphy 0xa2c08484 phy_disconnect +EXPORT_SYMBOL drivers/net/phy/libphy 0xaceee957 genphy_resume +EXPORT_SYMBOL drivers/net/phy/libphy 0xb42ea2ce phy_find_first +EXPORT_SYMBOL drivers/net/phy/libphy 0xb71a6d06 phy_stop_interrupts +EXPORT_SYMBOL drivers/net/phy/libphy 0xb870dbe9 phy_stop +EXPORT_SYMBOL drivers/net/phy/libphy 0xb9f08e4a phy_drivers_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xbd3841f2 genphy_read_status +EXPORT_SYMBOL drivers/net/phy/libphy 0xc7c264d6 mdiobus_scan +EXPORT_SYMBOL drivers/net/phy/libphy 0xcaf72e78 phy_register_fixup +EXPORT_SYMBOL drivers/net/phy/libphy 0xcdb67f9e phy_register_fixup_for_id +EXPORT_SYMBOL drivers/net/phy/libphy 0xcdb68774 mdio_bus_type +EXPORT_SYMBOL drivers/net/phy/libphy 0xd01cbfba phy_ethtool_sset +EXPORT_SYMBOL drivers/net/phy/libphy 0xd0236f01 __mdiobus_register +EXPORT_SYMBOL drivers/net/phy/libphy 0xe17fa94f phy_device_create +EXPORT_SYMBOL drivers/net/phy/libphy 0xe525bfc5 genphy_aneg_done +EXPORT_SYMBOL drivers/net/phy/libphy 0xf1be30af phy_device_free +EXPORT_SYMBOL drivers/net/phy/libphy 0xf2b4b656 genphy_update_link +EXPORT_SYMBOL drivers/net/phy/libphy 0xf9c0bed4 genphy_restart_aneg +EXPORT_SYMBOL drivers/net/phy/libphy 0xfacaa678 phy_mii_ioctl +EXPORT_SYMBOL drivers/net/phy/libphy 0xfadd2af2 phy_start +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0x8f715d44 alloc_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-bitbang 0xeacf004f free_mdio_bitbang +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x1d34f080 cavium_mdiobus_write +EXPORT_SYMBOL drivers/net/phy/mdio-cavium 0x3c653913 cavium_mdiobus_read +EXPORT_SYMBOL drivers/net/phy/mdio-octeon 0x8a1d5c26 octeon_mdiobus_force_mod_depencency +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x66224fef xgene_mdio_rgmii_read +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0x79d377ac xgene_mdio_rgmii_write +EXPORT_SYMBOL drivers/net/phy/mdio-xgene 0xc0a93bc7 xgene_enet_phy_register +EXPORT_SYMBOL drivers/net/phy/vitesse 0xa5df9f4b vsc824x_add_skew +EXPORT_SYMBOL drivers/net/team/team 0x32ce8539 team_mode_register +EXPORT_SYMBOL drivers/net/team/team 0x78dbc1af team_modeop_port_enter +EXPORT_SYMBOL drivers/net/team/team 0x874346e3 team_options_change_check +EXPORT_SYMBOL drivers/net/team/team 0x96982bdf team_options_unregister +EXPORT_SYMBOL drivers/net/team/team 0xc9bf4f92 team_option_inst_set_change +EXPORT_SYMBOL drivers/net/team/team 0xdebb3a13 team_options_register +EXPORT_SYMBOL drivers/net/team/team 0xdfcf2b1d team_mode_unregister +EXPORT_SYMBOL drivers/net/team/team 0xe0a905c6 team_modeop_port_change_dev_addr +EXPORT_SYMBOL drivers/pps/pps_core 0x3cd5bc14 pps_unregister_source +EXPORT_SYMBOL drivers/pps/pps_core 0x9b581e67 pps_lookup_dev +EXPORT_SYMBOL drivers/pps/pps_core 0xaf1e96f7 pps_event +EXPORT_SYMBOL drivers/pps/pps_core 0xcfebd648 pps_register_source +EXPORT_SYMBOL drivers/ptp/ptp 0x32a2f714 ptp_clock_unregister +EXPORT_SYMBOL drivers/ptp/ptp 0x60d028ae ptp_clock_event +EXPORT_SYMBOL drivers/ptp/ptp 0x7c3c099d ptp_clock_register +EXPORT_SYMBOL drivers/ptp/ptp 0xa8b1c07a ptp_find_pin +EXPORT_SYMBOL drivers/ptp/ptp 0xe85e9a2e ptp_clock_index +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x01ec5c3e dasd_reload_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x12191f4f dasd_sleep_on_interruptible +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x14a071d7 dasd_start_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x1619ffc9 dasd_block_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x19d693b3 dasd_set_target_state +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x220abfc8 dasd_kick_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x28cf61b9 dasd_add_request_tail +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x2b1bb632 dasd_diag_discipline_pointer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x3f4707e3 dasd_default_erp_action +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x423b36c9 dasd_sfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x450d6784 dasd_block_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x468c5146 dasd_eer_write +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x4eb60434 dasd_kmalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6110dca6 dasd_enable_device +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x65a4c16d dasd_add_request_head +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x6fd0be0a dasd_term_IO +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x71a55582 dasd_schedule_block_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x794150f9 dasd_default_erp_postaction +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x8148289d dasd_alloc_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x82ab80bb dasd_sleep_on +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9041676b dasd_smalloc_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x93024618 dasd_schedule_device_bh +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x978ba520 dasd_kfree_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9acae31a dasd_int_handler +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9d7b41a8 dasd_sleep_on_immediatly +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0x9dc69ac3 dasd_log_sense +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xb4dcb5de dasd_sleep_on_queue +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xce560fee dasd_device_set_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xd101f524 dasd_debug_area +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdb583872 dasd_log_sense_dbf +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xdbb2aa49 dasd_device_clear_timer +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe3b81ba0 dasd_free_erp_request +EXPORT_SYMBOL drivers/s390/block/dasd_mod 0xe50100d8 dasd_cancel_req +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 0x061d7cc2 tape_generic_remove +EXPORT_SYMBOL drivers/s390/char/tape 0x0a9ee418 tape_med_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0x128703ef tape_do_io +EXPORT_SYMBOL drivers/s390/char/tape 0x1d2d85d0 tape_std_mteom +EXPORT_SYMBOL drivers/s390/char/tape 0x21736b59 tape_std_mtreten +EXPORT_SYMBOL drivers/s390/char/tape 0x2546c415 tape_state_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x28d0bd9e tape_std_mterase +EXPORT_SYMBOL drivers/s390/char/tape 0x2a842c82 tape_std_unassign +EXPORT_SYMBOL drivers/s390/char/tape 0x310e74d4 tape_std_mtcompression +EXPORT_SYMBOL drivers/s390/char/tape 0x32584190 tape_generic_probe +EXPORT_SYMBOL drivers/s390/char/tape 0x560f1916 tape_dump_sense_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0x598d4a8e tape_std_mtfsr +EXPORT_SYMBOL drivers/s390/char/tape 0x6218ca1f tape_std_read_backward +EXPORT_SYMBOL drivers/s390/char/tape 0x63dee41a tape_std_read_block +EXPORT_SYMBOL drivers/s390/char/tape 0x66deb66c tape_op_verbose +EXPORT_SYMBOL drivers/s390/char/tape 0x69ca0eda tape_do_io_async +EXPORT_SYMBOL drivers/s390/char/tape 0x6b3d31a1 tape_generic_offline +EXPORT_SYMBOL drivers/s390/char/tape 0x70f14f3c tape_free_request +EXPORT_SYMBOL drivers/s390/char/tape 0x77cf6207 tape_std_mtbsf +EXPORT_SYMBOL drivers/s390/char/tape 0x81cad65b tape_std_mtunload +EXPORT_SYMBOL drivers/s390/char/tape 0x86c72272 tape_std_mtbsfm +EXPORT_SYMBOL drivers/s390/char/tape 0x90a64f39 tape_put_device +EXPORT_SYMBOL drivers/s390/char/tape 0x92804cc4 tape_std_mtoffl +EXPORT_SYMBOL drivers/s390/char/tape 0x92a9d1dd tape_std_mtrew +EXPORT_SYMBOL drivers/s390/char/tape 0x9461a164 tape_std_mtbsr +EXPORT_SYMBOL drivers/s390/char/tape 0xa832504e tape_std_mtreset +EXPORT_SYMBOL drivers/s390/char/tape 0xadfed4f0 tape_mtop +EXPORT_SYMBOL drivers/s390/char/tape 0xb0e18865 tape_cancel_io +EXPORT_SYMBOL drivers/s390/char/tape 0xba2389ed tape_std_mtfsf +EXPORT_SYMBOL drivers/s390/char/tape 0xbdf45266 tape_generic_online +EXPORT_SYMBOL drivers/s390/char/tape 0xc18e6ae3 tape_std_write_block +EXPORT_SYMBOL drivers/s390/char/tape 0xc564c71d tape_alloc_request +EXPORT_SYMBOL drivers/s390/char/tape 0xc6d5c5ff tape_std_mtfsfm +EXPORT_SYMBOL drivers/s390/char/tape 0xc9c509dd tape_std_mtload +EXPORT_SYMBOL drivers/s390/char/tape 0xca456bfa tape_core_dbf +EXPORT_SYMBOL drivers/s390/char/tape 0xcad93236 tape_std_assign +EXPORT_SYMBOL drivers/s390/char/tape 0xdde25276 tape_get_device +EXPORT_SYMBOL drivers/s390/char/tape 0xde5f96fd tape_std_read_block_id +EXPORT_SYMBOL drivers/s390/char/tape 0xe238d912 tape_std_mtweof +EXPORT_SYMBOL drivers/s390/char/tape 0xe605201d tape_do_io_interruptible +EXPORT_SYMBOL drivers/s390/char/tape 0xe6ae90fe tape_std_process_eov +EXPORT_SYMBOL drivers/s390/char/tape 0xe857e1f1 tape_std_display +EXPORT_SYMBOL drivers/s390/char/tape 0xfa546fe4 tape_std_mtsetblk +EXPORT_SYMBOL drivers/s390/char/tape 0xfb0b6840 tape_std_mtnop +EXPORT_SYMBOL drivers/s390/char/tape 0xfcc78f2b tape_state_set +EXPORT_SYMBOL drivers/s390/char/tape 0xffe73e82 tape_generic_pm_suspend +EXPORT_SYMBOL drivers/s390/char/tape_34xx 0xa99f4aab tape_34xx_dbf +EXPORT_SYMBOL drivers/s390/char/tape_3590 0x6442bcf9 tape_3590_dbf +EXPORT_SYMBOL drivers/s390/char/tape_class 0x2e414db3 unregister_tape_dev +EXPORT_SYMBOL drivers/s390/char/tape_class 0xd7c080c7 register_tape_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x02dab96f ccwgroup_driver_unregister +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x17118ecf ccwgroup_set_offline +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x832b83ec ccwgroup_remove_ccwdev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0x87571ef1 ccwgroup_driver_register +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xb7ea297a ccwgroup_set_online +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xe01713a5 ccwgroup_create_dev +EXPORT_SYMBOL drivers/s390/cio/ccwgroup 0xefe5d4a4 ccwgroup_probe_ccwdev +EXPORT_SYMBOL drivers/s390/cio/qdio 0x830ea0e3 qdio_start_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0xbfdf7a94 qdio_stop_irq +EXPORT_SYMBOL drivers/s390/cio/qdio 0xf12a5688 qdio_get_next_buffers +EXPORT_SYMBOL drivers/s390/crypto/ap 0x025fc311 ap_driver_register +EXPORT_SYMBOL drivers/s390/crypto/ap 0x0ffc9609 ap_recv +EXPORT_SYMBOL drivers/s390/crypto/ap 0x20d1b069 ap_queue_message +EXPORT_SYMBOL drivers/s390/crypto/ap 0x44302fa8 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 0x783b9516 ap_flush_queue +EXPORT_SYMBOL drivers/s390/crypto/ap 0xca55143c ap_driver_unregister +EXPORT_SYMBOL drivers/s390/crypto/ap 0xd5e90454 ap_domain_index +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x084c7a97 zcrypt_device_put +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x273a1513 zcrypt_msgtype_request +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x459e3717 zcrypt_msgtype_release +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x5b0fe8ab zcrypt_msgtype_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x67cedaeb zcrypt_rescan_req +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x7d5f1dc8 zcrypt_device_free +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0x95b38830 zcrypt_msgtype_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xb82e9c29 zcrypt_device_get +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xd2d9ba2a zcrypt_device_unregister +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xd56d7e6c zcrypt_device_register +EXPORT_SYMBOL drivers/s390/crypto/zcrypt_api 0xed9be5aa zcrypt_device_alloc +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 0x14c56f7c qeth_osn_register +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x6ef61a08 qeth_osn_deregister +EXPORT_SYMBOL drivers/s390/net/qeth_l2 0x74a56ab3 qeth_osn_assist +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x05e3e9a1 fcoe_ctlr_link_up +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x16f7e86c fcoe_ctlr_init +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x20960a3a fcoe_ctlr_link_down +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2a0b3673 fcoe_ctlr_recv_flogi +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x2b1f038a fcoe_ctlr_recv +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x3751cdce fcoe_fcf_get_selected +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x46fdf360 fcoe_ctlr_destroy +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x6c7d2488 fcoe_ctlr_set_fip_mode +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0x797f6776 fcoe_ctlr_els_send +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xaac1d435 fcoe_transport_attach +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xb1b93559 fcoe_ctlr_destroy_store +EXPORT_SYMBOL drivers/scsi/fcoe/libfcoe 0xea630a65 fcoe_transport_detach +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x18a98437 fc_slave_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22b90986 fc_exch_mgr_del +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x22fcfc8d fc_exch_mgr_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x23ee2840 fc_eh_device_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x2759c8db fc_lport_notifier_head +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 0x375ffdeb fc_eh_abort +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x39496204 fc_exch_mgr_add +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x398dc062 fc_lport_bsg_request +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x47d8e3f5 fc_lport_iterate +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x48656279 fc_lport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4a951522 fc_frame_alloc_fill +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x4ab05bbc fc_lport_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x55f96efa fc_get_host_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x5de637ef fc_elsct_send +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x67f6e9d9 fc_fabric_login +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x6d875c4d fc_fc4_deregister_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x70d41002 fc_disc_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x75a7bc6b fc_disc_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x793023fd fc_exch_update_stats +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7951acc2 fc_vport_setlink +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7ce48ac9 fc_frame_crc_check +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x7d303c2b fc_fabric_logoff +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8669013f fc_lport_logo_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x883b2224 fc_exch_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8967da97 _fc_frame_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8c1c0737 fc_lport_config +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8d70d9bb fc_fcp_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8ee78cb9 fc_elsct_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x8f7f7052 fc_lport_destroy +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x94771cda fc_eh_host_reset +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0x9ff38b1e fc_fcp_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa049fc94 fc_rport_init +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xa62a5763 fc_linkup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xacae303e fc_exch_mgr_alloc +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb40f0e29 fc_vport_id_lookup +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb5d1b94b fc_get_host_port_state +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb892d1c8 fc_queuecommand +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xb9845ae8 fc_fc4_register_provider +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xbae74f21 fc_exch_recv +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc410775b fc_linkdown +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc583e5b6 fc_fill_hdr +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xc8954759 libfc_vport_create +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xcc6ce617 fc_get_host_speed +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd78fec78 fc_exch_mgr_list_clone +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xd81af258 fc_rport_terminate_io +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe37e19f1 fc_set_mfs +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xe9a28949 fc_set_rport_loss_tmo +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xea6e21d5 fc_lport_set_local_id +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xf0b4dae9 fc_lport_flogi_resp +EXPORT_SYMBOL drivers/scsi/libfc/libfc 0xfb487759 fc_exch_mgr_free +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x27a4f91f sas_suspend_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x58ec6f7d sas_wait_eh +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x5a4b8484 sas_prep_resume_ha +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x8a87e724 try_test_sas_gpio_gp_bit +EXPORT_SYMBOL drivers/scsi/libsas/libsas 0x962f780f sas_resume_ha +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0698049d osd_req_read_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x08d7eca4 osd_req_add_get_attr_page +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x0c17edb1 osd_sec_init_nosec_doall_caps +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x14781e2d osd_req_format +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x1588c4f6 osd_dev_init +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x2153512d osd_req_list_collection_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x21b36908 osd_dev_fini +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x21c3b826 osd_finalize_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x253f2bcf osd_req_remove_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x32f69004 osd_req_create_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x3626967a osd_req_list_dev_partitions +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x4ccf52a7 osd_req_flush_obsd +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5875bb24 osd_auto_detect_ver +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x59e3aaa0 osd_req_write_sg +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x5a7f2b19 osd_req_flush_partition +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x63ffbb79 osd_req_get_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x66300fdf osd_start_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x66c318d1 osd_execute_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x7e370ea9 osd_execute_request_async +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x8183fab7 osd_req_write_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x902e831f osd_req_read_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0x9133c2bd osd_req_remove_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xa6e4b9d9 osd_req_flush_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xad785311 osd_end_request +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb30fe9f0 osd_req_read_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xb50c8aa2 osd_req_create_object +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xbaeea2e3 osd_req_set_attributes +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc12a9026 osd_req_flush_collection +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc7ce46f7 osd_req_add_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xc95fcd10 osd_req_write +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xd8b23831 osd_req_add_set_attr_list +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe111f75b osd_req_decode_sense_full +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xe2592f98 osd_req_list_partition_collections +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xeb38de4f osd_req_write_sg_kern +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xee70ea51 osd_req_list_partition_objects +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xef267123 osd_req_read +EXPORT_SYMBOL drivers/scsi/osd/libosd 0xf7cb5b0e osd_req_decode_get_attr_list +EXPORT_SYMBOL drivers/scsi/osd/osd 0x087bff42 osduld_device_same +EXPORT_SYMBOL drivers/scsi/osd/osd 0x0f202631 osduld_device_info +EXPORT_SYMBOL drivers/scsi/osd/osd 0x5fc48609 osduld_unregister_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0x8f41b7dc osduld_info_lookup +EXPORT_SYMBOL drivers/scsi/osd/osd 0xab6105a9 osduld_register_test +EXPORT_SYMBOL drivers/scsi/osd/osd 0xd58339ee osduld_put_device +EXPORT_SYMBOL drivers/scsi/osd/osd 0xef266994 osduld_path_lookup +EXPORT_SYMBOL drivers/scsi/raid_class 0x194f445b raid_component_add +EXPORT_SYMBOL drivers/scsi/raid_class 0x573f910b raid_class_release +EXPORT_SYMBOL drivers/scsi/raid_class 0xb4155cdf raid_class_attach +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x04fdd5d7 fc_remote_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x29d49da8 fc_host_post_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x2b224948 fc_remote_port_rolechg +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x42a4051f fc_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x46a95e94 fc_remote_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x4d89e47f fc_vport_terminate +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x68f21495 fc_block_scsi_eh +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x7954b1ea fc_get_event_number +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8b5b9305 fc_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x8d9da93a fc_vport_create +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0x96c0b1fb scsi_is_fc_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xacd3144b scsi_is_fc_vport +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xb42add64 fc_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_fc 0xcf5348bb fc_host_post_vendor_event +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x0d9123c6 scsi_is_sas_rphy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x11485c05 sas_phy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x1986121f sas_port_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x23246a4f scsi_is_sas_port +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3a101292 sas_port_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x3cbc08ec sas_read_port_mode_page +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5094fa47 sas_port_add_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x5a6b320e sas_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x76a73f8e sas_rphy_unlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7a43df17 sas_expander_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x7abd1a28 sas_rphy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x8a5909bd sas_port_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x926a27c4 sas_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0x9f569302 sas_remove_host +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa73f1e3b sas_rphy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xa8a6eed4 sas_port_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb42a7af9 sas_end_device_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xb4cfdb0f sas_port_alloc_num +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xbf5d69bb sas_rphy_remove +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xc6cea93f sas_remove_children +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xcbbe0dc6 sas_rphy_delete +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xde606450 sas_phy_free +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xdec3c113 sas_phy_alloc +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe627c511 scsi_is_sas_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xe9f4bfba sas_port_delete_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf64d3c50 sas_port_get_phy +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xf8b2c4b9 sas_port_mark_backlink +EXPORT_SYMBOL drivers/scsi/scsi_transport_sas 0xff68a263 sas_phy_add +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x0a669db1 spi_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x199a0fdd spi_schedule_dv_device +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x1d08ab7f spi_attach_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x26d73043 spi_release_transport +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0x3686ea09 spi_print_msg +EXPORT_SYMBOL drivers/scsi/scsi_transport_spi 0xad5146a2 spi_display_xfer_agreement +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x21e461f7 srp_reconnect_rport +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x405b6e05 srp_parse_tmo +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x527363bb srp_rport_put +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0x97d4b2c6 srp_rport_get +EXPORT_SYMBOL drivers/scsi/scsi_transport_srp 0xf3819876 srp_start_tl_fail_timers +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x0a9fe524 iscsit_setup_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x10b67e14 iscsit_setup_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x2f894175 iscsit_register_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x323f1033 iscsit_build_rsp_pdu +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x32d5256c iscsit_tmr_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x3fe0c45c iscsit_release_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x43480e1a iscsit_build_reject +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x46e4ab15 iscsit_check_dataout_payload +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5325a1f2 iscsit_build_nopin_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x5526621a iscsit_handle_task_mgt_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x61c5622a iscsit_build_text_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x6d7244e7 iscsit_process_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x75d84770 iscsit_find_cmd_from_itt +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x85969723 iscsit_check_dataout_hdr +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x88476a68 iscsit_setup_nop_out +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0x98db4409 iscsit_build_logout_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa5f404d4 iscsit_sequence_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xa6bbeed2 iscsit_logout_post_handler +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb2322f3f iscsit_build_task_mgt_rsp +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xb406227c iscsit_process_scsi_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xbc13da52 iscsit_cause_connection_reinstatement +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd2279bd3 iscsit_increment_maxcmdsn +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xd56cbbf7 iscsit_process_text_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xea0047b8 iscsit_set_unsoliticed_dataout +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xeec83c0d iscsit_handle_logout_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xef050a6f iscsit_allocate_cmd +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf0e36bc3 iscsit_unregister_transport +EXPORT_SYMBOL drivers/target/iscsi/iscsi_target_mod 0xf6097221 iscsit_stop_dataout_timer +EXPORT_SYMBOL drivers/target/target_core_mod 0x02de3b18 transport_set_vpd_ident +EXPORT_SYMBOL drivers/target/target_core_mod 0x0390b86c transport_send_check_condition_and_sense +EXPORT_SYMBOL drivers/target/target_core_mod 0x063b9be8 sbc_dif_copy_prot +EXPORT_SYMBOL drivers/target/target_core_mod 0x0ca528c5 target_complete_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x0f208d29 target_depend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x161ead6d target_backend_unregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x1aa09eb7 target_put_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x1df9beb4 core_tmr_alloc_req +EXPORT_SYMBOL drivers/target/target_core_mod 0x22b60a82 core_tpg_set_initiator_node_queue_depth +EXPORT_SYMBOL drivers/target/target_core_mod 0x24ab6f03 sbc_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x2f5fdf7b spc_emulate_report_luns +EXPORT_SYMBOL drivers/target/target_core_mod 0x2fc54a23 transport_generic_request_failure +EXPORT_SYMBOL drivers/target/target_core_mod 0x35be528d passthrough_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x3873501f transport_free_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x39f1e85d core_tpg_deregister +EXPORT_SYMBOL drivers/target/target_core_mod 0x3e79b61f passthrough_attrib_attrs +EXPORT_SYMBOL drivers/target/target_core_mod 0x3fafb549 transport_alloc_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0x4149de72 target_put_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x43349004 transport_deregister_session_configfs +EXPORT_SYMBOL drivers/target/target_core_mod 0x4867d88b target_complete_cmd_with_length +EXPORT_SYMBOL drivers/target/target_core_mod 0x4e73bce2 transport_generic_free_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x4ea422b2 transport_init_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x5cba8548 target_wait_for_sess_cmds +EXPORT_SYMBOL drivers/target/target_core_mod 0x6219211a target_get_sess_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x65421dcb target_execute_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0x65e7c3d2 spc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0x6c6a17d0 sbc_get_device_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x6d243562 target_undepend_item +EXPORT_SYMBOL drivers/target/target_core_mod 0x6e522a1a transport_kmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0x6f6f78c7 target_unregister_template +EXPORT_SYMBOL drivers/target/target_core_mod 0x71e7d6c3 transport_generic_handle_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0x751de32d spc_emulate_evpd_83 +EXPORT_SYMBOL drivers/target/target_core_mod 0x76e5aade target_sess_cmd_list_set_waiting +EXPORT_SYMBOL drivers/target/target_core_mod 0x780499b8 core_alua_check_nonop_delay +EXPORT_SYMBOL drivers/target/target_core_mod 0x78be9268 core_tpg_check_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x794dca29 target_alloc_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7b24b7c3 target_get_session +EXPORT_SYMBOL drivers/target/target_core_mod 0x7c6ae006 target_lun_is_rdonly +EXPORT_SYMBOL drivers/target/target_core_mod 0x7dbada9d transport_set_vpd_ident_type +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e2eafa6 target_nacl_find_deve +EXPORT_SYMBOL drivers/target/target_core_mod 0x7e58b65b sbc_get_write_same_sectors +EXPORT_SYMBOL drivers/target/target_core_mod 0x827f3d93 core_allocate_nexus_loss_ua +EXPORT_SYMBOL drivers/target/target_core_mod 0x85aa880c transport_set_vpd_assoc +EXPORT_SYMBOL drivers/target/target_core_mod 0x8a31a70f transport_lookup_cmd_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x95981f0a transport_backend_register +EXPORT_SYMBOL drivers/target/target_core_mod 0x9640110f transport_lookup_tmr_lun +EXPORT_SYMBOL drivers/target/target_core_mod 0x9720dad0 core_tpg_get_initiator_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0x9757d951 target_to_linux_sector +EXPORT_SYMBOL drivers/target/target_core_mod 0x9c03c432 core_tpg_register +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8335df1 transport_handle_cdb_direct +EXPORT_SYMBOL drivers/target/target_core_mod 0xa8b2f02e target_submit_cmd_map_sgls +EXPORT_SYMBOL drivers/target/target_core_mod 0xb2b7d2ff transport_init_session_tags +EXPORT_SYMBOL drivers/target/target_core_mod 0xb6c9adf8 transport_generic_new_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xb805bade __transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9983c76 sbc_parse_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xb9cfd8d7 transport_kunmap_data_sg +EXPORT_SYMBOL drivers/target/target_core_mod 0xc067636f target_setup_cmd_from_cdb +EXPORT_SYMBOL drivers/target/target_core_mod 0xc7f1447f transport_deregister_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xcd95523d transport_check_aborted_status +EXPORT_SYMBOL drivers/target/target_core_mod 0xd344fddf transport_init_se_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xd6e81af0 spc_emulate_inquiry_std +EXPORT_SYMBOL drivers/target/target_core_mod 0xdd656abb target_tpg_has_node_acl +EXPORT_SYMBOL drivers/target/target_core_mod 0xe03e215f target_submit_cmd +EXPORT_SYMBOL drivers/target/target_core_mod 0xe354748f transport_wait_for_tasks +EXPORT_SYMBOL drivers/target/target_core_mod 0xec0826fb target_submit_tmr +EXPORT_SYMBOL drivers/target/target_core_mod 0xf01621c7 transport_set_vpd_proto_id +EXPORT_SYMBOL drivers/target/target_core_mod 0xf35603df sbc_dif_verify +EXPORT_SYMBOL drivers/target/target_core_mod 0xf4b9f010 core_tpg_set_initiator_node_tag +EXPORT_SYMBOL drivers/target/target_core_mod 0xf7372fd2 target_put_nacl +EXPORT_SYMBOL drivers/target/target_core_mod 0xf9e0427e target_register_template +EXPORT_SYMBOL drivers/target/target_core_mod 0xfcc350e7 transport_register_session +EXPORT_SYMBOL drivers/target/target_core_mod 0xfe90d18f target_configure_unmap_from_queue +EXPORT_SYMBOL drivers/target/target_core_mod 0xfedd392c target_show_dynamic_sessions +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x0d43f6f9 uart_write_wakeup +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x0e9afae7 uart_resume_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0x3dc7c335 uart_remove_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xa3b21467 uart_get_baud_rate +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xa494204d uart_match_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xae824133 uart_register_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xb6347a87 uart_update_timeout +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xc254be01 uart_unregister_driver +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xcf6e63f1 uart_add_one_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xed0957aa uart_suspend_port +EXPORT_SYMBOL drivers/tty/serial/serial_core 0xf2d3db63 uart_get_divisor +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 0x0bda603a ore_check_io +EXPORT_SYMBOL fs/exofs/libore 0x0c9df727 ore_write +EXPORT_SYMBOL fs/exofs/libore 0x28806871 ore_verify_layout +EXPORT_SYMBOL fs/exofs/libore 0x2b430cf0 extract_attr_from_ios +EXPORT_SYMBOL fs/exofs/libore 0x2ffbf9de ore_remove +EXPORT_SYMBOL fs/exofs/libore 0x4527e170 ore_calc_stripe_info +EXPORT_SYMBOL fs/exofs/libore 0x662c2252 ore_put_io_state +EXPORT_SYMBOL fs/exofs/libore 0x7cebaea6 ore_truncate +EXPORT_SYMBOL fs/exofs/libore 0xa3d2a634 g_attr_logical_length +EXPORT_SYMBOL fs/exofs/libore 0xbcf67007 ore_create +EXPORT_SYMBOL fs/exofs/libore 0xbdd67bc7 ore_get_io_state +EXPORT_SYMBOL fs/exofs/libore 0xd9212ec5 ore_read +EXPORT_SYMBOL fs/exofs/libore 0xd9fe1954 ore_get_rw_state +EXPORT_SYMBOL fs/fscache/fscache 0x05bee641 __fscache_check_consistency +EXPORT_SYMBOL fs/fscache/fscache 0x06b2e1b9 __fscache_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x08005223 __fscache_register_netfs +EXPORT_SYMBOL fs/fscache/fscache 0x0f8147f5 fscache_object_init +EXPORT_SYMBOL fs/fscache/fscache 0x15280cf8 __fscache_uncache_all_inode_pages +EXPORT_SYMBOL fs/fscache/fscache 0x165e058c __fscache_maybe_release_page +EXPORT_SYMBOL fs/fscache/fscache 0x18e8af09 __fscache_read_or_alloc_pages +EXPORT_SYMBOL fs/fscache/fscache 0x1bbf8a13 __fscache_check_page_write +EXPORT_SYMBOL fs/fscache/fscache 0x1e7331e3 fscache_withdraw_cache +EXPORT_SYMBOL fs/fscache/fscache 0x34dc87c5 fscache_operation_init +EXPORT_SYMBOL fs/fscache/fscache 0x41535a7f __fscache_enable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x42f73ec1 fscache_object_mark_killed +EXPORT_SYMBOL fs/fscache/fscache 0x43586e01 __fscache_update_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x47513a1f fscache_cache_cleared_wq +EXPORT_SYMBOL fs/fscache/fscache 0x563f9562 __fscache_wait_on_invalidate +EXPORT_SYMBOL fs/fscache/fscache 0x587fffaf __fscache_write_page +EXPORT_SYMBOL fs/fscache/fscache 0x611a0c12 __fscache_read_or_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0x725676b4 fscache_check_aux +EXPORT_SYMBOL fs/fscache/fscache 0x74530ecd fscache_op_debug_id +EXPORT_SYMBOL fs/fscache/fscache 0x78872fe6 __fscache_attr_changed +EXPORT_SYMBOL fs/fscache/fscache 0x7b79d40c fscache_obtained_object +EXPORT_SYMBOL fs/fscache/fscache 0x7cc59223 __fscache_acquire_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x8b268e4e __fscache_relinquish_cookie +EXPORT_SYMBOL fs/fscache/fscache 0x93240aa0 fscache_io_error +EXPORT_SYMBOL fs/fscache/fscache 0x982a6654 __fscache_readpages_cancel +EXPORT_SYMBOL fs/fscache/fscache 0x99769f4c fscache_object_lookup_negative +EXPORT_SYMBOL fs/fscache/fscache 0x9d9a2300 __fscache_disable_cookie +EXPORT_SYMBOL fs/fscache/fscache 0xa029ae3d __fscache_wait_on_page_write +EXPORT_SYMBOL fs/fscache/fscache 0xaa3a3cf4 fscache_init_cache +EXPORT_SYMBOL fs/fscache/fscache 0xb06d1e11 __fscache_alloc_page +EXPORT_SYMBOL fs/fscache/fscache 0xbc3e9f07 fscache_object_destroy +EXPORT_SYMBOL fs/fscache/fscache 0xc5cb25a1 __fscache_unregister_netfs +EXPORT_SYMBOL fs/fscache/fscache 0xc6799d77 fscache_op_complete +EXPORT_SYMBOL fs/fscache/fscache 0xd1509ec0 fscache_enqueue_operation +EXPORT_SYMBOL fs/fscache/fscache 0xdbe4ef10 fscache_object_retrying_stale +EXPORT_SYMBOL fs/fscache/fscache 0xdfd6a755 fscache_mark_pages_cached +EXPORT_SYMBOL fs/fscache/fscache 0xe6a5f52e fscache_mark_page_cached +EXPORT_SYMBOL fs/fscache/fscache 0xeaaa19ae __fscache_uncache_page +EXPORT_SYMBOL fs/fscache/fscache 0xf78143b5 fscache_add_cache +EXPORT_SYMBOL fs/fscache/fscache 0xfbf4507f fscache_put_operation +EXPORT_SYMBOL fs/fscache/fscache 0xfccf0b43 fscache_fsdef_index +EXPORT_SYMBOL fs/ocfs2/cluster/ocfs2_nodemanager 0xbfd7d7a2 o2hb_global_heartbeat_active +EXPORT_SYMBOL fs/quota/quota_tree 0x0227e72a qtree_entry_unused +EXPORT_SYMBOL fs/quota/quota_tree 0x185026e7 qtree_release_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xa166863f qtree_delete_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xc9356023 qtree_write_dquot +EXPORT_SYMBOL fs/quota/quota_tree 0xdfc38e00 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 0x27d14e74 lc_seq_dump_details +EXPORT_SYMBOL lib/lru_cache 0x52857213 lc_element_by_index +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 0xfcf7e194 lc_seq_printf_stats +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 0x2a90ee38 register_8022_client +EXPORT_SYMBOL net/802/p8022 0xec84e257 unregister_8022_client +EXPORT_SYMBOL net/802/psnap 0x51dee98d register_snap_client +EXPORT_SYMBOL net/802/psnap 0x741727bc unregister_snap_client +EXPORT_SYMBOL net/9p/9pnet 0x0d8e6d22 p9_is_proto_dotu +EXPORT_SYMBOL net/9p/9pnet 0x137b1792 p9_client_cb +EXPORT_SYMBOL net/9p/9pnet 0x21d045be v9fs_get_default_trans +EXPORT_SYMBOL net/9p/9pnet 0x26e59233 p9_is_proto_dotl +EXPORT_SYMBOL net/9p/9pnet 0x28a564b7 p9_client_link +EXPORT_SYMBOL net/9p/9pnet 0x2aa44b23 v9fs_get_trans_by_name +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 0x424417af p9_client_lock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x44d2c2c0 p9stat_free +EXPORT_SYMBOL net/9p/9pnet 0x4db5bf99 p9_client_statfs +EXPORT_SYMBOL net/9p/9pnet 0x59c775cf p9_client_remove +EXPORT_SYMBOL net/9p/9pnet 0x5daed64d p9_client_readlink +EXPORT_SYMBOL net/9p/9pnet 0x62c137cd p9_client_destroy +EXPORT_SYMBOL net/9p/9pnet 0x63a86bc7 p9_tag_lookup +EXPORT_SYMBOL net/9p/9pnet 0x7132e9c4 p9_client_create +EXPORT_SYMBOL net/9p/9pnet 0x75187a0a p9_client_fsync +EXPORT_SYMBOL net/9p/9pnet 0x7520c34c p9stat_read +EXPORT_SYMBOL net/9p/9pnet 0x75bffd7b p9_client_open +EXPORT_SYMBOL net/9p/9pnet 0x7614e4c1 p9_client_mknod_dotl +EXPORT_SYMBOL net/9p/9pnet 0x76e550fc p9_client_getattr_dotl +EXPORT_SYMBOL net/9p/9pnet 0x86083860 p9_client_rename +EXPORT_SYMBOL net/9p/9pnet 0x9129674a p9_client_getlock_dotl +EXPORT_SYMBOL net/9p/9pnet 0x935f0732 p9_client_fcreate +EXPORT_SYMBOL net/9p/9pnet 0x9516996e v9fs_unregister_trans +EXPORT_SYMBOL net/9p/9pnet 0x95860db9 p9_client_setattr +EXPORT_SYMBOL net/9p/9pnet 0x9d07006e p9_client_clunk +EXPORT_SYMBOL net/9p/9pnet 0xa1b43ce3 p9_client_symlink +EXPORT_SYMBOL net/9p/9pnet 0xa1e0dff3 p9_client_mkdir_dotl +EXPORT_SYMBOL net/9p/9pnet 0xab32b80a p9_client_walk +EXPORT_SYMBOL net/9p/9pnet 0xb1745c55 v9fs_register_trans +EXPORT_SYMBOL net/9p/9pnet 0xb4b09ad5 p9_client_read +EXPORT_SYMBOL net/9p/9pnet 0xb81b1ecc p9_client_readdir +EXPORT_SYMBOL net/9p/9pnet 0xbb5ce4a9 p9_client_renameat +EXPORT_SYMBOL net/9p/9pnet 0xc0d1a657 p9_release_pages +EXPORT_SYMBOL net/9p/9pnet 0xc1ee04b6 p9_client_wstat +EXPORT_SYMBOL net/9p/9pnet 0xc5db54a9 p9_idpool_destroy +EXPORT_SYMBOL net/9p/9pnet 0xc6fdcba1 p9_client_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xca537262 p9_client_unlinkat +EXPORT_SYMBOL net/9p/9pnet 0xcb6fda47 p9_client_begin_disconnect +EXPORT_SYMBOL net/9p/9pnet 0xd64ed2b1 p9_client_create_dotl +EXPORT_SYMBOL net/9p/9pnet 0xd797e04e p9_client_stat +EXPORT_SYMBOL net/9p/9pnet 0xe06edf65 p9_parse_header +EXPORT_SYMBOL net/9p/9pnet 0xe18e0285 p9_client_write +EXPORT_SYMBOL net/9p/9pnet 0xe58a3360 p9_error_init +EXPORT_SYMBOL net/9p/9pnet 0xf4a111d8 p9_idpool_create +EXPORT_SYMBOL net/9p/9pnet 0xf82988c2 p9_client_attach +EXPORT_SYMBOL net/9p/9pnet 0xf84f2022 p9_idpool_put +EXPORT_SYMBOL net/9p/9pnet 0xfd40c79d p9_idpool_check +EXPORT_SYMBOL net/bridge/bridge 0xa07f2842 br_should_route_hook +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x2b76de3e ebt_register_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0x98c0ac7f ebt_unregister_table +EXPORT_SYMBOL net/bridge/netfilter/ebtables 0xf06856b9 ebt_do_table +EXPORT_SYMBOL net/ceph/libceph 0x06a23e17 ceph_osdc_sync +EXPORT_SYMBOL net/ceph/libceph 0x075bb8d8 osd_req_op_extent_osd_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x08d51eb7 ceph_osdc_alloc_request +EXPORT_SYMBOL net/ceph/libceph 0x09290ab3 ceph_debugfs_init +EXPORT_SYMBOL net/ceph/libceph 0x1010c1e8 ceph_copy_user_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1032b3e2 ceph_auth_invalidate_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x1121dc78 osd_req_op_extent_osd_data_bio +EXPORT_SYMBOL net/ceph/libceph 0x1651ae1b ceph_print_client_options +EXPORT_SYMBOL net/ceph/libceph 0x184f4ffe ceph_copy_from_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x1d8465ba ceph_monc_validate_auth +EXPORT_SYMBOL net/ceph/libceph 0x20d151cb ceph_osdc_setup +EXPORT_SYMBOL net/ceph/libceph 0x223fe470 osd_req_op_cls_response_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x25ab2978 ceph_osdc_cancel_request +EXPORT_SYMBOL net/ceph/libceph 0x28863380 ceph_create_client +EXPORT_SYMBOL net/ceph/libceph 0x2b0c5ff2 ceph_monc_wait_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x302ad117 osd_req_op_extent_osd_data +EXPORT_SYMBOL net/ceph/libceph 0x337387c7 ceph_osdc_build_request +EXPORT_SYMBOL net/ceph/libceph 0x37ae8d6a ceph_calc_pg_primary +EXPORT_SYMBOL net/ceph/libceph 0x39941c57 ceph_msg_data_add_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 0x40ec3083 ceph_pg_pool_name_by_id +EXPORT_SYMBOL net/ceph/libceph 0x439be32f 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 0x4a69fadc ceph_pagelist_reserve +EXPORT_SYMBOL net/ceph/libceph 0x4b68446d ceph_con_keepalive +EXPORT_SYMBOL net/ceph/libceph 0x4bf0271e ceph_pagelist_set_cursor +EXPORT_SYMBOL net/ceph/libceph 0x4d28d8a7 ceph_osdc_flush_notifies +EXPORT_SYMBOL net/ceph/libceph 0x4faaafd2 ceph_pg_poolid_by_name +EXPORT_SYMBOL net/ceph/libceph 0x5071df29 ceph_msg_data_add_bio +EXPORT_SYMBOL net/ceph/libceph 0x5379cea3 ceph_caps_for_mode +EXPORT_SYMBOL net/ceph/libceph 0x54b8c552 ceph_msg_put +EXPORT_SYMBOL net/ceph/libceph 0x57baf885 ceph_str_hash +EXPORT_SYMBOL net/ceph/libceph 0x57fa39e3 osd_req_op_cls_response_data +EXPORT_SYMBOL net/ceph/libceph 0x58c7248a ceph_osdc_start_request +EXPORT_SYMBOL net/ceph/libceph 0x5df22dc9 osd_req_op_cls_init +EXPORT_SYMBOL net/ceph/libceph 0x5e2d646a ceph_osdc_get_request +EXPORT_SYMBOL net/ceph/libceph 0x5f675b44 ceph_msg_data_add_pagelist +EXPORT_SYMBOL net/ceph/libceph 0x5f947752 ceph_pagelist_append +EXPORT_SYMBOL net/ceph/libceph 0x63758856 ceph_str_hash_name +EXPORT_SYMBOL net/ceph/libceph 0x642393f5 ceph_auth_create_authorizer +EXPORT_SYMBOL net/ceph/libceph 0x66d204da __ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0x6b2e3bcd ceph_get_snap_context +EXPORT_SYMBOL net/ceph/libceph 0x6c1b8124 ceph_monc_request_next_osdmap +EXPORT_SYMBOL net/ceph/libceph 0x715bf2a3 osd_req_op_alloc_hint_init +EXPORT_SYMBOL net/ceph/libceph 0x725de126 ceph_get_direct_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x744066d3 ceph_release_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x7b1f02dc ceph_con_open +EXPORT_SYMBOL net/ceph/libceph 0x7ffe030b ceph_zero_page_vector_range +EXPORT_SYMBOL net/ceph/libceph 0x8302bc46 ceph_con_send +EXPORT_SYMBOL net/ceph/libceph 0x84a167c8 osd_req_op_xattr_init +EXPORT_SYMBOL net/ceph/libceph 0x87d2cd0d ceph_osdc_wait_request +EXPORT_SYMBOL net/ceph/libceph 0x87e2727c ceph_auth_is_authenticated +EXPORT_SYMBOL net/ceph/libceph 0x892f4a16 ceph_check_fsid +EXPORT_SYMBOL net/ceph/libceph 0x8977535d ceph_pagelist_free_reserve +EXPORT_SYMBOL net/ceph/libceph 0x8c5c055c ceph_auth_verify_authorizer_reply +EXPORT_SYMBOL net/ceph/libceph 0x8d5302c2 ceph_put_page_vector +EXPORT_SYMBOL net/ceph/libceph 0x944301b3 osd_req_op_watch_init +EXPORT_SYMBOL net/ceph/libceph 0x944f8fdd ceph_monc_do_statfs +EXPORT_SYMBOL net/ceph/libceph 0x95865153 ceph_messenger_fini +EXPORT_SYMBOL net/ceph/libceph 0x99e36571 ceph_osdc_cleanup +EXPORT_SYMBOL net/ceph/libceph 0x9a482abb osd_req_op_cls_request_data_pages +EXPORT_SYMBOL net/ceph/libceph 0x9bca80b0 ceph_osdc_set_request_linger +EXPORT_SYMBOL net/ceph/libceph 0x9f534f4d ceph_buffer_release +EXPORT_SYMBOL net/ceph/libceph 0xa4cfe72c ceph_osdc_put_request +EXPORT_SYMBOL net/ceph/libceph 0xae3515ba ceph_create_snap_context +EXPORT_SYMBOL net/ceph/libceph 0xae3583d7 ceph_con_init +EXPORT_SYMBOL net/ceph/libceph 0xafb8a407 ceph_msgr_flush +EXPORT_SYMBOL net/ceph/libceph 0xb3670e38 ceph_con_close +EXPORT_SYMBOL net/ceph/libceph 0xb4bda29e osd_req_op_extent_osd_data_pagelist +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 0xb6406b92 ceph_messenger_init +EXPORT_SYMBOL net/ceph/libceph 0xb664c6ed ceph_osdc_create_event +EXPORT_SYMBOL net/ceph/libceph 0xb87e70a0 osd_req_op_cls_request_data_pagelist +EXPORT_SYMBOL net/ceph/libceph 0xbbc5596d ceph_compare_options +EXPORT_SYMBOL net/ceph/libceph 0xbbc6827e ceph_monc_open_session +EXPORT_SYMBOL net/ceph/libceph 0xbdf41a60 ceph_monc_stop +EXPORT_SYMBOL net/ceph/libceph 0xbec5f8c0 osd_req_op_extent_update +EXPORT_SYMBOL net/ceph/libceph 0xc1f544bb ceph_buffer_new +EXPORT_SYMBOL net/ceph/libceph 0xc31243bf ceph_auth_update_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xc34c792c ceph_msg_dump +EXPORT_SYMBOL net/ceph/libceph 0xc4a80955 ceph_debugfs_cleanup +EXPORT_SYMBOL net/ceph/libceph 0xc528cf91 ceph_osdc_writepages +EXPORT_SYMBOL net/ceph/libceph 0xc7672334 ceph_destroy_options +EXPORT_SYMBOL net/ceph/libceph 0xc9f82b38 ceph_msgr_init +EXPORT_SYMBOL net/ceph/libceph 0xcac5e608 ceph_osdc_new_request +EXPORT_SYMBOL net/ceph/libceph 0xcb138d6e osd_req_op_raw_data_in_pages +EXPORT_SYMBOL net/ceph/libceph 0xcb50a624 ceph_parse_ips +EXPORT_SYMBOL net/ceph/libceph 0xce85f8ff ceph_client_id +EXPORT_SYMBOL net/ceph/libceph 0xd2c107bb ceph_flags_to_mode +EXPORT_SYMBOL net/ceph/libceph 0xd470e80c ceph_copy_to_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xd6bb76da osd_req_op_extent_init +EXPORT_SYMBOL net/ceph/libceph 0xdf8ede48 ceph_alloc_page_vector +EXPORT_SYMBOL net/ceph/libceph 0xe1cfad93 ceph_msg_get +EXPORT_SYMBOL net/ceph/libceph 0xe4fca30a ceph_open_session +EXPORT_SYMBOL net/ceph/libceph 0xe6fc6712 ceph_auth_destroy_authorizer +EXPORT_SYMBOL net/ceph/libceph 0xe765f917 ceph_monc_got_mdsmap +EXPORT_SYMBOL net/ceph/libceph 0xe90e7c9c ceph_monc_init +EXPORT_SYMBOL net/ceph/libceph 0xee18e034 ceph_oloc_oid_to_pg +EXPORT_SYMBOL net/ceph/libceph 0xf11f2951 ceph_monc_do_get_version +EXPORT_SYMBOL net/ceph/libceph 0xf276cf23 ceph_msg_new +EXPORT_SYMBOL net/ceph/libceph 0xf4f9880e osd_req_op_init +EXPORT_SYMBOL net/ceph/libceph 0xf67e8e83 ceph_destroy_client +EXPORT_SYMBOL net/ceph/libceph 0xf8ce3081 ceph_osdc_cancel_event +EXPORT_SYMBOL net/ceph/libceph 0xfa773f35 ceph_osdc_readpages +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x2a2f73a3 dccp_req_err +EXPORT_SYMBOL net/dccp/dccp_ipv4 0x8a7dd7f9 dccp_syn_ack_timeout +EXPORT_SYMBOL net/ipv4/fou 0x110c25ac fou_build_header +EXPORT_SYMBOL net/ipv4/fou 0x2317e54d 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/ip_tunnel 0x036818a9 ip_tunnel_encap_del_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x39669c47 ip_tunnel_get_iflink +EXPORT_SYMBOL net/ipv4/ip_tunnel 0x9e53cce7 ip_tunnel_get_link_net +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xb573ab21 ip_tunnel_encap_add_ops +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xea5d4f41 ip_tunnel_encap +EXPORT_SYMBOL net/ipv4/ip_tunnel 0xf0d75531 ip_tunnel_dst_reset_all +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0x287faa5b arpt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xdadee4d3 arpt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/arp_tables 0xe87941b2 arpt_unregister_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x609fa8f4 ipt_do_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0x896a4768 ipt_register_table +EXPORT_SYMBOL net/ipv4/netfilter/ip_tables 0xae3229e1 ipt_unregister_table +EXPORT_SYMBOL net/ipv4/tunnel4 0x3eadb222 xfrm4_tunnel_deregister +EXPORT_SYMBOL net/ipv4/tunnel4 0xf1d4b2aa xfrm4_tunnel_register +EXPORT_SYMBOL net/ipv4/udp_tunnel 0x688d5ca8 udp_sock_create4 +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x6b3027bd ip6_tnl_get_cap +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x72aa001b ip6_tnl_get_iflink +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0x8ca7f915 ip6_tnl_get_link_net +EXPORT_SYMBOL net/ipv6/ip6_tunnel 0xad272cfb ip6_tnl_parse_tlv_enc_lim +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x61c27d91 ip6t_unregister_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0x8bcecccd ip6t_do_table +EXPORT_SYMBOL net/ipv6/netfilter/ip6_tables 0xb5c13ddb ip6t_register_table +EXPORT_SYMBOL net/ipv6/tunnel6 0x7aca4bee xfrm6_tunnel_register +EXPORT_SYMBOL net/ipv6/tunnel6 0xfcb9ff54 xfrm6_tunnel_deregister +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0x338d92e5 xfrm6_tunnel_alloc_spi +EXPORT_SYMBOL net/ipv6/xfrm6_tunnel 0xca99fb35 xfrm6_tunnel_spi_lookup +EXPORT_SYMBOL net/l2tp/l2tp_core 0x96524785 l2tp_recv_common +EXPORT_SYMBOL net/l2tp/l2tp_ip 0xb3ef35bd l2tp_ioctl +EXPORT_SYMBOL net/llc/llc 0x1cccf159 llc_sap_close +EXPORT_SYMBOL net/llc/llc 0x38b92846 llc_remove_pack +EXPORT_SYMBOL net/llc/llc 0x3a690683 llc_sap_open +EXPORT_SYMBOL net/llc/llc 0x52d7b2fd llc_sap_list +EXPORT_SYMBOL net/llc/llc 0x7d4d1d25 llc_sap_find +EXPORT_SYMBOL net/llc/llc 0x83d4d139 llc_mac_hdr_init +EXPORT_SYMBOL net/llc/llc 0xa91ad775 llc_set_station_handler +EXPORT_SYMBOL net/llc/llc 0xb8ace0a6 llc_add_pack +EXPORT_SYMBOL net/llc/llc 0xd1c70478 llc_build_and_send_ui_pkt +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x52fa0b5c ip_vs_conn_out_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5b4be7d1 ip_vs_proto_data_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x5ba013c6 ip_vs_conn_in_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x6884b8f6 ip_vs_proto_get +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x75333f8d unregister_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x7de22c87 register_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x83578247 ip_vs_tcp_conn_listen +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0x8d830a22 unregister_ip_vs_scheduler +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb3655be4 ip_vs_conn_new +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xb82a86fa register_ip_vs_app +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xc4fcd886 ip_vs_scheduler_err +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xd831a1a2 ip_vs_proto_name +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xe4e2f2a5 ip_vs_nfct_expect_related +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xeb79c07a ip_vs_conn_put +EXPORT_SYMBOL net/netfilter/ipvs/ip_vs 0xf50b6c5f register_ip_vs_app_inc +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3dda46f2 nf_conntrack_untracked +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x3e27e6dd __nf_ct_ext_destroy +EXPORT_SYMBOL net/netfilter/nf_conntrack 0x7248665e __nf_ct_ext_add_length +EXPORT_SYMBOL net/netfilter/nf_conntrack_pptp 0x827cc6a1 pptp_msg_name +EXPORT_SYMBOL net/netfilter/nf_nat 0x4a7b5705 nf_xfrm_me_harder +EXPORT_SYMBOL net/netfilter/nf_nat 0x8a1232e2 nf_nat_setup_info +EXPORT_SYMBOL net/netfilter/nf_nat 0x8b8745c4 __nf_nat_mangle_tcp_packet +EXPORT_SYMBOL net/netfilter/nf_nat 0xab0bb988 nf_nat_used_tuple +EXPORT_SYMBOL net/netfilter/nf_nat 0xe6f23b9b nf_nat_follow_master +EXPORT_SYMBOL net/netfilter/nf_nat 0xf4332c5c nf_nat_mangle_udp_packet +EXPORT_SYMBOL net/netfilter/x_tables 0x06f620c2 xt_find_match +EXPORT_SYMBOL net/netfilter/x_tables 0x253e8b44 xt_compat_init_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0x4862ee15 xt_register_targets +EXPORT_SYMBOL net/netfilter/x_tables 0x4b52d8e2 xt_unregister_match +EXPORT_SYMBOL net/netfilter/x_tables 0x4cb73398 xt_unregister_matches +EXPORT_SYMBOL net/netfilter/x_tables 0x555c3243 xt_alloc_table_info +EXPORT_SYMBOL net/netfilter/x_tables 0x78df091b xt_unregister_target +EXPORT_SYMBOL net/netfilter/x_tables 0x868572c4 xt_register_target +EXPORT_SYMBOL net/netfilter/x_tables 0x9514b97f xt_register_match +EXPORT_SYMBOL net/netfilter/x_tables 0x9fc094c8 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 0xd32fe2d0 xt_find_target +EXPORT_SYMBOL net/netfilter/x_tables 0xd87ae60d xt_check_entry_offsets +EXPORT_SYMBOL net/netfilter/x_tables 0xe31f0079 xt_register_matches +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x077c1f97 rxrpc_kernel_begin_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x0a8a15f7 rxrpc_kernel_accept_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x105d0c13 rxrpc_get_server_data_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x32f3afe3 rxrpc_kernel_data_delivered +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3365d0ae rxrpc_kernel_is_data_last +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x39889b7f rxrpc_kernel_free_skb +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3d16d02b rxrpc_get_null_key +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x3dda80b0 rxrpc_kernel_end_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x42f992f1 key_type_rxrpc +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x72462393 rxrpc_kernel_intercept_rx_messages +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x76cd2f74 rxrpc_kernel_reject_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0x94d0ac62 rxrpc_kernel_abort_call +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc3229d90 rxrpc_kernel_get_abort_code +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xc57069e2 rxrpc_kernel_send_data +EXPORT_SYMBOL net/rxrpc/af-rxrpc 0xe6f5fd44 rxrpc_kernel_get_error_number +EXPORT_SYMBOL net/sctp/sctp 0x5e4eda38 sctp_do_peeloff +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xa0400bf6 gss_mech_get +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xe9dd26de gss_pseudoflavor_to_service +EXPORT_SYMBOL net/sunrpc/auth_gss/auth_rpcgss 0xf930587c gss_mech_put +EXPORT_SYMBOL net/sunrpc/sunrpc 0x34ecfd08 svc_pool_stats_open +EXPORT_SYMBOL net/sunrpc/sunrpc 0xa5eba1f1 xdr_truncate_encode +EXPORT_SYMBOL net/sunrpc/sunrpc 0xbeb184cb xdr_restrict_buflen +EXPORT_SYMBOL vmlinux 0x0050e44b inet_dgram_connect +EXPORT_SYMBOL vmlinux 0x005339d7 tcp_getsockopt +EXPORT_SYMBOL vmlinux 0x005ba061 param_ops_ushort +EXPORT_SYMBOL vmlinux 0x0063cbd9 scsi_report_device_reset +EXPORT_SYMBOL vmlinux 0x0070cd1f queue_delayed_work_on +EXPORT_SYMBOL vmlinux 0x00abed75 __wait_on_bit +EXPORT_SYMBOL vmlinux 0x00e7c6a6 param_set_ulong +EXPORT_SYMBOL vmlinux 0x00edd2a0 d_tmpfile +EXPORT_SYMBOL vmlinux 0x00f089b0 inet_frags_init +EXPORT_SYMBOL vmlinux 0x00f4a223 _ebc_toupper +EXPORT_SYMBOL vmlinux 0x01000e51 schedule +EXPORT_SYMBOL vmlinux 0x0101d5b1 ip_idents_reserve +EXPORT_SYMBOL vmlinux 0x011b0b34 tcp_rcv_state_process +EXPORT_SYMBOL vmlinux 0x013b29a3 set_binfmt +EXPORT_SYMBOL vmlinux 0x013dd9a3 ccw_device_set_options +EXPORT_SYMBOL vmlinux 0x014901a2 pci_platform_rom +EXPORT_SYMBOL vmlinux 0x016e5c2a mod_timer +EXPORT_SYMBOL vmlinux 0x01802855 xfrm_spd_getinfo +EXPORT_SYMBOL vmlinux 0x0185a7d7 sclp_pci_deconfigure +EXPORT_SYMBOL vmlinux 0x0191a080 ip_mc_inc_group +EXPORT_SYMBOL vmlinux 0x01cb22d9 blk_put_queue +EXPORT_SYMBOL vmlinux 0x01d6bc09 kmem_cache_alloc_trace +EXPORT_SYMBOL vmlinux 0x01dbab5d load_nls_default +EXPORT_SYMBOL vmlinux 0x01e778a0 clocksource_unregister +EXPORT_SYMBOL vmlinux 0x01ebcb7b lg_global_unlock +EXPORT_SYMBOL vmlinux 0x01f460fe inet6_unregister_protosw +EXPORT_SYMBOL vmlinux 0x021e9f69 blk_run_queue_async +EXPORT_SYMBOL vmlinux 0x0224a8ec blk_queue_io_opt +EXPORT_SYMBOL vmlinux 0x023aaa95 bio_split +EXPORT_SYMBOL vmlinux 0x024bf827 radix_tree_gang_lookup_tag_slot +EXPORT_SYMBOL vmlinux 0x02522169 kernel_sock_ioctl +EXPORT_SYMBOL vmlinux 0x025ea691 skb_trim +EXPORT_SYMBOL vmlinux 0x02649054 security_sock_rcv_skb +EXPORT_SYMBOL vmlinux 0x0269f1e9 do_SAK +EXPORT_SYMBOL vmlinux 0x026b66cd bio_put +EXPORT_SYMBOL vmlinux 0x0274dc2b netif_get_num_default_rss_queues +EXPORT_SYMBOL vmlinux 0x0297575f simple_lookup +EXPORT_SYMBOL vmlinux 0x02a18c74 nf_conntrack_destroy +EXPORT_SYMBOL vmlinux 0x02a6ce5a crc16_table +EXPORT_SYMBOL vmlinux 0x02b3c891 eth_type_trans +EXPORT_SYMBOL vmlinux 0x02b58edc nvm_set_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x02b880c3 set_guest_storage_key +EXPORT_SYMBOL vmlinux 0x02c87746 seq_path +EXPORT_SYMBOL vmlinux 0x02ca22a8 hex_dump_to_buffer +EXPORT_SYMBOL vmlinux 0x02da02b7 ccw_device_start +EXPORT_SYMBOL vmlinux 0x02da737b inet_rtx_syn_ack +EXPORT_SYMBOL vmlinux 0x02e67282 sock_release +EXPORT_SYMBOL vmlinux 0x02ea111e scsi_driverbyte_string +EXPORT_SYMBOL vmlinux 0x02edc7c1 ip_check_defrag +EXPORT_SYMBOL vmlinux 0x02fa2d3f tcp_initialize_rcv_mss +EXPORT_SYMBOL vmlinux 0x0313db5a read_cache_page +EXPORT_SYMBOL vmlinux 0x0314bcba pci_reenable_device +EXPORT_SYMBOL vmlinux 0x03267b4e scsi_mode_sense +EXPORT_SYMBOL vmlinux 0x033210b2 from_kuid_munged +EXPORT_SYMBOL vmlinux 0x0334da4e scsi_command_size_tbl +EXPORT_SYMBOL vmlinux 0x03498156 cpu_rmap_update +EXPORT_SYMBOL vmlinux 0x03592ea0 security_unix_stream_connect +EXPORT_SYMBOL vmlinux 0x035c7673 skb_dequeue +EXPORT_SYMBOL vmlinux 0x0366307a console_suspend_enabled +EXPORT_SYMBOL vmlinux 0x03744eed eth_gro_receive +EXPORT_SYMBOL vmlinux 0x03746fed nf_hooks_needed +EXPORT_SYMBOL vmlinux 0x037a0cba kfree +EXPORT_SYMBOL vmlinux 0x0388a5d8 idr_init +EXPORT_SYMBOL vmlinux 0x03af7a57 nvm_get_blk_unlocked +EXPORT_SYMBOL vmlinux 0x03b5b412 replace_mount_options +EXPORT_SYMBOL vmlinux 0x03b60c93 elv_dispatch_sort +EXPORT_SYMBOL vmlinux 0x03c59b87 bdgrab +EXPORT_SYMBOL vmlinux 0x03cd5d0d tsb_init +EXPORT_SYMBOL vmlinux 0x03d1dab3 scsi_device_get +EXPORT_SYMBOL vmlinux 0x03d22896 unregister_key_type +EXPORT_SYMBOL vmlinux 0x03d78315 audit_log_task_info +EXPORT_SYMBOL vmlinux 0x03f0fab7 debug_register_mode +EXPORT_SYMBOL vmlinux 0x03fd2571 vm_unmap_ram +EXPORT_SYMBOL vmlinux 0x041681dd d_set_fallthru +EXPORT_SYMBOL vmlinux 0x041da135 simple_unlink +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 0x04482cdb __refrigerator +EXPORT_SYMBOL vmlinux 0x0464c486 bdput +EXPORT_SYMBOL vmlinux 0x04810ea5 down_killable +EXPORT_SYMBOL vmlinux 0x04924f3d __dev_remove_pack +EXPORT_SYMBOL vmlinux 0x04927208 cpu_active_mask +EXPORT_SYMBOL vmlinux 0x049db6cb nvm_generic_to_addr_mode +EXPORT_SYMBOL vmlinux 0x04ce0480 tcp_v4_md5_lookup +EXPORT_SYMBOL vmlinux 0x04d3960a blk_queue_dma_alignment +EXPORT_SYMBOL vmlinux 0x04de9d11 copy_from_iter +EXPORT_SYMBOL vmlinux 0x04e25a41 scsi_report_opcode +EXPORT_SYMBOL vmlinux 0x04ea56f9 _kstrtol +EXPORT_SYMBOL vmlinux 0x050f9c23 tty_port_alloc_xmit_buf +EXPORT_SYMBOL vmlinux 0x05196c99 alloc_disk_node +EXPORT_SYMBOL vmlinux 0x05240ee7 percpu_counter_batch +EXPORT_SYMBOL vmlinux 0x05666e9a param_ops_string +EXPORT_SYMBOL vmlinux 0x056d5987 pci_fixup_cardbus +EXPORT_SYMBOL vmlinux 0x056e759d tcf_destroy_chain +EXPORT_SYMBOL vmlinux 0x057c4ea5 lockref_get_or_lock +EXPORT_SYMBOL vmlinux 0x059357d3 dump_skip +EXPORT_SYMBOL vmlinux 0x05f872e1 bit_waitqueue +EXPORT_SYMBOL vmlinux 0x05f97614 tty_mutex +EXPORT_SYMBOL vmlinux 0x06026d3b sg_copy_buffer +EXPORT_SYMBOL vmlinux 0x0613147b loop_backing_file +EXPORT_SYMBOL vmlinux 0x06134ae9 tcp_rtx_synack +EXPORT_SYMBOL vmlinux 0x061651be strcat +EXPORT_SYMBOL vmlinux 0x06261793 proc_create_data +EXPORT_SYMBOL vmlinux 0x0628f619 pci_stop_and_remove_bus_device +EXPORT_SYMBOL vmlinux 0x0634100a bitmap_parselist_user +EXPORT_SYMBOL vmlinux 0x063a95e9 nf_ct_attach +EXPORT_SYMBOL vmlinux 0x063ed7e2 netpoll_setup +EXPORT_SYMBOL vmlinux 0x06620c72 dquot_quotactl_sysfile_ops +EXPORT_SYMBOL vmlinux 0x066e8345 lockref_get +EXPORT_SYMBOL vmlinux 0x06713ed5 neigh_seq_stop +EXPORT_SYMBOL vmlinux 0x067d8d35 security_release_secctx +EXPORT_SYMBOL vmlinux 0x0687a454 pci_msix_vec_count +EXPORT_SYMBOL vmlinux 0x06a485f2 __krealloc +EXPORT_SYMBOL vmlinux 0x06d6e5d5 __ww_mutex_lock +EXPORT_SYMBOL vmlinux 0x06e78f56 pci_enable_device_io +EXPORT_SYMBOL vmlinux 0x06eae111 neigh_sysctl_unregister +EXPORT_SYMBOL vmlinux 0x06f5d4ad xfrm4_rcv +EXPORT_SYMBOL vmlinux 0x06fc0d66 scsi_remove_target +EXPORT_SYMBOL vmlinux 0x0717639e dev_alloc_name +EXPORT_SYMBOL vmlinux 0x07297511 crc_t10dif_update +EXPORT_SYMBOL vmlinux 0x074ca68d proc_symlink +EXPORT_SYMBOL vmlinux 0x07522e9c __blk_end_request +EXPORT_SYMBOL vmlinux 0x075aa691 tcf_em_tree_destroy +EXPORT_SYMBOL vmlinux 0x07681101 netdev_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x07844759 dm_unregister_target +EXPORT_SYMBOL vmlinux 0x07a4b576 flex_array_free +EXPORT_SYMBOL vmlinux 0x07a9ef84 release_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x07cbe8c8 pci_set_mwi +EXPORT_SYMBOL vmlinux 0x07cc4a5d printk_timed_ratelimit +EXPORT_SYMBOL vmlinux 0x08044d6f idr_find_slowpath +EXPORT_SYMBOL vmlinux 0x0818533c textsearch_unregister +EXPORT_SYMBOL vmlinux 0x081d65d9 udp_lib_setsockopt +EXPORT_SYMBOL vmlinux 0x08287aeb from_kgid_munged +EXPORT_SYMBOL vmlinux 0x082c3213 pci_root_buses +EXPORT_SYMBOL vmlinux 0x08345a7d sock_no_sendpage +EXPORT_SYMBOL vmlinux 0x0853aa9c tty_name +EXPORT_SYMBOL vmlinux 0x086467c4 dqput +EXPORT_SYMBOL vmlinux 0x0872c50c pcim_iomap_regions +EXPORT_SYMBOL vmlinux 0x08812205 migrate_page_copy +EXPORT_SYMBOL vmlinux 0x0897e246 netdev_printk +EXPORT_SYMBOL vmlinux 0x08a55005 bdi_set_max_ratio +EXPORT_SYMBOL vmlinux 0x08aa9a71 module_put +EXPORT_SYMBOL vmlinux 0x08ace69e register_external_irq +EXPORT_SYMBOL vmlinux 0x08b00bac crypto_sha512_update +EXPORT_SYMBOL vmlinux 0x08c34a9a page_waitqueue +EXPORT_SYMBOL vmlinux 0x08dce49d mount_ns +EXPORT_SYMBOL vmlinux 0x091db190 ns_capable +EXPORT_SYMBOL vmlinux 0x092dd1fc generic_file_mmap +EXPORT_SYMBOL vmlinux 0x09576f93 complete_and_exit +EXPORT_SYMBOL vmlinux 0x09580deb init_timer_key +EXPORT_SYMBOL vmlinux 0x0960ea11 param_get_short +EXPORT_SYMBOL vmlinux 0x097213bc skb_make_writable +EXPORT_SYMBOL vmlinux 0x0983ee49 fsnotify_alloc_group +EXPORT_SYMBOL vmlinux 0x09915f70 udp_table +EXPORT_SYMBOL vmlinux 0x0992610b __page_symlink +EXPORT_SYMBOL vmlinux 0x099bcbd4 blk_mq_alloc_tag_set +EXPORT_SYMBOL vmlinux 0x09ac02f7 tcp_simple_retransmit +EXPORT_SYMBOL vmlinux 0x09c55cec schedule_timeout_interruptible +EXPORT_SYMBOL vmlinux 0x09ca5669 iterate_fd +EXPORT_SYMBOL vmlinux 0x09d44df9 in_lock_functions +EXPORT_SYMBOL vmlinux 0x09feb7f5 __skb_checksum_complete +EXPORT_SYMBOL vmlinux 0x09ff32e4 ip_mc_leave_group +EXPORT_SYMBOL vmlinux 0x0a2b8d3b scsi_host_set_state +EXPORT_SYMBOL vmlinux 0x0a2d1cd4 dev_addr_add +EXPORT_SYMBOL vmlinux 0x0a4bab46 always_delete_dentry +EXPORT_SYMBOL vmlinux 0x0a57863e cancel_delayed_work_sync +EXPORT_SYMBOL vmlinux 0x0a770832 register_memory_notifier +EXPORT_SYMBOL vmlinux 0x0a80bf86 dma_common_get_sgtable +EXPORT_SYMBOL vmlinux 0x0aa309cf synchronize_hardirq +EXPORT_SYMBOL vmlinux 0x0aa672b1 scsi_host_get +EXPORT_SYMBOL vmlinux 0x0aacd352 __kfifo_len_r +EXPORT_SYMBOL vmlinux 0x0ac0bf65 blk_queue_prep_rq +EXPORT_SYMBOL vmlinux 0x0ac26590 invalidate_mapping_pages +EXPORT_SYMBOL vmlinux 0x0ae37f4f set_posix_acl +EXPORT_SYMBOL vmlinux 0x0af88c58 config_item_put +EXPORT_SYMBOL vmlinux 0x0b0d888b icmpv6_err_convert +EXPORT_SYMBOL vmlinux 0x0b1beb31 vmalloc_32_user +EXPORT_SYMBOL vmlinux 0x0b5f198f nvm_unregister +EXPORT_SYMBOL vmlinux 0x0b68740d writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x0b715d58 check_disk_size_change +EXPORT_SYMBOL vmlinux 0x0b742fd7 simple_strtol +EXPORT_SYMBOL vmlinux 0x0b7a987f __kernel_write +EXPORT_SYMBOL vmlinux 0x0bbc5908 gen_estimator_active +EXPORT_SYMBOL vmlinux 0x0bc477a2 irq_set_irq_type +EXPORT_SYMBOL vmlinux 0x0bec05cd blk_cleanup_queue +EXPORT_SYMBOL vmlinux 0x0c02cbac write_one_page +EXPORT_SYMBOL vmlinux 0x0c16e014 dm_get_device +EXPORT_SYMBOL vmlinux 0x0c196fe9 tcf_hash_new_index +EXPORT_SYMBOL vmlinux 0x0c1bd9b4 blk_post_runtime_suspend +EXPORT_SYMBOL vmlinux 0x0c21d019 flush_delayed_work +EXPORT_SYMBOL vmlinux 0x0c36bb80 vlan_uses_dev +EXPORT_SYMBOL vmlinux 0x0c449a83 jbd2_journal_init_jbd_inode +EXPORT_SYMBOL vmlinux 0x0c456b9d down_read_trylock +EXPORT_SYMBOL vmlinux 0x0c45fc96 vfs_lstat +EXPORT_SYMBOL vmlinux 0x0c51c518 mapping_tagged +EXPORT_SYMBOL vmlinux 0x0c53c3c9 nvm_dev_dma_alloc +EXPORT_SYMBOL vmlinux 0x0c566faf param_ops_uint +EXPORT_SYMBOL vmlinux 0x0c58a8cd netdev_increment_features +EXPORT_SYMBOL vmlinux 0x0c5f2a5b idr_get_next +EXPORT_SYMBOL vmlinux 0x0c69372d md_cluster_ops +EXPORT_SYMBOL vmlinux 0x0c7cf7c6 zero_page_mask +EXPORT_SYMBOL vmlinux 0x0c9c5cda dev_queue_xmit_accel +EXPORT_SYMBOL vmlinux 0x0cae232b utf16s_to_utf8s +EXPORT_SYMBOL vmlinux 0x0cceac6c iommu_tbl_range_free +EXPORT_SYMBOL vmlinux 0x0cd52b68 dev_mc_del_global +EXPORT_SYMBOL vmlinux 0x0cee4977 generic_setlease +EXPORT_SYMBOL vmlinux 0x0d3cb9a7 ioc_lookup_icq +EXPORT_SYMBOL vmlinux 0x0d4edd55 consume_skb +EXPORT_SYMBOL vmlinux 0x0d542439 __ipv6_addr_type +EXPORT_SYMBOL vmlinux 0x0d61eeee __bitmap_subset +EXPORT_SYMBOL vmlinux 0x0d716ce7 bio_clone_fast +EXPORT_SYMBOL vmlinux 0x0da10ec3 security_sock_graft +EXPORT_SYMBOL vmlinux 0x0da3ce51 blk_alloc_queue_node +EXPORT_SYMBOL vmlinux 0x0dc3f4a6 blk_queue_end_tag +EXPORT_SYMBOL vmlinux 0x0de236b5 poll_initwait +EXPORT_SYMBOL vmlinux 0x0e079ac7 __wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0x0e129288 tcf_exts_validate +EXPORT_SYMBOL vmlinux 0x0e20373a simple_transaction_release +EXPORT_SYMBOL vmlinux 0x0e208dc4 posix_acl_to_xattr +EXPORT_SYMBOL vmlinux 0x0e29c37d netdev_all_upper_get_next_dev_rcu +EXPORT_SYMBOL vmlinux 0x0e52f08f pcie_set_readrq +EXPORT_SYMBOL vmlinux 0x0e6da44a set_normalized_timespec +EXPORT_SYMBOL vmlinux 0x0e8b2f80 debug_unregister +EXPORT_SYMBOL vmlinux 0x0e9d3dfa netdev_emerg +EXPORT_SYMBOL vmlinux 0x0ea763c3 sclp_sync_wait +EXPORT_SYMBOL vmlinux 0x0eab56fa __kfifo_max_r +EXPORT_SYMBOL vmlinux 0x0ee5747c skb_copy_bits +EXPORT_SYMBOL vmlinux 0x0efcbb1b set_current_groups +EXPORT_SYMBOL vmlinux 0x0f1c725d security_path_truncate +EXPORT_SYMBOL vmlinux 0x0f4beb0d try_to_writeback_inodes_sb_nr +EXPORT_SYMBOL vmlinux 0x0f4c91ed ns_to_timespec +EXPORT_SYMBOL vmlinux 0x0f68e153 security_path_mkdir +EXPORT_SYMBOL vmlinux 0x0f6a3b5c string_get_size +EXPORT_SYMBOL vmlinux 0x0f7a0da5 make_flow_keys_digest +EXPORT_SYMBOL vmlinux 0x0f9ab0d4 pci_set_dma_max_seg_size +EXPORT_SYMBOL vmlinux 0x0fa590c4 netdev_master_upper_dev_link_private +EXPORT_SYMBOL vmlinux 0x0faef0ed __tasklet_schedule +EXPORT_SYMBOL vmlinux 0x0fb2f8a4 mktime64 +EXPORT_SYMBOL vmlinux 0x0fb43806 netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x0fb73f52 shrink_dcache_sb +EXPORT_SYMBOL vmlinux 0x0fb7ed91 skb_insert +EXPORT_SYMBOL vmlinux 0x10191a6f pci_bus_alloc_resource +EXPORT_SYMBOL vmlinux 0x1048ac54 nvm_get_blk +EXPORT_SYMBOL vmlinux 0x10497616 memweight +EXPORT_SYMBOL vmlinux 0x104a9620 blk_integrity_register +EXPORT_SYMBOL vmlinux 0x1054e732 __tracepoint_kfree +EXPORT_SYMBOL vmlinux 0x107e5878 zlib_inflateEnd +EXPORT_SYMBOL vmlinux 0x10950ee1 radix_tree_tag_clear +EXPORT_SYMBOL vmlinux 0x10c494c1 xfrm6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x10c56ee9 inet_frag_destroy +EXPORT_SYMBOL vmlinux 0x10cfb413 tcp_child_process +EXPORT_SYMBOL vmlinux 0x10dcd45a d_find_any_alias +EXPORT_SYMBOL vmlinux 0x10f2eb76 vsnprintf +EXPORT_SYMBOL vmlinux 0x10f98e96 key_instantiate_and_link +EXPORT_SYMBOL vmlinux 0x11065b17 dev_notice +EXPORT_SYMBOL vmlinux 0x11089ac7 _ctype +EXPORT_SYMBOL vmlinux 0x1115e9ab lz4_decompress_unknownoutputsize +EXPORT_SYMBOL vmlinux 0x1148f378 devm_request_threaded_irq +EXPORT_SYMBOL vmlinux 0x115b3f28 xfrm6_prepare_output +EXPORT_SYMBOL vmlinux 0x1163f0a7 blk_max_low_pfn +EXPORT_SYMBOL vmlinux 0x117093be qdisc_class_hash_init +EXPORT_SYMBOL vmlinux 0x11874767 sock_no_shutdown +EXPORT_SYMBOL vmlinux 0x11885738 netdev_crit +EXPORT_SYMBOL vmlinux 0x118c1e43 disk_stack_limits +EXPORT_SYMBOL vmlinux 0x11a044f6 mod_timer_pinned +EXPORT_SYMBOL vmlinux 0x11dac442 pci_match_id +EXPORT_SYMBOL vmlinux 0x11e4b96b d_rehash +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 0x121fe531 send_sig +EXPORT_SYMBOL vmlinux 0x1224d249 param_get_invbool +EXPORT_SYMBOL vmlinux 0x12272f3c posix_lock_file +EXPORT_SYMBOL vmlinux 0x123f82f3 getrawmonotonic64 +EXPORT_SYMBOL vmlinux 0x124cf52b qdisc_watchdog_cancel +EXPORT_SYMBOL vmlinux 0x1251a12e console_mode +EXPORT_SYMBOL vmlinux 0x12588c94 pcie_capability_read_dword +EXPORT_SYMBOL vmlinux 0x125a3d63 neigh_resolve_output +EXPORT_SYMBOL vmlinux 0x12887a93 atomic_dec_and_mutex_lock +EXPORT_SYMBOL vmlinux 0x1296be15 scsi_eh_finish_cmd +EXPORT_SYMBOL vmlinux 0x12a38747 usleep_range +EXPORT_SYMBOL vmlinux 0x12b4a362 ndo_dflt_fdb_dump +EXPORT_SYMBOL vmlinux 0x12d05f00 do_splice_to +EXPORT_SYMBOL vmlinux 0x1319449d secure_modules +EXPORT_SYMBOL vmlinux 0x13307fde vsscanf +EXPORT_SYMBOL vmlinux 0x13315729 flex_array_alloc +EXPORT_SYMBOL vmlinux 0x13548114 seq_putc +EXPORT_SYMBOL vmlinux 0x136dc51a sock_no_setsockopt +EXPORT_SYMBOL vmlinux 0x136ebe02 __skb_tx_hash +EXPORT_SYMBOL vmlinux 0x13856d35 iommu_tbl_range_alloc +EXPORT_SYMBOL vmlinux 0x13b8fb9c vfs_symlink +EXPORT_SYMBOL vmlinux 0x13d0adf7 __kfifo_out +EXPORT_SYMBOL vmlinux 0x13d85112 sk_net_capable +EXPORT_SYMBOL vmlinux 0x13def6d1 sockfd_lookup +EXPORT_SYMBOL vmlinux 0x13eb9424 __kfree_skb +EXPORT_SYMBOL vmlinux 0x13f21128 __pci_enable_wake +EXPORT_SYMBOL vmlinux 0x13f42152 system_entering_hibernation +EXPORT_SYMBOL vmlinux 0x13f4bc8b sock_diag_put_filterinfo +EXPORT_SYMBOL vmlinux 0x14b7287f blk_dump_rq_flags +EXPORT_SYMBOL vmlinux 0x14c5e5b3 segment_warning +EXPORT_SYMBOL vmlinux 0x14cee223 kvasprintf_const +EXPORT_SYMBOL vmlinux 0x14ed6025 sg_pcopy_to_buffer +EXPORT_SYMBOL vmlinux 0x14ff4d1f napi_consume_skb +EXPORT_SYMBOL vmlinux 0x1503c75b seq_open_private +EXPORT_SYMBOL vmlinux 0x150c5fc1 devm_kvasprintf +EXPORT_SYMBOL vmlinux 0x15132be9 dev_loopback_xmit +EXPORT_SYMBOL vmlinux 0x154c6338 dm_kcopyd_client_destroy +EXPORT_SYMBOL vmlinux 0x1563f846 posix_acl_update_mode +EXPORT_SYMBOL vmlinux 0x156b6b3a jbd2_log_wait_commit +EXPORT_SYMBOL vmlinux 0x157c6a28 filemap_fdatawrite_range +EXPORT_SYMBOL vmlinux 0x158b0533 blk_get_queue +EXPORT_SYMBOL vmlinux 0x15a3084c param_set_bool +EXPORT_SYMBOL vmlinux 0x15bafe29 unregister_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x15c8b4ea blk_queue_init_tags +EXPORT_SYMBOL vmlinux 0x15cfd2b3 blkdev_fsync +EXPORT_SYMBOL vmlinux 0x15e769eb generic_fillattr +EXPORT_SYMBOL vmlinux 0x15e8607b scsi_dma_map +EXPORT_SYMBOL vmlinux 0x1619fedb load_nls +EXPORT_SYMBOL vmlinux 0x163f3ec1 vlan_vid_del +EXPORT_SYMBOL vmlinux 0x1642219f eth_validate_addr +EXPORT_SYMBOL vmlinux 0x16465cd4 blk_queue_segment_boundary +EXPORT_SYMBOL vmlinux 0x1687fa13 ethtool_op_get_ts_info +EXPORT_SYMBOL vmlinux 0x169b7aee unregister_adapter_interrupt +EXPORT_SYMBOL vmlinux 0x16a6aaa5 generic_removexattr +EXPORT_SYMBOL vmlinux 0x16bf9704 proc_mkdir_mode +EXPORT_SYMBOL vmlinux 0x16e297c3 bit_wait +EXPORT_SYMBOL vmlinux 0x1711fc55 dev_getbyhwaddr_rcu +EXPORT_SYMBOL vmlinux 0x1718de35 tcp_conn_request +EXPORT_SYMBOL vmlinux 0x1719d242 sk_receive_skb +EXPORT_SYMBOL vmlinux 0x172479ac __cleancache_invalidate_inode +EXPORT_SYMBOL vmlinux 0x172a7ff2 inet_csk_reqsk_queue_drop +EXPORT_SYMBOL vmlinux 0x1738afcc __debug_sprintf_exception +EXPORT_SYMBOL vmlinux 0x176cb6d9 jbd2_journal_init_dev +EXPORT_SYMBOL vmlinux 0x17868737 kill_fasync +EXPORT_SYMBOL vmlinux 0x178e1584 dquot_quota_on +EXPORT_SYMBOL vmlinux 0x1793f685 radix_tree_tagged +EXPORT_SYMBOL vmlinux 0x17a142df __copy_from_user +EXPORT_SYMBOL vmlinux 0x17b1125d gen_kill_estimator +EXPORT_SYMBOL vmlinux 0x17b27b09 simple_statfs +EXPORT_SYMBOL vmlinux 0x17d83d64 blk_get_request +EXPORT_SYMBOL vmlinux 0x17e05223 raw3270_del_view +EXPORT_SYMBOL vmlinux 0x18093de1 key_task_permission +EXPORT_SYMBOL vmlinux 0x1813cbc2 blk_finish_request +EXPORT_SYMBOL vmlinux 0x1829d188 wait_woken +EXPORT_SYMBOL vmlinux 0x183fa88b mempool_alloc_slab +EXPORT_SYMBOL vmlinux 0x1840fb62 jbd2__journal_start +EXPORT_SYMBOL vmlinux 0x184d1412 vfs_mkdir +EXPORT_SYMBOL vmlinux 0x187114b5 __vlan_find_dev_deep_rcu +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 0x18acd9bc pcim_iomap_regions_request_all +EXPORT_SYMBOL vmlinux 0x18b87cca sclp_deactivate +EXPORT_SYMBOL vmlinux 0x18d73ec4 blk_queue_update_dma_pad +EXPORT_SYMBOL vmlinux 0x18e30786 buffer_check_dirty_writeback +EXPORT_SYMBOL vmlinux 0x18e60984 __do_once_start +EXPORT_SYMBOL vmlinux 0x18f4a50a qdisc_tree_reduce_backlog +EXPORT_SYMBOL vmlinux 0x19905e80 do_truncate +EXPORT_SYMBOL vmlinux 0x199ed0cd net_disable_timestamp +EXPORT_SYMBOL vmlinux 0x19bd383b security_secmark_refcount_dec +EXPORT_SYMBOL vmlinux 0x19d9943c dm_put_device +EXPORT_SYMBOL vmlinux 0x19e439cf get_disk +EXPORT_SYMBOL vmlinux 0x1a230bf8 init_buffer +EXPORT_SYMBOL vmlinux 0x1a23fd07 mount_subtree +EXPORT_SYMBOL vmlinux 0x1a29c107 proc_doulongvec_ms_jiffies_minmax +EXPORT_SYMBOL vmlinux 0x1a306a0a vmalloc_to_page +EXPORT_SYMBOL vmlinux 0x1a6380b5 skb_copy_expand +EXPORT_SYMBOL vmlinux 0x1a6ba2af flow_cache_fini +EXPORT_SYMBOL vmlinux 0x1a8f2576 generic_pipe_buf_get +EXPORT_SYMBOL vmlinux 0x1a92d424 register_key_type +EXPORT_SYMBOL vmlinux 0x1a9b1320 ip6_expire_frag_queue +EXPORT_SYMBOL vmlinux 0x1a9ba638 sk_wait_data +EXPORT_SYMBOL vmlinux 0x1abda425 scsi_target_resume +EXPORT_SYMBOL vmlinux 0x1ac08572 mb_cache_entry_free +EXPORT_SYMBOL vmlinux 0x1acabe75 release_sock +EXPORT_SYMBOL vmlinux 0x1acc3bfb read_cache_page_gfp +EXPORT_SYMBOL vmlinux 0x1add0d36 scsi_cmd_get_serial +EXPORT_SYMBOL vmlinux 0x1b015d25 bitmap_parselist +EXPORT_SYMBOL vmlinux 0x1b0c003c seq_read +EXPORT_SYMBOL vmlinux 0x1b145a6a dmam_free_coherent +EXPORT_SYMBOL vmlinux 0x1b1e1088 sg_nents +EXPORT_SYMBOL vmlinux 0x1b5198b3 crypto_sha1_finup +EXPORT_SYMBOL vmlinux 0x1b5226b2 xfrm_user_policy +EXPORT_SYMBOL vmlinux 0x1b6314fd in_aton +EXPORT_SYMBOL vmlinux 0x1b676e96 udp6_set_csum +EXPORT_SYMBOL vmlinux 0x1b82fefa md_unplug +EXPORT_SYMBOL vmlinux 0x1b978489 scsi_ioctl_reset +EXPORT_SYMBOL vmlinux 0x1bb07a42 lz4_decompress +EXPORT_SYMBOL vmlinux 0x1bb31047 add_timer +EXPORT_SYMBOL vmlinux 0x1bb9e116 set_groups +EXPORT_SYMBOL vmlinux 0x1bce7c67 scsi_target_quiesce +EXPORT_SYMBOL vmlinux 0x1bddf2f5 dev_alert +EXPORT_SYMBOL vmlinux 0x1beebaaf dquot_release +EXPORT_SYMBOL vmlinux 0x1bf15a15 sg_miter_skip +EXPORT_SYMBOL vmlinux 0x1c114a6a vm_event_states +EXPORT_SYMBOL vmlinux 0x1c1c74c7 iucv_message_receive +EXPORT_SYMBOL vmlinux 0x1c61b587 raw3270_start +EXPORT_SYMBOL vmlinux 0x1c69fb4c bitmap_end_sync +EXPORT_SYMBOL vmlinux 0x1c6e730a md_integrity_add_rdev +EXPORT_SYMBOL vmlinux 0x1c80de9c ip_send_check +EXPORT_SYMBOL vmlinux 0x1c9be80a skb_queue_tail +EXPORT_SYMBOL vmlinux 0x1ca690d8 eth_prepare_mac_addr_change +EXPORT_SYMBOL vmlinux 0x1caa9c88 sk_ns_capable +EXPORT_SYMBOL vmlinux 0x1cb189ef km_report +EXPORT_SYMBOL vmlinux 0x1cbb8850 dquot_alloc +EXPORT_SYMBOL vmlinux 0x1cd7ae5c simple_rename +EXPORT_SYMBOL vmlinux 0x1d27ea72 ip_defrag +EXPORT_SYMBOL vmlinux 0x1d3147b9 xfrm_unregister_type +EXPORT_SYMBOL vmlinux 0x1d69298d try_wait_for_completion +EXPORT_SYMBOL vmlinux 0x1d6d0ac5 block_is_partially_uptodate +EXPORT_SYMBOL vmlinux 0x1d6f11d6 sync_inodes_sb +EXPORT_SYMBOL vmlinux 0x1d71a776 irq_to_desc +EXPORT_SYMBOL vmlinux 0x1d9cb70f kern_path_create +EXPORT_SYMBOL vmlinux 0x1daaa625 inode_sub_rsv_space +EXPORT_SYMBOL vmlinux 0x1db10d43 ip6_route_me_harder +EXPORT_SYMBOL vmlinux 0x1db53f0d __brelse +EXPORT_SYMBOL vmlinux 0x1dc068b8 xfrm_prepare_input +EXPORT_SYMBOL vmlinux 0x1ddc6ae4 elv_add_request +EXPORT_SYMBOL vmlinux 0x1e26be3b get_anon_bdev +EXPORT_SYMBOL vmlinux 0x1e34b9f3 security_sb_set_mnt_opts +EXPORT_SYMBOL vmlinux 0x1e418886 zerocopy_sg_from_iter +EXPORT_SYMBOL vmlinux 0x1e6b3b44 rt6_lookup +EXPORT_SYMBOL vmlinux 0x1e6d26a8 strstr +EXPORT_SYMBOL vmlinux 0x1e708d3a nf_log_trace +EXPORT_SYMBOL vmlinux 0x1e7c5d09 blk_mq_complete_request +EXPORT_SYMBOL vmlinux 0x1e8a161a crc_t10dif_generic +EXPORT_SYMBOL vmlinux 0x1e9622c3 inet_frag_kill +EXPORT_SYMBOL vmlinux 0x1e97aa35 sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x1e9edfb7 seq_hlist_start_head_rcu +EXPORT_SYMBOL vmlinux 0x1ea4f542 __dynamic_dev_dbg +EXPORT_SYMBOL vmlinux 0x1ebb8316 add_random_ready_callback +EXPORT_SYMBOL vmlinux 0x1ebcd9ad tcf_em_register +EXPORT_SYMBOL vmlinux 0x1edb6b15 pci_bus_write_config_byte +EXPORT_SYMBOL vmlinux 0x1edf34ea __xfrm_route_forward +EXPORT_SYMBOL vmlinux 0x1eec6e39 locks_free_lock +EXPORT_SYMBOL vmlinux 0x1ef6287a in6_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x1f04f6ca sock_from_file +EXPORT_SYMBOL vmlinux 0x1f33412e param_set_long +EXPORT_SYMBOL vmlinux 0x1f46fed1 get_user_pages +EXPORT_SYMBOL vmlinux 0x1f4b29b1 blk_execute_rq +EXPORT_SYMBOL vmlinux 0x1f538a4d __tracepoint_kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0x1f698062 posix_acl_fix_xattr_userns +EXPORT_SYMBOL vmlinux 0x1f6e14d4 inet6_offloads +EXPORT_SYMBOL vmlinux 0x1f8d75ae udp_disconnect +EXPORT_SYMBOL vmlinux 0x1fa174ff bdi_init +EXPORT_SYMBOL vmlinux 0x1fbd16da ip_tos2prio +EXPORT_SYMBOL vmlinux 0x1fc27503 netif_wake_subqueue +EXPORT_SYMBOL vmlinux 0x1fe0cc76 d_splice_alias +EXPORT_SYMBOL vmlinux 0x1fe44fb9 iov_iter_bvec +EXPORT_SYMBOL vmlinux 0x1fe912f1 netdev_alloc_frag +EXPORT_SYMBOL vmlinux 0x1fe9f800 unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x1fedf0f4 __request_region +EXPORT_SYMBOL vmlinux 0x1ffccfda pci_select_bars +EXPORT_SYMBOL vmlinux 0x20000329 simple_strtoul +EXPORT_SYMBOL vmlinux 0x200698f7 rtnl_set_sk_err +EXPORT_SYMBOL vmlinux 0x200b2041 in6addr_any +EXPORT_SYMBOL vmlinux 0x200d15bb eth_change_mtu +EXPORT_SYMBOL vmlinux 0x2019f3fa iter_file_splice_write +EXPORT_SYMBOL vmlinux 0x2024a8e5 inet_frag_maybe_warn_overflow +EXPORT_SYMBOL vmlinux 0x204c19f5 tcp_alloc_md5sig_pool +EXPORT_SYMBOL vmlinux 0x2058f801 filemap_fault +EXPORT_SYMBOL vmlinux 0x205f4d9f sclp_unregister +EXPORT_SYMBOL vmlinux 0x206ad391 tty_unlock +EXPORT_SYMBOL vmlinux 0x2072ee9b request_threaded_irq +EXPORT_SYMBOL vmlinux 0x207b292b blk_mq_free_tag_set +EXPORT_SYMBOL vmlinux 0x207ec2dc invalidate_inode_buffers +EXPORT_SYMBOL vmlinux 0x20973b94 segment_unload +EXPORT_SYMBOL vmlinux 0x20976f17 find_lock_entry +EXPORT_SYMBOL vmlinux 0x209a5474 nf_unregister_hooks +EXPORT_SYMBOL vmlinux 0x209f4e71 file_ns_capable +EXPORT_SYMBOL vmlinux 0x20a7648c inet6_add_protocol +EXPORT_SYMBOL vmlinux 0x20a789ac irq_set_chip_data +EXPORT_SYMBOL vmlinux 0x20c55ae0 sscanf +EXPORT_SYMBOL vmlinux 0x20e5e79f __xfrm_decode_session +EXPORT_SYMBOL vmlinux 0x20ecce54 dev_load +EXPORT_SYMBOL vmlinux 0x20ecd82f security_req_classify_flow +EXPORT_SYMBOL vmlinux 0x20f4ec00 simple_release_fs +EXPORT_SYMBOL vmlinux 0x210d5871 clocksource_change_rating +EXPORT_SYMBOL vmlinux 0x211f68f1 getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x21213eda scmd_printk +EXPORT_SYMBOL vmlinux 0x2129f42d dqget +EXPORT_SYMBOL vmlinux 0x2133fc81 compat_sock_get_timestamp +EXPORT_SYMBOL vmlinux 0x2154e33d tcp_seq_open +EXPORT_SYMBOL vmlinux 0x215982e8 _dev_info +EXPORT_SYMBOL vmlinux 0x21697a21 iucv_message_reject +EXPORT_SYMBOL vmlinux 0x21833c6e pci_release_regions +EXPORT_SYMBOL vmlinux 0x219d45b5 __vfs_write +EXPORT_SYMBOL vmlinux 0x219eeac7 elevator_exit +EXPORT_SYMBOL vmlinux 0x21af5083 neigh_xmit +EXPORT_SYMBOL vmlinux 0x21b0dfde sync_filesystem +EXPORT_SYMBOL vmlinux 0x21c4d4c5 xfrm_policy_walk_done +EXPORT_SYMBOL vmlinux 0x21da7625 config_group_init_type_name +EXPORT_SYMBOL vmlinux 0x21df74d9 bitmap_set +EXPORT_SYMBOL vmlinux 0x21eb5b00 sclp_cpi_set_data +EXPORT_SYMBOL vmlinux 0x2221c28d ccw_device_clear +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 0x229257e8 blk_queue_resize_tags +EXPORT_SYMBOL vmlinux 0x22ac1d06 raw3270_request_set_data +EXPORT_SYMBOL vmlinux 0x22ad5f9d tcp_md5_hash_skb_data +EXPORT_SYMBOL vmlinux 0x22ecf082 idr_remove +EXPORT_SYMBOL vmlinux 0x234c22bd inet_dgram_ops +EXPORT_SYMBOL vmlinux 0x2358b960 free_netdev +EXPORT_SYMBOL vmlinux 0x2365ede7 __irq_regs +EXPORT_SYMBOL vmlinux 0x236c8c64 memcpy +EXPORT_SYMBOL vmlinux 0x237b8a09 unregister_qdisc +EXPORT_SYMBOL vmlinux 0x237ffe6a ipv6_chk_prefix +EXPORT_SYMBOL vmlinux 0x238dc1b6 revalidate_disk +EXPORT_SYMBOL vmlinux 0x239343e0 pcie_get_minimum_link +EXPORT_SYMBOL vmlinux 0x23a574fd security_secmark_relabel_packet +EXPORT_SYMBOL vmlinux 0x23b78946 __pagevec_release +EXPORT_SYMBOL vmlinux 0x23b9d6e2 mangle_path +EXPORT_SYMBOL vmlinux 0x23d2db96 lockref_mark_dead +EXPORT_SYMBOL vmlinux 0x23d615c9 tcp_release_cb +EXPORT_SYMBOL vmlinux 0x23dbea9a nf_hook_slow +EXPORT_SYMBOL vmlinux 0x23e036c3 dev_emerg +EXPORT_SYMBOL vmlinux 0x23fd3028 vmalloc_node +EXPORT_SYMBOL vmlinux 0x2409287d nf_log_set +EXPORT_SYMBOL vmlinux 0x2414857b simple_getattr +EXPORT_SYMBOL vmlinux 0x24212d86 __frontswap_invalidate_page +EXPORT_SYMBOL vmlinux 0x242f3562 irq_subclass_register +EXPORT_SYMBOL vmlinux 0x2437bfba scsicam_bios_param +EXPORT_SYMBOL vmlinux 0x2438387f tccb_add_dcw +EXPORT_SYMBOL vmlinux 0x2452d606 seq_put_decimal_ull +EXPORT_SYMBOL vmlinux 0x2459bbcc console_set_on_cmdline +EXPORT_SYMBOL vmlinux 0x245cff56 xfrm_register_type +EXPORT_SYMBOL vmlinux 0x2472188e __percpu_counter_compare +EXPORT_SYMBOL vmlinux 0x2482e688 vsprintf +EXPORT_SYMBOL vmlinux 0x2489ee00 bio_integrity_enabled +EXPORT_SYMBOL vmlinux 0x2490b400 page_symlink +EXPORT_SYMBOL vmlinux 0x24ba9283 bio_uncopy_user +EXPORT_SYMBOL vmlinux 0x24c49254 inet_sk_rebuild_header +EXPORT_SYMBOL vmlinux 0x24c6944c invalidate_partition +EXPORT_SYMBOL vmlinux 0x24c88246 ccw_device_clear_options +EXPORT_SYMBOL vmlinux 0x24d4300b sg_miter_start +EXPORT_SYMBOL vmlinux 0x24fbd9cb airq_iv_release +EXPORT_SYMBOL vmlinux 0x24fdac79 wake_bit_function +EXPORT_SYMBOL vmlinux 0x24ff13ff put_cmsg +EXPORT_SYMBOL vmlinux 0x25227fa3 down_read +EXPORT_SYMBOL vmlinux 0x25228412 param_ops_long +EXPORT_SYMBOL vmlinux 0x254be7ae lro_flush_all +EXPORT_SYMBOL vmlinux 0x25575331 tcf_exts_dump_stats +EXPORT_SYMBOL vmlinux 0x25820c64 fs_overflowuid +EXPORT_SYMBOL vmlinux 0x25848139 __seq_open_private +EXPORT_SYMBOL vmlinux 0x25ad2098 inode_init_always +EXPORT_SYMBOL vmlinux 0x25b04495 pcie_capability_clear_and_set_dword +EXPORT_SYMBOL vmlinux 0x25b6302b unregister_netdev +EXPORT_SYMBOL vmlinux 0x25e8ed29 sg_nents_for_len +EXPORT_SYMBOL vmlinux 0x25e9d4bd resource_list_free +EXPORT_SYMBOL vmlinux 0x25ec1b28 strlen +EXPORT_SYMBOL vmlinux 0x25ef30e0 napi_complete_done +EXPORT_SYMBOL vmlinux 0x25f3e0b2 skb_queue_head +EXPORT_SYMBOL vmlinux 0x260d1d85 unload_nls +EXPORT_SYMBOL vmlinux 0x2620ac50 tty_port_hangup +EXPORT_SYMBOL vmlinux 0x263beb75 ecryptfs_get_versions +EXPORT_SYMBOL vmlinux 0x2650d835 sysctl_ip_early_demux +EXPORT_SYMBOL vmlinux 0x26563aeb pci_bus_set_ops +EXPORT_SYMBOL vmlinux 0x267e918b jbd2_journal_check_used_features +EXPORT_SYMBOL vmlinux 0x2698f71d inet_confirm_addr +EXPORT_SYMBOL vmlinux 0x26ab88dd memcg_socket_limit_enabled +EXPORT_SYMBOL vmlinux 0x26ae63f9 nvm_unregister_target +EXPORT_SYMBOL vmlinux 0x26c78142 tcp_check_req +EXPORT_SYMBOL vmlinux 0x26d66e79 param_ops_short +EXPORT_SYMBOL vmlinux 0x26dbeb18 netif_rx_ni +EXPORT_SYMBOL vmlinux 0x26e298e0 unregister_memory_notifier +EXPORT_SYMBOL vmlinux 0x26e76fb8 sysctl_udp_wmem_min +EXPORT_SYMBOL vmlinux 0x26e87341 __neigh_for_each_release +EXPORT_SYMBOL vmlinux 0x26fa50c0 complete +EXPORT_SYMBOL vmlinux 0x2704846c sock_no_getsockopt +EXPORT_SYMBOL vmlinux 0x270fcd45 bio_integrity_alloc +EXPORT_SYMBOL vmlinux 0x27182a5c inet_stream_ops +EXPORT_SYMBOL vmlinux 0x273fc7af get_cached_acl +EXPORT_SYMBOL vmlinux 0x27479d14 param_free_charp +EXPORT_SYMBOL vmlinux 0x274d08dc __kfifo_dma_out_prepare +EXPORT_SYMBOL vmlinux 0x275cf479 lwtunnel_output +EXPORT_SYMBOL vmlinux 0x27864d57 memparse +EXPORT_SYMBOL vmlinux 0x27866435 security_xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x27a913c0 generic_listxattr +EXPORT_SYMBOL vmlinux 0x27bbf221 disable_irq_nosync +EXPORT_SYMBOL vmlinux 0x27e1a049 printk +EXPORT_SYMBOL vmlinux 0x280d1959 inc_zone_page_state +EXPORT_SYMBOL vmlinux 0x2811f1e3 sk_stream_write_space +EXPORT_SYMBOL vmlinux 0x281823c5 __kfifo_out_peek +EXPORT_SYMBOL vmlinux 0x28343bad scnprintf +EXPORT_SYMBOL vmlinux 0x28365e95 netif_napi_add +EXPORT_SYMBOL vmlinux 0x284132fe unregister_quota_format +EXPORT_SYMBOL vmlinux 0x2843c643 __tracepoint_module_get +EXPORT_SYMBOL vmlinux 0x28a2b29f radix_tree_range_tag_if_tagged +EXPORT_SYMBOL vmlinux 0x28a2ed02 scsi_build_sense_buffer +EXPORT_SYMBOL vmlinux 0x28a7a1d3 __dst_destroy_metrics_generic +EXPORT_SYMBOL vmlinux 0x28a97c63 skb_ensure_writable +EXPORT_SYMBOL vmlinux 0x28aa8a83 scsi_vpd_lun_id +EXPORT_SYMBOL vmlinux 0x28bc07a0 pci_add_new_bus +EXPORT_SYMBOL vmlinux 0x28bfe6d2 tty_hangup +EXPORT_SYMBOL vmlinux 0x28e1459b dev_mc_flush +EXPORT_SYMBOL vmlinux 0x29391e7d vm_munmap +EXPORT_SYMBOL vmlinux 0x29408735 blk_stop_queue +EXPORT_SYMBOL vmlinux 0x29419a15 __devcgroup_inode_permission +EXPORT_SYMBOL vmlinux 0x29428bdd sk_reset_timer +EXPORT_SYMBOL vmlinux 0x29537c9e alloc_chrdev_region +EXPORT_SYMBOL vmlinux 0x2959cfe3 udp_lib_getsockopt +EXPORT_SYMBOL vmlinux 0x29789394 empty_zero_page +EXPORT_SYMBOL vmlinux 0x297e0c42 dev_close +EXPORT_SYMBOL vmlinux 0x29bdc07d param_get_uint +EXPORT_SYMBOL vmlinux 0x29d85448 d_delete +EXPORT_SYMBOL vmlinux 0x29f8fbfb neigh_proc_dointvec +EXPORT_SYMBOL vmlinux 0x29ff35bb jbd2_journal_forget +EXPORT_SYMBOL vmlinux 0x2a2266ce ip6_frag_init +EXPORT_SYMBOL vmlinux 0x2a2ecabb elv_rb_find +EXPORT_SYMBOL vmlinux 0x2a37d074 dma_pool_free +EXPORT_SYMBOL vmlinux 0x2a3f5098 md_error +EXPORT_SYMBOL vmlinux 0x2a423de9 sock_queue_rcv_skb +EXPORT_SYMBOL vmlinux 0x2a53c530 sock_alloc_send_pskb +EXPORT_SYMBOL vmlinux 0x2a611173 pagecache_isize_extended +EXPORT_SYMBOL vmlinux 0x2a654e04 pci_set_power_state +EXPORT_SYMBOL vmlinux 0x2a79a5f4 rwsem_down_write_failed +EXPORT_SYMBOL vmlinux 0x2a89daba iov_iter_get_pages_alloc +EXPORT_SYMBOL vmlinux 0x2a9cf881 dev_get_iflink +EXPORT_SYMBOL vmlinux 0x2aad35de mb_cache_destroy +EXPORT_SYMBOL vmlinux 0x2abf0f99 ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x2ac09dd5 __nla_put +EXPORT_SYMBOL vmlinux 0x2acf0feb vfs_fstat +EXPORT_SYMBOL vmlinux 0x2af1d1c7 pci_clear_master +EXPORT_SYMBOL vmlinux 0x2afe8841 install_exec_creds +EXPORT_SYMBOL vmlinux 0x2b00ce99 nvm_end_io +EXPORT_SYMBOL vmlinux 0x2b0ba2b0 scsi_sense_desc_find +EXPORT_SYMBOL vmlinux 0x2b0d92ad jbd2_journal_abort +EXPORT_SYMBOL vmlinux 0x2b15432b dst_release +EXPORT_SYMBOL vmlinux 0x2b2ce78b kstrtos8 +EXPORT_SYMBOL vmlinux 0x2b39c0fa kbd_ascebc +EXPORT_SYMBOL vmlinux 0x2b40f1f8 lwtunnel_encap_del_ops +EXPORT_SYMBOL vmlinux 0x2b420e2d dev_change_carrier +EXPORT_SYMBOL vmlinux 0x2b53b50a nvm_dev_dma_free +EXPORT_SYMBOL vmlinux 0x2b596671 __scsi_alloc_queue +EXPORT_SYMBOL vmlinux 0x2b7ea512 override_creds +EXPORT_SYMBOL vmlinux 0x2b89be97 kmem_cache_alloc_bulk +EXPORT_SYMBOL vmlinux 0x2b9a2b3c tty_unregister_device +EXPORT_SYMBOL vmlinux 0x2b9da7a4 genl_lock +EXPORT_SYMBOL vmlinux 0x2ba707a8 sysctl_tcp_low_latency +EXPORT_SYMBOL vmlinux 0x2ba83de4 xattr_full_name +EXPORT_SYMBOL vmlinux 0x2ba9fcc3 empty_aops +EXPORT_SYMBOL vmlinux 0x2bac0123 dcbnl_cee_notify +EXPORT_SYMBOL vmlinux 0x2bb39999 task_tgid_nr_ns +EXPORT_SYMBOL vmlinux 0x2bb44ba3 __sock_create +EXPORT_SYMBOL vmlinux 0x2bc4c838 open_check_o_direct +EXPORT_SYMBOL vmlinux 0x2bd8c6c4 mb_cache_entry_find_first +EXPORT_SYMBOL vmlinux 0x2be8eb50 napi_disable +EXPORT_SYMBOL vmlinux 0x2bfd00b6 skb_push +EXPORT_SYMBOL vmlinux 0x2c1b42eb inet_proto_csum_replace_by_diff +EXPORT_SYMBOL vmlinux 0x2c231c04 kstrtou16_from_user +EXPORT_SYMBOL vmlinux 0x2c29a995 __strnlen_user +EXPORT_SYMBOL vmlinux 0x2c3ef7a4 read_dev_sector +EXPORT_SYMBOL vmlinux 0x2c44f3e3 neigh_parms_alloc +EXPORT_SYMBOL vmlinux 0x2c458e9c tcw_add_tidaw +EXPORT_SYMBOL vmlinux 0x2c51e19b mpage_writepage +EXPORT_SYMBOL vmlinux 0x2c57af3b ipv6_sock_mc_join +EXPORT_SYMBOL vmlinux 0x2c6d59d5 __generic_file_write_iter +EXPORT_SYMBOL vmlinux 0x2c897734 tcw_get_tsb +EXPORT_SYMBOL vmlinux 0x2ca6898f seq_write +EXPORT_SYMBOL vmlinux 0x2cb57659 param_ops_int +EXPORT_SYMBOL vmlinux 0x2cd448ef migrate_page +EXPORT_SYMBOL vmlinux 0x2ce9216d mb_cache_shrink +EXPORT_SYMBOL vmlinux 0x2d11e524 get_mm_exe_file +EXPORT_SYMBOL vmlinux 0x2d140a58 genl_unlock +EXPORT_SYMBOL vmlinux 0x2d1e53fd __skb_get_hash_flowi6 +EXPORT_SYMBOL vmlinux 0x2d30596c from_kqid_munged +EXPORT_SYMBOL vmlinux 0x2d3385d3 system_wq +EXPORT_SYMBOL vmlinux 0x2d4aca9f tcp_md5_hash_header +EXPORT_SYMBOL vmlinux 0x2d5528c9 sg_copy_to_buffer +EXPORT_SYMBOL vmlinux 0x2d5ae534 set_nlink +EXPORT_SYMBOL vmlinux 0x2dbb9241 ida_init +EXPORT_SYMBOL vmlinux 0x2dd9a36b flex_array_shrink +EXPORT_SYMBOL vmlinux 0x2de0975d netdev_notify_peers +EXPORT_SYMBOL vmlinux 0x2dfeb657 blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x2e0d2f7f queue_work_on +EXPORT_SYMBOL vmlinux 0x2e2ce9e0 sysctl_tcp_syncookies +EXPORT_SYMBOL vmlinux 0x2e510adc blkdev_issue_flush +EXPORT_SYMBOL vmlinux 0x2e593a27 timespec64_to_jiffies +EXPORT_SYMBOL vmlinux 0x2e5d9623 generic_update_time +EXPORT_SYMBOL vmlinux 0x2e8abdeb proc_douintvec +EXPORT_SYMBOL vmlinux 0x2e9ed9d1 security_path_mknod +EXPORT_SYMBOL vmlinux 0x2ea7af98 blk_queue_update_dma_alignment +EXPORT_SYMBOL vmlinux 0x2eb1567f dentry_needs_remove_privs +EXPORT_SYMBOL vmlinux 0x2ed1def2 pci_bus_size_bridges +EXPORT_SYMBOL vmlinux 0x2ee98451 sock_create_kern +EXPORT_SYMBOL vmlinux 0x2eea2cd0 napi_gro_flush +EXPORT_SYMBOL vmlinux 0x2ef5661d segment_modify_shared +EXPORT_SYMBOL vmlinux 0x2ef63ad6 scsi_dev_info_list_del_keyed +EXPORT_SYMBOL vmlinux 0x2ef76bdb dcb_getapp +EXPORT_SYMBOL vmlinux 0x2efc102f tcw_set_data +EXPORT_SYMBOL vmlinux 0x2f028b2c dma_pool_create +EXPORT_SYMBOL vmlinux 0x2f03fc4b security_secmark_refcount_inc +EXPORT_SYMBOL vmlinux 0x2f064b55 allocate_resource +EXPORT_SYMBOL vmlinux 0x2f0cc63f tty_port_free_xmit_buf +EXPORT_SYMBOL vmlinux 0x2f293de9 request_key_async_with_auxdata +EXPORT_SYMBOL vmlinux 0x2f43137e __f_setown +EXPORT_SYMBOL vmlinux 0x2f463da1 __alloc_page_frag +EXPORT_SYMBOL vmlinux 0x2f4fec55 napi_get_frags +EXPORT_SYMBOL vmlinux 0x2f5318d2 skb_find_text +EXPORT_SYMBOL vmlinux 0x2f5fe171 mutex_lock_killable +EXPORT_SYMBOL vmlinux 0x2f6b0d13 kset_unregister +EXPORT_SYMBOL vmlinux 0x2f7a9e5b nf_ip6_checksum +EXPORT_SYMBOL vmlinux 0x2f878f58 __set_page_dirty_buffers +EXPORT_SYMBOL vmlinux 0x2fa5a500 memcmp +EXPORT_SYMBOL vmlinux 0x2fab2d22 pci_claim_resource +EXPORT_SYMBOL vmlinux 0x2fb2afc1 udp_seq_open +EXPORT_SYMBOL vmlinux 0x2fb3750c on_each_cpu_mask +EXPORT_SYMBOL vmlinux 0x2fb6de5d add_device_randomness +EXPORT_SYMBOL vmlinux 0x2fcc4271 iov_iter_get_pages +EXPORT_SYMBOL vmlinux 0x2fd3a76d sock_i_uid +EXPORT_SYMBOL vmlinux 0x2fd8d520 dev_uc_add +EXPORT_SYMBOL vmlinux 0x2fe252cc unregister_inet6addr_notifier +EXPORT_SYMBOL vmlinux 0x2fe9d572 xfrm_state_check_expire +EXPORT_SYMBOL vmlinux 0x2ffffb6f _ebc_tolower +EXPORT_SYMBOL vmlinux 0x303041c6 udp_flow_hashrnd +EXPORT_SYMBOL vmlinux 0x30482ad6 blk_peek_request +EXPORT_SYMBOL vmlinux 0x304afe0b netlink_broadcast +EXPORT_SYMBOL vmlinux 0x3053716c sock_wake_async +EXPORT_SYMBOL vmlinux 0x307c2fd0 generic_check_addressable +EXPORT_SYMBOL vmlinux 0x3096be16 names_cachep +EXPORT_SYMBOL vmlinux 0x30a80826 __kfifo_from_user +EXPORT_SYMBOL vmlinux 0x30ce3209 neigh_connected_output +EXPORT_SYMBOL vmlinux 0x30d0a313 vm_insert_mixed +EXPORT_SYMBOL vmlinux 0x30e74134 tty_termios_copy_hw +EXPORT_SYMBOL vmlinux 0x31010eac __crypto_memneq +EXPORT_SYMBOL vmlinux 0x3102d70b frontswap_curr_pages +EXPORT_SYMBOL vmlinux 0x3145216f pci_dev_present +EXPORT_SYMBOL vmlinux 0x3159d40f scsi_track_queue_full +EXPORT_SYMBOL vmlinux 0x315d5386 xfrm6_rcv +EXPORT_SYMBOL vmlinux 0x316ff738 security_path_link +EXPORT_SYMBOL vmlinux 0x3174bd79 bitmap_clear +EXPORT_SYMBOL vmlinux 0x31919965 blk_mq_start_hw_queues +EXPORT_SYMBOL vmlinux 0x3198453a xfrm_policy_byid +EXPORT_SYMBOL vmlinux 0x31aea94a skb_mac_gso_segment +EXPORT_SYMBOL vmlinux 0x31afbc90 tcp_read_sock +EXPORT_SYMBOL vmlinux 0x321b982d idr_replace +EXPORT_SYMBOL vmlinux 0x3221bd3f raw3270_request_set_idal +EXPORT_SYMBOL vmlinux 0x3237d878 rwsem_wake +EXPORT_SYMBOL vmlinux 0x3238a155 rename_lock +EXPORT_SYMBOL vmlinux 0x32507b6c flow_get_u32_src +EXPORT_SYMBOL vmlinux 0x327152d6 tcf_hash_check +EXPORT_SYMBOL vmlinux 0x32723a96 generic_file_readonly_mmap +EXPORT_SYMBOL vmlinux 0x3275689f smp_ctl_set_bit +EXPORT_SYMBOL vmlinux 0x327754d4 blk_mq_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x327ad68e jbd2_journal_blocks_per_page +EXPORT_SYMBOL vmlinux 0x32a4e305 skb_checksum_setup +EXPORT_SYMBOL vmlinux 0x32c6a2d8 _ebcasc_500 +EXPORT_SYMBOL vmlinux 0x32debb16 cpumask_next_and +EXPORT_SYMBOL vmlinux 0x32e6fa2b tcp_make_synack +EXPORT_SYMBOL vmlinux 0x32f3b7c8 dev_change_flags +EXPORT_SYMBOL vmlinux 0x32f5b5ed compat_ipv6_getsockopt +EXPORT_SYMBOL vmlinux 0x32f7dcf3 dquot_set_dqinfo +EXPORT_SYMBOL vmlinux 0x32f9c768 unregister_external_irq +EXPORT_SYMBOL vmlinux 0x332cbb53 scsi_scan_host +EXPORT_SYMBOL vmlinux 0x333b7de6 security_d_instantiate +EXPORT_SYMBOL vmlinux 0x335bfaea blk_queue_logical_block_size +EXPORT_SYMBOL vmlinux 0x33672b1b kill_anon_super +EXPORT_SYMBOL vmlinux 0x337999a1 dquot_drop +EXPORT_SYMBOL vmlinux 0x338bbef8 __ndelay +EXPORT_SYMBOL vmlinux 0x3399f7b5 inet6_add_offload +EXPORT_SYMBOL vmlinux 0x33a14a7c dev_get_phys_port_name +EXPORT_SYMBOL vmlinux 0x33b32b97 scsi_free_host_dev +EXPORT_SYMBOL vmlinux 0x33c7435c prandom_u32_state +EXPORT_SYMBOL vmlinux 0x33e6518c nf_log_packet +EXPORT_SYMBOL vmlinux 0x33e91fa5 __sock_tx_timestamp +EXPORT_SYMBOL vmlinux 0x33f74de3 _ascebc_500 +EXPORT_SYMBOL vmlinux 0x341cbed2 cpu_present_mask +EXPORT_SYMBOL vmlinux 0x3420d106 bdev_stack_limits +EXPORT_SYMBOL vmlinux 0x344adbd5 init_cdrom_command +EXPORT_SYMBOL vmlinux 0x3465caa3 cpu_maps_update_begin +EXPORT_SYMBOL vmlinux 0x34694bdf __find_get_block +EXPORT_SYMBOL vmlinux 0x347013de nla_validate +EXPORT_SYMBOL vmlinux 0x3486e096 follow_up +EXPORT_SYMBOL vmlinux 0x34928067 __module_get +EXPORT_SYMBOL vmlinux 0x349cba85 strchr +EXPORT_SYMBOL vmlinux 0x34a05fc9 __block_write_begin +EXPORT_SYMBOL vmlinux 0x34a0ae87 ip6_find_1stfragopt +EXPORT_SYMBOL vmlinux 0x34ae3e2f set_page_dirty_lock +EXPORT_SYMBOL vmlinux 0x34bd3aca set_security_override_from_ctx +EXPORT_SYMBOL vmlinux 0x34cacf3e blk_register_region +EXPORT_SYMBOL vmlinux 0x34dfe5f9 ether_setup +EXPORT_SYMBOL vmlinux 0x34e232a4 ilookup +EXPORT_SYMBOL vmlinux 0x34f3484e security_tun_dev_attach_queue +EXPORT_SYMBOL vmlinux 0x34fada2b raw3270_reset +EXPORT_SYMBOL vmlinux 0x350c3614 pcix_set_mmrbc +EXPORT_SYMBOL vmlinux 0x3517383e register_reboot_notifier +EXPORT_SYMBOL vmlinux 0x35552664 pci_find_next_bus +EXPORT_SYMBOL vmlinux 0x3558fa24 crc32_be +EXPORT_SYMBOL vmlinux 0x35840edf bitmap_start_sync +EXPORT_SYMBOL vmlinux 0x3586b244 sock_no_listen +EXPORT_SYMBOL vmlinux 0x35a7cd5d skb_store_bits +EXPORT_SYMBOL vmlinux 0x35a88f28 zlib_inflateInit2 +EXPORT_SYMBOL vmlinux 0x35ba9ddb sock_kmalloc +EXPORT_SYMBOL vmlinux 0x35be13c8 iget5_locked +EXPORT_SYMBOL vmlinux 0x35d0c694 wait_iff_congested +EXPORT_SYMBOL vmlinux 0x3602aba9 raw3270_register_notifier +EXPORT_SYMBOL vmlinux 0x360f0c3f sock_wfree +EXPORT_SYMBOL vmlinux 0x361fddda nf_nat_decode_session_hook +EXPORT_SYMBOL vmlinux 0x3658cc5e netdev_features_change +EXPORT_SYMBOL vmlinux 0x3661dedd scsi_test_unit_ready +EXPORT_SYMBOL vmlinux 0x366da6be lro_receive_skb +EXPORT_SYMBOL vmlinux 0x36727410 napi_gro_receive +EXPORT_SYMBOL vmlinux 0x36b45442 filemap_map_pages +EXPORT_SYMBOL vmlinux 0x36bd681b groups_alloc +EXPORT_SYMBOL vmlinux 0x36cb058c ccw_device_start_timeout_key +EXPORT_SYMBOL vmlinux 0x36dfddd5 alloc_fcdev +EXPORT_SYMBOL vmlinux 0x36e7bae6 tty_write_room +EXPORT_SYMBOL vmlinux 0x3718c116 arch_lock_relax +EXPORT_SYMBOL vmlinux 0x372c15ee alloc_netdev_mqs +EXPORT_SYMBOL vmlinux 0x37305e0c get_empty_filp +EXPORT_SYMBOL vmlinux 0x3744cf36 vmalloc_to_pfn +EXPORT_SYMBOL vmlinux 0x37664f02 tcp_v4_mtu_reduced +EXPORT_SYMBOL vmlinux 0x3774c96c ida_simple_remove +EXPORT_SYMBOL vmlinux 0x378444ee bdget +EXPORT_SYMBOL vmlinux 0x378eee4c handle_edge_irq +EXPORT_SYMBOL vmlinux 0x37919bc6 xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0x37af3190 dm_table_run_md_queue_async +EXPORT_SYMBOL vmlinux 0x37bc6642 jbd2_journal_update_sb_errno +EXPORT_SYMBOL vmlinux 0x37befc70 jiffies_to_msecs +EXPORT_SYMBOL vmlinux 0x37c214a3 bdget_disk +EXPORT_SYMBOL vmlinux 0x37de1568 skb_append +EXPORT_SYMBOL vmlinux 0x37ff4c06 copy_from_user_overflow +EXPORT_SYMBOL vmlinux 0x381932b1 proc_remove +EXPORT_SYMBOL vmlinux 0x381a798a setup_max_cpus +EXPORT_SYMBOL vmlinux 0x38254205 d_alloc_pseudo +EXPORT_SYMBOL vmlinux 0x3837f19f set_security_override +EXPORT_SYMBOL vmlinux 0x386e84e9 set_create_files_as +EXPORT_SYMBOL vmlinux 0x38748038 pci_iounmap +EXPORT_SYMBOL vmlinux 0x38869d88 kstat +EXPORT_SYMBOL vmlinux 0x38a71b7e pci_free_resource_list +EXPORT_SYMBOL vmlinux 0x38a9f7c5 in6addr_loopback +EXPORT_SYMBOL vmlinux 0x38dbf06c write_cache_pages +EXPORT_SYMBOL vmlinux 0x38e1b8f9 simple_link +EXPORT_SYMBOL vmlinux 0x3928efe9 __per_cpu_offset +EXPORT_SYMBOL vmlinux 0x3933eab5 debug_raw_view +EXPORT_SYMBOL vmlinux 0x39461d6a in_egroup_p +EXPORT_SYMBOL vmlinux 0x396d01a5 padata_set_cpumask +EXPORT_SYMBOL vmlinux 0x397cf0a1 param_set_ullong +EXPORT_SYMBOL vmlinux 0x397def1f pcix_get_mmrbc +EXPORT_SYMBOL vmlinux 0x39948352 pci_bus_read_config_word +EXPORT_SYMBOL vmlinux 0x39991865 icmp_global_allow +EXPORT_SYMBOL vmlinux 0x399d05b8 __wake_up_bit +EXPORT_SYMBOL vmlinux 0x39b52d19 __bitmap_and +EXPORT_SYMBOL vmlinux 0x39bba31f dentry_path_raw +EXPORT_SYMBOL vmlinux 0x3a1bfc02 simple_setattr +EXPORT_SYMBOL vmlinux 0x3a2004be __netlink_dump_start +EXPORT_SYMBOL vmlinux 0x3a2f9b5e blkdev_get +EXPORT_SYMBOL vmlinux 0x3a3677d8 tso_count_descs +EXPORT_SYMBOL vmlinux 0x3a6a24d1 pci_pme_capable +EXPORT_SYMBOL vmlinux 0x3a8e08bb itcw_add_dcw +EXPORT_SYMBOL vmlinux 0x3a97d8dc kfree_skb_list +EXPORT_SYMBOL vmlinux 0x3a9b6fb9 blk_unregister_region +EXPORT_SYMBOL vmlinux 0x3a9ffdf8 pcie_capability_read_word +EXPORT_SYMBOL vmlinux 0x3aa11bd1 _raw_read_lock_wait +EXPORT_SYMBOL vmlinux 0x3aaa722f vfs_write +EXPORT_SYMBOL vmlinux 0x3ab41b25 __copy_in_user +EXPORT_SYMBOL vmlinux 0x3af9146c ipv6_chk_addr_and_flags +EXPORT_SYMBOL vmlinux 0x3b34016d dmam_free_noncoherent +EXPORT_SYMBOL vmlinux 0x3b5ae196 dst_discard_out +EXPORT_SYMBOL vmlinux 0x3b5ef4b6 netdev_state_change +EXPORT_SYMBOL vmlinux 0x3b644591 __bitmap_shift_left +EXPORT_SYMBOL vmlinux 0x3b7aa2f4 t10_pi_type1_ip +EXPORT_SYMBOL vmlinux 0x3b809e50 dev_vprintk_emit +EXPORT_SYMBOL vmlinux 0x3b95a783 dev_uc_unsync +EXPORT_SYMBOL vmlinux 0x3ba52658 dev_uc_flush +EXPORT_SYMBOL vmlinux 0x3bc5f410 find_get_pages_tag +EXPORT_SYMBOL vmlinux 0x3bf464de bioset_free +EXPORT_SYMBOL vmlinux 0x3c0b4eee __kfifo_skip_r +EXPORT_SYMBOL vmlinux 0x3c3a22c2 irq_set_chip +EXPORT_SYMBOL vmlinux 0x3c3fce39 __local_bh_enable_ip +EXPORT_SYMBOL vmlinux 0x3c483012 radix_tree_delete +EXPORT_SYMBOL vmlinux 0x3c5bc490 dev_uc_del +EXPORT_SYMBOL vmlinux 0x3c80c06c kstrtoull +EXPORT_SYMBOL vmlinux 0x3c9b79dd fsnotify_destroy_mark +EXPORT_SYMBOL vmlinux 0x3c9d5148 insert_inode_locked +EXPORT_SYMBOL vmlinux 0x3ce4ca6f disable_irq +EXPORT_SYMBOL vmlinux 0x3d0a0b50 finish_open +EXPORT_SYMBOL vmlinux 0x3d117a60 itcw_calc_size +EXPORT_SYMBOL vmlinux 0x3d1340d7 pid_task +EXPORT_SYMBOL vmlinux 0x3d29c5d7 netdev_info +EXPORT_SYMBOL vmlinux 0x3d309013 proto_register +EXPORT_SYMBOL vmlinux 0x3d3d011c lwtunnel_get_encap_size +EXPORT_SYMBOL vmlinux 0x3d4cedea pcie_get_readrq +EXPORT_SYMBOL vmlinux 0x3d4e3839 vfs_link +EXPORT_SYMBOL vmlinux 0x3d5977c7 padata_free +EXPORT_SYMBOL vmlinux 0x3d6358a3 tcp_disconnect +EXPORT_SYMBOL vmlinux 0x3d7cd5d3 is_bad_inode +EXPORT_SYMBOL vmlinux 0x3d938f07 pci_prepare_to_sleep +EXPORT_SYMBOL vmlinux 0x3dcb88a0 irq_set_handler_data +EXPORT_SYMBOL vmlinux 0x3dfc897c seq_hlist_start_head +EXPORT_SYMBOL vmlinux 0x3e3ec942 tty_port_tty_set +EXPORT_SYMBOL vmlinux 0x3e41a32c do_splice_from +EXPORT_SYMBOL vmlinux 0x3e513c6d forget_cached_acl +EXPORT_SYMBOL vmlinux 0x3e8a0821 dev_get_nest_level +EXPORT_SYMBOL vmlinux 0x3e9110fa __hw_addr_unsync +EXPORT_SYMBOL vmlinux 0x3e965c78 sget +EXPORT_SYMBOL vmlinux 0x3e96f9a2 register_sysctl +EXPORT_SYMBOL vmlinux 0x3eb026d7 blk_rq_count_integrity_sg +EXPORT_SYMBOL vmlinux 0x3ecf0723 truncate_inode_pages_range +EXPORT_SYMBOL vmlinux 0x3ed3d3eb tcp_mtup_init +EXPORT_SYMBOL vmlinux 0x3eedbada misc_register +EXPORT_SYMBOL vmlinux 0x3ef04077 udp_lib_rehash +EXPORT_SYMBOL vmlinux 0x3ef310c9 end_page_writeback +EXPORT_SYMBOL vmlinux 0x3f0851de dev_uc_sync +EXPORT_SYMBOL vmlinux 0x3f087abd __ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0x3f145492 dev_get_by_index_rcu +EXPORT_SYMBOL vmlinux 0x3f24fe53 d_set_d_op +EXPORT_SYMBOL vmlinux 0x3f2fe271 bio_reset +EXPORT_SYMBOL vmlinux 0x3f4547a7 put_unused_fd +EXPORT_SYMBOL vmlinux 0x3f5bd66f textsearch_prepare +EXPORT_SYMBOL vmlinux 0x3f9715ae pci_dev_driver +EXPORT_SYMBOL vmlinux 0x3f9f8cd3 sock_alloc_send_skb +EXPORT_SYMBOL vmlinux 0x3fa913da strspn +EXPORT_SYMBOL vmlinux 0x3fb0b9e3 __udelay +EXPORT_SYMBOL vmlinux 0x3fb58b6d up +EXPORT_SYMBOL vmlinux 0x3fc65c32 have_submounts +EXPORT_SYMBOL vmlinux 0x3fcab99e bio_chain +EXPORT_SYMBOL vmlinux 0x3fdc77d1 vlan_vid_add +EXPORT_SYMBOL vmlinux 0x3fe32a71 try_to_release_page +EXPORT_SYMBOL vmlinux 0x3fec048f sg_next +EXPORT_SYMBOL vmlinux 0x401d1f99 block_write_end +EXPORT_SYMBOL vmlinux 0x402415ba inet_recvmsg +EXPORT_SYMBOL vmlinux 0x402b8281 __request_module +EXPORT_SYMBOL vmlinux 0x40346eac dquot_commit_info +EXPORT_SYMBOL vmlinux 0x4035064e dev_mc_add +EXPORT_SYMBOL vmlinux 0x403a05b9 tcp_v4_connect +EXPORT_SYMBOL vmlinux 0x405c1144 get_seconds +EXPORT_SYMBOL vmlinux 0x4060aeb1 pci_bus_add_devices +EXPORT_SYMBOL vmlinux 0x40723bd9 dquot_acquire +EXPORT_SYMBOL vmlinux 0x40973662 sysctl_udp_mem +EXPORT_SYMBOL vmlinux 0x409873e3 tty_termios_baud_rate +EXPORT_SYMBOL vmlinux 0x40987b30 shrink_dcache_parent +EXPORT_SYMBOL vmlinux 0x4098b339 scsi_device_quiesce +EXPORT_SYMBOL vmlinux 0x409fe98b cap_mmap_file +EXPORT_SYMBOL vmlinux 0x40a27c37 scsi_dev_info_remove_list +EXPORT_SYMBOL vmlinux 0x40a9b349 vzalloc +EXPORT_SYMBOL vmlinux 0x40ab6117 scsi_scan_target +EXPORT_SYMBOL vmlinux 0x40c7247c si_meminfo +EXPORT_SYMBOL vmlinux 0x40d04664 console_trylock +EXPORT_SYMBOL vmlinux 0x40d59096 unregister_restart_handler +EXPORT_SYMBOL vmlinux 0x40e51eb7 param_set_invbool +EXPORT_SYMBOL vmlinux 0x40f5b06d netdev_lower_get_next_private_rcu +EXPORT_SYMBOL vmlinux 0x4105ffc5 scsi_is_target_device +EXPORT_SYMBOL vmlinux 0x41482d8b strndup_user +EXPORT_SYMBOL vmlinux 0x41497055 pci_remove_bus +EXPORT_SYMBOL vmlinux 0x415f554d posix_acl_valid +EXPORT_SYMBOL vmlinux 0x4166d879 compat_tcp_setsockopt +EXPORT_SYMBOL vmlinux 0x4167c6aa console_stop +EXPORT_SYMBOL vmlinux 0x417ae3f4 scm_detach_fds +EXPORT_SYMBOL vmlinux 0x4188d439 neigh_rand_reach_time +EXPORT_SYMBOL vmlinux 0x4194b10c inet_csk_delete_keepalive_timer +EXPORT_SYMBOL vmlinux 0x41baf194 t10_pi_type3_ip +EXPORT_SYMBOL vmlinux 0x41df696c wait_for_completion_killable_timeout +EXPORT_SYMBOL vmlinux 0x41e4773a dcache_dir_close +EXPORT_SYMBOL vmlinux 0x42013739 dquot_transfer +EXPORT_SYMBOL vmlinux 0x42160169 flush_workqueue +EXPORT_SYMBOL vmlinux 0x4235d6e4 vfs_whiteout +EXPORT_SYMBOL vmlinux 0x4238a038 qdisc_watchdog_init +EXPORT_SYMBOL vmlinux 0x42399ecc inet_sk_rx_dst_set +EXPORT_SYMBOL vmlinux 0x424140f3 d_lookup +EXPORT_SYMBOL vmlinux 0x4248ae3c single_task_running +EXPORT_SYMBOL vmlinux 0x424d3620 zlib_inflateIncomp +EXPORT_SYMBOL vmlinux 0x425bc1c6 __generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x4261d0b8 security_task_getsecid +EXPORT_SYMBOL vmlinux 0x42a16426 sk_common_release +EXPORT_SYMBOL vmlinux 0x42ee3d35 md_unregister_thread +EXPORT_SYMBOL vmlinux 0x42f1f188 __dev_get_by_index +EXPORT_SYMBOL vmlinux 0x4302d0eb free_pages +EXPORT_SYMBOL vmlinux 0x432b595a iov_iter_kvec +EXPORT_SYMBOL vmlinux 0x4352665e sg_copy_from_buffer +EXPORT_SYMBOL vmlinux 0x43587e0f rtnl_unicast +EXPORT_SYMBOL vmlinux 0x435e1a16 jbd2_journal_destroy +EXPORT_SYMBOL vmlinux 0x4362dbc2 nf_unregister_sockopt +EXPORT_SYMBOL vmlinux 0x43651934 __napi_alloc_skb +EXPORT_SYMBOL vmlinux 0x43775b4f qdisc_warn_nonwc +EXPORT_SYMBOL vmlinux 0x438593f1 bio_integrity_endio +EXPORT_SYMBOL vmlinux 0x438610bd security_tun_dev_alloc_security +EXPORT_SYMBOL vmlinux 0x43908aa9 softnet_data +EXPORT_SYMBOL vmlinux 0x4396d3d6 tty_port_close_start +EXPORT_SYMBOL vmlinux 0x439ec336 mark_buffer_dirty +EXPORT_SYMBOL vmlinux 0x43a4938f vm_get_page_prot +EXPORT_SYMBOL vmlinux 0x43bdfa20 console_irq +EXPORT_SYMBOL vmlinux 0x43cf3bc3 dql_completed +EXPORT_SYMBOL vmlinux 0x43f23311 dm_table_get_md +EXPORT_SYMBOL vmlinux 0x44000c00 xfrm_stateonly_find +EXPORT_SYMBOL vmlinux 0x4411c503 prandom_seed +EXPORT_SYMBOL vmlinux 0x4418b4c4 __getblk_slow +EXPORT_SYMBOL vmlinux 0x443508e5 simple_write_begin +EXPORT_SYMBOL vmlinux 0x444de00a may_umount_tree +EXPORT_SYMBOL vmlinux 0x44905c54 filemap_write_and_wait_range +EXPORT_SYMBOL vmlinux 0x44944ac3 blk_rq_map_integrity_sg +EXPORT_SYMBOL vmlinux 0x449cd6fa read_code +EXPORT_SYMBOL vmlinux 0x44a0bd4c textsearch_register +EXPORT_SYMBOL vmlinux 0x44b1d426 __dynamic_pr_debug +EXPORT_SYMBOL vmlinux 0x44c91658 tcp_rcv_established +EXPORT_SYMBOL vmlinux 0x44dd87bc mutex_unlock +EXPORT_SYMBOL vmlinux 0x44e9a829 match_token +EXPORT_SYMBOL vmlinux 0x451cc150 __blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x452c5de8 class3270 +EXPORT_SYMBOL vmlinux 0x45391839 scsi_print_sense +EXPORT_SYMBOL vmlinux 0x453c8403 pci_msi_enabled +EXPORT_SYMBOL vmlinux 0x4540ff79 d_instantiate_no_diralias +EXPORT_SYMBOL vmlinux 0x45476638 xfrm_policy_unregister_afinfo +EXPORT_SYMBOL vmlinux 0x45632968 netdev_class_remove_file_ns +EXPORT_SYMBOL vmlinux 0x45641a53 block_write_full_page +EXPORT_SYMBOL vmlinux 0x4578f528 __kfifo_to_user +EXPORT_SYMBOL vmlinux 0x45830ed9 netpoll_poll_disable +EXPORT_SYMBOL vmlinux 0x458b2e2f inet_addr_type +EXPORT_SYMBOL vmlinux 0x458c85b9 genlmsg_put +EXPORT_SYMBOL vmlinux 0x45a765cf pci_add_resource +EXPORT_SYMBOL vmlinux 0x45c92313 VMALLOC_END +EXPORT_SYMBOL vmlinux 0x45df7a5e netlink_capable +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 0x461a5e4c nobh_write_end +EXPORT_SYMBOL vmlinux 0x461a8e6f km_policy_notify +EXPORT_SYMBOL vmlinux 0x4625e477 dev_set_group +EXPORT_SYMBOL vmlinux 0x465cab34 secure_ipv6_port_ephemeral +EXPORT_SYMBOL vmlinux 0x465d8de2 thaw_bdev +EXPORT_SYMBOL vmlinux 0x466c14a7 __delay +EXPORT_SYMBOL vmlinux 0x46800c9b nf_log_register +EXPORT_SYMBOL vmlinux 0x468050a3 inet_csk_clear_xmit_timers +EXPORT_SYMBOL vmlinux 0x46923fa8 should_remove_suid +EXPORT_SYMBOL vmlinux 0x469a40e3 file_path +EXPORT_SYMBOL vmlinux 0x46b67693 hex2bin +EXPORT_SYMBOL vmlinux 0x46c84579 vfs_iter_write +EXPORT_SYMBOL vmlinux 0x46d59f7d smp_cpu_mt_shift +EXPORT_SYMBOL vmlinux 0x46de47a7 page_zero_new_buffers +EXPORT_SYMBOL vmlinux 0x46feb099 dm_read_arg +EXPORT_SYMBOL vmlinux 0x470ac2af pci_scan_slot +EXPORT_SYMBOL vmlinux 0x4714a4c2 rtmsg_ifinfo +EXPORT_SYMBOL vmlinux 0x472baffa ccw_device_set_offline +EXPORT_SYMBOL vmlinux 0x4739ea28 vfs_readf +EXPORT_SYMBOL vmlinux 0x47416e14 cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x474462cc __nla_put_nohdr +EXPORT_SYMBOL vmlinux 0x47647baa security_path_rename +EXPORT_SYMBOL vmlinux 0x4769cd2a eth_header +EXPORT_SYMBOL vmlinux 0x477d3b3f nf_unregister_net_hooks +EXPORT_SYMBOL vmlinux 0x4780c0e9 ipv6_skip_exthdr +EXPORT_SYMBOL vmlinux 0x47939e0d __tasklet_hi_schedule +EXPORT_SYMBOL vmlinux 0x479c3c86 find_next_zero_bit +EXPORT_SYMBOL vmlinux 0x47a63a27 tso_build_hdr +EXPORT_SYMBOL vmlinux 0x47a8e489 tcp_v4_md5_hash_skb +EXPORT_SYMBOL vmlinux 0x48169c66 kern_path_mountpoint +EXPORT_SYMBOL vmlinux 0x4823819e raw3270_buffer_address +EXPORT_SYMBOL vmlinux 0x483272f7 tcf_action_dump_1 +EXPORT_SYMBOL vmlinux 0x4854aacd jbd2_journal_wipe +EXPORT_SYMBOL vmlinux 0x48612384 ccw_device_halt +EXPORT_SYMBOL vmlinux 0x48891f51 simple_readpage +EXPORT_SYMBOL vmlinux 0x4890caeb locks_copy_lock +EXPORT_SYMBOL vmlinux 0x4896eafe elevator_alloc +EXPORT_SYMBOL vmlinux 0x489b74d8 __starget_for_each_device +EXPORT_SYMBOL vmlinux 0x48acc6ea inet6_register_protosw +EXPORT_SYMBOL vmlinux 0x48aeb345 brioctl_set +EXPORT_SYMBOL vmlinux 0x48cdc879 build_skb +EXPORT_SYMBOL vmlinux 0x49045426 icmp_err_convert +EXPORT_SYMBOL vmlinux 0x4907a56d wait_for_completion +EXPORT_SYMBOL vmlinux 0x4923798e sk_dst_check +EXPORT_SYMBOL vmlinux 0x4924c850 _raw_write_trylock_retry +EXPORT_SYMBOL vmlinux 0x4948850c scsi_bios_ptable +EXPORT_SYMBOL vmlinux 0x49555c39 ccw_device_get_path_mask +EXPORT_SYMBOL vmlinux 0x495c96f8 posix_acl_init +EXPORT_SYMBOL vmlinux 0x49603fb8 security_sb_copy_data +EXPORT_SYMBOL vmlinux 0x49916169 path_get +EXPORT_SYMBOL vmlinux 0x4998a2a7 tty_lock +EXPORT_SYMBOL vmlinux 0x49a219da sock_no_accept +EXPORT_SYMBOL vmlinux 0x49b07aec tcp_select_initial_window +EXPORT_SYMBOL vmlinux 0x49bfc8cd dquot_free_inode +EXPORT_SYMBOL vmlinux 0x49f71442 dev_close_many +EXPORT_SYMBOL vmlinux 0x4a289f07 peernet2id_alloc +EXPORT_SYMBOL vmlinux 0x4a291cce commit_creds +EXPORT_SYMBOL vmlinux 0x4a525164 xfrm_policy_flush +EXPORT_SYMBOL vmlinux 0x4a56112a ccw_device_start_timeout +EXPORT_SYMBOL vmlinux 0x4a90b31a neigh_lookup +EXPORT_SYMBOL vmlinux 0x4a93f57b neigh_seq_next +EXPORT_SYMBOL vmlinux 0x4abbe3c2 vm_brk +EXPORT_SYMBOL vmlinux 0x4ac5b979 __get_page_tail +EXPORT_SYMBOL vmlinux 0x4acd93d3 release_resource +EXPORT_SYMBOL vmlinux 0x4ad54ac1 submit_bio +EXPORT_SYMBOL vmlinux 0x4adfd8b4 scsi_block_when_processing_errors +EXPORT_SYMBOL vmlinux 0x4afb4ef8 try_to_free_buffers +EXPORT_SYMBOL vmlinux 0x4afe9a77 scsi_partsize +EXPORT_SYMBOL vmlinux 0x4b0f60aa sock_no_poll +EXPORT_SYMBOL vmlinux 0x4b572ce0 pcie_port_service_unregister +EXPORT_SYMBOL vmlinux 0x4b57546c scsi_init_io +EXPORT_SYMBOL vmlinux 0x4b5814ef kmalloc_order_trace +EXPORT_SYMBOL vmlinux 0x4b5fd49e dm_kcopyd_do_callback +EXPORT_SYMBOL vmlinux 0x4b625cb4 dst_cow_metrics_generic +EXPORT_SYMBOL vmlinux 0x4b9736c5 nvm_free_rqd_ppalist +EXPORT_SYMBOL vmlinux 0x4b98e1f6 unregister_binfmt +EXPORT_SYMBOL vmlinux 0x4bbda2f3 xfrm_state_alloc +EXPORT_SYMBOL vmlinux 0x4bd25826 netlink_net_capable +EXPORT_SYMBOL vmlinux 0x4bdcdb06 ip6_xmit +EXPORT_SYMBOL vmlinux 0x4bde07f4 crypto_sha1_update +EXPORT_SYMBOL vmlinux 0x4beb36f9 netdev_boot_setup_check +EXPORT_SYMBOL vmlinux 0x4bef89c8 ipv6_push_nfrag_opts +EXPORT_SYMBOL vmlinux 0x4bf9f6f4 ipv6_sock_mc_drop +EXPORT_SYMBOL vmlinux 0x4c025242 deactivate_locked_super +EXPORT_SYMBOL vmlinux 0x4c0cf658 nf_log_unregister +EXPORT_SYMBOL vmlinux 0x4c1530e8 __breadahead +EXPORT_SYMBOL vmlinux 0x4c329692 xfrm_state_walk_done +EXPORT_SYMBOL vmlinux 0x4c346a53 kvasprintf +EXPORT_SYMBOL vmlinux 0x4c3efd95 nvm_erase_ppa +EXPORT_SYMBOL vmlinux 0x4c477262 nf_register_queue_handler +EXPORT_SYMBOL vmlinux 0x4c4c956e nla_memcmp +EXPORT_SYMBOL vmlinux 0x4c4e08a5 blk_mq_unique_tag +EXPORT_SYMBOL vmlinux 0x4c616057 get_ccwdev_by_busid +EXPORT_SYMBOL vmlinux 0x4c7a5f0a genl_unregister_family +EXPORT_SYMBOL vmlinux 0x4c8a74c0 node_data +EXPORT_SYMBOL vmlinux 0x4ca764ad __blk_run_queue +EXPORT_SYMBOL vmlinux 0x4cc21b9c dev_get_by_index +EXPORT_SYMBOL vmlinux 0x4cc3d072 tty_port_tty_get +EXPORT_SYMBOL vmlinux 0x4cc43aeb blk_alloc_queue +EXPORT_SYMBOL vmlinux 0x4cdb3178 ns_to_timeval +EXPORT_SYMBOL vmlinux 0x4cf729cb current_fs_time +EXPORT_SYMBOL vmlinux 0x4d3c4555 skb_copy +EXPORT_SYMBOL vmlinux 0x4d489b8f qdisc_list_add +EXPORT_SYMBOL vmlinux 0x4d660086 __scm_destroy +EXPORT_SYMBOL vmlinux 0x4d7a9e8d jbd2_journal_start +EXPORT_SYMBOL vmlinux 0x4d88845b tcf_action_exec +EXPORT_SYMBOL vmlinux 0x4d95151c ilookup5_nowait +EXPORT_SYMBOL vmlinux 0x4d974b9c register_sysrq_key +EXPORT_SYMBOL vmlinux 0x4d9b652b rb_erase +EXPORT_SYMBOL vmlinux 0x4dbec444 filp_close +EXPORT_SYMBOL vmlinux 0x4dda726b match_strlcpy +EXPORT_SYMBOL vmlinux 0x4de34a07 cpu_rmap_put +EXPORT_SYMBOL vmlinux 0x4dea1053 memchr +EXPORT_SYMBOL vmlinux 0x4df119fa __bitmap_parse +EXPORT_SYMBOL vmlinux 0x4e15d101 iget_failed +EXPORT_SYMBOL vmlinux 0x4e2d939d request_firmware_nowait +EXPORT_SYMBOL vmlinux 0x4e3567f7 match_int +EXPORT_SYMBOL vmlinux 0x4e3b023c pneigh_lookup +EXPORT_SYMBOL vmlinux 0x4e3b525f register_qdisc +EXPORT_SYMBOL vmlinux 0x4e56baca inet_addr_type_dev_table +EXPORT_SYMBOL vmlinux 0x4e639f07 sk_page_frag_refill +EXPORT_SYMBOL vmlinux 0x4e6633d4 end_buffer_async_write +EXPORT_SYMBOL vmlinux 0x4e68e9be rb_next_postorder +EXPORT_SYMBOL vmlinux 0x4e6c5ff4 locks_mandatory_area +EXPORT_SYMBOL vmlinux 0x4ef4f163 tccb_init +EXPORT_SYMBOL vmlinux 0x4f0f4198 create_empty_buffers +EXPORT_SYMBOL vmlinux 0x4f1cd128 security_tun_dev_create +EXPORT_SYMBOL vmlinux 0x4f23d9ce generic_permission +EXPORT_SYMBOL vmlinux 0x4f242292 pcie_capability_write_dword +EXPORT_SYMBOL vmlinux 0x4f2cd1b5 __cpcmd +EXPORT_SYMBOL vmlinux 0x4f391d0e nla_parse +EXPORT_SYMBOL vmlinux 0x4f428eaf dentry_update_name_case +EXPORT_SYMBOL vmlinux 0x4f54c83e __sk_dst_check +EXPORT_SYMBOL vmlinux 0x4f54d6e8 open_exec +EXPORT_SYMBOL vmlinux 0x4f56f7e2 key_link +EXPORT_SYMBOL vmlinux 0x4f5ea164 iov_iter_npages +EXPORT_SYMBOL vmlinux 0x4f68e5c9 do_gettimeofday +EXPORT_SYMBOL vmlinux 0x4f79dd6e nla_reserve +EXPORT_SYMBOL vmlinux 0x4f9043a2 jbd2_journal_start_commit +EXPORT_SYMBOL vmlinux 0x4f99cd7d tcp_syn_ack_timeout +EXPORT_SYMBOL vmlinux 0x4fa266f8 tcp_filter +EXPORT_SYMBOL vmlinux 0x4fa301e5 mark_page_accessed +EXPORT_SYMBOL vmlinux 0x4fb092fa register_netdev +EXPORT_SYMBOL vmlinux 0x4fcec664 truncate_pagecache +EXPORT_SYMBOL vmlinux 0x4fe29a3a param_set_short +EXPORT_SYMBOL vmlinux 0x4ff3146a cdrom_media_changed +EXPORT_SYMBOL vmlinux 0x4ff5fd15 inet6_ioctl +EXPORT_SYMBOL vmlinux 0x5005f906 jbd2_journal_invalidatepage +EXPORT_SYMBOL vmlinux 0x50097088 security_tun_dev_free_security +EXPORT_SYMBOL vmlinux 0x5010edba netpoll_send_udp +EXPORT_SYMBOL vmlinux 0x5023794d raw3270_activate_view +EXPORT_SYMBOL vmlinux 0x505bbf7e ip_cmsg_recv_offset +EXPORT_SYMBOL vmlinux 0x5063df40 __posix_acl_create +EXPORT_SYMBOL vmlinux 0x50720c5f snprintf +EXPORT_SYMBOL vmlinux 0x50743b76 configfs_unregister_group +EXPORT_SYMBOL vmlinux 0x507ee522 blkdev_get_by_dev +EXPORT_SYMBOL vmlinux 0x50ba769a kblockd_schedule_work +EXPORT_SYMBOL vmlinux 0x50c087c5 dev_mc_add_global +EXPORT_SYMBOL vmlinux 0x50cf5633 rawv6_mh_filter_register +EXPORT_SYMBOL vmlinux 0x50ded37c __posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x50f82c7a skb_kill_datagram +EXPORT_SYMBOL vmlinux 0x50fea4d2 generic_readlink +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 0x5118c86e ___pskb_trim +EXPORT_SYMBOL vmlinux 0x5124ee40 __fib6_flush_trees +EXPORT_SYMBOL vmlinux 0x512d4d4c current_in_userns +EXPORT_SYMBOL vmlinux 0x513ba2f0 eth_header_cache +EXPORT_SYMBOL vmlinux 0x514245bd follow_pfn +EXPORT_SYMBOL vmlinux 0x51441080 security_inode_setsecctx +EXPORT_SYMBOL vmlinux 0x51546b3b __pci_register_driver +EXPORT_SYMBOL vmlinux 0x5154d535 iterate_dir +EXPORT_SYMBOL vmlinux 0x515b9e55 xfrm_state_delete_tunnel +EXPORT_SYMBOL vmlinux 0x516177b4 security_inode_listsecurity +EXPORT_SYMBOL vmlinux 0x518e30af pci_choose_state +EXPORT_SYMBOL vmlinux 0x518f9663 vm_iomap_memory +EXPORT_SYMBOL vmlinux 0x519db5b3 init_net +EXPORT_SYMBOL vmlinux 0x51a6a305 scsi_cmd_ioctl +EXPORT_SYMBOL vmlinux 0x51b0a74f __skb_gso_segment +EXPORT_SYMBOL vmlinux 0x51c3c0e4 dm_ratelimit_state +EXPORT_SYMBOL vmlinux 0x51c3c965 tcp_poll +EXPORT_SYMBOL vmlinux 0x51d1bd36 neigh_parms_release +EXPORT_SYMBOL vmlinux 0x51f6c60c inet6_register_icmp_sender +EXPORT_SYMBOL vmlinux 0x52020e93 netlink_rcv_skb +EXPORT_SYMBOL vmlinux 0x52026cdf security_sb_parse_opts_str +EXPORT_SYMBOL vmlinux 0x5218733d get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x521b36b5 qdisc_put_rtab +EXPORT_SYMBOL vmlinux 0x525205e8 sock_efree +EXPORT_SYMBOL vmlinux 0x52691259 jbd2_journal_flush +EXPORT_SYMBOL vmlinux 0x52854737 pci_disable_device +EXPORT_SYMBOL vmlinux 0x528e6f9b pci_enable_msi_range +EXPORT_SYMBOL vmlinux 0x528f617c skb_queue_purge +EXPORT_SYMBOL vmlinux 0x52a21d6c pneigh_enqueue +EXPORT_SYMBOL vmlinux 0x52b63655 noop_fsync +EXPORT_SYMBOL vmlinux 0x52e4e723 request_key_with_auxdata +EXPORT_SYMBOL vmlinux 0x530b2cf7 fsnotify_add_mark +EXPORT_SYMBOL vmlinux 0x53188ab2 register_console +EXPORT_SYMBOL vmlinux 0x53326531 mempool_alloc_pages +EXPORT_SYMBOL vmlinux 0x53347d54 rawv6_mh_filter_unregister +EXPORT_SYMBOL vmlinux 0x534a953d xfrm4_prepare_output +EXPORT_SYMBOL vmlinux 0x5362ac12 no_llseek +EXPORT_SYMBOL vmlinux 0x53748dad request_key +EXPORT_SYMBOL vmlinux 0x5379b54e security_inode_readlink +EXPORT_SYMBOL vmlinux 0x537c7eee ccw_device_is_pathgroup +EXPORT_SYMBOL vmlinux 0x538e0adb md_integrity_register +EXPORT_SYMBOL vmlinux 0x539af73c __sg_alloc_table +EXPORT_SYMBOL vmlinux 0x53b617fe dev_mc_del +EXPORT_SYMBOL vmlinux 0x53b98962 security_old_inode_init_security +EXPORT_SYMBOL vmlinux 0x53f04062 __kfifo_dma_out_prepare_r +EXPORT_SYMBOL vmlinux 0x540862e2 diag14 +EXPORT_SYMBOL vmlinux 0x5409775b free_irq_cpu_rmap +EXPORT_SYMBOL vmlinux 0x540cc61a dquot_scan_active +EXPORT_SYMBOL vmlinux 0x54114f5e jbd2_journal_get_undo_access +EXPORT_SYMBOL vmlinux 0x541ad366 __dynamic_netdev_dbg +EXPORT_SYMBOL vmlinux 0x5423f124 keyring_clear +EXPORT_SYMBOL vmlinux 0x543d34d2 __bforget +EXPORT_SYMBOL vmlinux 0x543ef284 seq_hlist_start +EXPORT_SYMBOL vmlinux 0x548a7215 blk_end_request_cur +EXPORT_SYMBOL vmlinux 0x549f50b3 configfs_unregister_subsystem +EXPORT_SYMBOL vmlinux 0x54a4ea6f printk_emit +EXPORT_SYMBOL vmlinux 0x54a9db5f _kstrtoul +EXPORT_SYMBOL vmlinux 0x54ae5706 inetpeer_invalidate_tree +EXPORT_SYMBOL vmlinux 0x54c55eda md_reload_sb +EXPORT_SYMBOL vmlinux 0x54e6fcdd net_enable_timestamp +EXPORT_SYMBOL vmlinux 0x54e9f8d3 pci_bus_write_config_dword +EXPORT_SYMBOL vmlinux 0x551bd071 __rb_erase_color +EXPORT_SYMBOL vmlinux 0x55339e33 unregister_cdrom +EXPORT_SYMBOL vmlinux 0x553b6a25 qdisc_destroy +EXPORT_SYMBOL vmlinux 0x5541ea93 on_each_cpu +EXPORT_SYMBOL vmlinux 0x55678b4b bsearch +EXPORT_SYMBOL vmlinux 0x5567c227 kernel_cpustat +EXPORT_SYMBOL vmlinux 0x558ec734 ioctl_by_bdev +EXPORT_SYMBOL vmlinux 0x55a3f3e0 sclp_add_request +EXPORT_SYMBOL vmlinux 0x55b647c4 unregister_netdevice_queue +EXPORT_SYMBOL vmlinux 0x55f039b7 skb_vlan_untag +EXPORT_SYMBOL vmlinux 0x55f6d64c cdrom_mode_sense +EXPORT_SYMBOL vmlinux 0x55fbaf1d smsg_unregister_callback +EXPORT_SYMBOL vmlinux 0x560b168d diag_stat_inc +EXPORT_SYMBOL vmlinux 0x56171d43 netpoll_send_skb_on_dev +EXPORT_SYMBOL vmlinux 0x562bfcec register_cdrom +EXPORT_SYMBOL vmlinux 0x56318ed0 netif_skb_features +EXPORT_SYMBOL vmlinux 0x5635a60a vmalloc_user +EXPORT_SYMBOL vmlinux 0x564a3a11 kernel_setsockopt +EXPORT_SYMBOL vmlinux 0x564b892b tty_register_driver +EXPORT_SYMBOL vmlinux 0x56538a72 scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x56671219 dquot_resume +EXPORT_SYMBOL vmlinux 0x5677d7eb sk_stream_error +EXPORT_SYMBOL vmlinux 0x5697b8a3 prepare_kernel_cred +EXPORT_SYMBOL vmlinux 0x56c8799d scsi_kunmap_atomic_sg +EXPORT_SYMBOL vmlinux 0x56d1a3cf __debug_sprintf_event +EXPORT_SYMBOL vmlinux 0x5709ab68 scsi_eh_restore_cmnd +EXPORT_SYMBOL vmlinux 0x570a325e tcf_em_unregister +EXPORT_SYMBOL vmlinux 0x57164c13 scsi_host_alloc +EXPORT_SYMBOL vmlinux 0x572e85d4 blk_lookup_devt +EXPORT_SYMBOL vmlinux 0x5734bbdb sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0x574c2e74 bitmap_release_region +EXPORT_SYMBOL vmlinux 0x5759b539 udp_set_csum +EXPORT_SYMBOL vmlinux 0x5765bb74 skb_seq_read +EXPORT_SYMBOL vmlinux 0x57674fd7 __sw_hweight16 +EXPORT_SYMBOL vmlinux 0x577eba56 md_finish_reshape +EXPORT_SYMBOL vmlinux 0x57a42e41 cdrom_mode_select +EXPORT_SYMBOL vmlinux 0x57a8dcc8 __do_once_done +EXPORT_SYMBOL vmlinux 0x57c6c31d sock_no_sendmsg +EXPORT_SYMBOL vmlinux 0x57ceeeee path_nosuid +EXPORT_SYMBOL vmlinux 0x57fea46b generic_key_instantiate +EXPORT_SYMBOL vmlinux 0x581959f3 down_write_trylock +EXPORT_SYMBOL vmlinux 0x581f98da zlib_inflate +EXPORT_SYMBOL vmlinux 0x5823cdd3 completion_done +EXPORT_SYMBOL vmlinux 0x582fda29 touch_atime +EXPORT_SYMBOL vmlinux 0x5847b8af tcw_finalize +EXPORT_SYMBOL vmlinux 0x584a38ee path_put +EXPORT_SYMBOL vmlinux 0x58506939 blk_mq_init_queue +EXPORT_SYMBOL vmlinux 0x5869d21f vfs_readv +EXPORT_SYMBOL vmlinux 0x586bb8fe try_to_writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x587616f1 vfs_fstatat +EXPORT_SYMBOL vmlinux 0x589ebcb4 __test_set_page_writeback +EXPORT_SYMBOL vmlinux 0x58a0b7f6 remove_proc_subtree +EXPORT_SYMBOL vmlinux 0x58b73bc7 match_wildcard +EXPORT_SYMBOL vmlinux 0x58cb9f12 rtnl_configure_link +EXPORT_SYMBOL vmlinux 0x58cd1b54 string_escape_mem +EXPORT_SYMBOL vmlinux 0x58e3306d bit_wait_io +EXPORT_SYMBOL vmlinux 0x58fb8b7b inet_accept +EXPORT_SYMBOL vmlinux 0x590b3d86 param_set_byte +EXPORT_SYMBOL vmlinux 0x59215f90 inet_select_addr +EXPORT_SYMBOL vmlinux 0x592b441e vfs_fsync_range +EXPORT_SYMBOL vmlinux 0x598e4904 mod_timer_pending +EXPORT_SYMBOL vmlinux 0x59cb8ebd register_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0x59f68198 dev_get_stats +EXPORT_SYMBOL vmlinux 0x5a1007e3 netif_carrier_on +EXPORT_SYMBOL vmlinux 0x5a1106d3 generic_file_fsync +EXPORT_SYMBOL vmlinux 0x5a138694 make_bad_inode +EXPORT_SYMBOL vmlinux 0x5a34a45c __kmalloc +EXPORT_SYMBOL vmlinux 0x5a3e8b97 sget_userns +EXPORT_SYMBOL vmlinux 0x5a5dcba4 bio_alloc_pages +EXPORT_SYMBOL vmlinux 0x5a5e7ea3 simple_read_from_buffer +EXPORT_SYMBOL vmlinux 0x5a826fe2 vfs_getxattr_alloc +EXPORT_SYMBOL vmlinux 0x5aa947b2 block_invalidatepage +EXPORT_SYMBOL vmlinux 0x5ab7b5ee inode_owner_or_capable +EXPORT_SYMBOL vmlinux 0x5aca6f4d tcf_em_tree_dump +EXPORT_SYMBOL vmlinux 0x5ae6e2fe xfrm_input +EXPORT_SYMBOL vmlinux 0x5b28bf5d memremap +EXPORT_SYMBOL vmlinux 0x5b604bd1 segment_type +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 0x5bcb5fcd tcp_enter_cwr +EXPORT_SYMBOL vmlinux 0x5bceb84a compat_nf_getsockopt +EXPORT_SYMBOL vmlinux 0x5bd6699b ipv6_chk_addr +EXPORT_SYMBOL vmlinux 0x5bdee363 memory_cgrp_subsys +EXPORT_SYMBOL vmlinux 0x5be8893c tcf_hash_insert +EXPORT_SYMBOL vmlinux 0x5bf7fa40 inet_get_local_port_range +EXPORT_SYMBOL vmlinux 0x5c097a10 sync_inode_metadata +EXPORT_SYMBOL vmlinux 0x5c0bb673 kill_bdev +EXPORT_SYMBOL vmlinux 0x5c1f1632 generic_ro_fops +EXPORT_SYMBOL vmlinux 0x5c208755 xfrm_unregister_mode +EXPORT_SYMBOL vmlinux 0x5c241c1c skb_try_coalesce +EXPORT_SYMBOL vmlinux 0x5c27c8ca padata_stop +EXPORT_SYMBOL vmlinux 0x5c347c44 padata_alloc +EXPORT_SYMBOL vmlinux 0x5c3f5418 __free_pages +EXPORT_SYMBOL vmlinux 0x5c8672f9 padata_do_parallel +EXPORT_SYMBOL vmlinux 0x5c921d80 set_bh_page +EXPORT_SYMBOL vmlinux 0x5cab3b3d blk_mq_map_queue +EXPORT_SYMBOL vmlinux 0x5cad5048 raw3270_deactivate_view +EXPORT_SYMBOL vmlinux 0x5cba5f37 neigh_table_init +EXPORT_SYMBOL vmlinux 0x5cc32bdc bitmap_copy_le +EXPORT_SYMBOL vmlinux 0x5cda7856 dcache_dir_open +EXPORT_SYMBOL vmlinux 0x5d11d95c trace_print_flags_seq +EXPORT_SYMBOL vmlinux 0x5d316b8d bitmap_close_sync +EXPORT_SYMBOL vmlinux 0x5d550c4d scsi_sd_probe_domain +EXPORT_SYMBOL vmlinux 0x5d6e26db key_put +EXPORT_SYMBOL vmlinux 0x5d75591b insert_inode_locked4 +EXPORT_SYMBOL vmlinux 0x5d94806d blk_queue_unprep_rq +EXPORT_SYMBOL vmlinux 0x5da71948 pci_bus_read_dev_vendor_id +EXPORT_SYMBOL vmlinux 0x5db342e8 dm_kcopyd_zero +EXPORT_SYMBOL vmlinux 0x5dbbe98e memmove +EXPORT_SYMBOL vmlinux 0x5dc0f338 diag_stat_inc_norecursion +EXPORT_SYMBOL vmlinux 0x5de1ca19 lg_local_lock_cpu +EXPORT_SYMBOL vmlinux 0x5e048a67 seq_vprintf +EXPORT_SYMBOL vmlinux 0x5e26150f inode_change_ok +EXPORT_SYMBOL vmlinux 0x5e4b7ae4 kmalloc_caches +EXPORT_SYMBOL vmlinux 0x5e4d51a1 nf_reinject +EXPORT_SYMBOL vmlinux 0x5e86171d raw3270_unregister_notifier +EXPORT_SYMBOL vmlinux 0x5e89b4ce dev_base_lock +EXPORT_SYMBOL vmlinux 0x5e95b1cd current_umask +EXPORT_SYMBOL vmlinux 0x5ea4c539 gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x5ea89c39 dev_remove_offload +EXPORT_SYMBOL vmlinux 0x5eb24829 dm_shift_arg +EXPORT_SYMBOL vmlinux 0x5eb374e2 ip_route_me_harder +EXPORT_SYMBOL vmlinux 0x5ee682f6 free_page_put_link +EXPORT_SYMBOL vmlinux 0x5ee9ceb5 netif_carrier_off +EXPORT_SYMBOL vmlinux 0x5efffd12 __init_waitqueue_head +EXPORT_SYMBOL vmlinux 0x5f005368 kstrtou8 +EXPORT_SYMBOL vmlinux 0x5f098b2a in6addr_interfacelocal_allrouters +EXPORT_SYMBOL vmlinux 0x5f23c0ef page_put_link +EXPORT_SYMBOL vmlinux 0x5f4b2de8 cio_irb +EXPORT_SYMBOL vmlinux 0x5f4e14f3 make_kprojid +EXPORT_SYMBOL vmlinux 0x5f4f9a4a __nlmsg_put +EXPORT_SYMBOL vmlinux 0x5f516cab cdev_alloc +EXPORT_SYMBOL vmlinux 0x5f5fdfe0 __get_user_pages_unlocked +EXPORT_SYMBOL vmlinux 0x5f60fcb6 dev_get_flags +EXPORT_SYMBOL vmlinux 0x5f70a42a tcp_get_md5sig_pool +EXPORT_SYMBOL vmlinux 0x5f778261 raw3270_request_alloc +EXPORT_SYMBOL vmlinux 0x5f8fe173 prepare_to_wait +EXPORT_SYMBOL vmlinux 0x5f94e0e1 __vfs_read +EXPORT_SYMBOL vmlinux 0x5fcd4658 jbd2_journal_load +EXPORT_SYMBOL vmlinux 0x5fd2298e strnstr +EXPORT_SYMBOL vmlinux 0x5fda0227 vfs_stat +EXPORT_SYMBOL vmlinux 0x5fe5fde2 inet_add_offload +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 0x603df3d4 elevator_init +EXPORT_SYMBOL vmlinux 0x60609833 wait_on_page_bit +EXPORT_SYMBOL vmlinux 0x60638438 inet_addr_type_table +EXPORT_SYMBOL vmlinux 0x606d0b09 secure_tcpv6_sequence_number +EXPORT_SYMBOL vmlinux 0x6091644e flow_keys_dissector +EXPORT_SYMBOL vmlinux 0x609f1c7e synchronize_net +EXPORT_SYMBOL vmlinux 0x60d5b182 put_tty_driver +EXPORT_SYMBOL vmlinux 0x60d7da6c proc_mkdir +EXPORT_SYMBOL vmlinux 0x60df1e3b posix_acl_equiv_mode +EXPORT_SYMBOL vmlinux 0x6128b5fc __printk_ratelimit +EXPORT_SYMBOL vmlinux 0x612b99fa fsnotify_get_group +EXPORT_SYMBOL vmlinux 0x6133ca56 inet_sendmsg +EXPORT_SYMBOL vmlinux 0x614bb773 radix_tree_insert +EXPORT_SYMBOL vmlinux 0x614d095c wait_for_completion_interruptible +EXPORT_SYMBOL vmlinux 0x614ec644 tty_port_block_til_ready +EXPORT_SYMBOL vmlinux 0x6167ea4f sock_no_connect +EXPORT_SYMBOL vmlinux 0x6195502d inet_unregister_protosw +EXPORT_SYMBOL vmlinux 0x61b0582d param_set_bint +EXPORT_SYMBOL vmlinux 0x61b1a3ee seq_puts +EXPORT_SYMBOL vmlinux 0x61b7b126 simple_strtoull +EXPORT_SYMBOL vmlinux 0x61b93212 mod_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x61bcc1c4 netdev_refcnt_read +EXPORT_SYMBOL vmlinux 0x61c08c32 __scm_send +EXPORT_SYMBOL vmlinux 0x61d2dcda write_dirty_buffer +EXPORT_SYMBOL vmlinux 0x61d45e70 __nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0x61d48ca6 __lock_buffer +EXPORT_SYMBOL vmlinux 0x61dcf6de dquot_quotactl_ops +EXPORT_SYMBOL vmlinux 0x61dfae64 rwsem_downgrade_wake +EXPORT_SYMBOL vmlinux 0x61e4278b seq_open +EXPORT_SYMBOL vmlinux 0x61f6ccd6 kthread_create_on_node +EXPORT_SYMBOL vmlinux 0x6225637e md5_transform +EXPORT_SYMBOL vmlinux 0x6228c21f smp_call_function_single +EXPORT_SYMBOL vmlinux 0x62546e93 netdev_has_upper_dev +EXPORT_SYMBOL vmlinux 0x6254e8db dev_set_promiscuity +EXPORT_SYMBOL vmlinux 0x6255d1a8 debug_unregister_view +EXPORT_SYMBOL vmlinux 0x6260d6f9 register_filesystem +EXPORT_SYMBOL vmlinux 0x6265f8e7 jbd2_journal_errno +EXPORT_SYMBOL vmlinux 0x62737e1d sock_unregister +EXPORT_SYMBOL vmlinux 0x62827bec security_secctx_to_secid +EXPORT_SYMBOL vmlinux 0x62849ac7 dev_valid_name +EXPORT_SYMBOL vmlinux 0x62acde08 dev_mc_sync +EXPORT_SYMBOL vmlinux 0x62c1f82c nf_register_hook +EXPORT_SYMBOL vmlinux 0x62cdf14a nvm_register +EXPORT_SYMBOL vmlinux 0x62d7babd get_super_thawed +EXPORT_SYMBOL vmlinux 0x62f1292b configfs_unregister_default_group +EXPORT_SYMBOL vmlinux 0x630ea220 vfs_writef +EXPORT_SYMBOL vmlinux 0x63187451 pcie_aspm_support_enabled +EXPORT_SYMBOL vmlinux 0x631cb88b xfrm6_protocol_register +EXPORT_SYMBOL vmlinux 0x63315e7b mb_cache_entry_get +EXPORT_SYMBOL vmlinux 0x63498952 neigh_ifdown +EXPORT_SYMBOL vmlinux 0x635f1cf8 __d_drop +EXPORT_SYMBOL vmlinux 0x6365c17a __frontswap_store +EXPORT_SYMBOL vmlinux 0x6372d3b4 sg_miter_next +EXPORT_SYMBOL vmlinux 0x637927f9 ping_prot +EXPORT_SYMBOL vmlinux 0x638f7340 simple_transaction_set +EXPORT_SYMBOL vmlinux 0x639dbdb7 ccw_device_tm_intrg +EXPORT_SYMBOL vmlinux 0x63a70436 ip_ct_attach +EXPORT_SYMBOL vmlinux 0x63a74ed7 pci_find_capability +EXPORT_SYMBOL vmlinux 0x63a7c28c bitmap_find_free_region +EXPORT_SYMBOL vmlinux 0x63ab3b8f dns_query +EXPORT_SYMBOL vmlinux 0x63ac51f1 fsync_bdev +EXPORT_SYMBOL vmlinux 0x63b39b17 tcp_destroy_cgroup +EXPORT_SYMBOL vmlinux 0x63c0f6ce dst_alloc +EXPORT_SYMBOL vmlinux 0x63c4d61f __bitmap_weight +EXPORT_SYMBOL vmlinux 0x63eb9355 panic_blink +EXPORT_SYMBOL vmlinux 0x63f8d778 cleancache_register_ops +EXPORT_SYMBOL vmlinux 0x64014e61 inode_newsize_ok +EXPORT_SYMBOL vmlinux 0x6403e338 tcp_memory_pressure +EXPORT_SYMBOL vmlinux 0x64127b67 bitmap_find_next_zero_area_off +EXPORT_SYMBOL vmlinux 0x641883c6 md_done_sync +EXPORT_SYMBOL vmlinux 0x645a9db2 dec_zone_page_state +EXPORT_SYMBOL vmlinux 0x645bbe26 __dquot_transfer +EXPORT_SYMBOL vmlinux 0x649015a1 tcf_hash_cleanup +EXPORT_SYMBOL vmlinux 0x649410c8 rtnl_create_link +EXPORT_SYMBOL vmlinux 0x6496105a nvm_erase_blk +EXPORT_SYMBOL vmlinux 0x64999478 congestion_wait +EXPORT_SYMBOL vmlinux 0x64a95f81 dev_mc_sync_multiple +EXPORT_SYMBOL vmlinux 0x64b5b2f2 dev_set_mtu +EXPORT_SYMBOL vmlinux 0x64bd4c8d mpage_readpages +EXPORT_SYMBOL vmlinux 0x64c376a7 skb_free_datagram +EXPORT_SYMBOL vmlinux 0x64c467e1 tty_free_termios +EXPORT_SYMBOL vmlinux 0x64da9d9b inet_offloads +EXPORT_SYMBOL vmlinux 0x64fa3ce1 padata_do_serial +EXPORT_SYMBOL vmlinux 0x650d5751 bmap +EXPORT_SYMBOL vmlinux 0x651a4139 test_taint +EXPORT_SYMBOL vmlinux 0x65408378 zlib_inflate_blob +EXPORT_SYMBOL vmlinux 0x65503ff0 __inode_add_bytes +EXPORT_SYMBOL vmlinux 0x656cb35c vlan_dev_vlan_proto +EXPORT_SYMBOL vmlinux 0x656dea6f nf_unregister_hook +EXPORT_SYMBOL vmlinux 0x657eeb46 kfree_skb_partial +EXPORT_SYMBOL vmlinux 0x65a7c8af __netlink_kernel_create +EXPORT_SYMBOL vmlinux 0x65daa364 tcw_set_tsb +EXPORT_SYMBOL vmlinux 0x65dccf13 xz_dec_end +EXPORT_SYMBOL vmlinux 0x65e59883 generic_error_remove_page +EXPORT_SYMBOL vmlinux 0x6629f4eb generic_file_llseek +EXPORT_SYMBOL vmlinux 0x66394a62 new_inode +EXPORT_SYMBOL vmlinux 0x6641909c neigh_event_ns +EXPORT_SYMBOL vmlinux 0x6655b29e prepare_to_wait_event +EXPORT_SYMBOL vmlinux 0x66aa4e75 __mutex_init +EXPORT_SYMBOL vmlinux 0x66e69897 prandom_bytes_state +EXPORT_SYMBOL vmlinux 0x67120166 bio_integrity_advance +EXPORT_SYMBOL vmlinux 0x671272ec blkdev_reread_part +EXPORT_SYMBOL vmlinux 0x671ed3d0 blk_queue_max_segments +EXPORT_SYMBOL vmlinux 0x671f1cbc security_inode_init_security +EXPORT_SYMBOL vmlinux 0x6720e0e8 tcf_exts_change +EXPORT_SYMBOL vmlinux 0x672144bd strlcpy +EXPORT_SYMBOL vmlinux 0x6724e119 crc32_le +EXPORT_SYMBOL vmlinux 0x672a99fd bioset_create_nobvec +EXPORT_SYMBOL vmlinux 0x67309bae blk_post_runtime_resume +EXPORT_SYMBOL vmlinux 0x674f3855 debug_register_view +EXPORT_SYMBOL vmlinux 0x675abf98 nobh_write_begin +EXPORT_SYMBOL vmlinux 0x67733cf4 mb_cache_create +EXPORT_SYMBOL vmlinux 0x6777a08c sched_autogroup_detach +EXPORT_SYMBOL vmlinux 0x677e5179 kernel_param_lock +EXPORT_SYMBOL vmlinux 0x67b27ec1 tty_std_termios +EXPORT_SYMBOL vmlinux 0x67b78eb3 seq_hlist_next_rcu +EXPORT_SYMBOL vmlinux 0x67cb37b4 lock_two_nondirectories +EXPORT_SYMBOL vmlinux 0x67eeabce ccw_device_get_mdc +EXPORT_SYMBOL vmlinux 0x6808b453 __unregister_cpu_notifier +EXPORT_SYMBOL vmlinux 0x683391ef proc_set_user +EXPORT_SYMBOL vmlinux 0x6845d7d8 pcibios_resource_to_bus +EXPORT_SYMBOL vmlinux 0x68647871 tcp_md5_do_lookup +EXPORT_SYMBOL vmlinux 0x688162b9 f_setown +EXPORT_SYMBOL vmlinux 0x688b27f5 set_device_ro +EXPORT_SYMBOL vmlinux 0x68b83ac6 posix_acl_alloc +EXPORT_SYMBOL vmlinux 0x68fff4bd seq_dentry +EXPORT_SYMBOL vmlinux 0x6900ee4a unregister_service_level +EXPORT_SYMBOL vmlinux 0x6921c84c padata_alloc_possible +EXPORT_SYMBOL vmlinux 0x6930bfc1 elv_register_queue +EXPORT_SYMBOL vmlinux 0x696d4ed5 bprm_change_interp +EXPORT_SYMBOL vmlinux 0x697ce923 udp_lib_get_port +EXPORT_SYMBOL vmlinux 0x69a358a6 iomem_resource +EXPORT_SYMBOL vmlinux 0x69ad2f20 kstrtouint +EXPORT_SYMBOL vmlinux 0x69b29331 pci_restore_state +EXPORT_SYMBOL vmlinux 0x69e40324 devm_ioremap_nocache +EXPORT_SYMBOL vmlinux 0x6a037cf1 mempool_kfree +EXPORT_SYMBOL vmlinux 0x6a34ac47 key_alloc +EXPORT_SYMBOL vmlinux 0x6a35fba6 fsnotify_put_group +EXPORT_SYMBOL vmlinux 0x6a5c36ab kmem_cache_shrink +EXPORT_SYMBOL vmlinux 0x6a5cb2c9 netlink_ack +EXPORT_SYMBOL vmlinux 0x6a5ecb18 unregister_module_notifier +EXPORT_SYMBOL vmlinux 0x6a5fa363 sigprocmask +EXPORT_SYMBOL vmlinux 0x6a76f3ac blk_iopoll_enable +EXPORT_SYMBOL vmlinux 0x6a8b6dec cdrom_check_events +EXPORT_SYMBOL vmlinux 0x6abe8ab5 vm_insert_pfn +EXPORT_SYMBOL vmlinux 0x6acafd5b cookie_timestamp_decode +EXPORT_SYMBOL vmlinux 0x6ada4ae3 cdev_add +EXPORT_SYMBOL vmlinux 0x6ae28b3f user_revoke +EXPORT_SYMBOL vmlinux 0x6ae2a80f tty_chars_in_buffer +EXPORT_SYMBOL vmlinux 0x6afaa9dc prepare_binprm +EXPORT_SYMBOL vmlinux 0x6b06fdce delayed_work_timer_fn +EXPORT_SYMBOL vmlinux 0x6b14df7a cad_pid +EXPORT_SYMBOL vmlinux 0x6b1b67d3 __bdevname +EXPORT_SYMBOL vmlinux 0x6b2dc060 dump_stack +EXPORT_SYMBOL vmlinux 0x6b649386 jbd2_journal_file_inode +EXPORT_SYMBOL vmlinux 0x6b65613e locks_remove_posix +EXPORT_SYMBOL vmlinux 0x6b6dbfa6 security_sb_clone_mnt_opts +EXPORT_SYMBOL vmlinux 0x6bba6667 elv_rb_del +EXPORT_SYMBOL vmlinux 0x6bc3fbc0 __unregister_chrdev +EXPORT_SYMBOL vmlinux 0x6bc7c311 kmalloc_order +EXPORT_SYMBOL vmlinux 0x6bc9aac3 bh_submit_read +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 0x6be5d12a skb_page_frag_refill +EXPORT_SYMBOL vmlinux 0x6bfa7257 padata_register_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x6c09c2a4 del_timer +EXPORT_SYMBOL vmlinux 0x6c440651 init_virt_timer +EXPORT_SYMBOL vmlinux 0x6c51a836 sysctl_tcp_notsent_lowat +EXPORT_SYMBOL vmlinux 0x6c702af7 sysctl_udp_rmem_min +EXPORT_SYMBOL vmlinux 0x6c798c73 ipv6_select_ident +EXPORT_SYMBOL vmlinux 0x6ca9f427 scsi_cmd_blk_ioctl +EXPORT_SYMBOL vmlinux 0x6cfea5a2 inet6_csk_route_req +EXPORT_SYMBOL vmlinux 0x6d035735 sock_register +EXPORT_SYMBOL vmlinux 0x6d098a8d blk_queue_io_min +EXPORT_SYMBOL vmlinux 0x6d0f1f89 dm_table_get_mode +EXPORT_SYMBOL vmlinux 0x6d1260d4 jbd2_journal_stop +EXPORT_SYMBOL vmlinux 0x6d1ea6ec strlcat +EXPORT_SYMBOL vmlinux 0x6d294e43 clock_t_to_jiffies +EXPORT_SYMBOL vmlinux 0x6d30af25 tty_devnum +EXPORT_SYMBOL vmlinux 0x6d340f64 tty_termios_input_baud_rate +EXPORT_SYMBOL vmlinux 0x6d34789c single_release +EXPORT_SYMBOL vmlinux 0x6d509146 tcw_get_intrg +EXPORT_SYMBOL vmlinux 0x6d602feb sk_stream_wait_close +EXPORT_SYMBOL vmlinux 0x6d747af1 simple_write_end +EXPORT_SYMBOL vmlinux 0x6d862989 dget_parent +EXPORT_SYMBOL vmlinux 0x6d9288d2 idr_for_each +EXPORT_SYMBOL vmlinux 0x6ddca21d down_trylock +EXPORT_SYMBOL vmlinux 0x6ddd4934 lockref_get_not_dead +EXPORT_SYMBOL vmlinux 0x6def2db2 half_md4_transform +EXPORT_SYMBOL vmlinux 0x6df063b9 sched_autogroup_create_attach +EXPORT_SYMBOL vmlinux 0x6df1aaf1 kernel_sigaction +EXPORT_SYMBOL vmlinux 0x6e00b8cb _ebcasc +EXPORT_SYMBOL vmlinux 0x6e0edb12 skb_copy_and_csum_datagram_msg +EXPORT_SYMBOL vmlinux 0x6e0f5725 elv_rb_add +EXPORT_SYMBOL vmlinux 0x6e0ff180 md_cluster_mod +EXPORT_SYMBOL vmlinux 0x6e11a074 iov_iter_advance +EXPORT_SYMBOL vmlinux 0x6e4e79b7 __skb_checksum_complete_head +EXPORT_SYMBOL vmlinux 0x6e508a24 blk_rq_map_user +EXPORT_SYMBOL vmlinux 0x6e515c66 skb_free_datagram_locked +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 0x6e947306 config_item_set_name +EXPORT_SYMBOL vmlinux 0x6e9ad290 cpu_have_feature +EXPORT_SYMBOL vmlinux 0x6e9dd606 __symbol_put +EXPORT_SYMBOL vmlinux 0x6ea1b1f5 simple_open +EXPORT_SYMBOL vmlinux 0x6ed09c0e skb_pad +EXPORT_SYMBOL vmlinux 0x6edd70b1 skb_recv_datagram +EXPORT_SYMBOL vmlinux 0x6edf0a7b vmap +EXPORT_SYMBOL vmlinux 0x6ee1b56c xfrm_input_register_afinfo +EXPORT_SYMBOL vmlinux 0x6f200b03 tcw_set_intrg +EXPORT_SYMBOL vmlinux 0x6f20960a full_name_hash +EXPORT_SYMBOL vmlinux 0x6f443e35 trace_raw_output_prep +EXPORT_SYMBOL vmlinux 0x6f5ef93d memchr_inv +EXPORT_SYMBOL vmlinux 0x6f7739f1 ip_queue_xmit +EXPORT_SYMBOL vmlinux 0x6f798081 sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x6f915271 airq_iv_create +EXPORT_SYMBOL vmlinux 0x6f993604 skb_split +EXPORT_SYMBOL vmlinux 0x6f9af1f1 tty_port_lower_dtr_rts +EXPORT_SYMBOL vmlinux 0x6fb1053d arp_send +EXPORT_SYMBOL vmlinux 0x6fbf07cd __free_page_frag +EXPORT_SYMBOL vmlinux 0x6fc1242e tcp_proc_register +EXPORT_SYMBOL vmlinux 0x6fc7e626 memzero_explicit +EXPORT_SYMBOL vmlinux 0x70213322 dev_open +EXPORT_SYMBOL vmlinux 0x702d25ad eth_header_cache_update +EXPORT_SYMBOL vmlinux 0x70383005 dev_warn +EXPORT_SYMBOL vmlinux 0x70420160 pci_msi_vec_count +EXPORT_SYMBOL vmlinux 0x70523a7a __cond_resched_softirq +EXPORT_SYMBOL vmlinux 0x7058c3bd generic_block_fiemap +EXPORT_SYMBOL vmlinux 0x706b08d2 release_firmware +EXPORT_SYMBOL vmlinux 0x706b44f8 posix_acl_from_xattr +EXPORT_SYMBOL vmlinux 0x706d051c del_timer_sync +EXPORT_SYMBOL vmlinux 0x707f43f6 __ctzdi2 +EXPORT_SYMBOL vmlinux 0x70a32d4f xfrm_state_lookup +EXPORT_SYMBOL vmlinux 0x70a7a895 ccw_device_tm_start_key +EXPORT_SYMBOL vmlinux 0x70cea006 qdisc_class_hash_grow +EXPORT_SYMBOL vmlinux 0x70e31404 jbd2_complete_transaction +EXPORT_SYMBOL vmlinux 0x7129e5f8 hex_asc +EXPORT_SYMBOL vmlinux 0x7145aef0 segment_load +EXPORT_SYMBOL vmlinux 0x7171121c overflowgid +EXPORT_SYMBOL vmlinux 0x717b9285 dm_register_target +EXPORT_SYMBOL vmlinux 0x718aa674 ccw_driver_register +EXPORT_SYMBOL vmlinux 0x718dbf83 netdev_master_upper_dev_get_rcu +EXPORT_SYMBOL vmlinux 0x71a50dbc register_blkdev +EXPORT_SYMBOL vmlinux 0x71a672ef dmam_pool_destroy +EXPORT_SYMBOL vmlinux 0x71ab2bf2 tcp_splice_read +EXPORT_SYMBOL vmlinux 0x71c0c3a8 add_wait_queue_exclusive +EXPORT_SYMBOL vmlinux 0x71dc3022 param_ops_ulong +EXPORT_SYMBOL vmlinux 0x71f49f9a pci_scan_bus +EXPORT_SYMBOL vmlinux 0x71f723a2 lookup_one_len +EXPORT_SYMBOL vmlinux 0x71fce627 netdev_master_upper_dev_get +EXPORT_SYMBOL vmlinux 0x720c85ef blk_make_request +EXPORT_SYMBOL vmlinux 0x720e6344 udp_proc_unregister +EXPORT_SYMBOL vmlinux 0x723f1466 icmpv6_send +EXPORT_SYMBOL vmlinux 0x7242e96d strnchr +EXPORT_SYMBOL vmlinux 0x724e970b msi_desc_to_pci_dev +EXPORT_SYMBOL vmlinux 0x725fd887 nla_append +EXPORT_SYMBOL vmlinux 0x72687058 pagecache_write_end +EXPORT_SYMBOL vmlinux 0x727cad78 tcp_create_openreq_child +EXPORT_SYMBOL vmlinux 0x72a3b6ba pci_unmap_rom +EXPORT_SYMBOL vmlinux 0x72a727c2 configfs_register_default_group +EXPORT_SYMBOL vmlinux 0x72befd53 config_item_init_type_name +EXPORT_SYMBOL vmlinux 0x72ea7b2d scsi_device_type +EXPORT_SYMBOL vmlinux 0x730d4e0b lg_local_lock +EXPORT_SYMBOL vmlinux 0x731141cb sync_mapping_buffers +EXPORT_SYMBOL vmlinux 0x732ccb0a scsi_change_queue_depth +EXPORT_SYMBOL vmlinux 0x7337e06c default_qdisc_ops +EXPORT_SYMBOL vmlinux 0x733c3b54 kasprintf +EXPORT_SYMBOL vmlinux 0x73626116 netlink_unicast +EXPORT_SYMBOL vmlinux 0x7388ad69 param_ops_ullong +EXPORT_SYMBOL vmlinux 0x739f3286 __neigh_set_probe_once +EXPORT_SYMBOL vmlinux 0x73aa7228 fs_bio_set +EXPORT_SYMBOL vmlinux 0x73b90968 pcim_iomap +EXPORT_SYMBOL vmlinux 0x73bf20c6 _ascebc +EXPORT_SYMBOL vmlinux 0x73fd0c81 param_get_long +EXPORT_SYMBOL vmlinux 0x7410aba2 strreplace +EXPORT_SYMBOL vmlinux 0x7414b097 generic_file_direct_write +EXPORT_SYMBOL vmlinux 0x741f70a9 debug_stop_all +EXPORT_SYMBOL vmlinux 0x74358511 tc_classify +EXPORT_SYMBOL vmlinux 0x7456af9e xfrm_state_flush +EXPORT_SYMBOL vmlinux 0x74629f00 __inode_sub_bytes +EXPORT_SYMBOL vmlinux 0x7485e15e unregister_chrdev_region +EXPORT_SYMBOL vmlinux 0x74c134b9 __sw_hweight32 +EXPORT_SYMBOL vmlinux 0x74c2ee0b kmem_cache_free_bulk +EXPORT_SYMBOL vmlinux 0x74c3917e udplite_table +EXPORT_SYMBOL vmlinux 0x74e5ff1a udpv6_encap_enable +EXPORT_SYMBOL vmlinux 0x74fcfb04 rtnl_notify +EXPORT_SYMBOL vmlinux 0x75040515 compat_nf_setsockopt +EXPORT_SYMBOL vmlinux 0x75132841 jbd2_journal_check_available_features +EXPORT_SYMBOL vmlinux 0x752a1bb1 zero_fill_bio +EXPORT_SYMBOL vmlinux 0x75498e1d netif_tx_stop_all_queues +EXPORT_SYMBOL vmlinux 0x758fdcf1 ida_get_new_above +EXPORT_SYMBOL vmlinux 0x75a64db3 tty_insert_flip_string_flags +EXPORT_SYMBOL vmlinux 0x75ac0197 kstrtoul_from_user +EXPORT_SYMBOL vmlinux 0x75bda77a seq_hlist_next +EXPORT_SYMBOL vmlinux 0x75bdea12 iommu_area_alloc +EXPORT_SYMBOL vmlinux 0x75d09634 dev_change_proto_down +EXPORT_SYMBOL vmlinux 0x75d157d7 pci_iomap +EXPORT_SYMBOL vmlinux 0x75d68749 blk_queue_max_write_same_sectors +EXPORT_SYMBOL vmlinux 0x75e5f01b __scsi_device_lookup +EXPORT_SYMBOL vmlinux 0x75edd2f0 ccw_device_tm_start +EXPORT_SYMBOL vmlinux 0x75f81801 seq_release_private +EXPORT_SYMBOL vmlinux 0x760a0f4f yield +EXPORT_SYMBOL vmlinux 0x7647726c handle_sysrq +EXPORT_SYMBOL vmlinux 0x764bd77c request_resource +EXPORT_SYMBOL vmlinux 0x764f2d6c filemap_fdatawait +EXPORT_SYMBOL vmlinux 0x76505ed0 tty_vhangup +EXPORT_SYMBOL vmlinux 0x7690423b tcp_timewait_state_process +EXPORT_SYMBOL vmlinux 0x76a2217e kbd_ioctl +EXPORT_SYMBOL vmlinux 0x76d3cd60 laptop_mode +EXPORT_SYMBOL vmlinux 0x76d451c4 add_taint +EXPORT_SYMBOL vmlinux 0x76e68483 kill_block_super +EXPORT_SYMBOL vmlinux 0x771cf835 dma_pool_alloc +EXPORT_SYMBOL vmlinux 0x7746228c inet6_unregister_icmp_sender +EXPORT_SYMBOL vmlinux 0x776c5b08 abort_creds +EXPORT_SYMBOL vmlinux 0x7776ef3b inet_getname +EXPORT_SYMBOL vmlinux 0x777c7617 bio_phys_segments +EXPORT_SYMBOL vmlinux 0x77845e24 pci_get_slot +EXPORT_SYMBOL vmlinux 0x7791b232 scsi_print_result +EXPORT_SYMBOL vmlinux 0x7797ce63 tcp_sockets_allocated +EXPORT_SYMBOL vmlinux 0x779a18af kstrtoll +EXPORT_SYMBOL vmlinux 0x77ac6a37 blk_sync_queue +EXPORT_SYMBOL vmlinux 0x77bc13a0 strim +EXPORT_SYMBOL vmlinux 0x77c6e8f8 filemap_flush +EXPORT_SYMBOL vmlinux 0x7803dffc __wake_up +EXPORT_SYMBOL vmlinux 0x7824898f param_ops_bool +EXPORT_SYMBOL vmlinux 0x7827d23c tty_port_close_end +EXPORT_SYMBOL vmlinux 0x782acba5 crc_t10dif +EXPORT_SYMBOL vmlinux 0x783b3563 wake_up_atomic_t +EXPORT_SYMBOL vmlinux 0x78421c57 nvm_dev_factory +EXPORT_SYMBOL vmlinux 0x7864414c add_virt_timer_periodic +EXPORT_SYMBOL vmlinux 0x787ad1a9 __bio_clone_fast +EXPORT_SYMBOL vmlinux 0x787b705a tcp_close +EXPORT_SYMBOL vmlinux 0x7880c781 dm_kcopyd_prepare_callback +EXPORT_SYMBOL vmlinux 0x7880d267 dquot_reclaim_space_nodirty +EXPORT_SYMBOL vmlinux 0x78989644 simple_transaction_get +EXPORT_SYMBOL vmlinux 0x789affb1 frontswap_tmem_exclusive_gets +EXPORT_SYMBOL vmlinux 0x78b4978e save_mount_options +EXPORT_SYMBOL vmlinux 0x78df6bd7 no_pci_devices +EXPORT_SYMBOL vmlinux 0x78e4b7fc submit_bio_wait +EXPORT_SYMBOL vmlinux 0x78f16cee seq_lseek +EXPORT_SYMBOL vmlinux 0x792e0d45 lockref_get_not_zero +EXPORT_SYMBOL vmlinux 0x794690df fifo_set_limit +EXPORT_SYMBOL vmlinux 0x79594e9d __scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x795f4105 scsi_remove_device +EXPORT_SYMBOL vmlinux 0x796fc5ce scsi_get_sense_info_fld +EXPORT_SYMBOL vmlinux 0x7985d043 radix_tree_tag_set +EXPORT_SYMBOL vmlinux 0x7991f653 get_task_io_context +EXPORT_SYMBOL vmlinux 0x79aa04a2 get_random_bytes +EXPORT_SYMBOL vmlinux 0x79b62961 mod_virt_timer +EXPORT_SYMBOL vmlinux 0x79cf04ea writeback_inodes_sb +EXPORT_SYMBOL vmlinux 0x79d3b882 kernel_getsockopt +EXPORT_SYMBOL vmlinux 0x79de0592 sock_init_data +EXPORT_SYMBOL vmlinux 0x79efac46 neigh_update +EXPORT_SYMBOL vmlinux 0x7a1297a3 inetdev_by_index +EXPORT_SYMBOL vmlinux 0x7a151f92 freeze_bdev +EXPORT_SYMBOL vmlinux 0x7a41a797 mount_bdev +EXPORT_SYMBOL vmlinux 0x7a4497db kzfree +EXPORT_SYMBOL vmlinux 0x7a6c8e1a jbd2_journal_clear_features +EXPORT_SYMBOL vmlinux 0x7a6cdedc do_settimeofday64 +EXPORT_SYMBOL vmlinux 0x7a79ca6a clear_wb_congested +EXPORT_SYMBOL vmlinux 0x7a973ebc simple_dir_inode_operations +EXPORT_SYMBOL vmlinux 0x7a990187 xfrm6_rcv_spi +EXPORT_SYMBOL vmlinux 0x7aa1756e kvfree +EXPORT_SYMBOL vmlinux 0x7ab33beb jbd2_journal_get_write_access +EXPORT_SYMBOL vmlinux 0x7ab88a45 system_freezing_cnt +EXPORT_SYMBOL vmlinux 0x7ab8ce0c tag_pages_for_writeback +EXPORT_SYMBOL vmlinux 0x7ac7a7a9 nf_getsockopt +EXPORT_SYMBOL vmlinux 0x7ad050b9 qid_lt +EXPORT_SYMBOL vmlinux 0x7ae73de1 alloc_pages_exact +EXPORT_SYMBOL vmlinux 0x7aeb92af ndo_dflt_fdb_del +EXPORT_SYMBOL vmlinux 0x7af689aa complete_request_key +EXPORT_SYMBOL vmlinux 0x7b167909 bitmap_from_u32array +EXPORT_SYMBOL vmlinux 0x7b20b1bc ip_mc_check_igmp +EXPORT_SYMBOL vmlinux 0x7b2e24d5 blk_pre_runtime_resume +EXPORT_SYMBOL vmlinux 0x7b349e59 iget_locked +EXPORT_SYMBOL vmlinux 0x7b5a7137 strncat +EXPORT_SYMBOL vmlinux 0x7b638328 neigh_proc_dointvec_jiffies +EXPORT_SYMBOL vmlinux 0x7b7be4dc __sync_dirty_buffer +EXPORT_SYMBOL vmlinux 0x7b7e5a64 scsi_set_medium_removal +EXPORT_SYMBOL vmlinux 0x7b89e30c dump_emit +EXPORT_SYMBOL vmlinux 0x7b8f4c40 key_create_or_update +EXPORT_SYMBOL vmlinux 0x7babdcd2 tcp_v4_syn_recv_sock +EXPORT_SYMBOL vmlinux 0x7bb8738f mb_cache_entry_release +EXPORT_SYMBOL vmlinux 0x7bc9160f gro_find_receive_by_type +EXPORT_SYMBOL vmlinux 0x7bd8a82e pci_set_master +EXPORT_SYMBOL vmlinux 0x7bf479fe resource_list_create_entry +EXPORT_SYMBOL vmlinux 0x7c1372e8 panic +EXPORT_SYMBOL vmlinux 0x7c173634 __bitmap_complement +EXPORT_SYMBOL vmlinux 0x7c1c056e set_anon_super +EXPORT_SYMBOL vmlinux 0x7c319bf8 pci_iomap_range +EXPORT_SYMBOL vmlinux 0x7c3dbaac kstrtou8_from_user +EXPORT_SYMBOL vmlinux 0x7c5d4a3a sclp_reactivate +EXPORT_SYMBOL vmlinux 0x7c61340c __release_region +EXPORT_SYMBOL vmlinux 0x7c65d9f2 vfs_rmdir +EXPORT_SYMBOL vmlinux 0x7c7362ad tcw_get_data +EXPORT_SYMBOL vmlinux 0x7c956366 dev_activate +EXPORT_SYMBOL vmlinux 0x7cb1ae69 cpu_down +EXPORT_SYMBOL vmlinux 0x7cd90ceb tty_driver_kref_put +EXPORT_SYMBOL vmlinux 0x7ce18c9f from_kqid +EXPORT_SYMBOL vmlinux 0x7ce3d45d debug_set_level +EXPORT_SYMBOL vmlinux 0x7cff93ea wait_for_completion_killable +EXPORT_SYMBOL vmlinux 0x7d0db45c jiffies_to_clock_t +EXPORT_SYMBOL vmlinux 0x7d11c268 jiffies +EXPORT_SYMBOL vmlinux 0x7d30d0ee del_random_ready_callback +EXPORT_SYMBOL vmlinux 0x7d705738 blk_start_plug +EXPORT_SYMBOL vmlinux 0x7d7e8634 down_write +EXPORT_SYMBOL vmlinux 0x7db9f044 __netlink_ns_capable +EXPORT_SYMBOL vmlinux 0x7deff673 dm_consume_args +EXPORT_SYMBOL vmlinux 0x7df09df2 rps_may_expire_flow +EXPORT_SYMBOL vmlinux 0x7e2701d7 padata_unregister_cpumask_notifier +EXPORT_SYMBOL vmlinux 0x7e2839cd find_get_pages_contig +EXPORT_SYMBOL vmlinux 0x7ed34416 csum_and_copy_from_iter +EXPORT_SYMBOL vmlinux 0x7edfe44a lwtunnel_fill_encap +EXPORT_SYMBOL vmlinux 0x7ee6d93a nsecs_to_jiffies64 +EXPORT_SYMBOL vmlinux 0x7ee9eba3 iucv_register +EXPORT_SYMBOL vmlinux 0x7f02188f __msecs_to_jiffies +EXPORT_SYMBOL vmlinux 0x7f24de73 jiffies_to_usecs +EXPORT_SYMBOL vmlinux 0x7f263ed9 blk_stack_limits +EXPORT_SYMBOL vmlinux 0x7f62a045 cpu_maps_update_done +EXPORT_SYMBOL vmlinux 0x7f7876af grab_cache_page_write_begin +EXPORT_SYMBOL vmlinux 0x7f7e1c73 pci_write_vpd +EXPORT_SYMBOL vmlinux 0x7fb6e1b8 iov_iter_copy_from_user_atomic +EXPORT_SYMBOL vmlinux 0x7fbd10d2 radix_tree_next_chunk +EXPORT_SYMBOL vmlinux 0x7fc0ff23 linkwatch_fire_event +EXPORT_SYMBOL vmlinux 0x7fe32873 rb_replace_node +EXPORT_SYMBOL vmlinux 0x8027f9c2 alloc_disk +EXPORT_SYMBOL vmlinux 0x8034549c inet_sock_destruct +EXPORT_SYMBOL vmlinux 0x805485ab __kfifo_out_r +EXPORT_SYMBOL vmlinux 0x805b9a0d misc_deregister +EXPORT_SYMBOL vmlinux 0x8068c15c kblockd_schedule_delayed_work +EXPORT_SYMBOL vmlinux 0x8073ac77 down_interruptible +EXPORT_SYMBOL vmlinux 0x80791a8c radix_tree_gang_lookup_slot +EXPORT_SYMBOL vmlinux 0x8091c2c5 ipv6_mc_check_mld +EXPORT_SYMBOL vmlinux 0x80a8c8ab kobject_add +EXPORT_SYMBOL vmlinux 0x80aa90e9 gnet_stats_copy_app +EXPORT_SYMBOL vmlinux 0x80ba16d6 tcf_register_action +EXPORT_SYMBOL vmlinux 0x80ca5026 _bin2bcd +EXPORT_SYMBOL vmlinux 0x80d3d231 register_gifconf +EXPORT_SYMBOL vmlinux 0x80d3f197 inode_get_bytes +EXPORT_SYMBOL vmlinux 0x80d68d3e fb_register_client +EXPORT_SYMBOL vmlinux 0x80d7005e inode_set_bytes +EXPORT_SYMBOL vmlinux 0x80e0feec tcp_v4_send_check +EXPORT_SYMBOL vmlinux 0x81241d14 nvm_submit_io +EXPORT_SYMBOL vmlinux 0x8128c039 smsg_register_callback +EXPORT_SYMBOL vmlinux 0x814a6e82 inet_csk_prepare_forced_close +EXPORT_SYMBOL vmlinux 0x814e7730 nf_ct_destroy +EXPORT_SYMBOL vmlinux 0x815b5dd4 match_octal +EXPORT_SYMBOL vmlinux 0x816cfac0 in_dev_finish_destroy +EXPORT_SYMBOL vmlinux 0x8171f684 start_tty +EXPORT_SYMBOL vmlinux 0x81c73c17 __cleancache_init_shared_fs +EXPORT_SYMBOL vmlinux 0x81d35bfe tcw_get_tccb +EXPORT_SYMBOL vmlinux 0x81db6ebb xz_dec_reset +EXPORT_SYMBOL vmlinux 0x81e4f0d6 kill_litter_super +EXPORT_SYMBOL vmlinux 0x81f8e6dc netdev_alert +EXPORT_SYMBOL vmlinux 0x82072614 tasklet_kill +EXPORT_SYMBOL vmlinux 0x824519f1 finish_wait +EXPORT_SYMBOL vmlinux 0x82458f7f radix_tree_delete_item +EXPORT_SYMBOL vmlinux 0x82701365 int_to_scsilun +EXPORT_SYMBOL vmlinux 0x828062b1 __frontswap_init +EXPORT_SYMBOL vmlinux 0x828977da __mark_inode_dirty +EXPORT_SYMBOL vmlinux 0x82acfb70 blk_iopoll_sched +EXPORT_SYMBOL vmlinux 0x82bf2d7c __destroy_inode +EXPORT_SYMBOL vmlinux 0x82c1b582 nf_unregister_net_hook +EXPORT_SYMBOL vmlinux 0x82dc7348 __dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0x83512362 zpool_unregister_driver +EXPORT_SYMBOL vmlinux 0x836d82a2 fasync_helper +EXPORT_SYMBOL vmlinux 0x8373bd08 tty_throttle +EXPORT_SYMBOL vmlinux 0x8375ba7f blk_init_tags +EXPORT_SYMBOL vmlinux 0x8377f85e security_path_symlink +EXPORT_SYMBOL vmlinux 0x837d0760 simple_transaction_read +EXPORT_SYMBOL vmlinux 0x838399de ccw_device_start_key +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 0x83f397b8 del_gendisk +EXPORT_SYMBOL vmlinux 0x8406aa75 scsi_register_driver +EXPORT_SYMBOL vmlinux 0x8424ec91 fsnotify_put_mark +EXPORT_SYMBOL vmlinux 0x8426344b kern_path +EXPORT_SYMBOL vmlinux 0x842e74bf genlmsg_multicast_allns +EXPORT_SYMBOL vmlinux 0x8431b384 kernel_sendpage +EXPORT_SYMBOL vmlinux 0x844a2561 get_task_exe_file +EXPORT_SYMBOL vmlinux 0x844e3767 radix_tree_lookup +EXPORT_SYMBOL vmlinux 0x84610d57 keyring_alloc +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 0x84c12be9 call_usermodehelper_exec +EXPORT_SYMBOL vmlinux 0x84cc3c02 tty_port_carrier_raised +EXPORT_SYMBOL vmlinux 0x84fbb2fd posix_acl_chmod +EXPORT_SYMBOL vmlinux 0x84ffea8b idr_preload +EXPORT_SYMBOL vmlinux 0x85365431 take_dentry_name_snapshot +EXPORT_SYMBOL vmlinux 0x8557c633 __dquot_free_space +EXPORT_SYMBOL vmlinux 0x8557e085 done_path_create +EXPORT_SYMBOL vmlinux 0x855b9735 dcache_dir_lseek +EXPORT_SYMBOL vmlinux 0x85670f1d rtnl_is_locked +EXPORT_SYMBOL vmlinux 0x8568d8a2 sg_alloc_table_from_pages +EXPORT_SYMBOL vmlinux 0x856c837b netpoll_cleanup +EXPORT_SYMBOL vmlinux 0x858e8ab0 inet_listen +EXPORT_SYMBOL vmlinux 0x85a261b9 page_readlink +EXPORT_SYMBOL vmlinux 0x85a49021 devm_iounmap +EXPORT_SYMBOL vmlinux 0x85a62e56 simple_fill_super +EXPORT_SYMBOL vmlinux 0x85abc85f strncmp +EXPORT_SYMBOL vmlinux 0x85df9b6c strsep +EXPORT_SYMBOL vmlinux 0x85e67ffa inode_claim_rsv_space +EXPORT_SYMBOL vmlinux 0x85efc7e0 zero_pfn +EXPORT_SYMBOL vmlinux 0x860e9717 mount_nodev +EXPORT_SYMBOL vmlinux 0x861f80e5 audit_log +EXPORT_SYMBOL vmlinux 0x86278f6b pci_request_selected_regions_exclusive +EXPORT_SYMBOL vmlinux 0x865029ac __hw_addr_sync +EXPORT_SYMBOL vmlinux 0x86709da1 udp6_csum_init +EXPORT_SYMBOL vmlinux 0x868acba5 get_options +EXPORT_SYMBOL vmlinux 0x868c7530 d_walk +EXPORT_SYMBOL vmlinux 0x868eb5be scsi_eh_prep_cmnd +EXPORT_SYMBOL vmlinux 0x869ab819 dquot_alloc_inode +EXPORT_SYMBOL vmlinux 0x86a26b38 flow_hash_from_keys +EXPORT_SYMBOL vmlinux 0x86b6d2a6 lwtunnel_encap_add_ops +EXPORT_SYMBOL vmlinux 0x86c42490 blk_rq_map_sg +EXPORT_SYMBOL vmlinux 0x86cbc5a6 security_mmap_file +EXPORT_SYMBOL vmlinux 0x86fb9b05 bitmap_parse_user +EXPORT_SYMBOL vmlinux 0x870509d0 kernel_listen +EXPORT_SYMBOL vmlinux 0x871695c3 add_disk +EXPORT_SYMBOL vmlinux 0x871c0a7e fiemap_check_flags +EXPORT_SYMBOL vmlinux 0x872263ad unregister_sysctl_table +EXPORT_SYMBOL vmlinux 0x872f686d truncate_inode_pages_final +EXPORT_SYMBOL vmlinux 0x875a200e bdi_setup_and_register +EXPORT_SYMBOL vmlinux 0x87636dd9 tcw_set_tccb +EXPORT_SYMBOL vmlinux 0x8766fab1 pci_clear_mwi +EXPORT_SYMBOL vmlinux 0x87749168 scsi_get_host_dev +EXPORT_SYMBOL vmlinux 0x878ab3ce sysctl_tcp_adv_win_scale +EXPORT_SYMBOL vmlinux 0x878e80f9 __dev_kfree_skb_any +EXPORT_SYMBOL vmlinux 0x87a1ccaa ilookup5 +EXPORT_SYMBOL vmlinux 0x87c58a96 smp_call_function_many +EXPORT_SYMBOL vmlinux 0x87c89e10 __netdev_alloc_skb +EXPORT_SYMBOL vmlinux 0x87d27f7a simple_nosetlease +EXPORT_SYMBOL vmlinux 0x88146973 idr_destroy +EXPORT_SYMBOL vmlinux 0x882073ca freeze_super +EXPORT_SYMBOL vmlinux 0x8833bc7e __kfifo_dma_out_finish_r +EXPORT_SYMBOL vmlinux 0x88532606 block_write_begin +EXPORT_SYMBOL vmlinux 0x8874eb65 pci_find_parent_resource +EXPORT_SYMBOL vmlinux 0x887fa47e __getnstimeofday64 +EXPORT_SYMBOL vmlinux 0x8880f2fd param_get_string +EXPORT_SYMBOL vmlinux 0x888847b0 __tracepoint_kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0x88b36da2 wake_up_process +EXPORT_SYMBOL vmlinux 0x88be1b53 md_wakeup_thread +EXPORT_SYMBOL vmlinux 0x88cea752 node_states +EXPORT_SYMBOL vmlinux 0x88fc6022 lg_local_unlock +EXPORT_SYMBOL vmlinux 0x8914abe8 _raw_read_trylock_retry +EXPORT_SYMBOL vmlinux 0x891bef26 vm_stat +EXPORT_SYMBOL vmlinux 0x8928344b scsi_vpd_tpg_id +EXPORT_SYMBOL vmlinux 0x894f1e43 blk_run_queue +EXPORT_SYMBOL vmlinux 0x898ca707 lru_cache_add_file +EXPORT_SYMBOL vmlinux 0x89afe34e __kfifo_dma_in_prepare +EXPORT_SYMBOL vmlinux 0x89c4fc3c netif_receive_skb +EXPORT_SYMBOL vmlinux 0x89e2667c tcp_md5_do_add +EXPORT_SYMBOL vmlinux 0x89fcc950 __percpu_counter_sum +EXPORT_SYMBOL vmlinux 0x89ff68fa ida_pre_get +EXPORT_SYMBOL vmlinux 0x8a00dca6 console_start +EXPORT_SYMBOL vmlinux 0x8a052dda neigh_for_each +EXPORT_SYMBOL vmlinux 0x8a179f20 inet_release +EXPORT_SYMBOL vmlinux 0x8a188d60 filemap_write_and_wait +EXPORT_SYMBOL vmlinux 0x8a1ab4ee timeval_to_jiffies +EXPORT_SYMBOL vmlinux 0x8a501ccc iov_iter_init +EXPORT_SYMBOL vmlinux 0x8a51d565 quota_send_warning +EXPORT_SYMBOL vmlinux 0x8a5b1c10 dev_uc_sync_multiple +EXPORT_SYMBOL vmlinux 0x8a612802 udp_prot +EXPORT_SYMBOL vmlinux 0x8a7d1c31 high_memory +EXPORT_SYMBOL vmlinux 0x8a7ff169 netdev_change_features +EXPORT_SYMBOL vmlinux 0x8a976f93 flush_old_exec +EXPORT_SYMBOL vmlinux 0x8a99a016 mempool_free_slab +EXPORT_SYMBOL vmlinux 0x8a9d3d27 blk_start_queue +EXPORT_SYMBOL vmlinux 0x8ab0f942 jbd2_journal_force_commit +EXPORT_SYMBOL vmlinux 0x8ad29e1c import_iovec +EXPORT_SYMBOL vmlinux 0x8afaebe7 nla_put +EXPORT_SYMBOL vmlinux 0x8afb25a0 __cleancache_invalidate_page +EXPORT_SYMBOL vmlinux 0x8b35e873 sg_last +EXPORT_SYMBOL vmlinux 0x8b364dff param_get_charp +EXPORT_SYMBOL vmlinux 0x8b401b8e __blk_mq_end_request +EXPORT_SYMBOL vmlinux 0x8b43159b register_cpu_notifier +EXPORT_SYMBOL vmlinux 0x8b4fb7a3 sock_get_timestampns +EXPORT_SYMBOL vmlinux 0x8b537e2e skb_vlan_pop +EXPORT_SYMBOL vmlinux 0x8b559b3f blkdev_issue_zeroout +EXPORT_SYMBOL vmlinux 0x8b618d08 overflowuid +EXPORT_SYMBOL vmlinux 0x8b69e435 sock_edemux +EXPORT_SYMBOL vmlinux 0x8b7fe311 kmemdup +EXPORT_SYMBOL vmlinux 0x8b8059bd in_group_p +EXPORT_SYMBOL vmlinux 0x8b957622 add_virt_timer +EXPORT_SYMBOL vmlinux 0x8bae9d94 kernel_connect +EXPORT_SYMBOL vmlinux 0x8bc107a6 scsi_device_lookup_by_target +EXPORT_SYMBOL vmlinux 0x8bea1630 inet6_getname +EXPORT_SYMBOL vmlinux 0x8bf963c3 remap_vmalloc_range_partial +EXPORT_SYMBOL vmlinux 0x8c22cc09 generic_shutdown_super +EXPORT_SYMBOL vmlinux 0x8c3eb2f9 netdev_bonding_info_change +EXPORT_SYMBOL vmlinux 0x8c53e3b7 blk_init_allocated_queue +EXPORT_SYMBOL vmlinux 0x8c637d43 irq_cpu_rmap_add +EXPORT_SYMBOL vmlinux 0x8c849039 sk_send_sigurg +EXPORT_SYMBOL vmlinux 0x8ce1e61f d_invalidate +EXPORT_SYMBOL vmlinux 0x8ce28fdd __pagevec_lru_add +EXPORT_SYMBOL vmlinux 0x8ceb24de ipv6_dev_get_saddr +EXPORT_SYMBOL vmlinux 0x8d2fc572 debug_register +EXPORT_SYMBOL vmlinux 0x8d4285ce __inet_hash +EXPORT_SYMBOL vmlinux 0x8d551bef sysctl_tcp_rmem +EXPORT_SYMBOL vmlinux 0x8d55bb8a qid_eq +EXPORT_SYMBOL vmlinux 0x8d66b500 alloc_etherdev_mqs +EXPORT_SYMBOL vmlinux 0x8d6c0495 inet_stream_connect +EXPORT_SYMBOL vmlinux 0x8d73278e hex_asc_upper +EXPORT_SYMBOL vmlinux 0x8d8070ea ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0x8d933a0f simple_empty +EXPORT_SYMBOL vmlinux 0x8d99b1a6 crc32_le_shift +EXPORT_SYMBOL vmlinux 0x8da5d629 pagevec_lookup_tag +EXPORT_SYMBOL vmlinux 0x8da827e6 inet_del_protocol +EXPORT_SYMBOL vmlinux 0x8daaafaf generic_file_llseek_size +EXPORT_SYMBOL vmlinux 0x8dd02b6a lwtunnel_input +EXPORT_SYMBOL vmlinux 0x8dd69c5c __percpu_counter_init +EXPORT_SYMBOL vmlinux 0x8de16e6c vlan_dev_real_dev +EXPORT_SYMBOL vmlinux 0x8df81827 udp_add_offload +EXPORT_SYMBOL vmlinux 0x8e484376 __scsi_iterate_devices +EXPORT_SYMBOL vmlinux 0x8e5dc469 debug_dflt_header_fn +EXPORT_SYMBOL vmlinux 0x8e5e25ae unmap_mapping_range +EXPORT_SYMBOL vmlinux 0x8e6ecc36 blk_end_request +EXPORT_SYMBOL vmlinux 0x8e74e192 blk_limits_io_opt +EXPORT_SYMBOL vmlinux 0x8e865a4f config_group_init +EXPORT_SYMBOL vmlinux 0x8e879bb7 __vmalloc +EXPORT_SYMBOL vmlinux 0x8e9b1f12 setattr_copy +EXPORT_SYMBOL vmlinux 0x8eb13cce tty_port_open +EXPORT_SYMBOL vmlinux 0x8ec3787f kthread_bind +EXPORT_SYMBOL vmlinux 0x8ed952c5 pci_request_selected_regions +EXPORT_SYMBOL vmlinux 0x8efd1e35 dq_data_lock +EXPORT_SYMBOL vmlinux 0x8f1a57d9 copy_page_from_iter +EXPORT_SYMBOL vmlinux 0x8f3019cc blk_integrity_merge_bio +EXPORT_SYMBOL vmlinux 0x8f5ee604 seq_printf +EXPORT_SYMBOL vmlinux 0x8f636d23 kstrtol_from_user +EXPORT_SYMBOL vmlinux 0x8f6a16ce get_gendisk +EXPORT_SYMBOL vmlinux 0x8f7034ed iucv_bus +EXPORT_SYMBOL vmlinux 0x8fad86c7 vfs_rename +EXPORT_SYMBOL vmlinux 0x8fd98906 skb_clone +EXPORT_SYMBOL vmlinux 0x8fe7f0e6 xfrm_lookup +EXPORT_SYMBOL vmlinux 0x8ff1c3aa blk_init_queue_node +EXPORT_SYMBOL vmlinux 0x9007cdd7 follow_down +EXPORT_SYMBOL vmlinux 0x90088916 init_special_inode +EXPORT_SYMBOL vmlinux 0x901c0606 key_revoke +EXPORT_SYMBOL vmlinux 0x901c448c vm_mmap +EXPORT_SYMBOL vmlinux 0x902750fb simple_pin_fs +EXPORT_SYMBOL vmlinux 0x90420f1c sock_queue_err_skb +EXPORT_SYMBOL vmlinux 0x9051a576 skb_clone_sk +EXPORT_SYMBOL vmlinux 0x905ac6e0 compat_ip_setsockopt +EXPORT_SYMBOL vmlinux 0x905c64f3 security_inode_permission +EXPORT_SYMBOL vmlinux 0x9067503e capable_wrt_inode_uidgid +EXPORT_SYMBOL vmlinux 0x906ea8cd generic_writepages +EXPORT_SYMBOL vmlinux 0x90b3cc7d kmem_cache_size +EXPORT_SYMBOL vmlinux 0x90b8a31f set_wb_congested +EXPORT_SYMBOL vmlinux 0x9116b417 save_fpu_regs +EXPORT_SYMBOL vmlinux 0x911fc79c elv_rb_latter_request +EXPORT_SYMBOL vmlinux 0x91463b1d kstrtos16 +EXPORT_SYMBOL vmlinux 0x9157d586 dev_printk +EXPORT_SYMBOL vmlinux 0x91669aec mod_zone_page_state +EXPORT_SYMBOL vmlinux 0x91710d8c __cleancache_get_page +EXPORT_SYMBOL vmlinux 0x91715312 sprintf +EXPORT_SYMBOL vmlinux 0x9190f530 kernel_sock_shutdown +EXPORT_SYMBOL vmlinux 0x91975f37 elv_rq_merge_ok +EXPORT_SYMBOL vmlinux 0x91a5457a skb_checksum +EXPORT_SYMBOL vmlinux 0x91b06469 sync_blockdev +EXPORT_SYMBOL vmlinux 0x91f0060f dev_mc_unsync +EXPORT_SYMBOL vmlinux 0x91f7a7f2 __get_hash_from_flowi4 +EXPORT_SYMBOL vmlinux 0x920ae989 gnet_stats_start_copy +EXPORT_SYMBOL vmlinux 0x92133e36 sock_sendmsg +EXPORT_SYMBOL vmlinux 0x92392cd9 iov_shorten +EXPORT_SYMBOL vmlinux 0x92408018 pci_alloc_dev +EXPORT_SYMBOL vmlinux 0x92434b2c iov_iter_single_seg_count +EXPORT_SYMBOL vmlinux 0x925a5951 km_is_alive +EXPORT_SYMBOL vmlinux 0x92632a53 kiocb_set_cancel_fn +EXPORT_SYMBOL vmlinux 0x92988a90 tcf_unregister_action +EXPORT_SYMBOL vmlinux 0x92a9c60c time_to_tm +EXPORT_SYMBOL vmlinux 0x92fe371b devm_request_resource +EXPORT_SYMBOL vmlinux 0x92fe6ff2 lg_global_lock +EXPORT_SYMBOL vmlinux 0x93001029 mem_cgroup_from_task +EXPORT_SYMBOL vmlinux 0x9301de1b xfrm4_protocol_register +EXPORT_SYMBOL vmlinux 0x930b71fc tcp_sync_mss +EXPORT_SYMBOL vmlinux 0x936a40e9 get_unmapped_area +EXPORT_SYMBOL vmlinux 0x937733e3 qid_valid +EXPORT_SYMBOL vmlinux 0x9380470a gnet_stats_copy_rate_est +EXPORT_SYMBOL vmlinux 0x938472c8 xfrm_policy_insert +EXPORT_SYMBOL vmlinux 0x93a99082 account_page_redirty +EXPORT_SYMBOL vmlinux 0x93a9e4f1 cdrom_number_of_slots +EXPORT_SYMBOL vmlinux 0x93b3fc74 register_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x93c2e06c tty_register_device +EXPORT_SYMBOL vmlinux 0x93d4ce44 dm_kobject_release +EXPORT_SYMBOL vmlinux 0x93e9d3b4 iommu_tbl_pool_init +EXPORT_SYMBOL vmlinux 0x93f3eddf inet_frags_exit_net +EXPORT_SYMBOL vmlinux 0x93fca811 __get_free_pages +EXPORT_SYMBOL vmlinux 0x9402a6a5 scsilun_to_int +EXPORT_SYMBOL vmlinux 0x94412aa5 blk_queue_stack_limits +EXPORT_SYMBOL vmlinux 0x944a20ae mb_cache_entry_alloc +EXPORT_SYMBOL vmlinux 0x945775a5 segment_save +EXPORT_SYMBOL vmlinux 0x945c48c0 register_quota_format +EXPORT_SYMBOL vmlinux 0x9465d661 jbd2_journal_start_reserved +EXPORT_SYMBOL vmlinux 0x947ffe44 sock_recvmsg +EXPORT_SYMBOL vmlinux 0x94961283 vunmap +EXPORT_SYMBOL vmlinux 0x949a2c3a d_obtain_root +EXPORT_SYMBOL vmlinux 0x94a2e254 debug_sprintf_view +EXPORT_SYMBOL vmlinux 0x94aca676 tcf_hash_create +EXPORT_SYMBOL vmlinux 0x94e1c60f __dev_set_mtu +EXPORT_SYMBOL vmlinux 0x94e527ac ccw_device_is_multipath +EXPORT_SYMBOL vmlinux 0x94e6df12 nobh_truncate_page +EXPORT_SYMBOL vmlinux 0x950cf00b address_space_init_once +EXPORT_SYMBOL vmlinux 0x950e56ce blk_set_stacking_limits +EXPORT_SYMBOL vmlinux 0x9514151a _mcount +EXPORT_SYMBOL vmlinux 0x951c0b57 pci_scan_bridge +EXPORT_SYMBOL vmlinux 0x951fdbe8 unlock_new_inode +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 0x95478f16 file_open_root +EXPORT_SYMBOL vmlinux 0x9573984f devm_release_resource +EXPORT_SYMBOL vmlinux 0x9581ea62 kstrtouint_from_user +EXPORT_SYMBOL vmlinux 0x95a89dd9 sk_alloc +EXPORT_SYMBOL vmlinux 0x95b6820a blk_pre_runtime_suspend +EXPORT_SYMBOL vmlinux 0x95ceb864 key_update +EXPORT_SYMBOL vmlinux 0x95eb99c5 scsi_add_device +EXPORT_SYMBOL vmlinux 0x95fed488 __dev_kfree_skb_irq +EXPORT_SYMBOL vmlinux 0x9601a724 __xfrm_state_delete +EXPORT_SYMBOL vmlinux 0x96158026 __secpath_destroy +EXPORT_SYMBOL vmlinux 0x96200848 __scsi_add_device +EXPORT_SYMBOL vmlinux 0x96286224 d_prune_aliases +EXPORT_SYMBOL vmlinux 0x96399e5e ndisc_mc_map +EXPORT_SYMBOL vmlinux 0x96404e39 itcw_set_data +EXPORT_SYMBOL vmlinux 0x9641bdc7 skb_copy_and_csum_bits +EXPORT_SYMBOL vmlinux 0x964e208b md_set_array_sectors +EXPORT_SYMBOL vmlinux 0x9663fe20 remap_pfn_range +EXPORT_SYMBOL vmlinux 0x9669ecc8 monotonic_clock +EXPORT_SYMBOL vmlinux 0x968a32e8 inet_frag_find +EXPORT_SYMBOL vmlinux 0x96aac357 inet_twsk_deschedule_put +EXPORT_SYMBOL vmlinux 0x96be8f9f pcie_capability_clear_and_set_word +EXPORT_SYMBOL vmlinux 0x96cd2b04 scsi_sense_key_string +EXPORT_SYMBOL vmlinux 0x96d32d9e pci_wake_from_d3 +EXPORT_SYMBOL vmlinux 0x970a996d blk_queue_find_tag +EXPORT_SYMBOL vmlinux 0x9739200f compat_mc_getsockopt +EXPORT_SYMBOL vmlinux 0x9754ec10 radix_tree_preload +EXPORT_SYMBOL vmlinux 0x97594c81 crypto_sha512_finup +EXPORT_SYMBOL vmlinux 0x9761d77e inode_permission +EXPORT_SYMBOL vmlinux 0x977a194d __tracepoint_kmem_cache_free +EXPORT_SYMBOL vmlinux 0x977b3c6b compat_ip_getsockopt +EXPORT_SYMBOL vmlinux 0x97a72125 scsi_dma_unmap +EXPORT_SYMBOL vmlinux 0x97bc75dd pci_pme_active +EXPORT_SYMBOL vmlinux 0x97f2bd00 jbd2_journal_begin_ordered_truncate +EXPORT_SYMBOL vmlinux 0x98043fa0 path_is_under +EXPORT_SYMBOL vmlinux 0x9804572e scsi_host_put +EXPORT_SYMBOL vmlinux 0x98082893 __copy_to_user +EXPORT_SYMBOL vmlinux 0x982e76bc vfs_unlink +EXPORT_SYMBOL vmlinux 0x9831e9e4 __kfifo_alloc +EXPORT_SYMBOL vmlinux 0x98536c87 wait_for_completion_io_timeout +EXPORT_SYMBOL vmlinux 0x986c85d0 xfrm6_input_addr +EXPORT_SYMBOL vmlinux 0x98799f64 xfrm_policy_walk +EXPORT_SYMBOL vmlinux 0x9880eebe register_md_cluster_operations +EXPORT_SYMBOL vmlinux 0x98844002 dump_page +EXPORT_SYMBOL vmlinux 0x98b1a579 dev_get_by_name_rcu +EXPORT_SYMBOL vmlinux 0x98b5940d bio_unmap_user +EXPORT_SYMBOL vmlinux 0x98c68c41 __gnet_stats_copy_basic +EXPORT_SYMBOL vmlinux 0x990148ba blk_start_queue_async +EXPORT_SYMBOL vmlinux 0x990c34dd _raw_write_lock_wait +EXPORT_SYMBOL vmlinux 0x9929a10d __pskb_pull_tail +EXPORT_SYMBOL vmlinux 0x993464c0 get_io_context +EXPORT_SYMBOL vmlinux 0x9942ec77 itcw_finalize +EXPORT_SYMBOL vmlinux 0x994b7b19 cdev_init +EXPORT_SYMBOL vmlinux 0x994d9681 nvm_addr_to_generic_mode +EXPORT_SYMBOL vmlinux 0x99517682 udp_encap_enable +EXPORT_SYMBOL vmlinux 0x99591a7a ipv6_ext_hdr +EXPORT_SYMBOL vmlinux 0x995a0a4b netdev_update_features +EXPORT_SYMBOL vmlinux 0x997823ae register_sysctl_paths +EXPORT_SYMBOL vmlinux 0x999e8297 vfree +EXPORT_SYMBOL vmlinux 0x99cdc86b sysctl_tcp_reordering +EXPORT_SYMBOL vmlinux 0x99d3a43c dm_table_get_size +EXPORT_SYMBOL vmlinux 0x99d4c033 dcb_ieee_getapp_mask +EXPORT_SYMBOL vmlinux 0x99daa9bf try_offline_node +EXPORT_SYMBOL vmlinux 0x99e7e7dc netpoll_print_options +EXPORT_SYMBOL vmlinux 0x99f80e52 scsi_is_host_device +EXPORT_SYMBOL vmlinux 0x9a018964 __ip_dev_find +EXPORT_SYMBOL vmlinux 0x9a10fa16 xfrm_dst_ifdown +EXPORT_SYMBOL vmlinux 0x9a1d92ff devm_memunmap +EXPORT_SYMBOL vmlinux 0x9a1dfd65 strpbrk +EXPORT_SYMBOL vmlinux 0x9a1f10c1 free_user_ns +EXPORT_SYMBOL vmlinux 0x9a1fc4b4 jiffies_to_timeval +EXPORT_SYMBOL vmlinux 0x9a201134 xfrm_find_acq_byseq +EXPORT_SYMBOL vmlinux 0x9a28c2f9 mnt_set_expiry +EXPORT_SYMBOL vmlinux 0x9a2c9306 vfs_create +EXPORT_SYMBOL vmlinux 0x9a4a8f1b param_get_int +EXPORT_SYMBOL vmlinux 0x9a51e9ce seq_hex_dump +EXPORT_SYMBOL vmlinux 0x9a559173 jbd2_journal_unlock_updates +EXPORT_SYMBOL vmlinux 0x9a906daf memscan +EXPORT_SYMBOL vmlinux 0x9a907963 nonseekable_open +EXPORT_SYMBOL vmlinux 0x9aabc564 crc16 +EXPORT_SYMBOL vmlinux 0x9aca8909 default_file_splice_read +EXPORT_SYMBOL vmlinux 0x9acbd258 rtnetlink_put_metrics +EXPORT_SYMBOL vmlinux 0x9ad55c4c free_inode_nonrcu +EXPORT_SYMBOL vmlinux 0x9ad72bf4 may_umount +EXPORT_SYMBOL vmlinux 0x9b08d0fe ccw_device_set_online +EXPORT_SYMBOL vmlinux 0x9b0e74a5 d_move +EXPORT_SYMBOL vmlinux 0x9b33e0d7 unregister_dcbevent_notifier +EXPORT_SYMBOL vmlinux 0x9b388444 get_zeroed_page +EXPORT_SYMBOL vmlinux 0x9b5663f8 balance_dirty_pages_ratelimited +EXPORT_SYMBOL vmlinux 0x9b7074a6 tcp_ioctl +EXPORT_SYMBOL vmlinux 0x9b78d82f inet_csk_init_xmit_timers +EXPORT_SYMBOL vmlinux 0x9b81258f pfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0x9b8d07aa strnlen +EXPORT_SYMBOL vmlinux 0x9b9dcc9f key_payload_reserve +EXPORT_SYMBOL vmlinux 0x9b9e05f9 alloc_cpu_rmap +EXPORT_SYMBOL vmlinux 0x9ba7089d argv_split +EXPORT_SYMBOL vmlinux 0x9bbe88b3 flex_array_put +EXPORT_SYMBOL vmlinux 0x9bd12040 tcf_em_tree_validate +EXPORT_SYMBOL vmlinux 0x9bdcfd33 dput +EXPORT_SYMBOL vmlinux 0x9be72fae nf_log_unset +EXPORT_SYMBOL vmlinux 0x9be7bde4 security_tun_dev_attach +EXPORT_SYMBOL vmlinux 0x9be961e8 kernel_getpeername +EXPORT_SYMBOL vmlinux 0x9beb07b4 sock_no_mmap +EXPORT_SYMBOL vmlinux 0x9bf679dc page_follow_link_light +EXPORT_SYMBOL vmlinux 0x9c1b9f3d __tty_alloc_driver +EXPORT_SYMBOL vmlinux 0x9c1d42d0 mark_buffer_dirty_inode +EXPORT_SYMBOL vmlinux 0x9c32bec9 iucv_unregister +EXPORT_SYMBOL vmlinux 0x9c491f60 sg_alloc_table +EXPORT_SYMBOL vmlinux 0x9c64f0f2 jbd2_journal_free_reserved +EXPORT_SYMBOL vmlinux 0x9c675b3e posix_unblock_lock +EXPORT_SYMBOL vmlinux 0x9c7ea758 dql_init +EXPORT_SYMBOL vmlinux 0x9ca95a0e sort +EXPORT_SYMBOL vmlinux 0x9cb05424 dev_get_phys_port_id +EXPORT_SYMBOL vmlinux 0x9cc268d4 raw3270_wait_queue +EXPORT_SYMBOL vmlinux 0x9cca7bd3 __getblk_gfp +EXPORT_SYMBOL vmlinux 0x9cd43514 netdev_upper_dev_unlink +EXPORT_SYMBOL vmlinux 0x9d095e3c sk_prot_clear_portaddr_nulls +EXPORT_SYMBOL vmlinux 0x9d09b862 kernel_recvmsg +EXPORT_SYMBOL vmlinux 0x9d0d6206 unregister_netdevice_notifier +EXPORT_SYMBOL vmlinux 0x9d2107fd scsi_unregister +EXPORT_SYMBOL vmlinux 0x9d245ab5 blk_queue_make_request +EXPORT_SYMBOL vmlinux 0x9d264784 md_write_end +EXPORT_SYMBOL vmlinux 0x9d3aa376 blk_iopoll_init +EXPORT_SYMBOL vmlinux 0x9d6770f0 component_match_add +EXPORT_SYMBOL vmlinux 0x9d8d4b77 pcie_port_service_register +EXPORT_SYMBOL vmlinux 0x9d9f5a1b scsi_block_requests +EXPORT_SYMBOL vmlinux 0x9dd2e447 simple_dentry_operations +EXPORT_SYMBOL vmlinux 0x9dec3507 bitmap_cond_end_sync +EXPORT_SYMBOL vmlinux 0x9dfadf8f blk_queue_bounce_limit +EXPORT_SYMBOL vmlinux 0x9e0068ab s390_epoch_delta_notifier +EXPORT_SYMBOL vmlinux 0x9e0c711d vzalloc_node +EXPORT_SYMBOL vmlinux 0x9e0c8ef3 pci_find_bus +EXPORT_SYMBOL vmlinux 0x9e0d7f86 bio_init +EXPORT_SYMBOL vmlinux 0x9e0dfc61 kbd_keycode +EXPORT_SYMBOL vmlinux 0x9e2939c6 skb_copy_and_csum_dev +EXPORT_SYMBOL vmlinux 0x9e2cedc6 ip_route_input_noref +EXPORT_SYMBOL vmlinux 0x9e2e3734 sock_no_socketpair +EXPORT_SYMBOL vmlinux 0x9e4faeef dm_io_client_destroy +EXPORT_SYMBOL vmlinux 0x9e61bb05 set_freezable +EXPORT_SYMBOL vmlinux 0x9e759512 parent_mem_cgroup +EXPORT_SYMBOL vmlinux 0x9e763530 reciprocal_value +EXPORT_SYMBOL vmlinux 0x9e9407e1 pci_get_class +EXPORT_SYMBOL vmlinux 0x9e9fdd9d memunmap +EXPORT_SYMBOL vmlinux 0x9eb7d7b6 jbd2_journal_force_commit_nested +EXPORT_SYMBOL vmlinux 0x9eb8afe1 pci_bus_type +EXPORT_SYMBOL vmlinux 0x9ebd4c04 adjust_resource +EXPORT_SYMBOL vmlinux 0x9f136971 inode_init_owner +EXPORT_SYMBOL vmlinux 0x9f138079 vfs_fsync +EXPORT_SYMBOL vmlinux 0x9f38d8f1 dcb_setapp +EXPORT_SYMBOL vmlinux 0x9f3acff4 __lock_page +EXPORT_SYMBOL vmlinux 0x9f46ced8 __sw_hweight64 +EXPORT_SYMBOL vmlinux 0x9f558f75 unregister_shrinker +EXPORT_SYMBOL vmlinux 0x9f772478 generic_pipe_buf_confirm +EXPORT_SYMBOL vmlinux 0x9f984513 strrchr +EXPORT_SYMBOL vmlinux 0x9f9c7ead inet_csk_reqsk_queue_drop_and_put +EXPORT_SYMBOL vmlinux 0x9f9dcfde put_filp +EXPORT_SYMBOL vmlinux 0x9f9f192f mem_cgroup_begin_page_stat +EXPORT_SYMBOL vmlinux 0x9fd7cda1 flex_array_prealloc +EXPORT_SYMBOL vmlinux 0x9fdecc31 unregister_netdevice_many +EXPORT_SYMBOL vmlinux 0x9fe5fab8 cdrom_get_last_written +EXPORT_SYMBOL vmlinux 0x9feee306 dev_disable_lro +EXPORT_SYMBOL vmlinux 0x9ffa3a75 netdev_max_backlog +EXPORT_SYMBOL vmlinux 0xa003f0c9 account_page_dirtied +EXPORT_SYMBOL vmlinux 0xa0436e98 in6addr_linklocal_allnodes +EXPORT_SYMBOL vmlinux 0xa04a01bd qdisc_class_hash_insert +EXPORT_SYMBOL vmlinux 0xa052a3fb nf_setsockopt +EXPORT_SYMBOL vmlinux 0xa05c03df mempool_kmalloc +EXPORT_SYMBOL vmlinux 0xa05dc7be __blk_end_request_all +EXPORT_SYMBOL vmlinux 0xa05eb875 sclp +EXPORT_SYMBOL vmlinux 0xa0621d3d skb_unlink +EXPORT_SYMBOL vmlinux 0xa07ed110 xz_dec_init +EXPORT_SYMBOL vmlinux 0xa084749a __bitmap_or +EXPORT_SYMBOL vmlinux 0xa08b72be dev_deactivate +EXPORT_SYMBOL vmlinux 0xa098dcc2 dquot_destroy +EXPORT_SYMBOL vmlinux 0xa0b04675 vmalloc_32 +EXPORT_SYMBOL vmlinux 0xa0d3d560 ksize +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 0xa100bdf7 mempool_alloc +EXPORT_SYMBOL vmlinux 0xa108eb4d sysctl_optmem_max +EXPORT_SYMBOL vmlinux 0xa120d33c tty_unregister_ldisc +EXPORT_SYMBOL vmlinux 0xa1322597 xfrm_state_lookup_byaddr +EXPORT_SYMBOL vmlinux 0xa13fd3bc blk_requeue_request +EXPORT_SYMBOL vmlinux 0xa14b3f5d flex_array_free_parts +EXPORT_SYMBOL vmlinux 0xa14bceb0 __tracepoint_s390_diagnose +EXPORT_SYMBOL vmlinux 0xa161b099 pci_set_dma_seg_boundary +EXPORT_SYMBOL vmlinux 0xa1828bc5 __cleancache_init_fs +EXPORT_SYMBOL vmlinux 0xa19065ea down_timeout +EXPORT_SYMBOL vmlinux 0xa19d4c6d configfs_register_subsystem +EXPORT_SYMBOL vmlinux 0xa1a135b6 pci_request_regions_exclusive +EXPORT_SYMBOL vmlinux 0xa1ad475a inode_reclaim_rsv_space +EXPORT_SYMBOL vmlinux 0xa1b3ded5 param_ops_charp +EXPORT_SYMBOL vmlinux 0xa1bb0221 prepare_creds +EXPORT_SYMBOL vmlinux 0xa1c76e0a _cond_resched +EXPORT_SYMBOL vmlinux 0xa1c9e3ea vfs_mknod +EXPORT_SYMBOL vmlinux 0xa1cd2a41 blk_rq_map_kern +EXPORT_SYMBOL vmlinux 0xa1cd58f2 __mod_zone_page_state +EXPORT_SYMBOL vmlinux 0xa1d5979b find_first_bit_inv +EXPORT_SYMBOL vmlinux 0xa1ec8f1c __kfifo_to_user_r +EXPORT_SYMBOL vmlinux 0xa1fbf507 d_alloc +EXPORT_SYMBOL vmlinux 0xa1fc83e0 bd_set_size +EXPORT_SYMBOL vmlinux 0xa209451c bitmap_fold +EXPORT_SYMBOL vmlinux 0xa236e6fe inode_needs_sync +EXPORT_SYMBOL vmlinux 0xa2643df8 scsi_print_command +EXPORT_SYMBOL vmlinux 0xa2701d58 bdi_register_dev +EXPORT_SYMBOL vmlinux 0xa2787b53 udp_sendmsg +EXPORT_SYMBOL vmlinux 0xa27bb624 __napi_schedule +EXPORT_SYMBOL vmlinux 0xa27f5f1b __ethtool_get_settings +EXPORT_SYMBOL vmlinux 0xa2848c50 ecryptfs_get_auth_tok_key +EXPORT_SYMBOL vmlinux 0xa28f0c29 block_truncate_page +EXPORT_SYMBOL vmlinux 0xa2c7f90b loop_register_transfer +EXPORT_SYMBOL vmlinux 0xa2cf78fa call_netdevice_notifiers +EXPORT_SYMBOL vmlinux 0xa2d199a2 splice_direct_to_actor +EXPORT_SYMBOL vmlinux 0xa2d9864a xfrm_find_acq +EXPORT_SYMBOL vmlinux 0xa2fdc561 inet_put_port +EXPORT_SYMBOL vmlinux 0xa310a706 __iucv_message_receive +EXPORT_SYMBOL vmlinux 0xa33f7c7c nla_strlcpy +EXPORT_SYMBOL vmlinux 0xa35d154b skb_abort_seq_read +EXPORT_SYMBOL vmlinux 0xa37e78b6 flex_array_get +EXPORT_SYMBOL vmlinux 0xa37fa09f elv_unregister_queue +EXPORT_SYMBOL vmlinux 0xa38257da xfrm_state_walk +EXPORT_SYMBOL vmlinux 0xa385faee mpage_readpage +EXPORT_SYMBOL vmlinux 0xa3f59165 __tcf_hash_release +EXPORT_SYMBOL vmlinux 0xa3f8f281 proc_create_mount_point +EXPORT_SYMBOL vmlinux 0xa40c655a bioset_integrity_free +EXPORT_SYMBOL vmlinux 0xa41949cd sock_update_memcg +EXPORT_SYMBOL vmlinux 0xa44626a6 tcp_md5_hash_key +EXPORT_SYMBOL vmlinux 0xa44b520a __scsi_format_command +EXPORT_SYMBOL vmlinux 0xa44cebae tcp_hashinfo +EXPORT_SYMBOL vmlinux 0xa4520d69 call_usermodehelper_setup +EXPORT_SYMBOL vmlinux 0xa457d017 __register_nls +EXPORT_SYMBOL vmlinux 0xa464fab8 sock_create_lite +EXPORT_SYMBOL vmlinux 0xa4684598 pcim_iomap_table +EXPORT_SYMBOL vmlinux 0xa4701e9e timekeeping_inject_offset +EXPORT_SYMBOL vmlinux 0xa470f796 iucv_if +EXPORT_SYMBOL vmlinux 0xa496f586 __dst_free +EXPORT_SYMBOL vmlinux 0xa4a94d26 find_next_bit_le +EXPORT_SYMBOL vmlinux 0xa4b75647 scsi_report_bus_reset +EXPORT_SYMBOL vmlinux 0xa4bce7de km_state_expired +EXPORT_SYMBOL vmlinux 0xa4c41694 kstrtos16_from_user +EXPORT_SYMBOL vmlinux 0xa4e188e7 strscpy +EXPORT_SYMBOL vmlinux 0xa4ed6653 do_splice_direct +EXPORT_SYMBOL vmlinux 0xa4f55075 iucv_message_send +EXPORT_SYMBOL vmlinux 0xa4f8b6c9 dev_addr_flush +EXPORT_SYMBOL vmlinux 0xa5157d92 __blk_end_request_cur +EXPORT_SYMBOL vmlinux 0xa516e3bf dump_align +EXPORT_SYMBOL vmlinux 0xa52fbf21 security_path_chown +EXPORT_SYMBOL vmlinux 0xa540ae03 iterate_mounts +EXPORT_SYMBOL vmlinux 0xa5526619 rb_insert_color +EXPORT_SYMBOL vmlinux 0xa55f154b __percpu_counter_add +EXPORT_SYMBOL vmlinux 0xa573d71a filp_open +EXPORT_SYMBOL vmlinux 0xa59cb687 iucv_path_quiesce +EXPORT_SYMBOL vmlinux 0xa5bc4193 netpoll_poll_enable +EXPORT_SYMBOL vmlinux 0xa5bd881e param_set_int +EXPORT_SYMBOL vmlinux 0xa5c8a2a3 compat_mc_setsockopt +EXPORT_SYMBOL vmlinux 0xa5d4f9f9 pci_dev_put +EXPORT_SYMBOL vmlinux 0xa5d578ae sock_setsockopt +EXPORT_SYMBOL vmlinux 0xa5f6d2df from_kprojid_munged +EXPORT_SYMBOL vmlinux 0xa5f90749 sb_set_blocksize +EXPORT_SYMBOL vmlinux 0xa61eaaa2 inet_bind +EXPORT_SYMBOL vmlinux 0xa6357b85 pci_find_pcie_root_port +EXPORT_SYMBOL vmlinux 0xa639b4b8 seq_escape +EXPORT_SYMBOL vmlinux 0xa65160c4 blkdev_issue_discard +EXPORT_SYMBOL vmlinux 0xa65d69d4 xfrm_register_mode +EXPORT_SYMBOL vmlinux 0xa6657010 ccw_device_get_id +EXPORT_SYMBOL vmlinux 0xa668cd82 alloc_buffer_head +EXPORT_SYMBOL vmlinux 0xa6694bb3 skb_prepare_seq_read +EXPORT_SYMBOL vmlinux 0xa675804c utf8s_to_utf16s +EXPORT_SYMBOL vmlinux 0xa681fe88 generate_random_uuid +EXPORT_SYMBOL vmlinux 0xa6a0753b dev_queue_xmit +EXPORT_SYMBOL vmlinux 0xa6ca4419 inet_reqsk_alloc +EXPORT_SYMBOL vmlinux 0xa6f28430 locks_lock_inode_wait +EXPORT_SYMBOL vmlinux 0xa6f4b151 dmam_alloc_coherent +EXPORT_SYMBOL vmlinux 0xa6ffec60 woken_wake_function +EXPORT_SYMBOL vmlinux 0xa718e6bc copy_strings_kernel +EXPORT_SYMBOL vmlinux 0xa71f3b7a xfrm4_rcv_encap +EXPORT_SYMBOL vmlinux 0xa72523fd iov_iter_fault_in_readable +EXPORT_SYMBOL vmlinux 0xa72a0f5b nr_online_nodes +EXPORT_SYMBOL vmlinux 0xa72ec712 mpage_writepages +EXPORT_SYMBOL vmlinux 0xa72ed1de mntput +EXPORT_SYMBOL vmlinux 0xa731aa24 tcp_get_cookie_sock +EXPORT_SYMBOL vmlinux 0xa735db59 prandom_u32 +EXPORT_SYMBOL vmlinux 0xa738784e configfs_undepend_item +EXPORT_SYMBOL vmlinux 0xa75d7639 debug_exception_common +EXPORT_SYMBOL vmlinux 0xa767869c single_open_size +EXPORT_SYMBOL vmlinux 0xa77fd5c6 __xfrm_init_state +EXPORT_SYMBOL vmlinux 0xa788ac03 __skb_warn_lro_forwarding +EXPORT_SYMBOL vmlinux 0xa78e17c8 scsi_print_sense_hdr +EXPORT_SYMBOL vmlinux 0xa7951c5e seq_release +EXPORT_SYMBOL vmlinux 0xa7c0d8cf poll_freewait +EXPORT_SYMBOL vmlinux 0xa7c4ea61 blk_mq_tag_to_rq +EXPORT_SYMBOL vmlinux 0xa7c81d4c qdisc_create_dflt +EXPORT_SYMBOL vmlinux 0xa7c8dc41 nlmsg_notify +EXPORT_SYMBOL vmlinux 0xa7d287ab blk_rq_map_user_iov +EXPORT_SYMBOL vmlinux 0xa7d3a220 pci_release_region +EXPORT_SYMBOL vmlinux 0xa7d63ce2 perf_reserve_sampling +EXPORT_SYMBOL vmlinux 0xa7d8adc3 __inet6_lookup_established +EXPORT_SYMBOL vmlinux 0xa7da2986 bdev_read_only +EXPORT_SYMBOL vmlinux 0xa7f111aa scsi_get_device_flags_keyed +EXPORT_SYMBOL vmlinux 0xa7fb0d63 nvm_submit_ppa +EXPORT_SYMBOL vmlinux 0xa832f4c0 tcp_sendpage +EXPORT_SYMBOL vmlinux 0xa843805a get_unused_fd_flags +EXPORT_SYMBOL vmlinux 0xa8488a8a mark_info_dirty +EXPORT_SYMBOL vmlinux 0xa85295ee jbd2_log_start_commit +EXPORT_SYMBOL vmlinux 0xa85ad7af dev_uc_add_excl +EXPORT_SYMBOL vmlinux 0xa8721b97 system_state +EXPORT_SYMBOL vmlinux 0xa87a7fa4 ethtool_op_get_link +EXPORT_SYMBOL vmlinux 0xa886a958 krealloc +EXPORT_SYMBOL vmlinux 0xa8982521 dst_destroy +EXPORT_SYMBOL vmlinux 0xa8a33a65 page_cache_next_hole +EXPORT_SYMBOL vmlinux 0xa8be8441 skb_dequeue_tail +EXPORT_SYMBOL vmlinux 0xa8e20a33 sk_stream_wait_connect +EXPORT_SYMBOL vmlinux 0xa8fef7bb security_unix_may_send +EXPORT_SYMBOL vmlinux 0xa9028321 lwtunnel_cmp_encap +EXPORT_SYMBOL vmlinux 0xa9168676 xmit_recursion +EXPORT_SYMBOL vmlinux 0xa9188b59 compat_ipv6_setsockopt +EXPORT_SYMBOL vmlinux 0xa9220a25 t10_pi_type3_crc +EXPORT_SYMBOL vmlinux 0xa932f0f8 dcbnl_ieee_notify +EXPORT_SYMBOL vmlinux 0xa93e068e jbd2_journal_extend +EXPORT_SYMBOL vmlinux 0xa93f5d17 ida_remove +EXPORT_SYMBOL vmlinux 0xa976957d bitmap_remap +EXPORT_SYMBOL vmlinux 0xa9ae5da2 udp_push_pending_frames +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 0xaa04cea2 __splice_from_pipe +EXPORT_SYMBOL vmlinux 0xaa496aaa inet6_release +EXPORT_SYMBOL vmlinux 0xaa6294e9 vfs_llseek +EXPORT_SYMBOL vmlinux 0xaa6514d4 tty_port_init +EXPORT_SYMBOL vmlinux 0xaa69d155 clear_inode +EXPORT_SYMBOL vmlinux 0xaa7c1b35 dev_graft_qdisc +EXPORT_SYMBOL vmlinux 0xaa96b300 inet_proto_csum_replace16 +EXPORT_SYMBOL vmlinux 0xaab76e6d inet_shutdown +EXPORT_SYMBOL vmlinux 0xaabe6704 airq_iv_free +EXPORT_SYMBOL vmlinux 0xaabf0734 setup_arg_pages +EXPORT_SYMBOL vmlinux 0xaad0ae78 __bitmap_shift_right +EXPORT_SYMBOL vmlinux 0xaae1e912 nf_register_net_hooks +EXPORT_SYMBOL vmlinux 0xaafdc258 strcasecmp +EXPORT_SYMBOL vmlinux 0xaafe909c inet_peer_xrlim_allow +EXPORT_SYMBOL vmlinux 0xab2c2bc3 jbd2_journal_clear_err +EXPORT_SYMBOL vmlinux 0xab5b7a6d pci_disable_link_state +EXPORT_SYMBOL vmlinux 0xab6554d7 dquot_disable +EXPORT_SYMBOL vmlinux 0xab6bde28 sysctl_max_syn_backlog +EXPORT_SYMBOL vmlinux 0xabb96ecd param_set_uint +EXPORT_SYMBOL vmlinux 0xabbdf15d elv_rb_former_request +EXPORT_SYMBOL vmlinux 0xabcaa577 free_anon_bdev +EXPORT_SYMBOL vmlinux 0xac0ba8c1 blk_iopoll_disable +EXPORT_SYMBOL vmlinux 0xac1a55be unregister_reboot_notifier +EXPORT_SYMBOL vmlinux 0xac1b9d39 __netif_schedule +EXPORT_SYMBOL vmlinux 0xac321af1 eth_commit_mac_addr_change +EXPORT_SYMBOL vmlinux 0xac345725 inet_frags_fini +EXPORT_SYMBOL vmlinux 0xac35f025 eth_platform_get_mac_address +EXPORT_SYMBOL vmlinux 0xac398912 flex_array_clear +EXPORT_SYMBOL vmlinux 0xac3bdfa5 deactivate_super +EXPORT_SYMBOL vmlinux 0xac8ef049 dev_addr_del +EXPORT_SYMBOL vmlinux 0xac9379b4 pcibios_bus_to_resource +EXPORT_SYMBOL vmlinux 0xac9ca067 jbd2_journal_release_jbd_inode +EXPORT_SYMBOL vmlinux 0xac9e45af param_set_ushort +EXPORT_SYMBOL vmlinux 0xacab29b7 seq_hlist_start_percpu +EXPORT_SYMBOL vmlinux 0xacb99e2f ip_options_compile +EXPORT_SYMBOL vmlinux 0xacbd7011 __insert_inode_hash +EXPORT_SYMBOL vmlinux 0xacc5b5d2 csum_ipv6_magic +EXPORT_SYMBOL vmlinux 0xaccabc6a in4_pton +EXPORT_SYMBOL vmlinux 0xacd81eb3 jbd2_inode_cache +EXPORT_SYMBOL vmlinux 0xacefcc4c dcb_ieee_setapp +EXPORT_SYMBOL vmlinux 0xacf4d843 match_strdup +EXPORT_SYMBOL vmlinux 0xad01ed68 scsi_command_normalize_sense +EXPORT_SYMBOL vmlinux 0xad0413d4 match_hex +EXPORT_SYMBOL vmlinux 0xad14b2fe __check_sticky +EXPORT_SYMBOL vmlinux 0xad3339b9 pci_disable_msix +EXPORT_SYMBOL vmlinux 0xad4aee39 strncpy +EXPORT_SYMBOL vmlinux 0xad4cd138 perf_release_sampling +EXPORT_SYMBOL vmlinux 0xad53e4c1 kbd_alloc +EXPORT_SYMBOL vmlinux 0xad66941f blk_init_queue +EXPORT_SYMBOL vmlinux 0xad79e524 netlink_kernel_release +EXPORT_SYMBOL vmlinux 0xad7c3cde param_set_charp +EXPORT_SYMBOL vmlinux 0xad84bef8 dm_table_event +EXPORT_SYMBOL vmlinux 0xad9f1677 nf_log_unbind_pf +EXPORT_SYMBOL vmlinux 0xadcaf882 mutex_lock +EXPORT_SYMBOL vmlinux 0xadce46e4 file_update_time +EXPORT_SYMBOL vmlinux 0xadfdfcef __bitmap_andnot +EXPORT_SYMBOL vmlinux 0xae116ab3 param_get_byte +EXPORT_SYMBOL vmlinux 0xae2f3208 nf_afinfo +EXPORT_SYMBOL vmlinux 0xae337f6a bio_advance +EXPORT_SYMBOL vmlinux 0xae3d0249 xfrm_register_km +EXPORT_SYMBOL vmlinux 0xae4ce5b8 xfrm_alloc_spi +EXPORT_SYMBOL vmlinux 0xae568806 tty_set_operations +EXPORT_SYMBOL vmlinux 0xae614d0a pci_assign_resource +EXPORT_SYMBOL vmlinux 0xaeb4c008 sdev_enable_disk_events +EXPORT_SYMBOL vmlinux 0xaf08e8fe vprintk_emit +EXPORT_SYMBOL vmlinux 0xaf0e863b set_cached_acl +EXPORT_SYMBOL vmlinux 0xaf3dd7dc scsi_logging_level +EXPORT_SYMBOL vmlinux 0xaf5c2696 kill_pid +EXPORT_SYMBOL vmlinux 0xaf77f0e4 tcp_proto_cgroup +EXPORT_SYMBOL vmlinux 0xaf7a6dec write_inode_now +EXPORT_SYMBOL vmlinux 0xaf99d5af inet_ioctl +EXPORT_SYMBOL vmlinux 0xafe7d386 blk_queue_split +EXPORT_SYMBOL vmlinux 0xafe82e10 strcspn +EXPORT_SYMBOL vmlinux 0xb0088d6e clear_page_dirty_for_io +EXPORT_SYMBOL vmlinux 0xb01f9799 __xfrm_policy_check +EXPORT_SYMBOL vmlinux 0xb027a0fe xfrm_input_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xb03e4c65 downgrade_write +EXPORT_SYMBOL vmlinux 0xb05110ae generic_file_open +EXPORT_SYMBOL vmlinux 0xb05574e2 xfrm_policy_hash_rebuild +EXPORT_SYMBOL vmlinux 0xb05fc310 sysctl_rmem_max +EXPORT_SYMBOL vmlinux 0xb0628f9d __skb_flow_get_ports +EXPORT_SYMBOL vmlinux 0xb0898e1c tcp_gro_complete +EXPORT_SYMBOL vmlinux 0xb091bd00 tcp_v4_do_rcv +EXPORT_SYMBOL vmlinux 0xb09f2214 kobject_del +EXPORT_SYMBOL vmlinux 0xb09fae2c register_md_personality +EXPORT_SYMBOL vmlinux 0xb0b466c7 bio_add_pc_page +EXPORT_SYMBOL vmlinux 0xb0b4d158 security_skb_classify_flow +EXPORT_SYMBOL vmlinux 0xb0d23388 noop_llseek +EXPORT_SYMBOL vmlinux 0xb0e10781 get_option +EXPORT_SYMBOL vmlinux 0xb0fa55c3 netdev_rx_csum_fault +EXPORT_SYMBOL vmlinux 0xb0fca5a6 netdev_lower_get_next_private +EXPORT_SYMBOL vmlinux 0xb12cbacb fb_unregister_client +EXPORT_SYMBOL vmlinux 0xb13374f8 inet_csk_accept +EXPORT_SYMBOL vmlinux 0xb1340965 acl_by_type +EXPORT_SYMBOL vmlinux 0xb1396ff1 sock_dequeue_err_skb +EXPORT_SYMBOL vmlinux 0xb1469c8f dev_get_by_name +EXPORT_SYMBOL vmlinux 0xb15cb614 security_xfrm_policy_alloc +EXPORT_SYMBOL vmlinux 0xb1645a2e sg_free_table +EXPORT_SYMBOL vmlinux 0xb19cb69c __hw_addr_unsync_dev +EXPORT_SYMBOL vmlinux 0xb1a16485 pci_bus_find_capability +EXPORT_SYMBOL vmlinux 0xb1ab0660 ip6_frag_match +EXPORT_SYMBOL vmlinux 0xb1addffb rtnl_link_get_net +EXPORT_SYMBOL vmlinux 0xb1c3a01a oops_in_progress +EXPORT_SYMBOL vmlinux 0xb1e05435 __dec_zone_page_state +EXPORT_SYMBOL vmlinux 0xb1e75776 __hw_addr_sync_dev +EXPORT_SYMBOL vmlinux 0xb1ec2d92 udp_flush_pending_frames +EXPORT_SYMBOL vmlinux 0xb24f4c5b scsi_rescan_device +EXPORT_SYMBOL vmlinux 0xb2624433 __set_page_dirty_nobuffers +EXPORT_SYMBOL vmlinux 0xb263c8c6 __frontswap_load +EXPORT_SYMBOL vmlinux 0xb2682405 utf8_to_utf32 +EXPORT_SYMBOL vmlinux 0xb29f00d6 tcp_init_sock +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 0xb2d6a102 md_write_start +EXPORT_SYMBOL vmlinux 0xb2fb0f2f nla_reserve_nohdr +EXPORT_SYMBOL vmlinux 0xb311acdd kbd_free +EXPORT_SYMBOL vmlinux 0xb318118c set_blocksize +EXPORT_SYMBOL vmlinux 0xb3221544 pci_wait_for_pending_transaction +EXPORT_SYMBOL vmlinux 0xb32de7f9 xfrm6_protocol_deregister +EXPORT_SYMBOL vmlinux 0xb33e9c3b compat_sock_common_getsockopt +EXPORT_SYMBOL vmlinux 0xb347c602 xfrm_state_add +EXPORT_SYMBOL vmlinux 0xb352177e find_first_bit +EXPORT_SYMBOL vmlinux 0xb3553265 lwtunnel_state_alloc +EXPORT_SYMBOL vmlinux 0xb36b146a scsi_device_put +EXPORT_SYMBOL vmlinux 0xb3725178 d_instantiate +EXPORT_SYMBOL vmlinux 0xb380cbac padata_start +EXPORT_SYMBOL vmlinux 0xb3a21e05 pci_lost_interrupt +EXPORT_SYMBOL vmlinux 0xb3a596ea __qdisc_calculate_pkt_len +EXPORT_SYMBOL vmlinux 0xb3a7b7af sock_no_recvmsg +EXPORT_SYMBOL vmlinux 0xb3ac3df2 bio_copy_kern +EXPORT_SYMBOL vmlinux 0xb3b52bf2 gnet_stats_finish_copy +EXPORT_SYMBOL vmlinux 0xb3b967a1 sg_pcopy_from_buffer +EXPORT_SYMBOL vmlinux 0xb3d2c76d scsi_hostbyte_string +EXPORT_SYMBOL vmlinux 0xb3deec1d pci_get_subsys +EXPORT_SYMBOL vmlinux 0xb3f7646e kthread_should_stop +EXPORT_SYMBOL vmlinux 0xb3ff1f69 free_pages_exact +EXPORT_SYMBOL vmlinux 0xb4044fc9 bdevname +EXPORT_SYMBOL vmlinux 0xb4316aa2 mb_cache_entry_find_next +EXPORT_SYMBOL vmlinux 0xb450a741 __inet_stream_connect +EXPORT_SYMBOL vmlinux 0xb46d3e37 bdi_register +EXPORT_SYMBOL vmlinux 0xb4709322 scsi_dev_info_add_list +EXPORT_SYMBOL vmlinux 0xb4bf5ae9 security_path_chmod +EXPORT_SYMBOL vmlinux 0xb4e08101 dump_truncate +EXPORT_SYMBOL vmlinux 0xb4e4f69f get_phys_clock +EXPORT_SYMBOL vmlinux 0xb4fb2aab path_noexec +EXPORT_SYMBOL vmlinux 0xb536e658 generic_pipe_buf_release +EXPORT_SYMBOL vmlinux 0xb537c4db finish_no_open +EXPORT_SYMBOL vmlinux 0xb538105f blkdev_get_by_path +EXPORT_SYMBOL vmlinux 0xb5592e95 vfs_getattr +EXPORT_SYMBOL vmlinux 0xb560d7df PDE_DATA +EXPORT_SYMBOL vmlinux 0xb57343c2 frontswap_shrink +EXPORT_SYMBOL vmlinux 0xb5a459dc unregister_blkdev +EXPORT_SYMBOL vmlinux 0xb5aa7165 dma_pool_destroy +EXPORT_SYMBOL vmlinux 0xb5b97d29 inet_del_offload +EXPORT_SYMBOL vmlinux 0xb5baf843 tod_to_timeval +EXPORT_SYMBOL vmlinux 0xb5bc068f generic_file_read_iter +EXPORT_SYMBOL vmlinux 0xb5ef8fe5 set_user_nice +EXPORT_SYMBOL vmlinux 0xb6244511 sg_init_one +EXPORT_SYMBOL vmlinux 0xb628c6bf scsi_execute +EXPORT_SYMBOL vmlinux 0xb678366f int_sqrt +EXPORT_SYMBOL vmlinux 0xb6800c69 pci_scan_single_device +EXPORT_SYMBOL vmlinux 0xb68d8d45 xfrm_input_resume +EXPORT_SYMBOL vmlinux 0xb6936ffe _bcd2bin +EXPORT_SYMBOL vmlinux 0xb6a68816 find_last_bit +EXPORT_SYMBOL vmlinux 0xb6a914c0 file_remove_privs +EXPORT_SYMBOL vmlinux 0xb6bd7af0 ip4_datagram_connect +EXPORT_SYMBOL vmlinux 0xb6cff705 iucv_path_sever +EXPORT_SYMBOL vmlinux 0xb6d76547 proc_dointvec +EXPORT_SYMBOL vmlinux 0xb6f12883 vfs_read +EXPORT_SYMBOL vmlinux 0xb70d5f3c kmalloc_dma_caches +EXPORT_SYMBOL vmlinux 0xb72fb054 ipv6_find_hdr +EXPORT_SYMBOL vmlinux 0xb7488905 scsi_normalize_sense +EXPORT_SYMBOL vmlinux 0xb7556868 mb_cache_entry_insert +EXPORT_SYMBOL vmlinux 0xb7573613 bdi_destroy +EXPORT_SYMBOL vmlinux 0xb77131b1 psched_ratecfg_precompute +EXPORT_SYMBOL vmlinux 0xb7899c6e mempool_free +EXPORT_SYMBOL vmlinux 0xb7b1fb5c __xfrm_state_destroy +EXPORT_SYMBOL vmlinux 0xb7c6512d remove_arg_zero +EXPORT_SYMBOL vmlinux 0xb7c6db70 sysctl_max_skb_frags +EXPORT_SYMBOL vmlinux 0xb7c943b9 netpoll_parse_options +EXPORT_SYMBOL vmlinux 0xb7e59896 tcp_shutdown +EXPORT_SYMBOL vmlinux 0xb7ea647c crypto_sha256_update +EXPORT_SYMBOL vmlinux 0xb7fac1c0 simple_dname +EXPORT_SYMBOL vmlinux 0xb80494c0 d_add_ci +EXPORT_SYMBOL vmlinux 0xb82297b4 tty_unregister_driver +EXPORT_SYMBOL vmlinux 0xb840ac4a __alloc_skb +EXPORT_SYMBOL vmlinux 0xb86a31a6 free_task +EXPORT_SYMBOL vmlinux 0xb874b87a __clzsi2 +EXPORT_SYMBOL vmlinux 0xb87a9445 pcie_capability_write_word +EXPORT_SYMBOL vmlinux 0xb87e2cf6 cdrom_get_media_event +EXPORT_SYMBOL vmlinux 0xb882a15a skb_realloc_headroom +EXPORT_SYMBOL vmlinux 0xb88a2fc7 dev_add_pack +EXPORT_SYMBOL vmlinux 0xb89f714f dquot_writeback_dquots +EXPORT_SYMBOL vmlinux 0xb8b1bd16 pcie_set_mps +EXPORT_SYMBOL vmlinux 0xb8c304c9 pci_save_state +EXPORT_SYMBOL vmlinux 0xb8ed7520 tty_hung_up_p +EXPORT_SYMBOL vmlinux 0xb8ef9571 generic_start_io_acct +EXPORT_SYMBOL vmlinux 0xb90845e3 buffer_migrate_page +EXPORT_SYMBOL vmlinux 0xb915ceca itcw_init +EXPORT_SYMBOL vmlinux 0xb9249d16 cpu_possible_mask +EXPORT_SYMBOL vmlinux 0xb928aa45 netdev_rss_key_fill +EXPORT_SYMBOL vmlinux 0xb93334e1 neigh_lookup_nodev +EXPORT_SYMBOL vmlinux 0xb9588a2b dquot_enable +EXPORT_SYMBOL vmlinux 0xb978d479 truncate_inode_pages +EXPORT_SYMBOL vmlinux 0xb9a78b62 raw3270_find_view +EXPORT_SYMBOL vmlinux 0xb9b30d68 dev_driver_string +EXPORT_SYMBOL vmlinux 0xb9b3961a generic_pipe_buf_steal +EXPORT_SYMBOL vmlinux 0xb9c90a6a unlock_rename +EXPORT_SYMBOL vmlinux 0xb9e8e2cc in6addr_sitelocal_allrouters +EXPORT_SYMBOL vmlinux 0xb9f9f0b7 nosteal_pipe_buf_ops +EXPORT_SYMBOL vmlinux 0xba0643ed skb_put +EXPORT_SYMBOL vmlinux 0xba22c3e7 scsi_unblock_requests +EXPORT_SYMBOL vmlinux 0xba3b4536 netif_stacked_transfer_operstate +EXPORT_SYMBOL vmlinux 0xba497f13 loops_per_jiffy +EXPORT_SYMBOL vmlinux 0xba5f9603 bio_integrity_free +EXPORT_SYMBOL vmlinux 0xba925f60 ns_capable_noaudit +EXPORT_SYMBOL vmlinux 0xba97d27f up_read +EXPORT_SYMBOL vmlinux 0xbaa2782a kstrndup +EXPORT_SYMBOL vmlinux 0xbaa37578 __inode_permission +EXPORT_SYMBOL vmlinux 0xbaa90f12 nvm_unregister_mgr +EXPORT_SYMBOL vmlinux 0xbad46a89 sb_min_blocksize +EXPORT_SYMBOL vmlinux 0xbae6a22b md_flush_request +EXPORT_SYMBOL vmlinux 0xbb0540aa zlib_inflateReset +EXPORT_SYMBOL vmlinux 0xbb12bfbf find_vma +EXPORT_SYMBOL vmlinux 0xbb20e5b2 d_genocide +EXPORT_SYMBOL vmlinux 0xbb35675b __bitmap_intersects +EXPORT_SYMBOL vmlinux 0xbb3eadc7 get_user_pages_locked +EXPORT_SYMBOL vmlinux 0xbb423adb arp_xmit +EXPORT_SYMBOL vmlinux 0xbb4667be xfrm_policy_register_afinfo +EXPORT_SYMBOL vmlinux 0xbb5d343d xfrm_get_acqseq +EXPORT_SYMBOL vmlinux 0xbb6efda3 n_tty_compat_ioctl_helper +EXPORT_SYMBOL vmlinux 0xbb704171 blk_queue_softirq_done +EXPORT_SYMBOL vmlinux 0xbb7e652f __genl_register_family +EXPORT_SYMBOL vmlinux 0xbb835397 scsi_add_host_with_dma +EXPORT_SYMBOL vmlinux 0xbb9d0dc5 bin2hex +EXPORT_SYMBOL vmlinux 0xbbb7124d keyring_search +EXPORT_SYMBOL vmlinux 0xbbceb8ea from_kuid +EXPORT_SYMBOL vmlinux 0xbbde785e blk_end_request_all +EXPORT_SYMBOL vmlinux 0xbbf3249d dev_remove_pack +EXPORT_SYMBOL vmlinux 0xbbfc1470 blk_mq_stop_hw_queues +EXPORT_SYMBOL vmlinux 0xbc22ec16 d_obtain_alias +EXPORT_SYMBOL vmlinux 0xbc2d2b4a __tracepoint_kmalloc_node +EXPORT_SYMBOL vmlinux 0xbc2d7c00 kset_register +EXPORT_SYMBOL vmlinux 0xbc509392 simple_rmdir +EXPORT_SYMBOL vmlinux 0xbc7732b6 devm_ioremap_resource +EXPORT_SYMBOL vmlinux 0xbc7aedf5 xfrm_garbage_collect +EXPORT_SYMBOL vmlinux 0xbc9277c9 blk_mq_alloc_request +EXPORT_SYMBOL vmlinux 0xbca252e9 qdisc_watchdog_schedule_ns +EXPORT_SYMBOL vmlinux 0xbcb87d13 __cond_resched_lock +EXPORT_SYMBOL vmlinux 0xbcd42395 blk_queue_free_tags +EXPORT_SYMBOL vmlinux 0xbcddd8f3 __neigh_event_send +EXPORT_SYMBOL vmlinux 0xbd09e070 ip_getsockopt +EXPORT_SYMBOL vmlinux 0xbd100793 cpu_online_mask +EXPORT_SYMBOL vmlinux 0xbd13bab2 __nla_reserve +EXPORT_SYMBOL vmlinux 0xbd36dd14 bio_clone_bioset +EXPORT_SYMBOL vmlinux 0xbd5fcc3a igrab +EXPORT_SYMBOL vmlinux 0xbd63a30b scsi_verify_blk_ioctl +EXPORT_SYMBOL vmlinux 0xbd7392f1 tty_wait_until_sent +EXPORT_SYMBOL vmlinux 0xbd7dc775 __skb_checksum +EXPORT_SYMBOL vmlinux 0xbd803510 tcp_parse_md5sig_option +EXPORT_SYMBOL vmlinux 0xbd814a8b netif_set_real_num_tx_queues +EXPORT_SYMBOL vmlinux 0xbd8661b3 set_page_dirty +EXPORT_SYMBOL vmlinux 0xbd8b58aa dcb_ieee_delapp +EXPORT_SYMBOL vmlinux 0xbd9074b1 blk_finish_plug +EXPORT_SYMBOL vmlinux 0xbdab0120 remap_vmalloc_range +EXPORT_SYMBOL vmlinux 0xbdfb851f ___ratelimit +EXPORT_SYMBOL vmlinux 0xbe1bb112 bitmap_onto +EXPORT_SYMBOL vmlinux 0xbe207e54 cookie_ecn_ok +EXPORT_SYMBOL vmlinux 0xbe34e356 fd_install +EXPORT_SYMBOL vmlinux 0xbe6b84e1 nvm_put_blk +EXPORT_SYMBOL vmlinux 0xbe6fb4d4 ll_rw_block +EXPORT_SYMBOL vmlinux 0xbe7a50f6 tcp_openreq_init_rwin +EXPORT_SYMBOL vmlinux 0xbe816642 bio_copy_data +EXPORT_SYMBOL vmlinux 0xbea5c34b _atomic_dec_and_lock +EXPORT_SYMBOL vmlinux 0xbea8d494 blk_complete_request +EXPORT_SYMBOL vmlinux 0xbeafa0b7 pskb_expand_head +EXPORT_SYMBOL vmlinux 0xbeb244f8 nvm_register_target +EXPORT_SYMBOL vmlinux 0xbed37281 devm_memremap +EXPORT_SYMBOL vmlinux 0xbed50871 tcp_enter_memory_pressure +EXPORT_SYMBOL vmlinux 0xbef43296 console_conditional_schedule +EXPORT_SYMBOL vmlinux 0xbef50b63 vfs_getattr_nosec +EXPORT_SYMBOL vmlinux 0xbf1b13a6 register_service_level +EXPORT_SYMBOL vmlinux 0xbf1ba301 blk_mq_add_to_requeue_list +EXPORT_SYMBOL vmlinux 0xbf7338f2 blk_mq_delay_queue +EXPORT_SYMBOL vmlinux 0xbf7fd2f5 schedule_timeout_killable +EXPORT_SYMBOL vmlinux 0xbf8ba54a vprintk +EXPORT_SYMBOL vmlinux 0xbf9bcc8d __cap_empty_set +EXPORT_SYMBOL vmlinux 0xbfac6aef blk_queue_dma_pad +EXPORT_SYMBOL vmlinux 0xbfee3ad5 loop_unregister_transfer +EXPORT_SYMBOL vmlinux 0xbffa6efb scsi_is_sdev_device +EXPORT_SYMBOL vmlinux 0xc003c637 __strncpy_from_user +EXPORT_SYMBOL vmlinux 0xc003f2af blk_mq_abort_requeue_list +EXPORT_SYMBOL vmlinux 0xc0076708 jbd2_journal_set_features +EXPORT_SYMBOL vmlinux 0xc0145342 compat_tcp_getsockopt +EXPORT_SYMBOL vmlinux 0xc01a2154 raw3270_request_reset +EXPORT_SYMBOL vmlinux 0xc040a068 padata_remove_cpu +EXPORT_SYMBOL vmlinux 0xc0a3d105 find_next_bit +EXPORT_SYMBOL vmlinux 0xc0c55a00 locks_init_lock +EXPORT_SYMBOL vmlinux 0xc0fb6a39 md_update_sb +EXPORT_SYMBOL vmlinux 0xc1045fec bio_add_page +EXPORT_SYMBOL vmlinux 0xc113ad6f neigh_app_ns +EXPORT_SYMBOL vmlinux 0xc1328546 netif_set_xps_queue +EXPORT_SYMBOL vmlinux 0xc132fe1b scsi_execute_req_flags +EXPORT_SYMBOL vmlinux 0xc17b7e2e __cleancache_invalidate_fs +EXPORT_SYMBOL vmlinux 0xc1a54486 remove_wait_queue +EXPORT_SYMBOL vmlinux 0xc1d8cfaf __fdget +EXPORT_SYMBOL vmlinux 0xc1e50c0b rtnl_nla_parse_ifla +EXPORT_SYMBOL vmlinux 0xc1ff96af textsearch_find_continuous +EXPORT_SYMBOL vmlinux 0xc1ffbe4a __break_lease +EXPORT_SYMBOL vmlinux 0xc212f2ab prandom_bytes +EXPORT_SYMBOL vmlinux 0xc237931e tcf_exts_dump +EXPORT_SYMBOL vmlinux 0xc24082c1 xfrm_policy_destroy +EXPORT_SYMBOL vmlinux 0xc254c223 get_fs_type +EXPORT_SYMBOL vmlinux 0xc257150b dm_kcopyd_copy +EXPORT_SYMBOL vmlinux 0xc2668bc9 padata_set_cpumasks +EXPORT_SYMBOL vmlinux 0xc281907e iucv_message_reply +EXPORT_SYMBOL vmlinux 0xc285faa1 gro_find_complete_by_type +EXPORT_SYMBOL vmlinux 0xc28b0bab bioset_integrity_create +EXPORT_SYMBOL vmlinux 0xc29251cf tty_insert_flip_string_fixed_flag +EXPORT_SYMBOL vmlinux 0xc2a7502f security_sk_classify_flow +EXPORT_SYMBOL vmlinux 0xc2aadac6 dquot_quota_off +EXPORT_SYMBOL vmlinux 0xc2b2a29d inet_csk_complete_hashdance +EXPORT_SYMBOL vmlinux 0xc2d6f73c stop_tty +EXPORT_SYMBOL vmlinux 0xc2d961cb dev_getfirstbyhwtype +EXPORT_SYMBOL vmlinux 0xc2e587d1 reset_devices +EXPORT_SYMBOL vmlinux 0xc30e7640 sk_mc_loop +EXPORT_SYMBOL vmlinux 0xc32089cf gnet_stats_copy_queue +EXPORT_SYMBOL vmlinux 0xc3294401 compat_sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xc32df114 __napi_schedule_irqoff +EXPORT_SYMBOL vmlinux 0xc34a8d89 mnt_drop_write_file +EXPORT_SYMBOL vmlinux 0xc34cffe2 kstrtobool_from_user +EXPORT_SYMBOL vmlinux 0xc34f9b49 tty_port_put +EXPORT_SYMBOL vmlinux 0xc382b8da proto_unregister +EXPORT_SYMBOL vmlinux 0xc385cb58 perf_num_counters +EXPORT_SYMBOL vmlinux 0xc390a041 touch_buffer +EXPORT_SYMBOL vmlinux 0xc394926a block_page_mkwrite +EXPORT_SYMBOL vmlinux 0xc3af0fcd blk_integrity_unregister +EXPORT_SYMBOL vmlinux 0xc3d6bad3 d_make_root +EXPORT_SYMBOL vmlinux 0xc3dcb4cc __napi_complete +EXPORT_SYMBOL vmlinux 0xc3df4075 generic_file_write_iter +EXPORT_SYMBOL vmlinux 0xc3f9b107 dquot_set_dqblk +EXPORT_SYMBOL vmlinux 0xc3fbc168 xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc3fcc3e5 freezing_slow_path +EXPORT_SYMBOL vmlinux 0xc43c8dad n_tty_ioctl_helper +EXPORT_SYMBOL vmlinux 0xc4507cfd device_get_mac_address +EXPORT_SYMBOL vmlinux 0xc4539b43 devm_ioremap_wc +EXPORT_SYMBOL vmlinux 0xc45755de find_next_zero_bit_le +EXPORT_SYMBOL vmlinux 0xc4645f7c skb_orphan_partial +EXPORT_SYMBOL vmlinux 0xc4667daa xfrm_state_insert +EXPORT_SYMBOL vmlinux 0xc499ae1e kstrdup +EXPORT_SYMBOL vmlinux 0xc4b79060 nf_ip_checksum +EXPORT_SYMBOL vmlinux 0xc4babc99 kernel_getsockname +EXPORT_SYMBOL vmlinux 0xc4ee73aa nvm_put_blk_unlocked +EXPORT_SYMBOL vmlinux 0xc5214062 __register_chrdev +EXPORT_SYMBOL vmlinux 0xc521b3fc lookup_bdev +EXPORT_SYMBOL vmlinux 0xc59623cc ip_generic_getfrag +EXPORT_SYMBOL vmlinux 0xc599a772 security_xfrm_state_delete +EXPORT_SYMBOL vmlinux 0xc5ad93b8 sie_exit +EXPORT_SYMBOL vmlinux 0xc5af3f8d sk_filter_trim_cap +EXPORT_SYMBOL vmlinux 0xc5c33a71 km_query +EXPORT_SYMBOL vmlinux 0xc5fdef94 call_usermodehelper +EXPORT_SYMBOL vmlinux 0xc60b0863 __frontswap_test +EXPORT_SYMBOL vmlinux 0xc61cc917 nf_register_net_hook +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 0xc694fa18 pci_dev_get +EXPORT_SYMBOL vmlinux 0xc6a1ab0e qdisc_reset +EXPORT_SYMBOL vmlinux 0xc6acffaa pci_try_set_mwi +EXPORT_SYMBOL vmlinux 0xc6ae59fb pcim_enable_device +EXPORT_SYMBOL vmlinux 0xc6b69256 pcim_iounmap_regions +EXPORT_SYMBOL vmlinux 0xc6c00c87 mark_buffer_async_write +EXPORT_SYMBOL vmlinux 0xc6c806f5 bdi_register_owner +EXPORT_SYMBOL vmlinux 0xc6cbbc89 capable +EXPORT_SYMBOL vmlinux 0xc6e0dd8f inc_nlink +EXPORT_SYMBOL vmlinux 0xc6e2de07 blk_start_request +EXPORT_SYMBOL vmlinux 0xc6f662f5 security_inode_notifysecctx +EXPORT_SYMBOL vmlinux 0xc73517e2 copy_to_iter +EXPORT_SYMBOL vmlinux 0xc74240e1 neigh_destroy +EXPORT_SYMBOL vmlinux 0xc76bb8d1 jbd2_journal_dirty_metadata +EXPORT_SYMBOL vmlinux 0xc7743348 sock_recv_errqueue +EXPORT_SYMBOL vmlinux 0xc77c6016 sock_rfree +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 0xc7ae6636 elevator_change +EXPORT_SYMBOL vmlinux 0xc7e1a55c dev_set_mac_address +EXPORT_SYMBOL vmlinux 0xc80b5921 put_disk +EXPORT_SYMBOL vmlinux 0xc8133c62 notify_change +EXPORT_SYMBOL vmlinux 0xc814389a dquot_file_open +EXPORT_SYMBOL vmlinux 0xc83953d3 skb_tx_error +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 0xc855bfee xfrm_state_unregister_afinfo +EXPORT_SYMBOL vmlinux 0xc86a6174 __kfifo_from_user_r +EXPORT_SYMBOL vmlinux 0xc872fd85 in6addr_interfacelocal_allnodes +EXPORT_SYMBOL vmlinux 0xc88223dd md_reap_sync_thread +EXPORT_SYMBOL vmlinux 0xc88c75f6 blk_mq_requeue_request +EXPORT_SYMBOL vmlinux 0xc890c1a3 drop_super +EXPORT_SYMBOL vmlinux 0xc897c382 sg_init_table +EXPORT_SYMBOL vmlinux 0xc8a1e745 datagram_poll +EXPORT_SYMBOL vmlinux 0xc8a3b434 cdrom_release +EXPORT_SYMBOL vmlinux 0xc8a91f5b cpumask_local_spread +EXPORT_SYMBOL vmlinux 0xc8b57c27 autoremove_wake_function +EXPORT_SYMBOL vmlinux 0xc8d0001d iucv_root +EXPORT_SYMBOL vmlinux 0xc8e27579 dev_err +EXPORT_SYMBOL vmlinux 0xc911b9d5 eth_get_headlen +EXPORT_SYMBOL vmlinux 0xc9166c73 blk_queue_max_segment_size +EXPORT_SYMBOL vmlinux 0xc92f35b8 default_llseek +EXPORT_SYMBOL vmlinux 0xc95091fe __skb_gro_checksum_complete +EXPORT_SYMBOL vmlinux 0xc950eb52 lwtunnel_build_state +EXPORT_SYMBOL vmlinux 0xc95bca94 devm_request_any_context_irq +EXPORT_SYMBOL vmlinux 0xc9634df9 in6addr_linklocal_allrouters +EXPORT_SYMBOL vmlinux 0xc965c786 bioset_create +EXPORT_SYMBOL vmlinux 0xc967c781 tcp_setsockopt +EXPORT_SYMBOL vmlinux 0xc98d1956 sock_common_setsockopt +EXPORT_SYMBOL vmlinux 0xc9916b01 get_guest_storage_key +EXPORT_SYMBOL vmlinux 0xc9ece9e9 pci_get_domain_bus_and_slot +EXPORT_SYMBOL vmlinux 0xca0f4667 readlink_copy +EXPORT_SYMBOL vmlinux 0xca1fc675 generic_splice_sendpage +EXPORT_SYMBOL vmlinux 0xca217194 get_super +EXPORT_SYMBOL vmlinux 0xca3aa507 clear_nlink +EXPORT_SYMBOL vmlinux 0xca441bf7 bio_map_kern +EXPORT_SYMBOL vmlinux 0xca4c923d vscnprintf +EXPORT_SYMBOL vmlinux 0xca73cfd2 I_BDEV +EXPORT_SYMBOL vmlinux 0xca803cf3 inet_dev_addr_type +EXPORT_SYMBOL vmlinux 0xca83d1bb netif_device_detach +EXPORT_SYMBOL vmlinux 0xca8855ac blk_queue_invalidate_tags +EXPORT_SYMBOL vmlinux 0xca9360b5 rb_next +EXPORT_SYMBOL vmlinux 0xcad75bdf inet_register_protosw +EXPORT_SYMBOL vmlinux 0xcaeecf66 tcp_sendmsg +EXPORT_SYMBOL vmlinux 0xcaf2c603 scsi_sd_pm_domain +EXPORT_SYMBOL vmlinux 0xcb0430ea get_acl +EXPORT_SYMBOL vmlinux 0xcb34d15f netdev_master_upper_dev_link +EXPORT_SYMBOL vmlinux 0xcb461468 neigh_sysctl_register +EXPORT_SYMBOL vmlinux 0xcb571e45 module_refcount +EXPORT_SYMBOL vmlinux 0xcb5c14dc blk_queue_physical_block_size +EXPORT_SYMBOL vmlinux 0xcb628ae9 iov_iter_alignment +EXPORT_SYMBOL vmlinux 0xcb6f781d tty_unthrottle +EXPORT_SYMBOL vmlinux 0xcb7962d0 init_task +EXPORT_SYMBOL vmlinux 0xcb8ca69f sdev_prefix_printk +EXPORT_SYMBOL vmlinux 0xcb9c3fd1 vm_map_ram +EXPORT_SYMBOL vmlinux 0xcbbf0a6f audit_log_task_context +EXPORT_SYMBOL vmlinux 0xcbc9557f unregister_sysrq_key +EXPORT_SYMBOL vmlinux 0xcbcf76c4 iunique +EXPORT_SYMBOL vmlinux 0xcbe0518c unlock_two_nondirectories +EXPORT_SYMBOL vmlinux 0xcc0542b1 __elv_add_request +EXPORT_SYMBOL vmlinux 0xcc09d542 sdev_disable_disk_events +EXPORT_SYMBOL vmlinux 0xcc2c17b5 pci_bus_read_config_dword +EXPORT_SYMBOL vmlinux 0xcc4cffa1 udp_lib_unhash +EXPORT_SYMBOL vmlinux 0xcc5005fe msleep_interruptible +EXPORT_SYMBOL vmlinux 0xcc53fbbf __blockdev_direct_IO +EXPORT_SYMBOL vmlinux 0xcc5bc9b0 kobject_get_unless_zero +EXPORT_SYMBOL vmlinux 0xcc6db86e pci_request_region +EXPORT_SYMBOL vmlinux 0xcca94125 kstrtoint_from_user +EXPORT_SYMBOL vmlinux 0xcce77614 param_ops_byte +EXPORT_SYMBOL vmlinux 0xcd040b6c add_to_page_cache_locked +EXPORT_SYMBOL vmlinux 0xcd14aaec __skb_recv_datagram +EXPORT_SYMBOL vmlinux 0xcd279169 nla_find +EXPORT_SYMBOL vmlinux 0xcd57f7b0 radix_tree_tag_get +EXPORT_SYMBOL vmlinux 0xcd5b0bcc vlan_ioctl_set +EXPORT_SYMBOL vmlinux 0xcd693fc4 jbd2_journal_get_create_access +EXPORT_SYMBOL vmlinux 0xcd6feae9 dev_mc_init +EXPORT_SYMBOL vmlinux 0xcd7711d2 scsi_device_set_state +EXPORT_SYMBOL vmlinux 0xcd79a75c iov_iter_zero +EXPORT_SYMBOL vmlinux 0xcd816cf6 arch_spin_lock_wait +EXPORT_SYMBOL vmlinux 0xcd96dd7b proc_dointvec_userhz_jiffies +EXPORT_SYMBOL vmlinux 0xcdaa358e ip_mc_dec_group +EXPORT_SYMBOL vmlinux 0xcdc39c9e security_ismaclabel +EXPORT_SYMBOL vmlinux 0xcdc4bd9d vlan_dev_vlan_id +EXPORT_SYMBOL vmlinux 0xcddc640e dev_add_offload +EXPORT_SYMBOL vmlinux 0xcdf6e380 dquot_initialize +EXPORT_SYMBOL vmlinux 0xcdf7484b proc_dostring +EXPORT_SYMBOL vmlinux 0xcdf98a4c kobject_init +EXPORT_SYMBOL vmlinux 0xce00336a panic_notifier_list +EXPORT_SYMBOL vmlinux 0xce2840e7 irq_set_irq_wake +EXPORT_SYMBOL vmlinux 0xce48fe02 netif_device_attach +EXPORT_SYMBOL vmlinux 0xce520838 pci_enable_msix +EXPORT_SYMBOL vmlinux 0xce535c91 xfrm_state_update +EXPORT_SYMBOL vmlinux 0xce5ac24f zlib_inflate_workspacesize +EXPORT_SYMBOL vmlinux 0xce677072 poll_schedule_timeout +EXPORT_SYMBOL vmlinux 0xce7de95f block_commit_write +EXPORT_SYMBOL vmlinux 0xce8bacbd blk_queue_alignment_offset +EXPORT_SYMBOL vmlinux 0xceab0311 strchrnul +EXPORT_SYMBOL vmlinux 0xceae504f cmdline_parts_free +EXPORT_SYMBOL vmlinux 0xcec0c234 blk_rq_unmap_user +EXPORT_SYMBOL vmlinux 0xcec3a908 kstrtos8_from_user +EXPORT_SYMBOL vmlinux 0xcedf0886 cpu_relax +EXPORT_SYMBOL vmlinux 0xcef0d251 posix_test_lock +EXPORT_SYMBOL vmlinux 0xcef51982 kstrtou16 +EXPORT_SYMBOL vmlinux 0xcf01d68d sock_kzfree_s +EXPORT_SYMBOL vmlinux 0xcf14f8cd iucv_message_purge +EXPORT_SYMBOL vmlinux 0xcf1747af vfs_setpos +EXPORT_SYMBOL vmlinux 0xcf1b4ba4 __dax_fault +EXPORT_SYMBOL vmlinux 0xcf2817d5 ida_simple_get +EXPORT_SYMBOL vmlinux 0xcf319b64 d_path +EXPORT_SYMBOL vmlinux 0xcf57c112 __ethtool_get_link_ksettings +EXPORT_SYMBOL vmlinux 0xcf831752 blkdev_put +EXPORT_SYMBOL vmlinux 0xcf88439a tso_start +EXPORT_SYMBOL vmlinux 0xcfa432c4 security_dentry_init_security +EXPORT_SYMBOL vmlinux 0xcfeae122 lockref_put_return +EXPORT_SYMBOL vmlinux 0xcff37f9e bio_integrity_trim +EXPORT_SYMBOL vmlinux 0xd01baadd pci_read_vpd +EXPORT_SYMBOL vmlinux 0xd046a427 nvm_register_mgr +EXPORT_SYMBOL vmlinux 0xd049161c bitmap_unplug +EXPORT_SYMBOL vmlinux 0xd04a04ad generic_getxattr +EXPORT_SYMBOL vmlinux 0xd06afc63 d_instantiate_unique +EXPORT_SYMBOL vmlinux 0xd0720a17 on_each_cpu_cond +EXPORT_SYMBOL vmlinux 0xd08782fc inet6_protos +EXPORT_SYMBOL vmlinux 0xd0a2847c sha_init +EXPORT_SYMBOL vmlinux 0xd0a91bab skip_spaces +EXPORT_SYMBOL vmlinux 0xd0cd9b45 dquot_get_state +EXPORT_SYMBOL vmlinux 0xd0dbfa06 ccw_driver_unregister +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 0xd11b1ab5 inode_set_flags +EXPORT_SYMBOL vmlinux 0xd12a7f88 tcp_v4_destroy_sock +EXPORT_SYMBOL vmlinux 0xd12f923b would_dump +EXPORT_SYMBOL vmlinux 0xd13303e7 jbd2_journal_init_inode +EXPORT_SYMBOL vmlinux 0xd13f32f5 migrate_page_move_mapping +EXPORT_SYMBOL vmlinux 0xd14478c1 param_ops_invbool +EXPORT_SYMBOL vmlinux 0xd157f13c user_path_create +EXPORT_SYMBOL vmlinux 0xd1816f32 frontswap_writethrough +EXPORT_SYMBOL vmlinux 0xd181fc46 tcp_prequeue +EXPORT_SYMBOL vmlinux 0xd183cea2 __get_user_pages +EXPORT_SYMBOL vmlinux 0xd18b882d copy_page_to_iter +EXPORT_SYMBOL vmlinux 0xd18f3142 skb_coalesce_rx_frag +EXPORT_SYMBOL vmlinux 0xd199d498 tcw_init +EXPORT_SYMBOL vmlinux 0xd19f13f7 del_virt_timer +EXPORT_SYMBOL vmlinux 0xd19f733d pipe_lock +EXPORT_SYMBOL vmlinux 0xd1a13faf __skb_get_hash_flowi4 +EXPORT_SYMBOL vmlinux 0xd1c8d92d __tcf_em_tree_match +EXPORT_SYMBOL vmlinux 0xd1d87e92 scsi_mlreturn_string +EXPORT_SYMBOL vmlinux 0xd1de8154 vfs_statfs +EXPORT_SYMBOL vmlinux 0xd1f152ad kstrtoll_from_user +EXPORT_SYMBOL vmlinux 0xd2082557 __remove_inode_hash +EXPORT_SYMBOL vmlinux 0xd2220ef2 kernel_sendmsg +EXPORT_SYMBOL vmlinux 0xd22eb6da truncate_setsize +EXPORT_SYMBOL vmlinux 0xd251d7b0 security_socket_getpeersec_dgram +EXPORT_SYMBOL vmlinux 0xd2555f19 jiffies_64_to_clock_t +EXPORT_SYMBOL vmlinux 0xd25938ed nf_register_hooks +EXPORT_SYMBOL vmlinux 0xd25fbc42 dentry_open +EXPORT_SYMBOL vmlinux 0xd261924a devm_free_irq +EXPORT_SYMBOL vmlinux 0xd27b25dd blk_check_plugged +EXPORT_SYMBOL vmlinux 0xd27ed8de skb_copy_datagram_iter +EXPORT_SYMBOL vmlinux 0xd2858d0c node_to_cpumask_map +EXPORT_SYMBOL vmlinux 0xd2a45472 blk_rq_set_block_pc +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 0xd2e6742b kernel_bind +EXPORT_SYMBOL vmlinux 0xd2f42b44 search_binary_handler +EXPORT_SYMBOL vmlinux 0xd2f43c48 pci_enable_device_mem +EXPORT_SYMBOL vmlinux 0xd2fc20c2 skb_copy_datagram_from_iter +EXPORT_SYMBOL vmlinux 0xd30c85df ww_mutex_unlock +EXPORT_SYMBOL vmlinux 0xd314e646 kfree_skb +EXPORT_SYMBOL vmlinux 0xd316590e single_open +EXPORT_SYMBOL vmlinux 0xd31c393b iucv_path_accept +EXPORT_SYMBOL vmlinux 0xd32aeaac cdrom_open +EXPORT_SYMBOL vmlinux 0xd358cd43 lock_rename +EXPORT_SYMBOL vmlinux 0xd3997403 __sb_start_write +EXPORT_SYMBOL vmlinux 0xd39a66ea tty_port_close +EXPORT_SYMBOL vmlinux 0xd3af02f5 __alloc_pages_nodemask +EXPORT_SYMBOL vmlinux 0xd3af979c memdup_user +EXPORT_SYMBOL vmlinux 0xd3b99165 __dev_get_by_name +EXPORT_SYMBOL vmlinux 0xd3bc530e out_of_line_wait_on_bit_lock +EXPORT_SYMBOL vmlinux 0xd3cd325e security_path_unlink +EXPORT_SYMBOL vmlinux 0xd413ac0e pci_bus_read_config_byte +EXPORT_SYMBOL vmlinux 0xd435cbda lock_sock_nested +EXPORT_SYMBOL vmlinux 0xd4652bdc wait_for_completion_timeout +EXPORT_SYMBOL vmlinux 0xd4882420 skb_checksum_help +EXPORT_SYMBOL vmlinux 0xd48fa47b fixed_size_llseek +EXPORT_SYMBOL vmlinux 0xd4db8fa4 tcp_req_err +EXPORT_SYMBOL vmlinux 0xd538af0c __register_binfmt +EXPORT_SYMBOL vmlinux 0xd5438fc4 inet6_bind +EXPORT_SYMBOL vmlinux 0xd54f41ce try_to_del_timer_sync +EXPORT_SYMBOL vmlinux 0xd55121f5 neigh_proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xd555209c pci_back_from_sleep +EXPORT_SYMBOL vmlinux 0xd564a084 pipe_unlock +EXPORT_SYMBOL vmlinux 0xd59daafe from_kprojid +EXPORT_SYMBOL vmlinux 0xd5a802db pagevec_lookup +EXPORT_SYMBOL vmlinux 0xd5bbcb1d nf_register_sockopt +EXPORT_SYMBOL vmlinux 0xd5cd1970 fifo_create_dflt +EXPORT_SYMBOL vmlinux 0xd5ea141d __ip_select_ident +EXPORT_SYMBOL vmlinux 0xd608bd03 dquot_get_dqblk +EXPORT_SYMBOL vmlinux 0xd616683a ecryptfs_fill_auth_tok +EXPORT_SYMBOL vmlinux 0xd62603de blk_fetch_request +EXPORT_SYMBOL vmlinux 0xd62c833f schedule_timeout +EXPORT_SYMBOL vmlinux 0xd666a588 smp_ctl_clear_bit +EXPORT_SYMBOL vmlinux 0xd6801729 xfrm_init_replay +EXPORT_SYMBOL vmlinux 0xd688716b dm_kcopyd_client_create +EXPORT_SYMBOL vmlinux 0xd6ee688f vmalloc +EXPORT_SYMBOL vmlinux 0xd70ac470 param_get_ullong +EXPORT_SYMBOL vmlinux 0xd714b5f9 xfrm_policy_delete +EXPORT_SYMBOL vmlinux 0xd717c092 mntget +EXPORT_SYMBOL vmlinux 0xd730e742 ipv4_specific +EXPORT_SYMBOL vmlinux 0xd732fe1a inet_csk_reqsk_queue_add +EXPORT_SYMBOL vmlinux 0xd75c79df smp_call_function +EXPORT_SYMBOL vmlinux 0xd78178a9 neigh_direct_output +EXPORT_SYMBOL vmlinux 0xd79820d5 send_sig_info +EXPORT_SYMBOL vmlinux 0xd79f3fa3 param_get_ulong +EXPORT_SYMBOL vmlinux 0xd7e56a4e simple_strtoll +EXPORT_SYMBOL vmlinux 0xd7ea7094 nf_unregister_queue_handler +EXPORT_SYMBOL vmlinux 0xd82e3571 tty_driver_flush_buffer +EXPORT_SYMBOL vmlinux 0xd8354b42 xfrm4_rcv_cb +EXPORT_SYMBOL vmlinux 0xd89da37f movable_zone +EXPORT_SYMBOL vmlinux 0xd8a994eb scsi_extd_sense_format +EXPORT_SYMBOL vmlinux 0xd8c37c45 __dev_get_by_flags +EXPORT_SYMBOL vmlinux 0xd8d31c11 __dquot_alloc_space +EXPORT_SYMBOL vmlinux 0xd8ded085 radix_tree_maybe_preload +EXPORT_SYMBOL vmlinux 0xd8e484f0 register_chrdev_region +EXPORT_SYMBOL vmlinux 0xd8fcda72 cpcmd +EXPORT_SYMBOL vmlinux 0xd93cb714 skb_set_owner_w +EXPORT_SYMBOL vmlinux 0xd9497869 xfrm_sad_getinfo +EXPORT_SYMBOL vmlinux 0xd97b3cc2 eth_header_parse +EXPORT_SYMBOL vmlinux 0xd982a317 module_layout +EXPORT_SYMBOL vmlinux 0xd985dc99 mempool_free_pages +EXPORT_SYMBOL vmlinux 0xd98a3c5e __skb_flow_dissect +EXPORT_SYMBOL vmlinux 0xd9a84709 elv_dispatch_add_tail +EXPORT_SYMBOL vmlinux 0xd9b3f97d console_devno +EXPORT_SYMBOL vmlinux 0xd9c48719 dquot_claim_space_nodirty +EXPORT_SYMBOL vmlinux 0xd9c5777e inet6_del_offload +EXPORT_SYMBOL vmlinux 0xd9d8fd16 register_restart_handler +EXPORT_SYMBOL vmlinux 0xd9e24cb1 wait_for_key_construction +EXPORT_SYMBOL vmlinux 0xd9fb4a6d inode_dio_wait +EXPORT_SYMBOL vmlinux 0xda1e39c7 register_sysctl_table +EXPORT_SYMBOL vmlinux 0xda21bf6b km_policy_expired +EXPORT_SYMBOL vmlinux 0xda3d10a8 security_tun_dev_open +EXPORT_SYMBOL vmlinux 0xda559d80 forget_all_cached_acls +EXPORT_SYMBOL vmlinux 0xda601271 km_state_notify +EXPORT_SYMBOL vmlinux 0xda6c4c1a generic_show_options +EXPORT_SYMBOL vmlinux 0xda71d775 lock_sock_fast +EXPORT_SYMBOL vmlinux 0xda80316f make_kuid +EXPORT_SYMBOL vmlinux 0xdaa675f0 flush_signals +EXPORT_SYMBOL vmlinux 0xdaaae04b pci_bus_assign_resources +EXPORT_SYMBOL vmlinux 0xdabafa93 kthread_stop +EXPORT_SYMBOL vmlinux 0xdabfdc40 blk_rq_init +EXPORT_SYMBOL vmlinux 0xdac4913a bitmap_allocate_region +EXPORT_SYMBOL vmlinux 0xdacb1145 kmem_cache_alloc_node_trace +EXPORT_SYMBOL vmlinux 0xdae162cb string_unescape +EXPORT_SYMBOL vmlinux 0xdae34b21 tty_port_destroy +EXPORT_SYMBOL vmlinux 0xdae7e294 key_type_keyring +EXPORT_SYMBOL vmlinux 0xdaf3a558 unmap_underlying_metadata +EXPORT_SYMBOL vmlinux 0xdb06c872 sk_stream_wait_memory +EXPORT_SYMBOL vmlinux 0xdb185e7b __kfifo_dma_in_prepare_r +EXPORT_SYMBOL vmlinux 0xdb3874c8 netdev_lower_get_first_private_rcu +EXPORT_SYMBOL vmlinux 0xdb3bcca6 cancel_delayed_work +EXPORT_SYMBOL vmlinux 0xdb64be1f __iucv_message_send +EXPORT_SYMBOL vmlinux 0xdb760f52 __kfifo_free +EXPORT_SYMBOL vmlinux 0xdb8bb4a1 scsi_register +EXPORT_SYMBOL vmlinux 0xdba14cce arch_spin_lock_wait_flags +EXPORT_SYMBOL vmlinux 0xdbaccdcb ccw_device_resume +EXPORT_SYMBOL vmlinux 0xdbb8f824 kern_unmount +EXPORT_SYMBOL vmlinux 0xdbc4ec41 skb_flow_dissector_init +EXPORT_SYMBOL vmlinux 0xdbdf270a xfrm_init_state +EXPORT_SYMBOL vmlinux 0xdbe5fe63 compat_sock_get_timestampns +EXPORT_SYMBOL vmlinux 0xdc047fc4 scsi_dev_info_list_add_keyed +EXPORT_SYMBOL vmlinux 0xdc091357 xfrm_state_lookup_byspi +EXPORT_SYMBOL vmlinux 0xdc14eda7 pci_pci_problems +EXPORT_SYMBOL vmlinux 0xdc26f8dd generic_read_dir +EXPORT_SYMBOL vmlinux 0xdc276ab0 vfs_writev +EXPORT_SYMBOL vmlinux 0xdc29c508 __init_rwsem +EXPORT_SYMBOL vmlinux 0xdc3fcbc9 __sw_hweight8 +EXPORT_SYMBOL vmlinux 0xdc40ad84 param_array_ops +EXPORT_SYMBOL vmlinux 0xdc41e9bc copy_from_iter_nocache +EXPORT_SYMBOL vmlinux 0xdc4d27dd raw3270_start_irq +EXPORT_SYMBOL vmlinux 0xdc5c7b69 ndo_dflt_fdb_add +EXPORT_SYMBOL vmlinux 0xdc7b1e29 pagecache_get_page +EXPORT_SYMBOL vmlinux 0xdc824c62 xfrm_lookup_route +EXPORT_SYMBOL vmlinux 0xdc8a2d64 lease_modify +EXPORT_SYMBOL vmlinux 0xdc8c79ec tcp_init_cgroup +EXPORT_SYMBOL vmlinux 0xdc8ddeb6 scm_fp_dup +EXPORT_SYMBOL vmlinux 0xdca4c9c6 param_get_ushort +EXPORT_SYMBOL vmlinux 0xdca65d27 tcp_parse_options +EXPORT_SYMBOL vmlinux 0xdcb0349b sys_close +EXPORT_SYMBOL vmlinux 0xdcde25ab generic_delete_inode +EXPORT_SYMBOL vmlinux 0xdce1665a blk_queue_virt_boundary +EXPORT_SYMBOL vmlinux 0xdce22e75 ip_setsockopt +EXPORT_SYMBOL vmlinux 0xdce3f22d read_cache_pages +EXPORT_SYMBOL vmlinux 0xdcfb7388 pcim_pin_device +EXPORT_SYMBOL vmlinux 0xdd2b56a3 devm_ioremap +EXPORT_SYMBOL vmlinux 0xdd3af6b1 __devm_release_region +EXPORT_SYMBOL vmlinux 0xdd3bff8d icmp_send +EXPORT_SYMBOL vmlinux 0xdd7610f0 skb_add_rx_frag +EXPORT_SYMBOL vmlinux 0xdd821580 dqstats +EXPORT_SYMBOL vmlinux 0xdd8995a0 page_cache_prev_hole +EXPORT_SYMBOL vmlinux 0xdd8f8d79 netif_set_real_num_rx_queues +EXPORT_SYMBOL vmlinux 0xdd9281f0 kernel_write +EXPORT_SYMBOL vmlinux 0xdda08c00 __crc32c_le_shift +EXPORT_SYMBOL vmlinux 0xddb28bb2 jbd2_journal_ack_err +EXPORT_SYMBOL vmlinux 0xddd530a2 csum_and_copy_to_iter +EXPORT_SYMBOL vmlinux 0xdde59d0a put_io_context +EXPORT_SYMBOL vmlinux 0xdded5451 md_check_no_bitmap +EXPORT_SYMBOL vmlinux 0xddff7d20 filemap_fdatawait_range +EXPORT_SYMBOL vmlinux 0xde0bdcff memset +EXPORT_SYMBOL vmlinux 0xde1661d9 dcache_readdir +EXPORT_SYMBOL vmlinux 0xde3c7561 netif_schedule_queue +EXPORT_SYMBOL vmlinux 0xde4616cf d_find_alias +EXPORT_SYMBOL vmlinux 0xde48a247 mempool_create +EXPORT_SYMBOL vmlinux 0xde6151db tcp_memory_allocated +EXPORT_SYMBOL vmlinux 0xde712d7a request_firmware +EXPORT_SYMBOL vmlinux 0xde8513f8 fib_default_rule_add +EXPORT_SYMBOL vmlinux 0xde8b4f8b airq_iv_alloc +EXPORT_SYMBOL vmlinux 0xde9360ba totalram_pages +EXPORT_SYMBOL vmlinux 0xde96243d param_ops_bint +EXPORT_SYMBOL vmlinux 0xde9f8f3a vm_insert_page +EXPORT_SYMBOL vmlinux 0xdea16b22 netdev_lower_get_next +EXPORT_SYMBOL vmlinux 0xdec364f2 __invalidate_device +EXPORT_SYMBOL vmlinux 0xdeca395e tty_flip_buffer_push +EXPORT_SYMBOL vmlinux 0xded189fd follow_down_one +EXPORT_SYMBOL vmlinux 0xdeeda985 alloc_anon_inode +EXPORT_SYMBOL vmlinux 0xdef4186e sock_create +EXPORT_SYMBOL vmlinux 0xdf211c68 pci_unregister_driver +EXPORT_SYMBOL vmlinux 0xdf2c2742 rb_last +EXPORT_SYMBOL vmlinux 0xdf2d0126 adjust_managed_page_count +EXPORT_SYMBOL vmlinux 0xdf54a8f7 netlink_unregister_notifier +EXPORT_SYMBOL vmlinux 0xdf60cc27 __print_symbol +EXPORT_SYMBOL vmlinux 0xdf929370 fs_overflowgid +EXPORT_SYMBOL vmlinux 0xdfa9acca smp_cpu_mtid +EXPORT_SYMBOL vmlinux 0xdfc20246 sk_stop_timer +EXPORT_SYMBOL vmlinux 0xdfc8eae2 pci_release_selected_regions +EXPORT_SYMBOL vmlinux 0xdfe06230 register_shrinker +EXPORT_SYMBOL vmlinux 0xdfe234ec noop_qdisc +EXPORT_SYMBOL vmlinux 0xdff5a7ca scsi_register_interface +EXPORT_SYMBOL vmlinux 0xe003ffdd __wait_on_buffer +EXPORT_SYMBOL vmlinux 0xe0257069 blk_queue_max_hw_sectors +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 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 0xe0b237c6 free_cgroup_ns +EXPORT_SYMBOL vmlinux 0xe0bc4fb2 simple_write_to_buffer +EXPORT_SYMBOL vmlinux 0xe0c86422 end_buffer_write_sync +EXPORT_SYMBOL vmlinux 0xe0d9f93b debugfs_create_automount +EXPORT_SYMBOL vmlinux 0xe10ea759 dquot_quota_sync +EXPORT_SYMBOL vmlinux 0xe133dbbd flow_get_u32_dst +EXPORT_SYMBOL vmlinux 0xe16ffd2e blk_mq_start_hw_queue +EXPORT_SYMBOL vmlinux 0xe1761617 security_inet_conn_request +EXPORT_SYMBOL vmlinux 0xe180d335 netif_tx_wake_queue +EXPORT_SYMBOL vmlinux 0xe1948185 mem_cgroup_end_page_stat +EXPORT_SYMBOL vmlinux 0xe1a36027 pci_bus_put +EXPORT_SYMBOL vmlinux 0xe1af2a79 raw3270_add_view +EXPORT_SYMBOL vmlinux 0xe1d077e5 sync_inode +EXPORT_SYMBOL vmlinux 0xe1d8f4be xfrm_state_register_afinfo +EXPORT_SYMBOL vmlinux 0xe1dc8bdf jbd2__journal_restart +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 0xe21c297c pci_request_regions +EXPORT_SYMBOL vmlinux 0xe222b943 dma_common_mmap +EXPORT_SYMBOL vmlinux 0xe23aab2d tty_schedule_flip +EXPORT_SYMBOL vmlinux 0xe23ae481 blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe2499e90 redirty_page_for_writepage +EXPORT_SYMBOL vmlinux 0xe24d3a97 jiffies_64 +EXPORT_SYMBOL vmlinux 0xe257e3da tcp_v4_conn_request +EXPORT_SYMBOL vmlinux 0xe27111eb netif_rx +EXPORT_SYMBOL vmlinux 0xe2947a8c pcix_get_max_mmrbc +EXPORT_SYMBOL vmlinux 0xe29e1d0e out_of_line_wait_on_atomic_t +EXPORT_SYMBOL vmlinux 0xe2b43b66 blk_delay_queue +EXPORT_SYMBOL vmlinux 0xe2b72f4d security_path_rmdir +EXPORT_SYMBOL vmlinux 0xe2cee82c generic_setxattr +EXPORT_SYMBOL vmlinux 0xe2d5255a strcmp +EXPORT_SYMBOL vmlinux 0xe2e556c2 blk_integrity_compare +EXPORT_SYMBOL vmlinux 0xe2e5beba zpool_register_driver +EXPORT_SYMBOL vmlinux 0xe2f425e7 rps_cpu_mask +EXPORT_SYMBOL vmlinux 0xe317764d jiffies_to_timespec64 +EXPORT_SYMBOL vmlinux 0xe3529117 __bread_gfp +EXPORT_SYMBOL vmlinux 0xe3632f6a proc_doulongvec_minmax +EXPORT_SYMBOL vmlinux 0xe3a77f95 jbd2_journal_try_to_free_buffers +EXPORT_SYMBOL vmlinux 0xe3baeb78 blk_limits_io_min +EXPORT_SYMBOL vmlinux 0xe3c3b60e iterate_supers_type +EXPORT_SYMBOL vmlinux 0xe3caa2b5 netdev_warn +EXPORT_SYMBOL vmlinux 0xe3cd084d d_hash_and_lookup +EXPORT_SYMBOL vmlinux 0xe3cdf0d7 kmem_cache_destroy +EXPORT_SYMBOL vmlinux 0xe3de3abc dev_set_allmulti +EXPORT_SYMBOL vmlinux 0xe4036527 pci_enable_device +EXPORT_SYMBOL vmlinux 0xe40a9b62 skb_append_datato_frags +EXPORT_SYMBOL vmlinux 0xe4409190 mem_section +EXPORT_SYMBOL vmlinux 0xe4637538 inode_sub_bytes +EXPORT_SYMBOL vmlinux 0xe467f9aa sclp_register +EXPORT_SYMBOL vmlinux 0xe479a964 dump_fpu +EXPORT_SYMBOL vmlinux 0xe4a40d2f diag210 +EXPORT_SYMBOL vmlinux 0xe4e37493 netdev_notice +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 0xe51fed85 complete_all +EXPORT_SYMBOL vmlinux 0xe523ad75 synchronize_irq +EXPORT_SYMBOL vmlinux 0xe5364b80 udp_del_offload +EXPORT_SYMBOL vmlinux 0xe54036ef mempool_resize +EXPORT_SYMBOL vmlinux 0xe54cb914 cont_write_begin +EXPORT_SYMBOL vmlinux 0xe55396e8 page_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xe57878a1 in6_pton +EXPORT_SYMBOL vmlinux 0xe5844045 tcp_recvmsg +EXPORT_SYMBOL vmlinux 0xe5867808 dlci_ioctl_set +EXPORT_SYMBOL vmlinux 0xe5947ff1 dev_uc_init +EXPORT_SYMBOL vmlinux 0xe59ae91b dst_init +EXPORT_SYMBOL vmlinux 0xe5aa3766 padata_add_cpu +EXPORT_SYMBOL vmlinux 0xe5b276aa proc_dointvec_minmax +EXPORT_SYMBOL vmlinux 0xe5c9bace scsi_remove_host +EXPORT_SYMBOL vmlinux 0xe5cabb9d scsi_device_resume +EXPORT_SYMBOL vmlinux 0xe5e87338 dquot_operations +EXPORT_SYMBOL vmlinux 0xe5ed5467 xfrm_policy_walk_init +EXPORT_SYMBOL vmlinux 0xe6008cef simple_dir_operations +EXPORT_SYMBOL vmlinux 0xe623f8ea pci_map_rom +EXPORT_SYMBOL vmlinux 0xe64fa23d dmam_alloc_noncoherent +EXPORT_SYMBOL vmlinux 0xe67d680b ihold +EXPORT_SYMBOL vmlinux 0xe697d108 __blk_iopoll_complete +EXPORT_SYMBOL vmlinux 0xe6a1181b md_check_recovery +EXPORT_SYMBOL vmlinux 0xe6c3e8ac neigh_seq_start +EXPORT_SYMBOL vmlinux 0xe6c67c4d pagecache_write_begin +EXPORT_SYMBOL vmlinux 0xe6ce9f82 unregister_nls +EXPORT_SYMBOL vmlinux 0xe6d008de fsnotify_init_mark +EXPORT_SYMBOL vmlinux 0xe6d2a1bf sock_common_recvmsg +EXPORT_SYMBOL vmlinux 0xe6d88a39 tcp_prot +EXPORT_SYMBOL vmlinux 0xe6e36e6f unlock_buffer +EXPORT_SYMBOL vmlinux 0xe6ed8f65 alloc_skb_with_frags +EXPORT_SYMBOL vmlinux 0xe6f1486d dql_reset +EXPORT_SYMBOL vmlinux 0xe6fbe430 can_do_mlock +EXPORT_SYMBOL vmlinux 0xe713a97a irq_subclass_unregister +EXPORT_SYMBOL vmlinux 0xe71526d2 xfrm4_protocol_deregister +EXPORT_SYMBOL vmlinux 0xe7225650 netlink_set_err +EXPORT_SYMBOL vmlinux 0xe72db09f unregister_console +EXPORT_SYMBOL vmlinux 0xe74fbb97 tty_register_ldisc +EXPORT_SYMBOL vmlinux 0xe775565b ip6_dst_hoplimit +EXPORT_SYMBOL vmlinux 0xe77dcfcf set_disk_ro +EXPORT_SYMBOL vmlinux 0xe77e14fe nla_put_nohdr +EXPORT_SYMBOL vmlinux 0xe7a81967 audit_log_secctx +EXPORT_SYMBOL vmlinux 0xe7c40074 inet_csk_destroy_sock +EXPORT_SYMBOL vmlinux 0xe7cc01cd nobh_writepage +EXPORT_SYMBOL vmlinux 0xe7d4daac seq_list_next +EXPORT_SYMBOL vmlinux 0xe7efdfbf inet6_del_protocol +EXPORT_SYMBOL vmlinux 0xe7fc6ca2 kmem_cache_alloc_node +EXPORT_SYMBOL vmlinux 0xe8116e08 __kmalloc_node +EXPORT_SYMBOL vmlinux 0xe81ac5d3 unlock_page +EXPORT_SYMBOL vmlinux 0xe8214184 tcf_exts_destroy +EXPORT_SYMBOL vmlinux 0xe84d7016 alloc_file +EXPORT_SYMBOL vmlinux 0xe865722f blk_queue_chunk_sectors +EXPORT_SYMBOL vmlinux 0xe897319f blk_mq_all_tag_busy_iter +EXPORT_SYMBOL vmlinux 0xe8a73aaf out_of_line_wait_on_bit +EXPORT_SYMBOL vmlinux 0xe8adee13 drop_nlink +EXPORT_SYMBOL vmlinux 0xe8bea3bc qdisc_put_stab +EXPORT_SYMBOL vmlinux 0xe8ef0ff0 current_kernel_time64 +EXPORT_SYMBOL vmlinux 0xe914e41e strcpy +EXPORT_SYMBOL vmlinux 0xe916a47a unregister_tcf_proto_ops +EXPORT_SYMBOL vmlinux 0xe91f38dd delete_from_page_cache +EXPORT_SYMBOL vmlinux 0xe92b0435 blk_mq_stop_hw_queue +EXPORT_SYMBOL vmlinux 0xe945b173 tty_port_raise_dtr_rts +EXPORT_SYMBOL vmlinux 0xe945e5cd free_buffer_head +EXPORT_SYMBOL vmlinux 0xe953b21f get_next_ino +EXPORT_SYMBOL vmlinux 0xe95e00cf flex_array_get_ptr +EXPORT_SYMBOL vmlinux 0xe98709ff key_reject_and_link +EXPORT_SYMBOL vmlinux 0xe9989c8c itcw_get_tcw +EXPORT_SYMBOL vmlinux 0xe99c7960 bitmap_startwrite +EXPORT_SYMBOL vmlinux 0xe9a5b69a debug_hex_ascii_view +EXPORT_SYMBOL vmlinux 0xe9c59f2b netdev_class_create_file_ns +EXPORT_SYMBOL vmlinux 0xe9d90f15 jbd2_journal_set_triggers +EXPORT_SYMBOL vmlinux 0xe9f82f95 udplite_prot +EXPORT_SYMBOL vmlinux 0xea054b22 nla_policy_len +EXPORT_SYMBOL vmlinux 0xea241582 bio_endio +EXPORT_SYMBOL vmlinux 0xea2d5d27 get_cached_acl_rcu +EXPORT_SYMBOL vmlinux 0xea5f41bd add_wait_queue +EXPORT_SYMBOL vmlinux 0xea7a42f9 __sg_free_table +EXPORT_SYMBOL vmlinux 0xea872313 find_next_bit_inv +EXPORT_SYMBOL vmlinux 0xeab7c559 user_path_at_empty +EXPORT_SYMBOL vmlinux 0xeacb1431 tty_kref_put +EXPORT_SYMBOL vmlinux 0xead58fb9 print_hex_dump +EXPORT_SYMBOL vmlinux 0xead6e56e from_kgid +EXPORT_SYMBOL vmlinux 0xeaebe562 tcf_hash_search +EXPORT_SYMBOL vmlinux 0xeb01f303 __generic_file_fsync +EXPORT_SYMBOL vmlinux 0xeb308abb vfs_path_lookup +EXPORT_SYMBOL vmlinux 0xeb37101c audit_log_end +EXPORT_SYMBOL vmlinux 0xeb50d9b0 blk_mq_kick_requeue_list +EXPORT_SYMBOL vmlinux 0xeb71a848 raw3270_start_locked +EXPORT_SYMBOL vmlinux 0xebaedd60 md_wait_for_blocked_rdev +EXPORT_SYMBOL vmlinux 0xebbf1dba strncasecmp +EXPORT_SYMBOL vmlinux 0xebc6a40e blk_mq_start_request +EXPORT_SYMBOL vmlinux 0xebf9048d revert_creds +EXPORT_SYMBOL vmlinux 0xebfae51b xfrm_policy_bysel_ctx +EXPORT_SYMBOL vmlinux 0xec0392f0 cdev_del +EXPORT_SYMBOL vmlinux 0xec0a2a2e bio_integrity_prep +EXPORT_SYMBOL vmlinux 0xec1d7a86 kernel_accept +EXPORT_SYMBOL vmlinux 0xec1d94d3 sock_cmsg_send +EXPORT_SYMBOL vmlinux 0xec27c4d1 kstrtoull_from_user +EXPORT_SYMBOL vmlinux 0xec2bf6aa dquot_mark_dquot_dirty +EXPORT_SYMBOL vmlinux 0xec7223ac sock_alloc_file +EXPORT_SYMBOL vmlinux 0xec9b668d find_inode_nowait +EXPORT_SYMBOL vmlinux 0xec9db317 ccw_device_get_ciw +EXPORT_SYMBOL vmlinux 0xecc77f82 kill_pgrp +EXPORT_SYMBOL vmlinux 0xecc7eb38 blk_mq_run_hw_queues +EXPORT_SYMBOL vmlinux 0xece35ee5 filemap_page_mkwrite +EXPORT_SYMBOL vmlinux 0xece784c2 rb_first +EXPORT_SYMBOL vmlinux 0xecef11eb iucv_path_connect +EXPORT_SYMBOL vmlinux 0xed0190c0 arp_tbl +EXPORT_SYMBOL vmlinux 0xed02e3e0 ccw_device_tm_start_timeout +EXPORT_SYMBOL vmlinux 0xed04cd33 __sk_mem_reclaim +EXPORT_SYMBOL vmlinux 0xed1513ae __module_put_and_exit +EXPORT_SYMBOL vmlinux 0xed5190bd kmem_cache_alloc +EXPORT_SYMBOL vmlinux 0xed597524 qdisc_get_rtab +EXPORT_SYMBOL vmlinux 0xed87540b blk_free_tags +EXPORT_SYMBOL vmlinux 0xed8bcabd __pskb_copy_fclone +EXPORT_SYMBOL vmlinux 0xed8ccd59 blk_queue_start_tag +EXPORT_SYMBOL vmlinux 0xed993b1f tcp_connect +EXPORT_SYMBOL vmlinux 0xed9f9a20 __ctzsi2 +EXPORT_SYMBOL vmlinux 0xedac3a57 dquot_quota_on_mount +EXPORT_SYMBOL vmlinux 0xedbaee5e nla_strcmp +EXPORT_SYMBOL vmlinux 0xedcb9e0e iput +EXPORT_SYMBOL vmlinux 0xede300db blk_mq_can_queue +EXPORT_SYMBOL vmlinux 0xedebc977 force_sig +EXPORT_SYMBOL vmlinux 0xedf3cc6f get_random_long +EXPORT_SYMBOL vmlinux 0xee2d0fc7 _local_bh_enable +EXPORT_SYMBOL vmlinux 0xee4d3c9d sock_kfree_s +EXPORT_SYMBOL vmlinux 0xee5f2db8 pci_scan_root_bus +EXPORT_SYMBOL vmlinux 0xee61f9b8 ccw_device_tm_start_timeout_key +EXPORT_SYMBOL vmlinux 0xee777581 fput +EXPORT_SYMBOL vmlinux 0xee780831 mount_single +EXPORT_SYMBOL vmlinux 0xee7a5fcf pci_bus_get +EXPORT_SYMBOL vmlinux 0xee81a3ce ip_do_fragment +EXPORT_SYMBOL vmlinux 0xee91879b rb_first_postorder +EXPORT_SYMBOL vmlinux 0xee9787f8 configfs_register_group +EXPORT_SYMBOL vmlinux 0xeea9dbaf bitmap_bitremap +EXPORT_SYMBOL vmlinux 0xeef161aa groups_free +EXPORT_SYMBOL vmlinux 0xeef97c35 generic_write_checks +EXPORT_SYMBOL vmlinux 0xef0c6c8b dquot_commit +EXPORT_SYMBOL vmlinux 0xef11477d udp_poll +EXPORT_SYMBOL vmlinux 0xef170eb3 sk_free +EXPORT_SYMBOL vmlinux 0xef3192d0 jbd2_trans_will_send_data_barrier +EXPORT_SYMBOL vmlinux 0xef45d32c __kfifo_init +EXPORT_SYMBOL vmlinux 0xef6ab2a8 seq_file_path +EXPORT_SYMBOL vmlinux 0xef732d59 bio_integrity_clone +EXPORT_SYMBOL vmlinux 0xef7c4934 __task_pid_nr_ns +EXPORT_SYMBOL vmlinux 0xef853941 d_alloc_name +EXPORT_SYMBOL vmlinux 0xef9cebb7 kfree_put_link +EXPORT_SYMBOL vmlinux 0xefb86b85 __cleancache_put_page +EXPORT_SYMBOL vmlinux 0xefdd70ce security_secid_to_secctx +EXPORT_SYMBOL vmlinux 0xefec0f02 seq_pad +EXPORT_SYMBOL vmlinux 0xeff6afa8 audit_log_start +EXPORT_SYMBOL vmlinux 0xf0009fee put_pages_list +EXPORT_SYMBOL vmlinux 0xf00d2908 scsi_host_lookup +EXPORT_SYMBOL vmlinux 0xf012c501 tty_check_change +EXPORT_SYMBOL vmlinux 0xf0187927 __sg_page_iter_next +EXPORT_SYMBOL vmlinux 0xf03315af jbd2_journal_revoke +EXPORT_SYMBOL vmlinux 0xf04e22b3 debug_event_common +EXPORT_SYMBOL vmlinux 0xf067257c register_memory_isolate_notifier +EXPORT_SYMBOL vmlinux 0xf06a946e seq_put_decimal_ll +EXPORT_SYMBOL vmlinux 0xf073eab1 sk_stream_kill_queues +EXPORT_SYMBOL vmlinux 0xf077bd7e blk_queue_max_discard_sectors +EXPORT_SYMBOL vmlinux 0xf07b882f flow_cache_lookup +EXPORT_SYMBOL vmlinux 0xf08c67de napi_alloc_frag +EXPORT_SYMBOL vmlinux 0xf08caf05 eth_gro_complete +EXPORT_SYMBOL vmlinux 0xf09de776 get_random_int +EXPORT_SYMBOL vmlinux 0xf09e04aa gnet_stats_start_copy_compat +EXPORT_SYMBOL vmlinux 0xf0a8237a radix_tree_gang_lookup_tag +EXPORT_SYMBOL vmlinux 0xf0b6e205 pci_enable_msix_range +EXPORT_SYMBOL vmlinux 0xf0c620e2 d_drop +EXPORT_SYMBOL vmlinux 0xf0c824cb netdev_err +EXPORT_SYMBOL vmlinux 0xf0d51150 netdev_upper_dev_link +EXPORT_SYMBOL vmlinux 0xf0dc1015 dev_printk_emit +EXPORT_SYMBOL vmlinux 0xf0ef15b4 list_sort +EXPORT_SYMBOL vmlinux 0xf10526ac verify_spi_info +EXPORT_SYMBOL vmlinux 0xf1091e0c netdev_lower_dev_get_private +EXPORT_SYMBOL vmlinux 0xf11543ff find_first_zero_bit +EXPORT_SYMBOL vmlinux 0xf122c1c5 lg_local_unlock_cpu +EXPORT_SYMBOL vmlinux 0xf129b35f vfs_iter_read +EXPORT_SYMBOL vmlinux 0xf1892dcd bio_alloc_bioset +EXPORT_SYMBOL vmlinux 0xf1969a8e __usecs_to_jiffies +EXPORT_SYMBOL vmlinux 0xf1a1202a try_module_get +EXPORT_SYMBOL vmlinux 0xf1db1704 nla_memcpy +EXPORT_SYMBOL vmlinux 0xf1e98c74 avenrun +EXPORT_SYMBOL vmlinux 0xf1f0ccba jbd2_journal_lock_updates +EXPORT_SYMBOL vmlinux 0xf20dabd8 free_irq +EXPORT_SYMBOL vmlinux 0xf218480e unregister_md_personality +EXPORT_SYMBOL vmlinux 0xf2280fe6 udp_ioctl +EXPORT_SYMBOL vmlinux 0xf23fcb99 __kfifo_in +EXPORT_SYMBOL vmlinux 0xf248d459 kernel_param_unlock +EXPORT_SYMBOL vmlinux 0xf284ad66 up_write +EXPORT_SYMBOL vmlinux 0xf28e58a9 napi_gro_frags +EXPORT_SYMBOL vmlinux 0xf2997713 tty_termios_hw_change +EXPORT_SYMBOL vmlinux 0xf29dfd0f submit_bh +EXPORT_SYMBOL vmlinux 0xf2a12471 passthru_features_check +EXPORT_SYMBOL vmlinux 0xf2b75c16 generic_block_bmap +EXPORT_SYMBOL vmlinux 0xf301b0c8 tcp_proc_unregister +EXPORT_SYMBOL vmlinux 0xf313da4e sha_transform +EXPORT_SYMBOL vmlinux 0xf32429dd release_pages +EXPORT_SYMBOL vmlinux 0xf3266162 memcg_kmem_enabled_key +EXPORT_SYMBOL vmlinux 0xf3341268 __clear_user +EXPORT_SYMBOL vmlinux 0xf346231f seq_list_start_head +EXPORT_SYMBOL vmlinux 0xf353a698 register_module_notifier +EXPORT_SYMBOL vmlinux 0xf36a1744 cancel_dirty_page +EXPORT_SYMBOL vmlinux 0xf389fe60 __hw_addr_init +EXPORT_SYMBOL vmlinux 0xf38d7c92 __put_cred +EXPORT_SYMBOL vmlinux 0xf3e6402e __bitmap_equal +EXPORT_SYMBOL vmlinux 0xf3e782d7 param_get_bool +EXPORT_SYMBOL vmlinux 0xf3e8e19f fget_raw +EXPORT_SYMBOL vmlinux 0xf3e9af9f end_buffer_read_sync +EXPORT_SYMBOL vmlinux 0xf3fc3b26 inode_add_rsv_space +EXPORT_SYMBOL vmlinux 0xf4082ec8 eth_mac_addr +EXPORT_SYMBOL vmlinux 0xf44410d3 pci_bus_write_config_word +EXPORT_SYMBOL vmlinux 0xf44a9ec4 proc_dointvec_ms_jiffies +EXPORT_SYMBOL vmlinux 0xf4528073 scsi_kmap_atomic_sg +EXPORT_SYMBOL vmlinux 0xf456b3f3 configfs_depend_item +EXPORT_SYMBOL vmlinux 0xf470fe6e pcie_get_mps +EXPORT_SYMBOL vmlinux 0xf474c21c bitmap_print_to_pagebuf +EXPORT_SYMBOL vmlinux 0xf474fdcb kfree_const +EXPORT_SYMBOL vmlinux 0xf4b7e6d9 crypto_sha256_finup +EXPORT_SYMBOL vmlinux 0xf4bd44b0 unregister_filesystem +EXPORT_SYMBOL vmlinux 0xf4bdbeb9 __frontswap_invalidate_area +EXPORT_SYMBOL vmlinux 0xf4ce240c skb_pull +EXPORT_SYMBOL vmlinux 0xf4dedfd9 kmem_cache_create +EXPORT_SYMBOL vmlinux 0xf4f14de6 rtnl_trylock +EXPORT_SYMBOL vmlinux 0xf4f1d73f __kfifo_out_peek_r +EXPORT_SYMBOL vmlinux 0xf51210fa make_kgid +EXPORT_SYMBOL vmlinux 0xf513b656 skb_vlan_push +EXPORT_SYMBOL vmlinux 0xf52dc8c1 setup_new_exec +EXPORT_SYMBOL vmlinux 0xf53bf7d0 __quota_error +EXPORT_SYMBOL vmlinux 0xf53d4c26 qdisc_class_hash_destroy +EXPORT_SYMBOL vmlinux 0xf551d5c8 inode_add_bytes +EXPORT_SYMBOL vmlinux 0xf57dfc3a ip_options_rcv_srr +EXPORT_SYMBOL vmlinux 0xf584e6fd textsearch_destroy +EXPORT_SYMBOL vmlinux 0xf5868a2e dmam_pool_create +EXPORT_SYMBOL vmlinux 0xf5b365a4 generic_perform_write +EXPORT_SYMBOL vmlinux 0xf5cbf307 mount_pseudo +EXPORT_SYMBOL vmlinux 0xf5d0e70f bio_integrity_add_page +EXPORT_SYMBOL vmlinux 0xf5d4275e simple_follow_link +EXPORT_SYMBOL vmlinux 0xf5eb86ea blk_verify_command +EXPORT_SYMBOL vmlinux 0xf5edd434 inet_proto_csum_replace4 +EXPORT_SYMBOL vmlinux 0xf5ee91ca ip_mc_join_group +EXPORT_SYMBOL vmlinux 0xf61f7013 blk_put_request +EXPORT_SYMBOL vmlinux 0xf6388c56 sysctl_ip_default_ttl +EXPORT_SYMBOL vmlinux 0xf63b8497 vmemmap +EXPORT_SYMBOL vmlinux 0xf6770391 mac_pton +EXPORT_SYMBOL vmlinux 0xf68285c0 register_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xf68687be __sg_page_iter_start +EXPORT_SYMBOL vmlinux 0xf687aa3f sock_no_ioctl +EXPORT_SYMBOL vmlinux 0xf69c6b06 check_disk_change +EXPORT_SYMBOL vmlinux 0xf6b0eed7 vlan_vids_add_by_dev +EXPORT_SYMBOL vmlinux 0xf6c09363 generic_file_splice_read +EXPORT_SYMBOL vmlinux 0xf6ebc03b net_ratelimit +EXPORT_SYMBOL vmlinux 0xf6f60fb0 thaw_super +EXPORT_SYMBOL vmlinux 0xf6f89888 proc_set_size +EXPORT_SYMBOL vmlinux 0xf6fc8791 __bitmap_xor +EXPORT_SYMBOL vmlinux 0xf708e9d5 pci_setup_cardbus +EXPORT_SYMBOL vmlinux 0xf70fe2c6 key_invalidate +EXPORT_SYMBOL vmlinux 0xf74686fb tcp_md5_do_del +EXPORT_SYMBOL vmlinux 0xf774cdfc inet_add_protocol +EXPORT_SYMBOL vmlinux 0xf77dc5d6 generic_end_io_acct +EXPORT_SYMBOL vmlinux 0xf789de96 dm_io +EXPORT_SYMBOL vmlinux 0xf796623a kobject_put +EXPORT_SYMBOL vmlinux 0xf7984e83 neigh_changeaddr +EXPORT_SYMBOL vmlinux 0xf7a59e44 dup_iter +EXPORT_SYMBOL vmlinux 0xf7d71918 __kfifo_in_r +EXPORT_SYMBOL vmlinux 0xf7f2d25d iucv_message_send2way +EXPORT_SYMBOL vmlinux 0xf7f95c09 generic_write_end +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 0xf837395a bitmap_endwrite +EXPORT_SYMBOL vmlinux 0xf85118d7 nf_log_bind_pf +EXPORT_SYMBOL vmlinux 0xf859408d tty_do_resize +EXPORT_SYMBOL vmlinux 0xf886c843 security_inode_getsecctx +EXPORT_SYMBOL vmlinux 0xf89ad20f dentry_unhash +EXPORT_SYMBOL vmlinux 0xf89cfde7 VMALLOC_START +EXPORT_SYMBOL vmlinux 0xf8ad9d27 block_read_full_page +EXPORT_SYMBOL vmlinux 0xf8c082d9 generic_make_request +EXPORT_SYMBOL vmlinux 0xf8c1e723 md_register_thread +EXPORT_SYMBOL vmlinux 0xf8dbb741 xfrm6_rcv_cb +EXPORT_SYMBOL vmlinux 0xf8ecd0d2 vlan_vids_del_by_dev +EXPORT_SYMBOL vmlinux 0xf8efb3d2 __get_hash_from_flowi6 +EXPORT_SYMBOL vmlinux 0xf92f3525 inet_csk_reset_keepalive_timer +EXPORT_SYMBOL vmlinux 0xf95d5641 ida_destroy +EXPORT_SYMBOL vmlinux 0xf95f7b36 pci_disable_msi +EXPORT_SYMBOL vmlinux 0xf968169d km_new_mapping +EXPORT_SYMBOL vmlinux 0xf9a482f9 msleep +EXPORT_SYMBOL vmlinux 0xf9a649d8 alloc_pages_current +EXPORT_SYMBOL vmlinux 0xf9afc935 pci_request_region_exclusive +EXPORT_SYMBOL vmlinux 0xf9b87720 sock_no_bind +EXPORT_SYMBOL vmlinux 0xf9bc853d starget_for_each_device +EXPORT_SYMBOL vmlinux 0xf9e63c6f dev_mc_add_excl +EXPORT_SYMBOL vmlinux 0xf9fa96c2 blkdev_issue_write_same +EXPORT_SYMBOL vmlinux 0xfa063e72 bfifo_qdisc_ops +EXPORT_SYMBOL vmlinux 0xfa06c84b tso_build_data +EXPORT_SYMBOL vmlinux 0xfa085f04 __scsi_print_sense +EXPORT_SYMBOL vmlinux 0xfa100dff sock_no_getname +EXPORT_SYMBOL vmlinux 0xfa2dae6b dev_crit +EXPORT_SYMBOL vmlinux 0xfa460a62 inode_init_once +EXPORT_SYMBOL vmlinux 0xfa5176b4 scsi_set_sense_information +EXPORT_SYMBOL vmlinux 0xfa599bb2 netlink_register_notifier +EXPORT_SYMBOL vmlinux 0xfa7f323f sk_capable +EXPORT_SYMBOL vmlinux 0xfa9d9297 locks_copy_conflock +EXPORT_SYMBOL vmlinux 0xfaa09920 trace_print_hex_seq +EXPORT_SYMBOL vmlinux 0xfaaee103 ipv6_chk_custom_prefix +EXPORT_SYMBOL vmlinux 0xfac60968 lg_lock_init +EXPORT_SYMBOL vmlinux 0xfac8865f sysctl_wmem_max +EXPORT_SYMBOL vmlinux 0xfade85b9 __sk_backlog_rcv +EXPORT_SYMBOL vmlinux 0xfae67b1f cap_mmap_addr +EXPORT_SYMBOL vmlinux 0xfaedcf25 pci_disable_link_state_locked +EXPORT_SYMBOL vmlinux 0xfaf07e14 secpath_dup +EXPORT_SYMBOL vmlinux 0xfb033e47 kernel_read +EXPORT_SYMBOL vmlinux 0xfb0da8df netlink_broadcast_filtered +EXPORT_SYMBOL vmlinux 0xfb0fa895 blk_recount_segments +EXPORT_SYMBOL vmlinux 0xfb21a05a __neigh_create +EXPORT_SYMBOL vmlinux 0xfb5a7a20 lease_get_mtime +EXPORT_SYMBOL vmlinux 0xfb6af58d recalc_sigpending +EXPORT_SYMBOL vmlinux 0xfb6b6f74 raw3270_request_free +EXPORT_SYMBOL vmlinux 0xfb725329 mempool_create_node +EXPORT_SYMBOL vmlinux 0xfb94103e __clzdi2 +EXPORT_SYMBOL vmlinux 0xfbaaf01e console_lock +EXPORT_SYMBOL vmlinux 0xfbc4f89e io_schedule_timeout +EXPORT_SYMBOL vmlinux 0xfbcef52e xfrm_unregister_km +EXPORT_SYMBOL vmlinux 0xfbf39aa8 idr_alloc_cyclic +EXPORT_SYMBOL vmlinux 0xfc02b7ad sysctl_tcp_wmem +EXPORT_SYMBOL vmlinux 0xfc1b734f jbd2_journal_restart +EXPORT_SYMBOL vmlinux 0xfc40b25c sock_i_ino +EXPORT_SYMBOL vmlinux 0xfc46bb96 itcw_add_tidaw +EXPORT_SYMBOL vmlinux 0xfc4a5906 __devm_request_region +EXPORT_SYMBOL vmlinux 0xfc59d0bc mempool_destroy +EXPORT_SYMBOL vmlinux 0xfc5ac52d inet_sendpage +EXPORT_SYMBOL vmlinux 0xfcc2a43c utf32_to_utf8 +EXPORT_SYMBOL vmlinux 0xfcca229d blk_integrity_merge_rq +EXPORT_SYMBOL vmlinux 0xfcd49355 frontswap_register_ops +EXPORT_SYMBOL vmlinux 0xfcd612bd arp_create +EXPORT_SYMBOL vmlinux 0xfce6f3c0 neigh_table_clear +EXPORT_SYMBOL vmlinux 0xfceaadd4 genl_notify +EXPORT_SYMBOL vmlinux 0xfcec0987 enable_irq +EXPORT_SYMBOL vmlinux 0xfcf0b5a9 filemap_fdatawrite +EXPORT_SYMBOL vmlinux 0xfcffe8ca sclp_pci_configure +EXPORT_SYMBOL vmlinux 0xfd0e19ae skb_get_hash_perturb +EXPORT_SYMBOL vmlinux 0xfd1cad7a bh_uptodate_or_lock +EXPORT_SYMBOL vmlinux 0xfd1f632c dev_trans_start +EXPORT_SYMBOL vmlinux 0xfd2a215a qdisc_list_del +EXPORT_SYMBOL vmlinux 0xfd2ffaa2 __skb_get_hash +EXPORT_SYMBOL vmlinux 0xfd3507c3 key_unlink +EXPORT_SYMBOL vmlinux 0xfd548a51 remove_proc_entry +EXPORT_SYMBOL vmlinux 0xfd573093 dev_addr_init +EXPORT_SYMBOL vmlinux 0xfd7b9601 skb_checksum_trimmed +EXPORT_SYMBOL vmlinux 0xfd8066c9 kmem_cache_free +EXPORT_SYMBOL vmlinux 0xfd913ec7 blk_mq_start_stopped_hw_queues +EXPORT_SYMBOL vmlinux 0xfd99623a ip_frag_ecn_table +EXPORT_SYMBOL vmlinux 0xfdb7d0de __inc_zone_page_state +EXPORT_SYMBOL vmlinux 0xfdbe0288 pci_add_resource_offset +EXPORT_SYMBOL vmlinux 0xfdc31993 find_get_entry +EXPORT_SYMBOL vmlinux 0xfdf136d3 blk_pm_runtime_init +EXPORT_SYMBOL vmlinux 0xfdfc0b3b fiemap_fill_next_extent +EXPORT_SYMBOL vmlinux 0xfdfe0add pci_get_device +EXPORT_SYMBOL vmlinux 0xfe029963 unregister_inetaddr_notifier +EXPORT_SYMBOL vmlinux 0xfe17047b kblockd_schedule_delayed_work_on +EXPORT_SYMBOL vmlinux 0xfe1faca6 cdrom_ioctl +EXPORT_SYMBOL vmlinux 0xfe26fc7c nr_node_ids +EXPORT_SYMBOL vmlinux 0xfe28ec9a sg_miter_stop +EXPORT_SYMBOL vmlinux 0xfe382029 key_validate +EXPORT_SYMBOL vmlinux 0xfe4e3c35 fget +EXPORT_SYMBOL vmlinux 0xfe5d4bb2 sys_tz +EXPORT_SYMBOL vmlinux 0xfe5d73b3 security_file_permission +EXPORT_SYMBOL vmlinux 0xfe660fca pcim_iounmap +EXPORT_SYMBOL vmlinux 0xfe6f079f __sk_mem_schedule +EXPORT_SYMBOL vmlinux 0xfe76b412 udp_proc_register +EXPORT_SYMBOL vmlinux 0xfe7c4287 nr_cpu_ids +EXPORT_SYMBOL vmlinux 0xfe89bef6 invalidate_bdev +EXPORT_SYMBOL vmlinux 0xfeaf15d2 put_page +EXPORT_SYMBOL vmlinux 0xfec4ac3b register_netdevice +EXPORT_SYMBOL vmlinux 0xfedcdb60 seq_hlist_next_percpu +EXPORT_SYMBOL vmlinux 0xfee273f6 __sb_end_write +EXPORT_SYMBOL vmlinux 0xfeeedb8f __page_cache_alloc +EXPORT_SYMBOL vmlinux 0xfef08c39 simple_symlink_inode_operations +EXPORT_SYMBOL vmlinux 0xfef756ae generic_cont_expand_simple +EXPORT_SYMBOL vmlinux 0xfefa10ea sock_wmalloc +EXPORT_SYMBOL vmlinux 0xff1e9dd8 seq_list_start +EXPORT_SYMBOL vmlinux 0xff1fdade truncate_pagecache_range +EXPORT_SYMBOL vmlinux 0xff50201e lockref_put_or_lock +EXPORT_SYMBOL vmlinux 0xff59abd4 ccw_device_set_options_mask +EXPORT_SYMBOL vmlinux 0xff6742e5 dm_put_table_device +EXPORT_SYMBOL vmlinux 0xff7559e4 ioport_resource +EXPORT_SYMBOL vmlinux 0xff8775c9 scsi_ioctl +EXPORT_SYMBOL vmlinux 0xffbe5ebe netif_napi_del +EXPORT_SYMBOL vmlinux 0xffd5a395 default_wake_function +EXPORT_SYMBOL vmlinux 0xffe8a816 flow_cache_init +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 0x01160a9a af_alg_cmsg_send +EXPORT_SYMBOL_GPL crypto/af_alg 0x031cffb1 af_alg_release_parent +EXPORT_SYMBOL_GPL crypto/af_alg 0x4c4b5f81 af_alg_unregister_type +EXPORT_SYMBOL_GPL crypto/af_alg 0x72d7ef70 af_alg_make_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x74e47b73 af_alg_free_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0x97d3c4bb af_alg_accept +EXPORT_SYMBOL_GPL crypto/af_alg 0xa544b18e af_alg_wait_for_completion +EXPORT_SYMBOL_GPL crypto/af_alg 0xb97af58a af_alg_link_sg +EXPORT_SYMBOL_GPL crypto/af_alg 0xd4690461 af_alg_release +EXPORT_SYMBOL_GPL crypto/af_alg 0xe233a910 af_alg_register_type +EXPORT_SYMBOL_GPL crypto/af_alg 0xe641d2d7 af_alg_complete +EXPORT_SYMBOL_GPL crypto/async_tx/async_memcpy 0xe6e898e7 async_memcpy +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0x1ec89722 async_gen_syndrome +EXPORT_SYMBOL_GPL crypto/async_tx/async_pq 0xde001345 async_syndrome_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0x88b63f98 async_raid6_datap_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_raid6_recov 0xcfb9c6d7 async_raid6_2data_recov +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x0732da70 async_tx_quiesce +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x4f24d615 async_tx_submit +EXPORT_SYMBOL_GPL crypto/async_tx/async_tx 0x6e3bebff async_trigger_callback +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0x6d36a4eb async_xor_val +EXPORT_SYMBOL_GPL crypto/async_tx/async_xor 0xbc2400b5 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 0x2a59a75b fpga_mgr_put +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x3153e75e fpga_mgr_unregister +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0x34aaf40f fpga_mgr_firmware_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xa3e8c37a fpga_mgr_buf_load +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xab2f9e51 of_fpga_mgr_get +EXPORT_SYMBOL_GPL drivers/fpga/fpga-mgr 0xcb750f61 fpga_mgr_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x0012cc52 intel_th_driver_unregister +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x436fc7cd intel_th_driver_register +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4855838a intel_th_trace_disable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x4e697674 intel_th_free +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0x54f2de2e intel_th_alloc +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xaafcc2a2 intel_th_trace_enable +EXPORT_SYMBOL_GPL drivers/hwtracing/intel_th/intel_th 0xec04219e intel_th_set_output +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x1cd90482 stm_source_unregister_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x23437f01 stm_source_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x3b1530ba stm_source_write +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0x8db49633 stm_register_device +EXPORT_SYMBOL_GPL drivers/hwtracing/stm/stm_core 0xe662385d stm_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 0x15e96d6e dm_cell_visit_release +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x17dd39d6 dm_deferred_set_create +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x1e92ed85 dm_bio_prison_free_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x2145d229 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 0x369313d2 dm_cell_release_no_holder +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0x439f62ea dm_bio_detain +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 0x762dc3e0 dm_cell_error +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xad203f23 dm_bio_prison_alloc_cell +EXPORT_SYMBOL_GPL drivers/md/dm-bio-prison 0xb444c3bc 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 0xe416f9dd 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 0xcc3f7e9f 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 0x21e16da2 dm_cache_policy_get_version +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x267222b5 dm_cache_policy_get_hint_size +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5890534f dm_cache_policy_get_name +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x5b7bbe09 dm_cache_policy_create +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x92ca94b5 dm_cache_policy_unregister +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0x9b0f27d4 dm_cache_policy_register +EXPORT_SYMBOL_GPL drivers/md/dm-cache 0xe5a878c4 dm_cache_policy_destroy +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0x678aab52 dm_register_path_selector +EXPORT_SYMBOL_GPL drivers/md/dm-multipath 0xb9966391 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 0x3e877c91 dm_rh_delay +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 0x4de78360 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 0x91f7a3ec 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 0xa99e1ef5 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 0xcff6ec5b 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 0xe29ab865 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 0x658f90d7 dm_block_manager_create +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 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 0x00252e6e mlx4_flow_steer_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x027a9305 mlx4_fmr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0300cf0a mlx4_mr_rereg_mem_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0352b96f mlx4_qp_release_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x03716a07 mlx4_pd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x046a84f1 mlx4_mr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0623961c mlx4_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x06a70d32 mlx4_update_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x08e4ef34 __mlx4_cmd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x091288c2 mlx4_wol_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0a35efba mlx4_SYNC_TPT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0b36f010 mlx4_set_vf_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0cca798d mlx4_mr_hw_change_access +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0d336a89 mlx4_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x0f1a532e mlx4_mw_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x11af0d9a mlx4_vf_get_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x122590ab mlx4_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x174c8d28 mlx4_ACCESS_PTYS_REG +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17925a89 mlx4_srq_lookup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x179636e2 mlx4_flow_steer_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x17989435 mlx4_srq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x1e9a626f mlx4_map_sw_to_hw_steering_id +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2032c19b mlx4_set_vf_rate +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x24700522 mlx4_mr_rereg_mem_write +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2608264c mlx4_config_vxlan_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x27c285b5 __mlx4_replace_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x28f41dba mlx4_fmr_unmap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x29d212c3 mlx4_register_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2c552aec mlx4_bf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x2ed1ea69 mlx4_xrcd_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x319162e8 mlx4_counter_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x31be6a0a mlx4_unicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3375730f mlx4_unbond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x33ea741b mlx4_vf_smi_enabled +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3957c210 mlx4_qp_reserve_range +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3b18ddc3 mlx4_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3e2172a1 mlx4_cq_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f76127e mlx4_slave_convert_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x3f906747 mlx4_unicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x413c9b34 mlx4_mr_hw_get_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x41598984 mlx4_find_cached_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x42525a2d mlx4_uar_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4425bd13 mlx4_flow_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x45b3129c mlx4_alloc_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46025853 mlx4_find_cached_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x46f4a128 mlx4_config_dev_retrieval +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x49b4543a mlx4_bond +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4a34869a mlx4_mtt_cleanup +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4b4c9b78 mlx4_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4c4061b9 mlx4_set_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f2dd9d6 mlx4_qp_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x4f828430 mlx4_mtt_addr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5213bc28 mlx4_multicast_detach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52798439 mlx4_map_sw_to_hw_steering_mode +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x52baad71 mlx4_mr_hw_put_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x58d7292f mlx4_srq_arm +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x59bd366f mlx4_qp_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5d73eb64 mlx4_mr_hw_change_pd +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x5dd973b8 mlx4_FLOW_STEERING_IB_UC_QP_RANGE +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x60f616c1 mlx4_phys_to_slaves_pport_actv +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x64fb32d9 mlx4_get_internal_clock_params +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6a04d10c mlx4_set_vf_link_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6b4ae9e8 mlx4_mr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6c67c6c5 mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6d1045fc mlx4_qp_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x6eab5a96 mlx4_phys_to_slave_port +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x738c6dff mlx4_hw_rule_sz +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x746ada5b mlx4_multicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x75f6b939 mlx4_free_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x767a1ecf mlx4_counter_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x79e9e490 mlx4_cq_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7b4da039 mlx4_get_admin_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x7ce4a4a8 mlx4_unregister_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x85395008 mlx4_cq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x865976f2 mlx4_fmr_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8ac29392 mlx4_get_slave_default_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8d083f12 mlx4_set_vf_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8daad860 mlx4_mw_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x8fd4e10f mlx4_uar_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x927dd573 mlx4_wol_read +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x99a2b4ef mlx4_free_cmd_mailbox +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9ad26dcd mlx4_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9da8b299 mlx4_multicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9f53b37f mlx4_unicast_promisc_add +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0x9fbc68ef mlx4_get_vf_config +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa2524cfc mlx4_flow_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xa587551a mlx4_register_vlan +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab0594fb mlx4_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab2ac08c mlx4_mr_hw_write_mpt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xab8de01c mlx4_get_default_counter_index +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xb4a4c03b mlx4_get_active_ports +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb237eca mlx4_qp_to_ready +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbb69cee3 mlx4_fmr_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xbcc8ac51 mlx4_map_phys_fmr +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc0345384 mlx4_set_vf_spoofchk +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc11af898 mlx4_get_base_gid_ix +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc30f4186 mlx4_get_protocol_dev +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc36a6102 mlx4_srq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc4556d94 mlx4_pd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc61fc33d __mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc675e645 mlx4_unicast_attach +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc6f9761d __mlx4_unregister_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xc7395477 mlx4_mtt_init +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xcb71abd8 mlx4_port_map_set +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xd1fd47b3 mlx4_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xda9b7289 mlx4_mr_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdc3dbca1 mlx4_mw_enable +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xdecf2c59 mlx4_buf_write_mtt +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe0fdd2f2 mlx4_cq_resize +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe17eb813 mlx4_get_counter_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe5c0dc3b mlx4_multicast_promisc_remove +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe70d2f83 mlx4_get_vf_stats +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe7cafeab mlx4_register_mac +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xe89a4e03 mlx4_read_clock +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf19366d7 mlx4_alloc_hwq_res +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf78349d2 mlx4_srq_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf8e87b51 mlx4_INIT_PORT +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf98c1199 mlx4_vf_set_enable_smi_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xf9f4adc4 mlx4_get_base_qpn +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfb225496 mlx4_unregister_interface +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfbaafb27 mlx4_phys_to_slaves_pport +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfdaccadf mlx4_replace_zero_macs +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xfef1091e mlx4_bf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx4/mlx4_core 0xff910794 mlx4_CLOSE_PORT +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 0x0a19a816 mlx5_query_hca_vport_system_image_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x14bef869 mlx5_set_port_caps +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1993934d mlx5_query_port_proto_admin +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x1cd2f9ba mlx5_core_qp_modify +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x21e1e14e mlx5_query_port_ptys +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x2e5752c1 mlx5_set_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x346d7605 mlx5_query_hca_vport_node_guid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x3a5043f8 mlx5_core_eq_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x49dff195 mlx5_db_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x57112f9d mlx5_set_port_proto +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x5f5ee1a0 mlx5_buf_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6a3223ba mlx5_core_destroy_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x6cb1a29e mlx5_db_free +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7c42a563 mlx5_core_page_fault_resume +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ce99823 mlx5_query_port_proto_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7ef72b81 mlx5_query_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x7fd67eff mlx5_set_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x81bc6eac mlx5_query_nic_vport_mac_address +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x82876643 mlx5_query_vport_state +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x895ce0f0 mlx5_query_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8a39a3ff mlx5_destroy_unmap_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8aff5fe5 mlx5_core_xrcd_dealloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x8e8af9d3 mlx5_core_xrcd_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x947164ca mlx5_db_alloc_node +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9531a488 mlx5_set_port_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0x9f61a2bb mlx5_core_create_qp +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa72f7d59 mlx5_query_port_max_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa8e47a47 mlx5_modify_nic_vport_vlans +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xa9f46d26 mlx5_query_port_proto_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab57343b mlx5_query_port_pause +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xab5edd44 mlx5_query_port_oper_mtu +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xae351b74 mlx5_create_map_eq +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xaff42607 mlx5_core_qp_query +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xb30c7529 mlx5_query_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xbac3e553 mlx5_core_mad_ifc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xc9950596 mlx5_query_port_admin_status +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xd91b252e mlx5_buf_alloc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe1696233 mlx5_query_port_link_width_oper +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe601cf74 mlx5_query_hca_vport_gid +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xe7b3ff0a mlx5_core_access_reg +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xf0dfcfbe mlx5_query_port_vl_hw_cap +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb1eac93 mlx5_query_hca_vport_pkey +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfb5b2157 mlx5_modify_nic_vport_promisc +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfcf7e567 mlx5_modify_nic_vport_mac_list +EXPORT_SYMBOL_GPL drivers/net/ethernet/mellanox/mlx5/core/mlx5_core 0xfd84035b mlx5_query_hca_vport_context +EXPORT_SYMBOL_GPL drivers/net/geneve 0x519e689a geneve_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/geneve 0xec2baa7c geneve_dev_create_fb +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x20ed64c7 macvlan_common_newlink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x4727a21d macvlan_common_setup +EXPORT_SYMBOL_GPL drivers/net/macvlan 0x874e5744 macvlan_dellink +EXPORT_SYMBOL_GPL drivers/net/macvlan 0xd3f1f2ab macvlan_link_register +EXPORT_SYMBOL_GPL drivers/net/macvtap 0x5d2d6092 macvtap_get_socket +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x132eaa47 bcm_phy_write_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x2b394808 bcm_phy_read_exp +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x32941ae5 bcm_phy_enable_apd +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x60a0a167 bcm_phy_write_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x65fe0401 bcm_phy_ack_intr +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x723e4521 bcm_phy_read_shadow +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x7f246582 bcm_phy_read_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x82106fcb bcm_phy_write_misc +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0x8d521a84 bcm_phy_enable_eee +EXPORT_SYMBOL_GPL drivers/net/phy/bcm-phy-lib 0xaa95e99c bcm_phy_config_intr +EXPORT_SYMBOL_GPL drivers/net/phy/fixed_phy 0x1e4eab13 fixed_phy_register +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/fixed_phy 0xef86078a fixed_phy_set_link_update +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x65a2a4d6 devm_mdiobus_alloc_size +EXPORT_SYMBOL_GPL drivers/net/phy/libphy 0x70e5c780 devm_mdiobus_free +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x1c0d3d95 vxlan_get_rx_port +EXPORT_SYMBOL_GPL drivers/net/vxlan 0x5148d8e8 vxlan_dev_create +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x077a7347 dasd_generic_remove +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0ad4a6c2 dasd_generic_verify_path +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x0c1798df dasd_generic_pm_freeze +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x1491ce8c dasd_wakeup_cb +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x19227556 dasd_nopav +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x26ef94c0 dasd_free_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x2ed39ba6 dasd_generic_uc_handler +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x32f253e1 dasd_generic_path_event +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x413c69ed dasd_generic_set_offline +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x4c80a8ae dasd_generic_last_path_gone +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x627a037d dasd_get_sense +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x70ba26dc dasd_generic_path_operational +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x7fc54589 dasd_put_device_wake +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x87763033 dasd_device_remove_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0x9105b0c7 dasd_generic_probe +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xada9473e dasd_generic_notify +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xaf4ee19f dasd_device_set_stop_bits +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xb38fe028 dasd_page_cache +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xcb0c2073 dasd_generic_restore_device +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xcf3e8d53 dasd_alloc_block +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd69b8ede dasd_generic_read_dev_chars +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xd8dca8e4 dasd_generic_shutdown +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xdc92f4cb dasd_generic_set_online +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xdea9e4f6 dasd_flush_device_queue +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf15784f5 dasd_nofcx +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xf2fdf483 dasd_device_is_ro +EXPORT_SYMBOL_GPL drivers/s390/block/dasd_mod 0xfbb5bb33 dasd_generic_handle_state_change +EXPORT_SYMBOL_GPL drivers/s390/cio/eadm_sch 0x24f2806e eadm_start_aob +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x15e6be55 qdio_shutdown +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x2f4b500e do_QDIO +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x3d0e8757 qdio_allocate +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 0x7f618366 qdio_free +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x8184dc41 qdio_reset_buffers +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0x8f139298 qdio_activate +EXPORT_SYMBOL_GPL drivers/s390/cio/qdio 0xb9f79f8b 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 0xfb088fd2 qdio_get_ssqd_desc +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0302805d qeth_check_qdio_errors +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0413565e qeth_hdr_chk_and_bounce +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0a932878 qeth_device_blkt_group +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0dbdd2dd qeth_setadp_promisc_mode +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x0eda7344 qeth_prepare_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x121e0b42 qeth_device_attr_group +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x12f05544 qeth_card_hw_is_reachable +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2150d9f1 qeth_set_rx_csum +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2b14dcb1 qeth_send_ipa_cmd +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2c40a566 qeth_core_get_strings +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2c56657f qeth_do_send_packet_fast +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2c7f4314 qeth_core_get_next_skb +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2c9029ee qeth_send_simple_setassparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x2cd9e4cc qeth_core_header_cache +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3099b2fc qeth_get_stats +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3b78406b qeth_hw_trap +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x3ee79eae IPA_PDU_HEADER +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x40db87d9 qeth_change_mtu +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x42f57362 qeth_clear_thread_running_bit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x43addce5 qeth_release_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4b521a54 qeth_wq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4bc34109 qeth_set_allowed_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4c935729 qeth_realloc_buffer_pool +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x4eed7ff0 qeth_tx_timeout +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5362574b qeth_qdio_start_poll +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x5536bdf9 qeth_query_ipassists +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x58dd550f qeth_clear_working_pool_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x605c9e9f qeth_queue_input_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x609c3f61 qeth_configure_cq +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x628b67a4 qeth_generic_devtype +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x67179325 qeth_close_dev +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x673e256d qeth_clear_thread_start_bit +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6b858931 qeth_query_oat_command +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x6f7dbfbf qeth_do_send_packet +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7245c8fb qeth_start_ipa_tx_checksum +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x741fdbd8 qeth_send_setassparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7ce42f3a qeth_set_access_ctrl_online +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7d7bcf7b qeth_get_priority_queue +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x7d93fc29 qeth_core_ethtool_get_settings +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x80159cf0 qeth_core_card_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8d64430d qeth_qdio_input_handler +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x8dc989bd qeth_set_recovery_task +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9687f0da qeth_query_setadapterparms +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x97bde8f0 qeth_wait_for_threads +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9819900a qeth_dbf +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9977431b qeth_clear_cmd_buffers +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0x9bc9235c qeth_snmp_command +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa03c0d25 qeth_core_get_ethtool_stats +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xa189cd0c qeth_wait_for_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xaab7ac50 qeth_get_ipacmd_buffer +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb1a4cbce qeth_init_qdio_queues +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb1afe50f qeth_core_hardsetup_card +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xb4b2d651 qeth_clear_recovery_task +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc083e802 qeth_send_control_data +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc4015eb7 qeth_mdio_read +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc8e4dbd7 qeth_get_elements_no +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xc934689b qeth_get_elements_for_frags +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcb011d56 qeth_dbf_longtext +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xce03cedf qeth_core_get_drvinfo +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xcf233152 qeth_clear_qdio_buffers +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xd7fbf7ea qeth_qdio_output_handler +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe54b82c5 qeth_trace_features +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe6e0eb51 qeth_schedule_recovery +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe82e329a qeth_query_switch_attributes +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xe8f0e251 qeth_core_get_sset_count +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xef8d0785 qeth_qdio_clear_card +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf0577b91 qeth_print_status_message +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf13c7f28 qeth_do_run_thread +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf469bb02 qeth_threads_running +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf50c1cea qeth_setadpparms_change_macaddr +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xf946e038 qeth_prepare_control_data +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xfe39a4d6 qeth_send_startlan +EXPORT_SYMBOL_GPL drivers/s390/net/qeth 0xff2de065 qeth_clear_ipacmd_list +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0x9283f974 qeth_bridgeport_an_set +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xaf9a25cc qeth_l2_discipline +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l2 0xbcdafea2 qeth_bridgeport_query_ports +EXPORT_SYMBOL_GPL drivers/s390/net/qeth_l3 0x3e033c11 qeth_l3_discipline +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 0x3c8cc6b1 fcoe_ctlr_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x47ef9090 fcoe_fc_crc +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x48beccb9 fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x4fa41174 fcoe_fcf_device_add +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x58e5a2ad fcoe_validate_vport_create +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x60385396 fcoe_clean_pending_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x77e0a05f fcoe_get_wwn +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x7c2e3d00 fcoe_fcf_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x84b3d915 fcoe_wwn_to_str +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x8e9fab09 fcoe_get_paged_crc_eof +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0x93635cbd fcoe_ctlr_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb1f5c15f fcoe_start_io +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xb8f4fd87 fcoe_link_speed_update +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xbbc8ec29 fcoe_check_wait_queue +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xc3bd8548 __fcoe_get_lesb +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xdf0bdedd fcoe_ctlr_device_delete +EXPORT_SYMBOL_GPL drivers/scsi/fcoe/libfcoe 0xe4e33b85 fcoe_libfc_config +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 0x025929f6 __iscsi_get_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x075fdabd iscsi_host_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x12b2ad06 iscsi_switch_str_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1a5019a3 iscsi_eh_session_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x1f18f698 iscsi_session_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x23033e98 iscsi_host_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x245dc09a iscsi_itt_to_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x2585d529 iscsi_eh_recover_target +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3bef2f73 iscsi_pool_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x3c80a25f iscsi_itt_to_ctask +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x42ecf57f iscsi_session_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x434d4604 iscsi_complete_scsi_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x452f2fdb iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x4c2260e1 iscsi_session_recovery_timedout +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x53669d17 iscsi_host_add +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x54a8dd59 iscsi_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x5b2b6fb9 iscsi_conn_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x625f92cd iscsi_requeue_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x62dc8c07 iscsi_update_cmdsn +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x6ae65baa iscsi_prep_data_out_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x71e4f7d5 iscsi_verify_itt +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x78e5034b __iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7d543acb iscsi_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x7f40efe5 iscsi_session_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x867c36c9 iscsi_conn_bind +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8c4f5439 iscsi_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8d303b1b iscsi_pool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x8f465d14 iscsi_conn_queue_work +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x930746b9 iscsi_suspend_tx +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x993c0f06 iscsi_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0x9f2a3520 __iscsi_complete_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa39796be iscsi_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa49cb070 iscsi_suspend_queue +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xa87a6a18 iscsi_conn_send_pdu +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xad98dc45 iscsi_session_failure +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xada8cbc8 iscsi_host_remove +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xb11932f6 iscsi_conn_start +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbc1c1c7c iscsi_conn_stop +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbe1490ee iscsi_eh_abort +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xbf8c9136 iscsi_conn_get_addr_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc73fdc38 iscsi_host_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xc89ee767 iscsi_eh_target_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xccdd7792 iscsi_conn_get_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xd4e6073e iscsi_eh_device_reset +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xdaed6aa5 iscsi_put_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi 0xf441a0bb iscsi_host_set_param +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x00c400e1 iscsi_tcp_recv_skb +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x184cffa8 iscsi_segment_init_linear +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x245f4747 iscsi_tcp_conn_setup +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2f639289 iscsi_tcp_segment_unmap +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x2fef8dbc iscsi_tcp_segment_done +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4995787f iscsi_tcp_r2tpool_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x4fd243e0 iscsi_tcp_dgst_header +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x5376efa4 iscsi_tcp_cleanup_task +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x6ca7de1b iscsi_tcp_recv_segment_is_hdr +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x7fc600b6 iscsi_tcp_hdr_recv_prep +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x84e851ae iscsi_tcp_conn_teardown +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0x8bdb9ff6 iscsi_tcp_set_max_r2t +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xa50cd3f1 iscsi_tcp_task_init +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xb2c2c7a9 iscsi_segment_seek_sg +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xd9f1624e iscsi_tcp_r2tpool_free +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xe6235d2d iscsi_tcp_conn_get_stats +EXPORT_SYMBOL_GPL drivers/scsi/libiscsi_tcp 0xecc1891a iscsi_tcp_task_xmit +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x05c52044 sas_bios_param +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2be8c8a3 sas_domain_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x2e29d1fa sas_domain_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x3e7c261d sas_target_alloc +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4090ca8d sas_eh_bus_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x451a018b sas_alloc_slow_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x45daf241 sas_request_addr +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x4a2fef20 sas_drain_work +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x5276f4c7 sas_get_local_phy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x575db62b sas_target_destroy +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6034d903 sas_ioctl +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x68bea148 sas_register_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x6d928710 sas_free_task +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x76d11f23 sas_eh_device_reset_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0x8dbd46a8 sas_unregister_ha +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaa58860c sas_change_queue_depth +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xade381d3 sas_phy_reset +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xaf64af11 sas_queuecommand +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xb5b81a6b sas_task_abort +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd61fd84f sas_eh_abort_handler +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xd783282c sas_ssp_task_response +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xdbd6cfc5 sas_slave_configure +EXPORT_SYMBOL_GPL drivers/scsi/libsas/libsas 0xf56f3b72 sas_alloc_task +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x0e4e25cf iscsi_alloc_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x15a470fd iscsi_lookup_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x1abfc7c0 iscsi_session_chkready +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x202dea82 iscsi_block_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x22b5e92a iscsi_unregister_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x3af2cdd4 iscsi_host_for_each_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x443a2826 iscsi_is_session_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x51898303 iscsi_create_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x53765e3a iscsi_register_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5396ca0b iscsi_free_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x570bb25b iscsi_find_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x583cef14 iscsi_conn_login_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x5d265ba5 iscsi_destroy_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x60c87216 iscsi_unblock_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x624d2b5b iscsi_flashnode_bus_match +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x64599975 iscsi_destroy_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x68b2b39c iscsi_post_host_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x699fe53e iscsi_get_discovery_parent_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x6a2b4739 iscsi_get_port_speed_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x715afac3 iscsi_add_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x749a2d02 iscsi_destroy_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x7c7f3a9f 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 0x9222742b iscsi_offload_mesg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x922e7ddc iscsi_block_scsi_eh +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x949ffe8f iscsi_scan_finished +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95bc81b3 iscsi_create_endpoint +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x95cfedfd iscsi_find_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0x9ba41dbb iscsi_create_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa1db545d iscsi_session_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xa52df1ba iscsi_destroy_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xadabd97f iscsi_create_flashnode_conn +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xae675a84 iscsi_ping_comp_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb3c8f182 iscsi_create_flashnode_sess +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xb470d5b3 iscsi_destroy_all_flashnode +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbc071179 iscsi_get_ipaddress_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xbdd1e019 iscsi_recv_pdu +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xca7c4893 iscsi_get_port_state_name +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xd65478e4 iscsi_is_flashnode_conn_dev +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdbeb5fb7 iscsi_is_session_online +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xdc6d8eef iscsi_remove_session +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xe31561cb iscsi_conn_error_event +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_iscsi 0xff26f6aa iscsi_create_iface +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0x29ac5d6a sas_is_tlr_enabled +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xafb0e234 sas_disable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xc40d8bcf sas_enable_tlr +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_sas 0xe9186291 sas_tlr_supported +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x0ef06974 spi_populate_ppr_msg +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_spi 0x2e596699 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 0x0ebcb302 srp_rport_add +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x4f4dc37e srp_release_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x5a8313d4 srp_attach_transport +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0x8d6ae8fc srp_rport_del +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xc1ae0610 srp_remove_host +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xddc8c6c2 srp_stop_rport_timers +EXPORT_SYMBOL_GPL drivers/scsi/scsi_transport_srp 0xee891cc0 srp_tmo_valid +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0x38cfedb8 uart_insert_char +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xadc343f7 uart_handle_cts_change +EXPORT_SYMBOL_GPL drivers/tty/serial/serial_core 0xd29475f1 uart_handle_dcd_change +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x1aeb58ac vfio_del_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x3567743b vfio_external_user_iommu_id +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x39a89a32 vfio_external_group_match_file +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x461bc078 vfio_device_get_from_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0x735cd7cf 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 0xc1600453 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 0xd52baf10 vfio_group_get_external_user +EXPORT_SYMBOL_GPL drivers/vfio/vfio 0xf21de3f5 vfio_add_group_dev +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0x2a84c624 vfio_virqfd_enable +EXPORT_SYMBOL_GPL drivers/vfio/vfio_virqfd 0xbd6f34d2 vfio_virqfd_disable +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x0822c6e5 vhost_add_used_and_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x12c9ee39 vhost_add_used_and_signal_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x16e60b6f vhost_vring_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x176bdd5f vhost_init_used +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 0x312916bb vhost_log_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x437301fa vhost_poll_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x4af07f3f vhost_add_used +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5436d4ca vhost_disable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5557e275 vhost_discard_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x58cdb161 vhost_dev_reset_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5a2c7488 vhost_work_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x5c5980c8 vhost_dev_has_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x683ea6ef vhost_vq_access_ok +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x6ca222d5 vhost_dev_ioctl +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9682ecf8 vhost_log_write +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0x9f7ac83f vhost_add_used_n +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xa4663182 vhost_get_vq_desc +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xabd4c6e1 vhost_poll_queue +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xb0bbe551 vhost_poll_start +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xbbed9979 vhost_enable_notify +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc361098a vhost_dev_set_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xc943b18f vhost_dev_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xca979ee8 vhost_poll_init +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xcd3033b9 vhost_signal +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd311332d vhost_dev_stop +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xd8a9f809 vhost_dev_cleanup +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xe2aeed59 vhost_poll_flush +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xf770b474 vhost_dev_check_owner +EXPORT_SYMBOL_GPL drivers/vhost/vhost 0xfe9aced5 vhost_work_queue +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x075156bb dlm_posix_lock +EXPORT_SYMBOL_GPL fs/dlm/dlm 0x7d7d8d93 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 0xfd62df9d dlm_posix_unlock +EXPORT_SYMBOL_GPL fs/fscache/fscache 0x092cf98e fscache_object_sleep_till_congested +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x3af3da59 nlmsvc_ops +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4eabcc12 nlmsvc_unlock_all_by_sb +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x4fb5e1dc nlmclnt_proc +EXPORT_SYMBOL_GPL fs/lockd/lockd 0x77e35ccc nlmsvc_unlock_all_by_ip +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb1964a6d nlmclnt_done +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xb5535135 lockd_up +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xeda653e2 nlmclnt_init +EXPORT_SYMBOL_GPL fs/lockd/lockd 0xfd2b7865 lockd_down +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x01b9cb9f nfs_probe_fsinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x055e3685 nfs_pageio_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x073c005a nfs_fs_mount_common +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x07a9881e nfs_server_insert_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0866d3a2 nfs_setattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0aa9394c nfs_get_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0adfc849 nfs_may_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0c632651 nfs_pgio_current_mirror +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x0f8f6edc nfs_getattr +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x11451067 nfs_statfs +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x165793e0 nfs_sb_active +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x199b0f49 nfs_init_server_rpcclient +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1a8ee002 nfs_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x1c4a377a nfs_dreq_bytes_left +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23032235 nfs_retry_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x23dd53d6 nfs_mkdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x26884ff7 nfs_alloc_fhandle +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x284ee8e5 nfs_destroy_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a30b359 nfs_pgio_header_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2a47c078 nfs_create_rpc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2c5042f6 nfs_instantiate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x2df750e2 nfs_symlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x33534f85 nfs_commitdata_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3453304a nfs_umount_begin +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x389255b6 nfs_file_mmap +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x39e05ac3 nfs_idmap_cache_timeout +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3a74c488 alloc_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x3c67ef3e nfs_file_write +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 0x4102478e nfs_init_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x41134692 nfs_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42a15081 nfs_clone_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42e64f4a nfs_request_remove_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x42f2c81f nfs4_client_id_uniquifier +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x463692f7 nfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4686f432 nfs_request_add_commit_list_locked +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x480fcdbc nfs_show_devname +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4cb9e001 recover_lost_locks +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x4ddea45f nfs_post_op_update_inode_force_wcc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x51892d61 nfs_callback_set_tcpport +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5367956a nfs_get_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x53981a2b nfs_pgio_data_destroy +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x54c1e06e unregister_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x563e7f37 nfs_file_fsync_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x58385fba nfs_clone_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x584b8482 nfs_inc_attr_generation_counter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x587ffd84 nfs4_label_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x591fe637 nfs_do_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x5bfa6ba9 nfs_initiate_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x61fffc88 nfs_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x64f392f0 nfs_pgheader_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x68bd3fed nfs_file_set_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6a40f254 nfs_generic_pgio +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x6d01bb0a nfs_pageio_reset_read_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x70cbb9ae nfs_try_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73326fda nfs_pgio_header_alloc +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x738167fa nfs_fscache_open_file +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x73f5f171 nfs_create +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x74524912 nfs_server_remove_lists +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x76dcca1a __tracepoint_nfs_fsync_exit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7a2a8332 nfs_server_copy_userdata +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c2599ed nfs_show_options +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7c975bb7 nfs_file_splice_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7ef8d054 nfs_mknod +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x7fc27526 nfs_access_set_mask +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8186fc22 nfs_wb_all +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x848add2a nfs_file_llseek +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87b859c2 nfs_force_lookup_revalidate +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x87cb3f94 nfs_revalidate_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x896bce2c nfs_mark_client_ready +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x897d8330 nfs_inode_attach_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8c014543 nfs_pageio_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x8e83e80f nfs_lock +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 0x92ee4405 nfs_put_lock_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x92f94bcf nfs_init_cinfo +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x95b02dc2 nfs_file_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0x9a276f72 nfs_close_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa01e77d9 nfs_remount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa076ed1a nfs_access_zap_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa1aeec51 nfs_set_sb_security +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa4367566 nfs_atomic_open +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa461a9d6 nfs_lookup +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa73f75cd nfs_alloc_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa8e9e1ae send_implementation_id +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xa97195ca nfs4_dentry_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaa4d0547 nfs_fill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab06cde1 nfs_file_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab65a76e nfs_show_path +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xab6ea5b9 nfs_put_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xade8a7bb nfs_rmdir +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaede8f7d register_nfs_version +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaf89d283 nfs_drop_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xaffc73fe nfs_invalidate_atime +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb3350f66 nfs_clear_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb606e716 nfs_fattr_init +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb687760b nfs_sync_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8647b56 nfs_zap_acl_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb8c75044 nfs_permission +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xb9aa9ba6 nfs_request_add_commit_list +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xba655509 nfs_pageio_reset_write_mds +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbb18c257 nfs_fhget +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbda837cd nfs_alloc_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xbf1e86a2 nfs_free_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc18863ad put_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 0xc7478bf5 nfs_access_add_cache +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc7a1835b nfs_initiate_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xc82f3000 nfs_unlink +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xca2ec1c2 nfs_rename +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xccc2f104 __tracepoint_nfs_fsync_enter +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xcf8889c9 nfs_link +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd0558990 nfs_kill_super +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd2513081 _nfs_display_fhandle_hash +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd425f399 nfs_create_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd6595e01 nfs_setattr_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd7110e82 nfs_sops +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xd8f1a3be nfs_free_client +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xda0bc07b get_nfs_open_context +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdae9b5d7 nfs4_disable_idmapping +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xdd5e0ddb nfs_pageio_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe089d620 nfs_flock +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe0da59b6 nfs_commit_free +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1ba9bf9 nfs_setsecurity +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe1c58a27 nfs_commitdata_release +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe3de1db4 nfs_writeback_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe6eace3d nfs_write_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe7b4dde5 nfs_submount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe8d12649 nfs_pageio_resend +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xe92c510d nfs_direct_set_resched_writes +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xef824ccb nfs_init_commit +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xefbb6135 nfs4_fs_type +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf05858da nfs_post_op_update_inode +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf55c7e41 nfs_sb_deactive +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xf57d9ca0 nfs_alloc_server +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfb3e9327 nfs_show_stats +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 0xfcb7867f nfs_file_operations +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xfd67b0d5 nfs_fs_mount +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xff2f1c4b nfs_wait_client_init_complete +EXPORT_SYMBOL_GPL fs/nfs/nfs 0xffe84be7 nfs_refresh_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv3 0xa0505bf8 nfs3_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x054bef45 layoutstats_timer +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x09d6c20b pnfs_report_layoutstat +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0a302fc3 pnfs_generic_pg_writepages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x0f03f07a nfs41_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1522557a pnfs_generic_scan_commit_lists +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x170f3ed6 nfs41_maxgetdevinfo_overhead +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x1bf65794 nfs4_pnfs_ds_put +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x221f9567 pnfs_ld_write_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x24e1fd4a nfs4_mark_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x268da704 pnfs_nfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x26eec81b pnfs_generic_commit_pagelist +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x27d481a5 pnfs_set_layoutcommit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x31429b6c nfs4_schedule_migration_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x35d4c6f0 nfs4_delete_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36285067 nfs4_schedule_lease_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x36e8299b pnfs_generic_prepare_to_resend_writes +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x3bd0b0a7 nfs4_pnfs_ds_add +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x420ed6ef pnfs_read_resend_pnfs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x42f50e5f pnfs_generic_write_commit_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x4eae8be9 pnfs_ld_read_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6198bc45 pnfs_update_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x66420fcb nfs40_setup_sequence +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x6691ec4f __tracepoint_nfs4_pnfs_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69228cd0 pnfs_generic_pg_init_write +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x69d3558d pnfs_generic_rw_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7469a160 nfs4_find_get_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7f1b4c76 nfs_remove_bad_delegation +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x7fcbd490 nfs4_schedule_stateid_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8373fea8 pnfs_generic_pg_init_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83ae6aaa nfs4_pnfs_v3_ds_connect_unload +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x83f3fa19 pnfs_layout_mark_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x881825e1 nfs4_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x8b654d48 pnfs_generic_clear_request_commit +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x91c64bcb pnfs_put_lseg_locked +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9584028f pnfs_unregister_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9b7e9901 nfs4_decode_mp_ds_addr +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0x9d439ecc pnfs_generic_layout_insert_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xacb598d8 nfs41_sequence_done +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xad9f504f pnfs_read_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xaf733f36 nfs4_init_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb2b8d0a6 pnfs_destroy_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb73fded1 pnfs_generic_pg_readpages +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xb77df096 pnfs_generic_sync +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbc9de286 nfs4_schedule_lease_moved_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbd949de8 nfs4_pnfs_ds_connect +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xbfe2cb2a nfs4_init_ds_session +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc3331772 nfs_map_string_to_numeric +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc54597b2 pnfs_generic_pg_cleanup +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc6d4028c nfs4_put_deviceid_node +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xc9a3e800 nfs4_set_rw_stateid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xcbab1c9f pnfs_layoutcommit_inode +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd1f5885f pnfs_put_lseg +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xd21b4d53 __tracepoint_nfs4_pnfs_commit_ds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xdff4e37c __tracepoint_nfs4_pnfs_read +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe124fc29 pnfs_write_done_resend_to_mds +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe3be5c11 pnfs_register_layoutdriver +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe58c88c0 pnfs_set_lo_fail +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xe716dbf2 pnfs_generic_recover_commit_reqs +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xed15fb41 nfs4_print_deviceid +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf0305947 _pnfs_return_layout +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3104954 nfs4_find_or_create_ds_client +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf361fb93 nfs4_test_deviceid_unavailable +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf38ae694 nfs4_proc_getdeviceinfo +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3cc3cf1 pnfs_generic_pg_test +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf3cea973 nfs4_schedule_session_recovery +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xf999267e pnfs_generic_commit_release +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xfc3b5863 pnfs_error_mark_layout_for_return +EXPORT_SYMBOL_GPL fs/nfs/nfsv4 0xffb2a7d3 nfs4_set_ds_client +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1bd9f778 opens_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x1fe1e1ad locks_end_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x45edf50e locks_start_grace +EXPORT_SYMBOL_GPL fs/nfs_common/grace 0x7eb13d2b locks_in_grace +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xd0ce5fd5 nfsacl_decode +EXPORT_SYMBOL_GPL fs/nfs_common/nfs_acl 0xe2088d99 nfsacl_encode +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x11736b03 __mlog_printk +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x1b6f923f o2nm_get_node_by_num +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 0x2fc9beaa o2nm_node_put +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x36418553 o2net_send_message +EXPORT_SYMBOL_GPL fs/ocfs2/cluster/ocfs2_nodemanager 0x398f57c1 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 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 0xa056b7cc 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 0xa3782a41 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 0xad4aaf95 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 0xdd8ea1a2 o2hb_unregister_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 0x4c764de5 dlmlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x4f674f3f dlmunlock +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x5df7f5a6 dlm_register_domain +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x6bc2f229 dlm_register_eviction_cb +EXPORT_SYMBOL_GPL fs/ocfs2/dlm/ocfs2_dlm 0x7477a4ab 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 0xbf7b327f 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 0x6fc5b02f ocfs2_stack_glue_register +EXPORT_SYMBOL_GPL fs/ocfs2/ocfs2_stackglue 0x830ace35 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 0xfa83b247 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 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 0x36136349 notifier_err_inject_init +EXPORT_SYMBOL_GPL lib/notifier-error-inject 0x7fac38e4 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 0x32f247ba garp_request_join +EXPORT_SYMBOL_GPL net/802/garp 0x4cf4dd5d garp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x79832573 garp_init_applicant +EXPORT_SYMBOL_GPL net/802/garp 0x867d751d garp_unregister_application +EXPORT_SYMBOL_GPL net/802/garp 0x88ab8162 garp_register_application +EXPORT_SYMBOL_GPL net/802/garp 0x993afdb2 garp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0x023fb771 mrp_uninit_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0x376a5dfb mrp_request_leave +EXPORT_SYMBOL_GPL net/802/mrp 0xa4463402 mrp_register_application +EXPORT_SYMBOL_GPL net/802/mrp 0xbd5b18fd mrp_request_join +EXPORT_SYMBOL_GPL net/802/mrp 0xbf72c8f2 mrp_init_applicant +EXPORT_SYMBOL_GPL net/802/mrp 0xddd2dca8 mrp_unregister_application +EXPORT_SYMBOL_GPL net/802/stp 0x5ad866f6 stp_proto_register +EXPORT_SYMBOL_GPL net/802/stp 0xb311fe65 stp_proto_unregister +EXPORT_SYMBOL_GPL net/9p/9pnet 0x04bad094 p9_client_xattrwalk +EXPORT_SYMBOL_GPL net/9p/9pnet 0x898da2a6 p9_client_xattrcreate +EXPORT_SYMBOL_GPL net/bridge/br_netfilter 0x0cb0f8b7 br_netfilter_enable +EXPORT_SYMBOL_GPL net/bridge/bridge 0x02bad2d4 br_multicast_has_querier_anywhere +EXPORT_SYMBOL_GPL net/bridge/bridge 0x3b04730f br_multicast_has_querier_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0x40716168 br_dev_queue_push_xmit +EXPORT_SYMBOL_GPL net/bridge/bridge 0xa42b6f63 br_deliver +EXPORT_SYMBOL_GPL net/bridge/bridge 0xb62e85d3 nf_br_ops +EXPORT_SYMBOL_GPL net/bridge/bridge 0xc762c8ff br_forward_finish +EXPORT_SYMBOL_GPL net/bridge/bridge 0xd425e989 br_multicast_list_adjacent +EXPORT_SYMBOL_GPL net/bridge/bridge 0xe0e92b89 br_handle_frame_finish +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0x3457391a nft_bridge_ip6hdr_validate +EXPORT_SYMBOL_GPL net/bridge/netfilter/nf_tables_bridge 0xca53081f nft_bridge_iphdr_validate +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0626e43a dccp_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x0eaa3417 dccp_destroy_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1b30dceb dccp_close +EXPORT_SYMBOL_GPL net/dccp/dccp 0x1d99d49a dccp_timestamp +EXPORT_SYMBOL_GPL net/dccp/dccp 0x23a560c4 dccp_insert_option +EXPORT_SYMBOL_GPL net/dccp/dccp 0x300f1048 dccp_reqsk_init +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3a79197b dccp_done +EXPORT_SYMBOL_GPL net/dccp/dccp 0x3f4619eb 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 0x4f148bbe dccp_death_row +EXPORT_SYMBOL_GPL net/dccp/dccp 0x525e577a compat_dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5387f903 dccp_sync_mss +EXPORT_SYMBOL_GPL net/dccp/dccp 0x59814a84 dccp_statistics +EXPORT_SYMBOL_GPL net/dccp/dccp 0x5b17ec6d dccp_init_sock +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6329ec25 dccp_feat_signal_nn_change +EXPORT_SYMBOL_GPL net/dccp/dccp 0x69c5eb57 dccp_hashinfo +EXPORT_SYMBOL_GPL net/dccp/dccp 0x6e1606f7 dccp_rcv_state_process +EXPORT_SYMBOL_GPL net/dccp/dccp 0x77f42f89 dccp_create_openreq_child +EXPORT_SYMBOL_GPL net/dccp/dccp 0x86be7924 dccp_packet_name +EXPORT_SYMBOL_GPL net/dccp/dccp 0x8c0ca131 dccp_reqsk_send_ack +EXPORT_SYMBOL_GPL net/dccp/dccp 0x9598d24d dccp_ackvec_parsed_cleanup +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa5b3c78d dccp_set_state +EXPORT_SYMBOL_GPL net/dccp/dccp 0xa73410b4 dccp_feat_nn_get +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb0ac20c8 dccp_shutdown +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb1a1de4a dccp_check_req +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb2b5f02a dccp_ctl_make_reset +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb439f235 dccp_connect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb568e719 dccp_recvmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xb90a6b79 dccp_rcv_established +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbd953e82 dccp_sendmsg +EXPORT_SYMBOL_GPL net/dccp/dccp 0xbdd303d9 dccp_send_sync +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc2667b92 dccp_make_response +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc555ff67 dccp_poll +EXPORT_SYMBOL_GPL net/dccp/dccp 0xc62421f5 dccp_parse_options +EXPORT_SYMBOL_GPL net/dccp/dccp 0xd22e36ab dccp_orphan_count +EXPORT_SYMBOL_GPL net/dccp/dccp 0xe85cae33 compat_dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xea88bf97 dccp_getsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp 0xf0dd1737 inet_dccp_listen +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdbbc0a1 dccp_disconnect +EXPORT_SYMBOL_GPL net/dccp/dccp 0xfdc5c456 dccp_ioctl +EXPORT_SYMBOL_GPL net/dccp/dccp 0xff4c602b dccp_setsockopt +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x1063ff08 dccp_invalid_packet +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x6cbf3c2e dccp_v4_connect +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0x92854c55 dccp_v4_send_check +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xc8b60ab1 dccp_v4_do_rcv +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf617986d dccp_v4_request_recv_sock +EXPORT_SYMBOL_GPL net/dccp/dccp_ipv4 0xf6215961 dccp_v4_conn_request +EXPORT_SYMBOL_GPL net/ipv4/gre 0x22513adc gre_del_protocol +EXPORT_SYMBOL_GPL net/ipv4/gre 0x70fe91b1 gre_add_protocol +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x2a65f2ba inet_diag_bc_sk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x332d84db inet_sk_diag_fill +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x54a5256d inet_diag_dump_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x58da6b37 inet_diag_unregister +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x6497dc3c inet_diag_dump_one_icsk +EXPORT_SYMBOL_GPL net/ipv4/inet_diag 0x82087182 inet_diag_register +EXPORT_SYMBOL_GPL net/ipv4/ip_gre 0xbfc159d5 gretap_fb_dev_create +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x2a1075ca ip_tunnel_dellink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4c20033a ip_tunnel_init +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x4fd4ec80 __ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x7e8a0360 ip_tunnel_rcv +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x8990e962 ip_tunnel_change_mtu +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0x99508fb8 ip_tunnel_ioctl +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xaab56e3d ip_tunnel_newlink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xacff23f8 ip_tunnel_changelink +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xc903e65b ip_tunnel_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xe911f6c3 ip_tunnel_uninit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0741d90 ip_tunnel_lookup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf0f793c2 ip_tunnel_xmit +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf32a31ec ip_tunnel_encap_setup +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xf670d2b4 ip_tunnel_delete_net +EXPORT_SYMBOL_GPL net/ipv4/ip_tunnel 0xfb30c934 ip_tunnel_init_net +EXPORT_SYMBOL_GPL net/ipv4/netfilter/arp_tables 0x6cc9fc02 arpt_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv4/netfilter/ip_tables 0x68ea7211 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 0x0a9e2e9d nf_dup_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x8514a857 nf_nat_ipv4_out +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x91f370f5 nf_nat_ipv4_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9ca2e8f3 nf_nat_ipv4_in +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0x9ee06b9a nf_nat_ipv4_local_fn +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_nat_ipv4 0xa809712d 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 0xd931779e 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 0x041d2614 nf_send_reset +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x22f600d9 nf_send_unreach +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x3d4f4103 nf_reject_ip_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0x529f7a2f nf_reject_ip_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_reject_ipv4 0xd0ba117c nf_reject_iphdr_put +EXPORT_SYMBOL_GPL net/ipv4/netfilter/nf_tables_ipv4 0xa3fdd353 nft_af_ipv4 +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x1466ce5d tcp_vegas_pkts_acked +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x16cbb0cc tcp_vegas_cwnd_event +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x686c37ce tcp_vegas_init +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0x7e0fd961 tcp_vegas_get_info +EXPORT_SYMBOL_GPL net/ipv4/tcp_vegas 0xe2cf3fe0 tcp_vegas_state +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x42c32cc6 udp_tunnel_xmit_skb +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0x5c21d844 setup_udp_tunnel_sock +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xbe031058 udp_tun_rx_dst +EXPORT_SYMBOL_GPL net/ipv4/udp_tunnel 0xc53746f1 udp_tunnel_sock_release +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x10b06f6f ip6_tnl_dst_get +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x1fe67cc2 ip6_tnl_dst_destroy +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x35fcdecd ip6_tnl_dst_init +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x5480e56a ip6_tnl_dst_reset +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x71274b78 ip6_tnl_xmit_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0x8bb5ef19 ip6_tnl_rcv_ctl +EXPORT_SYMBOL_GPL net/ipv6/ip6_tunnel 0xf80dd449 ip6_tnl_dst_set +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x10da81d8 udp_sock_create6 +EXPORT_SYMBOL_GPL net/ipv6/ip6_udp_tunnel 0x769f0aa6 udp_tunnel6_xmit_skb +EXPORT_SYMBOL_GPL net/ipv6/netfilter/ip6_tables 0x39473b9f ip6t_alloc_initial_table +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_defrag_ipv6 0x39d1e733 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 0xfb6777c5 nf_ct_frag6_gather +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_dup_ipv6 0x8be9d1ae nf_dup_ipv6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x69cd3b06 nf_nat_ipv6_local_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0x8a89ad20 nf_nat_icmpv6_reply_translation +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xb2f424cc nf_nat_ipv6_out +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf4129375 nf_nat_ipv6_in +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_ipv6 0xf68a31f6 nf_nat_ipv6_fn +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_nat_masquerade_ipv6 0x13549506 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 0x55bc6297 nf_reject_ip6hdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0x96443019 nf_send_unreach6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa3643262 nf_reject_ip6_tcphdr_get +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xa64fa712 nf_send_reset6 +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_reject_ipv6 0xbebc0d9d nf_reject_ip6_tcphdr_put +EXPORT_SYMBOL_GPL net/ipv6/netfilter/nf_tables_ipv6 0xea01fe67 nft_af_ipv6 +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x07122afb l2tp_session_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x09f905a3 l2tp_tunnel_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x2b7e4fc1 l2tp_xmit_skb +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x3df5e957 l2tp_session_find_by_ifname +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4278b83d l2tp_tunnel_closeall +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x4e950925 l2tp_session_create +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x612e2136 l2tp_udp_encap_recv +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x629ecb57 l2tp_tunnel_find_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x69ae6dd2 l2tp_tunnel_find +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x6c3b7341 l2tp_session_get_nth +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x7e7ccdce l2tp_session_queue_purge +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0x8f99074b __l2tp_session_unhash +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xcae47b54 l2tp_session_set_header_len +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xdf6b25d6 l2tp_session_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xe57f5b73 l2tp_tunnel_delete +EXPORT_SYMBOL_GPL net/l2tp/l2tp_core 0xec2be5cd l2tp_session_free +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0x337f2432 l2tp_nl_unregister_ops +EXPORT_SYMBOL_GPL net/l2tp/l2tp_netlink 0xca49feb2 l2tp_nl_register_ops +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x0cdeb4fc nla_put_labels +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0x57325cfc mpls_pkt_too_big +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xc0f58e80 mpls_output_possible +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xd5d67e49 mpls_dev_mtu +EXPORT_SYMBOL_GPL net/mpls/mpls_router 0xf67d707a nla_get_labels +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x02265e9e ip_set_elem_len +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0b2310aa ip_set_alloc +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x0f590dc1 ip_set_get_ip6_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x172b60ec ip_set_get_ip4_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x22e409b3 ip_set_add +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x3485a235 ip_set_type_register +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x397f6231 ip_set_free +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x619f8ad9 ip_set_del +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x61f2e26a ip_set_get_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x6875222b ip_set_type_unregister +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x74e1091d 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 0x7d669168 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 0x86fa2131 ip_set_nfnl_put +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0x96445d36 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 0xa90ac62e ip_set_get_ip_port +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xa9940733 ip_set_name_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xad09e667 ip_set_test +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xcc001bd9 ip_set_extensions +EXPORT_SYMBOL_GPL net/netfilter/ipset/ip_set 0xdd3f7e1b ip_set_nfnl_get_byindex +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0x46b4c421 ip_vs_conn_out_get_proto +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xada2fbda register_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xc9557adf unregister_ip_vs_pe +EXPORT_SYMBOL_GPL net/netfilter/ipvs/ip_vs 0xf3bf0e5e ip_vs_conn_in_get_proto +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x003066a1 nf_conntrack_alter_reply +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x00d5bdb6 nf_ct_unlink_expect_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03714afc nf_connlabel_match +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x03e7f757 nf_conntrack_l3proto_generic +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x045072cd nf_ct_port_nla_policy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0be04fb5 nf_ct_seq_offset +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x0ed05487 nf_conntrack_locks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x10cbe29a nf_conntrack_set_hashsize +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x141427b6 __nf_conntrack_helper_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x14ccd962 nf_ct_seqadj_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x15972cdd nf_ct_expect_related_report +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1a177e10 nf_conntrack_hash_check_insert +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1b04a42b nf_ct_expect_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x1eec8f44 nf_ct_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x20e50025 nf_conntrack_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x25890450 nf_ct_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2613ebf1 nf_conntrack_helper_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x28767bb4 nf_ct_l3proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x289c3714 nf_ct_alloc_hashtable +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2986a057 nf_ct_extend_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2e7789fe nf_ct_l3proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f1344a8 __nf_ct_try_assign_helper +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x2f918421 nf_ct_remove_expectations +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x315a7c9d nf_ct_helper_expectfn_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x31f76fc6 nf_ct_expect_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3276f427 nf_ct_l3proto_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x37386cac nf_conntrack_hash_rnd +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x3f5b1415 nf_ct_port_nlattr_to_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x432e1670 nf_ct_get_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x4339e300 nf_ct_unexpect_related +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x53a4566b nf_conntrack_l4proto_udp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x587b5ef9 nf_connlabel_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59e88b48 nf_ct_timeout_find_get_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x59eb7b02 __nf_ct_refresh_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x619234e9 nf_conntrack_l4proto_udp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x62813e5c nf_ct_port_nlattr_tuple_size +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x63e51bdc nf_ct_delete +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x67803e9f nf_ct_extend_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x693c3961 nf_ct_helper_hash +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6d3b8b25 nf_connlabels_replace +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x6e224a7a need_conntrack +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x720acdc7 nf_ct_seq_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x72337f5b nf_conntrack_in +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7314198b nf_conntrack_helper_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x76f95f30 nf_conntrack_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x78f9b710 nf_ct_l3proto_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x7a4559d1 nf_ct_tmpl_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x834854d3 __nf_ct_kill_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x83643aaa nf_ct_helper_expectfn_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x88f1f13a nf_ct_iterate_cleanup +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8944d7c0 nf_ct_tcp_seqadj_set +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8a77b0d6 nf_conntrack_unregister_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x8c95c476 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 0x90ff6c9f nf_ct_invert_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x97c6275d nf_conntrack_tuple_taken +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x98cbb300 nf_ct_deliver_cached_events +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a49445b nf_ct_tmpl_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9a7f7dce nf_ct_expect_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0x9b6e9b48 __nf_ct_expect_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa04dbabf nf_ct_helper_log +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa465c8c0 nf_conntrack_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa5877426 __nf_ct_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xa9af7584 nf_ct_helper_ext_add +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 0xaed0dc5f nf_ct_timeout_put_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xaf6ea8b5 nf_ct_get_tuplepr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb0a2725d 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 0xb8894000 nf_ct_l3protos +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xb9de2ce4 nf_ct_l4proto_pernet_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd7eedce nf_ct_expect_init +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xbd987197 __nf_conntrack_confirm +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 0xc5fbfd37 nfnetlink_parse_nat_setup_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc74b0770 nf_ct_invert_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xc8d4f14d nf_ct_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xcb51c8bb nf_conntrack_l4proto_tcp6 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xce5481fc nf_ct_port_tuple_to_nlattr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd047e9fd nf_ct_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xd53194f6 nf_ct_l4proto_pernet_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdc1b8933 nf_conntrack_expect_lock +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xdfc94a56 nf_ct_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2e3085c nf_conntrack_free +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xe2f08007 nf_ct_expect_register_notifier +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xebe35da6 seq_print_acct +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf2cce132 nf_conntrack_helper_try_module_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf38bcdf3 nf_conntrack_max +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf5942dc1 nf_ct_helper_expectfn_find_by_symbol +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf72d4148 nf_ct_l4proto_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf7e09d70 nf_connlabels_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf859dad5 nf_connlabels_put +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xf967aa39 nf_conntrack_l4proto_tcp4 +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack 0xfa2f9041 nf_ct_expect_find_get +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_amanda 0x2b9dc049 nf_nat_amanda_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_broadcast 0x4efffd13 nf_conntrack_broadcast_help +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_ftp 0x4b56cc27 nf_nat_ftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x2cbb02d3 set_h245_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x77a4422f nat_t120_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x85f1be77 set_h225_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x87be217b set_ras_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0x99bfbdeb get_h225_addr +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xafb8858d set_sig_addr_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xbed2d47d nat_q931_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xca2aaea3 nat_h245_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xe9f87bfe nat_callforwarding_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_h323 0xf073366d nat_rtp_rtcp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_irc 0x2631466c nf_nat_irc_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x1fe8c460 nf_nat_pptp_hook_outbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x54640d50 nf_nat_pptp_hook_exp_gre +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0x7b39e7e2 nf_nat_pptp_hook_expectfn +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_pptp 0xae00abcf nf_nat_pptp_hook_inbound +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x26a1fde1 nf_ct_gre_keymap_add +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_proto_gre 0x6082bc9c nf_ct_gre_keymap_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x1bfcf018 ct_sip_parse_header_uri +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x2584253b ct_sip_get_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x42695f6e ct_sip_get_sdp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0x90d5e0e7 ct_sip_parse_request +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xce43af85 ct_sip_parse_address_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf0ce11da ct_sip_parse_numerical_param +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_sip 0xf7a47bd5 nf_nat_sip_hooks +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_snmp 0x97b9da23 nf_nat_snmp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_conntrack_tftp 0xf4bc736d nf_nat_tftp_hook +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x59bccb7f nf_log_dump_udp_header +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x81592c02 nf_log_dump_packet_common +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0x9ba2c149 nf_log_dump_sk_uid_gid +EXPORT_SYMBOL_GPL net/netfilter/nf_log_common 0xa16b94fa 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 0x18c932ec nf_nat_l4proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x1e88ffab nf_nat_l4proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x27181641 __nf_nat_l4proto_find +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x30ab636b nf_nat_l4proto_unique_tuple +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x4b57b255 nf_nat_packet +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x6dd02754 nf_nat_l3proto_unregister +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0x90e15820 nf_nat_l3proto_register +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xaa059224 nf_nat_alloc_null_binding +EXPORT_SYMBOL_GPL net/netfilter/nf_nat 0xda2bc5c1 nf_ct_nat_ext_add +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xa8f76451 nf_nat_redirect_ipv6 +EXPORT_SYMBOL_GPL net/netfilter/nf_nat_redirect 0xf5ce8157 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 0x204486f8 synproxy_tstamp_adjust +EXPORT_SYMBOL_GPL net/netfilter/nf_synproxy_core 0x237dfb49 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 0x1172cf34 nft_unregister_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1513d2ec nft_validate_register_store +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1847b78a nft_register_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1e6b75a3 nft_parse_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1ee24db5 nft_unregister_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x1efa44f6 nft_register_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x20713125 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 0x75932249 nft_unregister_set +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x78f5035b nft_data_dump +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0x793b04fd nft_unregister_basechain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xafe0997d nft_data_init +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xb80c329e nft_register_afinfo +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xbf63bb61 nft_set_gc_batch_release +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xc04360e0 nft_register_expr +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xcf03e214 nft_chain_validate_dependency +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd0312ead nft_do_chain +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xd531497a nft_dump_register +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xdc072f4d nft_set_elem_destroy +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe09dada2 nft_set_ext_types +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe2459450 nft_set_gc_batch_alloc +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xe3deb07e nft_register_chain_type +EXPORT_SYMBOL_GPL net/netfilter/nf_tables 0xed33c632 nft_validate_register_load +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x07cca0c9 nfnetlink_alloc_skb +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x2f934728 nfnetlink_has_listeners +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x3402165e nfnetlink_set_err +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x43170f64 nfnetlink_unicast +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x530eee78 nfnetlink_subsys_unregister +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0x5ce3b588 nfnl_lock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xdb065657 nfnl_unlock +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xe842f96d nfnetlink_send +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink 0xf84b69d8 nfnetlink_subsys_register +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x2aca99af nfnl_acct_update +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0x8891e4e3 nfnl_acct_find_get +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xba59cb2a nfnl_acct_overquota +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_acct 0xbecf5d14 nfnl_acct_put +EXPORT_SYMBOL_GPL net/netfilter/nfnetlink_log 0x4a108db4 nfulnl_log_packet +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x3b30f5f3 nft_masq_init +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0x62be35a3 nft_masq_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xa77d0702 nft_masq_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_masq 0xe3b8ea21 nft_masq_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x159fe67a nft_meta_set_init +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x2e280828 nft_meta_get_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x82b68bde nft_meta_set_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0x9ff2a2f8 nft_meta_get_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xa51a843e nft_meta_set_eval +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xb80e8358 nft_meta_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_meta 0xf2b70e86 nft_meta_get_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x360a268a nft_redir_validate +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x6b02f56c nft_redir_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0x84036699 nft_redir_init +EXPORT_SYMBOL_GPL net/netfilter/nft_redir 0xa5be1e1e nft_redir_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0x419e4cee nft_reject_dump +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xa2db3c7f nft_reject_policy +EXPORT_SYMBOL_GPL net/netfilter/nft_reject 0xb92b0db9 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 0x1289b287 xt_hook_unlink +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 0x2944f45f xt_table_unlock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x2cc2365a xt_find_table_lock +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3da22d94 xt_compat_target_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3e14227f xt_tee_enabled +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x3ee5b66c xt_compat_target_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x40728a63 xt_find_revision +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x44c037b8 xt_compat_match_from_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x4b4c344f xt_compat_match_to_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 0x76dbea4b xt_check_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x7ce80609 xt_unregister_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x807d2b2c xt_recseq +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x8935576b xt_check_match +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9412cdce xt_compat_target_to_user +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9bd39f2c xt_request_find_target +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0x9c995c69 xt_percpu_counter_alloc +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xa52dd3ca xt_compat_match_offset +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xb00cd14d xt_proto_fini +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbf84a8e3 xt_replace_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xbfacb837 xt_percpu_counter_free +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd13c1a9 xt_hook_link +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xcd9f5b0e 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 0xf1cc28b7 xt_register_table +EXPORT_SYMBOL_GPL net/netfilter/x_tables 0xf513aaaa xt_request_find_match +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 0x003ec59f ovs_netdev_detach_dev +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x2be07fe5 ovs_vport_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x35d9e98f ovs_vport_ops_unregister +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x3a11e8c6 ovs_netdev_tunnel_destroy +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x5ab93c4d ovs_vport_alloc +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x660e878e __ovs_vport_ops_register +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0x896d1128 ovs_vport_deferred_free +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xb0c46f75 ovs_vport_receive +EXPORT_SYMBOL_GPL net/openvswitch/openvswitch 0xd7410e39 ovs_netdev_link +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 0x0532a657 rds_conn_create_outgoing +EXPORT_SYMBOL_GPL net/rds/rds 0x0ba7314b rds_send_get_message +EXPORT_SYMBOL_GPL net/rds/rds 0x0f00592b rds_message_put +EXPORT_SYMBOL_GPL net/rds/rds 0x2230a05a rds_conn_drop +EXPORT_SYMBOL_GPL net/rds/rds 0x2858dca9 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 0x368ec3ac rds_cong_map_updated +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 0x56d275b5 rds_info_register_func +EXPORT_SYMBOL_GPL net/rds/rds 0x6213bfbf rds_message_addref +EXPORT_SYMBOL_GPL net/rds/rds 0x63f94c2b rds_atomic_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6beae632 rds_connect_complete +EXPORT_SYMBOL_GPL net/rds/rds 0x6cbfb779 rds_send_xmit +EXPORT_SYMBOL_GPL net/rds/rds 0x6d2cbd9c rds_for_each_conn_info +EXPORT_SYMBOL_GPL net/rds/rds 0x73aac73d rds_message_populate_header +EXPORT_SYMBOL_GPL net/rds/rds 0x7c33b2e8 rds_conn_destroy +EXPORT_SYMBOL_GPL net/rds/rds 0x8214141d rds_info_deregister_func +EXPORT_SYMBOL_GPL net/rds/rds 0x91e4c1ec rds_trans_unregister +EXPORT_SYMBOL_GPL net/rds/rds 0x9cf4cf90 rds_trans_register +EXPORT_SYMBOL_GPL net/rds/rds 0xaf7fa12d rds_inc_put +EXPORT_SYMBOL_GPL net/rds/rds 0xc1b23b30 rds_recv_incoming +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 0xcc47c44a rds_rdma_send_complete +EXPORT_SYMBOL_GPL net/rds/rds 0xcccf9d0c rds_conn_create +EXPORT_SYMBOL_GPL net/rds/rds 0xd3cb0625 rds_conn_connect_if_down +EXPORT_SYMBOL_GPL net/rds/rds 0xd7a6d995 rds_send_drop_acked +EXPORT_SYMBOL_GPL net/rds/rds 0xdee324f1 rds_page_copy_user +EXPORT_SYMBOL_GPL net/rds/rds 0xe3d09162 rds_inc_init +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0x72b57c04 rxrpc_register_security +EXPORT_SYMBOL_GPL net/rxrpc/af-rxrpc 0xdc5408f7 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 0x5b6181b3 gss_mech_unregister +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0x7a27f712 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 0xbc299721 svcauth_gss_flavor +EXPORT_SYMBOL_GPL net/sunrpc/auth_gss/auth_rpcgss 0xf8b2ff6e g_verify_token_header +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x015bb1a7 svc_xprt_copy_addrs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x017bc745 svc_xprt_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x01b976f9 svc_seq_show +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x035d38d1 rpc_killall_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x045834e9 rpcauth_get_pseudoflavor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x04d2c9e4 rpc_setbufsize +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x05d05a90 xprt_reserve_xprt +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 0x06c0a180 rpc_shutdown_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0730f13d xdr_process_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07a4b1fd rpc_wake_up_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x07e1642b xdr_shift_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0860424d rpc_localaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0a5a178f xprt_lookup_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0af2313b rpc_lookup_machine_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0b8b17c2 xdr_terminate_string +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0edbd61e rpc_unlink +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x0f668ba9 svc_auth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x12736a1b rpc_call_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x129dec20 rpcauth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1372a975 cache_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x14d8a90d rpc_add_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18ab758b xprt_lock_and_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x18c094d4 cache_seq_next +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1aa88fab svc_recv +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1c56d1b3 svc_rqst_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1e0c313e cache_seq_start +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1f2a2f46 svc_set_num_threads +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x1fb937a5 rpc_get_timeout +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x20c62e7a cache_unregister_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x26152e01 cache_register_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x277fd428 svc_xprt_do_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x279aba2b rpcauth_init_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x28d90ec3 svc_find_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2919b156 xdr_decode_string_inplace +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x291b4cea rpc_count_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x29ac87ba svc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2a663e3c xprt_setup_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2aa47233 bc_svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2b2630bf rpc_clone_client_set_auth +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2c537611 xprt_release_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2eec63c9 xdr_encode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f272eb1 xprt_alloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x2f5e0cdb svc_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3040dbe5 xdr_partial_copy_from_skb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x30eec0da rpc_malloc +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x31a89d59 rpc_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x33f0febe rpc_mkpipe_dentry +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x34d56940 svcauth_unix_purge +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3615d376 sunrpc_cache_register_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3744ebd3 rpc_net_ns +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x385ba898 xdr_write_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x387e1639 rpc_pipefs_notifier_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3906fc0f rpcauth_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b10460f rpcauth_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b2a3bbc rpcauth_lookup_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3b2ba98b xdr_buf_read_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3bebabfa rpc_destroy_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3dbfbbbc svc_xprt_enqueue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x3e49a214 read_bytes_from_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x422bfb3b rpc_alloc_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x42cbd905 svc_print_addr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4390d26d rpc_release_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x453efa54 svc_pool_map +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x45676ad0 auth_domain_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x46a95b53 rpc_clnt_swap_deactivate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x47a4f64e rpc_uaddr2sockaddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d4d88e rpc_wake_up_status +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x48d582a0 rpc_switch_client_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x49835b91 xprt_destroy_backchannel +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4bf94416 xprt_release_rqst_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x4f5944ae rpc_init_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x50cb6587 cache_create_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5143bfed rpc_count_iostats_metrics +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x526ca7ec svc_alien_sock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x529e98c7 svc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x52ab8b84 rpc_lookup_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x53445f68 nlm_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x539cfae6 svc_reg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x54e06b71 unix_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x55a149b4 xdr_buf_trim +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x57432f94 rpc_d_lookup_sb +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x587b9054 rpc_clnt_swap_activate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5b9f2597 svc_xprt_init +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d2210a5 svc_process +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5d83e992 xprt_disconnect_done +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5db7a8d0 xdr_reserve_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x5ec23115 rpc_run_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x605d9711 rpcauth_init_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x613ff212 xprt_alloc_slot +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x61f09b63 rpc_find_or_alloc_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6456ba4b rpcauth_destroy_credcache +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x65304bc0 svc_prepare_thread +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x672455a5 rpc_pipe_generic_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6827fea3 rpc_queue_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6a6e09ac rpc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6af4bb45 __rpc_wait_for_completion_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c0e27e7 xdr_set_scratch_buffer +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6c3279fd svc_rpcb_cleanup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d3b02ef svcauth_unix_set_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6d9690f4 rpcauth_lookupcred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f4daee3 svc_bind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x6f93cc93 xprt_adjust_cwnd +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7018f6f3 rpc_sleep_on_priority +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7136b645 xdr_inline_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x71fa908a cache_flush +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x72526c44 xdr_read_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x736f8893 rpc_peeraddr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x752efb35 svc_xprt_names +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x757bafcb rpc_put_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x757bc79b svc_reserve +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x75beca27 cache_destroy_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x762f5f89 rpc_get_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x795f3224 xdr_encode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dad42cf xprt_release_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7dbda32d xprt_complete_rqst +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7de53067 rpc_init_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7e556053 rpc_wake_up_first +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7ea2fb5d rpcb_getport_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x7fa0bbf1 xdr_buf_from_iov +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x80951b28 rpcauth_get_gssinfo +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8373ab8c cache_check +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x88f99886 svc_drop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bc7a0e8 sunrpc_destroy_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8bfec61f rpc_init_priority_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8d2b81c2 rpc_bind_new_program +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e61e270 xprt_write_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8e8291d1 svc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x8f34e570 rpc_remove_pipe_dir_object +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9287d80d rpc_init_pipe_dir_head +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x946ee27c svc_create_pooled +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9472e08a rpc_ntop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x94ab5370 xdr_init_decode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9703905d svc_unreg_xprt_class +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x970dbaa8 xdr_skb_read_bits +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98b75d64 rpcauth_list_flavors +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x98f64fd3 svc_auth_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x99acdf9c rpc_call_sync +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9dc337ba xdr_init_decode_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0x9e0ace4d xprt_register_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa13acdb8 svc_pool_map_put +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa503d2ab sunrpc_cache_update +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa5a0c563 svc_proc_register +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa62683b4 rpc_sleep_on +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa67fad8a rpcauth_cred_key_to_expire +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa7cd404c xdr_decode_word +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa962d2dd rpc_max_payload +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xa9753694 rpcauth_generic_bind_cred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaa35d280 xdr_commit_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaaab5ec4 rpc_restart_call +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xab726ee1 gssd_running +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xabafcdb3 xdr_enter_page +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad964796 sunrpc_init_cache_detail +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xad97e97a rpc_delay +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xae59c759 sunrpc_cache_unregister_pipefs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xaf5bf6ef nfs_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xafbacdec rpcauth_key_timeout_notify +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb312d0c4 svc_pool_map_get +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb32df282 rpc_force_rebind +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb51a3724 rpc_pipefs_notifier_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb5abb3be sunrpc_cache_pipe_upcall +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb6081eea xprt_set_retrans_timeout_def +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb846b3b4 svc_create_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xb8725986 xprt_reserve_xprt_cong +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbb4422e2 rpc_call_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbcc50074 rpc_exit +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbd7d24bd svc_shutdown_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbdf56e0a svc_rqst_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbe159d09 rpc_put_task_async +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbedc8973 svc_addsock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf30b42d rpc_task_reset_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xbf9d1b96 nfsd_debug +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc0f7878b svc_authenticate +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc12435e3 rpc_calc_rto +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc133ea16 rpc_protocol +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc32d666e xprt_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3880471 xdr_decode_netobj +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3aa31e4 xdr_inline_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc3e274f8 xdr_encode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc52267f5 xprt_wake_pending_tasks +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc62f809b rpc_free_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7c70b67 rpc_restart_call_prepare +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc7fd95d8 write_bytes_to_xdr_buf +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc8e96dea qword_addhex +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xc920e5fc rpcauth_stringify_acceptor +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca3be5f7 auth_domain_find +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xca962a10 rpc_call_null +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcb9966b9 cache_seq_stop +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcbcf6e10 svc_close_xprt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcc043309 _copy_from_pages +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xce216893 xprt_set_retrans_timeout_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcee467f3 xprt_load_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xcf058803 rpc_put_sb_net +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd1a00ed0 rpc_lookup_cred_nonblock +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2653001 xprt_unregister_transport +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd2b1aff8 csum_partial_copy_to_xdr +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd309205f rpc_clone_client +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd333efc3 xdr_decode_array2 +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xd9a39a59 rpc_create +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xda809e6e rpc_print_iostats +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc570343 rpc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc629146 svc_wake_up +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xdc6a8259 xdr_init_encode +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe1ac2bb8 sunrpc_net_id +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe28b883d rpc_peeraddr2str +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe2c4f5fb rpc_init_wait_queue +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3a153f1 auth_domain_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe3d7188c rpc_rmdir +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe416a586 put_rpccred +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe428399e rpc_pton +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xe56b4888 svc_exit_thread +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 0xec45a8ee rpc_mkpipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xed22dc02 svc_destroy +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedcf6be4 qword_add +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xedeb4f99 rpc_destroy_pipe_data +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xeeacab69 rpc_update_rtt +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf01222d3 rpc_proc_unregister +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf08beb77 svc_sock_update_bufs +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf0a15261 xdr_stream_pos +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf27b5c51 xprt_wait_for_buffer_space +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf3c92eb5 rpc_wake_up_queued_task +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf6362729 xdr_buf_subsegment +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xf9d1164c rpc_free +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfc0b3551 sunrpc_cache_lookup +EXPORT_SYMBOL_GPL net/sunrpc/sunrpc 0xfe56e1cf svc_rpcb_setup +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x02058c4f vsock_find_connected_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x08241d56 __vsock_core_init +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x0bc00aa2 vsock_enqueue_accept +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 0x2a8639d4 __vsock_create +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x33a0ce03 vsock_stream_has_data +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x38235241 vsock_remove_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x3ca31e7c vsock_remove_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x751ff010 vsock_addr_unbind +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7c40c6e6 vsock_add_pending +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x7f730c80 vsock_core_exit +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0x879fc644 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 0xa7ff1c52 vsock_remove_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb4658b81 vsock_stream_has_space +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xb5776397 vsock_insert_connected +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xbd0f699d vsock_addr_bound +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd471512d vsock_find_bound_socket +EXPORT_SYMBOL_GPL net/vmw_vsock/vsock 0xd95ac116 vsock_addr_validate +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 0x0055eaf1 ipcomp_output +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0x4c5e34ae ipcomp_input +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xbb77130f ipcomp_init_state +EXPORT_SYMBOL_GPL net/xfrm/xfrm_ipcomp 0xd04113a7 ipcomp_destroy +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 0x0009de98 blk_add_request_payload +EXPORT_SYMBOL_GPL vmlinux 0x00280724 blockdev_superblock +EXPORT_SYMBOL_GPL vmlinux 0x006820b4 pci_write_msi_msg +EXPORT_SYMBOL_GPL vmlinux 0x00871bb0 pci_generic_config_read32 +EXPORT_SYMBOL_GPL vmlinux 0x00b783a9 tasklet_hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x00d18577 __pm_runtime_idle +EXPORT_SYMBOL_GPL vmlinux 0x01010c6d klist_add_before +EXPORT_SYMBOL_GPL vmlinux 0x01413c5f css_schedule_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x015dcd6e __ablkcipher_walk_complete +EXPORT_SYMBOL_GPL vmlinux 0x016ff9ed virtqueue_detach_unused_buf +EXPORT_SYMBOL_GPL vmlinux 0x01e29e08 rhashtable_insert_rehash +EXPORT_SYMBOL_GPL vmlinux 0x0254e60c pci_enable_rom +EXPORT_SYMBOL_GPL vmlinux 0x02931659 alarm_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x02993af6 pci_create_slot +EXPORT_SYMBOL_GPL vmlinux 0x02cef29c device_init_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x02ebef25 cpuset_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x02fea2ae rcu_note_context_switch +EXPORT_SYMBOL_GPL vmlinux 0x0319411e alarm_expires_remaining +EXPORT_SYMBOL_GPL vmlinux 0x031b3287 idr_alloc +EXPORT_SYMBOL_GPL vmlinux 0x0332e9f0 md_stop_writes +EXPORT_SYMBOL_GPL vmlinux 0x036d9e4c replace_page_cache_page +EXPORT_SYMBOL_GPL vmlinux 0x038ec8fd __root_device_register +EXPORT_SYMBOL_GPL vmlinux 0x038f3de5 kvm_release_page_clean +EXPORT_SYMBOL_GPL vmlinux 0x039906a0 pci_enable_ats +EXPORT_SYMBOL_GPL vmlinux 0x03e617b0 each_symbol_section +EXPORT_SYMBOL_GPL vmlinux 0x0402cbbf preempt_notifier_inc +EXPORT_SYMBOL_GPL vmlinux 0x04084a30 tty_encode_baud_rate +EXPORT_SYMBOL_GPL vmlinux 0x04098dba pci_reset_bridge_secondary_bus +EXPORT_SYMBOL_GPL vmlinux 0x041f6334 ipv4_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x04570ae5 crypto_aes_set_key +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 0x04f9a134 blk_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x0504220c sysfs_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x054e550b kernel_halt +EXPORT_SYMBOL_GPL vmlinux 0x057d1772 blk_queue_dma_drain +EXPORT_SYMBOL_GPL vmlinux 0x05a52bb0 crypto_alloc_ahash +EXPORT_SYMBOL_GPL vmlinux 0x05b035b1 __page_file_index +EXPORT_SYMBOL_GPL vmlinux 0x05f18fd2 device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x061f3251 tpm_seal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x06302c59 tcp_fetch_timewait_stamp +EXPORT_SYMBOL_GPL vmlinux 0x06414485 ping_seq_fops +EXPORT_SYMBOL_GPL vmlinux 0x064db9a5 mark_mounts_for_expiry +EXPORT_SYMBOL_GPL vmlinux 0x0658097f net_cls_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x0661f88a device_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0x06716fea securityfs_remove +EXPORT_SYMBOL_GPL vmlinux 0x06976e85 blkcg_deactivate_policy +EXPORT_SYMBOL_GPL vmlinux 0x06f18993 alloc_page_buffers +EXPORT_SYMBOL_GPL vmlinux 0x07086d07 sysfs_remove_link_from_group +EXPORT_SYMBOL_GPL vmlinux 0x072763e9 virtqueue_disable_cb +EXPORT_SYMBOL_GPL vmlinux 0x07785a31 inet_twsk_put +EXPORT_SYMBOL_GPL vmlinux 0x07797478 setup_irq +EXPORT_SYMBOL_GPL vmlinux 0x07b52e38 rtnl_unregister +EXPORT_SYMBOL_GPL vmlinux 0x07ff52b7 pci_remove_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x08156773 name_to_dev_t +EXPORT_SYMBOL_GPL vmlinux 0x0856e8f2 unregister_net_sysctl_table +EXPORT_SYMBOL_GPL vmlinux 0x08720275 bus_set_iommu +EXPORT_SYMBOL_GPL vmlinux 0x087f0e80 wakeup_source_prepare +EXPORT_SYMBOL_GPL vmlinux 0x088bfa7e cancel_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x08967f49 ima_file_check +EXPORT_SYMBOL_GPL vmlinux 0x08a71791 wakeup_source_create +EXPORT_SYMBOL_GPL vmlinux 0x08bc0870 compat_put_timespec +EXPORT_SYMBOL_GPL vmlinux 0x08dd5a1c debugfs_remove_recursive +EXPORT_SYMBOL_GPL vmlinux 0x08e3fdfd bpf_prog_put +EXPORT_SYMBOL_GPL vmlinux 0x08e6ff5a tpm2_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x08f6cca4 css_general_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x091eb9b4 round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x09437748 ring_buffer_read_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0x09689146 __rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x098c6045 netlink_has_listeners +EXPORT_SYMBOL_GPL vmlinux 0x0995d2ed dm_noflush_suspending +EXPORT_SYMBOL_GPL vmlinux 0x09d85782 platform_unregister_drivers +EXPORT_SYMBOL_GPL vmlinux 0x09e9157f unregister_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0x09f1a48f list_lru_add +EXPORT_SYMBOL_GPL vmlinux 0x09f4401a dev_pm_qos_expose_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x0a29bcfc skb_complete_tx_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x0a2dfe92 fuse_request_send +EXPORT_SYMBOL_GPL vmlinux 0x0a45fcec register_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0x0a49831c raw_hash_sk +EXPORT_SYMBOL_GPL vmlinux 0x0a5f478a md_is_badblock +EXPORT_SYMBOL_GPL vmlinux 0x0aeae78f pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0x0b07abe2 unshare_fs_struct +EXPORT_SYMBOL_GPL vmlinux 0x0b0bbd3b param_set_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0x0b133c38 tcp_slow_start +EXPORT_SYMBOL_GPL vmlinux 0x0b58bf56 scsi_eh_ready_devs +EXPORT_SYMBOL_GPL vmlinux 0x0b5fd211 devm_kstrdup +EXPORT_SYMBOL_GPL vmlinux 0x0b88c727 crypto_ahash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0x0b8b18d8 set_primary_fwnode +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 0x0c241719 iommu_map +EXPORT_SYMBOL_GPL vmlinux 0x0c2cdbf1 synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x0c54e996 tty_ldisc_ref_wait +EXPORT_SYMBOL_GPL vmlinux 0x0c669987 debugfs_create_x64 +EXPORT_SYMBOL_GPL vmlinux 0x0cbda8a8 device_del +EXPORT_SYMBOL_GPL vmlinux 0x0cc1e40f crypto_it_tab +EXPORT_SYMBOL_GPL vmlinux 0x0cc26084 virtqueue_get_buf +EXPORT_SYMBOL_GPL vmlinux 0x0cd8c949 blk_mq_free_hctx_request +EXPORT_SYMBOL_GPL vmlinux 0x0cf13cfe __ip_route_output_key_hash +EXPORT_SYMBOL_GPL vmlinux 0x0d25a6b5 ip6_route_output_flags +EXPORT_SYMBOL_GPL vmlinux 0x0d2d44f8 anon_inode_getfd +EXPORT_SYMBOL_GPL vmlinux 0x0d4961de nf_log_buf_open +EXPORT_SYMBOL_GPL vmlinux 0x0d7d4d70 rcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x0d8da3cd ping_close +EXPORT_SYMBOL_GPL vmlinux 0x0ddb1cd7 llist_reverse_order +EXPORT_SYMBOL_GPL vmlinux 0x0e475328 crypto_register_alg +EXPORT_SYMBOL_GPL vmlinux 0x0e9642c0 hvc_instantiate +EXPORT_SYMBOL_GPL vmlinux 0x0ea41f64 pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x0f336d7f rcutorture_get_gp_data +EXPORT_SYMBOL_GPL vmlinux 0x0f9ec1ed list_lru_del +EXPORT_SYMBOL_GPL vmlinux 0x0fb1439c kthread_unpark +EXPORT_SYMBOL_GPL vmlinux 0x0fe40d1e __clocksource_update_freq_scale +EXPORT_SYMBOL_GPL vmlinux 0x0ffc2120 __crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0x10138352 tracing_on +EXPORT_SYMBOL_GPL vmlinux 0x10339722 zpci_iomap_start +EXPORT_SYMBOL_GPL vmlinux 0x104644d7 class_destroy +EXPORT_SYMBOL_GPL vmlinux 0x10587d7a pci_stop_root_bus +EXPORT_SYMBOL_GPL vmlinux 0x10bafc9a pci_bus_resource_n +EXPORT_SYMBOL_GPL vmlinux 0x10dd5a2e module_mutex +EXPORT_SYMBOL_GPL vmlinux 0x1106fb69 vfs_truncate +EXPORT_SYMBOL_GPL vmlinux 0x1142a6ba dev_pm_domain_detach +EXPORT_SYMBOL_GPL vmlinux 0x11599cf9 __pm_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x11745fba devm_hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0x119af014 cpu_bit_bitmap +EXPORT_SYMBOL_GPL vmlinux 0x119ba2e0 pci_bus_max_busnr +EXPORT_SYMBOL_GPL vmlinux 0x11c8e3f3 class_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x11e7c676 pci_find_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x1208d8b7 blk_add_driver_data +EXPORT_SYMBOL_GPL vmlinux 0x120f05ea fat_search_long +EXPORT_SYMBOL_GPL vmlinux 0x121d958a unregister_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0x123267da ping_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x124f2056 crypto_get_attr_type +EXPORT_SYMBOL_GPL vmlinux 0x1268f357 resume_device_irqs +EXPORT_SYMBOL_GPL vmlinux 0x12e722b1 crypto_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x12f0b3db gmap_disable +EXPORT_SYMBOL_GPL vmlinux 0x12f9c1e2 crypto_ahash_setkey +EXPORT_SYMBOL_GPL vmlinux 0x131db64a system_long_wq +EXPORT_SYMBOL_GPL vmlinux 0x132d7767 inet6_sk_rebuild_header +EXPORT_SYMBOL_GPL vmlinux 0x1351f978 securityfs_create_dentry +EXPORT_SYMBOL_GPL vmlinux 0x13679f6a cpu_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x1390ac50 watchdog_register_device +EXPORT_SYMBOL_GPL vmlinux 0x13aa57b8 crypto_alloc_instance +EXPORT_SYMBOL_GPL vmlinux 0x13ad647f scatterwalk_bytes_sglen +EXPORT_SYMBOL_GPL vmlinux 0x13c1c972 pci_vfs_assigned +EXPORT_SYMBOL_GPL vmlinux 0x13f9551b pci_find_next_ext_capability +EXPORT_SYMBOL_GPL vmlinux 0x14ba53fc pci_check_and_unmask_intx +EXPORT_SYMBOL_GPL vmlinux 0x153a1464 kvm_clear_guest +EXPORT_SYMBOL_GPL vmlinux 0x1566d640 wakeup_source_drop +EXPORT_SYMBOL_GPL vmlinux 0x157bc422 s390_enable_skey +EXPORT_SYMBOL_GPL vmlinux 0x15809f33 bus_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x15892417 async_synchronize_cookie +EXPORT_SYMBOL_GPL vmlinux 0x1592269d __trace_note_message +EXPORT_SYMBOL_GPL vmlinux 0x15a0c6fe fl6_sock_lookup +EXPORT_SYMBOL_GPL vmlinux 0x15c30c38 devres_close_group +EXPORT_SYMBOL_GPL vmlinux 0x15c43555 kobject_init_and_add +EXPORT_SYMBOL_GPL vmlinux 0x15c4c224 pci_user_read_config_word +EXPORT_SYMBOL_GPL vmlinux 0x15efd446 rcu_batches_started +EXPORT_SYMBOL_GPL vmlinux 0x15f5bb93 crypto_spawn_tfm2 +EXPORT_SYMBOL_GPL vmlinux 0x16000a3c dm_device_name +EXPORT_SYMBOL_GPL vmlinux 0x1619a4d4 n_tty_inherit_ops +EXPORT_SYMBOL_GPL vmlinux 0x161edc82 inet_getpeer +EXPORT_SYMBOL_GPL vmlinux 0x163a7008 mddev_unlock +EXPORT_SYMBOL_GPL vmlinux 0x164e9f22 fuse_put_request +EXPORT_SYMBOL_GPL vmlinux 0x1650bf27 rcutorture_record_progress +EXPORT_SYMBOL_GPL vmlinux 0x165cf421 udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1666002b tty_put_char +EXPORT_SYMBOL_GPL vmlinux 0x1678c925 __netlink_alloc_skb +EXPORT_SYMBOL_GPL vmlinux 0x168a6414 vma_kernel_pagesize +EXPORT_SYMBOL_GPL vmlinux 0x169dfc50 rt_mutex_destroy +EXPORT_SYMBOL_GPL vmlinux 0x16c8f558 gmap_map_segment +EXPORT_SYMBOL_GPL vmlinux 0x16f1b595 vring_transport_features +EXPORT_SYMBOL_GPL vmlinux 0x17096b9d init_user_ns +EXPORT_SYMBOL_GPL vmlinux 0x17994d70 memhp_auto_online +EXPORT_SYMBOL_GPL vmlinux 0x17a3b5a0 debugfs_create_size_t +EXPORT_SYMBOL_GPL vmlinux 0x184c71ca tty_get_pgrp +EXPORT_SYMBOL_GPL vmlinux 0x18579410 fat_build_inode +EXPORT_SYMBOL_GPL vmlinux 0x1866cec2 ring_buffer_size +EXPORT_SYMBOL_GPL vmlinux 0x1869a98a posix_acl_create +EXPORT_SYMBOL_GPL vmlinux 0x18ab8e72 pm_generic_runtime_resume +EXPORT_SYMBOL_GPL vmlinux 0x18e608a7 crypto_register_rng +EXPORT_SYMBOL_GPL vmlinux 0x190b4359 preempt_notifier_unregister +EXPORT_SYMBOL_GPL vmlinux 0x194ce8f3 srcu_init_notifier_head +EXPORT_SYMBOL_GPL vmlinux 0x194dd5f5 pkey_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x194f6df4 pci_load_and_free_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x19570329 pci_disable_rom +EXPORT_SYMBOL_GPL vmlinux 0x199792af hrtimer_forward +EXPORT_SYMBOL_GPL vmlinux 0x199e837c alloc_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x19c1e6d5 dm_send_uevents +EXPORT_SYMBOL_GPL vmlinux 0x19c74350 tpm_chip_unregister +EXPORT_SYMBOL_GPL vmlinux 0x19ef4098 trace_seq_bprintf +EXPORT_SYMBOL_GPL vmlinux 0x19f462ab kfree_call_rcu +EXPORT_SYMBOL_GPL vmlinux 0x19ffb8ee fib_rules_register +EXPORT_SYMBOL_GPL vmlinux 0x1a2a42ea gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0x1a53f835 vtime_account_irq_enter +EXPORT_SYMBOL_GPL vmlinux 0x1a562c56 crypto_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0x1a77d61a fat_add_entries +EXPORT_SYMBOL_GPL vmlinux 0x1a85ace9 crypto_find_alg +EXPORT_SYMBOL_GPL vmlinux 0x1aac395f key_type_logon +EXPORT_SYMBOL_GPL vmlinux 0x1acef7d2 pm_freezing +EXPORT_SYMBOL_GPL vmlinux 0x1ad8ed72 kvm_read_guest +EXPORT_SYMBOL_GPL vmlinux 0x1ae67f54 part_round_stats +EXPORT_SYMBOL_GPL vmlinux 0x1ae9e3f5 tcp_reno_cong_avoid +EXPORT_SYMBOL_GPL vmlinux 0x1af461f2 tpm_put_ops +EXPORT_SYMBOL_GPL vmlinux 0x1b6c5a67 chsc_error_from_response +EXPORT_SYMBOL_GPL vmlinux 0x1b9aca3f jprobe_return +EXPORT_SYMBOL_GPL vmlinux 0x1ba12b17 pm_runtime_no_callbacks +EXPORT_SYMBOL_GPL vmlinux 0x1bab2623 kvm_irq_has_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1bce5bab crypto_alg_sem +EXPORT_SYMBOL_GPL vmlinux 0x1c0db3f2 blkcg_policy_register +EXPORT_SYMBOL_GPL vmlinux 0x1c21b063 platform_device_add_data +EXPORT_SYMBOL_GPL vmlinux 0x1c45b1b2 sysfs_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x1c4b7d3f tty_init_termios +EXPORT_SYMBOL_GPL vmlinux 0x1c549ba3 dev_pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1c5b1f28 irq_free_descs +EXPORT_SYMBOL_GPL vmlinux 0x1c717b7a vfs_fallocate +EXPORT_SYMBOL_GPL vmlinux 0x1c87a811 __round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x1cb75b7e device_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x1cc95796 flush_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x1ce726d1 vfs_getxattr +EXPORT_SYMBOL_GPL vmlinux 0x1d222ced irq_get_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0x1d3036e0 pm_generic_freeze_late +EXPORT_SYMBOL_GPL vmlinux 0x1d3cc005 tty_wakeup +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 0x1e152754 bus_for_each_drv +EXPORT_SYMBOL_GPL vmlinux 0x1e1617df dma_get_required_mask +EXPORT_SYMBOL_GPL vmlinux 0x1e2b48de get_ccwdev_by_dev_id +EXPORT_SYMBOL_GPL vmlinux 0x1e364211 generic_fh_to_dentry +EXPORT_SYMBOL_GPL vmlinux 0x1e5b03dc pm_qos_add_notifier +EXPORT_SYMBOL_GPL vmlinux 0x1e7bbcb3 kernel_restart +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 0x1edf9646 iommu_unmap +EXPORT_SYMBOL_GPL vmlinux 0x1ee52111 fib_rules_lookup +EXPORT_SYMBOL_GPL vmlinux 0x1f2c23fe inode_sb_list_add +EXPORT_SYMBOL_GPL vmlinux 0x1f8544b8 panic_timeout +EXPORT_SYMBOL_GPL vmlinux 0x1f8db7f9 ring_buffer_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0x1f99357b __irq_set_handler +EXPORT_SYMBOL_GPL vmlinux 0x1fb01a71 iommu_domain_set_attr +EXPORT_SYMBOL_GPL vmlinux 0x1fca95eb kthread_park +EXPORT_SYMBOL_GPL vmlinux 0x200f36fa tpm2_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x202dee69 debugfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x20991a93 inet_twsk_alloc +EXPORT_SYMBOL_GPL vmlinux 0x20a92bc4 pm_generic_resume_noirq +EXPORT_SYMBOL_GPL vmlinux 0x20db17cf securityfs_create_file +EXPORT_SYMBOL_GPL vmlinux 0x20de5193 kvm_disable_largepages +EXPORT_SYMBOL_GPL vmlinux 0x20fcb403 __remove_pages +EXPORT_SYMBOL_GPL vmlinux 0x2101b493 pci_user_write_config_byte +EXPORT_SYMBOL_GPL vmlinux 0x213c952e disk_part_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x213d9be3 hugetlb_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x213ec619 __tracepoint_unmap +EXPORT_SYMBOL_GPL vmlinux 0x21502d9c blk_mq_cancel_requeue_work +EXPORT_SYMBOL_GPL vmlinux 0x216d49dc inode_congested +EXPORT_SYMBOL_GPL vmlinux 0x219945d4 pci_hp_add_bridge +EXPORT_SYMBOL_GPL vmlinux 0x21ac8b77 iommu_group_get_by_id +EXPORT_SYMBOL_GPL vmlinux 0x21c71924 dev_pm_domain_attach +EXPORT_SYMBOL_GPL vmlinux 0x21cd536a crypto_put_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x21dadb9d kill_pid_info_as_cred +EXPORT_SYMBOL_GPL vmlinux 0x2296c00d crypto_attr_u32 +EXPORT_SYMBOL_GPL vmlinux 0x2296c882 fuse_conn_put +EXPORT_SYMBOL_GPL vmlinux 0x22a8a2cd elv_register +EXPORT_SYMBOL_GPL vmlinux 0x22acaef9 tcp_reno_ssthresh +EXPORT_SYMBOL_GPL vmlinux 0x22e20b10 chsc_siosl +EXPORT_SYMBOL_GPL vmlinux 0x22e52284 __platform_register_drivers +EXPORT_SYMBOL_GPL vmlinux 0x2318f9c5 wb_writeout_inc +EXPORT_SYMBOL_GPL vmlinux 0x233f5316 sprint_oid +EXPORT_SYMBOL_GPL vmlinux 0x234bc94e dm_set_target_max_io_len +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 0x23c8b358 fwnode_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0x23f4fcbc request_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x23f92ab7 ring_buffer_read_page +EXPORT_SYMBOL_GPL vmlinux 0x240ef33c is_skb_forwardable +EXPORT_SYMBOL_GPL vmlinux 0x241bfd9f zpci_store_block +EXPORT_SYMBOL_GPL vmlinux 0x24457174 audit_enabled +EXPORT_SYMBOL_GPL vmlinux 0x2462d2e7 __rt_mutex_init +EXPORT_SYMBOL_GPL vmlinux 0x247b4b16 device_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0x24a00673 ip6_redirect +EXPORT_SYMBOL_GPL vmlinux 0x24aac4d9 crypto_aes_expand_key +EXPORT_SYMBOL_GPL vmlinux 0x24c6beee nr_iowait +EXPORT_SYMBOL_GPL vmlinux 0x251f6614 ktime_get_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x25ad1c17 fuse_sync_release +EXPORT_SYMBOL_GPL vmlinux 0x25b5df13 crypto_larval_kill +EXPORT_SYMBOL_GPL vmlinux 0x25eebc25 md_stop +EXPORT_SYMBOL_GPL vmlinux 0x2607a61d css_chsc_characteristics +EXPORT_SYMBOL_GPL vmlinux 0x2612a96e iommu_present +EXPORT_SYMBOL_GPL vmlinux 0x261b4f62 xfrm_audit_state_notfound_simple +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 0x267624be device_show_ulong +EXPORT_SYMBOL_GPL vmlinux 0x267e8438 aead_exit_geniv +EXPORT_SYMBOL_GPL vmlinux 0x26b71fb4 ring_buffer_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x26c90ea4 scsi_eh_get_sense +EXPORT_SYMBOL_GPL vmlinux 0x26d5b0c4 kernfs_path +EXPORT_SYMBOL_GPL vmlinux 0x27046576 kvm_exit +EXPORT_SYMBOL_GPL vmlinux 0x2721c52a ping_hash +EXPORT_SYMBOL_GPL vmlinux 0x2729e5a9 component_master_add_with_match +EXPORT_SYMBOL_GPL vmlinux 0x27418e60 gmap_free +EXPORT_SYMBOL_GPL vmlinux 0x276955ec skb_complete_wifi_ack +EXPORT_SYMBOL_GPL vmlinux 0x27b523da skb_pull_rcsum +EXPORT_SYMBOL_GPL vmlinux 0x27cd8a54 pcie_update_link_speed +EXPORT_SYMBOL_GPL vmlinux 0x27f4f029 ftrace_set_global_filter +EXPORT_SYMBOL_GPL vmlinux 0x27fa66e1 nr_free_buffer_pages +EXPORT_SYMBOL_GPL vmlinux 0x2860c29c class_compat_remove_link +EXPORT_SYMBOL_GPL vmlinux 0x28c520f9 fib6_get_table +EXPORT_SYMBOL_GPL vmlinux 0x28d5d9b5 percpu_ida_free_tags +EXPORT_SYMBOL_GPL vmlinux 0x28e3ecb5 dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x28e4c278 smpboot_register_percpu_thread_cpumask +EXPORT_SYMBOL_GPL vmlinux 0x2926546e inet_csk_reqsk_queue_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x293f6a2d gmap_alloc +EXPORT_SYMBOL_GPL vmlinux 0x29410884 wait_on_page_bit_killable_timeout +EXPORT_SYMBOL_GPL vmlinux 0x2945345c __pm_relax +EXPORT_SYMBOL_GPL vmlinux 0x296acc27 blkcipher_aead_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x296fc157 key_type_asymmetric +EXPORT_SYMBOL_GPL vmlinux 0x297b3f17 ping_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x29980371 rsa_parse_priv_key +EXPORT_SYMBOL_GPL vmlinux 0x29b6d3db preempt_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x29cc76e4 md_do_sync +EXPORT_SYMBOL_GPL vmlinux 0x29d7f512 fuse_direct_io +EXPORT_SYMBOL_GPL vmlinux 0x29ea9ef1 blkcipher_walk_virt_block +EXPORT_SYMBOL_GPL vmlinux 0x29eba37f current_is_async +EXPORT_SYMBOL_GPL vmlinux 0x2a1538ca lzo1x_decompress_safe +EXPORT_SYMBOL_GPL vmlinux 0x2a678a13 __suspend_report_result +EXPORT_SYMBOL_GPL vmlinux 0x2a6bebde dm_get_table_device +EXPORT_SYMBOL_GPL vmlinux 0x2a74d6b0 klist_next +EXPORT_SYMBOL_GPL vmlinux 0x2aa02aea __sock_recv_ts_and_drops +EXPORT_SYMBOL_GPL vmlinux 0x2aa7bf21 nf_unregister_afinfo +EXPORT_SYMBOL_GPL vmlinux 0x2aa9e1e5 irq_set_chip_and_handler_name +EXPORT_SYMBOL_GPL vmlinux 0x2add8efc page_mkclean +EXPORT_SYMBOL_GPL vmlinux 0x2b27c257 snmp_get_cpu_field +EXPORT_SYMBOL_GPL vmlinux 0x2b362c69 iommu_domain_window_disable +EXPORT_SYMBOL_GPL vmlinux 0x2bad91fe ipl_info +EXPORT_SYMBOL_GPL vmlinux 0x2bddd896 bpf_prog_destroy +EXPORT_SYMBOL_GPL vmlinux 0x2be0eaf3 sock_diag_check_cookie +EXPORT_SYMBOL_GPL vmlinux 0x2be5f3f3 trace_event_buffer_reserve +EXPORT_SYMBOL_GPL vmlinux 0x2c28cfdb klist_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x2c3054f9 net_inc_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x2c61bd40 shash_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0x2c8d85f1 crypto_alloc_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x2cc675e9 pci_proc_domain +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 0x2cf1ad94 rtnl_delete_link +EXPORT_SYMBOL_GPL vmlinux 0x2d085479 fat_attach +EXPORT_SYMBOL_GPL vmlinux 0x2d1b02d2 usermodehelper_read_lock_wait +EXPORT_SYMBOL_GPL vmlinux 0x2d1ffe9f device_set_wakeup_enable +EXPORT_SYMBOL_GPL vmlinux 0x2d41e6f5 __trace_puts +EXPORT_SYMBOL_GPL vmlinux 0x2d4f4339 transport_remove_device +EXPORT_SYMBOL_GPL vmlinux 0x2d6134a3 hvc_poll +EXPORT_SYMBOL_GPL vmlinux 0x2d6fccdc ping_get_port +EXPORT_SYMBOL_GPL vmlinux 0x2d718fba rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0x2d818752 ip6_append_data +EXPORT_SYMBOL_GPL vmlinux 0x2da6e8a3 __blkg_prfill_u64 +EXPORT_SYMBOL_GPL vmlinux 0x2dd30894 unregister_kretprobe +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 0x2e39f690 skb_morph +EXPORT_SYMBOL_GPL vmlinux 0x2ebe3135 cpu_is_hotpluggable +EXPORT_SYMBOL_GPL vmlinux 0x2ec92012 scatterwalk_copychunks +EXPORT_SYMBOL_GPL vmlinux 0x2f0973b9 crypto_lookup_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x2f0ea05f css_sched_sch_todo +EXPORT_SYMBOL_GPL vmlinux 0x2f204069 scsi_ioctl_block_when_processing_errors +EXPORT_SYMBOL_GPL vmlinux 0x2f4113a2 dcookie_register +EXPORT_SYMBOL_GPL vmlinux 0x2f55550a napi_hash_add +EXPORT_SYMBOL_GPL vmlinux 0x2f599745 __platform_create_bundle +EXPORT_SYMBOL_GPL vmlinux 0x2f66c85e ring_buffer_empty +EXPORT_SYMBOL_GPL vmlinux 0x2f7102e1 gmap_enable +EXPORT_SYMBOL_GPL vmlinux 0x2f7ef5bf debugfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0x2fb213d3 debugfs_create_u16 +EXPORT_SYMBOL_GPL vmlinux 0x2fcc72a2 skcipher_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x2fcfa3d6 debugfs_create_x32 +EXPORT_SYMBOL_GPL vmlinux 0x2fdeab6f fuse_dev_free +EXPORT_SYMBOL_GPL vmlinux 0x2febc993 crypto_register_shashes +EXPORT_SYMBOL_GPL vmlinux 0x30052ed3 vring_new_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x304d923a virtqueue_add_sgs +EXPORT_SYMBOL_GPL vmlinux 0x3051deca l3mdev_fib_table_rcu +EXPORT_SYMBOL_GPL vmlinux 0x305f3da4 x509_free_certificate +EXPORT_SYMBOL_GPL vmlinux 0x306c4f09 kvm_write_guest +EXPORT_SYMBOL_GPL vmlinux 0x30703f7c crypto_alloc_ablkcipher +EXPORT_SYMBOL_GPL vmlinux 0x307ad6f7 iommu_domain_window_enable +EXPORT_SYMBOL_GPL vmlinux 0x30b3f816 pci_hp_change_slot_info +EXPORT_SYMBOL_GPL vmlinux 0x30ceade4 dm_internal_resume +EXPORT_SYMBOL_GPL vmlinux 0x30cfdb08 devices_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x30e1767f register_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x3109b751 cpu_clock +EXPORT_SYMBOL_GPL vmlinux 0x310d8534 __alloc_percpu_gfp +EXPORT_SYMBOL_GPL vmlinux 0x311f5521 ping_recvmsg +EXPORT_SYMBOL_GPL vmlinux 0x313189c3 rhashtable_walk_start +EXPORT_SYMBOL_GPL vmlinux 0x31404b7c bsg_setup_queue +EXPORT_SYMBOL_GPL vmlinux 0x31590bd4 ip6_sk_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x317c1820 percpu_ida_destroy +EXPORT_SYMBOL_GPL vmlinux 0x31aabd6e blk_trace_startstop +EXPORT_SYMBOL_GPL vmlinux 0x31c0c2d1 dm_put +EXPORT_SYMBOL_GPL vmlinux 0x31c80306 component_master_add +EXPORT_SYMBOL_GPL vmlinux 0x31cad6fe ipv6_dup_options +EXPORT_SYMBOL_GPL vmlinux 0x31d42cab key_type_trusted +EXPORT_SYMBOL_GPL vmlinux 0x31d44101 remove_irq +EXPORT_SYMBOL_GPL vmlinux 0x31e21233 __pm_runtime_use_autosuspend +EXPORT_SYMBOL_GPL vmlinux 0x3213b5e2 blk_queue_flush +EXPORT_SYMBOL_GPL vmlinux 0x321bdbb1 compat_get_timeval +EXPORT_SYMBOL_GPL vmlinux 0x321f2aa2 skb_to_sgvec_nomark +EXPORT_SYMBOL_GPL vmlinux 0x322711a7 cpci_hp_unregister_controller +EXPORT_SYMBOL_GPL vmlinux 0x323965e1 event_triggers_call +EXPORT_SYMBOL_GPL vmlinux 0x323fdf68 security_kernel_fw_from_file +EXPORT_SYMBOL_GPL vmlinux 0x325a1878 queue_kthread_work +EXPORT_SYMBOL_GPL vmlinux 0x325a5e39 ndo_dflt_bridge_getlink +EXPORT_SYMBOL_GPL vmlinux 0x328995b5 tracing_generic_entry_update +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 0x32d78667 ip4_datagram_release_cb +EXPORT_SYMBOL_GPL vmlinux 0x32fc1a5b find_symbol +EXPORT_SYMBOL_GPL vmlinux 0x33098220 crypto_register_algs +EXPORT_SYMBOL_GPL vmlinux 0x331b1737 security_inode_mkdir +EXPORT_SYMBOL_GPL vmlinux 0x33337a01 simple_attr_open +EXPORT_SYMBOL_GPL vmlinux 0x335c570f enable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0x336154ca rcutorture_record_test_transition +EXPORT_SYMBOL_GPL vmlinux 0x33de42ff wakeup_source_destroy +EXPORT_SYMBOL_GPL vmlinux 0x33f62439 net_prio_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x33faa937 class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x34003cf0 blkg_lookup_slowpath +EXPORT_SYMBOL_GPL vmlinux 0x3402b563 class_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x34047f62 pci_walk_bus +EXPORT_SYMBOL_GPL vmlinux 0x3453a7dc chp_get_sch_opm +EXPORT_SYMBOL_GPL vmlinux 0x3467a430 fat_sync_inode +EXPORT_SYMBOL_GPL vmlinux 0x347fd4b3 eventfd_ctx_get +EXPORT_SYMBOL_GPL vmlinux 0x34a6fa23 __bpf_call_base +EXPORT_SYMBOL_GPL vmlinux 0x34b301dd crypto_aead_setkey +EXPORT_SYMBOL_GPL vmlinux 0x34ef0f5a device_show_int +EXPORT_SYMBOL_GPL vmlinux 0x34f012f1 handle_fasteoi_irq +EXPORT_SYMBOL_GPL vmlinux 0x34f596e6 driver_find +EXPORT_SYMBOL_GPL vmlinux 0x35176301 rcu_batches_completed_sched +EXPORT_SYMBOL_GPL vmlinux 0x35bd3b61 blkcg_print_blkgs +EXPORT_SYMBOL_GPL vmlinux 0x36075bb5 iommu_group_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x361e2bcc save_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0x36614e79 __online_page_free +EXPORT_SYMBOL_GPL vmlinux 0x3671ae19 blk_rq_unprep_clone +EXPORT_SYMBOL_GPL vmlinux 0x368f053a pm_generic_resume_early +EXPORT_SYMBOL_GPL vmlinux 0x369fcd70 tracing_snapshot +EXPORT_SYMBOL_GPL vmlinux 0x36b7e1a8 l3mdev_master_ifindex_rcu +EXPORT_SYMBOL_GPL vmlinux 0x36bebe86 pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x36fca923 inet_csk_get_port +EXPORT_SYMBOL_GPL vmlinux 0x371dbd7c gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x376fb8aa get_current_tty +EXPORT_SYMBOL_GPL vmlinux 0x377b6f3a crypto_alg_lookup +EXPORT_SYMBOL_GPL vmlinux 0x37ce1b34 vcpu_load +EXPORT_SYMBOL_GPL vmlinux 0x37ce53b2 ipv6_opt_accepted +EXPORT_SYMBOL_GPL vmlinux 0x37ceea7b perf_trace_buf_prepare +EXPORT_SYMBOL_GPL vmlinux 0x37d0a334 tracepoint_probe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x38081acd tpm_try_get_ops +EXPORT_SYMBOL_GPL vmlinux 0x380a088b shmem_add_seals +EXPORT_SYMBOL_GPL vmlinux 0x384a6981 __gfn_to_pfn_memslot +EXPORT_SYMBOL_GPL vmlinux 0x384b705f pm_runtime_force_suspend +EXPORT_SYMBOL_GPL vmlinux 0x387abd74 pci_generic_config_write32 +EXPORT_SYMBOL_GPL vmlinux 0x38a6e0f9 ip6_push_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x38ad5a7f pci_assign_unassigned_bus_resources +EXPORT_SYMBOL_GPL vmlinux 0x38bb10bf inet6_destroy_sock +EXPORT_SYMBOL_GPL vmlinux 0x38efcafd hvc_alloc +EXPORT_SYMBOL_GPL vmlinux 0x390161b3 __tracepoint_powernv_throttle +EXPORT_SYMBOL_GPL vmlinux 0x391d6515 xfrm_audit_state_replay_overflow +EXPORT_SYMBOL_GPL vmlinux 0x393ffa6f asymmetric_key_generate_id +EXPORT_SYMBOL_GPL vmlinux 0x39520968 __fsnotify_parent +EXPORT_SYMBOL_GPL vmlinux 0x39a27a3b system_verify_data +EXPORT_SYMBOL_GPL vmlinux 0x39a3b5ea pci_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x39ba6ec0 proc_get_parent_data +EXPORT_SYMBOL_GPL vmlinux 0x39cb6942 pci_probe_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x39e61495 nf_logger_request_module +EXPORT_SYMBOL_GPL vmlinux 0x3a08b554 crypto_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x3a131973 dev_set_name +EXPORT_SYMBOL_GPL vmlinux 0x3a536bd7 ring_buffer_read_finish +EXPORT_SYMBOL_GPL vmlinux 0x3a5717fc debugfs_rename +EXPORT_SYMBOL_GPL vmlinux 0x3a5df2c4 netlink_add_tap +EXPORT_SYMBOL_GPL vmlinux 0x3a887ea4 crypto_create_tfm +EXPORT_SYMBOL_GPL vmlinux 0x3a9be019 asymmetric_key_id_partial +EXPORT_SYMBOL_GPL vmlinux 0x3ab8f335 ip6_flush_pending_frames +EXPORT_SYMBOL_GPL vmlinux 0x3ac742b0 ping_err +EXPORT_SYMBOL_GPL vmlinux 0x3b015195 crypto_givcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x3b0303df device_pm_wait_for_dev +EXPORT_SYMBOL_GPL vmlinux 0x3b3d5f5c kernfs_put +EXPORT_SYMBOL_GPL vmlinux 0x3b52e390 sysfs_remove_groups +EXPORT_SYMBOL_GPL vmlinux 0x3b7979a6 relay_close +EXPORT_SYMBOL_GPL vmlinux 0x3b7f0bb7 napi_hash_del +EXPORT_SYMBOL_GPL vmlinux 0x3b8794fd __tracepoint_attach_device_to_domain +EXPORT_SYMBOL_GPL vmlinux 0x3ba7f6e3 device_for_each_child +EXPORT_SYMBOL_GPL vmlinux 0x3bde19b0 posix_acl_default_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x3bfe4e8f crypto_register_rngs +EXPORT_SYMBOL_GPL vmlinux 0x3c104e2a transport_configure_device +EXPORT_SYMBOL_GPL vmlinux 0x3c1d859a __mmu_notifier_register +EXPORT_SYMBOL_GPL vmlinux 0x3c2c69da inet_csk_listen_start +EXPORT_SYMBOL_GPL vmlinux 0x3c9390db pci_vpd_find_tag +EXPORT_SYMBOL_GPL vmlinux 0x3cc07765 pci_store_saved_state +EXPORT_SYMBOL_GPL vmlinux 0x3cd06035 add_input_randomness +EXPORT_SYMBOL_GPL vmlinux 0x3d0a2d29 zpci_disable_device +EXPORT_SYMBOL_GPL vmlinux 0x3d388324 dpm_resume_end +EXPORT_SYMBOL_GPL vmlinux 0x3d438dd6 tty_buffer_request_room +EXPORT_SYMBOL_GPL vmlinux 0x3d448aeb crypto_shash_update +EXPORT_SYMBOL_GPL vmlinux 0x3d456117 kvm_io_bus_write +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 0x3dfc436e percpu_ref_kill_and_confirm +EXPORT_SYMBOL_GPL vmlinux 0x3e1f72e0 kvm_vcpu_cache +EXPORT_SYMBOL_GPL vmlinux 0x3e200fab disable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x3e2aa90f iptunnel_pull_header +EXPORT_SYMBOL_GPL vmlinux 0x3e4458a3 __pneigh_lookup +EXPORT_SYMBOL_GPL vmlinux 0x3e50e6eb dummy_irq_chip +EXPORT_SYMBOL_GPL vmlinux 0x3e5a44f0 xfrm_audit_state_icvfail +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 0x3eb38a31 __percpu_init_rwsem +EXPORT_SYMBOL_GPL vmlinux 0x3eba0fb6 perf_tp_event +EXPORT_SYMBOL_GPL vmlinux 0x3eeae059 bus_get_kset +EXPORT_SYMBOL_GPL vmlinux 0x3efb35c9 get_online_cpus +EXPORT_SYMBOL_GPL vmlinux 0x3f001240 blk_rq_err_bytes +EXPORT_SYMBOL_GPL vmlinux 0x3fae9450 transport_setup_device +EXPORT_SYMBOL_GPL vmlinux 0x3fd2f6fb chsc_sadc +EXPORT_SYMBOL_GPL vmlinux 0x3fe5a99a enable_cmf +EXPORT_SYMBOL_GPL vmlinux 0x400905b3 kvm_vcpu_gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0x401da839 class_find_device +EXPORT_SYMBOL_GPL vmlinux 0x40389e96 napi_by_id +EXPORT_SYMBOL_GPL vmlinux 0x4045c494 filter_match_preds +EXPORT_SYMBOL_GPL vmlinux 0x4052998e subsys_interface_register +EXPORT_SYMBOL_GPL vmlinux 0x4065d168 pm_print_active_wakeup_sources +EXPORT_SYMBOL_GPL vmlinux 0x406c4cb1 hrtimer_resolution +EXPORT_SYMBOL_GPL vmlinux 0x407bba76 platform_bus +EXPORT_SYMBOL_GPL vmlinux 0x40bdd7aa pci_disable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0x40c64210 tpm_pm_resume +EXPORT_SYMBOL_GPL vmlinux 0x40d46b21 crypto_ft_tab +EXPORT_SYMBOL_GPL vmlinux 0x40e60506 pci_restore_ats_state +EXPORT_SYMBOL_GPL vmlinux 0x413cc255 dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0x4162f8cd fat_flush_inodes +EXPORT_SYMBOL_GPL vmlinux 0x416ab8b7 sysfs_merge_group +EXPORT_SYMBOL_GPL vmlinux 0x417ba63d debugfs_create_ulong +EXPORT_SYMBOL_GPL vmlinux 0x41814cb8 dirty_writeback_interval +EXPORT_SYMBOL_GPL vmlinux 0x4192e4ac raw_seq_next +EXPORT_SYMBOL_GPL vmlinux 0x419aa2bb __add_pages +EXPORT_SYMBOL_GPL vmlinux 0x41d094f3 hash_algo_name +EXPORT_SYMBOL_GPL vmlinux 0x4223ee4b zs_malloc +EXPORT_SYMBOL_GPL vmlinux 0x4235f09c pci_common_swizzle +EXPORT_SYMBOL_GPL vmlinux 0x424acc6d scatterwalk_done +EXPORT_SYMBOL_GPL vmlinux 0x425aa573 kvm_vcpu_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x425c2c87 fl6_merge_options +EXPORT_SYMBOL_GPL vmlinux 0x426745cb bus_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x42825ce2 rcu_scheduler_active +EXPORT_SYMBOL_GPL vmlinux 0x429e6031 x509_request_asymmetric_key +EXPORT_SYMBOL_GPL vmlinux 0x42a94f6a filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x42ccf61d iommu_attach_group +EXPORT_SYMBOL_GPL vmlinux 0x42dce380 scsi_dh_activate +EXPORT_SYMBOL_GPL vmlinux 0x42f28102 tcp_get_info +EXPORT_SYMBOL_GPL vmlinux 0x4315db98 list_lru_count_one +EXPORT_SYMBOL_GPL vmlinux 0x43443c35 srcu_batches_completed +EXPORT_SYMBOL_GPL vmlinux 0x43619e1a scatterwalk_ffwd +EXPORT_SYMBOL_GPL vmlinux 0x438a5c22 mddev_resume +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 0x43eca819 pkcs7_parse_message +EXPORT_SYMBOL_GPL vmlinux 0x444251ca get_net_ns_by_fd +EXPORT_SYMBOL_GPL vmlinux 0x4446568a transport_destroy_device +EXPORT_SYMBOL_GPL vmlinux 0x4484a5a4 wait_for_device_probe +EXPORT_SYMBOL_GPL vmlinux 0x4497407d virtqueue_get_used +EXPORT_SYMBOL_GPL vmlinux 0x44bae227 bit_wait_timeout +EXPORT_SYMBOL_GPL vmlinux 0x44bc5d9f inet_csk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0x44c8731f find_module +EXPORT_SYMBOL_GPL vmlinux 0x44cae5bf dev_pm_qos_expose_flags +EXPORT_SYMBOL_GPL vmlinux 0x44d847f5 blk_mq_freeze_queue_start +EXPORT_SYMBOL_GPL vmlinux 0x44eb3994 __atomic_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x452c3f78 fat_setattr +EXPORT_SYMBOL_GPL vmlinux 0x453ac28e cpuacct_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x453e41eb device_add +EXPORT_SYMBOL_GPL vmlinux 0x4561ebc4 tpm2_probe +EXPORT_SYMBOL_GPL vmlinux 0x456cab38 alarm_forward +EXPORT_SYMBOL_GPL vmlinux 0x457594fa crypto_alg_list +EXPORT_SYMBOL_GPL vmlinux 0x45960716 __tracepoint_io_page_fault +EXPORT_SYMBOL_GPL vmlinux 0x45b395b5 platform_device_add +EXPORT_SYMBOL_GPL vmlinux 0x45bf1ff3 crypto_inc +EXPORT_SYMBOL_GPL vmlinux 0x45c62c41 fat_getattr +EXPORT_SYMBOL_GPL vmlinux 0x45ee1086 blkg_print_stat_bytes_recursive +EXPORT_SYMBOL_GPL vmlinux 0x46013233 net_dec_ingress_queue +EXPORT_SYMBOL_GPL vmlinux 0x460a7455 sdev_evt_send +EXPORT_SYMBOL_GPL vmlinux 0x460e9155 scsi_device_from_queue +EXPORT_SYMBOL_GPL vmlinux 0x463d24ea ipv6_fixup_options +EXPORT_SYMBOL_GPL vmlinux 0x4687230b tty_port_register_device +EXPORT_SYMBOL_GPL vmlinux 0x4688d7ec pvclock_gtod_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x4693065c tty_buffer_space_avail +EXPORT_SYMBOL_GPL vmlinux 0x46a7d7e3 __clocksource_register_scale +EXPORT_SYMBOL_GPL vmlinux 0x46b45751 shash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x46dd2a63 mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0x4704fdcf tty_ldisc_deref +EXPORT_SYMBOL_GPL vmlinux 0x472a086e bus_find_device +EXPORT_SYMBOL_GPL vmlinux 0x474a3079 gfn_to_page_many_atomic +EXPORT_SYMBOL_GPL vmlinux 0x4761f17c register_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x47884890 system_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0x47aed3b1 sock_prot_inuse_get +EXPORT_SYMBOL_GPL vmlinux 0x47b45269 fib_select_path +EXPORT_SYMBOL_GPL vmlinux 0x47c4f7fc nr_swap_pages +EXPORT_SYMBOL_GPL vmlinux 0x47ce7229 ping_bind +EXPORT_SYMBOL_GPL vmlinux 0x480882f6 cmf_readall +EXPORT_SYMBOL_GPL vmlinux 0x48139b85 dev_pm_qos_update_user_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x482d5c88 hrtimer_try_to_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4833623f set_cpus_allowed_ptr +EXPORT_SYMBOL_GPL vmlinux 0x483e8f2e virtqueue_add_outbuf +EXPORT_SYMBOL_GPL vmlinux 0x48569914 pci_add_dynid +EXPORT_SYMBOL_GPL vmlinux 0x485cd7f6 kvm_rebooting +EXPORT_SYMBOL_GPL vmlinux 0x4868c3b4 rcu_batches_started_bh +EXPORT_SYMBOL_GPL vmlinux 0x486fd5cb inet_csk_compat_setsockopt +EXPORT_SYMBOL_GPL vmlinux 0x487c5d33 nf_log_buf_add +EXPORT_SYMBOL_GPL vmlinux 0x48814cb6 zap_vma_ptes +EXPORT_SYMBOL_GPL vmlinux 0x48c62e4a eventfd_ctx_read +EXPORT_SYMBOL_GPL vmlinux 0x48d43b99 blkg_rwstat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x48f57b95 ip_route_output_flow +EXPORT_SYMBOL_GPL vmlinux 0x4926ab86 kvm_release_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0x493c423b event_triggers_post_call +EXPORT_SYMBOL_GPL vmlinux 0x496de498 virtqueue_kick_prepare +EXPORT_SYMBOL_GPL vmlinux 0x499043d3 crypto_init_queue +EXPORT_SYMBOL_GPL vmlinux 0x49c37681 gfn_to_memslot +EXPORT_SYMBOL_GPL vmlinux 0x49cfacf1 io_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x49e96999 cond_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0x49f08703 dev_pm_get_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0x4a03d2f6 tty_buffer_lock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0x4a10f4ba fuse_conn_get +EXPORT_SYMBOL_GPL vmlinux 0x4a33bab0 __get_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x4a4568ae kvm_vcpu_init +EXPORT_SYMBOL_GPL vmlinux 0x4a4c10a9 pkey_id_type_name +EXPORT_SYMBOL_GPL vmlinux 0x4a6118c5 pci_dev_run_wake +EXPORT_SYMBOL_GPL vmlinux 0x4a6538df hrtimer_init +EXPORT_SYMBOL_GPL vmlinux 0x4a7f1257 nl_table +EXPORT_SYMBOL_GPL vmlinux 0x4a95468d clockevent_delta2ns +EXPORT_SYMBOL_GPL vmlinux 0x4aa46669 vfs_removexattr +EXPORT_SYMBOL_GPL vmlinux 0x4aadeb9a ring_buffer_alloc_read_page +EXPORT_SYMBOL_GPL vmlinux 0x4abe26d1 md_ack_all_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x4acf8bf9 ping_init_sock +EXPORT_SYMBOL_GPL vmlinux 0x4aeee3de console_drivers +EXPORT_SYMBOL_GPL vmlinux 0x4af5ff64 add_disk_randomness +EXPORT_SYMBOL_GPL vmlinux 0x4b18565b static_key_slow_dec +EXPORT_SYMBOL_GPL vmlinux 0x4b1bc5c6 srcu_barrier +EXPORT_SYMBOL_GPL vmlinux 0x4b2f68e7 __tracepoint_rpm_return_int +EXPORT_SYMBOL_GPL vmlinux 0x4b34075c sysfs_remove_file_from_group +EXPORT_SYMBOL_GPL vmlinux 0x4b39d193 bpf_prog_select_runtime +EXPORT_SYMBOL_GPL vmlinux 0x4b6f751e bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x4b840dfd probe_kernel_read +EXPORT_SYMBOL_GPL vmlinux 0x4b90da49 inet6_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0x4b9660ef __tracepoint_rpm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x4b97f6e0 device_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x4bc99708 unregister_kprobes +EXPORT_SYMBOL_GPL vmlinux 0x4bcb7b6e device_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0x4bd41226 uprobe_unregister +EXPORT_SYMBOL_GPL vmlinux 0x4c3a60d5 sysfs_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x4c4d4804 klp_unregister_patch +EXPORT_SYMBOL_GPL vmlinux 0x4c602bf1 __blkg_release_rcu +EXPORT_SYMBOL_GPL vmlinux 0x4c759827 byte_rev_table +EXPORT_SYMBOL_GPL vmlinux 0x4c893ed9 posix_timer_event +EXPORT_SYMBOL_GPL vmlinux 0x4c904e15 subsys_dev_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x4c94df4e rhashtable_insert_slow +EXPORT_SYMBOL_GPL vmlinux 0x4ccaa12d xfrm_audit_state_replay +EXPORT_SYMBOL_GPL vmlinux 0x4ced1ae1 perf_event_read_value +EXPORT_SYMBOL_GPL vmlinux 0x4d0015e2 cpu_hotplug_disable +EXPORT_SYMBOL_GPL vmlinux 0x4d1d7747 disk_part_iter_init +EXPORT_SYMBOL_GPL vmlinux 0x4d52ecd0 dax_clear_blocks +EXPORT_SYMBOL_GPL vmlinux 0x4d6ae6da of_css +EXPORT_SYMBOL_GPL vmlinux 0x4de5edfd kern_mount_data +EXPORT_SYMBOL_GPL vmlinux 0x4e109192 ring_buffer_entries +EXPORT_SYMBOL_GPL vmlinux 0x4e6f042f list_lru_walk_one +EXPORT_SYMBOL_GPL vmlinux 0x4e8acd15 pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0x4eb3043d iommu_domain_get_attr +EXPORT_SYMBOL_GPL vmlinux 0x4ec153c6 nr_running +EXPORT_SYMBOL_GPL vmlinux 0x4ed0ecb6 task_cgroup_path +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 0x4f9bc0ab hrtimer_active +EXPORT_SYMBOL_GPL vmlinux 0x4fc539b5 alarm_cancel +EXPORT_SYMBOL_GPL vmlinux 0x4fd629b4 blk_abort_request +EXPORT_SYMBOL_GPL vmlinux 0x4fe1eddf unregister_netevent_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5019d540 blk_queue_rq_timed_out +EXPORT_SYMBOL_GPL vmlinux 0x5040339e kvm_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x507b282b crypto_shash_digest +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 0x50c60e9b pci_sriov_get_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0x50c82a20 pci_ioremap_bar +EXPORT_SYMBOL_GPL vmlinux 0x50f9b6fd crypto_register_template +EXPORT_SYMBOL_GPL vmlinux 0x50fad434 round_jiffies_up +EXPORT_SYMBOL_GPL vmlinux 0x512b4b39 pci_domain_nr +EXPORT_SYMBOL_GPL vmlinux 0x5146a39d gmap_do_ipte_notify +EXPORT_SYMBOL_GPL vmlinux 0x514dbc9c tpm_is_tpm2 +EXPORT_SYMBOL_GPL vmlinux 0x5157d77f __srcu_read_lock +EXPORT_SYMBOL_GPL vmlinux 0x51bea5f1 crypto_register_aead +EXPORT_SYMBOL_GPL vmlinux 0x51d0c362 blkg_print_stat_bytes +EXPORT_SYMBOL_GPL vmlinux 0x51d8e8ac tcp_twsk_destructor +EXPORT_SYMBOL_GPL vmlinux 0x52055350 __online_page_increment_counters +EXPORT_SYMBOL_GPL vmlinux 0x521828cc devres_destroy +EXPORT_SYMBOL_GPL vmlinux 0x521b4386 pingv6_prot +EXPORT_SYMBOL_GPL vmlinux 0x523d4438 kvm_read_guest_atomic +EXPORT_SYMBOL_GPL vmlinux 0x525006f2 dm_path_uevent +EXPORT_SYMBOL_GPL vmlinux 0x5274ae0a pci_disable_ats +EXPORT_SYMBOL_GPL vmlinux 0x527a94b2 crypto_larval_lookup +EXPORT_SYMBOL_GPL vmlinux 0x52a0f61b crypto_get_default_null_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x52a5308c register_net_sysctl +EXPORT_SYMBOL_GPL vmlinux 0x52abf8c9 show_class_attr_string +EXPORT_SYMBOL_GPL vmlinux 0x52c0bf53 __tracepoint_map +EXPORT_SYMBOL_GPL vmlinux 0x52ef6951 __tracepoint_block_bio_remap +EXPORT_SYMBOL_GPL vmlinux 0x530a6f26 fs_kobj +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 0x536648d9 pci_set_pcie_reset_state +EXPORT_SYMBOL_GPL vmlinux 0x536b2db2 bitmap_copy_from_slot +EXPORT_SYMBOL_GPL vmlinux 0x538ad8b6 page_cache_async_readahead +EXPORT_SYMBOL_GPL vmlinux 0x53a0c498 cio_disable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x53d33681 blkg_stat_recursive_sum +EXPORT_SYMBOL_GPL vmlinux 0x53da83be pci_cfg_access_lock +EXPORT_SYMBOL_GPL vmlinux 0x54102565 kvm_vcpu_block +EXPORT_SYMBOL_GPL vmlinux 0x541bd60a irq_work_run +EXPORT_SYMBOL_GPL vmlinux 0x5460c8d8 fsnotify_get_cookie +EXPORT_SYMBOL_GPL vmlinux 0x546d480f pci_bus_sem +EXPORT_SYMBOL_GPL vmlinux 0x548415c2 bitmap_resize +EXPORT_SYMBOL_GPL vmlinux 0x549525ef handle_nested_irq +EXPORT_SYMBOL_GPL vmlinux 0x54e297de crypto_alloc_instance2 +EXPORT_SYMBOL_GPL vmlinux 0x54ef3d03 ioremap_page_range +EXPORT_SYMBOL_GPL vmlinux 0x54fd5e1f gmap_unregister_ipte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x552904af unuse_mm +EXPORT_SYMBOL_GPL vmlinux 0x55358915 fanout_mutex +EXPORT_SYMBOL_GPL vmlinux 0x5577af38 bpf_prog_alloc +EXPORT_SYMBOL_GPL vmlinux 0x558f6168 ip_tunnel_get_stats64 +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 0x5603700c virtqueue_enable_cb +EXPORT_SYMBOL_GPL vmlinux 0x5606e0e8 kvm_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x560e23d4 synchronize_srcu +EXPORT_SYMBOL_GPL vmlinux 0x56256e8a orderly_poweroff +EXPORT_SYMBOL_GPL vmlinux 0x5629b179 dev_pm_clear_wake_irq +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 0x5686bb2e tcp_send_ack +EXPORT_SYMBOL_GPL vmlinux 0x56886b19 scatterwalk_map +EXPORT_SYMBOL_GPL vmlinux 0x56c21377 nfnl_ct_hook +EXPORT_SYMBOL_GPL vmlinux 0x56d697ce cpu_up +EXPORT_SYMBOL_GPL vmlinux 0x56e75d47 klist_node_attached +EXPORT_SYMBOL_GPL vmlinux 0x57081251 md_run +EXPORT_SYMBOL_GPL vmlinux 0x57231f45 ring_buffer_record_on +EXPORT_SYMBOL_GPL vmlinux 0x575c5f94 execute_in_process_context +EXPORT_SYMBOL_GPL vmlinux 0x576fa340 crypto_ablkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0x576fa46f component_add +EXPORT_SYMBOL_GPL vmlinux 0x5770ddae __class_register +EXPORT_SYMBOL_GPL vmlinux 0x5790e7a0 pci_unlock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0x579e0bf5 rtnl_unregister_all +EXPORT_SYMBOL_GPL vmlinux 0x57a923e4 dev_pm_qos_expose_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0x57ac6471 get_task_pid +EXPORT_SYMBOL_GPL vmlinux 0x57b3123c simple_attr_release +EXPORT_SYMBOL_GPL vmlinux 0x57b538d6 pm_generic_thaw +EXPORT_SYMBOL_GPL vmlinux 0x57ca4930 kvm_get_kvm +EXPORT_SYMBOL_GPL vmlinux 0x58220916 rhashtable_destroy +EXPORT_SYMBOL_GPL vmlinux 0x58296d7f crypto_unregister_shash +EXPORT_SYMBOL_GPL vmlinux 0x58424796 file_ra_state_init +EXPORT_SYMBOL_GPL vmlinux 0x58427b9e invalidate_inode_pages2 +EXPORT_SYMBOL_GPL vmlinux 0x5911ece8 inet_hashinfo_init +EXPORT_SYMBOL_GPL vmlinux 0x593d6dc9 __class_create +EXPORT_SYMBOL_GPL vmlinux 0x59415efa bus_register +EXPORT_SYMBOL_GPL vmlinux 0x5982e684 eventfd_fget +EXPORT_SYMBOL_GPL vmlinux 0x59bac531 ip6_dst_lookup +EXPORT_SYMBOL_GPL vmlinux 0x59bb91df __pci_reset_function_locked +EXPORT_SYMBOL_GPL vmlinux 0x59df3676 kvm_vcpu_uninit +EXPORT_SYMBOL_GPL vmlinux 0x59e3beef rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x59eae699 ring_buffer_read_prepare +EXPORT_SYMBOL_GPL vmlinux 0x5a13b994 __blk_run_queue_uncond +EXPORT_SYMBOL_GPL vmlinux 0x5a19636c net_ns_type_operations +EXPORT_SYMBOL_GPL vmlinux 0x5a7bfe41 crypto_probing_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ab6813d __netpoll_setup +EXPORT_SYMBOL_GPL vmlinux 0x5aba4303 debugfs_create_u32_array +EXPORT_SYMBOL_GPL vmlinux 0x5ac2727f smp_call_function_any +EXPORT_SYMBOL_GPL vmlinux 0x5acb3670 tty_ldisc_ref +EXPORT_SYMBOL_GPL vmlinux 0x5afd7b2c kvm_debugfs_dir +EXPORT_SYMBOL_GPL vmlinux 0x5b536927 find_vpid +EXPORT_SYMBOL_GPL vmlinux 0x5bd0748f crypto_del_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x5bdbac4e rcu_unexpedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x5c2f2475 posix_clock_register +EXPORT_SYMBOL_GPL vmlinux 0x5c2f2906 nl_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x5c3d9d82 fuse_do_open +EXPORT_SYMBOL_GPL vmlinux 0x5c61ebe2 rt_mutex_timed_lock +EXPORT_SYMBOL_GPL vmlinux 0x5c66d02c get_device +EXPORT_SYMBOL_GPL vmlinux 0x5c700622 mmput +EXPORT_SYMBOL_GPL vmlinux 0x5c71d21a sched_clock +EXPORT_SYMBOL_GPL vmlinux 0x5c995397 crypto_init_shash_spawn +EXPORT_SYMBOL_GPL vmlinux 0x5c9e60b2 iommu_iova_to_phys +EXPORT_SYMBOL_GPL vmlinux 0x5cabdced dev_pm_qos_remove_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x5cc509a4 nsecs_to_jiffies +EXPORT_SYMBOL_GPL vmlinux 0x5d57265d inet_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0x5d64121c kvm_vcpu_gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x5d8c2e9c pci_hp_deregister +EXPORT_SYMBOL_GPL vmlinux 0x5da67adc zs_compact +EXPORT_SYMBOL_GPL vmlinux 0x5da731aa __module_text_address +EXPORT_SYMBOL_GPL vmlinux 0x5deacf8d yield_to +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 0x5e64eb20 irq_get_irq_data +EXPORT_SYMBOL_GPL vmlinux 0x5e81c7c2 ip_build_and_send_pkt +EXPORT_SYMBOL_GPL vmlinux 0x5e89dba6 sysfs_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ec41376 pm_runtime_set_autosuspend_delay +EXPORT_SYMBOL_GPL vmlinux 0x5ed6940b virtqueue_notify +EXPORT_SYMBOL_GPL vmlinux 0x5ee0098a __netpoll_cleanup +EXPORT_SYMBOL_GPL vmlinux 0x5f029336 css_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x5f226035 mod_delayed_work_on +EXPORT_SYMBOL_GPL vmlinux 0x5f34c4d3 kset_create_and_add +EXPORT_SYMBOL_GPL vmlinux 0x5f434f45 class_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0x5f44ab9c scsi_schedule_eh +EXPORT_SYMBOL_GPL vmlinux 0x5f69e6ea raw_unhash_sk +EXPORT_SYMBOL_GPL vmlinux 0x5f8d9974 bpf_prog_get +EXPORT_SYMBOL_GPL vmlinux 0x60450f82 call_filter_check_discard +EXPORT_SYMBOL_GPL vmlinux 0x60506751 unmap_kernel_range_noflush +EXPORT_SYMBOL_GPL vmlinux 0x60720f6c smpboot_unregister_percpu_thread +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 0x60b160f5 platform_bus_type +EXPORT_SYMBOL_GPL vmlinux 0x60c4a206 blocking_notifier_chain_cond_register +EXPORT_SYMBOL_GPL vmlinux 0x60c95db0 static_key_slow_dec_deferred +EXPORT_SYMBOL_GPL vmlinux 0x60cc2d9b __sock_recv_timestamp +EXPORT_SYMBOL_GPL vmlinux 0x60d14dc2 trace_seq_vprintf +EXPORT_SYMBOL_GPL vmlinux 0x610e93b7 component_unbind_all +EXPORT_SYMBOL_GPL vmlinux 0x613dad31 tcp_set_state +EXPORT_SYMBOL_GPL vmlinux 0x61706b25 sysfs_create_files +EXPORT_SYMBOL_GPL vmlinux 0x6170b0a8 wbc_account_io +EXPORT_SYMBOL_GPL vmlinux 0x6174cc51 fat_get_dotdot_entry +EXPORT_SYMBOL_GPL vmlinux 0x61787eb0 xfrm_audit_state_add +EXPORT_SYMBOL_GPL vmlinux 0x6184f6d7 attribute_container_find_class_device +EXPORT_SYMBOL_GPL vmlinux 0x61a97e5f register_reset_call +EXPORT_SYMBOL_GPL vmlinux 0x61ed61cb pci_slots_kset +EXPORT_SYMBOL_GPL vmlinux 0x61f551fe blkg_dev_name +EXPORT_SYMBOL_GPL vmlinux 0x61fc8455 platform_device_alloc +EXPORT_SYMBOL_GPL vmlinux 0x622c7922 register_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0x626ae8fb crypto_shash_final +EXPORT_SYMBOL_GPL vmlinux 0x62a53cb4 wakeup_source_remove +EXPORT_SYMBOL_GPL vmlinux 0x62abfdbb tcp_twsk_unique +EXPORT_SYMBOL_GPL vmlinux 0x62ce24c6 __module_address +EXPORT_SYMBOL_GPL vmlinux 0x63312f82 bsg_request_fn +EXPORT_SYMBOL_GPL vmlinux 0x63349b23 key_type_user +EXPORT_SYMBOL_GPL vmlinux 0x634aef76 cn_add_callback +EXPORT_SYMBOL_GPL vmlinux 0x634b9ad1 __pci_complete_power_transition +EXPORT_SYMBOL_GPL vmlinux 0x637c5f9a shmem_get_seals +EXPORT_SYMBOL_GPL vmlinux 0x63c208eb public_key_subtype +EXPORT_SYMBOL_GPL vmlinux 0x63c5a2e1 blkdev_read_iter +EXPORT_SYMBOL_GPL vmlinux 0x63cdfb5b sysfs_add_link_to_group +EXPORT_SYMBOL_GPL vmlinux 0x63e1af57 handle_level_irq +EXPORT_SYMBOL_GPL vmlinux 0x63f4dc09 bprintf +EXPORT_SYMBOL_GPL vmlinux 0x6410e160 ktime_mono_to_any +EXPORT_SYMBOL_GPL vmlinux 0x64137d14 __fib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x643e0ce5 call_rcu_sched +EXPORT_SYMBOL_GPL vmlinux 0x64a0fc52 device_store_bool +EXPORT_SYMBOL_GPL vmlinux 0x64b53a3a blk_unprep_request +EXPORT_SYMBOL_GPL vmlinux 0x64b6a25a ipv4_redirect +EXPORT_SYMBOL_GPL vmlinux 0x650c180c iommu_group_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0x6544e0db crypto_rng_reset +EXPORT_SYMBOL_GPL vmlinux 0x65521ed2 component_del +EXPORT_SYMBOL_GPL vmlinux 0x657be8e4 platform_device_register +EXPORT_SYMBOL_GPL vmlinux 0x658198b8 crypto_shash_finup +EXPORT_SYMBOL_GPL vmlinux 0x65b73429 tpm2_startup +EXPORT_SYMBOL_GPL vmlinux 0x65bbbc78 schedule_hrtimeout_range +EXPORT_SYMBOL_GPL vmlinux 0x65c2dd83 crypto_unregister_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x65c6cbc7 pm_runtime_forbid +EXPORT_SYMBOL_GPL vmlinux 0x65ccb6f0 call_netevent_notifiers +EXPORT_SYMBOL_GPL vmlinux 0x65d128e4 pid_vnr +EXPORT_SYMBOL_GPL vmlinux 0x65d84dec rhashtable_walk_exit +EXPORT_SYMBOL_GPL vmlinux 0x65e744df sched_clock_base_cc +EXPORT_SYMBOL_GPL vmlinux 0x660ed7a6 devres_release_group +EXPORT_SYMBOL_GPL vmlinux 0x661601de sprint_symbol +EXPORT_SYMBOL_GPL vmlinux 0x6619a388 net_cls_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x66358d75 appldata_unregister_ops +EXPORT_SYMBOL_GPL vmlinux 0x6636c3c9 irq_set_vcpu_affinity +EXPORT_SYMBOL_GPL vmlinux 0x66399e4b pci_try_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0x663cf1df device_bind_driver +EXPORT_SYMBOL_GPL vmlinux 0x663d1281 mmu_notifier_unregister +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 0x66d87d38 symbol_put_addr +EXPORT_SYMBOL_GPL vmlinux 0x66e3f347 cio_enable_subchannel +EXPORT_SYMBOL_GPL vmlinux 0x6725cf3f __ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0x674e13e1 public_key_destroy +EXPORT_SYMBOL_GPL vmlinux 0x67588a80 klp_register_patch +EXPORT_SYMBOL_GPL vmlinux 0x675f9c2f skcipher_geniv_free +EXPORT_SYMBOL_GPL vmlinux 0x677a7f4e skb_copy_ubufs +EXPORT_SYMBOL_GPL vmlinux 0x678f2bca pm_generic_resume +EXPORT_SYMBOL_GPL vmlinux 0x67955ce6 profile_hits +EXPORT_SYMBOL_GPL vmlinux 0x67982838 kobject_uevent_env +EXPORT_SYMBOL_GPL vmlinux 0x679f9309 __pm_wakeup_event +EXPORT_SYMBOL_GPL vmlinux 0x67bca9f9 nf_queue_entry_get_refs +EXPORT_SYMBOL_GPL vmlinux 0x67f886f8 device_remove_file_self +EXPORT_SYMBOL_GPL vmlinux 0x68324a41 kobject_rename +EXPORT_SYMBOL_GPL vmlinux 0x685baaf4 handle_bad_irq +EXPORT_SYMBOL_GPL vmlinux 0x687dacf0 bdev_write_page +EXPORT_SYMBOL_GPL vmlinux 0x68876134 shash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0x688d0601 fsstack_copy_inode_size +EXPORT_SYMBOL_GPL vmlinux 0x68d10196 device_reprobe +EXPORT_SYMBOL_GPL vmlinux 0x691b119e ahash_register_instance +EXPORT_SYMBOL_GPL vmlinux 0x6921aa34 compat_put_timeval +EXPORT_SYMBOL_GPL vmlinux 0x6923ce63 irq_work_sync +EXPORT_SYMBOL_GPL vmlinux 0x6940bea6 dax_truncate_page +EXPORT_SYMBOL_GPL vmlinux 0x6943367d blk_queue_bypass_end +EXPORT_SYMBOL_GPL vmlinux 0x69447467 ring_buffer_write +EXPORT_SYMBOL_GPL vmlinux 0x694d74f1 trace_define_field +EXPORT_SYMBOL_GPL vmlinux 0x69500d5c dev_pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x697c5d0d tracing_snapshot_alloc +EXPORT_SYMBOL_GPL vmlinux 0x698a899f ring_buffer_peek +EXPORT_SYMBOL_GPL vmlinux 0x69b52197 single_open_net +EXPORT_SYMBOL_GPL vmlinux 0x69b9dbbb simple_attr_write +EXPORT_SYMBOL_GPL vmlinux 0x6a0e6913 scm_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a168df8 inet_csk_compat_getsockopt +EXPORT_SYMBOL_GPL vmlinux 0x6a1733eb iommu_group_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x6a1df157 gmap_fault +EXPORT_SYMBOL_GPL vmlinux 0x6a2159ed kvm_clear_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x6a4f623b mmu_notifier_synchronize +EXPORT_SYMBOL_GPL vmlinux 0x6a57bbda device_release_driver +EXPORT_SYMBOL_GPL vmlinux 0x6a5fb566 rcu_sched_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x6a71131d fib_rules_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6a78d606 gfn_to_hva +EXPORT_SYMBOL_GPL vmlinux 0x6a8441be cpci_hp_start +EXPORT_SYMBOL_GPL vmlinux 0x6a93308a blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x6a96c0bc blk_queue_lld_busy +EXPORT_SYMBOL_GPL vmlinux 0x6b29a1fa ring_buffer_event_length +EXPORT_SYMBOL_GPL vmlinux 0x6b5edc89 user_read +EXPORT_SYMBOL_GPL vmlinux 0x6b8b2125 system_trusted_keyring +EXPORT_SYMBOL_GPL vmlinux 0x6be5162c freezer_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x6bf647e9 device_create_vargs +EXPORT_SYMBOL_GPL vmlinux 0x6c07d933 add_uevent_var +EXPORT_SYMBOL_GPL vmlinux 0x6c0add78 dev_pm_qos_hide_latency_limit +EXPORT_SYMBOL_GPL vmlinux 0x6c11934f kmsg_dump_get_line +EXPORT_SYMBOL_GPL vmlinux 0x6c6e45ac wakeup_source_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c7bac33 crypto_unregister_rng +EXPORT_SYMBOL_GPL vmlinux 0x6c81d919 rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6c844229 check_syslog_permissions +EXPORT_SYMBOL_GPL vmlinux 0x6c9a2dff platform_device_add_resources +EXPORT_SYMBOL_GPL vmlinux 0x6c9a7a8c register_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0x6ca4bf88 async_synchronize_full_domain +EXPORT_SYMBOL_GPL vmlinux 0x6d0caf78 tpm_do_selftest +EXPORT_SYMBOL_GPL vmlinux 0x6d2fc5a6 net_namespace_list +EXPORT_SYMBOL_GPL vmlinux 0x6d84cb08 xfrm_inner_extract_output +EXPORT_SYMBOL_GPL vmlinux 0x6dee8291 tty_standard_install +EXPORT_SYMBOL_GPL vmlinux 0x6df745b8 bd_link_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x6e0f8287 perf_event_release_kernel +EXPORT_SYMBOL_GPL vmlinux 0x6e535798 blkg_prfill_stat +EXPORT_SYMBOL_GPL vmlinux 0x6e61f7cf blkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0x6e7943ec iommu_group_id +EXPORT_SYMBOL_GPL vmlinux 0x6e9aadd7 pm_generic_restore_early +EXPORT_SYMBOL_GPL vmlinux 0x6ebdfb72 transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x6ee7ae4b get_cpu_device +EXPORT_SYMBOL_GPL vmlinux 0x6ef60373 klist_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0x6f00fcae crypto_register_aeads +EXPORT_SYMBOL_GPL vmlinux 0x6f0196cc digsig_verify +EXPORT_SYMBOL_GPL vmlinux 0x6f185725 user_destroy +EXPORT_SYMBOL_GPL vmlinux 0x6f3f9b32 crypto_unregister_rngs +EXPORT_SYMBOL_GPL vmlinux 0x6f45683a sdev_evt_send_simple +EXPORT_SYMBOL_GPL vmlinux 0x6f7e5c91 bpf_skb_vlan_pop_proto +EXPORT_SYMBOL_GPL vmlinux 0x6f821920 enable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x6f8cda7c bio_trim +EXPORT_SYMBOL_GPL vmlinux 0x6fe3d8cf ktime_add_safe +EXPORT_SYMBOL_GPL vmlinux 0x6ff607b6 crypto_get_default_rng +EXPORT_SYMBOL_GPL vmlinux 0x70193378 devm_add_action +EXPORT_SYMBOL_GPL vmlinux 0x70231900 __put_net +EXPORT_SYMBOL_GPL vmlinux 0x707f81c8 dax_do_io +EXPORT_SYMBOL_GPL vmlinux 0x70c52dc5 nf_skb_duplicated +EXPORT_SYMBOL_GPL vmlinux 0x70d6e02b pci_num_vf +EXPORT_SYMBOL_GPL vmlinux 0x70d6e84e netdev_is_rx_handler_busy +EXPORT_SYMBOL_GPL vmlinux 0x70e343b0 __srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x70e54170 mnt_clone_write +EXPORT_SYMBOL_GPL vmlinux 0x710c73b6 crypto_unregister_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7122077b wait_for_tpm_stat +EXPORT_SYMBOL_GPL vmlinux 0x712c453b virtio_device_restore +EXPORT_SYMBOL_GPL vmlinux 0x714c2213 ping_getfrag +EXPORT_SYMBOL_GPL vmlinux 0x716265c7 debugfs_initialized +EXPORT_SYMBOL_GPL vmlinux 0x718d34ba bdev_direct_access +EXPORT_SYMBOL_GPL vmlinux 0x71ceeeda devres_remove +EXPORT_SYMBOL_GPL vmlinux 0x71dc9998 crypto_il_tab +EXPORT_SYMBOL_GPL vmlinux 0x71f36b90 crypto_alloc_rng +EXPORT_SYMBOL_GPL vmlinux 0x7212b530 tty_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0x72253092 iommu_set_fault_handler +EXPORT_SYMBOL_GPL vmlinux 0x722bf254 crypto_unregister_shashes +EXPORT_SYMBOL_GPL vmlinux 0x724541a8 pm_generic_poweroff_late +EXPORT_SYMBOL_GPL vmlinux 0x72688719 trace_event_buffer_commit +EXPORT_SYMBOL_GPL vmlinux 0x72741f25 trace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0x7278d328 all_vm_events +EXPORT_SYMBOL_GPL vmlinux 0x729b9c0f bio_associate_blkcg +EXPORT_SYMBOL_GPL vmlinux 0x72a67dab page_endio +EXPORT_SYMBOL_GPL vmlinux 0x72f52911 trace_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0x734c6281 __audit_inode_child +EXPORT_SYMBOL_GPL vmlinux 0x73738bad device_register +EXPORT_SYMBOL_GPL vmlinux 0x73aaa267 ip6_sk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x73d69364 ring_buffer_change_overwrite +EXPORT_SYMBOL_GPL vmlinux 0x73d83b7f anon_inode_getfile +EXPORT_SYMBOL_GPL vmlinux 0x73ee0f6f pci_restore_msi_state +EXPORT_SYMBOL_GPL vmlinux 0x73f27689 tty_port_install +EXPORT_SYMBOL_GPL vmlinux 0x74086e73 dev_pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0x740bf5c2 get_kernel_pages +EXPORT_SYMBOL_GPL vmlinux 0x7442f229 flush_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0x7464ea38 dev_pm_qos_add_global_notifier +EXPORT_SYMBOL_GPL vmlinux 0x748a05f8 set_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x748bbc3e tun_get_socket +EXPORT_SYMBOL_GPL vmlinux 0x74904375 pci_stop_and_remove_bus_device_locked +EXPORT_SYMBOL_GPL vmlinux 0x74937272 unregister_jprobes +EXPORT_SYMBOL_GPL vmlinux 0x74a5ec9b unregister_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0x74b5ea68 lcm_not_zero +EXPORT_SYMBOL_GPL vmlinux 0x74baf17a tracing_is_on +EXPORT_SYMBOL_GPL vmlinux 0x74cb0aa2 scsi_target_unblock +EXPORT_SYMBOL_GPL vmlinux 0x74d198a8 blk_queue_flush_queueable +EXPORT_SYMBOL_GPL vmlinux 0x74d4e4cb klp_disable_patch +EXPORT_SYMBOL_GPL vmlinux 0x7522f3ba irq_modify_status +EXPORT_SYMBOL_GPL vmlinux 0x7544c06b tpm_get_random +EXPORT_SYMBOL_GPL vmlinux 0x758a782e blk_fill_rwbs +EXPORT_SYMBOL_GPL vmlinux 0x759b9462 request_firmware_direct +EXPORT_SYMBOL_GPL vmlinux 0x75b29fcd kvm_vcpu_read_guest_page +EXPORT_SYMBOL_GPL vmlinux 0x75c97012 __inet_inherit_port +EXPORT_SYMBOL_GPL vmlinux 0x75cbfb09 add_interrupt_randomness +EXPORT_SYMBOL_GPL vmlinux 0x75e94bf7 pci_set_cacheline_size +EXPORT_SYMBOL_GPL vmlinux 0x75ff410b bio_alloc_mddev +EXPORT_SYMBOL_GPL vmlinux 0x76021462 blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0x76254331 pci_device_is_present +EXPORT_SYMBOL_GPL vmlinux 0x76436cf8 perf_event_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x76539059 __blk_put_request +EXPORT_SYMBOL_GPL vmlinux 0x7681946c unregister_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x76886462 ping_rcv +EXPORT_SYMBOL_GPL vmlinux 0x76ce63c8 restore_online_page_callback +EXPORT_SYMBOL_GPL vmlinux 0x7712174c bpf_prog_create_from_user +EXPORT_SYMBOL_GPL vmlinux 0x7729cbdd task_handoff_register +EXPORT_SYMBOL_GPL vmlinux 0x773a30d1 pci_try_reset_slot +EXPORT_SYMBOL_GPL vmlinux 0x773ba846 platform_device_del +EXPORT_SYMBOL_GPL vmlinux 0x7754bc11 dm_hold +EXPORT_SYMBOL_GPL vmlinux 0x776dc37a device_remove_property_set +EXPORT_SYMBOL_GPL vmlinux 0x777237ce __tracepoint_cpu_idle +EXPORT_SYMBOL_GPL vmlinux 0x777c5667 driver_remove_file +EXPORT_SYMBOL_GPL vmlinux 0x77bac45a pids_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x7834dcd6 vtime_account_system +EXPORT_SYMBOL_GPL vmlinux 0x783e16ba devm_remove_action +EXPORT_SYMBOL_GPL vmlinux 0x78453ac4 pm_runtime_enable +EXPORT_SYMBOL_GPL vmlinux 0x7855d377 watchdog_init_timeout +EXPORT_SYMBOL_GPL vmlinux 0x785a93b4 si_mem_available +EXPORT_SYMBOL_GPL vmlinux 0x785c2cca map_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x785da072 __fsnotify_inode_delete +EXPORT_SYMBOL_GPL vmlinux 0x7894ac53 virtqueue_get_vring_size +EXPORT_SYMBOL_GPL vmlinux 0x78992969 inet_ctl_sock_create +EXPORT_SYMBOL_GPL vmlinux 0x78ae8175 smp_call_function_single_async +EXPORT_SYMBOL_GPL vmlinux 0x78bc8329 pm_generic_restore_noirq +EXPORT_SYMBOL_GPL vmlinux 0x78e39b92 virtqueue_is_broken +EXPORT_SYMBOL_GPL vmlinux 0x78e70820 pci_intx +EXPORT_SYMBOL_GPL vmlinux 0x78ea8b85 tpm2_shutdown +EXPORT_SYMBOL_GPL vmlinux 0x78f18b66 devres_get +EXPORT_SYMBOL_GPL vmlinux 0x7944e0fc tracing_off +EXPORT_SYMBOL_GPL vmlinux 0x79482605 crypto_grab_skcipher +EXPORT_SYMBOL_GPL vmlinux 0x794890ea crypto_register_shash +EXPORT_SYMBOL_GPL vmlinux 0x794b7271 orderly_reboot +EXPORT_SYMBOL_GPL vmlinux 0x796c2d48 dm_get_md +EXPORT_SYMBOL_GPL vmlinux 0x7979670f blkcipher_walk_virt +EXPORT_SYMBOL_GPL vmlinux 0x79af006d platform_get_resource +EXPORT_SYMBOL_GPL vmlinux 0x79c31920 inet_ehash_nolisten +EXPORT_SYMBOL_GPL vmlinux 0x79def6c1 invalidate_inode_pages2_range +EXPORT_SYMBOL_GPL vmlinux 0x79defbe1 kthread_should_park +EXPORT_SYMBOL_GPL vmlinux 0x79fdfaa9 __sk_detach_filter +EXPORT_SYMBOL_GPL vmlinux 0x7a2995db inet_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x7a634f73 __page_file_mapping +EXPORT_SYMBOL_GPL vmlinux 0x7a8617d0 fat_fill_super +EXPORT_SYMBOL_GPL vmlinux 0x7a944007 rcu_idle_enter +EXPORT_SYMBOL_GPL vmlinux 0x7a94d7c0 debugfs_create_blob +EXPORT_SYMBOL_GPL vmlinux 0x7aa1c11f device_dma_supported +EXPORT_SYMBOL_GPL vmlinux 0x7aa64803 kvm_release_pfn_clean +EXPORT_SYMBOL_GPL vmlinux 0x7aede69b crypto_enqueue_request +EXPORT_SYMBOL_GPL vmlinux 0x7b0f1ab3 ring_buffer_free_read_page +EXPORT_SYMBOL_GPL vmlinux 0x7b186a91 set_task_ioprio +EXPORT_SYMBOL_GPL vmlinux 0x7b38dca0 __blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x7b4a3e24 attribute_container_register +EXPORT_SYMBOL_GPL vmlinux 0x7b70ed5c pm_qos_request_active +EXPORT_SYMBOL_GPL vmlinux 0x7b90cfe7 xfrm_audit_policy_delete +EXPORT_SYMBOL_GPL vmlinux 0x7ba648b9 udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7baef440 iommu_detach_group +EXPORT_SYMBOL_GPL vmlinux 0x7bb3c165 skb_append_pagefrags +EXPORT_SYMBOL_GPL vmlinux 0x7bb75dc0 put_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0x7bcc7cba bus_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7bd610a6 css_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x7bed3252 device_get_child_node_count +EXPORT_SYMBOL_GPL vmlinux 0x7c2302a8 bus_rescan_devices +EXPORT_SYMBOL_GPL vmlinux 0x7c6c8035 __udp6_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0x7c9adb2c trace_buffer_unlock_commit_regs +EXPORT_SYMBOL_GPL vmlinux 0x7c9c0994 task_cls_state +EXPORT_SYMBOL_GPL vmlinux 0x7ceaf0d5 generic_handle_irq +EXPORT_SYMBOL_GPL vmlinux 0x7cf400ff kvm_read_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0x7d31a8ef ip6_dst_lookup_flow +EXPORT_SYMBOL_GPL vmlinux 0x7d509371 smpboot_update_cpumask_percpu_thread +EXPORT_SYMBOL_GPL vmlinux 0x7d59dd46 pm_wq +EXPORT_SYMBOL_GPL vmlinux 0x7d5ca574 trace_event_raw_init +EXPORT_SYMBOL_GPL vmlinux 0x7d72a346 pkcs7_verify +EXPORT_SYMBOL_GPL vmlinux 0x7dda30af unregister_tracepoint_module_notifier +EXPORT_SYMBOL_GPL vmlinux 0x7de1919b trace_clock +EXPORT_SYMBOL_GPL vmlinux 0x7e1268bb pm_generic_runtime_suspend +EXPORT_SYMBOL_GPL vmlinux 0x7e2e5aae __inet_twsk_hashdance +EXPORT_SYMBOL_GPL vmlinux 0x7e833fbe watchdog_unregister_device +EXPORT_SYMBOL_GPL vmlinux 0x7e8486e4 class_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7e9235aa __skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0x7e927f92 call_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0x7f13d491 pm_qos_remove_request +EXPORT_SYMBOL_GPL vmlinux 0x7f14e215 __rtnl_register +EXPORT_SYMBOL_GPL vmlinux 0x7f171d26 devm_get_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x7f17c8d9 pci_find_next_capability +EXPORT_SYMBOL_GPL vmlinux 0x7f2321b8 x509_check_signature +EXPORT_SYMBOL_GPL vmlinux 0x7f5dbeea pid_nr_ns +EXPORT_SYMBOL_GPL vmlinux 0x7f7cbc64 ip_tunnel_need_metadata +EXPORT_SYMBOL_GPL vmlinux 0x7f7ff615 iommu_detach_device +EXPORT_SYMBOL_GPL vmlinux 0x7f9157f4 use_mm +EXPORT_SYMBOL_GPL vmlinux 0x7f969f94 skb_zerocopy_headlen +EXPORT_SYMBOL_GPL vmlinux 0x7f9b8edd pci_destroy_slot +EXPORT_SYMBOL_GPL vmlinux 0x7fbc1883 devm_hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0x7fbed5b5 sdev_evt_alloc +EXPORT_SYMBOL_GPL vmlinux 0x7fd098dd rdev_set_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x7fd0b993 kvm_vcpu_gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x80135d8c inet6_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0x805fce99 aead_init_geniv +EXPORT_SYMBOL_GPL vmlinux 0x8065a4fc mmu_notifier_call_srcu +EXPORT_SYMBOL_GPL vmlinux 0x80687295 blkg_print_stat_ios +EXPORT_SYMBOL_GPL vmlinux 0x806cdd3e posix_acl_access_xattr_handler +EXPORT_SYMBOL_GPL vmlinux 0x808007b9 user_describe +EXPORT_SYMBOL_GPL vmlinux 0x808ec1a3 crypto_alg_tested +EXPORT_SYMBOL_GPL vmlinux 0x80a269a5 aead_geniv_free +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 0x80f8bb75 pci_cleanup_aer_uncorrect_error_status +EXPORT_SYMBOL_GPL vmlinux 0x8103c6c5 inet6_csk_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x8114467b cn_netlink_send_mult +EXPORT_SYMBOL_GPL vmlinux 0x8128a78b hrtimer_start_range_ns +EXPORT_SYMBOL_GPL vmlinux 0x813d28bd device_property_present +EXPORT_SYMBOL_GPL vmlinux 0x81c8ea96 cpci_hp_register_bus +EXPORT_SYMBOL_GPL vmlinux 0x81ccbb10 __list_lru_init +EXPORT_SYMBOL_GPL vmlinux 0x81da8b55 scsi_dh_set_params +EXPORT_SYMBOL_GPL vmlinux 0x81e47f9f dev_pm_qos_add_request +EXPORT_SYMBOL_GPL vmlinux 0x81f6404e blk_set_queue_dying +EXPORT_SYMBOL_GPL vmlinux 0x82103caf virtqueue_enable_cb_prepare +EXPORT_SYMBOL_GPL vmlinux 0x8212200d pcie_bus_configure_settings +EXPORT_SYMBOL_GPL vmlinux 0x824019bd kvm_vcpu_on_spin +EXPORT_SYMBOL_GPL vmlinux 0x82458141 blk_trace_setup +EXPORT_SYMBOL_GPL vmlinux 0x824e9d6b device_add_property_set +EXPORT_SYMBOL_GPL vmlinux 0x826f6231 list_lru_count_node +EXPORT_SYMBOL_GPL vmlinux 0x828373f7 debugfs_read_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x829d5666 gmap_ipte_notify +EXPORT_SYMBOL_GPL vmlinux 0x82aa70c4 ipv4_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0x82acb2ba crypto_alg_mod_lookup +EXPORT_SYMBOL_GPL vmlinux 0x82d79b51 sysctl_vfs_cache_pressure +EXPORT_SYMBOL_GPL vmlinux 0x8309a8d5 __platform_driver_register +EXPORT_SYMBOL_GPL vmlinux 0x830a89e9 fuse_get_req +EXPORT_SYMBOL_GPL vmlinux 0x838b13e7 ring_buffer_free +EXPORT_SYMBOL_GPL vmlinux 0x83b0816e __wake_up_sync +EXPORT_SYMBOL_GPL vmlinux 0x83d2c511 class_create_file_ns +EXPORT_SYMBOL_GPL vmlinux 0x83d587f1 tpm_calc_ordinal_duration +EXPORT_SYMBOL_GPL vmlinux 0x840c9180 __wake_up_sync_key +EXPORT_SYMBOL_GPL vmlinux 0x8431d762 sock_gen_put +EXPORT_SYMBOL_GPL vmlinux 0x8476925a pm_generic_suspend_late +EXPORT_SYMBOL_GPL vmlinux 0x84842597 crypto_alloc_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x8487a2b6 flush_work +EXPORT_SYMBOL_GPL vmlinux 0x84b42af1 cond_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x84dde942 devm_kasprintf +EXPORT_SYMBOL_GPL vmlinux 0x84e3bed5 anon_transport_class_unregister +EXPORT_SYMBOL_GPL vmlinux 0x84e59b7f crypto_register_akcipher +EXPORT_SYMBOL_GPL vmlinux 0x85050965 __irq_alloc_descs +EXPORT_SYMBOL_GPL vmlinux 0x8522f8ac sock_diag_register +EXPORT_SYMBOL_GPL vmlinux 0x85350e14 sysfs_create_mount_point +EXPORT_SYMBOL_GPL vmlinux 0x857b0182 rtnl_af_unregister +EXPORT_SYMBOL_GPL vmlinux 0x85951384 pci_generic_config_write +EXPORT_SYMBOL_GPL vmlinux 0x859a1f60 fat_dir_empty +EXPORT_SYMBOL_GPL vmlinux 0x85ad9064 seq_open_net +EXPORT_SYMBOL_GPL vmlinux 0x85c7f674 ring_buffer_normalize_time_stamp +EXPORT_SYMBOL_GPL vmlinux 0x85dcb5a9 root_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x86178c74 nd_tbl +EXPORT_SYMBOL_GPL vmlinux 0x861c4ad7 percpu_ida_for_each_free +EXPORT_SYMBOL_GPL vmlinux 0x863ca66e disable_kprobe +EXPORT_SYMBOL_GPL vmlinux 0x864298f3 pm_generic_restore +EXPORT_SYMBOL_GPL vmlinux 0x866c9277 pci_assign_unassigned_bridge_resources +EXPORT_SYMBOL_GPL vmlinux 0x86786286 klist_add_behind +EXPORT_SYMBOL_GPL vmlinux 0x868784cb __symbol_get +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 0x8702e548 process_srcu +EXPORT_SYMBOL_GPL vmlinux 0x87ceb397 hypervisor_kobj +EXPORT_SYMBOL_GPL vmlinux 0x87d1e615 pci_ats_queue_depth +EXPORT_SYMBOL_GPL vmlinux 0x880060a0 disk_map_sector_rcu +EXPORT_SYMBOL_GPL vmlinux 0x8810ad5e crypto_xor +EXPORT_SYMBOL_GPL vmlinux 0x883b697c blk_mq_register_disk +EXPORT_SYMBOL_GPL vmlinux 0x88455525 ftrace_set_notrace +EXPORT_SYMBOL_GPL vmlinux 0x885985d0 inet_ehash_locks_alloc +EXPORT_SYMBOL_GPL vmlinux 0x88790074 evm_inode_init_security +EXPORT_SYMBOL_GPL vmlinux 0x88837caa gmap_unmap_segment +EXPORT_SYMBOL_GPL vmlinux 0x889f43fd __get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x88b469c4 devm_free_pages +EXPORT_SYMBOL_GPL vmlinux 0x88bb114b PageHuge +EXPORT_SYMBOL_GPL vmlinux 0x88d43a38 crypto_dequeue_request +EXPORT_SYMBOL_GPL vmlinux 0x88f04065 metadata_dst_alloc_percpu +EXPORT_SYMBOL_GPL vmlinux 0x891d88cf device_destroy +EXPORT_SYMBOL_GPL vmlinux 0x8924eb1e rcu_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0x89485687 iommu_group_put +EXPORT_SYMBOL_GPL vmlinux 0x895a9253 component_master_add_child +EXPORT_SYMBOL_GPL vmlinux 0x895c46ce alarm_restart +EXPORT_SYMBOL_GPL vmlinux 0x8962111f bpf_prog_create +EXPORT_SYMBOL_GPL vmlinux 0x896dd076 __bpf_prog_free +EXPORT_SYMBOL_GPL vmlinux 0x897946ca virtqueue_get_avail +EXPORT_SYMBOL_GPL vmlinux 0x89ab83bf ping_seq_start +EXPORT_SYMBOL_GPL vmlinux 0x89f908c5 __tracepoint_mc_event +EXPORT_SYMBOL_GPL vmlinux 0x89f9da84 __sk_attach_filter +EXPORT_SYMBOL_GPL vmlinux 0x8a0f26e5 get_user_pages_fast +EXPORT_SYMBOL_GPL vmlinux 0x8a753780 bio_clone_mddev +EXPORT_SYMBOL_GPL vmlinux 0x8aa7d327 blk_end_request_err +EXPORT_SYMBOL_GPL vmlinux 0x8aab144a rdev_clear_badblocks +EXPORT_SYMBOL_GPL vmlinux 0x8abacc47 get_max_files +EXPORT_SYMBOL_GPL vmlinux 0x8ac8c926 debugfs_print_regs32 +EXPORT_SYMBOL_GPL vmlinux 0x8ac92986 pci_ioremap_wc_bar +EXPORT_SYMBOL_GPL vmlinux 0x8adaaebc zpci_enable_device +EXPORT_SYMBOL_GPL vmlinux 0x8b2c3385 __pm_runtime_disable +EXPORT_SYMBOL_GPL vmlinux 0x8b3b2f02 seq_release_net +EXPORT_SYMBOL_GPL vmlinux 0x8b4add17 __inet_lookup_established +EXPORT_SYMBOL_GPL vmlinux 0x8b5f101f crypto_alg_extsize +EXPORT_SYMBOL_GPL vmlinux 0x8c0215f2 pm_system_wakeup +EXPORT_SYMBOL_GPL vmlinux 0x8c03d20c destroy_workqueue +EXPORT_SYMBOL_GPL vmlinux 0x8c3a16df percpu_up_read +EXPORT_SYMBOL_GPL vmlinux 0x8c61b5a6 static_key_deferred_flush +EXPORT_SYMBOL_GPL vmlinux 0x8c64cee8 dev_pm_set_dedicated_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0x8c8824f0 netdev_set_default_ethtool_ops +EXPORT_SYMBOL_GPL vmlinux 0x8c8e9903 eventfd_ctx_fileget +EXPORT_SYMBOL_GPL vmlinux 0x8cac7bef rtnl_af_register +EXPORT_SYMBOL_GPL vmlinux 0x8cc858f8 platform_get_irq +EXPORT_SYMBOL_GPL vmlinux 0x8cd8dc77 x509_get_sig_params +EXPORT_SYMBOL_GPL vmlinux 0x8ce79eac xfrm_audit_state_notfound +EXPORT_SYMBOL_GPL vmlinux 0x8ceb633e wakeup_source_add +EXPORT_SYMBOL_GPL vmlinux 0x8d22bb58 iommu_group_alloc +EXPORT_SYMBOL_GPL vmlinux 0x8d2c09b8 scsi_flush_work +EXPORT_SYMBOL_GPL vmlinux 0x8d30579f sysfs_create_link +EXPORT_SYMBOL_GPL vmlinux 0x8d3558df gmap_register_ipte_notifier +EXPORT_SYMBOL_GPL vmlinux 0x8d39000c relay_file_operations +EXPORT_SYMBOL_GPL vmlinux 0x8d3c5549 blk_queue_bypass_start +EXPORT_SYMBOL_GPL vmlinux 0x8d7956f6 cgroup_attach_task_all +EXPORT_SYMBOL_GPL vmlinux 0x8d82842e __tracepoint_block_bio_complete +EXPORT_SYMBOL_GPL vmlinux 0x8d9110df fuse_get_req_for_background +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 0x8dc1c670 virtio_config_changed +EXPORT_SYMBOL_GPL vmlinux 0x8dd2cc37 put_pid +EXPORT_SYMBOL_GPL vmlinux 0x8dd4fe2d ipv6_proxy_select_ident +EXPORT_SYMBOL_GPL vmlinux 0x8dda75ca fuse_request_send_background +EXPORT_SYMBOL_GPL vmlinux 0x8dde38c1 pci_rescan_bus +EXPORT_SYMBOL_GPL vmlinux 0x8dfd5821 __cookie_v6_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x8e1cd06f kvm_set_pfn_accessed +EXPORT_SYMBOL_GPL vmlinux 0x8e70183c vfs_test_lock +EXPORT_SYMBOL_GPL vmlinux 0x8eab519a ip6_datagram_send_ctl +EXPORT_SYMBOL_GPL vmlinux 0x8f0748af rcu_expedite_gp +EXPORT_SYMBOL_GPL vmlinux 0x8f59b4f5 crypto_alloc_shash +EXPORT_SYMBOL_GPL vmlinux 0x8f6cee77 __round_jiffies_relative +EXPORT_SYMBOL_GPL vmlinux 0x9002873d md_kick_rdev_from_array +EXPORT_SYMBOL_GPL vmlinux 0x901f66e7 blk_mq_unfreeze_queue +EXPORT_SYMBOL_GPL vmlinux 0x9034d2a1 dm_accept_partial_bio +EXPORT_SYMBOL_GPL vmlinux 0x903b627c list_lru_isolate_move +EXPORT_SYMBOL_GPL vmlinux 0x9048126e gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0x905a4c59 pci_cfg_access_unlock +EXPORT_SYMBOL_GPL vmlinux 0x9062c322 ring_buffer_consume +EXPORT_SYMBOL_GPL vmlinux 0x908a0c0a skcipher_geniv_init +EXPORT_SYMBOL_GPL vmlinux 0x9098ab02 debugfs_create_u32 +EXPORT_SYMBOL_GPL vmlinux 0x90a1004a crypto_has_alg +EXPORT_SYMBOL_GPL vmlinux 0x90c1c4f0 css_sch_is_valid +EXPORT_SYMBOL_GPL vmlinux 0x90d02ba9 __mmdrop +EXPORT_SYMBOL_GPL vmlinux 0x90e51b07 debugfs_create_x16 +EXPORT_SYMBOL_GPL vmlinux 0x90e5d678 trace_seq_bitmask +EXPORT_SYMBOL_GPL vmlinux 0x9113d373 pci_hp_create_module_link +EXPORT_SYMBOL_GPL vmlinux 0x9120a45a dequeue_signal +EXPORT_SYMBOL_GPL vmlinux 0x914b6bae platform_get_resource_byname +EXPORT_SYMBOL_GPL vmlinux 0x914da882 cleanup_srcu_struct +EXPORT_SYMBOL_GPL vmlinux 0x914edc2c __put_task_struct +EXPORT_SYMBOL_GPL vmlinux 0x9163335c subsys_find_device_by_id +EXPORT_SYMBOL_GPL vmlinux 0x917f585f __dax_pmd_fault +EXPORT_SYMBOL_GPL vmlinux 0x918977b7 pci_msi_unmask_irq +EXPORT_SYMBOL_GPL vmlinux 0x918ad429 ring_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x91c9b2e7 perf_event_enable +EXPORT_SYMBOL_GPL vmlinux 0x9243ff23 device_get_phy_mode +EXPORT_SYMBOL_GPL vmlinux 0x924c46f8 zs_unmap_object +EXPORT_SYMBOL_GPL vmlinux 0x924f4d0d sysfs_remove_group +EXPORT_SYMBOL_GPL vmlinux 0x926449f1 blocking_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0x926c3796 iptunnel_metadata_reply +EXPORT_SYMBOL_GPL vmlinux 0x92778f4c platform_device_put +EXPORT_SYMBOL_GPL vmlinux 0x92841db5 platform_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0x92b1e410 trace_clock_global +EXPORT_SYMBOL_GPL vmlinux 0x92b2e556 pci_generic_config_read +EXPORT_SYMBOL_GPL vmlinux 0x92d7de30 pci_debug_msg_id +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 0x93272479 __pm_runtime_set_status +EXPORT_SYMBOL_GPL vmlinux 0x932b50db x509_cert_parse +EXPORT_SYMBOL_GPL vmlinux 0x933e82fb bus_sort_breadthfirst +EXPORT_SYMBOL_GPL vmlinux 0x935d9148 debugfs_create_symlink +EXPORT_SYMBOL_GPL vmlinux 0x939ec668 skb_scrub_packet +EXPORT_SYMBOL_GPL vmlinux 0x93a0f46a clockevents_register_device +EXPORT_SYMBOL_GPL vmlinux 0x93a8a061 blkdev_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x93b832ba platform_device_register_full +EXPORT_SYMBOL_GPL vmlinux 0x93f72cc4 __tracepoint_rpm_resume +EXPORT_SYMBOL_GPL vmlinux 0x9405cd49 blk_rq_prep_clone +EXPORT_SYMBOL_GPL vmlinux 0x941c2a1c unregister_virtio_driver +EXPORT_SYMBOL_GPL vmlinux 0x941f2aaa eventfd_ctx_put +EXPORT_SYMBOL_GPL vmlinux 0x945fab54 device_attach +EXPORT_SYMBOL_GPL vmlinux 0x946b02a9 tcp_peer_is_proven +EXPORT_SYMBOL_GPL vmlinux 0x9482b4b3 get_state_synchronize_sched +EXPORT_SYMBOL_GPL vmlinux 0x949f32e0 posix_clock_unregister +EXPORT_SYMBOL_GPL vmlinux 0x94ef4d05 cpci_hp_stop +EXPORT_SYMBOL_GPL vmlinux 0x94f85e66 bsg_register_queue +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 0x953ee18f blk_mq_freeze_queue +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 0x9621849f ring_buffer_event_data +EXPORT_SYMBOL_GPL vmlinux 0x96343b3c fuse_do_ioctl +EXPORT_SYMBOL_GPL vmlinux 0x9643a24f tpm_unseal_trusted +EXPORT_SYMBOL_GPL vmlinux 0x968647cf __mnt_is_readonly +EXPORT_SYMBOL_GPL vmlinux 0x96e3a9ad kobject_get_path +EXPORT_SYMBOL_GPL vmlinux 0x96ecd840 class_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0x971635bc sched_setattr +EXPORT_SYMBOL_GPL vmlinux 0x9717354d handle_mm_fault +EXPORT_SYMBOL_GPL vmlinux 0x97273bfc fuse_abort_conn +EXPORT_SYMBOL_GPL vmlinux 0x975519c1 asymmetric_key_id_same +EXPORT_SYMBOL_GPL vmlinux 0x978793f5 freezer_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0x97b610bf blk_mq_request_started +EXPORT_SYMBOL_GPL vmlinux 0x97bc660d devres_open_group +EXPORT_SYMBOL_GPL vmlinux 0x97de2b83 debug_locks_silent +EXPORT_SYMBOL_GPL vmlinux 0x97ec9d35 blk_update_request +EXPORT_SYMBOL_GPL vmlinux 0x97f603d4 vring_del_virtqueue +EXPORT_SYMBOL_GPL vmlinux 0x982cd486 __cookie_v4_init_sequence +EXPORT_SYMBOL_GPL vmlinux 0x982eb6e7 component_master_del +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 0x985aded8 crypto_mod_get +EXPORT_SYMBOL_GPL vmlinux 0x9879932b crypto_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0x98f3abb9 crypto_unregister_alg +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 0x995d1071 prof_on +EXPORT_SYMBOL_GPL vmlinux 0x997c4347 unmap_kernel_range +EXPORT_SYMBOL_GPL vmlinux 0x99840d00 timecounter_init +EXPORT_SYMBOL_GPL vmlinux 0x999659b5 pci_user_write_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x999ebd40 trace_print_bitmask_seq +EXPORT_SYMBOL_GPL vmlinux 0x99bab161 nf_ct_zone_dflt +EXPORT_SYMBOL_GPL vmlinux 0x99e5e1a2 fuse_dev_operations +EXPORT_SYMBOL_GPL vmlinux 0x99e9e4b6 pci_hp_remove_module_link +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 0x9a31b612 crypto_larval_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9a54aab2 kvm_put_kvm +EXPORT_SYMBOL_GPL vmlinux 0x9a677dcc free_vm_area +EXPORT_SYMBOL_GPL vmlinux 0x9a801099 scsi_dh_attach +EXPORT_SYMBOL_GPL vmlinux 0x9a89dbf7 lpddr2_jedec_min_tck +EXPORT_SYMBOL_GPL vmlinux 0x9a972739 ip6_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0x9aacf2d5 gfn_to_pfn +EXPORT_SYMBOL_GPL vmlinux 0x9adb2387 tpmm_chip_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9ae28ba1 crypto_register_pcomp +EXPORT_SYMBOL_GPL vmlinux 0x9aea73a0 __hrtimer_get_remaining +EXPORT_SYMBOL_GPL vmlinux 0x9aeacb87 ring_buffer_iter_empty +EXPORT_SYMBOL_GPL vmlinux 0x9af8d03d fat_free_clusters +EXPORT_SYMBOL_GPL vmlinux 0x9b158aaf gfn_to_pfn_prot +EXPORT_SYMBOL_GPL vmlinux 0x9b46acc1 page_cache_sync_readahead +EXPORT_SYMBOL_GPL vmlinux 0x9bcd399e iommu_domain_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9bece81b mpi_cmp_ui +EXPORT_SYMBOL_GPL vmlinux 0x9c5ca70d pm_generic_freeze +EXPORT_SYMBOL_GPL vmlinux 0x9caf85c6 unix_table_lock +EXPORT_SYMBOL_GPL vmlinux 0x9cc4f70a register_pm_notifier +EXPORT_SYMBOL_GPL vmlinux 0x9cc9db52 inet_unhash +EXPORT_SYMBOL_GPL vmlinux 0x9d124954 pci_user_read_config_dword +EXPORT_SYMBOL_GPL vmlinux 0x9d22f940 debugfs_create_x8 +EXPORT_SYMBOL_GPL vmlinux 0x9d42a3e0 class_compat_create_link +EXPORT_SYMBOL_GPL vmlinux 0x9d9c3529 static_key_slow_inc +EXPORT_SYMBOL_GPL vmlinux 0x9dceb61f pm_runtime_force_resume +EXPORT_SYMBOL_GPL vmlinux 0x9e0c2582 bd_unlink_disk_holder +EXPORT_SYMBOL_GPL vmlinux 0x9e282245 trace_event_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0x9e313de3 debugfs_write_file_bool +EXPORT_SYMBOL_GPL vmlinux 0x9e472385 __fat_fs_error +EXPORT_SYMBOL_GPL vmlinux 0x9e472f5f snmp_fold_field +EXPORT_SYMBOL_GPL vmlinux 0x9e473297 ip6_datagram_recv_ctl +EXPORT_SYMBOL_GPL vmlinux 0x9e5d0e7c raw_seq_stop +EXPORT_SYMBOL_GPL vmlinux 0x9e83f4ea tpm_pm_suspend +EXPORT_SYMBOL_GPL vmlinux 0x9ea03acb sock_diag_save_cookie +EXPORT_SYMBOL_GPL vmlinux 0x9f456208 evm_verifyxattr +EXPORT_SYMBOL_GPL vmlinux 0x9f871975 hugetlb_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0x9fcb45d9 fat_scan +EXPORT_SYMBOL_GPL vmlinux 0x9fce80db fb_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0x9fe1e7b7 aead_geniv_alloc +EXPORT_SYMBOL_GPL vmlinux 0x9fe939e1 mpi_powm +EXPORT_SYMBOL_GPL vmlinux 0xa013d577 vfs_submount +EXPORT_SYMBOL_GPL vmlinux 0xa036d30b tty_buffer_set_limit +EXPORT_SYMBOL_GPL vmlinux 0xa0909ca4 scsi_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xa0a0d25d dev_pm_qos_hide_flags +EXPORT_SYMBOL_GPL vmlinux 0xa0a121f3 inet6_csk_xmit +EXPORT_SYMBOL_GPL vmlinux 0xa0b1a98d ip6_sk_redirect +EXPORT_SYMBOL_GPL vmlinux 0xa0b4aed3 blk_insert_cloned_request +EXPORT_SYMBOL_GPL vmlinux 0xa0e0930e md_allow_write +EXPORT_SYMBOL_GPL vmlinux 0xa103e18e bpf_prog_realloc +EXPORT_SYMBOL_GPL vmlinux 0xa13b7ee7 crypto_ahash_final +EXPORT_SYMBOL_GPL vmlinux 0xa188e608 devres_remove_group +EXPORT_SYMBOL_GPL vmlinux 0xa18f9433 mpi_read_buffer +EXPORT_SYMBOL_GPL vmlinux 0xa196bd81 vfs_listxattr +EXPORT_SYMBOL_GPL vmlinux 0xa1b82797 rt_mutex_unlock +EXPORT_SYMBOL_GPL vmlinux 0xa1d80c8f register_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xa1e13f83 crypto_unregister_pcomp +EXPORT_SYMBOL_GPL vmlinux 0xa234a8c6 skcipher_geniv_exit +EXPORT_SYMBOL_GPL vmlinux 0xa26d9b4f workqueue_congested +EXPORT_SYMBOL_GPL vmlinux 0xa279b968 relay_buf_full +EXPORT_SYMBOL_GPL vmlinux 0xa27e05dc scsi_queue_work +EXPORT_SYMBOL_GPL vmlinux 0xa290a00e crypto_tfm_in_queue +EXPORT_SYMBOL_GPL vmlinux 0xa2a97b66 klist_add_head +EXPORT_SYMBOL_GPL vmlinux 0xa2ac5519 percpu_ref_init +EXPORT_SYMBOL_GPL vmlinux 0xa2b57b46 devres_find +EXPORT_SYMBOL_GPL vmlinux 0xa2ba4cc2 crypto_aead_setauthsize +EXPORT_SYMBOL_GPL vmlinux 0xa2bafa40 interval_tree_insert +EXPORT_SYMBOL_GPL vmlinux 0xa2e9a75c ccw_device_force_console +EXPORT_SYMBOL_GPL vmlinux 0xa2ea83fa sg_scsi_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xa2fc3f0b skb_segment +EXPORT_SYMBOL_GPL vmlinux 0xa335eff4 xattr_getsecurity +EXPORT_SYMBOL_GPL vmlinux 0xa343fc0c __hvc_resize +EXPORT_SYMBOL_GPL vmlinux 0xa34aaca9 tty_ldisc_flush +EXPORT_SYMBOL_GPL vmlinux 0xa371759d blkdev_write_iter +EXPORT_SYMBOL_GPL vmlinux 0xa373e0cf percpu_up_write +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 0xa3e31172 crypto_unregister_template +EXPORT_SYMBOL_GPL vmlinux 0xa3e7c113 ring_buffer_iter_peek +EXPORT_SYMBOL_GPL vmlinux 0xa42b49e3 locks_alloc_lock +EXPORT_SYMBOL_GPL vmlinux 0xa43487a4 pids_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xa450b159 ping_proc_register +EXPORT_SYMBOL_GPL vmlinux 0xa48fd06a crypto_unregister_ahash +EXPORT_SYMBOL_GPL vmlinux 0xa4a42813 vbin_printf +EXPORT_SYMBOL_GPL vmlinux 0xa4b52834 metadata_dst_alloc +EXPORT_SYMBOL_GPL vmlinux 0xa4b6577c sched_setscheduler_nocheck +EXPORT_SYMBOL_GPL vmlinux 0xa4c17757 sysfs_update_group +EXPORT_SYMBOL_GPL vmlinux 0xa4d32f10 tty_set_termios +EXPORT_SYMBOL_GPL vmlinux 0xa51b5fbd ptp_classify_raw +EXPORT_SYMBOL_GPL vmlinux 0xa5481736 alarm_init +EXPORT_SYMBOL_GPL vmlinux 0xa5650512 devres_add +EXPORT_SYMBOL_GPL vmlinux 0xa5c8a37f __lock_page_killable +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 0xa63431fe attribute_container_classdev_to_container +EXPORT_SYMBOL_GPL vmlinux 0xa68cc657 iommu_group_add_device +EXPORT_SYMBOL_GPL vmlinux 0xa6b21ef2 dpm_suspend_end +EXPORT_SYMBOL_GPL vmlinux 0xa6c4ddf4 crypto_blkcipher_type +EXPORT_SYMBOL_GPL vmlinux 0xa6c5400d __tracepoint_wbc_writepage +EXPORT_SYMBOL_GPL vmlinux 0xa6e08e51 scsi_dh_attached_handler_name +EXPORT_SYMBOL_GPL vmlinux 0xa6e1a69d kick_all_cpus_sync +EXPORT_SYMBOL_GPL vmlinux 0xa6ee64e8 vfs_kern_mount +EXPORT_SYMBOL_GPL vmlinux 0xa79f7691 scsi_autopm_put_device +EXPORT_SYMBOL_GPL vmlinux 0xa7b08dcb device_property_read_string_array +EXPORT_SYMBOL_GPL vmlinux 0xa7cfd4ea skb_to_sgvec +EXPORT_SYMBOL_GPL vmlinux 0xa7d4347b blocking_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xa80619fe trace_seq_putc +EXPORT_SYMBOL_GPL vmlinux 0xa8074b77 ref_module +EXPORT_SYMBOL_GPL vmlinux 0xa813aa63 ablkcipher_walk_phys +EXPORT_SYMBOL_GPL vmlinux 0xa8188b18 devres_alloc_node +EXPORT_SYMBOL_GPL vmlinux 0xa8384df3 ccw_device_get_chp_desc +EXPORT_SYMBOL_GPL vmlinux 0xa84ed0c5 devices_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xa851973a raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xa8803958 nf_ipv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xa8b76a68 timecounter_cyc2time +EXPORT_SYMBOL_GPL vmlinux 0xa8e0dfb2 key_type_encrypted +EXPORT_SYMBOL_GPL vmlinux 0xa916690c scsi_unregister_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xa9320d27 ktime_get_seconds +EXPORT_SYMBOL_GPL vmlinux 0xa96d8a3e device_set_wakeup_capable +EXPORT_SYMBOL_GPL vmlinux 0xa97299bd sock_diag_unregister_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xa9804d6e __rtnl_link_register +EXPORT_SYMBOL_GPL vmlinux 0xa9906219 fuse_conn_init +EXPORT_SYMBOL_GPL vmlinux 0xa9918930 unix_peer_get +EXPORT_SYMBOL_GPL vmlinux 0xa99380c4 pci_try_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xa9a7245f dax_zero_page_range +EXPORT_SYMBOL_GPL vmlinux 0xa9aef2e1 gfn_to_hva_memslot +EXPORT_SYMBOL_GPL vmlinux 0xa9d0982b device_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xa9d4cb42 blk_trace_remove +EXPORT_SYMBOL_GPL vmlinux 0xa9e18049 task_handoff_unregister +EXPORT_SYMBOL_GPL vmlinux 0xa9ff15b9 s390_enable_sie +EXPORT_SYMBOL_GPL vmlinux 0xaa20a08d kmsg_dump_get_buffer +EXPORT_SYMBOL_GPL vmlinux 0xaa3a1024 tty_mode_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xaa3f0014 genlmsg_new_unicast +EXPORT_SYMBOL_GPL vmlinux 0xaa6189a9 driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xaa878322 get_device_system_crosststamp +EXPORT_SYMBOL_GPL vmlinux 0xaaa56bfa rhashtable_free_and_destroy +EXPORT_SYMBOL_GPL vmlinux 0xaaa918c9 ftrace_dump +EXPORT_SYMBOL_GPL vmlinux 0xaab933aa dio_end_io +EXPORT_SYMBOL_GPL vmlinux 0xaacd1dd3 scsi_mode_select +EXPORT_SYMBOL_GPL vmlinux 0xab2842b2 __wait_rcu_gp +EXPORT_SYMBOL_GPL vmlinux 0xab2f4ade relay_flush +EXPORT_SYMBOL_GPL vmlinux 0xab567d31 percpu_ref_reinit +EXPORT_SYMBOL_GPL vmlinux 0xab6babaf pm_qos_request +EXPORT_SYMBOL_GPL vmlinux 0xab97a97d s390_handle_mcck +EXPORT_SYMBOL_GPL vmlinux 0xaba3678a kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xabb230d2 pci_disable_sriov +EXPORT_SYMBOL_GPL vmlinux 0xabc640f3 list_lru_isolate +EXPORT_SYMBOL_GPL vmlinux 0xabe12262 __iowrite32_copy +EXPORT_SYMBOL_GPL vmlinux 0xabe8f252 __blocking_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xac005869 subsys_virtual_register +EXPORT_SYMBOL_GPL vmlinux 0xac208973 tcp_death_row +EXPORT_SYMBOL_GPL vmlinux 0xac84a5b6 xfrm_audit_state_delete +EXPORT_SYMBOL_GPL vmlinux 0xac9e4549 blk_mq_free_request +EXPORT_SYMBOL_GPL vmlinux 0xacd8b1ca fib_table_lookup +EXPORT_SYMBOL_GPL vmlinux 0xacf78a01 mm_kobj +EXPORT_SYMBOL_GPL vmlinux 0xad3dfa13 lgr_info_log +EXPORT_SYMBOL_GPL vmlinux 0xad4a6ec8 pm_generic_poweroff_noirq +EXPORT_SYMBOL_GPL vmlinux 0xad87d111 inet_hash +EXPORT_SYMBOL_GPL vmlinux 0xad916185 __gmap_translate +EXPORT_SYMBOL_GPL vmlinux 0xada27bbf scsi_autopm_get_device +EXPORT_SYMBOL_GPL vmlinux 0xadaaa3ae diag308 +EXPORT_SYMBOL_GPL vmlinux 0xadf6aa4d tpm_pcr_read +EXPORT_SYMBOL_GPL vmlinux 0xae1238e5 dev_pm_put_subsys_data +EXPORT_SYMBOL_GPL vmlinux 0xae27279f sk_set_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xae5077c9 mnt_want_write +EXPORT_SYMBOL_GPL vmlinux 0xae6336e5 sk_setup_caps +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 0xaeb97497 exportfs_encode_fh +EXPORT_SYMBOL_GPL vmlinux 0xaf0e4c3c crypto_destroy_tfm +EXPORT_SYMBOL_GPL vmlinux 0xaf151255 cio_update_schib +EXPORT_SYMBOL_GPL vmlinux 0xaf1c6d5d key_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xaf9f8d00 init_dummy_netdev +EXPORT_SYMBOL_GPL vmlinux 0xb00a8738 kobject_move +EXPORT_SYMBOL_GPL vmlinux 0xb03f067d pskb_put +EXPORT_SYMBOL_GPL vmlinux 0xb0400c6b add_timer_on +EXPORT_SYMBOL_GPL vmlinux 0xb079cab1 appldata_register_ops +EXPORT_SYMBOL_GPL vmlinux 0xb0b85f47 ring_buffer_iter_reset +EXPORT_SYMBOL_GPL vmlinux 0xb0dd15b4 pci_ignore_hotplug +EXPORT_SYMBOL_GPL vmlinux 0xb119ee4a get_task_comm +EXPORT_SYMBOL_GPL vmlinux 0xb130d2be register_kretprobes +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 0xb19e705c hvc_remove +EXPORT_SYMBOL_GPL vmlinux 0xb1aca2d9 dax_fault +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 0xb1e25684 __trace_bputs +EXPORT_SYMBOL_GPL vmlinux 0xb214aadb sk_clone_lock +EXPORT_SYMBOL_GPL vmlinux 0xb217aee6 driver_for_each_device +EXPORT_SYMBOL_GPL vmlinux 0xb221d3ce pci_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb26a1add elfcorehdr_addr +EXPORT_SYMBOL_GPL vmlinux 0xb27439bf device_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb277cd3a pci_cfg_access_trylock +EXPORT_SYMBOL_GPL vmlinux 0xb2a325f0 raw_seq_start +EXPORT_SYMBOL_GPL vmlinux 0xb2cbc17b __compat_only_sysfs_link_entry_to_kobj +EXPORT_SYMBOL_GPL vmlinux 0xb2d1942a device_create_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xb2f9b19d skb_splice_bits +EXPORT_SYMBOL_GPL vmlinux 0xb32d1fd7 pm_complete_with_resume_check +EXPORT_SYMBOL_GPL vmlinux 0xb3319153 debugfs_create_u64 +EXPORT_SYMBOL_GPL vmlinux 0xb33a2b1c pci_probe_reset_bus +EXPORT_SYMBOL_GPL vmlinux 0xb341ba32 transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xb347bb2c work_busy +EXPORT_SYMBOL_GPL vmlinux 0xb359597a shash_ahash_update +EXPORT_SYMBOL_GPL vmlinux 0xb3753479 dev_pm_enable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xb3eea2e9 _submit_bh +EXPORT_SYMBOL_GPL vmlinux 0xb3f2d9d5 look_up_OID +EXPORT_SYMBOL_GPL vmlinux 0xb41a06d1 ping_proc_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb4221fec register_jprobes +EXPORT_SYMBOL_GPL vmlinux 0xb44c0314 __rtnl_link_unregister +EXPORT_SYMBOL_GPL vmlinux 0xb44c182f list_lru_destroy +EXPORT_SYMBOL_GPL vmlinux 0xb45b4f7e chsc_pnso_brinfo +EXPORT_SYMBOL_GPL vmlinux 0xb49c2449 md_new_event +EXPORT_SYMBOL_GPL vmlinux 0xb49e5b00 ip6_local_out +EXPORT_SYMBOL_GPL vmlinux 0xb4b97c90 pvclock_gtod_register_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb4e823eb __inet_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xb53620d1 pci_vpd_find_info_keyword +EXPORT_SYMBOL_GPL vmlinux 0xb5381118 call_srcu +EXPORT_SYMBOL_GPL vmlinux 0xb58dcfa2 synchronize_sched_expedited +EXPORT_SYMBOL_GPL vmlinux 0xb59040f0 crypto_chain +EXPORT_SYMBOL_GPL vmlinux 0xb5a0e11e lpddr2_jedec_addressing_table +EXPORT_SYMBOL_GPL vmlinux 0xb5f17edf perf_register_guest_info_callbacks +EXPORT_SYMBOL_GPL vmlinux 0xb6261484 register_die_notifier +EXPORT_SYMBOL_GPL vmlinux 0xb64b6bf9 put_device +EXPORT_SYMBOL_GPL vmlinux 0xb6764849 find_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xb6b5cf1c trace_seq_to_user +EXPORT_SYMBOL_GPL vmlinux 0xb6fdd69d shmem_read_mapping_page_gfp +EXPORT_SYMBOL_GPL vmlinux 0xb7273f92 class_interface_register +EXPORT_SYMBOL_GPL vmlinux 0xb73b3464 dev_pm_qos_add_ancestor_request +EXPORT_SYMBOL_GPL vmlinux 0xb74f84ed trace_seq_putmem_hex +EXPORT_SYMBOL_GPL vmlinux 0xb7b07be5 sock_prot_inuse_add +EXPORT_SYMBOL_GPL vmlinux 0xb7bba6a0 tcp_ca_openreq_child +EXPORT_SYMBOL_GPL vmlinux 0xb7be49ea fwnode_property_read_u64_array +EXPORT_SYMBOL_GPL vmlinux 0xb7c26f32 s390_dma_ops +EXPORT_SYMBOL_GPL vmlinux 0xb8095bfe percpu_ida_free +EXPORT_SYMBOL_GPL vmlinux 0xb84b2331 find_extend_vma +EXPORT_SYMBOL_GPL vmlinux 0xb88dbfce irq_set_irqchip_state +EXPORT_SYMBOL_GPL vmlinux 0xb8cd3a7f nf_logger_put +EXPORT_SYMBOL_GPL vmlinux 0xb8ce143f sock_update_netprioidx +EXPORT_SYMBOL_GPL vmlinux 0xb8d35656 unix_outq_len +EXPORT_SYMBOL_GPL vmlinux 0xb903674c scatterwalk_map_and_copy +EXPORT_SYMBOL_GPL vmlinux 0xb907b442 scm_irq_handler +EXPORT_SYMBOL_GPL vmlinux 0xb909cd2e debugfs_create_bool +EXPORT_SYMBOL_GPL vmlinux 0xb93d66f5 pci_enable_pcie_error_reporting +EXPORT_SYMBOL_GPL vmlinux 0xb93e981c fwnode_property_read_u8_array +EXPORT_SYMBOL_GPL vmlinux 0xb9afe9c6 device_create_with_groups +EXPORT_SYMBOL_GPL vmlinux 0xb9b67da4 crypto_grab_spawn +EXPORT_SYMBOL_GPL vmlinux 0xb9c425de register_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xb9d025c9 llist_del_first +EXPORT_SYMBOL_GPL vmlinux 0xb9d50a09 device_store_int +EXPORT_SYMBOL_GPL vmlinux 0xb9db8bd4 hrtimer_init_sleeper +EXPORT_SYMBOL_GPL vmlinux 0xb9f065de __srcu_read_unlock +EXPORT_SYMBOL_GPL vmlinux 0xba386676 iommu_capable +EXPORT_SYMBOL_GPL vmlinux 0xba9d37ef kernfs_get +EXPORT_SYMBOL_GPL vmlinux 0xbaa9799e apply_to_page_range +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 0xbb128381 irq_set_affinity_hint +EXPORT_SYMBOL_GPL vmlinux 0xbb700168 scsi_nl_sock +EXPORT_SYMBOL_GPL vmlinux 0xbb7e3c9a crypto_lookup_template +EXPORT_SYMBOL_GPL vmlinux 0xbbc40a71 x509_decode_time +EXPORT_SYMBOL_GPL vmlinux 0xbbd219a2 ip6_route_lookup +EXPORT_SYMBOL_GPL vmlinux 0xbbd777a0 pm_generic_suspend +EXPORT_SYMBOL_GPL vmlinux 0xbc10ac59 unregister_jprobe +EXPORT_SYMBOL_GPL vmlinux 0xbc3509e5 device_store_ulong +EXPORT_SYMBOL_GPL vmlinux 0xbc526560 save_stack_trace_tsk +EXPORT_SYMBOL_GPL vmlinux 0xbc55aed6 inet6_lookup_listener +EXPORT_SYMBOL_GPL vmlinux 0xbc6bec66 free_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xbc752b8a dev_pm_disable_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xbcac6160 pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xbcad3325 shmem_file_setup +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 0xbce05f4a crypto_shash_setkey +EXPORT_SYMBOL_GPL vmlinux 0xbd1dc86f tty_port_tty_hangup +EXPORT_SYMBOL_GPL vmlinux 0xbd3a8072 iptunnel_handle_offloads +EXPORT_SYMBOL_GPL vmlinux 0xbd3fe1e3 disable_hardirq +EXPORT_SYMBOL_GPL vmlinux 0xbd5cb8b9 ring_buffer_resize +EXPORT_SYMBOL_GPL vmlinux 0xbd60646b rhashtable_walk_stop +EXPORT_SYMBOL_GPL vmlinux 0xbd77ff5c find_get_pid +EXPORT_SYMBOL_GPL vmlinux 0xbda988bf ip6_datagram_connect +EXPORT_SYMBOL_GPL vmlinux 0xbdd295f0 trace_vprintk +EXPORT_SYMBOL_GPL vmlinux 0xbdd2f42a rcu_bh_force_quiescent_state +EXPORT_SYMBOL_GPL vmlinux 0xbdd3b1bd subsys_dev_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xbe0be8a5 blkcg_policy_unregister +EXPORT_SYMBOL_GPL vmlinux 0xbe17b03b debugfs_create_atomic_t +EXPORT_SYMBOL_GPL vmlinux 0xbe503a28 generic_fh_to_parent +EXPORT_SYMBOL_GPL vmlinux 0xbe687e88 wake_up_all_idle_cpus +EXPORT_SYMBOL_GPL vmlinux 0xbe90dc91 dm_disk +EXPORT_SYMBOL_GPL vmlinux 0xbea5ff1e static_key_initialized +EXPORT_SYMBOL_GPL vmlinux 0xbeb5da99 kvm_vcpu_yield_to +EXPORT_SYMBOL_GPL vmlinux 0xbec8f6fc pci_enable_sriov +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 0xbf7fbe65 trace_seq_path +EXPORT_SYMBOL_GPL vmlinux 0xbf8a0b18 xfrm_local_error +EXPORT_SYMBOL_GPL vmlinux 0xbfad9e29 wakeup_source_register +EXPORT_SYMBOL_GPL vmlinux 0xbfbf6511 fat_time_unix2fat +EXPORT_SYMBOL_GPL vmlinux 0xbfe5616d tick_broadcast_oneshot_control +EXPORT_SYMBOL_GPL vmlinux 0xbffde8ec compat_alloc_user_space +EXPORT_SYMBOL_GPL vmlinux 0xbfffdab4 pkcs7_validate_trust +EXPORT_SYMBOL_GPL vmlinux 0xc00d3507 pm_runtime_get_if_in_use +EXPORT_SYMBOL_GPL vmlinux 0xc02dbe5b debugfs_remove +EXPORT_SYMBOL_GPL vmlinux 0xc0642c48 crypto_alloc_skcipher +EXPORT_SYMBOL_GPL vmlinux 0xc06a57cc get_task_mm +EXPORT_SYMBOL_GPL vmlinux 0xc07cfa9a sock_diag_unregister +EXPORT_SYMBOL_GPL vmlinux 0xc08647ff ring_buffer_bytes_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc0902e0f ccw_device_siosl +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 0xc0f0458a ip_tunnel_unneed_metadata +EXPORT_SYMBOL_GPL vmlinux 0xc0f13fd1 scsi_target_block +EXPORT_SYMBOL_GPL vmlinux 0xc0f4206e __mmu_notifier_invalidate_range_end +EXPORT_SYMBOL_GPL vmlinux 0xc11d382c inet_csk_listen_stop +EXPORT_SYMBOL_GPL vmlinux 0xc130b03e memalloc_socks +EXPORT_SYMBOL_GPL vmlinux 0xc136b5b8 blkcg_root +EXPORT_SYMBOL_GPL vmlinux 0xc1408c51 shash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xc1719055 skb_gso_transport_seglen +EXPORT_SYMBOL_GPL vmlinux 0xc176e426 devres_release +EXPORT_SYMBOL_GPL vmlinux 0xc22a3091 vm_unmap_aliases +EXPORT_SYMBOL_GPL vmlinux 0xc233b7e4 sysfs_add_file_to_group +EXPORT_SYMBOL_GPL vmlinux 0xc23f9fe1 mddev_init +EXPORT_SYMBOL_GPL vmlinux 0xc2517490 __wake_up_locked +EXPORT_SYMBOL_GPL vmlinux 0xc2645b00 pci_debug_err_id +EXPORT_SYMBOL_GPL vmlinux 0xc2b10d5a blkcipher_walk_phys +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 0xc322ffe0 sysfs_remove_files +EXPORT_SYMBOL_GPL vmlinux 0xc3327d64 kvm_flush_remote_tlbs +EXPORT_SYMBOL_GPL vmlinux 0xc33569cd kvm_init +EXPORT_SYMBOL_GPL vmlinux 0xc341ae6d zs_map_object +EXPORT_SYMBOL_GPL vmlinux 0xc342d9e2 sysfs_chmod_file +EXPORT_SYMBOL_GPL vmlinux 0xc357923c pm_qos_update_request +EXPORT_SYMBOL_GPL vmlinux 0xc359b03c kvm_is_visible_gfn +EXPORT_SYMBOL_GPL vmlinux 0xc36d8fe5 pcie_port_bus_type +EXPORT_SYMBOL_GPL vmlinux 0xc37226a5 tpm_pcr_extend +EXPORT_SYMBOL_GPL vmlinux 0xc3e7eff8 device_get_dma_attr +EXPORT_SYMBOL_GPL vmlinux 0xc3ec6e33 cpu_subsys +EXPORT_SYMBOL_GPL vmlinux 0xc3f40dcc dpm_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xc40d8f02 __platform_driver_probe +EXPORT_SYMBOL_GPL vmlinux 0xc42f8668 kernfs_find_and_get_ns +EXPORT_SYMBOL_GPL vmlinux 0xc46eafdd udp4_hwcsum +EXPORT_SYMBOL_GPL vmlinux 0xc470afee add_page_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xc47ddba7 __kvm_set_memory_region +EXPORT_SYMBOL_GPL vmlinux 0xc4875790 pci_intx_mask_supported +EXPORT_SYMBOL_GPL vmlinux 0xc48cc43e ftrace_set_filter +EXPORT_SYMBOL_GPL vmlinux 0xc4ad847c kernfs_path_from_node +EXPORT_SYMBOL_GPL vmlinux 0xc4d0226d dm_get_queue_limits +EXPORT_SYMBOL_GPL vmlinux 0xc4e4d08f pm_runtime_barrier +EXPORT_SYMBOL_GPL vmlinux 0xc4f47302 pm_schedule_suspend +EXPORT_SYMBOL_GPL vmlinux 0xc511cd47 snprint_stack_trace +EXPORT_SYMBOL_GPL vmlinux 0xc534a442 md_find_rdev_nr_rcu +EXPORT_SYMBOL_GPL vmlinux 0xc542933a timecounter_read +EXPORT_SYMBOL_GPL vmlinux 0xc556bc26 tpm_send +EXPORT_SYMBOL_GPL vmlinux 0xc55d493a pm_runtime_irq_safe +EXPORT_SYMBOL_GPL vmlinux 0xc575c737 debug_locks_off +EXPORT_SYMBOL_GPL vmlinux 0xc5b26ae1 tcp_register_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xc5e600eb msi_desc_to_pci_sysdata +EXPORT_SYMBOL_GPL vmlinux 0xc5fa4e75 iommu_group_remove_device +EXPORT_SYMBOL_GPL vmlinux 0xc5fc3049 rt_mutex_lock +EXPORT_SYMBOL_GPL vmlinux 0xc6143299 device_for_each_child_reverse +EXPORT_SYMBOL_GPL vmlinux 0xc617f82c unregister_oom_notifier +EXPORT_SYMBOL_GPL vmlinux 0xc6338a0a device_show_bool +EXPORT_SYMBOL_GPL vmlinux 0xc63d847d ktime_get_mono_fast_ns +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 0xc67c69b2 tcp_done +EXPORT_SYMBOL_GPL vmlinux 0xc69b7ee5 zs_destroy_pool +EXPORT_SYMBOL_GPL vmlinux 0xc69c023f tpm_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xc6ae01f3 __sock_recv_wifi_status +EXPORT_SYMBOL_GPL vmlinux 0xc6edd65a bsg_unregister_queue +EXPORT_SYMBOL_GPL vmlinux 0xc6f4dafb tpm_chip_register +EXPORT_SYMBOL_GPL vmlinux 0xc705f5dc probe_kernel_write +EXPORT_SYMBOL_GPL vmlinux 0xc71329d1 pci_msi_mask_irq +EXPORT_SYMBOL_GPL vmlinux 0xc72e1233 __trace_bprintk +EXPORT_SYMBOL_GPL vmlinux 0xc7536fea rt_mutex_lock_interruptible +EXPORT_SYMBOL_GPL vmlinux 0xc7a1840e llist_add_batch +EXPORT_SYMBOL_GPL vmlinux 0xc7c6391c mpi_set_buffer +EXPORT_SYMBOL_GPL vmlinux 0xc7dda574 zpci_stop_device +EXPORT_SYMBOL_GPL vmlinux 0xc7e39bca ring_buffer_dropped_events_cpu +EXPORT_SYMBOL_GPL vmlinux 0xc7ec2cce tracepoint_probe_register_prio +EXPORT_SYMBOL_GPL vmlinux 0xc7fee124 tty_port_tty_wakeup +EXPORT_SYMBOL_GPL vmlinux 0xc800f923 pm_generic_thaw_noirq +EXPORT_SYMBOL_GPL vmlinux 0xc81a07d7 nf_queue_entry_release_refs +EXPORT_SYMBOL_GPL vmlinux 0xc81e3879 single_release_net +EXPORT_SYMBOL_GPL vmlinux 0xc85b0b33 tty_prepare_flip_string +EXPORT_SYMBOL_GPL vmlinux 0xc87c1f84 ktime_get +EXPORT_SYMBOL_GPL vmlinux 0xc88f194d crypto_remove_spawns +EXPORT_SYMBOL_GPL vmlinux 0xc89955ff __gmap_zap +EXPORT_SYMBOL_GPL vmlinux 0xc8a6aca5 split_page +EXPORT_SYMBOL_GPL vmlinux 0xc8a6e75c perf_event_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8aa0a53 fsnotify +EXPORT_SYMBOL_GPL vmlinux 0xc8add232 ring_buffer_record_disable +EXPORT_SYMBOL_GPL vmlinux 0xc8b85545 crypto_shoot_alg +EXPORT_SYMBOL_GPL vmlinux 0xc8cb0330 scm_driver_register +EXPORT_SYMBOL_GPL vmlinux 0xc8de802f cn_netlink_send +EXPORT_SYMBOL_GPL vmlinux 0xc8eacf38 inet_csk_bind_conflict +EXPORT_SYMBOL_GPL vmlinux 0xc901235c mddev_congested +EXPORT_SYMBOL_GPL vmlinux 0xc91a7a62 ping_unhash +EXPORT_SYMBOL_GPL vmlinux 0xc9288db1 shash_ahash_digest +EXPORT_SYMBOL_GPL vmlinux 0xc94127a5 pci_bus_add_device +EXPORT_SYMBOL_GPL vmlinux 0xc96eeaef pm_runtime_autosuspend_expiration +EXPORT_SYMBOL_GPL vmlinux 0xc9727a59 crypto_hash_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xc97a246b crypto_alloc_tfm +EXPORT_SYMBOL_GPL vmlinux 0xc9ec4e21 free_percpu +EXPORT_SYMBOL_GPL vmlinux 0xca19ea19 sock_diag_register_inet_compat +EXPORT_SYMBOL_GPL vmlinux 0xca1b66ce l3mdev_fib_table_by_index +EXPORT_SYMBOL_GPL vmlinux 0xca2ec549 mddev_suspend +EXPORT_SYMBOL_GPL vmlinux 0xca5e791b sk_clear_memalloc +EXPORT_SYMBOL_GPL vmlinux 0xca6e9387 inet_csk_route_child_sock +EXPORT_SYMBOL_GPL vmlinux 0xca7d8764 kthread_freezable_should_stop +EXPORT_SYMBOL_GPL vmlinux 0xca8c3c01 sync_page_io +EXPORT_SYMBOL_GPL vmlinux 0xcaa4b047 unregister_trace_event +EXPORT_SYMBOL_GPL vmlinux 0xcab6045c posix_timers_register_clock +EXPORT_SYMBOL_GPL vmlinux 0xcabb3d51 pm_runtime_allow +EXPORT_SYMBOL_GPL vmlinux 0xcad3fbf5 ablkcipher_walk_done +EXPORT_SYMBOL_GPL vmlinux 0xcadef419 skb_partial_csum_set +EXPORT_SYMBOL_GPL vmlinux 0xcb1deb1b scsi_get_vpd_page +EXPORT_SYMBOL_GPL vmlinux 0xcb35e4ad pingv6_ops +EXPORT_SYMBOL_GPL vmlinux 0xcb39e1b7 __pci_hp_register +EXPORT_SYMBOL_GPL vmlinux 0xcb469d2b ddebug_add_module +EXPORT_SYMBOL_GPL vmlinux 0xcb5373c6 __tracepoint_block_unplug +EXPORT_SYMBOL_GPL vmlinux 0xcb5afdf1 device_rename +EXPORT_SYMBOL_GPL vmlinux 0xcbd30462 iommu_domain_free +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 0xcc76e414 tty_perform_flush +EXPORT_SYMBOL_GPL vmlinux 0xcc85fcb6 async_schedule +EXPORT_SYMBOL_GPL vmlinux 0xcc8b5b7f driver_create_file +EXPORT_SYMBOL_GPL vmlinux 0xcc911e9f alarm_start +EXPORT_SYMBOL_GPL vmlinux 0xccb537fa for_each_kernel_tracepoint +EXPORT_SYMBOL_GPL vmlinux 0xccce6279 __tracepoint_suspend_resume +EXPORT_SYMBOL_GPL vmlinux 0xcd04462f sysfs_create_groups +EXPORT_SYMBOL_GPL vmlinux 0xcd76ab96 bdev_read_page +EXPORT_SYMBOL_GPL vmlinux 0xcd7cbd4d xfrm_output +EXPORT_SYMBOL_GPL vmlinux 0xcd87155e crypto_unregister_instance +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 0xcdb609ac __inet_twsk_schedule +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 0xce1f3932 gmap_discard +EXPORT_SYMBOL_GPL vmlinux 0xce2067fe sysfs_rename_link_ns +EXPORT_SYMBOL_GPL vmlinux 0xce3be907 dev_pm_set_wake_irq +EXPORT_SYMBOL_GPL vmlinux 0xce46d806 device_wakeup_disable +EXPORT_SYMBOL_GPL vmlinux 0xce4f1e54 cmf_read +EXPORT_SYMBOL_GPL vmlinux 0xce6a9d9a trace_current_buffer_discard_commit +EXPORT_SYMBOL_GPL vmlinux 0xce6db656 rcu_is_watching +EXPORT_SYMBOL_GPL vmlinux 0xce8f0b6e cpci_hp_unregister_bus +EXPORT_SYMBOL_GPL vmlinux 0xcecba454 percpu_ida_alloc +EXPORT_SYMBOL_GPL vmlinux 0xcee82431 ipv4_update_pmtu +EXPORT_SYMBOL_GPL vmlinux 0xcf54ea93 async_unregister_domain +EXPORT_SYMBOL_GPL vmlinux 0xcf7b0223 chsc_scm_info +EXPORT_SYMBOL_GPL vmlinux 0xcfa945f9 blk_mq_tags_cpumask +EXPORT_SYMBOL_GPL vmlinux 0xcfb5871c irq_work_queue +EXPORT_SYMBOL_GPL vmlinux 0xcfc68341 synchronize_rcu_bh +EXPORT_SYMBOL_GPL vmlinux 0xd017e623 pm_relax +EXPORT_SYMBOL_GPL vmlinux 0xd031b589 asn1_ber_decoder +EXPORT_SYMBOL_GPL vmlinux 0xd039dfc4 platform_device_add_properties +EXPORT_SYMBOL_GPL vmlinux 0xd03c7700 secure_ipv4_port_ephemeral +EXPORT_SYMBOL_GPL vmlinux 0xd04eaedf md_rdev_init +EXPORT_SYMBOL_GPL vmlinux 0xd064906a virtqueue_kick +EXPORT_SYMBOL_GPL vmlinux 0xd06524ba raw_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd067d3c5 system_freezable_power_efficient_wq +EXPORT_SYMBOL_GPL vmlinux 0xd08c08b0 ahash_free_instance +EXPORT_SYMBOL_GPL vmlinux 0xd0c05159 emergency_restart +EXPORT_SYMBOL_GPL vmlinux 0xd0ca7a66 aead_register_instance +EXPORT_SYMBOL_GPL vmlinux 0xd0cc48d9 __init_kthread_worker +EXPORT_SYMBOL_GPL vmlinux 0xd15277d4 ping_common_sendmsg +EXPORT_SYMBOL_GPL vmlinux 0xd16712f3 crypto_check_attr_type +EXPORT_SYMBOL_GPL vmlinux 0xd1a23f73 virtio_break_device +EXPORT_SYMBOL_GPL vmlinux 0xd1e7802e iommu_get_domain_for_dev +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 0xd22aa320 task_cputime_adjusted +EXPORT_SYMBOL_GPL vmlinux 0xd2332cd5 crypto_alloc_base +EXPORT_SYMBOL_GPL vmlinux 0xd23b7a92 kvm_get_dirty_log +EXPORT_SYMBOL_GPL vmlinux 0xd247b5db atomic_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd263619c crypto_grab_aead +EXPORT_SYMBOL_GPL vmlinux 0xd273b1b1 __round_jiffies_up_relative +EXPORT_SYMBOL_GPL vmlinux 0xd2e00625 inet_putpeer +EXPORT_SYMBOL_GPL vmlinux 0xd3243ae8 mpi_read_raw_data +EXPORT_SYMBOL_GPL vmlinux 0xd34045d7 verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd352f029 trace_seq_putmem +EXPORT_SYMBOL_GPL vmlinux 0xd36892a5 klp_enable_patch +EXPORT_SYMBOL_GPL vmlinux 0xd3b15669 public_key_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xd3c0287a driver_register +EXPORT_SYMBOL_GPL vmlinux 0xd3d4ac02 inet_hash_connect +EXPORT_SYMBOL_GPL vmlinux 0xd3ed9fb0 vfs_setlease +EXPORT_SYMBOL_GPL vmlinux 0xd3f52125 subsys_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xd4034828 system_freezable_wq +EXPORT_SYMBOL_GPL vmlinux 0xd411aeaf netdev_rx_handler_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd41fffab interval_tree_iter_first +EXPORT_SYMBOL_GPL vmlinux 0xd43bfc3f unregister_kretprobes +EXPORT_SYMBOL_GPL vmlinux 0xd4c14632 system_unbound_wq +EXPORT_SYMBOL_GPL vmlinux 0xd522d21d pm_generic_freeze_noirq +EXPORT_SYMBOL_GPL vmlinux 0xd5447fe5 get_kernel_page +EXPORT_SYMBOL_GPL vmlinux 0xd5541799 pkcs7_free_message +EXPORT_SYMBOL_GPL vmlinux 0xd555864e trace_output_call +EXPORT_SYMBOL_GPL vmlinux 0xd55ad93b iommu_group_get_iommudata +EXPORT_SYMBOL_GPL vmlinux 0xd56b5f64 ktime_get_ts64 +EXPORT_SYMBOL_GPL vmlinux 0xd570938f tcp_unregister_congestion_control +EXPORT_SYMBOL_GPL vmlinux 0xd5742d38 sysfs_create_group +EXPORT_SYMBOL_GPL vmlinux 0xd5b322ed shmem_truncate_range +EXPORT_SYMBOL_GPL vmlinux 0xd5bd7dac ring_buffer_record_enable_cpu +EXPORT_SYMBOL_GPL vmlinux 0xd5dc2940 attribute_container_unregister +EXPORT_SYMBOL_GPL vmlinux 0xd5eb80d1 kobject_uevent +EXPORT_SYMBOL_GPL vmlinux 0xd5f6ae02 vfs_cancel_lock +EXPORT_SYMBOL_GPL vmlinux 0xd60c99b5 rcu_batches_completed_bh +EXPORT_SYMBOL_GPL vmlinux 0xd63693d6 io_cgrp_subsys +EXPORT_SYMBOL_GPL vmlinux 0xd652ef7e devm_kmemdup +EXPORT_SYMBOL_GPL vmlinux 0xd672c9ca rhashtable_walk_init +EXPORT_SYMBOL_GPL vmlinux 0xd67364f7 eventfd_ctx_fdget +EXPORT_SYMBOL_GPL vmlinux 0xd699841e wait_for_stable_page +EXPORT_SYMBOL_GPL vmlinux 0xd6a38703 user_update +EXPORT_SYMBOL_GPL vmlinux 0xd6b17a5e task_user_regset_view +EXPORT_SYMBOL_GPL vmlinux 0xd705b4c7 schedule_hrtimeout +EXPORT_SYMBOL_GPL vmlinux 0xd7218069 device_property_read_u16_array +EXPORT_SYMBOL_GPL vmlinux 0xd742cf69 driver_find_device +EXPORT_SYMBOL_GPL vmlinux 0xd759dadf dm_get_rq_mapinfo +EXPORT_SYMBOL_GPL vmlinux 0xd77c0bc8 klist_remove +EXPORT_SYMBOL_GPL vmlinux 0xd78aa52d add_to_page_cache_lru +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 0xd81de62c ring_buffer_record_enable +EXPORT_SYMBOL_GPL vmlinux 0xd820c283 eventfd_ctx_remove_wait_queue +EXPORT_SYMBOL_GPL vmlinux 0xd849693c crypto_unregister_aeads +EXPORT_SYMBOL_GPL vmlinux 0xd8540288 inet6_csk_addr2sockaddr +EXPORT_SYMBOL_GPL vmlinux 0xd87601cc ring_buffer_unlock_commit +EXPORT_SYMBOL_GPL vmlinux 0xd90425d7 register_kretprobe +EXPORT_SYMBOL_GPL vmlinux 0xd93c0b0d pci_scan_child_bus +EXPORT_SYMBOL_GPL vmlinux 0xd942d353 ring_buffer_record_off +EXPORT_SYMBOL_GPL vmlinux 0xd9613084 bus_for_each_dev +EXPORT_SYMBOL_GPL vmlinux 0xd96babb4 interval_tree_iter_next +EXPORT_SYMBOL_GPL vmlinux 0xd9843ff6 __tracepoint_block_split +EXPORT_SYMBOL_GPL vmlinux 0xd98bde12 scsi_internal_device_block +EXPORT_SYMBOL_GPL vmlinux 0xd9ecb670 ring_buffer_overruns +EXPORT_SYMBOL_GPL vmlinux 0xda36a8cc pm_generic_poweroff +EXPORT_SYMBOL_GPL vmlinux 0xda3f3e8a isc_register +EXPORT_SYMBOL_GPL vmlinux 0xda5ad759 vfs_lock_file +EXPORT_SYMBOL_GPL vmlinux 0xda5beed4 tty_port_link_device +EXPORT_SYMBOL_GPL vmlinux 0xda88feb0 kernel_kobj +EXPORT_SYMBOL_GPL vmlinux 0xdad4496b kvm_vcpu_gfn_to_page +EXPORT_SYMBOL_GPL vmlinux 0xdad82daa bus_find_device_by_name +EXPORT_SYMBOL_GPL vmlinux 0xdaed3073 timerqueue_del +EXPORT_SYMBOL_GPL vmlinux 0xdaf23382 tpm2_gen_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xdaf80164 crypto_alloc_aead +EXPORT_SYMBOL_GPL vmlinux 0xdafdc6e0 blk_queue_rq_timeout +EXPORT_SYMBOL_GPL vmlinux 0xdb119992 trace_event_reg +EXPORT_SYMBOL_GPL vmlinux 0xdb2ae4f2 kvm_write_guest_cached +EXPORT_SYMBOL_GPL vmlinux 0xdb47e15f unix_inq_len +EXPORT_SYMBOL_GPL vmlinux 0xdb8a1b3f usermodehelper_read_trylock +EXPORT_SYMBOL_GPL vmlinux 0xdbade2c2 platform_driver_unregister +EXPORT_SYMBOL_GPL vmlinux 0xdbdc56b6 unregister_ftrace_function +EXPORT_SYMBOL_GPL vmlinux 0xdbf7cb70 mpi_get_nbits +EXPORT_SYMBOL_GPL vmlinux 0xdbfe3c06 crypto_hash_walk_first +EXPORT_SYMBOL_GPL vmlinux 0xdc536e33 virtio_device_freeze +EXPORT_SYMBOL_GPL vmlinux 0xdc8a2744 get_pid_task +EXPORT_SYMBOL_GPL vmlinux 0xdc97af2e syscore_suspend +EXPORT_SYMBOL_GPL vmlinux 0xdc9fa232 raw_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xdca25be5 pci_user_write_config_word +EXPORT_SYMBOL_GPL vmlinux 0xdcd7e889 perf_event_refresh +EXPORT_SYMBOL_GPL vmlinux 0xdcef12c4 __online_page_set_limits +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 0xdd78670e pci_sriov_set_totalvfs +EXPORT_SYMBOL_GPL vmlinux 0xdd8f3978 tcp_cong_avoid_ai +EXPORT_SYMBOL_GPL vmlinux 0xdda4f7ee blkcg_activate_policy +EXPORT_SYMBOL_GPL vmlinux 0xddb57a75 debugfs_create_devm_seqfile +EXPORT_SYMBOL_GPL vmlinux 0xddbeeecc pci_lock_rescan_remove +EXPORT_SYMBOL_GPL vmlinux 0xddd58dc0 ring_buffer_reset +EXPORT_SYMBOL_GPL vmlinux 0xde26d7dd pm_generic_thaw_early +EXPORT_SYMBOL_GPL vmlinux 0xde3111e9 bus_create_file +EXPORT_SYMBOL_GPL vmlinux 0xde32b1ac hwrng_register +EXPORT_SYMBOL_GPL vmlinux 0xde5c3592 security_inode_setattr +EXPORT_SYMBOL_GPL vmlinux 0xde898584 debugfs_create_regset32 +EXPORT_SYMBOL_GPL vmlinux 0xdec05d66 ccw_device_set_timeout +EXPORT_SYMBOL_GPL vmlinux 0xded5d8e0 irq_stat +EXPORT_SYMBOL_GPL vmlinux 0xdeea0ac2 ahash_attr_alg +EXPORT_SYMBOL_GPL vmlinux 0xdeffe605 __skb_get_hash_symmetric +EXPORT_SYMBOL_GPL vmlinux 0xdf0f75c6 eventfd_signal +EXPORT_SYMBOL_GPL vmlinux 0xdf0f7c4e component_bind_all +EXPORT_SYMBOL_GPL vmlinux 0xdf4a59d3 ipv6_recv_error +EXPORT_SYMBOL_GPL vmlinux 0xdf96484d md_rdev_clear +EXPORT_SYMBOL_GPL vmlinux 0xdfba7e9e crypto_init_ahash_spawn +EXPORT_SYMBOL_GPL vmlinux 0xdfd0380d relay_switch_subbuf +EXPORT_SYMBOL_GPL vmlinux 0xdfe88c0f blk_execute_rq_nowait +EXPORT_SYMBOL_GPL vmlinux 0xdffd034f fat_remove_entries +EXPORT_SYMBOL_GPL vmlinux 0xe007de41 kallsyms_lookup_name +EXPORT_SYMBOL_GPL vmlinux 0xe00c31f4 s390_reset_cmma +EXPORT_SYMBOL_GPL vmlinux 0xe028c66e tty_buffer_unlock_exclusive +EXPORT_SYMBOL_GPL vmlinux 0xe02eb6d0 ring_buffer_commit_overrun_cpu +EXPORT_SYMBOL_GPL vmlinux 0xe034c97b fat_alloc_new_dir +EXPORT_SYMBOL_GPL vmlinux 0xe06388fd add_hwgenerator_randomness +EXPORT_SYMBOL_GPL vmlinux 0xe071d05d zs_pool_stats +EXPORT_SYMBOL_GPL vmlinux 0xe078ac80 netdev_rx_handler_register +EXPORT_SYMBOL_GPL vmlinux 0xe0a2ee20 elv_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe0c6965b blkg_print_stat_ios_recursive +EXPORT_SYMBOL_GPL vmlinux 0xe0db1b3c kvm_vcpu_write_guest_page +EXPORT_SYMBOL_GPL vmlinux 0xe0ecbd19 blk_mq_alloc_request_hctx +EXPORT_SYMBOL_GPL vmlinux 0xe13ab9f4 proc_mkdir_data +EXPORT_SYMBOL_GPL vmlinux 0xe1775ee7 dm_get_reserved_bio_based_ios +EXPORT_SYMBOL_GPL vmlinux 0xe1e284cf dev_pm_qos_hide_latency_tolerance +EXPORT_SYMBOL_GPL vmlinux 0xe1fb6d09 init_uts_ns +EXPORT_SYMBOL_GPL vmlinux 0xe209a466 anon_transport_class_register +EXPORT_SYMBOL_GPL vmlinux 0xe235a224 crypto_ahash_finup +EXPORT_SYMBOL_GPL vmlinux 0xe23f2ae5 ftrace_set_filter_ip +EXPORT_SYMBOL_GPL vmlinux 0xe26a83fe platform_get_irq_byname +EXPORT_SYMBOL_GPL vmlinux 0xe284956f bio_associate_current +EXPORT_SYMBOL_GPL vmlinux 0xe2e5663e nf_register_afinfo +EXPORT_SYMBOL_GPL vmlinux 0xe3043ff9 request_any_context_irq +EXPORT_SYMBOL_GPL vmlinux 0xe30d4f09 dev_pm_qos_flags +EXPORT_SYMBOL_GPL vmlinux 0xe35723b5 netlink_remove_tap +EXPORT_SYMBOL_GPL vmlinux 0xe381d44b perf_event_create_kernel_counter +EXPORT_SYMBOL_GPL vmlinux 0xe3905052 dev_pm_qos_remove_notifier +EXPORT_SYMBOL_GPL vmlinux 0xe3a9f991 cgroup_path_ns +EXPORT_SYMBOL_GPL vmlinux 0xe3b4ac43 inet_csk_route_req +EXPORT_SYMBOL_GPL vmlinux 0xe3c3a7f4 exportfs_decode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe3edc69d default_iommu_map_sg +EXPORT_SYMBOL_GPL vmlinux 0xe3fadae3 devres_for_each_res +EXPORT_SYMBOL_GPL vmlinux 0xe400019e skb_cow_data +EXPORT_SYMBOL_GPL vmlinux 0xe4269210 skb_zerocopy +EXPORT_SYMBOL_GPL vmlinux 0xe4309905 syscore_resume +EXPORT_SYMBOL_GPL vmlinux 0xe4414e29 perf_pmu_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe4689576 ktime_get_with_offset +EXPORT_SYMBOL_GPL vmlinux 0xe46f6d78 ip_local_out +EXPORT_SYMBOL_GPL vmlinux 0xe4971ade tracing_alloc_snapshot +EXPORT_SYMBOL_GPL vmlinux 0xe49c5720 debugfs_create_file_size +EXPORT_SYMBOL_GPL vmlinux 0xe4c511c3 bpf_skb_vlan_push_proto +EXPORT_SYMBOL_GPL vmlinux 0xe4dbceef ipv6_stub +EXPORT_SYMBOL_GPL vmlinux 0xe51ecbbf exportfs_encode_inode_fh +EXPORT_SYMBOL_GPL vmlinux 0xe55b54a5 task_active_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xe565a163 ipv6_find_tlv +EXPORT_SYMBOL_GPL vmlinux 0xe5883bd9 class_compat_unregister +EXPORT_SYMBOL_GPL vmlinux 0xe58fb452 aer_irq +EXPORT_SYMBOL_GPL vmlinux 0xe5927a97 noop_backing_dev_info +EXPORT_SYMBOL_GPL vmlinux 0xe59f214c rt_mutex_trylock +EXPORT_SYMBOL_GPL vmlinux 0xe5c8d786 dev_change_net_namespace +EXPORT_SYMBOL_GPL vmlinux 0xe5de74dc clone_private_mount +EXPORT_SYMBOL_GPL vmlinux 0xe60c223a sock_diag_put_meminfo +EXPORT_SYMBOL_GPL vmlinux 0xe6103008 sysfs_remove_mount_point +EXPORT_SYMBOL_GPL vmlinux 0xe618a968 gfn_to_pfn_atomic +EXPORT_SYMBOL_GPL vmlinux 0xe62539be xfrm_audit_policy_add +EXPORT_SYMBOL_GPL vmlinux 0xe651f76e selinux_is_enabled +EXPORT_SYMBOL_GPL vmlinux 0xe66d73ec splice_to_pipe +EXPORT_SYMBOL_GPL vmlinux 0xe6735231 __udp4_lib_lookup +EXPORT_SYMBOL_GPL vmlinux 0xe6c68334 ddebug_remove_module +EXPORT_SYMBOL_GPL vmlinux 0xe6e0bbef vfs_setxattr +EXPORT_SYMBOL_GPL vmlinux 0xe6e1c5fe uuid_be_gen +EXPORT_SYMBOL_GPL vmlinux 0xe6ef4abf dm_internal_resume_fast +EXPORT_SYMBOL_GPL vmlinux 0xe7180fbc kvm_vcpu_mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xe74a742f fwnode_property_present +EXPORT_SYMBOL_GPL vmlinux 0xe769232e sprint_symbol_no_offset +EXPORT_SYMBOL_GPL vmlinux 0xe77eeb9b get_net_ns_by_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 0xe7cab89d kobj_sysfs_ops +EXPORT_SYMBOL_GPL vmlinux 0xe7ffe877 pcpu_base_addr +EXPORT_SYMBOL_GPL vmlinux 0xe8092b2b insn_to_mnemonic +EXPORT_SYMBOL_GPL vmlinux 0xe81cf8f7 trace_event_ignore_this_pid +EXPORT_SYMBOL_GPL vmlinux 0xe83c2c8a mmu_notifier_register +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 0xe8ca8930 rtnl_put_cacheinfo +EXPORT_SYMBOL_GPL vmlinux 0xe8d09f2f chp_ssd_get_mask +EXPORT_SYMBOL_GPL vmlinux 0xe8d9bf57 device_move +EXPORT_SYMBOL_GPL vmlinux 0xe8e044aa device_create_file +EXPORT_SYMBOL_GPL vmlinux 0xe8e49299 device_get_next_child_node +EXPORT_SYMBOL_GPL vmlinux 0xe8e89dba __blkg_prfill_rwstat +EXPORT_SYMBOL_GPL vmlinux 0xe932b076 balloon_page_dequeue +EXPORT_SYMBOL_GPL vmlinux 0xe93e49c3 devres_free +EXPORT_SYMBOL_GPL vmlinux 0xe998d811 crypto_spawn_tfm +EXPORT_SYMBOL_GPL vmlinux 0xe9999393 __tracepoint_add_device_to_group +EXPORT_SYMBOL_GPL vmlinux 0xe9ebed30 pci_user_read_config_byte +EXPORT_SYMBOL_GPL vmlinux 0xea113cdb blkg_conf_finish +EXPORT_SYMBOL_GPL vmlinux 0xea124bd1 gcd +EXPORT_SYMBOL_GPL vmlinux 0xea2a9c61 __netpoll_free_async +EXPORT_SYMBOL_GPL vmlinux 0xea609230 srcu_notifier_chain_unregister +EXPORT_SYMBOL_GPL vmlinux 0xea8ef65d dm_get_dev_t +EXPORT_SYMBOL_GPL vmlinux 0xea95cb5a memory_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xeac9e6fc simple_attr_read +EXPORT_SYMBOL_GPL vmlinux 0xeaccd9f0 devm_kfree +EXPORT_SYMBOL_GPL vmlinux 0xeaf08820 klist_add_tail +EXPORT_SYMBOL_GPL vmlinux 0xeaf2ed5c dev_fill_metadata_dst +EXPORT_SYMBOL_GPL vmlinux 0xeb1446b4 __dev_forward_skb +EXPORT_SYMBOL_GPL vmlinux 0xeb2dfe0e disk_part_iter_exit +EXPORT_SYMBOL_GPL vmlinux 0xeb5e9c08 fuse_file_poll +EXPORT_SYMBOL_GPL vmlinux 0xeb650451 relay_open +EXPORT_SYMBOL_GPL vmlinux 0xeb6979de virtqueue_poll +EXPORT_SYMBOL_GPL vmlinux 0xeb7713ca scsi_register_device_handler +EXPORT_SYMBOL_GPL vmlinux 0xeb7aa447 kvm_vcpu_read_guest +EXPORT_SYMBOL_GPL vmlinux 0xeba745e1 irq_set_affinity_notifier +EXPORT_SYMBOL_GPL vmlinux 0xebec57c4 ring_buffer_oldest_event_ts +EXPORT_SYMBOL_GPL vmlinux 0xec0a69a3 bsg_job_done +EXPORT_SYMBOL_GPL vmlinux 0xec13c83c si_swapinfo +EXPORT_SYMBOL_GPL vmlinux 0xec25f967 klist_del +EXPORT_SYMBOL_GPL vmlinux 0xec3bf86c pci_create_root_bus +EXPORT_SYMBOL_GPL vmlinux 0xec55ae46 balloon_page_enqueue +EXPORT_SYMBOL_GPL vmlinux 0xec57ea73 param_ops_bool_enable_only +EXPORT_SYMBOL_GPL vmlinux 0xec631f34 remove_memory +EXPORT_SYMBOL_GPL vmlinux 0xecb0d953 uprobe_register +EXPORT_SYMBOL_GPL vmlinux 0xecca01e6 device_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xecd26dc6 device_initialize +EXPORT_SYMBOL_GPL vmlinux 0xece05c0f crypto_ahash_type +EXPORT_SYMBOL_GPL vmlinux 0xed24a17b irq_set_chained_handler_and_data +EXPORT_SYMBOL_GPL vmlinux 0xed313d99 __securityfs_setup_d_inode +EXPORT_SYMBOL_GPL vmlinux 0xed5f17a1 crypto_mod_put +EXPORT_SYMBOL_GPL vmlinux 0xed66d3ab pci_check_and_mask_intx +EXPORT_SYMBOL_GPL vmlinux 0xeda3a884 cpuset_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xedc36b60 __mmu_notifier_invalidate_range +EXPORT_SYMBOL_GPL vmlinux 0xedd25d50 crypto_register_ahash +EXPORT_SYMBOL_GPL vmlinux 0xee3e0ad2 fsstack_copy_attr_all +EXPORT_SYMBOL_GPL vmlinux 0xee497f08 jump_label_rate_limit +EXPORT_SYMBOL_GPL vmlinux 0xeedac8ea sched_setscheduler +EXPORT_SYMBOL_GPL vmlinux 0xef13106c nr_threads +EXPORT_SYMBOL_GPL vmlinux 0xef224e5a device_create +EXPORT_SYMBOL_GPL vmlinux 0xef63cb68 __pm_runtime_resume +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 0xefbbddfe securityfs_create_dir +EXPORT_SYMBOL_GPL vmlinux 0xefc1e6ec scsi_internal_device_unblock +EXPORT_SYMBOL_GPL vmlinux 0xefe21066 kernfs_notify +EXPORT_SYMBOL_GPL vmlinux 0xeffc9357 rhashtable_walk_next +EXPORT_SYMBOL_GPL vmlinux 0xf0010e3a dm_suspended +EXPORT_SYMBOL_GPL vmlinux 0xf021e894 sysfs_unmerge_group +EXPORT_SYMBOL_GPL vmlinux 0xf02c096a register_pernet_device +EXPORT_SYMBOL_GPL vmlinux 0xf03c072f __ftrace_vbprintk +EXPORT_SYMBOL_GPL vmlinux 0xf0727f12 ktime_get_raw_fast_ns +EXPORT_SYMBOL_GPL vmlinux 0xf09ce0d0 srcu_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xf0c3c535 stop_machine +EXPORT_SYMBOL_GPL vmlinux 0xf0c4c51f rsa_verify_signature +EXPORT_SYMBOL_GPL vmlinux 0xf0ccf21f perf_pmu_migrate_context +EXPORT_SYMBOL_GPL vmlinux 0xf0d29268 skb_tstamp_tx +EXPORT_SYMBOL_GPL vmlinux 0xf0eb12d5 devm_kmalloc +EXPORT_SYMBOL_GPL vmlinux 0xf0f5dbc2 timerqueue_iterate_next +EXPORT_SYMBOL_GPL vmlinux 0xf10f02e3 kick_process +EXPORT_SYMBOL_GPL vmlinux 0xf12386f0 virtqueue_enable_cb_delayed +EXPORT_SYMBOL_GPL vmlinux 0xf1409759 pci_load_saved_state +EXPORT_SYMBOL_GPL vmlinux 0xf142854f crypto_unregister_aead +EXPORT_SYMBOL_GPL vmlinux 0xf17a3c2f __pci_reset_function +EXPORT_SYMBOL_GPL vmlinux 0xf1844ee2 crypto_drop_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf184d189 kernel_power_off +EXPORT_SYMBOL_GPL vmlinux 0xf18879f1 relay_reset +EXPORT_SYMBOL_GPL vmlinux 0xf19d2236 __blkdev_driver_ioctl +EXPORT_SYMBOL_GPL vmlinux 0xf1b141d1 rsa_free_key +EXPORT_SYMBOL_GPL vmlinux 0xf1b31314 delayacct_on +EXPORT_SYMBOL_GPL vmlinux 0xf1cb7491 init_pid_ns +EXPORT_SYMBOL_GPL vmlinux 0xf1d64eff relay_subbufs_consumed +EXPORT_SYMBOL_GPL vmlinux 0xf1e171a2 subsys_system_register +EXPORT_SYMBOL_GPL vmlinux 0xf21e1f9b disable_percpu_irq +EXPORT_SYMBOL_GPL vmlinux 0xf232f48d disk_get_part +EXPORT_SYMBOL_GPL vmlinux 0xf23b5131 __pm_stay_awake +EXPORT_SYMBOL_GPL vmlinux 0xf247a566 bitmap_load +EXPORT_SYMBOL_GPL vmlinux 0xf26f1da5 crypto_init_spawn +EXPORT_SYMBOL_GPL vmlinux 0xf27977e2 async_synchronize_cookie_domain +EXPORT_SYMBOL_GPL vmlinux 0xf27b64f5 virtio_check_driver_offered_feature +EXPORT_SYMBOL_GPL vmlinux 0xf2acdcf8 fwnode_property_match_string +EXPORT_SYMBOL_GPL vmlinux 0xf2b1fb96 driver_attach +EXPORT_SYMBOL_GPL vmlinux 0xf2c6c6d5 raw_seq_open +EXPORT_SYMBOL_GPL vmlinux 0xf2ccdd37 cgrp_dfl_root +EXPORT_SYMBOL_GPL vmlinux 0xf3085852 handle_simple_irq +EXPORT_SYMBOL_GPL vmlinux 0xf311e156 key_being_used_for +EXPORT_SYMBOL_GPL vmlinux 0xf31b3fd1 workqueue_set_max_active +EXPORT_SYMBOL_GPL vmlinux 0xf33fe1ca inet_peer_base_init +EXPORT_SYMBOL_GPL vmlinux 0xf34ab1d2 blkg_conf_prep +EXPORT_SYMBOL_GPL vmlinux 0xf37a8e3e fwnode_property_read_string +EXPORT_SYMBOL_GPL vmlinux 0xf3808cb1 get_state_synchronize_rcu +EXPORT_SYMBOL_GPL vmlinux 0xf380e0f9 unregister_pernet_subsys +EXPORT_SYMBOL_GPL vmlinux 0xf3bcc9ea dm_internal_suspend_fast +EXPORT_SYMBOL_GPL vmlinux 0xf3f18238 ktime_get_resolution_ns +EXPORT_SYMBOL_GPL vmlinux 0xf460d62a gmap_test_and_clear_dirty +EXPORT_SYMBOL_GPL vmlinux 0xf499fdb2 rcu_barrier_bh +EXPORT_SYMBOL_GPL vmlinux 0xf4be20b1 tty_port_register_device_attr +EXPORT_SYMBOL_GPL vmlinux 0xf4fc2d6c __ring_buffer_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf510d389 rsa_parse_pub_key +EXPORT_SYMBOL_GPL vmlinux 0xf52120ef device_find_child +EXPORT_SYMBOL_GPL vmlinux 0xf54bd49b lcm +EXPORT_SYMBOL_GPL vmlinux 0xf5a14a22 mnt_want_write_file +EXPORT_SYMBOL_GPL vmlinux 0xf5a691cd invalidate_bh_lrus +EXPORT_SYMBOL_GPL vmlinux 0xf5bcf1b2 __cookie_v4_check +EXPORT_SYMBOL_GPL vmlinux 0xf5fdc11d iommu_group_get +EXPORT_SYMBOL_GPL vmlinux 0xf62a67b8 bus_get_device_klist +EXPORT_SYMBOL_GPL vmlinux 0xf66df469 subsys_interface_unregister +EXPORT_SYMBOL_GPL vmlinux 0xf6a72a0d fwnode_property_read_u32_array +EXPORT_SYMBOL_GPL vmlinux 0xf6bbdad2 srcu_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf6bccc5a fuse_dev_alloc +EXPORT_SYMBOL_GPL vmlinux 0xf6c25c18 validate_xmit_skb_list +EXPORT_SYMBOL_GPL vmlinux 0xf6c8dc62 cpu_hotplug_enable +EXPORT_SYMBOL_GPL vmlinux 0xf6db15ce crypto_attr_alg2 +EXPORT_SYMBOL_GPL vmlinux 0xf74d0b78 xfrm_output_resume +EXPORT_SYMBOL_GPL vmlinux 0xf7595992 ccw_device_get_schid +EXPORT_SYMBOL_GPL vmlinux 0xf7719d15 iommu_attach_device +EXPORT_SYMBOL_GPL vmlinux 0xf792816a fat_detach +EXPORT_SYMBOL_GPL vmlinux 0xf797e5b9 ip6_datagram_connect_v6_only +EXPORT_SYMBOL_GPL vmlinux 0xf7e50a1a __mnt_drop_write +EXPORT_SYMBOL_GPL vmlinux 0xf7fa0e25 trace_call_bpf +EXPORT_SYMBOL_GPL vmlinux 0xf82a73dc trace_clock_jiffies +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 0xf8af7a5b kvm_gfn_to_hva_cache_init +EXPORT_SYMBOL_GPL vmlinux 0xf8d9233f bus_remove_file +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 0xf915425c percpu_down_read +EXPORT_SYMBOL_GPL vmlinux 0xf932015f __raw_notifier_call_chain +EXPORT_SYMBOL_GPL vmlinux 0xf93df7d5 iptunnel_xmit +EXPORT_SYMBOL_GPL vmlinux 0xf95322f4 kthread_parkme +EXPORT_SYMBOL_GPL vmlinux 0xf991c09f rcu_qs_ctr +EXPORT_SYMBOL_GPL vmlinux 0xf993e900 net_prio_cgrp_subsys_enabled_key +EXPORT_SYMBOL_GPL vmlinux 0xf99b9ae2 unregister_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xf9a054b5 __round_jiffies +EXPORT_SYMBOL_GPL vmlinux 0xf9b78491 perf_pmu_register +EXPORT_SYMBOL_GPL vmlinux 0xf9e382b3 register_kprobes +EXPORT_SYMBOL_GPL vmlinux 0xf9f04dac mpi_write_to_sgl +EXPORT_SYMBOL_GPL vmlinux 0xfa140fb2 pci_find_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xfa1eb910 unregister_syscore_ops +EXPORT_SYMBOL_GPL vmlinux 0xfa1f4662 scatterwalk_start +EXPORT_SYMBOL_GPL vmlinux 0xfa28a57d register_asymmetric_key_parser +EXPORT_SYMBOL_GPL vmlinux 0xfa901b31 compat_get_timespec +EXPORT_SYMBOL_GPL vmlinux 0xfa9e335e hwrng_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfab7a1b0 sysfs_remove_file_ns +EXPORT_SYMBOL_GPL vmlinux 0xfabd8b30 register_virtio_device +EXPORT_SYMBOL_GPL vmlinux 0xfadac245 user_preparse +EXPORT_SYMBOL_GPL vmlinux 0xfb32b30f ring_buffer_read_prepare_sync +EXPORT_SYMBOL_GPL vmlinux 0xfb3cd3bf inet6_lookup +EXPORT_SYMBOL_GPL vmlinux 0xfb54b85e cpci_hp_register_controller +EXPORT_SYMBOL_GPL vmlinux 0xfb6eedf9 power_group_name +EXPORT_SYMBOL_GPL vmlinux 0xfb7c6bca cpu_device_create +EXPORT_SYMBOL_GPL vmlinux 0xfbbd41ca no_action +EXPORT_SYMBOL_GPL vmlinux 0xfbbec40b tpm_get_timeouts +EXPORT_SYMBOL_GPL vmlinux 0xfbc09a7d security_inode_create +EXPORT_SYMBOL_GPL vmlinux 0xfbddadcb crypto_init_spawn2 +EXPORT_SYMBOL_GPL vmlinux 0xfbe19411 kallsyms_on_each_symbol +EXPORT_SYMBOL_GPL vmlinux 0xfc03d97a page_is_ram +EXPORT_SYMBOL_GPL vmlinux 0xfc0a35f4 mark_page_dirty +EXPORT_SYMBOL_GPL vmlinux 0xfc42af0a dax_pfn_mkwrite +EXPORT_SYMBOL_GPL vmlinux 0xfc4318d1 debugfs_create_u8 +EXPORT_SYMBOL_GPL vmlinux 0xfc4fcde8 atomic_notifier_chain_register +EXPORT_SYMBOL_GPL vmlinux 0xfc5eb088 cpuacct_cgrp_subsys_on_dfl_key +EXPORT_SYMBOL_GPL vmlinux 0xfc7ebcc7 class_dev_iter_init +EXPORT_SYMBOL_GPL vmlinux 0xfc84842d platform_add_devices +EXPORT_SYMBOL_GPL vmlinux 0xfc8d9990 sysfs_remove_bin_file +EXPORT_SYMBOL_GPL vmlinux 0xfcf02f33 get_dcookie +EXPORT_SYMBOL_GPL vmlinux 0xfcfd44d1 css_sch_device_unregister +EXPORT_SYMBOL_GPL vmlinux 0xfd11eb3f vcpu_put +EXPORT_SYMBOL_GPL vmlinux 0xfd1ccb1b fuse_request_alloc +EXPORT_SYMBOL_GPL vmlinux 0xfd37d377 locks_release_private +EXPORT_SYMBOL_GPL vmlinux 0xfd7a50ea set_timer_slack +EXPORT_SYMBOL_GPL vmlinux 0xfd7f64a5 inet_twsk_purge +EXPORT_SYMBOL_GPL vmlinux 0xfe0fce2b pm_generic_suspend_noirq +EXPORT_SYMBOL_GPL vmlinux 0xfe135ba0 user_free_preparse +EXPORT_SYMBOL_GPL vmlinux 0xfe1b7470 crypto_unregister_algs +EXPORT_SYMBOL_GPL vmlinux 0xfe1bba1f virtqueue_add_inbuf +EXPORT_SYMBOL_GPL vmlinux 0xfef1a87a pci_find_next_ht_capability +EXPORT_SYMBOL_GPL vmlinux 0xfef8a166 trace_current_buffer_lock_reserve +EXPORT_SYMBOL_GPL vmlinux 0xff05fa13 vring_interrupt +EXPORT_SYMBOL_GPL vmlinux 0xff20f2d8 ping_queue_rcv_skb +EXPORT_SYMBOL_GPL vmlinux 0xff37a686 kvm_vcpu_write_guest +EXPORT_SYMBOL_GPL vmlinux 0xff5a8cfe cn_del_callback +EXPORT_SYMBOL_GPL vmlinux 0xff633558 vprintk_default +EXPORT_SYMBOL_GPL vmlinux 0xff9d44db pm_runtime_set_memalloc_noio +EXPORT_SYMBOL_GPL vmlinux 0xffa8d5c5 fuse_dev_release +EXPORT_SYMBOL_GPL vmlinux 0xffb74af4 fl6_update_dst only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/s390x/generic.compiler +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/s390x/generic.compiler @@ -0,0 +1 @@ +GCC: (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/debian.master/abi/4.4.0-93.116/s390x/generic.modules +++ linux-kvm-4.4.0/debian.master/abi/4.4.0-93.116/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-kvm-4.4.0.orig/drivers/acpi/glue.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/base/power/sysfs.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/base/power/wakeup.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/block/virtio_blk.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/block/xen-blkback/blkback.c +++ linux-kvm-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; } only in patch2: unchanged: --- linux-kvm-4.4.0.orig/drivers/block/xen-blkback/xenbus.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/bluetooth/btintel.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/bluetooth/btintel.h +++ linux-kvm-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-kvm-4.4.0.orig/drivers/char/ipmi/ipmi_watchdog.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/char/tpm/tpm_atmel.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/char/tpm/tpm_i2c_atmel.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/char/tpm/tpm_i2c_infineon.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/char/tpm/tpm_i2c_nuvoton.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/char/tpm/tpm_infineon.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/char/tpm/tpm_nsc.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/crypto/caam/key_gen.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/dma/ioat/hw.h +++ linux-kvm-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-kvm-4.4.0.orig/drivers/dma/ioat/init.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/dma/ti-dma-crossbar.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/gpu/drm/msm/adreno/adreno_gpu.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/gpu/drm/msm/msm_ringbuffer.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/gpu/drm/nouveau/nvkm/subdev/bar/gf100.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_crtc.c +++ linux-kvm-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_crtc.c @@ -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-kvm-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_crtc.h +++ linux-kvm-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-kvm-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_drv.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_hdmicon.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_kms.c +++ linux-kvm-4.4.0/drivers/gpu/drm/rcar-du/rcar_du_kms.c @@ -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-kvm-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_lvdscon.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/gpu/drm/rcar-du/rcar_du_vgacon.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/gpu/drm/virtio/virtgpu_fb.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/iio/adc/vf610_adc.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/iio/light/tsl2563.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/infiniband/core/uverbs_cmd.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/irqchip/irq-keystone.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/isdn/i4l/isdn_common.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/isdn/i4l/isdn_net.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/isdn/i4l/isdn_ppp.c +++ linux-kvm-4.4.0/drivers/isdn/i4l/isdn_ppp.c @@ -2364,7 +2364,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-kvm-4.4.0.orig/drivers/mailbox/mailbox.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/media/i2c/s5c73m3/s5c73m3-ctrls.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/media/pci/cx88/cx88-cards.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/media/pci/cx88/cx88-video.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/media/pci/saa7134/saa7134-i2c.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/media/pci/saa7164/saa7164-bus.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/media/platform/davinci/vpfe_capture.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/media/platform/s5p-jpeg/jpeg-core.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/media/rc/imon.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/media/rc/ir-lirc-codec.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/misc/enclosure.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/bonding/bond_3ad.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/ethernet/aurora/nb8800.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/ethernet/mellanox/mlx4/icm.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/ethernet/realtek/r8169.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/irda/mcs7780.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/phy/dp83867.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/phy/micrel.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/phy/phy_device.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/usb/kaweth.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/wireless/ath/ath10k/htt_rx.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/wireless/ath/ath10k/pci.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/wireless/ath/ath10k/wmi-ops.h +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/wireless/ath/ath9k/ar9003_phy.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/wireless/ath/ath9k/tx99.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/wireless/ath/wil6210/main.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/xen-netback/common.h +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/xen-netback/interface.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/net/xen-netback/netback.c +++ linux-kvm-4.4.0/drivers/net/xen-netback/netback.c @@ -687,6 +687,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 +1185,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 +1203,7 @@ mod_timer(&queue->credit_timeout, next_credit); queue->credit_window_start = next_credit; + queue->rate_limited = true; return true; } only in patch2: unchanged: --- linux-kvm-4.4.0.orig/drivers/nfc/fdp/i2c.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/nfc/nfcmrvl/fw_dnld.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/nfc/nfcmrvl/main.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/nfc/nfcmrvl/uart.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/nvdimm/btt.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/nvmem/imx-ocotp.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/of/device.c +++ linux-kvm-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 @@ -287,3 +288,4 @@ return 0; } +EXPORT_SYMBOL_GPL(of_device_uevent_modalias); only in patch2: unchanged: --- linux-kvm-4.4.0.orig/drivers/parisc/ccio-dma.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/parisc/dino.c +++ linux-kvm-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; }) /* only in patch2: unchanged: --- linux-kvm-4.4.0.orig/drivers/parisc/lba_pci.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/parisc/sba_iommu.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/pci/pci-driver.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/pinctrl/freescale/pinctrl-mxs.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/pinctrl/meson/pinctrl-meson8b.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/pinctrl/samsung/pinctrl-exynos.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/pinctrl/sh-pfc/pfc-r8a7791.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/pinctrl/sunxi/pinctrl-sun4i-a10.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/pinctrl/sunxi/pinctrl-sun8i-a83t.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/scsi/fnic/fnic.h +++ linux-kvm-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-kvm-4.4.0.orig/drivers/scsi/fnic/fnic_scsi.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/scsi/ses.c +++ linux-kvm-4.4.0/drivers/scsi/ses.c @@ -546,7 +546,6 @@ ecomp = &edev->component[components++]; if (!IS_ERR(ecomp)) { - ses_get_power_status(edev, ecomp); if (addl_desc_ptr) ses_process_descriptor( ecomp, only in patch2: unchanged: --- linux-kvm-4.4.0.orig/drivers/scsi/snic/snic_main.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/spi/spi-dw.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/spmi/spmi.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/staging/comedi/comedi_fops.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/staging/iio/resolver/ad2s1210.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/staging/rtl8188eu/os_dep/usb_intf.c +++ linux-kvm-4.4.0/drivers/staging/rtl8188eu/os_dep/usb_intf.c @@ -47,6 +47,7 @@ {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 */ {} /* Terminating entry */ }; only in patch2: unchanged: --- linux-kvm-4.4.0.orig/drivers/staging/vt6656/main_usb.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/target/iscsi/iscsi_target_erl0.c +++ linux-kvm-4.4.0/drivers/target/iscsi/iscsi_target_erl0.c @@ -930,8 +930,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 +944,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 +958,5 @@ spin_unlock_bh(&conn->state_lock); iscsit_handle_connection_cleanup(conn); + *conn_freed = true; } only in patch2: unchanged: --- linux-kvm-4.4.0.orig/drivers/target/iscsi/iscsi_target_erl0.h +++ linux-kvm-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-kvm-4.4.0.orig/drivers/target/iscsi/iscsi_target_nego.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/target/iscsi/iscsi_target_parameters.h +++ linux-kvm-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-kvm-4.4.0.orig/drivers/target/target_core_fabric_configfs.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/tty/hvc/hvc_console.h +++ linux-kvm-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-kvm-4.4.0.orig/drivers/tty/hvc/hvc_irq.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/tty/hvc/hvc_opal.c +++ linux-kvm-4.4.0/drivers/tty/hvc/hvc_opal.c @@ -224,6 +224,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-kvm-4.4.0.orig/drivers/usb/dwc3/dwc3-st.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/usb/gadget/function/f_hid.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/usb/host/pci-quirks.c +++ linux-kvm-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, }; @@ -132,6 +143,11 @@ pinfo->sb_type.gen = AMD_CHIPSET_SB700; else if (rev >= 0x40 && rev <= 0x4f) pinfo->sb_type.gen = AMD_CHIPSET_SB800; + } + pinfo->smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD, + 0x145c, NULL); + if (pinfo->smbus_dev) { + pinfo->sb_type.gen = AMD_CHIPSET_TAISHAN; } else { pinfo->smbus_dev = pci_get_device(PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_HUDSON2_SMBUS, NULL); @@ -251,11 +267,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 +430,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); only in patch2: unchanged: --- linux-kvm-4.4.0.orig/drivers/usb/host/pci-quirks.h +++ linux-kvm-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-kvm-4.4.0.orig/drivers/usb/renesas_usbhs/common.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/usb/storage/isd200.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/usb/usbip/stub_main.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/usb/usbip/stub_tx.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/vfio/pci/vfio_pci_rdwr.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/vfio/vfio.c +++ linux-kvm-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-kvm-4.4.0.orig/drivers/video/fbdev/cobalt_lcdfb.c +++ linux-kvm-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-kvm-4.4.0.orig/fs/ceph/dir.c +++ linux-kvm-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-kvm-4.4.0.orig/fs/fcntl.c +++ linux-kvm-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-kvm-4.4.0.orig/fs/nfs/Kconfig +++ linux-kvm-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-kvm-4.4.0.orig/fs/nfs/flexfilelayout/flexfilelayoutdev.c +++ linux-kvm-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-kvm-4.4.0.orig/include/linux/cpuset.h +++ linux-kvm-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,12 +31,14 @@ 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); @@ -104,7 +107,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 +121,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); only in patch2: unchanged: --- linux-kvm-4.4.0.orig/include/linux/device.h +++ linux-kvm-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-kvm-4.4.0.orig/include/linux/fcntl.h +++ linux-kvm-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-kvm-4.4.0.orig/include/linux/list_lru.h +++ linux-kvm-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-kvm-4.4.0.orig/include/linux/phy.h +++ linux-kvm-4.4.0/include/linux/phy.h @@ -785,6 +785,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-kvm-4.4.0.orig/include/linux/pstore_ram.h +++ linux-kvm-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-kvm-4.4.0.orig/include/linux/slab.h +++ linux-kvm-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-kvm-4.4.0.orig/include/linux/vfio.h +++ linux-kvm-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-kvm-4.4.0.orig/include/linux/workqueue.h +++ linux-kvm-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 << 18, /* 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-kvm-4.4.0.orig/include/net/sctp/sctp.h +++ linux-kvm-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)))) only in patch2: unchanged: --- linux-kvm-4.4.0.orig/include/target/iscsi/iscsi_target_core.h +++ linux-kvm-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-kvm-4.4.0.orig/kernel/extable.c +++ linux-kvm-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-kvm-4.4.0.orig/lib/Kconfig.debug +++ linux-kvm-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-kvm-4.4.0.orig/mm/mempool.c +++ linux-kvm-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-kvm-4.4.0.orig/mm/mprotect.c +++ linux-kvm-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-kvm-4.4.0.orig/mm/mremap.c +++ linux-kvm-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-kvm-4.4.0.orig/mm/rmap.c +++ linux-kvm-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-kvm-4.4.0.orig/net/core/dev_ioctl.c +++ linux-kvm-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-kvm-4.4.0.orig/net/dccp/feat.c +++ linux-kvm-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-kvm-4.4.0.orig/net/ipv4/syncookies.c +++ linux-kvm-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-kvm-4.4.0.orig/net/ipv6/syncookies.c +++ linux-kvm-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-kvm-4.4.0.orig/net/netfilter/nf_conntrack_extend.c +++ linux-kvm-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-kvm-4.4.0.orig/net/netfilter/nf_conntrack_netlink.c +++ linux-kvm-4.4.0/net/netfilter/nf_conntrack_netlink.c @@ -45,6 +45,8 @@ #include #include #include +#include +#include #ifdef CONFIG_NF_NAT_NEEDED #include #include @@ -1798,6 +1800,8 @@ nf_ct_tstamp_ext_add(ct, GFP_ATOMIC); nf_ct_ecache_ext_add(ct, 0, 0, GFP_ATOMIC); nf_ct_labels_ext_add(ct); + nfct_seqadj_ext_add(ct); + nfct_synproxy_ext_add(ct); /* we must add conntrack extensions before confirmation. */ ct->status |= IPS_CONFIRMED; only in patch2: unchanged: --- linux-kvm-4.4.0.orig/net/nfc/core.c +++ linux-kvm-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-kvm-4.4.0.orig/net/nfc/llcp_sock.c +++ linux-kvm-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-kvm-4.4.0.orig/net/nfc/nci/core.c +++ linux-kvm-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-kvm-4.4.0.orig/net/nfc/netlink.c +++ linux-kvm-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-kvm-4.4.0.orig/net/rds/tcp_listen.c +++ linux-kvm-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-kvm-4.4.0.orig/net/sched/act_ipt.c +++ linux-kvm-4.4.0/net/sched/act_ipt.c @@ -42,8 +42,8 @@ return PTR_ERR(target); t->u.kernel.target = target; + memset(&par, 0, sizeof(par)); par.table = table; - par.entryinfo = NULL; par.target = target; par.targinfo = t->data; par.hook_mask = hook; only in patch2: unchanged: --- linux-kvm-4.4.0.orig/net/sched/sch_mq.c +++ linux-kvm-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-kvm-4.4.0.orig/net/wireless/util.c +++ linux-kvm-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-kvm-4.4.0.orig/scripts/checkpatch.pl +++ linux-kvm-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-kvm-4.4.0.orig/security/keys/encrypted-keys/encrypted.c +++ linux-kvm-4.4.0/security/keys/encrypted-keys/encrypted.c @@ -428,7 +428,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)) { only in patch2: unchanged: --- linux-kvm-4.4.0.orig/sound/soc/codecs/nau8825.c +++ linux-kvm-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-kvm-4.4.0.orig/sound/soc/codecs/nau8825.h +++ linux-kvm-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-kvm-4.4.0.orig/sound/soc/codecs/tlv320aic3x.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/include/linux/compiler.h +++ linux-kvm-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-kvm-4.4.0.orig/tools/lib/lockdep/uinclude/linux/lockdep.h +++ linux-kvm-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-kvm-4.4.0.orig/tools/lib/traceevent/plugin_sched_switch.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/arch/x86/tests/intel-cqm.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/arch/x86/util/dwarf-regs.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/bench/numa.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/builtin-script.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/builtin-top.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/builtin-trace.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/tests/parse-events.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/ui/browser.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/ui/browsers/annotate.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/util/intel-pt-decoder/intel-pt-pkt-decoder.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/util/scripting-engines/Build +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/util/strfilter.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/util/string.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/util/thread.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/perf/util/thread_map.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/testing/selftests/capabilities/test_execve.c +++ linux-kvm-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-kvm-4.4.0.orig/tools/testing/selftests/memory-hotplug/mem-on-off-test.sh +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/COPYING +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/ChangeLog +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/Kconfig +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/Makefile +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/README.TXT +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/RELEASE.TXT +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt.c +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_compat.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_dcb.c +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_dcb.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_ethtool.c +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_ethtool.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_fw_hdr.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_hsi.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_nvm_defs.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_ptp.c +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_ptp.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_sriov.c +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_sriov.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_ulp.c +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_ulp.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_xdp.c +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/bnxt/bnxt_xdp.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/Kconfig +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/Makefile +++ linux-kvm-4.4.0/ubuntu/opennsl/Makefile @@ -0,0 +1,42 @@ +# +# Makefile for OpenNSL drivers +# + +SDK=OpenNSL/sdk-6.4.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-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/LEGAL_TERMS +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/Legal/LICENSE-Apache2 +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/README.md +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/RELEASE +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/RELEASE @@ -0,0 +1 @@ +opennsl-3.1.0.17 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/commdefs.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/compiler.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/driver.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/sal/driver.h @@ -0,0 +1,70 @@ +/********************************************************************* +* +* (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 driver.h +* +* \brief This file contains utility functions called externally +* +**********************************************************************/ +#ifndef DRIVER_H +#define DRIVER_H + +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 */ +} 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 To get platform boot flags + * + * \return unsigned int Boot flags + *****************************************************************************/ +extern unsigned int opennsl_driver_boot_flags_get(void); + +/*****************************************************************//** +* \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); + +extern char *readline(const char *prompt); +#endif /* DRIVER_H */ only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/types.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/sal/version.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/sal/version.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 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/bitop.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/bitop.h @@ -0,0 +1,135 @@ +/********************************************************************* + * + * (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)) + +/* Declare bit array _n of size _max bits */ +#define SHR_BITDCLNAME(_n, _max) SHR_BITDCL _n[_SHR_BITDCLSIZE(_max)] + +/* (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_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 _e bits from bit array _c offset _d to bit array _a offset _b + * There should be no overlap between source _c and desstination _a + * _a[_b:_b + _e] = _c[_d:_d + _e] + */ +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(_a, _b, _c, _d, _e) \ + (shr_bitop_range_copy(_a, _b, _c, _d, _e)) + +/* 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/error.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/error.h @@ -0,0 +1,118 @@ +/********************************************************************* + * + * (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_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_COUNT /* last, as always */ +} _shr_switch_event_t; + +#endif /* !_SHR_ERROR_H */ only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/gport.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/gport.h @@ -0,0 +1,159 @@ +/********************************************************************* + * + * (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: gport.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_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_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_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_COSQ 30 /* cosq gport */ +#define _SHR_GPORT_TYPE_PROFILE 40 +#define _SHR_GPORT_TYPE_DESTMOD_QUEUE_GROUP 41 /* DMVOQ gport */ + +#define _SHR_COSQ_GPORT_COMMON_CORE_BITS 3 +#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 + +#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_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_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_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_IS_MCAST_QUEUE_GROUP(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_MCAST_QUEUE_GROUP) + +#define _SHR_GPORT_IS_COSQ(_gport) \ + (((_gport) >> _SHR_GPORT_TYPE_SHIFT) == _SHR_GPORT_TYPE_COSQ) + +#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) + +#endif /* !_SHR_GPORT_H */ only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/pbmp.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/pbmp.h @@ -0,0 +1,280 @@ +/********************************************************************* + * + * (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: 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 +#define _SHR_PBMP_PORT_MAX 256 + +#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_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_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) + +#endif /* !_SHR_PBMP_H */ only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/phyconfig.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/phyreg.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/port.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/port.h @@ -0,0 +1,176 @@ +/********************************************************************* + * + * (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: 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_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; + +#endif /* !_SHR_PORT_H */ only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/port_ability.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/port_ability.h @@ -0,0 +1,269 @@ +/********************************************************************* + * + * (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: 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 fcmap; + _shr_pa_encap_t encap; + _shr_port_mode_t fec; +} _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 (1 << 0) /* FEC ability support */ +#define _SHR_PA_FEC_REQUEST (1 << 1) /* FEC 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_MEDIUM_* + * Purpose: + * Defines for port medium modes. + */ +#define _SHR_PA_MEDIUM_COPPER (1 << 0) +#define _SHR_PA_MEDIUM_FIBER (1 << 1) + +/* + * 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 */ + +#define _SHR_PA_FCMAP (1 << 0) +#define _SHR_PA_FCMAP_FCMAC_LOOPBACK (1 << 1) +#define _SHR_PA_FCMAP_AUTONEG (1 << 2) +#define _SHR_PA_FCMAP_2GB (1 << 3) +#define _SHR_PA_FCMAP_4GB (1 << 4) +#define _SHR_PA_FCMAP_8GB (1 << 5) +#define _SHR_PA_FCMAP_16GB (1 << 6) + +#endif /* !_SHR_PORTABILITY_H */ only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/portmode.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/rx.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/rx.h @@ -0,0 +1,448 @@ +/********************************************************************* + * + * (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: rx.h + * Details: Packet Receive Reason Types + ********************************************************************/ + +#ifndef _SHR_RX_H_ +#define _SHR_RX_H_ + +#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, /* MPLS sent 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_REASON_COUNT = 158 /* 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" \ +} + +/* + * 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/switch.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/switch.h @@ -0,0 +1,32 @@ +/********************************************************************* + * + * (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 */ + +#endif /* !_SHR_SWITCH_H */ only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/types.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/include/shared/types.h @@ -0,0 +1,53 @@ +/********************************************************************* + * + * (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_ + +typedef int8 _shr_dma_chan_t; + +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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/include/shared/util.h +++ linux-kvm-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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/ibde.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/ibde.h @@ -0,0 +1,152 @@ +/* + * 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 2012/11/02 23:10:59 bpeela Exp $ + * $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_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); + uint32 *(*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); + +} ibde_t; + + +/* System BDE */ +extern ibde_t *bde; + + +#endif /* __IBDE_H__ */ only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/kcom.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/kcom.h @@ -0,0 +1,512 @@ +/* + * 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 2012/10/24 09:55:42 mlarsen Exp $ + * $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_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) + +#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]; + 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; + + + +#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; + +/* + * 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_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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/sal/core/sync.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2005/06/25 22:26:59 mlarsen Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/sal/core/thread.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2005/06/25 22:26:59 mlarsen Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/sal/types.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2013/04/06 06:19:14 mlarsen Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/sdk_config.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2012/03/02 15:13:56 yaronm Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/soc/cmic.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2008/10/16 09:41:21 mlarsen Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/soc/devids.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/include/soc/devids.h @@ -0,0 +1,1692 @@ +/* + * 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) 2016 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 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 BCM56930_DEVICE_ID 0xb930 +#define BCM56930_A0_REV_ID 1 +#define BCM56930_B0_REV_ID 0x11 +#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 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 BCM56760_DEVICE_ID 0xb760 +#define BCM56760_A0_REV_ID 1 +#define BCM56760_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 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 BCM56968_DEVICE_ID 0xb968 +#define BCM56968_A0_REV_ID 1 +#define BCM56968_B0_REV_ID 0x11 +#define BCM56968_B1_REV_ID 0x12 + +#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 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 PETRAB_DEVICE_ID 0xa100 +#define PETRAB_A0_REV_ID 0x0001 +#define BCM88640_DEVICE_ID (PETRAB_DEVICE_ID) +#define BCM88640_A0_REV_ID (PETRAB_A0_REV_ID) + +#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 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 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 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 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 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 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_A0_REV_ID QAX_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 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 JERICHO2_DEVICE_ID 0x8850 +#define JERICHO2_P3_REV_ID 0x0001 +#define BCM88850_DEVICE_ID JERICHO2_DEVICE_ID +#define BCM88850_P3_REV_ID JERICHO2_P3_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 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Make.config +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2011/09/08 06:37:31 mlarsen Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Make.depend +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2011/04/12 15:35:33 yshtil Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Make.kernlib +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Make.kernlib @@ -0,0 +1,67 @@ +# +# 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 2011/08/21 07:18:42 bhanup Exp $ +# $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) + $(CC) -shared -Wl,-soname,${targetlibsoname} -o ${targetlibso} ${BOBJS} -lc +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} + +distclean:: clean + only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Make.lib +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2010/11/18 00:27:38 yshtil Exp $ +# $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} -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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Make.linux +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2012/03/02 15:09:07 yaronm Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Make.subdirs +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2010/06/22 15:23:57 alai Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Make.tools +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2011/09/06 21:30:39 yshtil Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-gto-2_6 +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-gto-2_6 @@ -0,0 +1,267 @@ +# +# 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 2013/03/23 00:35:18 gururaj Exp $ +# $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_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)/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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-kernel +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2012/06/25 20:23:24 assafz Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-kernel-2_6 +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2012/10/22 01:56:23 alai Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-kmodule +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-kmodule @@ -0,0 +1,79 @@ +# +# 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 2013/01/10 01:00:49 bpeela Exp $ +# $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 + +# 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 $(KERNDIR) 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-x86-common-2_6 +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-x86-common-2_6 @@ -0,0 +1,43 @@ +# +# 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 2011/08/23 02:32:54 mlarsen Exp $ +# $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\" +CFGFLAGS += -DSAL_BDE_DMA_MEM_DEFAULT=16 + +# 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-x86-generic-common-2_6 +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2011/08/23 01:35:32 mlarsen Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-x86-smp_generic_64-2_6 +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/make/Makefile.linux-x86-smp_generic_64-2_6 @@ -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: Makefile.linux-x86-smp_generic_64-2_6,v 1.5 2012/02/21 21:36:45 miyarn Exp $ +# $Copyright: (c) 2008 Broadcom Corp. +# All Rights Reserved.$ + +CFGFLAGS += -DLONGS_ARE_64BITS +CFGFLAGS += -DPTRS_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 -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 + +ifeq ($(LINUX_MAKE_SHARED_LIB),1) +KFLAGS += -fPIC -mcmodel=small +else +KFLAGS += -mcmodel=kernel +endif + +include ${SDK}/make/Makefile.linux-x86-common-2_6 only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/include/linux-bde.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/include/linux-bde.h @@ -0,0 +1,257 @@ +/* + * 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 2013/01/30 16:52:27 gili Exp $ + * $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 + +#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 some physical addresses for + * the userland code to mmap. + */ +extern int lkbde_get_dma_info(uint32 *pbase, uint32 *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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/include/mpool.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2005/01/17 19:53:06 csm Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/kernel/Makefile +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2013/01/10 01:00:43 bpeela Exp $ +# $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 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/kernel/linux-kernel-bde.c +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/kernel/linux-kernel-bde.c @@ -0,0 +1,5268 @@ +/* + * 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 2013/09/20 18:03:25 bpeela Exp $ + * $Copyright: (c) 2005 Broadcom Corp. + * All Rights Reserved.$ + * + * Linux Kernel BDE + * + * + * 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 +#include +#include + +#include "linux_shbde.h" + +#ifdef BCM_PLX9656_LOCAL_BUS +#include +#endif + +#ifdef BCM_ROBO_SUPPORT +/* robo/et related header files */ +#include + +#include + +#if defined(KEYSTONE) +#include +#include +#include +#include +#elif defined(IPROC_CMICD) +#include +#include +#include +#include +#else /* BCM4704 */ +#include +#include +#endif +#endif /* BCM_ROBO_SUPPORT */ + +/* 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 + +MODULE_AUTHOR("Broadcom Corporation"); +MODULE_DESCRIPTION("Kernel BDE"); +MODULE_LICENSE("GPL"); + +/* 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)"); + +/* 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 interrupts */ +int usemsi = -1; +LKM_MOD_PARAM(usemsi, "i", int, 0); +MODULE_PARM_DESC(usemsi, +"Use MSI 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 MEM_MAP_RESERVE mem_map_reserve +#define MEM_MAP_UNRESERVE mem_map_unreserve +#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 MEM_MAP_RESERVE SetPageReserved +#define MEM_MAP_UNRESERVE ClearPageReserved +#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 */ + +#ifndef DMA_BIT_MASK +#define DMA_BIT_MASK(n) (((n) == 64) ? ~0ULL : ((1ULL<<(n))-1)) +#endif + +#ifndef GFP_DMA32 +#define GFP_DMA32 0 +#endif + +/* 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 + +#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 + +#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) +#define REMAP_DMA_NONCACHED +#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 bus_no; + int be_pio; + int use_msi; + + 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; + +#if defined(BCM_PETRA_SUPPORT) || defined(BCM_DFE_SUPPORT) + void *cpu_address; +#endif + + /* 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)) + +#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 + +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 */ + +/* Flags for memory allocations */ +#ifdef SAL_BDE_XLP +#define KMALLOC(size, flags) __kmalloc(size, flags) +static int mem_flags = GFP_ATOMIC | GFP_KERNEL | GFP_DMA; +#else +#define KMALLOC(size, flags) kmalloc(size, flags) +static int mem_flags = GFP_ATOMIC | GFP_DMA32; +#endif + +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) + +#include + +static int +petra_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__ + ctrl->cpu_address = IOREMAP(0x18000000, 0x4000000); +#else + ctrl->cpu_address = IOREMAP(0xe0000000, 0x100000); +#endif + + if ((ctrl->bde_dev.device == PCP_PCI_DEVICE_ID)) { + ctrl->bde_dev.device = PETRAB_DEVICE_ID; + ctrl->bde_dev.rev = PETRAB_A0_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); + +#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 + +static int +iproc_cmicd_probe(struct platform_device *pldev) +{ + bde_ctrl_t *ctrl; + uint32 size, dev_rev_id; + struct resource *memres, *irqres; + + 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 + + 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; +} + +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, + }, +}; + +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); + } +} + +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; + } + +} + +#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, 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, 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 }, +#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, 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, 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, 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, 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, BCM88950_DEVICE_ID, PCI_ANY_ID, PCI_ANY_ID }, + { 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 }, +#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 }, + { 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){ + return i; + } + } + } + } + return -1; +} + + +/* + * 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_9656: + case PCI_DEVICE_ID_PLX_9056: + 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->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)) { + /* BCM58525 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 (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 BCM88950_DEVICE_ID: + case BCM88953_DEVICE_ID: + case BCM88954_DEVICE_ID: + case BCM88955_DEVICE_ID: + case BCM88956_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 */ + + /* 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; + } + } + + /* 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 PETRAB_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) { + 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 iProc PCI-AXI bridge */ + if (iproc && ctrl->bde_dev.base_address1) { + void *iproc_regs; + shbde_iproc_config_t iproc_config, *icfg = &iproc_config; + + /* Mapped iProc regs in PCI BAR 0 */ + iproc_regs = (void *)ctrl->bde_dev.base_address1; + + /* iProc configuration parameters */ + memset(icfg, 0, sizeof(*icfg)); + shbde_iproc_config_init(icfg, ctrl->bde_dev.device, ctrl->bde_dev.rev); + 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); + } + + + /* + * 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%d 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) { + free_irq(ctrl->iLine, ctrl); +#if defined(CONFIG_PCI_MSI) + if (ctrl->use_msi) { + pci_disable_msi(ctrl->pci_device); + } +#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}, + { 0, 0, 0, 0, 0 }, +}; +#endif + + +/* 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 *_dma_vbase = NULL; +static uint32_t _dma_pbase = 0; +static int _use_himem = 0; +static LIST_HEAD(_dma_seg); + +/* + * 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 (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(0, _dma_mem_size, _dma_vbase, _dma_pbase); + } + break; +#endif /* _SIMPLE_MEMORY_ALLOCATION_ */ + + case ALLOC_TYPE_CHUNK: { + struct list_head *pos, *tmp; + 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) >> 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; + } + _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(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); + 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); + } + + if (debug >= 1) gprintk("_alloc_mpool: _dma_vbase:%p pbase:%lx allocated:%lx dmaalloc:%d\n", _dma_vbase, pbase, (unsigned long)size, dmaalloc); + if (((pbase + size) >> 16) > DMA_BIT_MASK(16)) { + _dma_vbase = NULL; + gprintk("DMA memory allocated at 0x%lx size 0x%lx is beyond the 4GB limit and not supported.\n", pbase, (unsigned long)size); + _pgcleanup(); + return; + } + _dma_pbase = pbase; +#ifdef REMAP_DMA_NONCACHED + _dma_vbase = IOREMAP(_dma_pbase, size); +#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) +#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 + + +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; + } + 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 */ +#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); + 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; +#if defined(CONFIG_PCI_MSI) + if (use_msi < 0) { + /* Compilation flag determines default value */ +#if defined(BDE_LINUX_USE_MSI_INTERRUPT) + use_msi = 1; +#else + use_msi = 0; +#endif + } +#else /* !defined(CONFIG_PCI_MSI) */ + if (use_msi != 0) { + if (use_msi > 0) { + /* Warn if invalid configuration */ + gprintk("MSI interrupts not supported by kernel\n"); + } + use_msi = 0; + } +#endif /* defined(CONFIG_PCI_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) + petra_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 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); + } + } + + /* + * 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; + + 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; + + } + +#ifdef IPROC_CMICD + if (iproc_has_cmicd()) { + 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); + } + } + } +#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); + 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" : ""); + + 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; + unsigned long pool_start = _dma_pbase; + unsigned long pool_end = pool_start + _dma_mem_size; + + if (phys_addr < pool_start || (phys_addr + size) > pool_end) { + gprintk("mmap range 0x%lx-0x%lx outside DMA pool 0x%lx-0x%lx\n", + phys_addr, phys_addr + size, pool_start, pool_end); + 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; + + 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 { + return ((VOL uint32_t *)_devices[d].bde_dev.base_address)[addr / 4]; + } +} + +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 { + ((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 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; +} + +static void +_sfree(int d, void *ptr) +{ + if (_dma_mem_size) { + return mpool_free(_dma_pool, ptr); + } + if (_pgfree(ptr) < 0) { + kfree(ptr); + } +} + +static 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; +} + +static 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; + + +} + +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; + + 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 (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; +#if defined(CONFIG_PCI_MSI) + if (ctrl->use_msi && pci_enable_msi(ctrl->pci_device) == 0) { + irq_flags = 0; + ctrl->iLine = ctrl->pci_device->irq; + } +#endif + if (request_irq(ctrl->iLine, + _isr, + irq_flags, + LINUX_KERNEL_BDE_NAME, + ctrl) < 0) { + gprintk("could not request irq %d for device %d\n", + ctrl->pci_device->irq, d); + + ctrl->isr = NULL; + ctrl->isr_data = NULL; + ctrl->isr2 = NULL; + ctrl->isr2_data = NULL; +#if defined(CONFIG_PCI_MSI) + if (ctrl->use_msi && irq_flags == 0) { + pci_disable_msi(ctrl->pci_device); + } +#endif + return -1; + } + } + + return 0; +} + +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 (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) { + free_irq(ctrl->iLine, ctrl); +#if defined(CONFIG_PCI_MSI) + if (ctrl->use_msi) { + pci_disable_msi(ctrl->pci_device); + } +#endif + } + + return 0; +} + +static 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 virt_to_bus(vaddr); +} + +static uint32_t * +_p2l(int d, sal_paddr_t paddr) +{ + if (_dma_mem_size) { + /* dma memory is a contiguous block */ + return paddr ? (void *)_dma_vbase + (paddr - _dma_pbase) : NULL; + } + return bus_to_virt(paddr); +} + +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; +} + +#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 + + 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 + + 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)) +int +lkbde_cpu_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 = ctrl->cpu_address + addr; + + *((uint32_t*)full_addr) = *buf; + + return 0; +} + +int +lkbde_cpu_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 = ctrl->cpu_address + addr; + + *buf = *((uint32_t*)full_addr); + 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 PETRAB_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 BCM88950_DEVICE_ID: + case BCM88953_DEVICE_ID: + case BCM88954_DEVICE_ID: + case BCM88955_DEVICE_ID: + case BCM88956_DEVICE_ID: + case ACP_PCI_DEVICE_ID: + case BCM88650_DEVICE_ID: + + case BCM88670_DEVICE_ID: + case BCM88671_DEVICE_ID: + case BCM88671M_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 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 BCM88470_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, " + "ctrl->cpu_address=%p\n", + ctrl->dev_type, (unsigned long)ctrl->phys_address, + ctrl->cpu_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, +}; + +/* + * 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_vbase != NULL) { + _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 + * + */ + + +/* + * 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); +} + +/* + * 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; +} + +int +lkbde_get_dma_info(uint32_t *pbase, uint32_t *size) +{ + if (_dma_pbase == 0) { + if (_dma_mem_size == 0) { + _dma_mem_size = DMA_MEM_DEFAULT; + } + _alloc_mpool(_dma_mem_size); + } + *pbase = _dma_pbase; + *size = _dma_mem_size; + 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(kmalloc_giant); +LKM_EXPORT_SYM(kfree_giant); +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_dma_info); +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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/kernel/linux_shbde.c +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/kernel/linux_shbde.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/shared/mpool.c +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2012/03/02 15:53:32 yaronm Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/user/kernel/Makefile +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2008/10/16 09:41:22 mlarsen Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.c +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.c @@ -0,0 +1,1144 @@ +/* + * 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 2013/06/14 22:31:44 mlarsen Exp $ + * $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)) + +/* 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 { + uint32 total_size; /* Total size of the pool in MB */ + uint32 pbase; /* Physical base address of the DMA pool */ + 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 +_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" }, + { 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; + + 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: + 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 BCM88673_DEVICE_ID: + case BCM88674_DEVICE_ID: + case BCM88675_DEVICE_ID: + case BCM88675M_DEVICE_ID: + case BCM88676_DEVICE_ID: + case BCM88676M_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 BCM88770_DEVICE_ID: + case BCM88773_DEVICE_ID: + case BCM88774_DEVICE_ID: + case BCM88775_DEVICE_ID: + case BCM88776_DEVICE_ID: + case BCM88470_DEVICE_ID: + case BCM88950_DEVICE_ID: + case BCM88953_DEVICE_ID: + case BCM88954_DEVICE_ID: + case BCM88955_DEVICE_ID: + case BCM88956_DEVICE_ID: + ctrl->isr = (isr_f)_cmicd_interrupt; + break; + default: + 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; + uint32 pbase, 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(&pbase, &dmasize); + + memset(&_dma_pool, 0, sizeof(_dma_pool)); + _dma_pool.pbase = 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, uint32 *pbase, uint32* 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; + } + } + + *pbase = _dma_pool.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; + uint32 pbase, 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: + 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: + io.d0 = _devices[io.dev].dev_type; + break; + case LUBDE_GET_BUS_FEATURES: + user_bde->pci_bus_features(io.dev, (int *) &io.d0, (int *) &io.d1, + (int *) &io.d2); + break; + case LUBDE_PCI_CONFIG_PUT32: + 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 (_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: + inst_id = io.dev; + if (_bde_multi_inst){ + _dma_resource_get(inst_id, &pbase, &size); + } else { + lkbde_get_dma_info(&pbase, &size); + } + io.d0 = pbase; + io.d1 = size; + /* Optionally enable DMA mmap via /dev/linux-kernel-bde */ + io.d2 = USE_LINUX_BDE_MMAP; + break; + case LUBDE_ENABLE_INTERRUPTS: + 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 (_devices[io.dev].enabled) { + user_bde->interrupt_disconnect(io.dev); + _devices[io.dev].enabled = 0; + } + break; + case LUBDE_WAIT_FOR_INTERRUPT: + 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: + io.rc = lkbde_irq_mask_set(io.dev, io.d0, io.d1, 0); + break; + case LUBDE_SPI_READ_REG: + 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 (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: + io.d1 = user_bde->read(io.dev, io.d0); + break; + case LUBDE_WRITE_REG_16BIT_BUS: + 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 (lkbde_cpu_write(io.dev, io.d0, (uint32*)io.dx.buf) == -1) { + io.rc = LUBDE_FAIL; + } + break; + } + case LUBDE_CPU_READ_REG: + { + if (lkbde_cpu_read(io.dev, io.d0, (uint32*)io.dx.buf) == -1) { + io.rc = LUBDE_FAIL; + } + break; + } + case LUBDE_CPU_PCI_REGISTER: + { + if (lkbde_cpu_pci_register(io.dev) == -1) { + io.rc = LUBDE_FAIL; + } + break; + } +#endif + case LUBDE_DEV_RESOURCE: + 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: + 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 (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: + 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/linux/user/kernel/linux-user-bde.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2013/02/25 17:46:08 mason Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/include/shbde.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/include/shbde.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: $ + * $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 + +/* 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); + +} shbde_hal_t; + +/* 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 dma_hi_bits; + unsigned int mdio_base_addr; + unsigned int pcie_phy_addr; + unsigned int adjust_pcie_preemphasis; +} shbde_iproc_config_t; + +#endif /* __SHBDE_H__ */ only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/include/shbde_iproc.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/include/shbde_mdio.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/include/shbde_pci.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/include/shbde_pci.h @@ -0,0 +1,41 @@ +/* + * 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); + +#endif /* __SHBDE_PCI_H__ */ only in patch2: unchanged: --- linux-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/shbde_iproc.c +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/shbde_iproc.c @@ -0,0 +1,414 @@ +/* + * 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 Lite w/o L3 */ + case 0xb260: /* saber2 */ + case 0xb460: /* saber2+ */ + case 0xb230: /* Dagger2 */ + icfg->iproc_ver = 7; + icfg->dma_hi_bits = 0x2; + 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); + 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; + + if (!iproc_regs) { + return -1; + } + + /* Sub-window size is 0x1000 (4K) */ + subwin_base = (addr & ~0xfff) | 0x1; + + /* Update base address for sub-window 7 */ + reg = ROFFS(iproc_regs, BAR0_PAXB_IMAP0_7); + iproc32_write(shbde, reg, subwin_base); + + /* 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; + + if (!iproc_regs) { + return; + } + + /* Sub-window size is 0x1000 (4K) */ + subwin_base = (addr & ~0xfff) | 0x1; + + /* Update base address for sub-window 7 */ + reg = ROFFS(iproc_regs, BAR0_PAXB_IMAP0_7); + iproc32_write(shbde, reg, subwin_base); + + /* Write 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/shbde_mdio.c +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/shbde_pci.c +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/bde/shared/shbde_pci.c @@ -0,0 +1,318 @@ +/* + * 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 + */ + 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 == 0x101) || (rval == 0x100)) { /* FIXME SDK-65019 SABER2_TOT_PRE_MERGE */ + *cmic_bar = 2; + } + /* Assume iProc device */ + 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/Makefile +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2006/07/10 08:07:45 ako Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/Makefile +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2012/07/17 07:39:51 mlarsen Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/bcm-knet.c +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/bcm-knet/bcm-knet.c @@ -0,0 +1,6139 @@ +/* + * 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 2013/09/25 10:02:36 mlarsen Exp $ + * $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 + +#if LINUX_VERSION_CODE <= KERNEL_VERSION(3,16,0) +#include +#endif + +#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 = 10; +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)"); + +/* 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 + +#define DBG_VERB(_s) do { if (debug & DBG_LVL_VERB) gprintk _s; } while (0) +#define DBG_DCB(_s) do { if (debug & DBG_LVL_DCB) 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) + +/* 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) */ + +#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 2 +#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 intr_miss; /* Completed DCBs w/o interrupt (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 PREV_IDX(_cur, _max) (((_cur) == 0) ? (_max) - 1 : (_cur) - 1) + +#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) + +#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; + 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(("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(("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(("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(("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 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%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) +{ + DBG_DCB(("%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 idx; + char str[128]; + + if ((debug & DBG_LVL_PDMP) == 0) { + 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; + DBG_DCB(("Start API Rx DMA, first DCB @ 0x%08x (%d DCBs).\n", + (uint32_t)dcb_chain->dcb_dma, dcb_chain->dcb_cnt)); + if (start_dma) { + 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(("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); +} + +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(("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(("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(("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(("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(("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(("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(("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(("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 +} + +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; + + 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; + 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]); + bkn_dump_pkt(pkt, 32); + 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; + } + + pktlen = dcb[sinfo->dcb_wsize-1] & SOC_DCB_KNET_COUNT_MASK; + + /* 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 (filter->kf.flags & KCOM_FILTER_F_STRIP_TAG) { + /* Strip the VLAN tag */ + DBG_FLTR(("Strip VLAN tag\n")); + for (idx = 11; idx >= 0; idx--) { + pkt[idx+4] = pkt[idx]; + } + pktlen -= 4; + pkt += 4; + } + skb_copy_to_linear_data(skb, pkt, pktlen); + 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); + } + if (filter->kf.dest_proto) { + skb->protocol = filter->kf.dest_proto; + } else { + skb->protocol = eth_type_trans(skb, skb->dev); + } + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_eth_type_update(skb, ethertype); + } + + /* 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) { + 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; + + 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); + 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%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); + 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++; + + skb_put(skb, pktlen - 4); /* Strip CRC */ + + /* Save for RCPU before stripping tag */ + ethertype = (skb->data[16] << 8) | skb->data[17]; + + if (filter->kf.flags & KCOM_FILTER_F_STRIP_TAG) { + /* Strip VLAN tag */ + 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; + } + 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) { + 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); + } + if (filter->kf.dest_proto) { + skb->protocol = filter->kf.dest_proto; + } else { + skb->protocol = eth_type_trans(skb, skb->dev); + } + if (priv->flags & KCOM_NETIF_F_RCPU_ENCAP) { + bkn_eth_type_update(skb, ethertype); + } + + 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)); + + sinfo->rx[chan].running = 0; + + 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) { + if (bkn_do_rx(sinfo, chan, MAX_RX_DCBS) > 0) { + bkn_rx_desc_done(sinfo, chan); + } + if (maxloop == 0) { + sinfo->rx[chan].sync_err++; + } + if (++maxloop > rx_sync_retry) { + gprintk("Fatal error: Incomplete chain\n"); + sinfo->rx[chan].chain_complete = 1; + break; + } + } + } + + 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); + + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + /* 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); + } + spin_lock(&sinfo->lock); +} + +static void +bkn_resume_tx(bkn_switch_info_t *sinfo) +{ + struct list_head *list; + bkn_priv_t *priv; + + /* Check main device */ + if (netif_queue_stopped(sinfo->dev) && sinfo->tx.free > 1) { + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + netif_wake_queue(sinfo->dev); + spin_lock(&sinfo->lock); + } + /* 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) { + /* Unlock while calling up network stack */ + spin_unlock(&sinfo->lock); + netif_wake_queue(priv->dev); + spin_lock(&sinfo->lock); + } + } +} + +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); + if ((desc->dcb_mem[sinfo->dcb_wsize-1] & (1 << 31)) == 0) { + break; + } + if (desc->skb) { + DBG_DCB(("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; + /* 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(("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 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 >= 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); + } + + 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 (done) { + /* 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(("Chain Tx DCB %d (%d)\n", idx, pending)); + } + /* Restart DMA from where we stopped */ + desc = &sinfo->tx.desc[sinfo->tx.dirty]; + DBG_DCB(("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)); + /* 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)); + /* Disable interrupts until poll job is complete */ + sinfo->napi_poll_mode = 1; + } else { + /* Most likely the base device is has not been opened */ + gprintk("Warning: Unable to schedule NAPI - base device not up?\n"); + /* Disable interrupts to prevent soft lock up */ + sinfo->napi_poll_mode = 1; + } + 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)) { + 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); + } + 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; + + /* Ensure that we do not touch registers during device reset */ + if (sinfo->irq_mask == 0) { + /* Not ours */ + return; + } + + /* Safe exit on SMP systems */ + if (!module_initialized) { + dev_irq_mask_set(sinfo, 0); + return; + } + + if (sinfo->napi_poll_mode) { + /* Not ours */ + return; + } + + spin_lock(&sinfo->lock); + + 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; + 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; +} + +static int +bkn_change_mtu(struct net_device *dev, int new_mtu) +{ + if (new_mtu < 68 || new_mtu > (rx_buffer_size + RCPU_RX_ENCAP_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; + + /* 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); + } + } + + netif_stop_queue(dev); + + 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); + } 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: + 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; + break; + case 33: + dcb[2] = 0x81000000; + dcb[3] = (priv->port) << 2; + dcb[4] = 0x00100000; + dcb[4] |= (priv->qnum & 0xfff) << 8; + break; + case 24: + dcb[2] = 0xff000000; + dcb[3] = 0x00000100; + dcb[4] = priv->port; + dcb[4] |= (priv->qnum & 0xfff) << 14; + 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; + } + } + + /* 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; + + DBG_DCB(("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); + + 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 flags; + unsigned long cur_jif, ticks; + uint32_t tokens_per_tick; + + spin_lock_irqsave(&sinfo->lock, flags); + + 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); + } + + spin_unlock_irqrestore(&sinfo->lock, flags); +} + +static void +bkn_rxtick(unsigned long context) +{ + bkn_switch_info_t *sinfo = (bkn_switch_info_t *)context; + unsigned long cur_jif, ticks; + uint32_t pkt_diff; + int chan; + + 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); + } + } + + 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 = NULL, + .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; + } + if (rcpu_mode) { + dev->mtu += RCPU_RX_ENCAP_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); + } + +#if defined(CONFIG_NET_NS) + /* OPENNSL_FIXUP */ + dev_net_set(dev, current->nsproxy->net_ns); +#endif + + /* 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; + + seq_printf(m, "Software link status:\n"); + list_for_each(slist, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)slist; + list_for_each(dlist, &sinfo->ndev_list) { + priv = (bkn_priv_t *)dlist; + dev = priv->dev; + if (dev && dev->name) { + seq_printf(m, " %-14s %s\n", dev->name, + netif_carrier_ok(dev) ? "up" : "down"); + } + } + } + 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; + char link_str[40]; + char *ptr; + int len; + + if (count >= sizeof(link_str)) { + count = sizeof(link_str) - 1; + } + if (copy_from_user(link_str, buf, count)) { + return -EFAULT; + } + link_str[count] = 0; + + if ((ptr = strchr(link_str, '=')) == NULL && + (ptr = strchr(link_str, ':')) == NULL) { + gprintk("Error: link syntax not recognized\n"); + return count; + } + *ptr++ = 0; + len = strlen(link_str); + + dev = NULL; + list_for_each(slist, &_sinfo_list) { + sinfo = (bkn_switch_info_t *)slist; + list_for_each(dlist, &sinfo->ndev_list) { + priv = (bkn_priv_t *)dlist; + dev = priv->dev; + if (dev && dev->name) { + if (memcmp(dev->name, link_str, len) == 0) { + break; + } + } + } + if (dev) { + if (memcmp(ptr, "up", 2) == 0) { + netif_carrier_on(dev); + } else if (memcmp(ptr, "down", 4) == 0) { + netif_carrier_off(dev); + } else { + gprintk("Warning: unknown link setting\n"); + } + return count; + } + } + + gprintk("Warning: unknown network interface\n"); + + 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, " 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, " Interrupts %10u\n", 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 interrupt miss %10u\n", + chan, sinfo->rx[chan].intr_miss); + 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].intr_miss = 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; + /* 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; + /* 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; + 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; + } + + 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_KERNEL); + 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_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; + 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->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; + + spin_lock_irqsave(&sinfo->lock, flags); + + bkn_dma_abort(sinfo); + + del_timer_sync(&sinfo->timer); + del_timer_sync(&sinfo->rxtick); + + 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; + 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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/include/bcm-knet.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2013/03/01 07:54:20 mlarsen Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/include/gmodule.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2013/01/23 04:43:06 gili Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/include/lkm.h +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2013/03/06 23:44:17 mlarsen Exp $ + * $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/shared/Makefile +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2005/01/17 19:53:10 csm Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/shared/gmodule.c +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2013/01/23 04:43:08 gili Exp $ + * $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(_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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/shared/ksal.c +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/kernel/modules/shared/ksal.c @@ -0,0 +1,251 @@ +/* + * 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 2008/10/16 09:41:23 mlarsen Exp $ + * $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 +#include + +#if LINUX_VERSION_CODE >= KERNEL_VERSION(3,9,0) +#include +#endif + +#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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/user/common/Makefile +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/user/common/Makefile @@ -0,0 +1,210 @@ +# +# 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 2011/09/09 10:07:52 mlarsen Exp $ +# $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 + +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) -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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/user/gto-2_6/Makefile +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2009/05/21 20:09:56 gururaj Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/systems/linux/user/x86-smp_generic_64-2_6/Makefile +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2008/06/12 19:25:32 mpall Exp $ +# $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-kvm-4.4.0.orig/ubuntu/opennsl/OpenNSL/sdk-6.4.10-gpl-modules/tools/mktool.pl +++ linux-kvm-4.4.0/ubuntu/opennsl/OpenNSL/sdk-6.4.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 2011/04/12 09:05:28 sraj Exp $ +# +# $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-kvm-4.4.0.orig/virt/kvm/vfio.c +++ linux-kvm-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);